Created
January 20, 2026 10:01
-
-
Save ielcoro/b1089a760a9e4e9a75b7504e48d3c7d8 to your computer and use it in GitHub Desktop.
P2M Program Data Model
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "http://json-schema.org/draft-04/schema#", | |
| "type": "object", | |
| "properties": { | |
| "valid": { | |
| "type": "boolean" | |
| }, | |
| "errors": { | |
| "$ref": "#/definitions/Errors" | |
| }, | |
| "formulaResults": { | |
| "type": "array", | |
| "items": {} | |
| }, | |
| "headers": { | |
| "type": "array", | |
| "items": { | |
| "$ref": "#/definitions/Header" | |
| } | |
| }, | |
| "program": { | |
| "type": "array", | |
| "items": { | |
| "$ref": "#/definitions/Program" | |
| } | |
| }, | |
| "options": { | |
| "$ref": "#/definitions/Options" | |
| }, | |
| "hash": { | |
| "type": "string" | |
| } | |
| }, | |
| "definitions": { | |
| "Errors": { | |
| "type": "object", | |
| "properties": { | |
| "valid": { | |
| "type": "boolean" | |
| }, | |
| "compileErrors": { | |
| "type": "array", | |
| "items": {} | |
| }, | |
| "runException": {} | |
| } | |
| }, | |
| "Value": { | |
| "type": "object", | |
| "properties": { | |
| "version": { | |
| "type": "integer" | |
| }, | |
| "session": {}, | |
| "resolution": { | |
| "type": "integer" | |
| } | |
| } | |
| }, | |
| "Anonymous3": { | |
| "type": "object", | |
| "properties": { | |
| "sessionDate": { | |
| "type": "string", | |
| "format": "date" | |
| }, | |
| "version": { | |
| "type": "integer" | |
| } | |
| } | |
| }, | |
| "Anonymous4": { | |
| "type": "object", | |
| "properties": { | |
| "session": { | |
| "type": "integer" | |
| }, | |
| "sessionDate": { | |
| "type": "string", | |
| "format": "date" | |
| }, | |
| "version": { | |
| "type": "integer" | |
| } | |
| } | |
| }, | |
| "Anonymous5": { | |
| "type": "object", | |
| "properties": { | |
| "version": { | |
| "type": "integer" | |
| }, | |
| "session": { | |
| "type": "integer" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous6": { | |
| "type": "object", | |
| "properties": { | |
| "sessionDate": { | |
| "type": "string", | |
| "format": "date" | |
| }, | |
| "version": { | |
| "type": "integer" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| } | |
| } | |
| }, | |
| "Anonymous7": { | |
| "type": "object", | |
| "properties": { | |
| "version": { | |
| "type": "integer" | |
| }, | |
| "pT15M": { | |
| "type": "integer" | |
| } | |
| } | |
| }, | |
| "Anonymous8": { | |
| "type": "object", | |
| "properties": { | |
| "round": { | |
| "type": "integer" | |
| } | |
| } | |
| }, | |
| "Header": { | |
| "type": "object", | |
| "properties": { | |
| "id": { | |
| "type": "integer" | |
| }, | |
| "fieldName": { | |
| "type": "string" | |
| }, | |
| "value": { | |
| "$ref": "#/definitions/Value" | |
| }, | |
| "date": { | |
| "type": "string", | |
| "format": "date" | |
| }, | |
| "created": { | |
| "type": "string", | |
| "format": "date-time" | |
| }, | |
| "createdUtc": { | |
| "type": "string", | |
| "format": "date-time" | |
| }, | |
| "updatedUtc": { | |
| "type": "string", | |
| "format": "date-time" | |
| }, | |
| "updated": { | |
| "type": "string", | |
| "format": "date-time" | |
| } | |
| } | |
| }, | |
| "Period": { | |
| "type": "object", | |
| "properties": { | |
| "isEmpty": { | |
| "type": "boolean" | |
| }, | |
| "hour": { | |
| "type": "integer" | |
| }, | |
| "minutes": { | |
| "type": "integer" | |
| }, | |
| "number": { | |
| "type": "integer" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| } | |
| } | |
| }, | |
| "MarginalpibcI.1": { | |
| "type": "object", | |
| "properties": { | |
| "unitType": { | |
| "type": "integer" | |
| }, | |
| "rawValue": { | |
| "type": "array", | |
| "items": {} | |
| }, | |
| "value": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "version": {} | |
| } | |
| }, | |
| "Anonymous12": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "value": { | |
| "type": "number" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "inmutable": { | |
| "type": "boolean" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous13": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| }, | |
| "values": { | |
| "$ref": "#/definitions/Anonymous44" | |
| } | |
| } | |
| }, | |
| "Values": { | |
| "type": "object", | |
| "properties": { | |
| "1": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "2": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "3": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "4": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "5": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "6": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "7": { | |
| "$ref": "#/definitions/Anonymous12" | |
| } | |
| } | |
| }, | |
| "Anonymous15": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous16": { | |
| "type": "object", | |
| "properties": { | |
| "1": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "2": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "3": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "4": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "5": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "6": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "7": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "8": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "9": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "10": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "11": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "12": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "13": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "14": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "15": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "16": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "17": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "18": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "19": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "20": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "21": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "22": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "23": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "24": { | |
| "$ref": "#/definitions/Anonymous13" | |
| } | |
| } | |
| }, | |
| "Anonymous17": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous18": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous19": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous20": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous21": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous22": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous23": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous24": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous25": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous26": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous27": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous28": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous29": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous30": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous31": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous32": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous33": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous34": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous35": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous36": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous37": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous38": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous39": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous40": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous41": { | |
| "type": "object", | |
| "properties": { | |
| "rendererType": { | |
| "type": "string" | |
| }, | |
| "columns": { | |
| "type": "array", | |
| "items": { | |
| "$ref": "#/definitions/Anonymous3378" | |
| } | |
| }, | |
| "data": { | |
| "$ref": "#/definitions/Anonymous3379" | |
| }, | |
| "displayType": { | |
| "type": "string" | |
| } | |
| } | |
| }, | |
| "Column": { | |
| "type": "string" | |
| }, | |
| "Data": { | |
| "type": "object" | |
| }, | |
| "Anonymous44": { | |
| "type": "object", | |
| "properties": { | |
| "asig": { | |
| "$ref": "#/definitions/Anonymous13" | |
| }, | |
| "endTimeUtc": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "powerProcessedData": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "startTimeUtc": { | |
| "$ref": "#/definitions/Anonymous12" | |
| } | |
| } | |
| }, | |
| "Anonymous45": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous46": { | |
| "type": "string" | |
| }, | |
| "Anonymous47": { | |
| "type": "object" | |
| }, | |
| "Anonymous48": { | |
| "type": "string" | |
| }, | |
| "Anonymous49": { | |
| "type": "object" | |
| }, | |
| "Anonymous50": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous51": { | |
| "type": "string" | |
| }, | |
| "Anonymous52": { | |
| "type": "object" | |
| }, | |
| "Anonymous53": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "salePrice": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "buyPrice": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "buyTotal": { | |
| "type": "number" | |
| }, | |
| "saleTotal": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous54": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "energy": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous55": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous56": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous57": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous58": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous59": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous60": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous61": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous62": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous63": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous64": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous65": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous66": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous67": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous68": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous69": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous70": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous71": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous72": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous73": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous74": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous75": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous76": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous77": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous78": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous79": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous80": { | |
| "type": "string" | |
| }, | |
| "Anonymous81": { | |
| "type": "object" | |
| }, | |
| "Anonymous82": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous83": { | |
| "type": "string" | |
| }, | |
| "Anonymous84": { | |
| "type": "object" | |
| }, | |
| "Anonymous85": { | |
| "type": "string" | |
| }, | |
| "Anonymous86": { | |
| "type": "object" | |
| }, | |
| "Anonymous87": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous88": { | |
| "type": "string" | |
| }, | |
| "Anonymous89": { | |
| "type": "object" | |
| }, | |
| "Anonymous90": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous91": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous92": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous93": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous94": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous95": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous96": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous97": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous98": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous99": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous100": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous101": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous102": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous103": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous104": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous105": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous106": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous107": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous108": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous109": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous110": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous111": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous112": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous113": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous114": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous115": { | |
| "type": "string" | |
| }, | |
| "Anonymous116": { | |
| "type": "object" | |
| }, | |
| "Anonymous117": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous118": { | |
| "type": "string" | |
| }, | |
| "Anonymous119": { | |
| "type": "object" | |
| }, | |
| "Anonymous120": { | |
| "type": "string" | |
| }, | |
| "Anonymous121": { | |
| "type": "object" | |
| }, | |
| "Anonymous122": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous123": { | |
| "type": "string" | |
| }, | |
| "Anonymous124": { | |
| "type": "object" | |
| }, | |
| "Anonymous125": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous126": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous127": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous128": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous129": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous130": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous131": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous132": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous133": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous134": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous135": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous136": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous137": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous138": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous139": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous140": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous141": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous142": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous143": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous144": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous145": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous146": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous147": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous148": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous149": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous150": { | |
| "type": "string" | |
| }, | |
| "Anonymous151": { | |
| "type": "object" | |
| }, | |
| "Anonymous152": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous153": { | |
| "type": "string" | |
| }, | |
| "Anonymous154": { | |
| "type": "object" | |
| }, | |
| "Anonymous155": { | |
| "type": "string" | |
| }, | |
| "Anonymous156": { | |
| "type": "object" | |
| }, | |
| "Anonymous157": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous158": { | |
| "type": "string" | |
| }, | |
| "Anonymous159": { | |
| "type": "object" | |
| }, | |
| "Anonymous160": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous161": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous162": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous163": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous164": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous165": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous166": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous167": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous168": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous169": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous170": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous171": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous172": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous173": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous174": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous175": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous176": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous177": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous178": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous179": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous180": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous181": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous182": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous183": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous184": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous185": { | |
| "type": "string" | |
| }, | |
| "Anonymous186": { | |
| "type": "object" | |
| }, | |
| "Anonymous187": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous188": { | |
| "type": "string" | |
| }, | |
| "Anonymous189": { | |
| "type": "object" | |
| }, | |
| "Anonymous190": { | |
| "type": "string" | |
| }, | |
| "Anonymous191": { | |
| "type": "object" | |
| }, | |
| "Anonymous192": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous193": { | |
| "type": "string" | |
| }, | |
| "Anonymous194": { | |
| "type": "object" | |
| }, | |
| "Anonymous195": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous196": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous197": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous198": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous199": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous200": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous201": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous202": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous203": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous204": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous205": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous206": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous207": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous208": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous209": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous210": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous211": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous212": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous213": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous214": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous215": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous216": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous217": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous218": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous219": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous220": { | |
| "type": "string" | |
| }, | |
| "Anonymous221": { | |
| "type": "object" | |
| }, | |
| "Anonymous222": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous223": { | |
| "type": "string" | |
| }, | |
| "Anonymous224": { | |
| "type": "object" | |
| }, | |
| "Anonymous225": { | |
| "type": "string" | |
| }, | |
| "Anonymous226": { | |
| "type": "object" | |
| }, | |
| "Anonymous227": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous228": { | |
| "type": "string" | |
| }, | |
| "Anonymous229": { | |
| "type": "object" | |
| }, | |
| "Anonymous230": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous231": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous232": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous233": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous234": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous235": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous236": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous237": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous238": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous239": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous240": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous241": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous242": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous243": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous244": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous245": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous246": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous247": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous248": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous249": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous250": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous251": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous252": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous253": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous254": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous255": { | |
| "type": "string" | |
| }, | |
| "Anonymous256": { | |
| "type": "object" | |
| }, | |
| "Anonymous257": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous258": { | |
| "type": "string" | |
| }, | |
| "Anonymous259": { | |
| "type": "object" | |
| }, | |
| "Anonymous260": { | |
| "type": "string" | |
| }, | |
| "Anonymous261": { | |
| "type": "object" | |
| }, | |
| "Anonymous262": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous263": { | |
| "type": "string" | |
| }, | |
| "Anonymous264": { | |
| "type": "object" | |
| }, | |
| "Anonymous265": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous266": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous267": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous268": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous269": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous270": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous271": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous272": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous273": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous274": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous275": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous276": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous277": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous278": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous279": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous280": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous281": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous282": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous283": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous284": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous285": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous286": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous287": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous288": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous289": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous290": { | |
| "type": "string" | |
| }, | |
| "Anonymous291": { | |
| "type": "object" | |
| }, | |
| "Anonymous292": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous293": { | |
| "type": "string" | |
| }, | |
| "Anonymous294": { | |
| "type": "object" | |
| }, | |
| "Anonymous295": { | |
| "type": "string" | |
| }, | |
| "Anonymous296": { | |
| "type": "object" | |
| }, | |
| "Anonymous297": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous298": { | |
| "type": "string" | |
| }, | |
| "Anonymous299": { | |
| "type": "object" | |
| }, | |
| "Anonymous300": { | |
| "type": "string" | |
| }, | |
| "Anonymous301": { | |
| "type": "object" | |
| }, | |
| "Anonymous302": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous303": { | |
| "type": "string" | |
| }, | |
| "Anonymous304": { | |
| "type": "object" | |
| }, | |
| "Anonymous305": { | |
| "type": "string" | |
| }, | |
| "Anonymous306": { | |
| "type": "object" | |
| }, | |
| "Anonymous307": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous308": { | |
| "type": "string" | |
| }, | |
| "Anonymous309": { | |
| "type": "object" | |
| }, | |
| "Anonymous310": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous311": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous312": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous313": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous314": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous315": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous316": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous317": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous318": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous319": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous320": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous321": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous322": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous323": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous324": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous325": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous326": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous327": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous328": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous329": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous330": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous331": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous332": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous333": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous334": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous335": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous336": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous337": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous338": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous339": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous340": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous341": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous342": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous343": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous344": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous345": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous346": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous347": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous348": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous349": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous350": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous351": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous352": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous353": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous354": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous355": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous356": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous357": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous358": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous359": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous360": { | |
| "type": "string" | |
| }, | |
| "Anonymous361": { | |
| "type": "object" | |
| }, | |
| "Anonymous362": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous363": { | |
| "type": "string" | |
| }, | |
| "Anonymous364": { | |
| "type": "object" | |
| }, | |
| "Anonymous365": { | |
| "type": "string" | |
| }, | |
| "Anonymous366": { | |
| "type": "object" | |
| }, | |
| "Anonymous367": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous368": { | |
| "type": "string" | |
| }, | |
| "Anonymous369": { | |
| "type": "object" | |
| }, | |
| "Anonymous370": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous371": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous372": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous373": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous374": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous375": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous376": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous377": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous378": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous379": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous380": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous381": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous382": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous383": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous384": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous385": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous386": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous387": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous388": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous389": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous390": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous391": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous392": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous393": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous394": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous395": { | |
| "type": "string" | |
| }, | |
| "Anonymous396": { | |
| "type": "object" | |
| }, | |
| "Anonymous397": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous398": { | |
| "type": "string" | |
| }, | |
| "Anonymous399": { | |
| "type": "object" | |
| }, | |
| "Anonymous400": { | |
| "type": "string" | |
| }, | |
| "Anonymous401": { | |
| "type": "object" | |
| }, | |
| "Anonymous402": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous403": { | |
| "type": "string" | |
| }, | |
| "Anonymous404": { | |
| "type": "object" | |
| }, | |
| "Anonymous405": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous406": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous407": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous408": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous409": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous410": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous411": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous412": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous413": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous414": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous415": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous416": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous417": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous418": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous419": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous420": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous421": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous422": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous423": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous424": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous425": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous426": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous427": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous428": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous429": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous430": { | |
| "type": "string" | |
| }, | |
| "Anonymous431": { | |
| "type": "object" | |
| }, | |
| "Anonymous432": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous433": { | |
| "type": "string" | |
| }, | |
| "Anonymous434": { | |
| "type": "object" | |
| }, | |
| "Anonymous435": { | |
| "type": "string" | |
| }, | |
| "Anonymous436": { | |
| "type": "object" | |
| }, | |
| "Anonymous437": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous438": { | |
| "type": "string" | |
| }, | |
| "Anonymous439": { | |
| "type": "object" | |
| }, | |
| "Anonymous440": { | |
| "type": "string" | |
| }, | |
| "Anonymous441": { | |
| "type": "object" | |
| }, | |
| "Anonymous442": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous443": { | |
| "type": "string" | |
| }, | |
| "Anonymous444": { | |
| "type": "object" | |
| }, | |
| "Anonymous445": { | |
| "type": "string" | |
| }, | |
| "Anonymous446": { | |
| "type": "object" | |
| }, | |
| "Anonymous447": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous448": { | |
| "type": "string" | |
| }, | |
| "Anonymous449": { | |
| "type": "object" | |
| }, | |
| "Anonymous450": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous451": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous452": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous453": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous454": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous455": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous456": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous457": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous458": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous459": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous460": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous461": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous462": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous463": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous464": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous465": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous466": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous467": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous468": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous469": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous470": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous471": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous472": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous473": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous474": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous475": { | |
| "type": "string" | |
| }, | |
| "Anonymous476": { | |
| "type": "object" | |
| }, | |
| "Anonymous477": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous478": { | |
| "type": "string" | |
| }, | |
| "Anonymous479": { | |
| "type": "object" | |
| }, | |
| "Anonymous480": { | |
| "type": "string" | |
| }, | |
| "Anonymous481": { | |
| "type": "object" | |
| }, | |
| "Anonymous482": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous483": { | |
| "type": "string" | |
| }, | |
| "Anonymous484": { | |
| "type": "object" | |
| }, | |
| "Anonymous485": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous486": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous487": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous488": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous489": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous490": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous491": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous492": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous493": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous494": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous495": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous496": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous497": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous498": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous499": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous500": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous501": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous502": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous503": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous504": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous505": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous506": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous507": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous508": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous509": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous510": { | |
| "type": "string" | |
| }, | |
| "Anonymous511": { | |
| "type": "object" | |
| }, | |
| "Anonymous512": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous513": { | |
| "type": "string" | |
| }, | |
| "Anonymous514": { | |
| "type": "object" | |
| }, | |
| "Anonymous515": { | |
| "type": "string" | |
| }, | |
| "Anonymous516": { | |
| "type": "object" | |
| }, | |
| "Anonymous517": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous518": { | |
| "type": "string" | |
| }, | |
| "Anonymous519": { | |
| "type": "object" | |
| }, | |
| "Anonymous520": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous521": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous522": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous523": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous524": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous525": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous526": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous527": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous528": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous529": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous530": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous531": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous532": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous533": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous534": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous535": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous536": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous537": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous538": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous539": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous540": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous541": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous542": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous543": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous544": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous545": { | |
| "type": "string" | |
| }, | |
| "Anonymous546": { | |
| "type": "object" | |
| }, | |
| "Anonymous547": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous548": { | |
| "type": "string" | |
| }, | |
| "Anonymous549": { | |
| "type": "object" | |
| }, | |
| "Anonymous550": { | |
| "type": "string" | |
| }, | |
| "Anonymous551": { | |
| "type": "object" | |
| }, | |
| "Anonymous552": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous553": { | |
| "type": "string" | |
| }, | |
| "Anonymous554": { | |
| "type": "object" | |
| }, | |
| "Anonymous555": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous556": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous557": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous558": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous559": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous560": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous561": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous562": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous563": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous564": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous565": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous566": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous567": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous568": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous569": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous570": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous571": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous572": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous573": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous574": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous575": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous576": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous577": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous578": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous579": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous580": { | |
| "type": "string" | |
| }, | |
| "Anonymous581": { | |
| "type": "object" | |
| }, | |
| "Anonymous582": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous583": { | |
| "type": "string" | |
| }, | |
| "Anonymous584": { | |
| "type": "object" | |
| }, | |
| "Anonymous585": { | |
| "type": "string" | |
| }, | |
| "Anonymous586": { | |
| "type": "object" | |
| }, | |
| "Anonymous587": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous588": { | |
| "type": "string" | |
| }, | |
| "Anonymous589": { | |
| "type": "object" | |
| }, | |
| "Anonymous590": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous591": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous592": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous593": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous594": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous595": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous596": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous597": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous598": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous599": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous600": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous601": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous602": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous603": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous604": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous605": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous606": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous607": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous608": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous609": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous610": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous611": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous612": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous613": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous614": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous615": { | |
| "type": "string" | |
| }, | |
| "Anonymous616": { | |
| "type": "object" | |
| }, | |
| "Anonymous617": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous618": { | |
| "type": "string" | |
| }, | |
| "Anonymous619": { | |
| "type": "object" | |
| }, | |
| "Anonymous620": { | |
| "type": "string" | |
| }, | |
| "Anonymous621": { | |
| "type": "object" | |
| }, | |
| "Anonymous622": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous623": { | |
| "type": "string" | |
| }, | |
| "Anonymous624": { | |
| "type": "object" | |
| }, | |
| "Anonymous625": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous626": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous627": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous628": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous629": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous630": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous631": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous632": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous633": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous634": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous635": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous636": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous637": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous638": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous639": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous640": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous641": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous642": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous643": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous644": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous645": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous646": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous647": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous648": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous649": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous650": { | |
| "type": "string" | |
| }, | |
| "Anonymous651": { | |
| "type": "object" | |
| }, | |
| "Anonymous652": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous653": { | |
| "type": "string" | |
| }, | |
| "Anonymous654": { | |
| "type": "object" | |
| }, | |
| "Anonymous655": { | |
| "type": "string" | |
| }, | |
| "Anonymous656": { | |
| "type": "object" | |
| }, | |
| "Anonymous657": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous658": { | |
| "type": "string" | |
| }, | |
| "Anonymous659": { | |
| "type": "object" | |
| }, | |
| "Anonymous660": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous661": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous662": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous663": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous664": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous665": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous666": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous667": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous668": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous669": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous670": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous671": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous672": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous673": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous674": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous675": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous676": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous677": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous678": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous679": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous680": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous681": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous682": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous683": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous684": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous685": { | |
| "type": "string" | |
| }, | |
| "Anonymous686": { | |
| "type": "object" | |
| }, | |
| "Anonymous687": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous688": { | |
| "type": "string" | |
| }, | |
| "Anonymous689": { | |
| "type": "object" | |
| }, | |
| "Anonymous690": { | |
| "type": "string" | |
| }, | |
| "Anonymous691": { | |
| "type": "object" | |
| }, | |
| "Anonymous692": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous693": { | |
| "type": "string" | |
| }, | |
| "Anonymous694": { | |
| "type": "object" | |
| }, | |
| "Anonymous695": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous696": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous697": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous698": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous699": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous700": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous701": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous702": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous703": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous704": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous705": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous706": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous707": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous708": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous709": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous710": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous711": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous712": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous713": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous714": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous715": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous716": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous717": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous718": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous719": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous720": { | |
| "type": "string" | |
| }, | |
| "Anonymous721": { | |
| "type": "object" | |
| }, | |
| "Anonymous722": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous723": { | |
| "type": "string" | |
| }, | |
| "Anonymous724": { | |
| "type": "object" | |
| }, | |
| "Anonymous725": { | |
| "type": "string" | |
| }, | |
| "Anonymous726": { | |
| "type": "object" | |
| }, | |
| "Anonymous727": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous728": { | |
| "type": "string" | |
| }, | |
| "Anonymous729": { | |
| "type": "object" | |
| }, | |
| "Anonymous730": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous731": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous732": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous733": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous734": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous735": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous736": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous737": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous738": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous739": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous740": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous741": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous742": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous743": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous744": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous745": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous746": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous747": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous748": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous749": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous750": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous751": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous752": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous753": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous754": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous755": { | |
| "type": "string" | |
| }, | |
| "Anonymous756": { | |
| "type": "object" | |
| }, | |
| "Anonymous757": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous758": { | |
| "type": "string" | |
| }, | |
| "Anonymous759": { | |
| "type": "object" | |
| }, | |
| "Anonymous760": { | |
| "type": "string" | |
| }, | |
| "Anonymous761": { | |
| "type": "object" | |
| }, | |
| "Anonymous762": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous763": { | |
| "type": "string" | |
| }, | |
| "Anonymous764": { | |
| "type": "object" | |
| }, | |
| "Anonymous765": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous766": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous767": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous768": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous769": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous770": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous771": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous772": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous773": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous774": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous775": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous776": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous777": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous778": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous779": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous780": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous781": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous782": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous783": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous784": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous785": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous786": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous787": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous788": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous789": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous790": { | |
| "type": "string" | |
| }, | |
| "Anonymous791": { | |
| "type": "object" | |
| }, | |
| "Anonymous792": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous793": { | |
| "type": "string" | |
| }, | |
| "Anonymous794": { | |
| "type": "object" | |
| }, | |
| "Anonymous795": { | |
| "type": "string" | |
| }, | |
| "Anonymous796": { | |
| "type": "object" | |
| }, | |
| "Anonymous797": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous798": { | |
| "type": "string" | |
| }, | |
| "Anonymous799": { | |
| "type": "object" | |
| }, | |
| "Anonymous800": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous801": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous802": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous803": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous804": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous805": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous806": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous807": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous808": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous809": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous810": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous811": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous812": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous813": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous814": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous815": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous816": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous817": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous818": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous819": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous820": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous821": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous822": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous823": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous824": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous825": { | |
| "type": "string" | |
| }, | |
| "Anonymous826": { | |
| "type": "object" | |
| }, | |
| "Anonymous827": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous828": { | |
| "type": "string" | |
| }, | |
| "Anonymous829": { | |
| "type": "object" | |
| }, | |
| "Anonymous830": { | |
| "type": "string" | |
| }, | |
| "Anonymous831": { | |
| "type": "object" | |
| }, | |
| "Anonymous832": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous833": { | |
| "type": "string" | |
| }, | |
| "Anonymous834": { | |
| "type": "object" | |
| }, | |
| "Anonymous835": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous836": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous837": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous838": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous839": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous840": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous841": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous842": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous843": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous844": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous845": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous846": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous847": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous848": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous849": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous850": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous851": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous852": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous853": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous854": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous855": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous856": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous857": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous858": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous859": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous860": { | |
| "type": "string" | |
| }, | |
| "Anonymous861": { | |
| "type": "object" | |
| }, | |
| "Anonymous862": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous863": { | |
| "type": "string" | |
| }, | |
| "Anonymous864": { | |
| "type": "object" | |
| }, | |
| "Anonymous865": { | |
| "type": "string" | |
| }, | |
| "Anonymous866": { | |
| "type": "object" | |
| }, | |
| "Anonymous867": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous868": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous869": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous870": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous871": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous872": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous873": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous874": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous875": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous876": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous877": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous878": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous879": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous880": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous881": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous882": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous883": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous884": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous885": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous886": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous887": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous888": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous889": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous890": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous891": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous892": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous893": { | |
| "type": "string" | |
| }, | |
| "Anonymous894": { | |
| "type": "object" | |
| }, | |
| "Anonymous895": { | |
| "type": "string" | |
| }, | |
| "Anonymous896": { | |
| "type": "object" | |
| }, | |
| "Anonymous897": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous898": { | |
| "type": "string" | |
| }, | |
| "Anonymous899": { | |
| "type": "object" | |
| }, | |
| "Anonymous900": { | |
| "type": "string" | |
| }, | |
| "Anonymous901": { | |
| "type": "object" | |
| }, | |
| "Anonymous902": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous903": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous904": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous905": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous906": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous907": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous908": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous909": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous910": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous911": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous912": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous913": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous914": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous915": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous916": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous917": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous918": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous919": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous920": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous921": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous922": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous923": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous924": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous925": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous926": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous927": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous928": { | |
| "type": "string" | |
| }, | |
| "Anonymous929": { | |
| "type": "object" | |
| }, | |
| "Anonymous930": { | |
| "type": "string" | |
| }, | |
| "Anonymous931": { | |
| "type": "object" | |
| }, | |
| "Anonymous932": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous933": { | |
| "type": "string" | |
| }, | |
| "Anonymous934": { | |
| "type": "object" | |
| }, | |
| "Anonymous935": { | |
| "type": "string" | |
| }, | |
| "Anonymous936": { | |
| "type": "object" | |
| }, | |
| "Anonymous937": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous938": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous939": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous940": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous941": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous942": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous943": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous944": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous945": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous946": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous947": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous948": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous949": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous950": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous951": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous952": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous953": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous954": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous955": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous956": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous957": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous958": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous959": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous960": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous961": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous962": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous963": { | |
| "type": "string" | |
| }, | |
| "Anonymous964": { | |
| "type": "object" | |
| }, | |
| "Anonymous965": { | |
| "type": "string" | |
| }, | |
| "Anonymous966": { | |
| "type": "object" | |
| }, | |
| "Anonymous967": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous968": { | |
| "type": "string" | |
| }, | |
| "Anonymous969": { | |
| "type": "object" | |
| }, | |
| "Anonymous970": { | |
| "type": "string" | |
| }, | |
| "Anonymous971": { | |
| "type": "object" | |
| }, | |
| "Anonymous972": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous973": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous974": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous975": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous976": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous977": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous978": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous979": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous980": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous981": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous982": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous983": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous984": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous985": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous986": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous987": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous988": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous989": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous990": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous991": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous992": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous993": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous994": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous995": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous996": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous997": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous998": { | |
| "type": "string" | |
| }, | |
| "Anonymous999": { | |
| "type": "object" | |
| }, | |
| "Anonymous1000": { | |
| "type": "string" | |
| }, | |
| "Anonymous1001": { | |
| "type": "object" | |
| }, | |
| "Anonymous1002": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1003": { | |
| "type": "string" | |
| }, | |
| "Anonymous1004": { | |
| "type": "object" | |
| }, | |
| "Anonymous1005": { | |
| "type": "string" | |
| }, | |
| "Anonymous1006": { | |
| "type": "object" | |
| }, | |
| "Anonymous1007": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1008": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1009": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1010": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1011": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1012": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1013": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1014": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1015": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1016": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1017": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1018": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1019": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1020": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1021": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1022": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1023": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1024": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1025": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1026": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1027": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1028": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1029": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1030": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1031": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1032": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1033": { | |
| "type": "string" | |
| }, | |
| "Anonymous1034": { | |
| "type": "object" | |
| }, | |
| "Anonymous1035": { | |
| "type": "string" | |
| }, | |
| "Anonymous1036": { | |
| "type": "object" | |
| }, | |
| "Anonymous1037": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1038": { | |
| "type": "string" | |
| }, | |
| "Anonymous1039": { | |
| "type": "object" | |
| }, | |
| "Anonymous1040": { | |
| "type": "string" | |
| }, | |
| "Anonymous1041": { | |
| "type": "object" | |
| }, | |
| "Anonymous1042": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1043": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1044": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1045": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1046": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1047": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1048": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1049": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1050": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1051": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1052": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1053": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1054": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1055": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1056": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1057": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1058": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1059": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1060": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1061": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1062": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1063": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1064": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1065": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1066": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1067": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1068": { | |
| "type": "string" | |
| }, | |
| "Anonymous1069": { | |
| "type": "object" | |
| }, | |
| "Anonymous1070": { | |
| "type": "string" | |
| }, | |
| "Anonymous1071": { | |
| "type": "object" | |
| }, | |
| "Anonymous1072": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1073": { | |
| "type": "string" | |
| }, | |
| "Anonymous1074": { | |
| "type": "object" | |
| }, | |
| "Anonymous1075": { | |
| "type": "string" | |
| }, | |
| "Anonymous1076": { | |
| "type": "object" | |
| }, | |
| "Anonymous1077": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1078": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1079": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1080": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1081": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1082": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1083": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1084": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1085": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1086": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1087": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1088": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1089": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1090": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1091": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1092": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1093": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1094": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1095": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1096": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1097": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1098": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1099": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1100": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1101": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1102": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1103": { | |
| "type": "string" | |
| }, | |
| "Anonymous1104": { | |
| "type": "object" | |
| }, | |
| "Anonymous1105": { | |
| "type": "string" | |
| }, | |
| "Anonymous1106": { | |
| "type": "object" | |
| }, | |
| "Anonymous1107": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1108": { | |
| "type": "string" | |
| }, | |
| "Anonymous1109": { | |
| "type": "object" | |
| }, | |
| "Anonymous1110": { | |
| "type": "string" | |
| }, | |
| "Anonymous1111": { | |
| "type": "object" | |
| }, | |
| "Anonymous1112": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1113": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1114": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1115": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1116": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1117": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1118": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1119": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1120": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1121": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1122": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1123": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1124": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1125": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1126": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1127": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1128": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1129": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1130": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1131": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1132": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1133": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1134": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1135": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1136": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1137": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1138": { | |
| "type": "string" | |
| }, | |
| "Anonymous1139": { | |
| "type": "object" | |
| }, | |
| "Anonymous1140": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1141": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1142": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1143": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1144": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1145": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1146": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1147": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1148": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1149": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1150": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1151": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1152": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1153": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1154": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1155": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1156": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1157": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1158": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1159": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1160": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1161": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1162": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1163": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1164": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1165": { | |
| "type": "string" | |
| }, | |
| "Anonymous1166": { | |
| "type": "object" | |
| }, | |
| "Anonymous1167": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1168": { | |
| "type": "string" | |
| }, | |
| "Anonymous1169": { | |
| "type": "object" | |
| }, | |
| "Anonymous1170": { | |
| "type": "string" | |
| }, | |
| "Anonymous1171": { | |
| "type": "object" | |
| }, | |
| "Anonymous1172": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1173": { | |
| "type": "string" | |
| }, | |
| "Anonymous1174": { | |
| "type": "object" | |
| }, | |
| "Anonymous1175": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1176": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1177": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1178": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1179": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1180": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1181": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1182": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1183": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1184": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1185": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1186": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1187": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1188": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1189": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1190": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1191": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1192": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1193": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1194": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1195": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1196": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1197": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1198": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1199": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1200": { | |
| "type": "string" | |
| }, | |
| "Anonymous1201": { | |
| "type": "object" | |
| }, | |
| "Anonymous1202": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1203": { | |
| "type": "string" | |
| }, | |
| "Anonymous1204": { | |
| "type": "object" | |
| }, | |
| "Anonymous1205": { | |
| "type": "string" | |
| }, | |
| "Anonymous1206": { | |
| "type": "object" | |
| }, | |
| "Anonymous1207": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1208": { | |
| "type": "string" | |
| }, | |
| "Anonymous1209": { | |
| "type": "object" | |
| }, | |
| "Anonymous1210": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1211": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1212": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1213": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1214": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1215": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1216": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1217": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1218": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1219": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1220": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1221": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1222": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1223": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1224": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1225": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1226": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1227": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1228": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1229": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1230": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1231": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1232": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1233": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1234": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1235": { | |
| "type": "string" | |
| }, | |
| "Anonymous1236": { | |
| "type": "object" | |
| }, | |
| "Anonymous1237": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1238": { | |
| "type": "string" | |
| }, | |
| "Anonymous1239": { | |
| "type": "object" | |
| }, | |
| "Anonymous1240": { | |
| "type": "string" | |
| }, | |
| "Anonymous1241": { | |
| "type": "object" | |
| }, | |
| "Anonymous1242": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1243": { | |
| "type": "string" | |
| }, | |
| "Anonymous1244": { | |
| "type": "object" | |
| }, | |
| "Anonymous1245": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1246": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1247": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1248": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1249": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1250": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1251": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1252": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1253": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1254": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1255": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1256": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1257": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1258": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1259": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1260": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1261": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1262": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1263": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1264": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1265": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1266": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1267": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1268": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1269": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1270": { | |
| "type": "string" | |
| }, | |
| "Anonymous1271": { | |
| "type": "object" | |
| }, | |
| "Anonymous1272": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1273": { | |
| "type": "string" | |
| }, | |
| "Anonymous1274": { | |
| "type": "object" | |
| }, | |
| "Anonymous1275": { | |
| "type": "string" | |
| }, | |
| "Anonymous1276": { | |
| "type": "object" | |
| }, | |
| "Anonymous1277": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1278": { | |
| "type": "string" | |
| }, | |
| "Anonymous1279": { | |
| "type": "object" | |
| }, | |
| "Anonymous1280": { | |
| "type": "string" | |
| }, | |
| "Anonymous1281": { | |
| "type": "object" | |
| }, | |
| "Anonymous1282": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1283": { | |
| "type": "string" | |
| }, | |
| "Anonymous1284": { | |
| "type": "object" | |
| }, | |
| "Anonymous1285": { | |
| "type": "string" | |
| }, | |
| "Anonymous1286": { | |
| "type": "object" | |
| }, | |
| "Anonymous1287": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1288": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1289": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1290": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1291": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1292": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1293": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1294": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1295": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1296": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1297": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1298": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1299": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1300": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1301": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1302": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1303": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1304": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1305": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1306": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1307": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1308": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1309": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1310": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1311": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1312": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1313": { | |
| "type": "string" | |
| }, | |
| "Anonymous1314": { | |
| "type": "object" | |
| }, | |
| "Anonymous1315": { | |
| "type": "string" | |
| }, | |
| "Anonymous1316": { | |
| "type": "object" | |
| }, | |
| "Anonymous1317": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1318": { | |
| "type": "string" | |
| }, | |
| "Anonymous1319": { | |
| "type": "object" | |
| }, | |
| "Anonymous1320": { | |
| "type": "string" | |
| }, | |
| "Anonymous1321": { | |
| "type": "object" | |
| }, | |
| "Anonymous1322": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1323": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1324": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1325": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1326": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1327": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1328": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1329": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1330": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1331": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1332": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1333": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1334": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1335": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1336": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1337": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1338": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1339": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1340": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1341": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1342": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1343": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1344": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1345": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1346": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1347": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1348": { | |
| "type": "string" | |
| }, | |
| "Anonymous1349": { | |
| "type": "object" | |
| }, | |
| "Anonymous1350": { | |
| "type": "string" | |
| }, | |
| "Anonymous1351": { | |
| "type": "object" | |
| }, | |
| "Anonymous1352": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1353": { | |
| "type": "string" | |
| }, | |
| "Anonymous1354": { | |
| "type": "object" | |
| }, | |
| "Anonymous1355": { | |
| "type": "string" | |
| }, | |
| "Anonymous1356": { | |
| "type": "object" | |
| }, | |
| "Anonymous1357": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1358": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1359": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1360": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1361": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1362": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1363": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1364": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1365": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1366": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1367": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1368": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1369": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1370": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1371": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1372": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1373": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1374": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1375": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1376": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1377": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1378": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1379": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1380": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1381": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1382": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1383": { | |
| "type": "string" | |
| }, | |
| "Anonymous1384": { | |
| "type": "object" | |
| }, | |
| "Anonymous1385": { | |
| "type": "string" | |
| }, | |
| "Anonymous1386": { | |
| "type": "object" | |
| }, | |
| "Anonymous1387": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1388": { | |
| "type": "string" | |
| }, | |
| "Anonymous1389": { | |
| "type": "object" | |
| }, | |
| "Anonymous1390": { | |
| "type": "string" | |
| }, | |
| "Anonymous1391": { | |
| "type": "object" | |
| }, | |
| "Anonymous1392": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1393": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1394": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1395": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1396": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1397": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1398": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1399": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1400": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1401": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1402": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1403": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1404": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1405": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1406": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1407": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1408": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1409": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1410": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1411": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1412": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1413": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1414": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1415": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1416": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1417": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1418": { | |
| "type": "string" | |
| }, | |
| "Anonymous1419": { | |
| "type": "object" | |
| }, | |
| "Anonymous1420": { | |
| "type": "string" | |
| }, | |
| "Anonymous1421": { | |
| "type": "object" | |
| }, | |
| "Anonymous1422": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1423": { | |
| "type": "string" | |
| }, | |
| "Anonymous1424": { | |
| "type": "object" | |
| }, | |
| "Anonymous1425": { | |
| "type": "string" | |
| }, | |
| "Anonymous1426": { | |
| "type": "object" | |
| }, | |
| "Anonymous1427": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1428": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1429": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1430": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1431": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1432": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1433": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1434": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1435": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1436": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1437": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1438": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1439": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1440": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1441": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1442": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1443": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1444": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1445": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1446": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1447": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1448": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1449": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1450": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1451": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1452": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1453": { | |
| "type": "string" | |
| }, | |
| "Anonymous1454": { | |
| "type": "object" | |
| }, | |
| "Anonymous1455": { | |
| "type": "string" | |
| }, | |
| "Anonymous1456": { | |
| "type": "object" | |
| }, | |
| "Anonymous1457": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1458": { | |
| "type": "string" | |
| }, | |
| "Anonymous1459": { | |
| "type": "object" | |
| }, | |
| "Anonymous1460": { | |
| "type": "string" | |
| }, | |
| "Anonymous1461": { | |
| "type": "object" | |
| }, | |
| "Anonymous1462": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1463": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1464": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1465": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1466": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1467": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1468": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1469": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1470": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1471": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1472": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1473": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1474": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1475": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1476": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1477": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1478": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1479": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1480": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1481": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1482": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1483": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1484": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1485": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1486": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1487": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1488": { | |
| "type": "string" | |
| }, | |
| "Anonymous1489": { | |
| "type": "object" | |
| }, | |
| "Anonymous1490": { | |
| "type": "string" | |
| }, | |
| "Anonymous1491": { | |
| "type": "object" | |
| }, | |
| "Anonymous1492": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1493": { | |
| "type": "string" | |
| }, | |
| "Anonymous1494": { | |
| "type": "object" | |
| }, | |
| "Anonymous1495": { | |
| "type": "string" | |
| }, | |
| "Anonymous1496": { | |
| "type": "object" | |
| }, | |
| "Anonymous1497": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1498": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1499": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1500": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1501": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1502": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1503": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1504": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1505": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1506": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1507": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1508": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1509": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1510": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1511": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1512": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1513": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1514": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1515": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1516": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1517": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1518": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1519": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1520": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1521": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1522": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1523": { | |
| "type": "string" | |
| }, | |
| "Anonymous1524": { | |
| "type": "object" | |
| }, | |
| "Anonymous1525": { | |
| "type": "string" | |
| }, | |
| "Anonymous1526": { | |
| "type": "object" | |
| }, | |
| "Anonymous1527": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1528": { | |
| "type": "string" | |
| }, | |
| "Anonymous1529": { | |
| "type": "object" | |
| }, | |
| "Anonymous1530": { | |
| "type": "string" | |
| }, | |
| "Anonymous1531": { | |
| "type": "object" | |
| }, | |
| "Anonymous1532": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1533": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1534": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1535": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1536": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1537": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1538": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1539": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1540": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1541": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1542": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1543": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1544": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1545": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1546": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1547": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1548": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1549": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1550": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1551": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1552": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1553": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1554": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1555": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1556": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1557": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1558": { | |
| "type": "string" | |
| }, | |
| "Anonymous1559": { | |
| "type": "object" | |
| }, | |
| "Anonymous1560": { | |
| "type": "string" | |
| }, | |
| "Anonymous1561": { | |
| "type": "object" | |
| }, | |
| "Anonymous1562": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1563": { | |
| "type": "string" | |
| }, | |
| "Anonymous1564": { | |
| "type": "object" | |
| }, | |
| "Anonymous1565": { | |
| "type": "string" | |
| }, | |
| "Anonymous1566": { | |
| "type": "object" | |
| }, | |
| "Anonymous1567": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1568": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1569": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1570": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1571": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1572": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1573": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1574": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1575": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1576": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1577": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1578": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1579": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1580": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1581": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1582": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1583": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1584": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1585": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1586": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1587": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1588": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1589": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1590": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1591": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1592": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1593": { | |
| "type": "string" | |
| }, | |
| "Anonymous1594": { | |
| "type": "object" | |
| }, | |
| "Anonymous1595": { | |
| "type": "string" | |
| }, | |
| "Anonymous1596": { | |
| "type": "object" | |
| }, | |
| "Anonymous1597": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1598": { | |
| "type": "string" | |
| }, | |
| "Anonymous1599": { | |
| "type": "object" | |
| }, | |
| "Anonymous1600": { | |
| "type": "string" | |
| }, | |
| "Anonymous1601": { | |
| "type": "object" | |
| }, | |
| "Anonymous1602": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1603": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1604": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1605": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1606": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1607": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1608": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1609": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1610": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1611": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1612": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1613": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1614": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1615": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1616": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1617": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1618": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1619": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1620": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1621": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1622": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1623": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1624": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1625": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1626": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1627": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1628": { | |
| "type": "string" | |
| }, | |
| "Anonymous1629": { | |
| "type": "object" | |
| }, | |
| "Anonymous1630": { | |
| "type": "string" | |
| }, | |
| "Anonymous1631": { | |
| "type": "object" | |
| }, | |
| "Anonymous1632": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1633": { | |
| "type": "string" | |
| }, | |
| "Anonymous1634": { | |
| "type": "object" | |
| }, | |
| "Anonymous1635": { | |
| "type": "string" | |
| }, | |
| "Anonymous1636": { | |
| "type": "object" | |
| }, | |
| "Anonymous1637": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1638": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1639": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1640": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1641": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1642": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1643": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1644": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1645": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1646": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1647": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1648": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1649": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1650": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1651": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1652": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1653": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1654": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1655": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1656": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1657": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1658": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1659": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1660": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1661": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1662": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1663": { | |
| "type": "string" | |
| }, | |
| "Anonymous1664": { | |
| "type": "object" | |
| }, | |
| "Anonymous1665": { | |
| "type": "string" | |
| }, | |
| "Anonymous1666": { | |
| "type": "object" | |
| }, | |
| "Anonymous1667": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1668": { | |
| "type": "string" | |
| }, | |
| "Anonymous1669": { | |
| "type": "object" | |
| }, | |
| "Anonymous1670": { | |
| "type": "string" | |
| }, | |
| "Anonymous1671": { | |
| "type": "object" | |
| }, | |
| "Anonymous1672": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1673": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1674": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1675": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1676": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1677": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1678": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1679": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1680": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1681": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1682": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1683": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1684": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1685": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1686": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1687": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1688": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1689": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1690": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1691": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1692": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1693": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1694": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1695": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1696": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1697": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1698": { | |
| "type": "string" | |
| }, | |
| "Anonymous1699": { | |
| "type": "object" | |
| }, | |
| "Anonymous1700": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1701": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1702": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1703": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1704": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1705": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1706": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1707": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1708": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1709": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1710": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1711": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1712": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1713": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1714": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1715": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1716": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1717": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1718": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1719": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1720": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1721": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1722": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1723": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1724": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1725": { | |
| "type": "string" | |
| }, | |
| "Anonymous1726": { | |
| "type": "object" | |
| }, | |
| "Anonymous1727": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1728": { | |
| "type": "string" | |
| }, | |
| "Anonymous1729": { | |
| "type": "object" | |
| }, | |
| "Anonymous1730": { | |
| "type": "string" | |
| }, | |
| "Anonymous1731": { | |
| "type": "object" | |
| }, | |
| "Anonymous1732": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1733": { | |
| "type": "string" | |
| }, | |
| "Anonymous1734": { | |
| "type": "object" | |
| }, | |
| "Anonymous1735": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1736": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1737": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1738": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1739": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1740": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1741": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1742": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1743": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1744": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1745": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1746": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1747": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1748": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1749": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1750": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1751": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1752": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1753": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1754": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1755": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1756": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1757": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1758": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1759": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1760": { | |
| "type": "string" | |
| }, | |
| "Anonymous1761": { | |
| "type": "object" | |
| }, | |
| "Anonymous1762": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1763": { | |
| "type": "string" | |
| }, | |
| "Anonymous1764": { | |
| "type": "object" | |
| }, | |
| "Anonymous1765": { | |
| "type": "string" | |
| }, | |
| "Anonymous1766": { | |
| "type": "object" | |
| }, | |
| "Anonymous1767": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1768": { | |
| "type": "string" | |
| }, | |
| "Anonymous1769": { | |
| "type": "object" | |
| }, | |
| "Anonymous1770": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1771": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1772": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1773": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1774": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1775": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1776": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1777": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1778": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1779": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1780": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1781": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1782": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1783": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1784": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1785": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1786": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1787": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1788": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1789": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1790": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1791": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1792": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1793": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1794": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1795": { | |
| "type": "string" | |
| }, | |
| "Anonymous1796": { | |
| "type": "object" | |
| }, | |
| "Anonymous1797": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1798": { | |
| "type": "string" | |
| }, | |
| "Anonymous1799": { | |
| "type": "object" | |
| }, | |
| "Anonymous1800": { | |
| "type": "string" | |
| }, | |
| "Anonymous1801": { | |
| "type": "object" | |
| }, | |
| "Anonymous1802": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1803": { | |
| "type": "string" | |
| }, | |
| "Anonymous1804": { | |
| "type": "object" | |
| }, | |
| "Anonymous1805": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1806": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1807": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1808": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1809": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1810": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1811": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1812": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1813": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1814": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1815": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1816": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1817": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1818": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1819": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1820": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1821": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1822": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1823": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1824": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1825": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1826": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1827": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1828": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1829": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1830": { | |
| "type": "string" | |
| }, | |
| "Anonymous1831": { | |
| "type": "object" | |
| }, | |
| "Anonymous1832": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1833": { | |
| "type": "string" | |
| }, | |
| "Anonymous1834": { | |
| "type": "object" | |
| }, | |
| "Anonymous1835": { | |
| "type": "string" | |
| }, | |
| "Anonymous1836": { | |
| "type": "object" | |
| }, | |
| "Anonymous1837": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1838": { | |
| "type": "string" | |
| }, | |
| "Anonymous1839": { | |
| "type": "object" | |
| }, | |
| "Anonymous1840": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1841": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1842": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1843": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1844": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1845": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1846": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1847": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1848": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1849": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1850": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1851": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1852": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1853": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1854": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1855": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1856": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1857": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1858": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1859": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1860": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1861": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1862": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1863": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1864": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1865": { | |
| "type": "string" | |
| }, | |
| "Anonymous1866": { | |
| "type": "object" | |
| }, | |
| "Anonymous1867": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1868": { | |
| "type": "string" | |
| }, | |
| "Anonymous1869": { | |
| "type": "object" | |
| }, | |
| "Anonymous1870": { | |
| "type": "string" | |
| }, | |
| "Anonymous1871": { | |
| "type": "object" | |
| }, | |
| "Anonymous1872": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1873": { | |
| "type": "string" | |
| }, | |
| "Anonymous1874": { | |
| "type": "object" | |
| }, | |
| "Anonymous1875": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1876": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1877": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1878": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1879": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1880": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1881": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1882": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1883": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1884": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1885": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1886": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1887": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1888": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1889": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1890": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1891": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1892": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1893": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1894": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1895": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1896": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1897": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1898": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1899": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1900": { | |
| "type": "string" | |
| }, | |
| "Anonymous1901": { | |
| "type": "object" | |
| }, | |
| "Anonymous1902": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1903": { | |
| "type": "string" | |
| }, | |
| "Anonymous1904": { | |
| "type": "object" | |
| }, | |
| "Anonymous1905": { | |
| "type": "string" | |
| }, | |
| "Anonymous1906": { | |
| "type": "object" | |
| }, | |
| "Anonymous1907": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1908": { | |
| "type": "string" | |
| }, | |
| "Anonymous1909": { | |
| "type": "object" | |
| }, | |
| "Anonymous1910": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1911": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1912": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1913": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1914": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1915": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1916": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1917": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1918": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1919": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1920": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1921": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1922": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1923": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1924": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1925": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1926": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1927": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1928": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1929": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1930": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1931": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1932": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1933": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1934": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1935": { | |
| "type": "string" | |
| }, | |
| "Anonymous1936": { | |
| "type": "object" | |
| }, | |
| "Anonymous1937": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1938": { | |
| "type": "string" | |
| }, | |
| "Anonymous1939": { | |
| "type": "object" | |
| }, | |
| "Anonymous1940": { | |
| "type": "string" | |
| }, | |
| "Anonymous1941": { | |
| "type": "object" | |
| }, | |
| "Anonymous1942": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1943": { | |
| "type": "string" | |
| }, | |
| "Anonymous1944": { | |
| "type": "object" | |
| }, | |
| "Anonymous1945": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1946": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1947": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1948": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1949": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1950": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1951": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1952": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1953": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1954": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1955": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1956": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1957": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1958": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1959": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1960": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1961": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1962": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1963": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1964": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1965": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1966": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1967": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1968": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1969": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1970": { | |
| "type": "string" | |
| }, | |
| "Anonymous1971": { | |
| "type": "object" | |
| }, | |
| "Anonymous1972": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1973": { | |
| "type": "string" | |
| }, | |
| "Anonymous1974": { | |
| "type": "object" | |
| }, | |
| "Anonymous1975": { | |
| "type": "string" | |
| }, | |
| "Anonymous1976": { | |
| "type": "object" | |
| }, | |
| "Anonymous1977": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1978": { | |
| "type": "string" | |
| }, | |
| "Anonymous1979": { | |
| "type": "object" | |
| }, | |
| "Anonymous1980": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1981": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1982": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1983": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1984": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1985": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1986": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1987": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1988": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1989": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1990": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1991": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1992": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1993": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1994": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1995": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1996": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1997": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1998": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous1999": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2000": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2001": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2002": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2003": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2004": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2005": { | |
| "type": "string" | |
| }, | |
| "Anonymous2006": { | |
| "type": "object" | |
| }, | |
| "Anonymous2007": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2008": { | |
| "type": "string" | |
| }, | |
| "Anonymous2009": { | |
| "type": "object" | |
| }, | |
| "Anonymous2010": { | |
| "type": "string" | |
| }, | |
| "Anonymous2011": { | |
| "type": "object" | |
| }, | |
| "Anonymous2012": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2013": { | |
| "type": "string" | |
| }, | |
| "Anonymous2014": { | |
| "type": "object" | |
| }, | |
| "Anonymous2015": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2016": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2017": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2018": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2019": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2020": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2021": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2022": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2023": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2024": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2025": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2026": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2027": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2028": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2029": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2030": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2031": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2032": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2033": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2034": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2035": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2036": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2037": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2038": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2039": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2040": { | |
| "type": "string" | |
| }, | |
| "Anonymous2041": { | |
| "type": "object" | |
| }, | |
| "Anonymous2042": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2043": { | |
| "type": "string" | |
| }, | |
| "Anonymous2044": { | |
| "type": "object" | |
| }, | |
| "Anonymous2045": { | |
| "type": "string" | |
| }, | |
| "Anonymous2046": { | |
| "type": "object" | |
| }, | |
| "Anonymous2047": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2048": { | |
| "type": "string" | |
| }, | |
| "Anonymous2049": { | |
| "type": "object" | |
| }, | |
| "Anonymous2050": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2051": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2052": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2053": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2054": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2055": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2056": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2057": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2058": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2059": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2060": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2061": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2062": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2063": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2064": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2065": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2066": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2067": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2068": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2069": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2070": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2071": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2072": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2073": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2074": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2075": { | |
| "type": "string" | |
| }, | |
| "Anonymous2076": { | |
| "type": "object" | |
| }, | |
| "Anonymous2077": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2078": { | |
| "type": "string" | |
| }, | |
| "Anonymous2079": { | |
| "type": "object" | |
| }, | |
| "Anonymous2080": { | |
| "type": "string" | |
| }, | |
| "Anonymous2081": { | |
| "type": "object" | |
| }, | |
| "Anonymous2082": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2083": { | |
| "type": "string" | |
| }, | |
| "Anonymous2084": { | |
| "type": "object" | |
| }, | |
| "Anonymous2085": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2086": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2087": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2088": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2089": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2090": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2091": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2092": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2093": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2094": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2095": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2096": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2097": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2098": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2099": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2100": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2101": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2102": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2103": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2104": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2105": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2106": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2107": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2108": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2109": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2110": { | |
| "type": "string" | |
| }, | |
| "Anonymous2111": { | |
| "type": "object" | |
| }, | |
| "Anonymous2112": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2113": { | |
| "type": "string" | |
| }, | |
| "Anonymous2114": { | |
| "type": "object" | |
| }, | |
| "Anonymous2115": { | |
| "type": "string" | |
| }, | |
| "Anonymous2116": { | |
| "type": "object" | |
| }, | |
| "Anonymous2117": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2118": { | |
| "type": "string" | |
| }, | |
| "Anonymous2119": { | |
| "type": "object" | |
| }, | |
| "Anonymous2120": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2121": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2122": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2123": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2124": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2125": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2126": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2127": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2128": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2129": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2130": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2131": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2132": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2133": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2134": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2135": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2136": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2137": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2138": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2139": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2140": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2141": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2142": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2143": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2144": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2145": { | |
| "type": "string" | |
| }, | |
| "Anonymous2146": { | |
| "type": "object" | |
| }, | |
| "Anonymous2147": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2148": { | |
| "type": "string" | |
| }, | |
| "Anonymous2149": { | |
| "type": "object" | |
| }, | |
| "Anonymous2150": { | |
| "type": "string" | |
| }, | |
| "Anonymous2151": { | |
| "type": "object" | |
| }, | |
| "Anonymous2152": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2153": { | |
| "type": "string" | |
| }, | |
| "Anonymous2154": { | |
| "type": "object" | |
| }, | |
| "Anonymous2155": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2156": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2157": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2158": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2159": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2160": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2161": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2162": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2163": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2164": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2165": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2166": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2167": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2168": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2169": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2170": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2171": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2172": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2173": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2174": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2175": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2176": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2177": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2178": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2179": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2180": { | |
| "type": "string" | |
| }, | |
| "Anonymous2181": { | |
| "type": "object" | |
| }, | |
| "Anonymous2182": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2183": { | |
| "type": "string" | |
| }, | |
| "Anonymous2184": { | |
| "type": "object" | |
| }, | |
| "Anonymous2185": { | |
| "type": "string" | |
| }, | |
| "Anonymous2186": { | |
| "type": "object" | |
| }, | |
| "Anonymous2187": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2188": { | |
| "type": "string" | |
| }, | |
| "Anonymous2189": { | |
| "type": "object" | |
| }, | |
| "Anonymous2190": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2191": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "total": { | |
| "type": "number" | |
| }, | |
| "isEmpty": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "Anonymous2192": { | |
| "type": "object", | |
| "properties": { | |
| "kind": { | |
| "type": "string" | |
| }, | |
| "resolution": { | |
| "type": "integer" | |
| }, | |
| "scale": { | |
| "type": "integer" | |
| }, | |
| "power": { | |
| "$ref": "#/definitions/Anonymous12" | |
| }, | |
| "price": { | |
| "$ref": "#/definitions/Anonym |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment