2026-02-28 17:04:25 +04:00

20817 lines
528 KiB
JSON

{
"custom": {},
"params": {
"highlightTagPath": ""
},
"propConfig": {
"params.highlightTagPath": {
"onChange": {
"enabled": null,
"script": "\tutils.handleTagHighlight(self.view, currentValue)"
},
"paramDirection": "input",
"persistent": true
}
},
"props": {
"defaultSize": {
"height": 1028,
"width": 1850
}
},
"root": {
"children": [
{
"meta": {
"name": "MCM04_Bulk_Inbound_Problem_Solve_Chutes"
},
"position": {
"height": 1,
"width": 1
},
"propConfig": {
"props.elements[1].elements[169].fill.paint": {
"binding": {
"config": {
"fallbackDelay": 2.5,
"mode": "direct",
"tagPath": "[MTN6_SCADA_TAG_PROVIDER]System/SMC/Sorter"
},
"transforms": [
{
"code": "\tif value is None:\n\t return \u0027#ffffff\u0027\n\t\n\t# Priority-based status determination (lower number \u003d higher priority)\n\tactive_status \u003d \u0027default\u0027\n\t\n\t# Check in priority order (highest to lowest)\n\tif value.get(\u0027Common_Error\u0027, False):\n\t active_status \u003d \u0027common_error\u0027\n\telif value.get(\u0027Test_Mode\u0027, False) or value.get(\u0027Discharge_Test_Mode\u0027, False) or value.get(\u0027Lamp_Test_Mode\u0027, False) or value.get(\u0027Carrier_Selected\u0027, False):\n\t active_status \u003d \u0027test_mode\u0027\n\telif value.get(\u0027Running\u0027, False):\n\t active_status \u003d \u0027running\u0027\n\telif value.get(\u0027Starting\u0027, False) or value.get(\u0027Stopping\u0027, False) or value.get(\u0027Sortation_Allowed\u0027, False) or value.get(\u0027Automatic_Mode\u0027, False):\n\t active_status \u003d \u0027transitional\u0027\n\telif value.get(\u0027Not_Synchronised\u0027, False):\n\t active_status \u003d \u0027not_synchronised\u0027\n\telif value.get(\u0027Energy_Saving\u0027, False):\n\t active_status \u003d \u0027energy_saving\u0027\n\telif value.get(\u0027Stopped\u0027, False) or value.get(\u0027Power_Off\u0027, False) or value.get(\u0027Disabled\u0027, False):\n\t active_status \u003d \u0027inactive\u0027\n\telif value.get(\u0027Blocked\u0027, False):\n\t active_status \u003d \u0027blocked\u0027\n\t\n\t# Dictionary-based switch (cleaner than elif chain)\n\tcolor_map \u003d {\n\t \u0027common_error\u0027: \u0027#FF0000\u0027,\n\t \u0027inactive\u0027: \u0027#C2C2C2\u0027,\n\t \u0027blocked\u0027: \u0027#D900D9\u0027,\n\t \u0027running\u0027: \u0027#00FF00\u0027,\n\t \u0027transitional\u0027: \u0027#CCFFCC\u0027,\n\t \u0027not_synchronised\u0027: \u0027#FF8C00\u0027,\n\t \u0027energy_saving\u0027: \u0027#87CEFA\u0027,\n\t \u0027test_mode\u0027: \u0027#AC5F00\u0027,\n\t \u0027default\u0027: \u0027#ffffff\u0027\n\t}\n\t\n\t# Return color using dictionary lookup (switch-like behavior)\n\treturn color_map.get(active_status, \u0027#ffffff\u0027)",
"type": "script"
}
],
"type": "tag"
}
},
"props.elements[1].elements[170].fill.paint": {
"binding": {
"config": {
"fallbackDelay": 2.5,
"mode": "direct",
"tagPath": "[MTN6_SCADA_TAG_PROVIDER]System/SMC/Sorter"
},
"transforms": [
{
"code": "\tif value is None:\n\t return \u0027#ffffff\u0027\n\t\n\t# Priority-based status determination (lower number \u003d higher priority)\n\tactive_status \u003d \u0027default\u0027\n\t\n\t# Check in priority order (highest to lowest)\n\tif value.get(\u0027Common_Error\u0027, False):\n\t active_status \u003d \u0027common_error\u0027\n\telif value.get(\u0027Test_Mode\u0027, False) or value.get(\u0027Discharge_Test_Mode\u0027, False) or value.get(\u0027Lamp_Test_Mode\u0027, False) or value.get(\u0027Carrier_Selected\u0027, False):\n\t active_status \u003d \u0027test_mode\u0027\n\telif value.get(\u0027Running\u0027, False):\n\t active_status \u003d \u0027running\u0027\n\telif value.get(\u0027Starting\u0027, False) or value.get(\u0027Stopping\u0027, False) or value.get(\u0027Sortation_Allowed\u0027, False) or value.get(\u0027Automatic_Mode\u0027, False):\n\t active_status \u003d \u0027transitional\u0027\n\telif value.get(\u0027Not_Synchronised\u0027, False):\n\t active_status \u003d \u0027not_synchronised\u0027\n\telif value.get(\u0027Energy_Saving\u0027, False):\n\t active_status \u003d \u0027energy_saving\u0027\n\telif value.get(\u0027Stopped\u0027, False) or value.get(\u0027Power_Off\u0027, False) or value.get(\u0027Disabled\u0027, False):\n\t active_status \u003d \u0027inactive\u0027\n\telif value.get(\u0027Blocked\u0027, False):\n\t active_status \u003d \u0027blocked\u0027\n\t\n\t# Dictionary-based switch (cleaner than elif chain)\n\tcolor_map \u003d {\n\t \u0027common_error\u0027: \u0027#FF0000\u0027,\n\t \u0027inactive\u0027: \u0027#C2C2C2\u0027,\n\t \u0027blocked\u0027: \u0027#D900D9\u0027,\n\t \u0027running\u0027: \u0027#00FF00\u0027,\n\t \u0027transitional\u0027: \u0027#CCFFCC\u0027,\n\t \u0027not_synchronised\u0027: \u0027#FF8C00\u0027,\n\t \u0027energy_saving\u0027: \u0027#87CEFA\u0027,\n\t \u0027test_mode\u0027: \u0027#AC5F00\u0027,\n\t \u0027default\u0027: \u0027#ffffff\u0027\n\t}\n\t\n\t# Return color using dictionary lookup (switch-like behavior)\n\treturn color_map.get(active_status, \u0027#ffffff\u0027)",
"type": "script"
}
],
"type": "tag"
}
},
"props.elements[1].elements[171].fill.paint": {
"binding": {
"config": {
"fallbackDelay": 2.5,
"mode": "direct",
"tagPath": "[MTN6_SCADA_TAG_PROVIDER]System/SMC/Sorter"
},
"transforms": [
{
"code": "\tif value is None:\n\t return \u0027#ffffff\u0027\n\t\n\t# Priority-based status determination (lower number \u003d higher priority)\n\tactive_status \u003d \u0027default\u0027\n\t\n\t# Check in priority order (highest to lowest)\n\tif value.get(\u0027Common_Error\u0027, False):\n\t active_status \u003d \u0027common_error\u0027\n\telif value.get(\u0027Test_Mode\u0027, False) or value.get(\u0027Discharge_Test_Mode\u0027, False) or value.get(\u0027Lamp_Test_Mode\u0027, False) or value.get(\u0027Carrier_Selected\u0027, False):\n\t active_status \u003d \u0027test_mode\u0027\n\telif value.get(\u0027Running\u0027, False):\n\t active_status \u003d \u0027running\u0027\n\telif value.get(\u0027Starting\u0027, False) or value.get(\u0027Stopping\u0027, False) or value.get(\u0027Sortation_Allowed\u0027, False) or value.get(\u0027Automatic_Mode\u0027, False):\n\t active_status \u003d \u0027transitional\u0027\n\telif value.get(\u0027Not_Synchronised\u0027, False):\n\t active_status \u003d \u0027not_synchronised\u0027\n\telif value.get(\u0027Energy_Saving\u0027, False):\n\t active_status \u003d \u0027energy_saving\u0027\n\telif value.get(\u0027Stopped\u0027, False) or value.get(\u0027Power_Off\u0027, False) or value.get(\u0027Disabled\u0027, False):\n\t active_status \u003d \u0027inactive\u0027\n\telif value.get(\u0027Blocked\u0027, False):\n\t active_status \u003d \u0027blocked\u0027\n\t\n\t# Dictionary-based switch (cleaner than elif chain)\n\tcolor_map \u003d {\n\t \u0027common_error\u0027: \u0027#FF0000\u0027,\n\t \u0027inactive\u0027: \u0027#C2C2C2\u0027,\n\t \u0027blocked\u0027: \u0027#D900D9\u0027,\n\t \u0027running\u0027: \u0027#00FF00\u0027,\n\t \u0027transitional\u0027: \u0027#CCFFCC\u0027,\n\t \u0027not_synchronised\u0027: \u0027#FF8C00\u0027,\n\t \u0027energy_saving\u0027: \u0027#87CEFA\u0027,\n\t \u0027test_mode\u0027: \u0027#AC5F00\u0027,\n\t \u0027default\u0027: \u0027#ffffff\u0027\n\t}\n\t\n\t# Return color using dictionary lookup (switch-like behavior)\n\treturn color_map.get(active_status, \u0027#ffffff\u0027)",
"type": "script"
}
],
"type": "tag"
}
},
"props.elements[1].elements[172].fill.paint": {
"binding": {
"config": {
"fallbackDelay": 2.5,
"mode": "direct",
"tagPath": "[MTN6_SCADA_TAG_PROVIDER]System/SMC/Sorter"
},
"transforms": [
{
"code": "\tif value is None:\n\t return \u0027#ffffff\u0027\n\t\n\t# Priority-based status determination (lower number \u003d higher priority)\n\tactive_status \u003d \u0027default\u0027\n\t\n\t# Check in priority order (highest to lowest)\n\tif value.get(\u0027Common_Error\u0027, False):\n\t active_status \u003d \u0027common_error\u0027\n\telif value.get(\u0027Test_Mode\u0027, False) or value.get(\u0027Discharge_Test_Mode\u0027, False) or value.get(\u0027Lamp_Test_Mode\u0027, False) or value.get(\u0027Carrier_Selected\u0027, False):\n\t active_status \u003d \u0027test_mode\u0027\n\telif value.get(\u0027Running\u0027, False):\n\t active_status \u003d \u0027running\u0027\n\telif value.get(\u0027Starting\u0027, False) or value.get(\u0027Stopping\u0027, False) or value.get(\u0027Sortation_Allowed\u0027, False) or value.get(\u0027Automatic_Mode\u0027, False):\n\t active_status \u003d \u0027transitional\u0027\n\telif value.get(\u0027Not_Synchronised\u0027, False):\n\t active_status \u003d \u0027not_synchronised\u0027\n\telif value.get(\u0027Energy_Saving\u0027, False):\n\t active_status \u003d \u0027energy_saving\u0027\n\telif value.get(\u0027Stopped\u0027, False) or value.get(\u0027Power_Off\u0027, False) or value.get(\u0027Disabled\u0027, False):\n\t active_status \u003d \u0027inactive\u0027\n\telif value.get(\u0027Blocked\u0027, False):\n\t active_status \u003d \u0027blocked\u0027\n\t\n\t# Dictionary-based switch (cleaner than elif chain)\n\tcolor_map \u003d {\n\t \u0027common_error\u0027: \u0027#FF0000\u0027,\n\t \u0027inactive\u0027: \u0027#C2C2C2\u0027,\n\t \u0027blocked\u0027: \u0027#D900D9\u0027,\n\t \u0027running\u0027: \u0027#00FF00\u0027,\n\t \u0027transitional\u0027: \u0027#CCFFCC\u0027,\n\t \u0027not_synchronised\u0027: \u0027#FF8C00\u0027,\n\t \u0027energy_saving\u0027: \u0027#87CEFA\u0027,\n\t \u0027test_mode\u0027: \u0027#AC5F00\u0027,\n\t \u0027default\u0027: \u0027#ffffff\u0027\n\t}\n\t\n\t# Return color using dictionary lookup (switch-like behavior)\n\treturn color_map.get(active_status, \u0027#ffffff\u0027)",
"type": "script"
}
],
"type": "tag"
}
},
"props.elements[1].elements[173].fill.paint": {
"binding": {
"config": {
"fallbackDelay": 2.5,
"mode": "direct",
"tagPath": "[MTN6_SCADA_TAG_PROVIDER]System/SMC/Sorter"
},
"transforms": [
{
"code": "\tif value is None:\n\t return \u0027#ffffff\u0027\n\t\n\t# Priority-based status determination (lower number \u003d higher priority)\n\tactive_status \u003d \u0027default\u0027\n\t\n\t# Check in priority order (highest to lowest)\n\tif value.get(\u0027Common_Error\u0027, False):\n\t active_status \u003d \u0027common_error\u0027\n\telif value.get(\u0027Test_Mode\u0027, False) or value.get(\u0027Discharge_Test_Mode\u0027, False) or value.get(\u0027Lamp_Test_Mode\u0027, False) or value.get(\u0027Carrier_Selected\u0027, False):\n\t active_status \u003d \u0027test_mode\u0027\n\telif value.get(\u0027Running\u0027, False):\n\t active_status \u003d \u0027running\u0027\n\telif value.get(\u0027Starting\u0027, False) or value.get(\u0027Stopping\u0027, False) or value.get(\u0027Sortation_Allowed\u0027, False) or value.get(\u0027Automatic_Mode\u0027, False):\n\t active_status \u003d \u0027transitional\u0027\n\telif value.get(\u0027Not_Synchronised\u0027, False):\n\t active_status \u003d \u0027not_synchronised\u0027\n\telif value.get(\u0027Energy_Saving\u0027, False):\n\t active_status \u003d \u0027energy_saving\u0027\n\telif value.get(\u0027Stopped\u0027, False) or value.get(\u0027Power_Off\u0027, False) or value.get(\u0027Disabled\u0027, False):\n\t active_status \u003d \u0027inactive\u0027\n\telif value.get(\u0027Blocked\u0027, False):\n\t active_status \u003d \u0027blocked\u0027\n\t\n\t# Dictionary-based switch (cleaner than elif chain)\n\tcolor_map \u003d {\n\t \u0027common_error\u0027: \u0027#FF0000\u0027,\n\t \u0027inactive\u0027: \u0027#C2C2C2\u0027,\n\t \u0027blocked\u0027: \u0027#D900D9\u0027,\n\t \u0027running\u0027: \u0027#00FF00\u0027,\n\t \u0027transitional\u0027: \u0027#CCFFCC\u0027,\n\t \u0027not_synchronised\u0027: \u0027#FF8C00\u0027,\n\t \u0027energy_saving\u0027: \u0027#87CEFA\u0027,\n\t \u0027test_mode\u0027: \u0027#AC5F00\u0027,\n\t \u0027default\u0027: \u0027#ffffff\u0027\n\t}\n\t\n\t# Return color using dictionary lookup (switch-like behavior)\n\treturn color_map.get(active_status, \u0027#ffffff\u0027)",
"type": "script"
}
],
"type": "tag"
}
},
"props.elements[1].elements[174].fill.paint": {
"binding": {
"config": {
"fallbackDelay": 2.5,
"mode": "direct",
"tagPath": "[MTN6_SCADA_TAG_PROVIDER]System/SMC/Sorter"
},
"transforms": [
{
"code": "\tif value is None:\n\t return \u0027#ffffff\u0027\n\t\n\t# Priority-based status determination (lower number \u003d higher priority)\n\tactive_status \u003d \u0027default\u0027\n\t\n\t# Check in priority order (highest to lowest)\n\tif value.get(\u0027Common_Error\u0027, False):\n\t active_status \u003d \u0027common_error\u0027\n\telif value.get(\u0027Test_Mode\u0027, False) or value.get(\u0027Discharge_Test_Mode\u0027, False) or value.get(\u0027Lamp_Test_Mode\u0027, False) or value.get(\u0027Carrier_Selected\u0027, False):\n\t active_status \u003d \u0027test_mode\u0027\n\telif value.get(\u0027Running\u0027, False):\n\t active_status \u003d \u0027running\u0027\n\telif value.get(\u0027Starting\u0027, False) or value.get(\u0027Stopping\u0027, False) or value.get(\u0027Sortation_Allowed\u0027, False) or value.get(\u0027Automatic_Mode\u0027, False):\n\t active_status \u003d \u0027transitional\u0027\n\telif value.get(\u0027Not_Synchronised\u0027, False):\n\t active_status \u003d \u0027not_synchronised\u0027\n\telif value.get(\u0027Energy_Saving\u0027, False):\n\t active_status \u003d \u0027energy_saving\u0027\n\telif value.get(\u0027Stopped\u0027, False) or value.get(\u0027Power_Off\u0027, False) or value.get(\u0027Disabled\u0027, False):\n\t active_status \u003d \u0027inactive\u0027\n\telif value.get(\u0027Blocked\u0027, False):\n\t active_status \u003d \u0027blocked\u0027\n\t\n\t# Dictionary-based switch (cleaner than elif chain)\n\tcolor_map \u003d {\n\t \u0027common_error\u0027: \u0027#FF0000\u0027,\n\t \u0027inactive\u0027: \u0027#C2C2C2\u0027,\n\t \u0027blocked\u0027: \u0027#D900D9\u0027,\n\t \u0027running\u0027: \u0027#00FF00\u0027,\n\t \u0027transitional\u0027: \u0027#CCFFCC\u0027,\n\t \u0027not_synchronised\u0027: \u0027#FF8C00\u0027,\n\t \u0027energy_saving\u0027: \u0027#87CEFA\u0027,\n\t \u0027test_mode\u0027: \u0027#AC5F00\u0027,\n\t \u0027default\u0027: \u0027#ffffff\u0027\n\t}\n\t\n\t# Return color using dictionary lookup (switch-like behavior)\n\treturn color_map.get(active_status, \u0027#ffffff\u0027)",
"type": "script"
}
],
"type": "tag"
}
}
},
"props": {
"elements": [
{
"elements": [
{
"elements": [
{
"d": "M 5.77,0 -2.88,5 V -5 Z",
"id": "path135",
"name": "path135",
"transform": "scale(0.5)",
"type": "path"
}
],
"id": "Triangle",
"markerHeight": "1",
"markerWidth": "1",
"name": "Triangle",
"orient": "auto-start-reverse",
"preserveAspectRatio": "xMidYMid",
"refX": "0",
"refY": "0",
"style": {
"overflow": "visible"
},
"type": "marker",
"viewBox": "0 0 1 1"
},
{
"elements": [
{
"d": "M 5.77,0 -2.88,5 V -5 Z",
"fill": {
"paint": "#ffffff",
"rule": "evenodd"
},
"id": "path57",
"name": "path57",
"transform": "scale(0.5)",
"type": "path"
}
],
"id": "marker57",
"markerHeight": 1,
"markerWidth": "1",
"name": "marker57",
"orient": "auto-start-reverse",
"preserveAspectRatio": "xMidYMid",
"refX": "0",
"refY": "0",
"style": {
"overflow": "visible"
},
"type": "marker",
"viewBox": "0 0 1 1"
}
],
"id": "defs1",
"name": "defs1",
"type": "defs"
},
{
"elements": [
{
"fill": {
"paint": "#ffffff"
},
"height": "20.730036",
"id": "rect3",
"name": "rect3",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.0250621",
"x": "220.13388",
"y": "188.6953"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.730036",
"id": "rect4",
"name": "rect4",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.0250621",
"x": "225.79733",
"y": "188.6953"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.730036",
"id": "rect6",
"name": "rect6",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.0250621",
"x": "257.01794",
"y": "188.69528"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.730036",
"id": "rect8",
"name": "rect8",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.0250621",
"x": "288.19547",
"y": "188.69528"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.730036",
"id": "rect9",
"name": "rect9",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.0250621",
"x": "293.75171",
"y": "188.69528"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.730036",
"id": "rect10",
"name": "rect10",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.0250621",
"x": "299.30798",
"y": "188.69528"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.730036",
"id": "rect11",
"name": "rect11",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.0250621",
"x": "304.86423",
"y": "188.69528"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.730036",
"id": "rect12",
"name": "rect12",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.0250621",
"x": "310.42047",
"y": "188.69528"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect13",
"name": "rect13",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.025063",
"x": "187.62598",
"y": "188.55534"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect14",
"name": "rect14",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.025063",
"x": "159.80893",
"y": "188.54369"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect15",
"name": "rect15",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.025063",
"x": "165.38611",
"y": "188.54369"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect16",
"name": "rect16",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.025063",
"x": "170.96329",
"y": "188.54369"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect17",
"name": "rect17",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.025063",
"x": "176.54044",
"y": "188.54369"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect18",
"name": "rect18",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.025063",
"x": "182.11761",
"y": "188.54369"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect19",
"name": "rect19",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.025063",
"x": "143.07742",
"y": "188.54369"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect20",
"name": "rect20",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.025063",
"x": "148.6546",
"y": "188.54369"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect21",
"name": "rect21",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.025063",
"x": "154.23175",
"y": "188.54369"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect22",
"name": "rect22",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "143.47418",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect23",
"name": "rect23",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "149.02689",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect24",
"name": "rect24",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "154.57959",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect25",
"name": "rect25",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "160.08365",
"y": "220.91507"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect26",
"name": "rect26",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "165.60922",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect31",
"name": "rect31",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "214.33038",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect33",
"name": "rect33",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "241.33197",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect34",
"name": "rect34",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "246.88467",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect35",
"name": "rect35",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "252.43721",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect36",
"name": "rect36",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "257.98981",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect39",
"name": "rect39",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "288.24307",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect40",
"name": "rect40",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "293.79575",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect41",
"name": "rect41",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "299.34845",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect42",
"name": "rect42",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "304.90115",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect43",
"name": "rect43",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "310.4574",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect44",
"name": "rect44",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "235.8887",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect62",
"name": "rect62",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "186.3367",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect63",
"name": "rect63",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "191.88939",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect64",
"name": "rect64",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "197.44206",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect65",
"name": "rect65",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "203.07054",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect66",
"name": "rect66",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "208.81203",
"y": "220.90042"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect33-9",
"name": "rect33-9",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "101.64194",
"y": "161.02048"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect34-4",
"name": "rect34-4",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "107.19463",
"y": "161.02048"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect35-8",
"name": "rect35-8",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "112.74734",
"y": "161.02048"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect36-8",
"name": "rect36-8",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "118.30003",
"y": "161.02048"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect44-2",
"name": "rect44-2",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "96.198669",
"y": "161.02048"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect22-5",
"name": "rect22-5",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "16.559088",
"y": "161.02048"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect23-5",
"name": "rect23-5",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "22.11178",
"y": "161.02048"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect24-1",
"name": "rect24-1",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "27.664484",
"y": "161.02048"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect25-7",
"name": "rect25-7",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "33.292976",
"y": "161.02048"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect31-5",
"name": "rect31-5",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "72.069511",
"y": "161.02048"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect62-2",
"name": "rect62-2",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "44.075748",
"y": "161.02048"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect63-7",
"name": "rect63-7",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "49.628445",
"y": "161.02048"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect64-6",
"name": "rect64-6",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "55.181141",
"y": "161.02048"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect65-1",
"name": "rect65-1",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "60.809647",
"y": "161.02048"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect66-4",
"name": "rect66-4",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "66.551132",
"y": "161.02048"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect72",
"name": "rect72",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "77.701561",
"y": "161.02048"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect75",
"name": "rect75",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "289.84836",
"y": "63.174267"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect76",
"name": "rect76",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "262.03125",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect77",
"name": "rect77",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "267.60843",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect78",
"name": "rect78",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "273.18561",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.732544",
"id": "rect79",
"name": "rect79",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "4.9290252",
"x": "278.76151",
"y": "63.161339"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect80",
"name": "rect80",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "284.33997",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect81",
"name": "rect81",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "245.2998",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect82",
"name": "rect82",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "250.87697",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect83",
"name": "rect83",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "256.45404",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect85",
"name": "rect85",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "312.09451",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect86",
"name": "rect86",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "317.67172",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect87",
"name": "rect87",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "323.2489",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect90",
"name": "rect90",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "295.36304",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect91",
"name": "rect91",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "300.94022",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect92",
"name": "rect92",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "306.51733",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect1",
"name": "rect1",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "229.9435",
"y": "63.161564"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect27",
"name": "rect27",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "235.49974",
"y": "63.161564"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect29",
"name": "rect29",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.025063",
"x": "197.58163",
"y": "63.161564"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect32",
"name": "rect32",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.025063",
"x": "165.72321",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect37",
"name": "rect37",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.025063",
"x": "154.56897",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect45",
"name": "rect45",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.025063",
"x": "160.14603",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect46",
"name": "rect46",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.025063",
"x": "149.01273",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect47",
"name": "rect47",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.025063",
"x": "143.45648",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect31-8",
"name": "rect31-8",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "184.27266",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect62-5",
"name": "rect62-5",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "154.42679",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect63-76",
"name": "rect63-76",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "159.97949",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect64-1",
"name": "rect64-1",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "165.5322",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect65-8",
"name": "rect65-8",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "171.42528",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect66-9",
"name": "rect66-9",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "177.16676",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect69",
"name": "rect69",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "190.62267",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect70",
"name": "rect70",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "209.27829",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect71",
"name": "rect71",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "215.36017",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect84",
"name": "rect84",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "221.44205",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect88",
"name": "rect88",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "227.8643",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect89",
"name": "rect89",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "245.0621",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect93",
"name": "rect93",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "261.93024",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect94",
"name": "rect94",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "267.48297",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect95",
"name": "rect95",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "273.03571",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect96",
"name": "rect96",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "278.66425",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect97",
"name": "rect97",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "312.53104",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect98",
"name": "rect98",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "318.08731",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect99",
"name": "rect99",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "323.64359",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect100",
"name": "rect100",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "306.97476",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect101",
"name": "rect101",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "284.22052",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect102",
"name": "rect102",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "289.77679",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect104",
"name": "rect104",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "382.45288",
"y": "63.174267"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect105",
"name": "rect105",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "354.63577",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect106",
"name": "rect106",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "360.21295",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect107",
"name": "rect107",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "365.79013",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.732544",
"id": "rect108",
"name": "rect108",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "4.9290252",
"x": "371.36603",
"y": "63.161339"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect109",
"name": "rect109",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "376.94449",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect110",
"name": "rect110",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "337.90427",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect111",
"name": "rect111",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "343.48148",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect112",
"name": "rect112",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "349.05856",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect113",
"name": "rect113",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "404.69904",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect114",
"name": "rect114",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "410.27625",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect115",
"name": "rect115",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "415.85342",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect116",
"name": "rect116",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "387.96756",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect117",
"name": "rect117",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "393.54474",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect118",
"name": "rect118",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.26458333"
},
"type": "rect",
"width": "5.025063",
"x": "399.12186",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect119",
"name": "rect119",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "343.4874",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect120",
"name": "rect120",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "349.04367",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect122",
"name": "rect122",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "337.93112",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect123",
"name": "rect123",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "360.09103",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect124",
"name": "rect124",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "365.64377",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect125",
"name": "rect125",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "371.1965",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect126",
"name": "rect126",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "376.82504",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect127",
"name": "rect127",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "382.38132",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect128",
"name": "rect128",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "387.93759",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect129",
"name": "rect129",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "393.49387",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect130",
"name": "rect130",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "404.87097",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect131",
"name": "rect131",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "410.42725",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect132",
"name": "rect132",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "415.98352",
"y": "95.424515"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "20.73",
"id": "rect48",
"name": "rect48",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "5.025063",
"x": "421.37943",
"y": "63.162609"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "35.490601",
"id": "rect1-6-0-9-7-8-5-22-5-2-9-8",
"name": "rect1-6-0-9-7-8-5-22-5-2-9-8",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264524"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0271478",
"x": "-255.78181",
"y": "-201.13158"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "37.197872",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-8",
"name": "rect1-6-0-9-7-8-5-22-5-2-0-8",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264525"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0271478",
"x": "-271.43869",
"y": "-201.07501"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "37.26099",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-6-24",
"name": "rect1-6-0-9-7-8-5-22-5-2-0-6-24",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.262271"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0293927",
"x": "-286.9697",
"y": "-201.13918"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "37.157497",
"id": "rect1-6-0-9-7-8-5-22-5-5",
"name": "rect1-6-0-9-7-8-5-22-5-5",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264524"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0271478",
"x": "-218.73463",
"y": "-201.04834"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "37.291393",
"id": "rect1-6-0-9-7-8-5-22-5-2-5",
"name": "rect1-6-0-9-7-8-5-22-5-2-5",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264524"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0271478",
"x": "-240.17087",
"y": "-201.18187"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "37.252186",
"id": "rect1-6-0-9-7-8-5-22-1",
"name": "rect1-6-0-9-7-8-5-22-1",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.262272"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0293927",
"x": "-203.06807",
"y": "-201.12389"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "7.3600364",
"id": "rect1-6-0-9-7-8-5-22-6-4-6-8-0-7",
"name": "rect1-6-0-9-7-8-5-22-6-4-6-8-0-7",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.262297"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0293765",
"x": "-271.41858",
"y": "-163.38292"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "7.3734388",
"id": "rect1-6-0-9-7-8-5-22-6-4-6-8-0-2-1",
"name": "rect1-6-0-9-7-8-5-22-6-4-6-8-0-2-1",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.262297"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0293765",
"x": "-286.97168",
"y": "-163.39989"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "7.3198404",
"id": "rect1-6-0-9-7-8-5-22-6-4-6-8-1",
"name": "rect1-6-0-9-7-8-5-22-6-4-6-8-1",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.262297"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0293765",
"x": "-255.80614",
"y": "-165.21922"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "7.2246466",
"id": "rect1-6-0-9-7-8-5-22-6-4-6-5",
"name": "rect1-6-0-9-7-8-5-22-6-4-6-5",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264526"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0271478",
"x": "-240.15904",
"y": "-163.34367"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "7.2930908",
"id": "rect1-6-0-9-7-8-5-22-6-4-2",
"name": "rect1-6-0-9-7-8-5-22-6-4-2",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264526"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0271478",
"x": "-218.73619",
"y": "-163.36"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "7.3198428",
"id": "rect1-6-0-9-7-8-5-22-6-7",
"name": "rect1-6-0-9-7-8-5-22-6-7",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.262297"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0293684",
"x": "-203.06697",
"y": "-163.37939"
},
{
"d": "m 198.04214,201.5736 -0.38407,7.84833 5.81399,-0.002 -0.41849,-7.85404 z",
"fill": {
"paint": "#ffffff"
},
"id": "path89",
"name": "path89",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 213.68394,201.55422 -0.38406,7.84832 5.81398,-0.002 -0.41849,-7.85403 z",
"fill": {
"paint": "#ffffff"
},
"id": "path11",
"name": "path11",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 235.15672,201.56132 -0.38407,7.84833 5.81399,-0.002 -0.41849,-7.85404 z",
"fill": {
"paint": "#ffffff"
},
"id": "path12",
"name": "path12",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 250.77347,201.57472 -0.38407,7.84833 5.81399,-0.002 -0.41849,-7.85403 z",
"fill": {
"paint": "#ffffff"
},
"id": "path13",
"name": "path13",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 266.39022,201.57472 -0.38407,7.84833 5.81399,-0.002 -0.4185,-7.85403 z",
"fill": {
"paint": "#ffffff"
},
"id": "path14",
"name": "path14",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 281.91149,201.58813 -0.38406,7.84832 5.81399,-0.002 -0.4185,-7.85403 z",
"fill": {
"paint": "#ffffff"
},
"id": "path15",
"name": "path15",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 196.01373,145.51655 0.56526,0.91442 -0.009,6.94672 1.43999,0.004 0.0402,2.18355 5.02443,0.0141 -0.005,-2.17319 1.20354,0.006 0.0671,-6.99292 0.68389,-0.78305 -0.0312,-2.55 -8.98046,0.0145 c -0.009,0.0638 0,2.41568 0,2.41568 z",
"fill": {
"opacity": "1",
"paint": "#ffffff"
},
"id": "path23",
"name": "path23",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 211.68624,145.50985 0.56526,0.91442 -0.009,6.94672 1.43999,0.004 0.0402,2.18355 5.02443,0.0141 -0.005,-2.17319 1.20354,0.006 0.0671,-6.99292 0.6839,-0.78305 -0.0312,-2.55 -8.98046,0.0145 c -0.009,0.0638 0,2.41568 0,2.41568 z",
"fill": {
"opacity": "1",
"paint": "#ffffff"
},
"id": "path6",
"name": "path6",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 233.03584,145.4909 0.56526,0.91442 -0.009,6.94671 1.43999,0.004 0.0402,2.18355 5.02444,0.0141 -0.005,-2.17318 1.20354,0.006 0.0671,-6.99292 0.68389,-0.78306 -0.0312,-2.54999 -8.98046,0.0145 c -0.009,0.0638 0,2.41569 0,2.41569 z",
"fill": {
"opacity": "1",
"paint": "#ffffff"
},
"id": "path7",
"name": "path7",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 248.78986,145.47194 0.56526,0.91443 -0.009,6.94671 1.43999,0.004 0.0402,4.07864 5.02444,-0.005 -0.005,-4.04932 1.20354,0.006 0.0671,-6.99292 0.68389,-0.78305 -0.0312,-2.55 -8.98046,0.0145 c -0.009,0.0638 0,2.41568 0,2.41568 z",
"fill": {
"opacity": "1",
"paint": "#ffffff"
},
"id": "path8",
"name": "path8",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 264.35437,145.47194 0.56526,0.91443 -0.009,6.94671 1.43999,0.004 0.0402,2.18355 5.02444,0.0141 -0.005,-2.17318 1.20354,0.006 0.0671,-6.99293 0.68389,-0.78305 -0.0312,-2.55 -8.98046,0.0145 c -0.009,0.0638 0,2.41569 0,2.41569 z",
"fill": {
"opacity": "1",
"paint": "#ffffff"
},
"id": "path9",
"name": "path9",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 279.89596,145.47194 0.56526,0.91443 -0.009,6.94671 1.43999,0.004 0.0402,2.18355 5.02443,0.0141 -0.005,-2.17318 1.20354,0.006 0.0671,-6.99293 0.68389,-0.78305 -0.0312,-2.55 -8.98046,0.0145 c -0.009,0.0638 0,2.41569 0,2.41569 z",
"fill": {
"opacity": "1",
"paint": "#ffffff"
},
"id": "path10",
"name": "path10",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "37.254719",
"id": "rect17-2",
"name": "rect17-2",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264525"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0271478",
"x": "-180.812",
"y": "-75.585945"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "37.282837",
"id": "rect18-3",
"name": "rect18-3",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.262271"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0360012",
"x": "-196.38455",
"y": "-75.593254"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "7.3600364",
"id": "rect19-2",
"name": "rect19-2",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.262297"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0293765",
"x": "-180.79185",
"y": "-37.837006"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "7.316587",
"id": "rect20-2",
"name": "rect20-2",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.262297"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0293765",
"x": "-196.38654",
"y": "-37.797123"
},
{
"d": "m 175.76303,76.028806 -0.38407,7.848328 5.81401,-0.0019 -0.41852,-7.854035 z",
"fill": {
"paint": "#ffffff"
},
"id": "path20",
"name": "path20",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 191.32617,76.042207 -0.38404,7.848328 5.81398,-0.0019 -0.41849,-7.854035 z",
"fill": {
"paint": "#ffffff"
},
"id": "path21",
"name": "path21",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "37.292614",
"id": "rect24-16",
"name": "rect24-16",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264525"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0271478",
"x": "-211.99428",
"y": "-75.614365"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "37.294491",
"id": "rect25-8",
"name": "rect25-8",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.262271"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0294089",
"x": "-228.09602",
"y": "-75.583771"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "7.3600364",
"id": "rect26-5",
"name": "rect26-5",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.262297"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0293765",
"x": "-211.97417",
"y": "-37.82753"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "7.3734388",
"id": "rect28-7",
"name": "rect28-7",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.262297"
},
"transform": "scale(-1)",
"type": "rect",
"width": "5.0293765",
"x": "-228.09801",
"y": "-37.844498"
},
{
"d": "m 206.94553,76.019332 -0.38407,7.848327 5.81401,-0.0019 -0.41852,-7.854035 z",
"fill": {
"paint": "#ffffff"
},
"id": "path28",
"name": "path28",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 223.03784,76.032733 -0.38404,7.848327 5.81398,-0.0019 -0.41849,-7.854034 z",
"fill": {
"paint": "#ffffff"
},
"id": "path29",
"name": "path29",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 173.72719,19.926021 0.56526,0.914427 -0.009,6.946712 1.43999,0.0043 0.0402,2.183548 5.02444,0.01413 -0.005,-2.173184 1.20354,0.0057 0.0671,-6.992925 0.6839,-0.783052 -0.0312,-2.549999 -8.98047,0.0145 c -0.009,0.06376 0,2.415683 0,2.415683 z",
"fill": {
"opacity": "1",
"paint": "#ffffff"
},
"id": "path22",
"name": "path22",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 189.31065,19.926021 0.56526,0.914427 -0.009,6.946712 1.43999,0.0043 0.0402,2.183548 5.02443,0.01413 -0.005,-2.173184 1.20354,0.0057 0.0671,-6.992925 0.6839,-0.783052 -0.0312,-2.549999 -8.98046,0.0145 c -0.009,0.06376 0,2.415683 0,2.415683 z",
"fill": {
"opacity": "1",
"paint": "#ffffff"
},
"id": "path24",
"name": "path24",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 204.9097,19.916547 0.56525,0.914426 -0.009,6.946712 1.44,0.0043 0.0402,2.183548 5.02444,0.01413 -0.005,-2.173184 1.20354,0.0057 0.0671,-6.992924 0.6839,-0.783053 -0.0312,-2.549999 -8.98046,0.0145 c -0.009,0.06376 0,2.415683 0,2.415683 z",
"fill": {
"opacity": "1",
"paint": "#ffffff"
},
"id": "path30",
"name": "path30",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"d": "m 221.02232,19.916547 0.56526,0.914426 -0.009,6.946712 1.44,0.0043 0.0402,2.183548 5.02444,0.01413 -0.005,-2.173184 1.20354,0.0057 0.0671,-6.992924 0.6839,-0.783053 -0.0312,-2.549999 -8.98046,0.0145 c -0.009,0.06376 0,2.415683 0,2.415683 z",
"fill": {
"opacity": "1",
"paint": "#ffffff"
},
"id": "path31",
"name": "path31",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "path"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect49",
"name": "rect49",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "421.46149",
"y": "95.424515"
},
{
"fill": {},
"height": "10.319307",
"id": "rect50",
"name": "rect50",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264026"
},
"type": "rect",
"width": "283.37048",
"x": "143.39265",
"y": "84.534172"
},
{
"fill": {},
"height": "10.669835",
"id": "rect50-8",
"name": "rect50-8",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264886"
},
"type": "rect",
"width": "172.10139",
"x": "143.33623",
"y": "209.82343"
},
{
"fill": {},
"height": "10.66983",
"id": "rect51",
"name": "rect51",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264886"
},
"type": "rect",
"width": "107.66582",
"x": "16.204323",
"y": "149.7774"
},
{
"fill": {},
"height": "40.37624",
"id": "rect52",
"name": "rect52",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.260098"
},
"type": "rect",
"width": "10.323242",
"x": "128.05284",
"y": "164.51723"
},
{
"d": "m 124.30954,160.58997 c 1.719,0.0219 3.58601,0.39269 3.74056,3.60169 l 10.26807,-0.0155 c 0.41705,-12.69592 -3.29891,-14.12351 -13.98151,-14.40273 z",
"fill": {
"opacity": "1"
},
"id": "path53",
"name": "path53",
"stroke": {
"dasharray": "none",
"linecap": "square",
"linejoin": "bevel",
"opacity": "1",
"paint": "#000000",
"width": "0.264583"
},
"style": {
"opacity": "1"
},
"type": "path"
},
{
"d": "m 142.76368,209.70216 c -1.719,-0.0219 -4.25894,-1.14844 -4.41349,-4.35744 l -10.25772,-0.0156 c -0.41705,12.69592 4.83112,14.70326 14.64409,15.18954 z",
"fill": {
"opacity": "1"
},
"id": "path54",
"name": "path54",
"stroke": {
"dasharray": "none",
"linecap": "square",
"linejoin": "bevel",
"opacity": "1",
"paint": "#000000",
"width": "0.264583"
},
"style": {
"opacity": "1"
},
"type": "path"
},
{
"d": "m 139.96933,89.944788 c -43.309672,-0.03504 -43.347994,36.449002 3.864,36.904962 l 178.26899,0.11713 c 92.25001,-0.79441 105.81529,86.23029 -0.7324,87.66624",
"fill": {
"opacity": "1",
"paint": "transparent"
},
"id": "path56",
"name": "path56",
"stroke": {
"dasharray": "1.5875, 1.5875",
"dashoffset": "0",
"linecap": "square",
"linejoin": "bevel",
"opacity": "1",
"paint": "#000000",
"width": "0.264583"
},
"style": {
"markerEnd": "url(#Triangle)",
"markerStart": "url(#marker57)",
"opacity": "1"
},
"type": "path"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect26-8",
"name": "rect26-8",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "171.27797",
"y": "220.94434"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect2",
"name": "rect2",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "60.707943",
"y": "140.28879"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect5",
"name": "rect5",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "66.260635",
"y": "140.28879"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect7",
"name": "rect7",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "71.813332",
"y": "140.28879"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect28",
"name": "rect28",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": "77.441841",
"y": "140.28879"
},
{
"fill": {
"paint": "#ffffff"
},
"height": "8.9114017",
"id": "rect2",
"name": "rect2",
"stroke": {
"dasharray": "none",
"paint": "#000000",
"width": "0.264583"
},
"type": "rect",
"width": "4.9426513",
"x": 55.107943,
"y": "140.28879"
}
],
"id": "layer1",
"name": "layer1",
"type": "group"
}
],
"preserveAspectRatio": "none",
"viewBox": "0 0 489.47916 271.99167"
},
"type": "ia.shapes.svg"
},
{
"meta": {
"name": "S011101"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.034,
"y": 0.5973
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_328",
"S011101",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011099"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.0453,
"y": 0.5973
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_326",
"S011099",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011097"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.0567,
"y": 0.5973
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_324",
"S011097",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011095"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.068,
"y": 0.5973
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_322",
"S011095",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011091"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.0902,
"y": 0.5973
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_318",
"S011091",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011089"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.1015,
"y": 0.5973
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_316",
"S011089",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011087"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.1129,
"y": 0.5973
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_314",
"S011087",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011085"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.1244,
"y": 0.5973
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_312",
"S011085",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011083"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.136,
"y": 0.5973
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_310",
"S011083",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011081"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.1475,
"y": 0.5973
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_308",
"S011081",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011079"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.1588,
"y": 0.5973
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_306",
"S011079",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011075"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.1965,
"y": 0.5973
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_300",
"S011075",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011073"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.2075,
"y": 0.5973
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_298",
"S011073",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011071"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.2189,
"y": 0.5973
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_296",
"S011071",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011069"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.2302,
"y": 0.5973
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_294",
"S011069",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011067"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.2416,
"y": 0.5973
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_292",
"S011067",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011056"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.2926,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_279",
"S011056",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011054"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.3034,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_277",
"S011054",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011052"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.3153,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_275",
"S011052",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011050"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.3267,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": 1,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_273",
"S011050",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011048"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.338,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_271",
"S011048",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011046"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.3494,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_269",
"S011046",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011044"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.3607,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_267",
"S011044",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011042"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.3721,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_265",
"S011042",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011040"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.3834,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_263",
"S011040",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011055"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.3043,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_278",
"S011055",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011053"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.3156,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_276",
"S011053",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011051"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.327,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_274",
"S011051",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011049"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.3384,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_272",
"S011049",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011047"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.3497,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_270",
"S011047",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011043"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.381,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_266",
"S011043",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011041"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.3924,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_264",
"S011041",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011039"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.4037,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_262",
"S011039",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011037"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.4146,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_260",
"S011037",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011035"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.4265,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_258",
"S011035",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011033"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.4383,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_256",
"S011033",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011025"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.4819,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_248",
"S011025",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011023"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.4932,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_246",
"S011023",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011021"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.5046,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_244",
"S011021",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011019"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.5159,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_242",
"S011019",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011017"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.5273,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_240",
"S011017",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011011"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.5892,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_234",
"S011011",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011009"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.6001,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_232",
"S011009",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011007"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.6114,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_230",
"S011007",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011005"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.6228,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_228",
"S011005",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011003"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.6341,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_226",
"S011003",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011032"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.45,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_255",
"S011032",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011030"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.4613,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_253",
"S011030",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011020"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.5251,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_243",
"S011020",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011012"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.5889,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_235",
"S011012",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011010"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.6002,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_233",
"S011010",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011008"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.6111,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_231",
"S011008",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011006"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.6224,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_229",
"S011006",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011004"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.6343,
"y": 0.718
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_227",
"S011004",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013002"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.293,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_16",
"S013002",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013004"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.3048,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_18",
"S013004",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013006"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.3162,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_20",
"S013006",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013008"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.3275,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_22",
"S013008",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013010"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.3384,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_24",
"S013010",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013018"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.4037,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_32",
"S013018",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013026"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.4697,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_40",
"S013026",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013028"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.4811,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_42",
"S013028",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013032"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.501,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_46",
"S013032",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013034"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.5124,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_48",
"S013034",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013036"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.5242,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_50",
"S013036",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013038"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.5356,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_52",
"S013038",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013040"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.547,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_54",
"S013040",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013042"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.5583,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_56",
"S013042",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013044"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.5697,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_58",
"S013044",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013046"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.581,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_60",
"S013046",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013048"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.5924,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_62",
"S013048",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013050"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.6037,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_64",
"S013050",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013052"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.6146,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_66",
"S013052",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013054"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.6259,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_68",
"S013054",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013056"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.6378,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_70",
"S013056",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013058"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.6491,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_72",
"S013058",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013060"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.6605,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_74",
"S013060",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013064"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.6902,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_78",
"S013064",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013066"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.7016,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_80",
"S013066",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013068"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.7129,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_82",
"S013068",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013070"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.7243,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_84",
"S013070",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013072"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.7357,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_86",
"S013072",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013074"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.7475,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_88",
"S013074",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013076"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.7589,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_90",
"S013076",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013078"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.7702,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_92",
"S013078",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013080"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.7811,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_94",
"S013080",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013082"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.7924,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_96",
"S013082",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013084"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.8043,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_98",
"S013084",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013086"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.8151,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_100",
"S013086",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013088"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.827,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_102",
"S013088",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013090"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.8383,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_104",
"S013090",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013092"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.8497,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_106",
"S013092",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013094"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.861,
"y": 0.2568
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_108",
"S013094",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013005"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.3156,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_21",
"S013005",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013007"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.3269,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_23",
"S013007",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013009"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.3383,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_25",
"S013009",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013011"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.3502,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_27",
"S013011",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013013"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.3621,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_29",
"S013013",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013015"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.3767,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_31",
"S013015",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013017"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.3891,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_33",
"S013017",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013021"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.4277,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_37",
"S013021",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013023"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.4402,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_39",
"S013023",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013025"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.4526,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_41",
"S013025",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013027"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.4656,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_43",
"S013027",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013031"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.5007,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_47",
"S013031",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013037"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.5347,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_53",
"S013037",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013039"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.5465,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_55",
"S013039",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013041"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.5579,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_57",
"S013041",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013043"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.5693,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_59",
"S013043",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013045"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.5806,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_61",
"S013045",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013047"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.592,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_63",
"S013047",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013053"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.6271,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_69",
"S013053",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013055"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.6385,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_71",
"S013055",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013057"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.6503,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_73",
"S013057",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013059"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.6612,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_75",
"S013059",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013063"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.6903,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_79",
"S013063",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013065"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.7017,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_81",
"S013065",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013067"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.713,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_83",
"S013067",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013071"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.7357,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_87",
"S013071",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013073"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.7471,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_89",
"S013073",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013075"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.7584,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_91",
"S013075",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013077"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.7698,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_93",
"S013077",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013079"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.7812,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_95",
"S013079",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013081"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.7925,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_97",
"S013081",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013083"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.8038,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_99",
"S013083",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013087"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.8271,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_103",
"S013087",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013089"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.8385,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_105",
"S013089",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013091"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.8498,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_107",
"S013091",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013093"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.8612,
"y": 0.3571
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_109",
"S013093",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM3"
},
"position": {
"height": 0.0146,
"width": 0.0162,
"x": 0.1312,
"y": 0.5558
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/DPM/VSA_DPM3",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/ControlCabinet",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM2"
},
"position": {
"height": 0.0146,
"width": 0.0162,
"x": 0.3243,
"y": 0.7811
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/DPM/VSA_DPM2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/ControlCabinet",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM1"
},
"position": {
"height": 0.0146,
"width": 0.0162,
"x": 0.5366,
"y": 0.7821
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/DPM/VSA_DPM1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/ControlCabinet",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM1"
},
"position": {
"height": 0.0146,
"width": 0.0162,
"x": 0.3669,
"y": 0.322
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/DPM/VSC_DPM1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/ControlCabinet",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM2"
},
"position": {
"height": 0.0146,
"width": 0.0162,
"x": 0.5816,
"y": 0.323
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/DPM/VSC_DPM2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/ControlCabinet",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM3"
},
"position": {
"height": 0.0146,
"width": 0.0162,
"x": 0.781,
"y": 0.323
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/DPM/VSC_DPM3",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/ControlCabinet",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL3016_2_DPM1"
},
"position": {
"height": 0.0146,
"rotate": {
"angle": "90deg"
},
"width": 0.0162,
"x": 0.4043,
"y": 0.1711
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/DPM/FL3016_2_DPM1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/ControlCabinet",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL1034_2_DPM1"
},
"position": {
"height": 0.0146,
"rotate": {
"angle": "90deg"
},
"width": 0.0162,
"x": 0.4508,
"y": 0.6366
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/DPM/FL1034_2_DPM1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/ControlCabinet",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011055_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3052,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_278",
"S011055",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011053_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.316,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_276",
"S011053",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011051_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3271,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_274",
"S011051",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011049_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3388,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_272",
"S011049",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011047_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3506,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_270",
"S011047",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011043_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3809,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_266",
"S011043",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011041_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3925,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_264",
"S011041",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011039_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4037,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_262",
"S011039",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011037_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4155,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_260",
"S011037",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011035_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4274,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_258",
"S011035",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011033_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4385,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_256",
"S011033",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011025_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4815,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_248",
"S011025",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011023_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4929,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_246",
"S011023",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011021_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5045,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_244",
"S011021",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011019_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5162,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_242",
"S011019",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011017_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5274,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_240",
"S011017",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011011_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5889,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_234",
"S011011",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011009_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6001,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_232",
"S011009",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011007_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6114,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_230",
"S011007",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011005_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6227,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_228",
"S011005",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011003_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.634,
"y": 0.864
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011003_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011101_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.0336,
"y": 0.627
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_328",
"S011101",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011099_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.0455,
"y": 0.627
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_326",
"S011099",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011097_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.0568,
"y": 0.627
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_324",
"S011097",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011095_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.0685,
"y": 0.627
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_322",
"S011095",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011091_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.0904,
"y": 0.627
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_318",
"S011091",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011089_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.1017,
"y": 0.627
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_316",
"S011089",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011087_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.1131,
"y": 0.627
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_314",
"S011087",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011085_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.1247,
"y": 0.627
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_312",
"S011085",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011083_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.1359,
"y": 0.627
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_310",
"S011083",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011081_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.1476,
"y": 0.627
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_308",
"S011081",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011079_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.1585,
"y": 0.627
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_306",
"S011079",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011075_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.1968,
"y": 0.627
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_300",
"S011075",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011073_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.2078,
"y": 0.645
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011073_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011071_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.2196,
"y": 0.627
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_296",
"S011071",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011069_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.2309,
"y": 0.627
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_294",
"S011069",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011067_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.242,
"y": 0.627
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_292",
"S011067",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011056_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.2918,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011056_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011054_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3037,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011054_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011052_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.315,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011052_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011050_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3266,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011050_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011048_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3378,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011048_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011046_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3496,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011046_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011044_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.361,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011044_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011042_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.372,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011042_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011040_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3832,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011040_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011032_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4497,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011032_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011030_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4613,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011030_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011020_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5246,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011020_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011012_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5886,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011012_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011010_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6003,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011010_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011008_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6115,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011008_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011006_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6229,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011006_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011004_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6341,
"y": 0.6762
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S011004_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013021_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4276,
"y": 0.3852
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_37",
"S013021",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013023_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.44,
"y": 0.3852
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_39",
"S013023",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013025_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.453,
"y": 0.3852
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_41",
"S013025",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013027_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.465,
"y": 0.3852
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_43",
"S013027",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013031_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5007,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_47",
"S013031",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013037_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.535,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_53",
"S013037",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013039_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5468,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_55",
"S013039",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013041_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5582,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_57",
"S013041",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013043_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5698,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_59",
"S013043",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013045_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5814,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_61",
"S013045",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013047_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5923,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_63",
"S013047",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013053_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6269,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_69",
"S013053",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013055_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6388,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_71",
"S013055",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013057_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6501,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_73",
"S013057",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013059_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6613,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_75",
"S013059",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013063_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6907,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_79",
"S013063",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013065_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7025,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_81",
"S013065",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013067_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7137,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_83",
"S013067",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013071_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7375,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_87",
"S013071",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013073_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7479,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_89",
"S013073",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013075_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7593,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_91",
"S013075",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013077_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7699,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_93",
"S013077",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013079_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7815,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_95",
"S013079",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013081_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7933,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_97",
"S013081",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013083_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.804,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_99",
"S013083",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013087_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.827,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_103",
"S013087",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013089_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.8388,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_105",
"S013089",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013091_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.8502,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_107",
"S013091",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013093_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.8618,
"y": 0.3853
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_109",
"S013093",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013005_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3157,
"y": 0.3852
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_21",
"S013005",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013007_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3271,
"y": 0.3852
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_23",
"S013007",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013009_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3379,
"y": 0.3852
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_25",
"S013009",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013011_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3506,
"y": 0.3852
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_27",
"S013011",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013013_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3622,
"y": 0.3852
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_29",
"S013013",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013015_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3768,
"y": 0.3852
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_31",
"S013015",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013017_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3901,
"y": 0.3852
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_33",
"S013017",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013002_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.293,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013002_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013004_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3036,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013004_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013006_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3153,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013006_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013008_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3271,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013008_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013010_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3387,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013010_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013018_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4037,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013018_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013026_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4695,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013026_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013028_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4807,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013028_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013032_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5006,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013032_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013034_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5125,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013034_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013036_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5235,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013036_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013038_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5352,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013038_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013040_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5465,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013040_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013042_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5574,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013042_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013044_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5685,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013044_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013046_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5806,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013046_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013048_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5919,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013048_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013050_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6028,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013050_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013052_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6144,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013052_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013054_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.626,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013054_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013056_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6374,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013056_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013058_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6487,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013058_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013060_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6604,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013060_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013064_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6898,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013064_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013066_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7011,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013066_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013068_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7125,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013068_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013070_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7241,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013070_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013072_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7357,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013072_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013074_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7471,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013074_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013076_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7584,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013076_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013078_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7695,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013078_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013080_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7811,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013080_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013082_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7925,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013082_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013084_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.8038,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013084_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013086_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.8149,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013086_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013088_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.826,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013088_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013090_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.8379,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013090_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013092_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.8492,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013092_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013094_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.8604,
"y": 0.215
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/PalletBuild/S013094_PB_Chute",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL1018_1CH"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.5443,
"y": 0.7442
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL1018_1CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5",
"inheritedGroupPrefix": "CON",
"name": "FL1034_1CH",
"originalName": "FL1034-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.4365,
"y": 0.745
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL1034_1CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22",
"inheritedGroupPrefix": "CON",
"name": "FL1038_1CH",
"originalName": "FL1038-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.4046,
"y": 0.745
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL1038_1CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2",
"inheritedGroupPrefix": "CON",
"name": "FL1026_1CH",
"originalName": "FL1026-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.4804,
"y": 0.7459
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL1022_1CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-9",
"inheritedGroupPrefix": "CON",
"name": "FL1022_1CH",
"originalName": "FL1022-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.5123,
"y": 0.7469
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL1022_1CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-6",
"inheritedGroupPrefix": "CON",
"name": "FL1014_1CH",
"originalName": "FL1014-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.5759,
"y": 0.744
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL1014_1CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5",
"inheritedGroupPrefix": "CON",
"name": "FL1034_3CH",
"originalName": "FL1034-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.4365,
"y": 0.5767
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL1034_3CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22",
"inheritedGroupPrefix": "CON",
"name": "FL1038_3CH",
"originalName": "FL1038-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.4046,
"y": 0.5767
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL1038_3CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2",
"inheritedGroupPrefix": "CON",
"name": "FL1026_3CH",
"originalName": "FL1026-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.4804,
"y": 0.5776
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL1022_3CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-9",
"inheritedGroupPrefix": "CON",
"name": "FL1022_3CH",
"originalName": "FL1022-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.5123,
"y": 0.5854
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL1022_3CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0",
"inheritedGroupPrefix": "CON",
"name": "FL1018_3CH",
"originalName": "FL1018-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.5445,
"y": 0.5767
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL1018_3CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-6",
"inheritedGroupPrefix": "CON",
"name": "FL1014_3CH",
"originalName": "FL1014-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.5759,
"y": 0.5757
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL1014_3CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22",
"inheritedGroupPrefix": "CON",
"name": "FL1038_4",
"originalName": "FL1038-2"
},
"position": {
"height": 0.0175,
"rotate": {
"angle": -90
},
"width": 0.0141,
"x": 0.4036,
"y": 0.5379
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/EXTENDO/FL1038_4_EX1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Extendo",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5",
"inheritedGroupPrefix": "CON",
"name": "FL1034_4",
"originalName": "FL1034-2"
},
"position": {
"height": 0.0175,
"rotate": {
"angle": -90
},
"width": 0.0141,
"x": 0.4349,
"y": 0.5379
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/EXTENDO/FL1034_4_EX1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Extendo",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2",
"inheritedGroupPrefix": "CON",
"name": "FL1026_4",
"originalName": "FL1026-2"
},
"position": {
"height": 0.0175,
"rotate": {
"angle": -90
},
"width": 0.0141,
"x": 0.4788,
"y": 0.5379
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/EXTENDO/FL1026_4_EX1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Extendo",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-9",
"inheritedGroupPrefix": "CON",
"name": "FL1022_4",
"originalName": "FL1022-2"
},
"position": {
"height": 0.0175,
"rotate": {
"angle": -90
},
"width": 0.0141,
"x": 0.5106,
"y": 0.5379
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/EXTENDO/FL1022_4_EX1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Extendo",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0",
"inheritedGroupPrefix": "CON",
"name": "FL1018_4",
"originalName": "FL1018-2"
},
"position": {
"height": 0.0175,
"rotate": {
"angle": -90
},
"width": 0.0141,
"x": 0.5424,
"y": 0.5379
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/EXTENDO/FL1018_4_EX1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Extendo",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-6",
"inheritedGroupPrefix": "CON",
"name": "FL1014_4",
"originalName": "FL1014-2"
},
"position": {
"height": 0.0175,
"rotate": {
"angle": -90
},
"width": 0.0141,
"x": 0.5743,
"y": 0.5379
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/EXTENDO/FL1014_4_EX1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Extendo",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-6-2",
"inheritedGroupPrefix": "CON",
"name": "FL3016_1CH",
"originalName": "FL3016-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.3911,
"y": 0.2839
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL3016_1CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-4-2",
"inheritedGroupPrefix": "CON",
"name": "FL3020_1CH",
"originalName": "FL3020-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.423,
"y": 0.2839
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL3020_1CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-6-2-7",
"inheritedGroupPrefix": "CON",
"name": "FL3024_1CH",
"originalName": "FL3024-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.4556,
"y": 0.2839
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL3024_1CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-4",
"inheritedGroupPrefix": "CON",
"name": "FL3012_1CH",
"originalName": "FL3012-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.3594,
"y": 0.2839
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL3012_1CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-4",
"inheritedGroupPrefix": "CON",
"name": "FL3012_3CH",
"originalName": "FL3012-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.3594,
"y": 0.1157
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL3012_3CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-6-2",
"inheritedGroupPrefix": "CON",
"name": "FL3016_3CH",
"originalName": "FL3016-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.3911,
"y": 0.1157
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL3016_3CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-4-2",
"inheritedGroupPrefix": "CON",
"name": "FL3020_3CH",
"originalName": "FL3020-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.423,
"y": 0.1157
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL3020_3CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-6-2-7",
"inheritedGroupPrefix": "CON",
"name": "FL3024_3CH",
"originalName": "FL3024-2"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.4561,
"y": 0.1157
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/PE/FL3024_3CH_PE1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/StatusNonPowered",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-6-2-7",
"inheritedGroupPrefix": "CON",
"name": "FL3024_4",
"originalName": "FL3024-2"
},
"position": {
"height": 0.0175,
"rotate": {
"angle": -90
},
"width": 0.0141,
"x": 0.4539,
"y": 0.0762
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/EXTENDO/FL3024_4_EX1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Extendo",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-4-2",
"inheritedGroupPrefix": "CON",
"name": "FL3020_4",
"originalName": "FL3020-2"
},
"position": {
"height": 0.0175,
"rotate": {
"angle": -90
},
"width": 0.0141,
"x": 0.4214,
"y": 0.0762
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/EXTENDO/FL3020_4_EX1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Extendo",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-6-2",
"inheritedGroupPrefix": "CON",
"name": "FL3016_4",
"originalName": "FL3016-2"
},
"position": {
"height": 0.0175,
"rotate": {
"angle": -90
},
"width": 0.0141,
"x": 0.3895,
"y": 0.0762
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/EXTENDO/FL3016_4_EX1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Extendo",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-4",
"inheritedGroupPrefix": "CON",
"name": "FL3012_4",
"originalName": "FL3012-2"
},
"position": {
"height": 0.0175,
"rotate": {
"angle": -90
},
"width": 0.0141,
"x": 0.3573,
"y": 0.0762
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/EXTENDO/FL3012_4_EX1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Extendo",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-6",
"inheritedGroupPrefix": "CON",
"name": "FL1014_2",
"originalName": "FL1014-2"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": -90
},
"width": 0.0108,
"x": 0.5759,
"y": 0.6525
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/VFD/FL1014_2_VFD1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Status",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0",
"inheritedGroupPrefix": "CON",
"name": "FL1018_2",
"originalName": "FL1018-2"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": -90
},
"width": 0.0108,
"x": 0.5446,
"y": 0.6535
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/VFD/FL1018_2_VFD1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Status",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-9",
"inheritedGroupPrefix": "CON",
"name": "FL1022_2",
"originalName": "FL1022-2"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": -90
},
"width": 0.0108,
"x": 0.5128,
"y": 0.6564
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/VFD/FL1022_2_VFD1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Status",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2",
"inheritedGroupPrefix": "CON",
"name": "FL1026_2",
"originalName": "FL1026-2"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": -90
},
"width": 0.0108,
"x": 0.4804,
"y": 0.6555
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/VFD/FL1026_2_VFD1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Status",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5",
"inheritedGroupPrefix": "CON",
"name": "FL1034_2",
"originalName": "FL1034-2"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": -90
},
"width": 0.0108,
"x": 0.4365,
"y": 0.6545
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/VFD/FL1034_2_VFD1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Status",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22",
"inheritedGroupPrefix": "CON",
"name": "FL1038_2",
"originalName": "FL1038-2"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": -90
},
"width": 0.0108,
"x": 0.4046,
"y": 0.6545
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/VFD/FL1038_2_VFD1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Status",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-4",
"inheritedGroupPrefix": "CON",
"name": "FL3012_2",
"originalName": "FL3012-2"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": -90
},
"width": 0.0108,
"x": 0.359,
"y": 0.1944
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/VFD/FL3012_2_VFD1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Status",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-6-2",
"inheritedGroupPrefix": "CON",
"name": "FL3016_2",
"originalName": "FL3016-2"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": -90
},
"width": 0.0108,
"x": 0.3906,
"y": 0.1944
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/VFD/FL3016_2_VFD1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Status",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-4-2",
"inheritedGroupPrefix": "CON",
"name": "FL3020_2",
"originalName": "FL3020-2"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": -90
},
"width": 0.0108,
"x": 0.4226,
"y": 0.1944
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/VFD/FL3020_2_VFD1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Status",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"elementPrefix": "CON",
"forcedPrefix": "CON",
"id": "rect1-6-0-9-7-8-5-22-5-2-0-6-2-7",
"inheritedGroupPrefix": "CON",
"name": "FL3024_2",
"originalName": "FL3024-2"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": -90
},
"width": 0.0108,
"x": 0.4556,
"y": 0.1944
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Conveyor/VFD/FL3024_2_VFD1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Status",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM3_FIO7"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.8438,
"y": 0.3103
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM3_FIO7",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM3_FIO5"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.7973,
"y": 0.3103
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM3_FIO5",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM3_FIO4"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.7519,
"y": 0.3298
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM3_FIO4",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM3_FIO2"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.707,
"y": 0.3288
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM3_FIO2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM2_FIO7"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.6438,
"y": 0.3103
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM2_FIO7",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM2_FIO5"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.5968,
"y": 0.3103
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM2_FIO5",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM2_FIO3"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.5519,
"y": 0.3103
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM2_FIO3",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM2_FIO1"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.4962,
"y": 0.3103
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM2_FIO1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM1_FIO7"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.4459,
"y": 0.3103
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM1_FIO7",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM1_FIO5"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.4162,
"y": 0.3103
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM1_FIO5",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM1_FIO4"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.3318,
"y": 0.3298
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM1_FIO4",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM3_FIO8"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.8443,
"y": 0.3288
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM3_FIO8",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM3_FIO6"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.7978,
"y": 0.3288
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM3_FIO6",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM3_FIO3"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.7519,
"y": 0.3113
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM3_FIO3",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM3_FIO1"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.707,
"y": 0.3103
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM3_FIO1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM2_FIO8"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.6438,
"y": 0.3288
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM2_FIO8",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM2_FIO6"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.5968,
"y": 0.3288
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM2_FIO6",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM2_FIO4"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.5519,
"y": 0.3288
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM2_FIO4",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM2_FIO2"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.4962,
"y": 0.3288
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM2_FIO2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM1_FIO8"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.4459,
"y": 0.3288
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM1_FIO8",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM1_FIO6"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.4162,
"y": 0.3288
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM1_FIO6",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM1_FIO3"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.3319,
"y": 0.3113
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM1_FIO3",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM1_FIO1"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.2924,
"y": 0.3113
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM1_FIO1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM2_FIO6"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.3135,
"y": 0.7704
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM2_FIO6",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM2_FIO4"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.3637,
"y": 0.7704
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM2_FIO4",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM2_FIO1"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.408,
"y": 0.7889
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM2_FIO1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM1_FIO7"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.4415,
"y": 0.7899
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM1_FIO7",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM1_FIO5"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.4869,
"y": 0.7899
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM1_FIO5",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM1_FIO3"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.5724,
"y": 0.7899
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM1_FIO3",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM1_FIO1"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.6167,
"y": 0.7899
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM1_FIO1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM2_FIO5"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.3135,
"y": 0.7889
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM2_FIO5",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM2_FIO3"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.3637,
"y": 0.7889
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM2_FIO3",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM2_FIO2"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.4081,
"y": 0.7704
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM2_FIO2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM1_FIO8"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.4416,
"y": 0.7704
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM1_FIO8",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM1_FIO6"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.487,
"y": 0.7704
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM1_FIO6",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM1_FIO4"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.5724,
"y": 0.7704
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM1_FIO4",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM1_FIO2"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.6167,
"y": 0.7704
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM1_FIO2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM3_FIO1"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.2247,
"y": 0.5717
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM3_FIO1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM3_FIO2"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.1647,
"y": 0.5717
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM3_FIO2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM3_FIO4"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.0719,
"y": 0.5717
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM3_FIO4",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM3_FIO3"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.1184,
"y": 0.5717
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM3_FIO3",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM3_FIO5"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.0337,
"y": 0.5717
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM3_FIO5",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL1038_2_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3943,
"y": 0.7267
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL1038_2_JR1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL1034_2_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4253,
"y": 0.7267
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL1034_2_JR1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL1026_2_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4713,
"y": 0.7267
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL1026_2_JR1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL1022_2_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5018,
"y": 0.7267
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL1022_2_JR1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL1018_2_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5352,
"y": 0.7267
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL1018_2_JR1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL1014_2_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5646,
"y": 0.7267
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL1014_2_JR1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL3012_2_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3488,
"y": 0.2665
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL3012_2_JR1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL3016_2_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3806,
"y": 0.266
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL3016_2_JR1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL3020_2_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4141,
"y": 0.266
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL3020_2_JR1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL3024_2_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.445,
"y": 0.2656
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL3024_2_JR1",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "MCM04_Button",
"tooltip": {
"text": "MCM04 North Bulk Inbound, Fluid Outbound and Problem Solve"
}
},
"position": {
"height": 0.034,
"width": 0.2632,
"x": 0.6651,
"y": 0.8109
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"pageid": "DetailedView/MCM04 North Bulk Inbound, Fluid Outbound and Problem Solve",
"tagProps": [
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
],
"text": "MCM04 North Bulk Inbound, Fluid Outbound and Problem Solve"
},
"path": "Symbol-Views/Equipment-Views/Area_Nav_Button"
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSC_DPM1_FIO2"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.2924,
"y": 0.3298
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSC_DPM1_FIO2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011057"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": 90
},
"width": 0.01,
"x": 0.2929,
"y": 0.8161
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_280",
"S011057",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011057_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.2946,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_280",
"S011057",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM2_FIO7"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.2941,
"y": 0.7889
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM2_FIO7",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL1014_2_JR2"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5873,
"y": 0.6051
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL1014_2_JR2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL1018_2_JR2"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5565,
"y": 0.6051
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL1018_2_JR2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL1022_2_JR2"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.524,
"y": 0.6051
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL1022_2_JR2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL1026_2_JR2"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4921,
"y": 0.6051
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL1026_2_JR2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL1034_2_JR2"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4489,
"y": 0.6051
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL1034_2_JR2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL1038_2_JR2"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.417,
"y": 0.6051
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL1038_2_JR2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL3012_2_JR2"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3711,
"y": 0.1411
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL3012_2_JR2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL3016_2_JR2"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.403,
"y": 0.1411
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL3016_2_JR2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL3020_2_JR2"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4343,
"y": 0.1411
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL3020_2_JR2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "FL3024_2_JR2"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4667,
"y": 0.1411
},
"props": {
"params": {
"directionDown": false,
"directionLeft": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/JR/FL3024_2_JR2",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011095_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.0676,
"y": 0.645
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011095_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011085_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.1238,
"y": 0.645
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011085_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011073_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.208,
"y": 0.627
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_298",
"S011073",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011067_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.2416,
"y": 0.645
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011067_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011051_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3268,
"y": 0.864
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011051_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011041_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3928,
"y": 0.864
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011041_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011033_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4382,
"y": 0.864
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011033_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011021_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5042,
"y": 0.864
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011021_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011011_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.589,
"y": 0.864
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011011_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011003_GS1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6345,
"y": 0.8463
},
"props": {
"params": {
"color": 2,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_226",
"S011003",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute-EN",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011004_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.634,
"y": 0.658
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011004_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011012_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5888,
"y": 0.658
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011012_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011020_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5247,
"y": 0.658
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011020_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011030_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4618,
"y": 0.658
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011030_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011050_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3262,
"y": 0.658
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011050_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011042_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3722,
"y": 0.658
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011042_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013004_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3031,
"y": 0.197
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013004_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013028_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4805,
"y": 0.197
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013028_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013036_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.523,
"y": 0.197
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013036_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013044_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5687,
"y": 0.197
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013044_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013052_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6141,
"y": 0.197
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013052_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013060_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6603,
"y": 0.197
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013060_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013070_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.724,
"y": 0.197
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013070_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013078_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7696,
"y": 0.197
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013078_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013086_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.8153,
"y": 0.197
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013086_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013094_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.8605,
"y": 0.197
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013094_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013011_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3507,
"y": 0.403
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013011_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013017_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3903,
"y": 0.403
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013017_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013027_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.465,
"y": 0.4026
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013027_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013031_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5008,
"y": 0.403
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013031_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013043_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5699,
"y": 0.403
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013043_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013047_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.5921,
"y": 0.403
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013047_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013059_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.6613,
"y": 0.403
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013059_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013067_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7139,
"y": 0.403
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013067_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013077_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.7695,
"y": 0.403
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013077_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013083_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.8041,
"y": 0.403
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013083_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013093_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.8618,
"y": 0.403
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013093_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013018_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.4036,
"y": 0.197
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013018_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S013010_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3387,
"y": 0.197
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S013010_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM3_FIO6"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.1179,
"y": 0.5523
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM3_FIO6",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011086"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.1242,
"y": 0.5224
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_313",
"S011086",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011084"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.1352,
"y": 0.5224
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_311",
"S011084",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011082"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.1466,
"y": 0.5224
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_309",
"S011082",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011080"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.1579,
"y": 0.5224
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_307",
"S011080",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011086_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.1239,
"y": 0.4975
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/D2C/S011086_D2C_CHUTE",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011084_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.1356,
"y": 0.4975
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/D2C/S011084_D2C_CHUTE",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011082_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.1472,
"y": 0.4975
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/D2C/S011082_D2C_CHUTE",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011080_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.1585,
"y": 0.4975
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/D2C/S011080_D2C_CHUTE",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011080_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.1585,
"y": 0.478
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011080_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "VSA_DPM3_FIO7"
},
"position": {
"height": 0.0195,
"rotate": {
"angle": 0
},
"width": 0.0108,
"x": 0.1534,
"y": 0.5523
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/IO_BLOCK/FIO/VSA_DPM3_FIO7",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/DeviceStatus",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011040_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.3838,
"y": 0.658
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011040_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011079_JR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.1584,
"y": 0.645
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Station/Chute_JR/S011079_JR",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011088"
},
"position": {
"height": 0.0185,
"rotate": {
"angle": -90
},
"width": 0.01,
"x": 0.1127,
"y": 0.5224
},
"props": {
"params": {
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/SMC/Chute/Chute_315",
"S011088",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Chute",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "S011088_PR1"
},
"position": {
"height": 0.016,
"rotate": {
"angle": "180deg"
},
"width": 0.01,
"x": 0.1128,
"y": 0.4976
},
"props": {
"params": {
"color": 1,
"directionDown": false,
"forceFaultStatus": null,
"forceRunningStatus": null,
"tagProps": [
"System/MCM04/Chute/D2C/S011088_D2C_CHUTE",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
]
},
"path": "Symbol-Views/Equipment-Views/Button",
"style": {
"classes": "hover"
}
},
"type": "ia.display.view"
},
{
"meta": {
"name": "OVERVIEW",
"tooltip": {
"text": "MCM03 Non Con"
}
},
"position": {
"height": 0.034,
"width": 0.1405,
"x": 0.0247,
"y": 0.0311
},
"props": {
"params": {
"direction": {
"downward": false,
"left": true,
"right": false,
"upward": false
},
"forceFaultStatus": null,
"forceRunningStatus": null,
"pageid": "MAP-Home-2",
"tagProps": [
"System/MCM06/Area_Nav_Button/NCP1_9_MCM03_Button",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value",
"value"
],
"text": "OVERVIEW"
},
"path": "Symbol-Views/Equipment-Views/Area_Nav_Button"
},
"type": "ia.display.view"
},
{
"meta": {
"name": "DOOR_26"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.9417,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 102,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_27"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.9153,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 103,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_28"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.8875,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 104,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_29"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.8448,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 105,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_30"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.8155,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 106,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_31"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.7885,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 107,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_32"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.7553,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 108,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_33"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.7226,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 109,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_34"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.6905,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 110,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_35"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.6479,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 111,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_36"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.6201,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 112,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_37"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.5874,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 113,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_38"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.5606,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 114,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_39"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.5318,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 115,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_40"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.5016,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 116,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_42"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.4523,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 117,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_43"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.4202,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 118,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_44"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.3886,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 119,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_45"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.3555,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 120,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_46"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.3284,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 121,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_47"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.3,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 122,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_48"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.2731,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 123,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_49"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.2407,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 124,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_50"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.2084,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 125,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_51"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.1804,
"y": 0.0151
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 126,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_52"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.5727,
"y": 0.4693
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 129,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_53"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.5085,
"y": 0.4693
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 131,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_54"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.4329,
"y": 0.4693
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 133,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_55"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.54,
"y": 0.4693
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 130,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_56"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.4772,
"y": 0.4693
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 132,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_57"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.3995,
"y": 0.4693
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 134,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_58"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.3682,
"y": 0.4693
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 135,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_59"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.3435,
"y": 0.4693
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 136,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_60"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.3175,
"y": 0.4693
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 137,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_61"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.2932,
"y": 0.4693
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 138,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_62"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.146,
"y": 0.4499
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 139,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_63"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.1205,
"y": 0.4499
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 140,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_64"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.096,
"y": 0.4499
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 142,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_65"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.0675,
"y": 0.4499
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 143,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_66"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.038,
"y": 0.4499
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 144,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
},
{
"meta": {
"name": "DOOR_67"
},
"position": {
"height": 0.0222,
"width": 0.0157,
"x": 0.008,
"y": 0.4499
},
"props": {
"style": {
"backgroundColor": "#EEFF3B",
"textAlign": "center"
},
"text": 145,
"textStyle": {
"fontSize": "1.5vmin"
}
},
"type": "ia.display.label"
}
],
"meta": {
"name": "root"
},
"position": {
"x": 91,
"y": 1
},
"props": {
"mode": "percent"
},
"type": "ia.container.coord"
}
}