diff --git a/src/app/app.info.ts b/src/app/app.info.ts index 031e868f..0b0a956a 100644 --- a/src/app/app.info.ts +++ b/src/app/app.info.ts @@ -104,6 +104,14 @@ const FreeboardConfig = { next23: '1m', beyond24: '5m' }, + s57Options: { + graphicsStyle:'Paper', + boundaries:'Plain', + colors:4, + shallowDepth:2, + safetyDepth: 3, + deepDepth:6 + }, resourceSets: {}, // additional resources signalk: { // signal k connection options diff --git a/src/app/lib/services/state.service.ts b/src/app/lib/services/state.service.ts index 55d84a9f..c7bde4ad 100644 --- a/src/app/lib/services/state.service.ts +++ b/src/app/lib/services/state.service.ts @@ -54,10 +54,27 @@ export class State { } } + //merge new default values in storedvalue + merge(storedValue:any,defaultValue:any):any { + Object.keys(defaultValue).forEach((key) => { + if (!storedValue[key]) { + storedValue[key]=defaultValue[key] + } else { + if( typeof storedValue[key] === 'object' && + !Array.isArray(storedValue[key]) && + storedValue[key] !== null) { + storedValue[key]=this.merge(storedValue[key],defaultValue[key]) + } + } + }) + return storedValue + } + //** load app config ** loadConfig(defaultValue = {}) { const config = this.ls.read('config'); - return config ? config : defaultValue; + return config ? this.merge(config,defaultValue) : defaultValue; + // return config ? config : defaultValue; } //** load app data ** diff --git a/src/app/modules/map/fb-map.component.ts b/src/app/modules/map/fb-map.component.ts index 5a52d840..83b26d8d 100644 --- a/src/app/modules/map/fb-map.component.ts +++ b/src/app/modules/map/fb-map.component.ts @@ -56,6 +56,7 @@ import { ModifyEvent } from 'ol/interaction/Modify'; import { DrawEvent } from 'ol/interaction/Draw'; import { Coordinate } from 'ol/coordinate'; import { ResourceSets, SKNotification } from 'src/app/types'; +import { S57Service} from './ol/lib/s57.service'; interface IResource { id: string; @@ -289,6 +290,7 @@ export class FBMapComponent implements OnInit, OnDestroy { constructor( public app: AppInfo, + public s57Service: S57Service, public skres: SKResources, public skresOther: SKOtherResources, private skstream: SKStreamFacade, @@ -325,6 +327,7 @@ export class FBMapComponent implements OnInit, OnDestroy { this.app.settings$.subscribe((r: SettingsMessage) => { if (r.action === 'save' && r.setting === 'config') { this.fbMap.movingMap = this.app.config.map.moveMap; + this.s57Service.SetOptions(this.app.config.selections.s57Options) this.renderMapContents(); if (!this.app.config.selections.trailFromServer) { this.dfeat.trail = []; diff --git a/src/app/modules/map/ol/index.ts b/src/app/modules/map/ol/index.ts index 49c275ef..5d2bd05c 100644 --- a/src/app/modules/map/ol/index.ts +++ b/src/app/modules/map/ol/index.ts @@ -51,6 +51,7 @@ import { VesselTrailComponent } from './lib/vessel/layer-vessel-trail.component' export * from './lib/util'; export { MapService } from './lib/map.service'; +export { S57Service } from './lib/s57.service'; export { ContentComponent } from './lib/content.component'; export { ControlsDirective } from './lib/controls.directive'; diff --git a/src/app/modules/map/ol/lib/resources/layer-charts.component.ts b/src/app/modules/map/ol/lib/resources/layer-charts.component.ts index 82166ecb..0b08ea47 100644 --- a/src/app/modules/map/ol/lib/resources/layer-charts.component.ts +++ b/src/app/modules/map/ol/lib/resources/layer-charts.component.ts @@ -11,15 +11,15 @@ import { import TileLayer from 'ol/layer/Tile'; import VectorTileLayer from 'ol/layer/VectorTile'; -import VectorTileSource from 'ol/source/VectorTile'; import { TileWMS, XYZ, TileJSON, WMTS } from 'ol/source'; import { optionsFromCapabilities } from 'ol/source/WMTS'; import WMTSCapabilities from 'ol/format/WMTSCapabilities'; -import { Style, Fill, Stroke } from 'ol/style'; + import { MapComponent } from '../map.component'; import { osmLayer } from '../util'; import { MapService } from '../map.service'; -import { MVT } from 'ol/format'; +import { VectorLayerStyleFactory } from '../vectorLayerStyleFactory' + import DataTile from 'ol/source/DataTile'; import WebGLTileLayer from 'ol/layer/WebGLTile'; import * as pmtiles from 'pmtiles'; @@ -34,8 +34,7 @@ import { apply, applyStyle, applyBackground } from 'ol-mapbox-style'; changeDetection: ChangeDetectionStrategy.OnPush }) export class FreeboardChartLayerComponent - implements OnInit, OnDestroy, OnChanges -{ + implements OnInit, OnDestroy, OnChanges { // eslint-disable-next-line @typescript-eslint/no-explicit-any protected layers: Map = new Map(); @@ -47,7 +46,8 @@ export class FreeboardChartLayerComponent constructor( protected changeDetectorRef: ChangeDetectorRef, protected mapComponent: MapComponent, - private mapService: MapService + private mapService: MapService, + private vectorLayerStyleFactory: VectorLayerStyleFactory ) { this.changeDetectorRef.detach(); } @@ -161,56 +161,6 @@ export class FreeboardChartLayerComponent }); } - // create a PMTile VectorTile layer - initPMTilesVectorLayer( - url: string, - minZoom: number, - maxZoom: number, - zIndex: number - ): VectorTileLayer { - const tiles = new pmtiles.PMTiles(url); - - function loader(tile, url) { - // the URL construction is done internally by OL, so we need to parse it - // back out here using a hacky regex - const re = new RegExp(/pmtiles:\/\/(.+)\/(\d+)\/(\d+)\/(\d+)/); - const result = url.match(re); - const z = +result[2]; - const x = +result[3]; - const y = +result[4]; - - tile.setLoader((extent, resolution, projection) => { - tile.setState(1); // LOADING - tiles.getZxy(z, x, y).then((tile_result) => { - if (tile_result) { - const format = tile.getFormat(); - const features = format.readFeatures(tile_result.data, { - //}.buffer, { - extent: extent, - featureProjection: projection - }); - tile.setFeatures(features); - tile.setState(2); // LOADED - } else { - tile.setState(4); // EMPTY - } - }); - }); - } - - return new VectorTileLayer({ - declutter: true, - source: new VectorTileSource({ - maxZoom: maxZoom, - minZoom: minZoom, - format: new MVT(), - url: 'pmtiles://' + url + '/{z}/{x}/{y}', - tileLoadFunction: loader - }), - zIndex: zIndex, - style: this.applyVectorStyle - }); - } async parseCharts(charts: Array<[string, SKChart, boolean]> = this.charts) { const map = this.mapComponent.getMap(); @@ -251,35 +201,11 @@ export class FreeboardChartLayerComponent } else if ( charts[i][1].format === 'pbf' || charts[i][1].format === 'mvt' - ) { - if (charts[i][1].url.indexOf('.pmtiles') !== -1) { - // pmtiles source - layer = this.initPMTilesVectorLayer( - charts[i][1].url, - charts[i][1].minZoom, - charts[i][1].maxZoom, - this.zIndex + parseInt(i) - ); - } else { - // mbtiles source - const source = new VectorTileSource({ - url: charts[i][1].url, - format: new MVT({ - layers: - charts[i][1].layers && charts[i][1].layers.length !== 0 - ? charts[i][1].layers - : null - }) - }); - layer = new VectorTileLayer({ - source: source, - preload: 0, - zIndex: this.zIndex + parseInt(i), - style: this.applyVectorStyle, - minZoom: minZ, - maxZoom: maxZ - }); - } + ) { + let styleFactory = this.vectorLayerStyleFactory.CreateVectorLayerStyler(charts[i][1]) + layer = styleFactory.CreateLayer(); + styleFactory.ApplyStyle(layer as VectorTileLayer) + layer.setZIndex(this.zIndex + parseInt(i)) } else { // raster tile let source; // select source type @@ -382,17 +308,4 @@ export class FreeboardChartLayerComponent map.render(); } } - - // apply default vector tile style - applyVectorStyle() { - return new Style({ - fill: new Fill({ - color: 'rgba(#224, 209, 14, 0.8)' - }), - stroke: new Stroke({ - color: '#444', - width: 1 - }) - }); - } } diff --git a/src/app/modules/map/ol/lib/s57.service.ts b/src/app/modules/map/ol/lib/s57.service.ts new file mode 100644 index 00000000..995610b2 --- /dev/null +++ b/src/app/modules/map/ol/lib/s57.service.ts @@ -0,0 +1,842 @@ +import { Injectable } from '@angular/core'; +import { HttpClient } from '@angular/common/http'; +import { Style, Fill, Stroke, Icon, Text } from 'ol/style'; +import { Feature } from 'ol' +import { Subject } from 'rxjs'; + +const DRGARE = 46 // Dredged area +const DEPARE = 42 // Depth Area + +interface Symbol { + image: HTMLImageElement; + width: number; + height: number; + originX: number; + originY: number; + pivotX: number; + pivotY: number; + locationX: number; + locationY: number; +} + +interface Lookup { + name: string + geometryType: GeometryType; + lookupTable: LookupTable; + instruction: string; + attributes: any; + id: number; + displayPriority: DisplayPriority; +} + +export interface Options { + shallowDepth: number; + safetyDepth: number; + deepDepth: number; + graphicsStyle: string; + boundaries: string; + colors: number; +} + +export const DefaultOptions:Options = { + shallowDepth:2, + safetyDepth: 3, + deepDepth: 6, + graphicsStyle:"Paper", //Simplified or Paper + boundaries:"Plain", // Plain or Symbolized + colors:4 // 2 or 4 + +} + + +interface ColorTable { + symbolfile: string; + colors: Map +} + +enum GeometryType { + POINT = 0, + LINES = 1, + AREA = 2 +} + +enum DisplayPriority { + PRIO_NODATA = 0, // no data fill area pattern + PRIO_GROUP1 = 1, // S57 group 1 filled areas + PRIO_AREA_1 = 2, // superimposed areas + PRIO_AREA_2 = 3, // superimposed areas also water features + PRIO_SYMB_POINT = 4, // point symbol also land features + PRIO_SYMB_LINE = 5, // line symbol also restricted areas + PRIO_SYMB_AREA = 6, // area symbol also traffic areas + PRIO_ROUTEING = 7, // routeing lines + PRIO_HAZARDS = 8, // hazards + PRIO_MARINERS = 9, // VRM, EBL, own ship +} + +enum LookupTable { + SIMPLIFIED = 0, + PAPER_CHART = 1, + LINES = 2, + PLAIN = 3, + SYMBOLIZED = 4 +} + +const LOOKUPINDEXKEY = "$lupIndex" + + +@Injectable({ + providedIn: 'root' +}) +export class S57Service { + + private chartSymbols: Map = new Map(); + private colorTables: ColorTable[] = []; + private selectedColorTable: number = 0; + private chartSymbolsImage: HTMLImageElement; + private lookups: Lookup[] = []; + private lookupStartIndex: Map = new Map(); + public refresh: Subject = new Subject(); + private selectedSafeContour:number = 1000 + + //options + + private options:Options = DefaultOptions + + private attMatch = new RegExp('([A-Za-z0-9]{6})([0-9,\\?]*)') + private instructionMatch = new RegExp('([A-Z][A-Z])\\((.*)\\)') + + constructor(private http: HttpClient) { + + http.get("assets/s57/chartsymbols.json").subscribe((symbolsJson) => { + this.processSymbols(symbolsJson) + this.processLookup(symbolsJson) + this.processColors(symbolsJson) + this.refresh.next() + let image = new Image(); + image.onload = () => { + this.chartSymbolsImage = image; + this.refresh.next() + } + image.src = "assets/s57/" + this.colorTables[this.selectedColorTable].symbolfile + }); + } + + private isChanged(currentValue:any,newValue:any):boolean { + let changed = false + let keys=Object.keys(newValue) + for (let i = 0; i < keys.length; i++) { + if(currentValue[keys[i]] != newValue[keys[i]]) { + changed=true; + break; + } + } + return changed; + } + + public SetOptions(options:Options) { + + if(this.isChanged(this.options,options)) { + this.options = Object.assign({},options) + this.refresh.next(); + } + } + + private processColors(symbolsJson: any) { + (symbolsJson["chartsymbols"]["color-tables"]["color-table"] as any[]).forEach((colortable) => { + let colorTable: ColorTable = { symbolfile: colortable["graphics-file"]["_name"], colors: new Map() } + let colors = colortable["color"] as any[] + colors.forEach((color) => { + colorTable.colors.set(color["_name"], "rgba(" + color["_r"] + ", " + color["_g"] + ", " + color["_b"] + ",1)") + }) + this.colorTables.push(colorTable); + }); + } + + private processSymbols(symbolsJson: any) { + (symbolsJson["chartsymbols"]["symbols"]["symbol"] as any[]).forEach((symbol) => { + let bitmap = symbol["bitmap"] + if (bitmap) { + this.chartSymbols.set(symbol["name"], { + image: null, + pivotX: parseInt(bitmap["pivot"]["_x"]), + pivotY: parseInt(bitmap["pivot"]["_y"]), + originX: parseInt(bitmap["origin"]["_x"]), + originY: parseInt(bitmap["origin"]["_y"]), + width: parseInt(bitmap["_width"]), + height: parseInt(bitmap["_height"]), + locationX: parseInt(bitmap["graphics-location"]["_x"]), + locationY: parseInt(bitmap["graphics-location"]["_y"]), + }) + } + }); + } + + + private compareLookup(a: Lookup, b: Lookup): number { + let lt = a.lookupTable - b.lookupTable; + if (lt != 0) return lt + let ir = a.name.localeCompare(b.name) + if (ir != 0) return ir + let c1 = Object.keys(a.attributes).length + let c2 = Object.keys(a.attributes).length + if (c1 != c2) return c2 - c1 + return a.id - b.id + } + + private getGeometryType(type: string): GeometryType { + switch (type) { + case "Line": return GeometryType.LINES; break; + case "Area": return GeometryType.AREA; break; + default: return GeometryType.POINT; + } + } + + private getLookupTable(table: string): LookupTable { + switch (table) { + case "Simplified": return LookupTable.SIMPLIFIED; break; + case "Paper": return LookupTable.PAPER_CHART; break; + case "Lines": return LookupTable.LINES; break; + case "Plain": return LookupTable.PLAIN; break; + default: return LookupTable.SYMBOLIZED + } + } + + private processLookup(symbolsJson: any) { + (symbolsJson["chartsymbols"]["lookups"]["lookup"] as any[]).forEach((lookup) => { + let lup: Lookup = { + name: lookup["_name"], + instruction: lookup["instruction"], + lookupTable: this.getLookupTable(lookup["table-name"]), + geometryType: this.getGeometryType(lookup["type"]), + attributes: {}, + id: parseInt(lookup["_id"]), + displayPriority: this.getDisplayPriority(lookup["disp-prio"]), + } + let attributes = lookup["attrib-code"] + if (attributes) { + (attributes as any[]).forEach((att) => { + lup.attributes[att["_index"]] = att["__text"] + }) + } + this.lookups.push(lup) + + }); + // sort + this.lookups = this.lookups.sort(this.compareLookup) + // build index + let lastkey = "" + this.lookups.forEach((lup, index) => { + let key = lup.lookupTable + "," + lup.name + "," + lup.geometryType + if (key != lastkey) { + this.lookupStartIndex.set(key, index); + lastkey = key + } + }) + } + + private getSymbol(key: string): Symbol { + let icon = this.chartSymbols.get(key) + if (icon && this.chartSymbolsImage) { + if (!icon.image) { + icon.image = new Image(icon.width, icon.height) + createImageBitmap(this.chartSymbolsImage, icon.locationX, icon.locationY, icon.width, icon.height).then((bitmap) => { + let canvas = document.createElement("CANVAS") as HTMLCanvasElement + canvas.height = icon.height + canvas.width = icon.width + let ctx = canvas.getContext("2d"); + ctx.drawImage(bitmap, 0, 0); + icon.image.src = canvas.toDataURL(); + //this.refresh.next() + }) + return icon + } else { + return icon; + } + } else { + return null; + } + } + + private selectLookup(feature: Feature): number { + let properties = feature.getProperties(); + let geometry = feature.getGeometry(); + let name = properties["layer"] + let geomType = geometry.getType() + let lookupTable = LookupTable.PAPER_CHART + let type = GeometryType.POINT; + if (geomType == "Polygon") { + type = GeometryType.AREA + } else if (geomType == "LineString") { + type = GeometryType.LINES + } + switch (type) { + case GeometryType.POINT: { + if (this.options.graphicsStyle == "Paper") { + lookupTable = LookupTable.PAPER_CHART + } else { + lookupTable = LookupTable.SIMPLIFIED + } + }; break; + case GeometryType.LINES: lookupTable = LookupTable.LINES; break + case GeometryType.AREA: { + if (this.options.boundaries == "Plain") { + lookupTable = LookupTable.PLAIN + } else { + lookupTable = LookupTable.SYMBOLIZED + } + }; break; + } + + let best = -1 + + let startIndex = this.lookupStartIndex.get(lookupTable + "," + name + "," + type); + if (startIndex) { + let lup = this.lookups[startIndex] + best = startIndex + let lmatch = 0 + while (lup.name == name && lup.geometryType == type && lup.lookupTable == lookupTable) { + let nmatch = 0 + Object.keys(lup.attributes).forEach((k) => { + let v = lup.attributes[k] + let parts = this.attMatch.exec(v) + let key = parts[1].toUpperCase() + let value = parts[2].toUpperCase() + if (value == " ") { + nmatch++; + return; + } + if (value == "?") return + if (properties[key] == value) { + nmatch++ + } + }) + if (nmatch >= lmatch) { + best = startIndex + lmatch = nmatch + } + startIndex++ + lup = this.lookups[startIndex] + } + return best; + + } + return -1; + } + + private getSymbolStyle(symbolName: string): Style { + let symbol = this.getSymbol(symbolName); + if (symbol) { + return new Style({ + image: new Icon({ + width: symbol.width, + height: symbol.height, + img: symbol.image, + opacity: 1, + anchorXUnits: 'pixels', + anchorYUnits: 'pixels', + anchor: [symbol.pivotX, symbol.pivotY] + }) + }) + } + return null + } + + + private stripQuotes(text: string): string { + return text.substring(1).substring(0, text.length - 2) + } + + //TODO implement more parameters + private getTextStyle(text: string, params: string[]): Style { + if( typeof text !== 'string') { + debugger; + return null + } + + let textBaseline: any = 'middle' + let offsetY = 0; + if (params[1] == "3") { + textBaseline = 'top'; + offsetY = 15; + } else if (params[1] == "1") { + textBaseline = 'bottom'; + offsetY = -15 + } + + let textAlign: any = 'left'; + let offsetX = 15; + if (params[0] == "2") { + textAlign = 'right'; + offsetX = -15; + } else if (params[0] == "1") { + textAlign = 'center'; + offsetX = 0 + } + + + if (text) { + let tx = text + if (typeof tx !== 'string') { + tx = text.toString() + } + return new Style({ + text: new Text({ + text: tx, + textAlign: textAlign, + textBaseline: textBaseline, + scale: 1.5, + offsetX: offsetX, + offsetY: offsetY + }) + }); + } + return null; + } + + private getTextStyleTX(featureProperties: any, parameters: string): Style { + let params = parameters.split(","); + let text = featureProperties[params[0]]; + if(!text) { + return null; + } + return this.getTextStyle(text, params.slice(1)) + } + + //TODO format string + private getTextStyleTE(featureProperties: any, parameters: string): Style { + let params = parameters.split(","); + let text = featureProperties[this.stripQuotes(params[1])]; + let format = this.stripQuotes(params[0]); + if(!text || !format) { + return null; + } + let formatted=format.replace(/%[0-9]*.?[0-9]*l?[sfd]/,text) + return this.getTextStyle(formatted, params.slice(2)) + } + + + private getDefaultStyle(): Style { + return new Style({ + fill: new Fill({ + color: 'rgba(#224, 209, 14, 0.8)' + }), + stroke: new Stroke({ + color: '#444', + width: 1 + }) + }); + } + + + private getDisplayPriority(dispPrio: string): DisplayPriority { + switch (dispPrio) { + case "Group 1": return DisplayPriority.PRIO_GROUP1; break; + case "Area 1": return DisplayPriority.PRIO_AREA_1; break; + case "Area 2": return DisplayPriority.PRIO_AREA_2; break; + case "Point Symbol": return DisplayPriority.PRIO_SYMB_POINT; break; + case "Line Symbol": return DisplayPriority.PRIO_SYMB_LINE; break; + case "Area Symbol": return DisplayPriority.PRIO_SYMB_AREA; break; + case "Routing": return DisplayPriority.PRIO_ROUTEING; break; + case "Hazards": return DisplayPriority.PRIO_HAZARDS; break; + case "Mariners": return DisplayPriority.PRIO_MARINERS; break; + default: return DisplayPriority.PRIO_NODATA; break; + } + } + + + private getAreaStyle(colorName:string): Style { + let color = this.colorTables[this.selectedColorTable].colors.get(colorName) + if (color) { + return new Style({ + fill: new Fill({ + color: color + }), + }); + } + return null; + } + + private getLineStyle(params:string):Style { + let parts=params.split(",") + let color = this.colorTables[this.selectedColorTable].colors.get(parts[2]) + let width=parseInt(parts[1]); + let lineStyle=parts[0]; + let lineDash=null + switch(lineStyle) { + case "DASH":lineDash=[4,4];break; + case "SOLD":lineDash=null;break; + default:console.debug("Unsupported linestyle:",lineStyle) + } + return new Style({ + stroke: new Stroke({ + color: color, + width:width, + lineDash:lineDash + }), + }); + } + + //https://github.com/OpenCPN/OpenCPN/blob/20a781ecc507443e5aaa1d33d0cb91852feb07ee/libs/s52plib/src/s52cnsy.cpp#L5809 + private GetCSTOPMAR01(feature:Feature): string[] { + let rulestring: string = null + let featureProperties = feature.getProperties() + if (!featureProperties["TOPSHP"]) { + rulestring="SY(QUESMRK1)" + } else { + let floating = false + let layer = featureProperties["layer"] + if(layer =="LITFLT" || layer == "LITVES" || layer.startsWith("BOY")) { + floating = true + } + let topshp = featureProperties["TOPSHP"] + if(floating) { + switch(topshp) { + case 1 : rulestring = "SY(TOPMAR02)"; break; + case 2 : rulestring = "SY(TOPMAR04)"; break; + case 3 : rulestring = "SY(TOPMAR10)"; break; + case 4 : rulestring = "SY(TOPMAR12)"; break; + + case 5 : rulestring = "SY(TOPMAR13)"; break; + case 6 : rulestring = "SY(TOPMAR14)"; break; + case 7 : rulestring = "SY(TOPMAR65)"; break; + case 8 : rulestring = "SY(TOPMAR17)"; break; + + case 9 : rulestring = "SY(TOPMAR16)"; break; + case 10: rulestring = "SY(TOPMAR08)"; break; + case 11: rulestring = "SY(TOPMAR07)"; break; + case 12: rulestring = "SY(TOPMAR14)"; break; + + case 13: rulestring = "SY(TOPMAR05)"; break; + case 14: rulestring = "SY(TOPMAR06)"; break; + case 17: rulestring = "SY(TMARDEF2)"; break; + case 18: rulestring = "SY(TOPMAR10)"; break; + + case 19: rulestring = "SY(TOPMAR13)"; break; + case 20: rulestring = "SY(TOPMAR14)"; break; + case 21: rulestring = "SY(TOPMAR13)"; break; + case 22: rulestring = "SY(TOPMAR14)"; break; + + case 23: rulestring = "SY(TOPMAR14)"; break; + case 24: rulestring = "SY(TOPMAR02)"; break; + case 25: rulestring = "SY(TOPMAR04)"; break; + case 26: rulestring = "SY(TOPMAR10)"; break; + + case 27: rulestring = "SY(TOPMAR17)"; break; + case 28: rulestring = "SY(TOPMAR18)"; break; + case 29: rulestring = "SY(TOPMAR02)"; break; + case 30: rulestring = "SY(TOPMAR17)"; break; + + case 31: rulestring = "SY(TOPMAR14)"; break; + case 32: rulestring = "SY(TOPMAR10)"; break; + case 33: rulestring = "SY(TMARDEF2)"; break; + default: rulestring = "SY(TMARDEF2)"; break; + } + } else { + switch(topshp) { + case 1 : rulestring = "SY(TOPMAR22)"; break; + case 2 : rulestring = "SY(TOPMAR24)"; break; + case 3 : rulestring = "SY(TOPMAR30)"; break; + case 4 : rulestring = "SY(TOPMAR32)"; break; + + case 5 : rulestring = "SY(TOPMAR33)"; break; + case 6 : rulestring = "SY(TOPMAR34)"; break; + case 7 : rulestring = "SY(TOPMAR85)"; break; + case 8 : rulestring = "SY(TOPMAR86)"; break; + + case 9 : rulestring = "SY(TOPMAR36)"; break; + case 10: rulestring = "SY(TOPMAR28)"; break; + case 11: rulestring = "SY(TOPMAR27)"; break; + case 12: rulestring = "SY(TOPMAR14)"; break; + + case 13: rulestring = "SY(TOPMAR25)"; break; + case 14: rulestring = "SY(TOPMAR26)"; break; + case 15: rulestring = "SY(TOPMAR88)"; break; + case 16: rulestring = "SY(TOPMAR87)"; break; + + case 17: rulestring = "SY(TMARDEF1)"; break; + case 18: rulestring = "SY(TOPMAR30)"; break; + case 19: rulestring = "SY(TOPMAR33)"; break; + case 20: rulestring = "SY(TOPMAR34)"; break; + + case 21: rulestring = "SY(TOPMAR33)"; break; + case 22: rulestring = "SY(TOPMAR34)"; break; + case 23: rulestring = "SY(TOPMAR34)"; break; + case 24: rulestring = "SY(TOPMAR22)"; break; + + case 25: rulestring = "SY(TOPMAR24)"; break; + case 26: rulestring = "SY(TOPMAR30)"; break; + case 27: rulestring = "SY(TOPMAR86)"; break; + case 28: rulestring = "SY(TOPMAR89)"; break; + + case 29: rulestring = "SY(TOPMAR22)"; break; + case 30: rulestring = "SY(TOPMAR86)"; break; + case 31: rulestring = "SY(TOPMAR14)"; break; + case 32: rulestring = "SY(TOPMAR30)"; break; + case 33: rulestring = "SY(TMARDEF1)"; break; + default: rulestring = "SY(TMARDEF1)"; break; + } + } + } + + + return rulestring ? [rulestring] : [] + } + + //https://github.com/OpenCPN/OpenCPN/blob/c2ffb36ebca8c3777f03ea4d42e24f897aa62609/libs/s52plib/src/s52cnsy.cpp#L4494C40-L4494C40 + private GetCSLIGHTS05(feature:Feature): string[] { + let rulestring: string = null + let featureProperties = feature.getProperties() + + if (featureProperties["COLOUR"]) { + let colVals = featureProperties["COLOUR"].split(",") as string[] + if (colVals.length == 1) { + if (colVals[0] == "3") { + rulestring = "SY(LIGHTS11)" + } else if (colVals[0] == "4") { + rulestring = "SY(LIGHTS12)" + } else if (colVals[0] == "1" || colVals[0] == "6" || colVals[0] == "13") { + rulestring = "SY(LIGHTS13)" + } + } else if (colVals.length == 2) { + if (colVals.includes("1") && colVals.includes("3")) { + rulestring = "SY(LIGHTS11)" + } else if (colVals.includes("1") && colVals.includes("4")) { + rulestring = "SY(LIGHTS12)" + } + } + } + return rulestring ? [rulestring] : [] + } + + + //https://github.com/OpenCPN/OpenCPN/blob/c2ffb36ebca8c3777f03ea4d42e24f897aa62609/libs/s52plib/src/s52cnsy.cpp#L5597 + private GetSeabed01(drval1: number, drval2: number): string[] { + let retval: string[] = ["AC(DEPIT)"]; + let shallow = true; + + if (drval1 >= 0 && drval2 > 0) { + retval = ["AC(DEPVS)"]; + } + if (this.options.colors == 2) { + if (drval1 >= this.options.safetyDepth && drval2 > this.options.safetyDepth) { + retval = ["AC(DEPDW)"]; + shallow = false; + } + } else { + if (drval1 >= this.options.shallowDepth && drval2 > this.options.shallowDepth) { + retval = ["AC(DEPMS)"]; + } + if (drval1 >= this.options.safetyDepth && drval2 > this.options.safetyDepth) { + retval = ["AC(DEPMD)"] + shallow = false; + } + if (drval1 >= this.options.deepDepth && drval2 > this.options.deepDepth) { + retval = ["AC(DEPDW)"]; + shallow = false; + } + } + + if (shallow) { + retval.push("AP(DIAMOND1)") + } + + return retval; + } + + //https://github.com/OpenCPN/OpenCPN/blob/c2ffb36ebca8c3777f03ea4d42e24f897aa62609/libs/s52plib/src/s52cnsy.cpp#L4295 + private GetCSDEPCNT02(feature: Feature): string[] { + let rulestring: string = null + let featureProperties = feature.getProperties() + let geometry = feature.getGeometry() + + let safe = false + let drval1 = 0; + let depth_value = -1; + let valdco = 0; + let quapos =0; + let objl = 0 + + if (featureProperties["OBJL"]) { + objl=parseInt(featureProperties["OBJL"]) + } + + if (DEPARE == objl && geometry.getType() == "LineString") { + if ( featureProperties["DRVAL1"]) { + drval1 = parseFloat(featureProperties["DRVAL1"]) + } + depth_value = drval1 + } else { + if ( featureProperties["VALDCO"]) { + valdco = parseFloat(featureProperties["VALDCO"]) + depth_value = valdco + } + } + if(depth_value 2 && quapos < 10) { + + if(depth_value == this.selectedSafeContour) { + rulestring="LS(DASH,2,DEPSC)" + } + // else { + // rulestring="LS(DASH,1,DEPCN)" + + // } + } + } else { + if(depth_value == this.selectedSafeContour) { + rulestring="LS(SOLD,2,DEPSC)" + } + // else { + // rulestring="LS(SOLD,1,DEPCN)" + + // } + } + + return rulestring ? [rulestring] : [] + } + + + //https://github.com/OpenCPN/OpenCPN/blob/c2ffb36ebca8c3777f03ea4d42e24f897aa62609/libs/s52plib/src/s52cnsy.cpp#L4247 + private getCSDEPARE01(feature: Feature): string[] { + let retval: string[] = [] + + let featureProperties = feature.getProperties() + + let drval1 = parseFloat(featureProperties["DRVAL1"]) + let drval2 = parseFloat(featureProperties["DRVAL2"]) + + retval = this.GetSeabed01(drval1, drval2) + + let objl = featureProperties["OBJL"] + if (parseInt(objl) == DRGARE) { + retval.push("AP(DRGARE01)"); + retval.push("LS(DASH,1,CHGRF)"); + + // if (featureProperties["RESTRN"]) { + + // } + } + + + return retval + } + + private evalCS(feature: Feature, instruction: string): string[] { + let retval: string[] = [] + let instrParts = this.instructionMatch.exec(instruction) + if (instrParts && instrParts.length > 1) { + switch (instrParts[2]) { + case "LIGHTS05": retval = this.GetCSLIGHTS05(feature); break; + case "DEPCNT02": retval = this.GetCSDEPCNT02(feature); break; + case "DEPARE01": + case "DEPARE02": retval = this.getCSDEPARE01(feature); break; + case "TOPMAR01": retval = this.GetCSTOPMAR01(feature); break; + default: console.debug("Unsupported CS:" + instruction) + } + } + return retval + } + + private getStylesFromRules(lup: Lookup, feature: Feature): Style[] { + let styles: Style[] = [] + if (lup) { + let properties = feature.getProperties() + let instructions = lup.instruction.split(";") + + //PreProcess CS + for (var i = 0; i < instructions.length; i++) { + if (instructions[i].startsWith("CS")) { + let conditionals = this.evalCS(feature, instructions[i]) + instructions.splice(i, 1, ...conditionals) + } + } + instructions.forEach((instruction) => { + let instrParts = this.instructionMatch.exec(instruction) + if (instrParts && instrParts.length > 1) { + let style: Style = null + switch (instrParts[1]) { + case "SY": style = this.getSymbolStyle(instrParts[2]); break; + case "AC": style = this.getAreaStyle(instrParts[2]); break; + case "TX": style = this.getTextStyleTX(properties, instrParts[2]); break; + case "TE": style = this.getTextStyleTE(properties, instrParts[2]); break; + case "LS": style = this.getLineStyle(instrParts[2]); break; + default: console.debug("Unsupported instruction:" + instruction) + } + if (style != null) { + style.setZIndex(lup.displayPriority) + styles.push(style) + } + } + }) + } + + return styles + } + + + private updateSafeContour(feature:Feature):number { + + let properties = feature.getProperties(); + if (properties["DRVAL1"]) { + let drval1 = properties["DRVAL1"] + if (drval1 >= this.options.safetyDepth && drval1 < this.selectedSafeContour) { + this.selectedSafeContour = drval1 + } + return drval1 + } + if (properties["VALDCO"]) { + let valdco = properties["VALDCO"] + if (valdco >= this.options.safetyDepth && valdco < this.selectedSafeContour) { + this.selectedSafeContour = valdco + } + return valdco + } + return 0 + } + + // the interface of this service + + public renderOrder = (feature1: Feature, feature2: Feature): number => { + let o1 = this.updateSafeContour(feature1); + let o2 = this.updateSafeContour(feature2); + let lupIndex1 = feature1[LOOKUPINDEXKEY]; + let lupIndex2 = feature1[LOOKUPINDEXKEY]; + if (!lupIndex1) { + lupIndex1 = this.selectLookup(feature1) + feature1[LOOKUPINDEXKEY] = lupIndex1 + } + if (!lupIndex2) { + lupIndex2 = this.selectLookup(feature2) + feature2[LOOKUPINDEXKEY] = lupIndex2 + } + + if (lupIndex1 >= 0 && lupIndex2 >= 0) { + let c1 = this.lookups[lupIndex1].displayPriority + let c2 = this.lookups[lupIndex2].displayPriority + let cmp = c1 - c2 + if (cmp) { + return cmp + } + } + + if( o1 != o2 ) { + return o1-o2 + } + + return lupIndex1 - lupIndex2 + } + + public getStyle = (feature: Feature, resolution: number): Style[] => { + let lupIndex = feature[LOOKUPINDEXKEY]; + if (lupIndex >= 0) { + let lup = this.lookups[lupIndex] + return this.getStylesFromRules(lup, feature) + } + return null; + } +} \ No newline at end of file diff --git a/src/app/modules/map/ol/lib/vectorLayerStyleFactory.ts b/src/app/modules/map/ol/lib/vectorLayerStyleFactory.ts new file mode 100644 index 00000000..f2d3f3b7 --- /dev/null +++ b/src/app/modules/map/ol/lib/vectorLayerStyleFactory.ts @@ -0,0 +1,176 @@ +import { Injectable } from '@angular/core'; +import { SKChart } from 'src/app/modules'; +import { S57Service } from './s57.service' +import VectorTileLayer from 'ol/layer/VectorTile'; +import VectorTileSource from 'ol/source/VectorTile'; +import { MVT } from 'ol/format'; +import { Style, Fill, Stroke } from 'ol/style'; +import * as pmtiles from 'pmtiles'; + + +export abstract class VectorLayerStyler { + public MinZ: number + public MaxZ: number + + constructor(public chart: SKChart) { + this.MinZ = + chart.minZoom && chart.minZoom >= 0.1 + ? chart.minZoom - 0.1 + : chart.minZoom; + this.MaxZ = chart.maxZoom; + } + + public abstract ApplyStyle(vectorLayer: VectorTileLayer) + public abstract CreateLayer():VectorTileLayer +} + + +class S57LayerStyler extends VectorLayerStyler { + constructor(chart: SKChart, private s57service: S57Service) { + super(chart) + } + + public CreateLayer(): VectorTileLayer { + return new VectorTileLayer() + } + + + public ApplyStyle(vectorLayer: VectorTileLayer) { + vectorLayer.set("declutter",true) + const source = new VectorTileSource({ + url: this.chart.url, + minZoom: this.chart.minZoom, + maxZoom: this.chart.maxZoom, + format: new MVT({}) + }); + + vectorLayer.setSource(source) + vectorLayer.setPreload(0) + vectorLayer.setStyle(this.s57service.getStyle) + vectorLayer.setMinZoom(13) + vectorLayer.setMaxZoom(23) + vectorLayer.setRenderOrder(this.s57service.renderOrder) + + this.s57service.refresh.subscribe(() => { + source.refresh() + }) + } +} + + +class DefaultLayerStyler extends VectorLayerStyler { + constructor(chart: SKChart) { + super(chart) + } + + public CreateLayer(): VectorTileLayer { + return new VectorTileLayer() + } + + // apply default vector tile style + applyVectorStyle() { + return new Style({ + fill: new Fill({ + color: 'rgba(#224, 209, 14, 0.8)' + }), + stroke: new Stroke({ + color: '#444', + width: 1 + }) + }); + } + + public ApplyStyle(vectorLayer: VectorTileLayer) { + // mbtiles source + const source = new VectorTileSource({ + url: this.chart.url, + format: new MVT({ + layers: + this.chart.layers && this.chart.layers.length !== 0 + ? this.chart.layers + : null + }) + }); + + vectorLayer.setSource(source) + vectorLayer.setPreload(0) + vectorLayer.setStyle(this.applyVectorStyle) + vectorLayer.setMinZoom(this.MinZ) + vectorLayer.setMaxZoom(this.MaxZ) + } +} + +class PMLayerStyler extends DefaultLayerStyler { + constructor(chart: SKChart) { + super(chart) + } + + public CreateLayer(): VectorTileLayer { + return new VectorTileLayer({ declutter: true }) + } + + public ApplyStyle(vectorLayer: VectorTileLayer) { + + vectorLayer.set("declutter",true) + const tiles = new pmtiles.PMTiles(this.chart.url); + + function loader(tile, url) { + // the URL construction is done internally by OL, so we need to parse it + // back out here using a hacky regex + const re = new RegExp(/pmtiles:\/\/(.+)\/(\d+)\/(\d+)\/(\d+)/); + const result = url.match(re); + const z = +result[2]; + const x = +result[3]; + const y = +result[4]; + + tile.setLoader((extent, resolution, projection) => { + tile.setState(1); // LOADING + tiles.getZxy(z, x, y).then((tile_result) => { + if (tile_result) { + const format = tile.getFormat(); + const features = format.readFeatures(tile_result.data, { + //}.buffer, { + extent: extent, + featureProjection: projection + }); + tile.setFeatures(features); + tile.setState(2); // LOADED + } else { + tile.setState(4); // EMPTY + } + }); + }); + } + + const source = new VectorTileSource({ + format: new MVT(), + url: 'pmtiles://' + this.chart.url + '/{z}/{x}/{y}', + tileLoadFunction: loader + }) + + vectorLayer.setSource(source) + vectorLayer.setPreload(0) + vectorLayer.setStyle(this.applyVectorStyle) + vectorLayer.setMinZoom(this.chart.minZoom) + vectorLayer.setMaxZoom(this.chart.maxZoom) + } +} + + +@Injectable({ + providedIn: 'root' +}) +export class VectorLayerStyleFactory { + constructor(private s57service: S57Service) { + + } + public CreateVectorLayerStyler(chart: SKChart): VectorLayerStyler { + if (chart.url.indexOf('.pmtiles') !== -1) { + return new PMLayerStyler(chart); + } else if (chart.type == "S-57") { + return new S57LayerStyler(chart, this.s57service) + } else { + return new DefaultLayerStyler(chart); + } + } +} \ No newline at end of file diff --git a/src/app/modules/settings/settings-dialog.html b/src/app/modules/settings/settings-dialog.html index b9a26280..64d3d4d8 100644 --- a/src/app/modules/settings/settings-dialog.html +++ b/src/app/modules/settings/settings-dialog.html @@ -226,7 +226,7 @@ Animate Map - --> + --> @@ -712,6 +712,82 @@ +
+
VECTOR CHART DISPLAY
+ +
+
+ + + {{i.value}} + + +
+
+ + + {{i.value}} + + +
+
+ + + {{i}} + + +
+
+
+
+ + Shallow depth + + m + +
+
+ + Safety depth + + m + +
+
+ + Deep depth + + m + +
+
+
+
+
RESOURCES: NOTES
diff --git a/src/app/modules/settings/settings-dialog.ts b/src/app/modules/settings/settings-dialog.ts index 488104e4..9221b024 100644 --- a/src/app/modules/settings/settings-dialog.ts +++ b/src/app/modules/settings/settings-dialog.ts @@ -23,6 +23,7 @@ export class SettingsDialog implements OnInit { { id: 'sectVessels', text: 'Vessels' }, { id: 'sectNotes', text: 'Notes' }, { id: 'sectVideo', text: 'Video' }, + { id: 'sectS57', text: 'Vector chart display' }, { id: 'sectResLayers', text: 'Resources' }, { id: 'sectResLayers', text: 'Signal K' } ]; diff --git a/src/app/modules/settings/settings.facade.ts b/src/app/modules/settings/settings.facade.ts index 2bbd9838..7517c3df 100644 --- a/src/app/modules/settings/settings.facade.ts +++ b/src/app/modules/settings/settings.facade.ts @@ -137,6 +137,22 @@ export class SettingsFacade { fixedPosition = [0, 0]; + + s57Options = { + graphicsStyle: new Map([ + ['Simplified','Simplified'], + ['Paper','Paper chart'], + ]), + boundaries: new Map([ + ['Symbolized','Symbolized'], + ['Plain','Plain'], + ]), + colors: [2,4], + shallowDepth:2, + safetyDepth:3, + deepDepth:6 + }; + // ***************************************************** // eslint-disable-next-line @typescript-eslint/no-explicit-any public settings!: any; diff --git a/src/assets/s57/chartsymbols.json b/src/assets/s57/chartsymbols.json new file mode 100644 index 00000000..fa7b5675 --- /dev/null +++ b/src/assets/s57/chartsymbols.json @@ -0,0 +1,96383 @@ +{ + "chartsymbols": { + "color-tables": { + "color-table": [ + { + "graphics-file": { + "_name": "rastersymbols-day.png" + }, + "color": [ + { + "_name": "NODTA", + "_r": "163", + "_g": "180", + "_b": "183" + }, + { + "_name": "CURSR", + "_r": "235", + "_g": "125", + "_b": "54" + }, + { + "_name": "CHBLK", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "CHGRD", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "CHGRF", + "_r": "163", + "_g": "180", + "_b": "183" + }, + { + "_name": "CHRED", + "_r": "241", + "_g": "84", + "_b": "105" + }, + { + "_name": "CHGRN", + "_r": "104", + "_g": "228", + "_b": "86" + }, + { + "_name": "CHYLW", + "_r": "244", + "_g": "218", + "_b": "72" + }, + { + "_name": "CHMGD", + "_r": "197", + "_g": "69", + "_b": "195" + }, + { + "_name": "CHMGF", + "_r": "211", + "_g": "166", + "_b": "233" + }, + { + "_name": "CHBRN", + "_r": "177", + "_g": "145", + "_b": "57" + }, + { + "_name": "CHWHT", + "_r": "212", + "_g": "234", + "_b": "238" + }, + { + "_name": "SCLBR", + "_r": "235", + "_g": "125", + "_b": "54" + }, + { + "_name": "CHCOR", + "_r": "235", + "_g": "125", + "_b": "54" + }, + { + "_name": "LITRD", + "_r": "241", + "_g": "84", + "_b": "105" + }, + { + "_name": "LITGN", + "_r": "104", + "_g": "228", + "_b": "86" + }, + { + "_name": "LITYW", + "_r": "244", + "_g": "218", + "_b": "72" + }, + { + "_name": "ISDNG", + "_r": "197", + "_g": "69", + "_b": "195" + }, + { + "_name": "DNGHL", + "_r": "241", + "_g": "84", + "_b": "105" + }, + { + "_name": "TRFCD", + "_r": "197", + "_g": "69", + "_b": "195" + }, + { + "_name": "TRFCF", + "_r": "211", + "_g": "166", + "_b": "233" + }, + { + "_name": "LANDA", + "_r": "201", + "_g": "185", + "_b": "122" + }, + { + "_name": "LANDF", + "_r": "139", + "_g": "102", + "_b": "31" + }, + { + "_name": "CSTLN", + "_r": "82", + "_g": "90", + "_b": "92" + }, + { + "_name": "SNDG1", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "SNDG2", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "DEPSC", + "_r": "82", + "_g": "90", + "_b": "92" + }, + { + "_name": "DEPCN", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "DEPDW", + "_r": "212", + "_g": "234", + "_b": "238" + }, + { + "_name": "DEPMD", + "_r": "186", + "_g": "213", + "_b": "225" + }, + { + "_name": "DEPMS", + "_r": "152", + "_g": "197", + "_b": "242" + }, + { + "_name": "DEPVS", + "_r": "115", + "_g": "182", + "_b": "239" + }, + { + "_name": "DEPIT", + "_r": "131", + "_g": "178", + "_b": "149" + }, + { + "_name": "RADHI", + "_r": "104", + "_g": "228", + "_b": "86" + }, + { + "_name": "RADLO", + "_r": "63", + "_g": "138", + "_b": "52" + }, + { + "_name": "ARPAT", + "_r": "63", + "_g": "165", + "_b": "111" + }, + { + "_name": "NINFO", + "_r": "235", + "_g": "125", + "_b": "54" + }, + { + "_name": "RESBL", + "_r": "58", + "_g": "120", + "_b": "240" + }, + { + "_name": "ADINF", + "_r": "178", + "_g": "159", + "_b": "52" + }, + { + "_name": "RESGR", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "SHIPS", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "PSTRK", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "SYTRK", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "PLRTE", + "_r": "220", + "_g": "64", + "_b": "37" + }, + { + "_name": "APLRT", + "_r": "235", + "_g": "125", + "_b": "54" + }, + { + "_name": "UINFD", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "UINFF", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "UIBCK", + "_r": "212", + "_g": "234", + "_b": "238" + }, + { + "_name": "UIAFD", + "_r": "115", + "_g": "182", + "_b": "239" + }, + { + "_name": "UINFR", + "_r": "241", + "_g": "84", + "_b": "105" + }, + { + "_name": "UINFG", + "_r": "104", + "_g": "228", + "_b": "86" + }, + { + "_name": "UINFO", + "_r": "235", + "_g": "125", + "_b": "54" + }, + { + "_name": "UINFB", + "_r": "58", + "_g": "120", + "_b": "240" + }, + { + "_name": "UINFM", + "_r": "197", + "_g": "69", + "_b": "195" + }, + { + "_name": "UIBDR", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "UIAFF", + "_r": "201", + "_g": "185", + "_b": "122" + }, + { + "_name": "OUTLW", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "OUTLL", + "_r": "201", + "_g": "185", + "_b": "122" + }, + { + "_name": "RES01", + "_r": "163", + "_g": "180", + "_b": "183" + }, + { + "_name": "RES02", + "_r": "163", + "_g": "180", + "_b": "183" + }, + { + "_name": "RES03", + "_r": "163", + "_g": "180", + "_b": "183" + }, + { + "_name": "BKAJ1", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "BKAJ2", + "_r": "35", + "_g": "39", + "_b": "40" + } + ], + "_name": "DAY_BRIGHT" + }, + { + "graphics-file": { + "_name": "rastersymbols-day.png" + }, + "color": [ + { + "_name": "NODTA", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "CURSR", + "_r": "221", + "_g": "118", + "_b": "51" + }, + { + "_name": "CHBLK", + "_r": "163", + "_g": "180", + "_b": "183" + }, + { + "_name": "CHGRD", + "_r": "163", + "_g": "180", + "_b": "183" + }, + { + "_name": "CHGRF", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "CHRED", + "_r": "241", + "_g": "84", + "_b": "105" + }, + { + "_name": "CHGRN", + "_r": "104", + "_g": "228", + "_b": "86" + }, + { + "_name": "CHYLW", + "_r": "244", + "_g": "218", + "_b": "72" + }, + { + "_name": "CHMGD", + "_r": "221", + "_g": "173", + "_b": "244" + }, + { + "_name": "CHMGF", + "_r": "173", + "_g": "61", + "_b": "171" + }, + { + "_name": "CHBRN", + "_r": "163", + "_g": "133", + "_b": "52" + }, + { + "_name": "CHWHT", + "_r": "212", + "_g": "234", + "_b": "238" + }, + { + "_name": "SCLBR", + "_r": "221", + "_g": "118", + "_b": "51" + }, + { + "_name": "CHCOR", + "_r": "221", + "_g": "118", + "_b": "51" + }, + { + "_name": "LITRD", + "_r": "241", + "_g": "84", + "_b": "105" + }, + { + "_name": "LITGN", + "_r": "104", + "_g": "228", + "_b": "86" + }, + { + "_name": "LITYW", + "_r": "244", + "_g": "218", + "_b": "72" + }, + { + "_name": "ISDNG", + "_r": "221", + "_g": "173", + "_b": "244" + }, + { + "_name": "DNGHL", + "_r": "241", + "_g": "84", + "_b": "105" + }, + { + "_name": "TRFCD", + "_r": "221", + "_g": "173", + "_b": "244" + }, + { + "_name": "TRFCF", + "_r": "173", + "_g": "61", + "_b": "171" + }, + { + "_name": "LANDA", + "_r": "134", + "_g": "123", + "_b": "81" + }, + { + "_name": "LANDF", + "_r": "229", + "_g": "168", + "_b": "51" + }, + { + "_name": "CSTLN", + "_r": "163", + "_g": "180", + "_b": "183" + }, + { + "_name": "SNDG1", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "SNDG2", + "_r": "212", + "_g": "234", + "_b": "238" + }, + { + "_name": "DEPSC", + "_r": "163", + "_g": "180", + "_b": "183" + }, + { + "_name": "DEPCN", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "DEPDW", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "DEPMD", + "_r": "38", + "_g": "43", + "_b": "46" + }, + { + "_name": "DEPMS", + "_r": "63", + "_g": "82", + "_b": "101" + }, + { + "_name": "DEPVS", + "_r": "67", + "_g": "107", + "_b": "140" + }, + { + "_name": "DEPIT", + "_r": "65", + "_g": "113", + "_b": "95" + }, + { + "_name": "RADHI", + "_r": "104", + "_g": "228", + "_b": "86" + }, + { + "_name": "RADLO", + "_r": "63", + "_g": "138", + "_b": "52" + }, + { + "_name": "ARPAT", + "_r": "80", + "_g": "208", + "_b": "140" + }, + { + "_name": "NINFO", + "_r": "221", + "_g": "118", + "_b": "51" + }, + { + "_name": "RESBL", + "_r": "58", + "_g": "120", + "_b": "240" + }, + { + "_name": "ADINF", + "_r": "178", + "_g": "159", + "_b": "52" + }, + { + "_name": "RESGR", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "SHIPS", + "_r": "212", + "_g": "234", + "_b": "238" + }, + { + "_name": "PSTRK", + "_r": "212", + "_g": "234", + "_b": "238" + }, + { + "_name": "SYTRK", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "PLRTE", + "_r": "220", + "_g": "64", + "_b": "37" + }, + { + "_name": "APLRT", + "_r": "221", + "_g": "118", + "_b": "51" + }, + { + "_name": "UINFD", + "_r": "212", + "_g": "234", + "_b": "238" + }, + { + "_name": "UINFF", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "UIBCK", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "UIAFD", + "_r": "67", + "_g": "107", + "_b": "140" + }, + { + "_name": "UINFR", + "_r": "241", + "_g": "84", + "_b": "105" + }, + { + "_name": "UINFG", + "_r": "104", + "_g": "228", + "_b": "86" + }, + { + "_name": "UINFO", + "_r": "221", + "_g": "118", + "_b": "51" + }, + { + "_name": "UINFB", + "_r": "58", + "_g": "120", + "_b": "240" + }, + { + "_name": "UINFM", + "_r": "173", + "_g": "61", + "_b": "171" + }, + { + "_name": "UIBDR", + "_r": "163", + "_g": "180", + "_b": "183" + }, + { + "_name": "UIAFF", + "_r": "134", + "_g": "123", + "_b": "81" + }, + { + "_name": "OUTLW", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "OUTLL", + "_r": "134", + "_g": "123", + "_b": "81" + }, + { + "_name": "RES01", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "RES02", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "RES03", + "_r": "125", + "_g": "137", + "_b": "140" + }, + { + "_name": "BKAJ1", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "BKAJ2", + "_r": "35", + "_g": "39", + "_b": "40" + } + ], + "_name": "DAY_BLACKBACK" + }, + { + "graphics-file": { + "_name": "rastersymbols-day.png" + }, + "color": [ + { + "_name": "NODTA", + "_r": "139", + "_g": "153", + "_b": "155" + }, + { + "_name": "CURSR", + "_r": "199", + "_g": "107", + "_b": "46" + }, + { + "_name": "CHBLK", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "CHGRD", + "_r": "106", + "_g": "117", + "_b": "119" + }, + { + "_name": "CHGRF", + "_r": "139", + "_g": "153", + "_b": "155" + }, + { + "_name": "CHRED", + "_r": "205", + "_g": "71", + "_b": "89" + }, + { + "_name": "CHGRN", + "_r": "89", + "_g": "194", + "_b": "73" + }, + { + "_name": "CHYLW", + "_r": "208", + "_g": "186", + "_b": "61" + }, + { + "_name": "CHMGD", + "_r": "168", + "_g": "59", + "_b": "166" + }, + { + "_name": "CHMGF", + "_r": "180", + "_g": "141", + "_b": "198" + }, + { + "_name": "CHBRN", + "_r": "150", + "_g": "123", + "_b": "48" + }, + { + "_name": "CHWHT", + "_r": "180", + "_g": "199", + "_b": "202" + }, + { + "_name": "SCLBR", + "_r": "199", + "_g": "107", + "_b": "46" + }, + { + "_name": "CHCOR", + "_r": "199", + "_g": "107", + "_b": "46" + }, + { + "_name": "LITRD", + "_r": "205", + "_g": "71", + "_b": "89" + }, + { + "_name": "LITGN", + "_r": "89", + "_g": "194", + "_b": "73" + }, + { + "_name": "LITYW", + "_r": "208", + "_g": "186", + "_b": "61" + }, + { + "_name": "ISDNG", + "_r": "168", + "_g": "59", + "_b": "166" + }, + { + "_name": "DNGHL", + "_r": "205", + "_g": "71", + "_b": "89" + }, + { + "_name": "TRFCD", + "_r": "168", + "_g": "59", + "_b": "166" + }, + { + "_name": "TRFCF", + "_r": "180", + "_g": "141", + "_b": "198" + }, + { + "_name": "LANDA", + "_r": "171", + "_g": "157", + "_b": "104" + }, + { + "_name": "LANDF", + "_r": "118", + "_g": "87", + "_b": "26" + }, + { + "_name": "CSTLN", + "_r": "70", + "_g": "77", + "_b": "78" + }, + { + "_name": "SNDG1", + "_r": "106", + "_g": "117", + "_b": "119" + }, + { + "_name": "SNDG2", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "DEPSC", + "_r": "70", + "_g": "77", + "_b": "78" + }, + { + "_name": "DEPCN", + "_r": "106", + "_g": "117", + "_b": "119" + }, + { + "_name": "DEPDW", + "_r": "180", + "_g": "199", + "_b": "202" + }, + { + "_name": "DEPMD", + "_r": "158", + "_g": "181", + "_b": "192" + }, + { + "_name": "DEPMS", + "_r": "129", + "_g": "168", + "_b": "206" + }, + { + "_name": "DEPVS", + "_r": "98", + "_g": "154", + "_b": "203" + }, + { + "_name": "DEPIT", + "_r": "111", + "_g": "151", + "_b": "127" + }, + { + "_name": "RADHI", + "_r": "89", + "_g": "194", + "_b": "73" + }, + { + "_name": "RADLO", + "_r": "54", + "_g": "117", + "_b": "44" + }, + { + "_name": "ARPAT", + "_r": "54", + "_g": "140", + "_b": "94" + }, + { + "_name": "NINFO", + "_r": "199", + "_g": "107", + "_b": "46" + }, + { + "_name": "RESBL", + "_r": "49", + "_g": "102", + "_b": "204" + }, + { + "_name": "ADINF", + "_r": "151", + "_g": "135", + "_b": "44" + }, + { + "_name": "RESGR", + "_r": "106", + "_g": "117", + "_b": "119" + }, + { + "_name": "SHIPS", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "PSTRK", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "SYTRK", + "_r": "106", + "_g": "117", + "_b": "119" + }, + { + "_name": "PLRTE", + "_r": "220", + "_g": "64", + "_b": "37" + }, + { + "_name": "APLRT", + "_r": "199", + "_g": "107", + "_b": "46" + }, + { + "_name": "UINFD", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "UINFF", + "_r": "106", + "_g": "117", + "_b": "119" + }, + { + "_name": "UIBCK", + "_r": "180", + "_g": "199", + "_b": "202" + }, + { + "_name": "UIAFD", + "_r": "98", + "_g": "154", + "_b": "203" + }, + { + "_name": "UINFR", + "_r": "205", + "_g": "71", + "_b": "89" + }, + { + "_name": "UINFG", + "_r": "89", + "_g": "194", + "_b": "73" + }, + { + "_name": "UINFO", + "_r": "199", + "_g": "107", + "_b": "46" + }, + { + "_name": "UINFB", + "_r": "49", + "_g": "102", + "_b": "204" + }, + { + "_name": "UINFM", + "_r": "168", + "_g": "59", + "_b": "166" + }, + { + "_name": "UIBDR", + "_r": "106", + "_g": "117", + "_b": "119" + }, + { + "_name": "UIAFF", + "_r": "171", + "_g": "157", + "_b": "104" + }, + { + "_name": "OUTLW", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "OUTLL", + "_r": "171", + "_g": "157", + "_b": "104" + }, + { + "_name": "RES01", + "_r": "139", + "_g": "153", + "_b": "155" + }, + { + "_name": "RES02", + "_r": "139", + "_g": "153", + "_b": "155" + }, + { + "_name": "RES03", + "_r": "139", + "_g": "153", + "_b": "155" + }, + { + "_name": "BKAJ1", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "BKAJ2", + "_r": "30", + "_g": "33", + "_b": "34" + } + ], + "_name": "DAY_WHITEBACK" + }, + { + "graphics-file": { + "_name": "rastersymbols-dusk.png" + }, + "color": [ + { + "_name": "NODTA", + "_r": "41", + "_g": "46", + "_b": "46" + }, + { + "_name": "CURSR", + "_r": "75", + "_g": "38", + "_b": "19" + }, + { + "_name": "CHBLK", + "_r": "54", + "_g": "60", + "_b": "61" + }, + { + "_name": "CHGRD", + "_r": "54", + "_g": "60", + "_b": "61" + }, + { + "_name": "CHGRF", + "_r": "41", + "_g": "46", + "_b": "46" + }, + { + "_name": "CHRED", + "_r": "80", + "_g": "28", + "_b": "35" + }, + { + "_name": "CHGRN", + "_r": "35", + "_g": "76", + "_b": "29" + }, + { + "_name": "CHYLW", + "_r": "81", + "_g": "73", + "_b": "24" + }, + { + "_name": "CHMGD", + "_r": "74", + "_g": "58", + "_b": "81" + }, + { + "_name": "CHMGF", + "_r": "58", + "_g": "20", + "_b": "57" + }, + { + "_name": "CHBRN", + "_r": "54", + "_g": "44", + "_b": "17" + }, + { + "_name": "CHWHT", + "_r": "71", + "_g": "78", + "_b": "79" + }, + { + "_name": "SCLBR", + "_r": "75", + "_g": "38", + "_b": "19" + }, + { + "_name": "CHCOR", + "_r": "75", + "_g": "38", + "_b": "19" + }, + { + "_name": "LITRD", + "_r": "80", + "_g": "28", + "_b": "35" + }, + { + "_name": "LITGN", + "_r": "35", + "_g": "76", + "_b": "29" + }, + { + "_name": "LITYW", + "_r": "81", + "_g": "73", + "_b": "24" + }, + { + "_name": "ISDNG", + "_r": "74", + "_g": "58", + "_b": "81" + }, + { + "_name": "DNGHL", + "_r": "80", + "_g": "28", + "_b": "35" + }, + { + "_name": "TRFCD", + "_r": "74", + "_g": "58", + "_b": "81" + }, + { + "_name": "TRFCF", + "_r": "58", + "_g": "20", + "_b": "57" + }, + { + "_name": "LANDA", + "_r": "44", + "_g": "41", + "_b": "27" + }, + { + "_name": "LANDF", + "_r": "76", + "_g": "56", + "_b": "17" + }, + { + "_name": "CSTLN", + "_r": "54", + "_g": "60", + "_b": "61" + }, + { + "_name": "SNDG1", + "_r": "41", + "_g": "46", + "_b": "46" + }, + { + "_name": "SNDG2", + "_r": "71", + "_g": "78", + "_b": "79" + }, + { + "_name": "DEPSC", + "_r": "54", + "_g": "60", + "_b": "61" + }, + { + "_name": "DEPCN", + "_r": "41", + "_g": "46", + "_b": "46" + }, + { + "_name": "DEPDW", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "DEPMD", + "_r": "12", + "_g": "14", + "_b": "15" + }, + { + "_name": "DEPMS", + "_r": "21", + "_g": "27", + "_b": "33" + }, + { + "_name": "DEPVS", + "_r": "22", + "_g": "35", + "_b": "47" + }, + { + "_name": "DEPIT", + "_r": "21", + "_g": "37", + "_b": "31" + }, + { + "_name": "RADHI", + "_r": "35", + "_g": "76", + "_b": "29" + }, + { + "_name": "RADLO", + "_r": "21", + "_g": "46", + "_b": "17" + }, + { + "_name": "ARPAT", + "_r": "26", + "_g": "69", + "_b": "47" + }, + { + "_name": "NINFO", + "_r": "75", + "_g": "38", + "_b": "19" + }, + { + "_name": "RESBL", + "_r": "19", + "_g": "40", + "_b": "80" + }, + { + "_name": "ADINF", + "_r": "59", + "_g": "53", + "_b": "17" + }, + { + "_name": "RESGR", + "_r": "41", + "_g": "46", + "_b": "46" + }, + { + "_name": "SHIPS", + "_r": "71", + "_g": "78", + "_b": "79" + }, + { + "_name": "PSTRK", + "_r": "71", + "_g": "78", + "_b": "79" + }, + { + "_name": "SYTRK", + "_r": "41", + "_g": "46", + "_b": "46" + }, + { + "_name": "PLRTE", + "_r": "73", + "_g": "21", + "_b": "12" + }, + { + "_name": "APLRT", + "_r": "75", + "_g": "38", + "_b": "19" + }, + { + "_name": "UINFD", + "_r": "71", + "_g": "78", + "_b": "79" + }, + { + "_name": "UINFF", + "_r": "41", + "_g": "46", + "_b": "46" + }, + { + "_name": "UIBCK", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "UIAFD", + "_r": "22", + "_g": "35", + "_b": "47" + }, + { + "_name": "UINFR", + "_r": "80", + "_g": "28", + "_b": "35" + }, + { + "_name": "UINFG", + "_r": "35", + "_g": "76", + "_b": "29" + }, + { + "_name": "UINFO", + "_r": "75", + "_g": "38", + "_b": "19" + }, + { + "_name": "UINFB", + "_r": "19", + "_g": "40", + "_b": "80" + }, + { + "_name": "UINFM", + "_r": "58", + "_g": "20", + "_b": "57" + }, + { + "_name": "UIBDR", + "_r": "54", + "_g": "60", + "_b": "61" + }, + { + "_name": "UIAFF", + "_r": "44", + "_g": "41", + "_b": "27" + }, + { + "_name": "OUTLW", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "OUTLL", + "_r": "44", + "_g": "41", + "_b": "27" + }, + { + "_name": "RES01", + "_r": "41", + "_g": "46", + "_b": "46" + }, + { + "_name": "RES02", + "_r": "41", + "_g": "46", + "_b": "46" + }, + { + "_name": "RES03", + "_r": "41", + "_g": "46", + "_b": "46" + }, + { + "_name": "BKAJ1", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "BKAJ2", + "_r": "11", + "_g": "13", + "_b": "13" + } + ], + "_name": "DUSK" + }, + { + "graphics-file": { + "_name": "rastersymbols-dark.png" + }, + "color": [ + { + "_name": "NODTA", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "CURSR", + "_r": "52", + "_g": "28", + "_b": "12" + }, + { + "_name": "CHBLK", + "_r": "31", + "_g": "34", + "_b": "35" + }, + { + "_name": "CHGRD", + "_r": "31", + "_g": "34", + "_b": "35" + }, + { + "_name": "CHGRF", + "_r": "16", + "_g": "18", + "_b": "18" + }, + { + "_name": "CHRED", + "_r": "59", + "_g": "17", + "_b": "10" + }, + { + "_name": "CHGRN", + "_r": "22", + "_g": "34", + "_b": "7" + }, + { + "_name": "CHYLW", + "_r": "41", + "_g": "33", + "_b": "10" + }, + { + "_name": "CHMGD", + "_r": "52", + "_g": "18", + "_b": "52" + }, + { + "_name": "CHMGF", + "_r": "52", + "_g": "18", + "_b": "52" + }, + { + "_name": "CHBRN", + "_r": "15", + "_g": "13", + "_b": "5" + }, + { + "_name": "CHWHT", + "_r": "37", + "_g": "41", + "_b": "41" + }, + { + "_name": "SCLBR", + "_r": "52", + "_g": "28", + "_b": "12" + }, + { + "_name": "CHCOR", + "_r": "52", + "_g": "28", + "_b": "12" + }, + { + "_name": "LITRD", + "_r": "59", + "_g": "17", + "_b": "10" + }, + { + "_name": "LITGN", + "_r": "22", + "_g": "34", + "_b": "7" + }, + { + "_name": "LITYW", + "_r": "41", + "_g": "33", + "_b": "10" + }, + { + "_name": "ISDNG", + "_r": "52", + "_g": "18", + "_b": "52" + }, + { + "_name": "DNGHL", + "_r": "59", + "_g": "17", + "_b": "10" + }, + { + "_name": "TRFCD", + "_r": "58", + "_g": "20", + "_b": "58" + }, + { + "_name": "TRFCF", + "_r": "52", + "_g": "18", + "_b": "52" + }, + { + "_name": "LANDA", + "_r": "13", + "_g": "10", + "_b": "8" + }, + { + "_name": "LANDF", + "_r": "23", + "_g": "17", + "_b": "5" + }, + { + "_name": "CSTLN", + "_r": "37", + "_g": "41", + "_b": "41" + }, + { + "_name": "SNDG1", + "_r": "31", + "_g": "34", + "_b": "35" + }, + { + "_name": "SNDG2", + "_r": "43", + "_g": "48", + "_b": "48" + }, + { + "_name": "DEPSC", + "_r": "37", + "_g": "41", + "_b": "41" + }, + { + "_name": "DEPCN", + "_r": "31", + "_g": "34", + "_b": "35" + }, + { + "_name": "DEPDW", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "DEPMD", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "DEPMS", + "_r": "3", + "_g": "4", + "_b": "19" + }, + { + "_name": "DEPVS", + "_r": "3", + "_g": "4", + "_b": "19" + }, + { + "_name": "DEPIT", + "_r": "8", + "_g": "11", + "_b": "9" + }, + { + "_name": "RADHI", + "_r": "22", + "_g": "34", + "_b": "7" + }, + { + "_name": "RADLO", + "_r": "10", + "_g": "16", + "_b": "3" + }, + { + "_name": "ARPAT", + "_r": "12", + "_g": "31", + "_b": "21" + }, + { + "_name": "NINFO", + "_r": "52", + "_g": "28", + "_b": "12" + }, + { + "_name": "RESBL", + "_r": "21", + "_g": "29", + "_b": "69" + }, + { + "_name": "ADINF", + "_r": "41", + "_g": "33", + "_b": "10" + }, + { + "_name": "RESGR", + "_r": "16", + "_g": "18", + "_b": "18" + }, + { + "_name": "SHIPS", + "_r": "37", + "_g": "41", + "_b": "41" + }, + { + "_name": "PSTRK", + "_r": "37", + "_g": "41", + "_b": "41" + }, + { + "_name": "SYTRK", + "_r": "31", + "_g": "34", + "_b": "35" + }, + { + "_name": "PLRTE", + "_r": "66", + "_g": "19", + "_b": "11" + }, + { + "_name": "APLRT", + "_r": "52", + "_g": "28", + "_b": "12" + }, + { + "_name": "UINFD", + "_r": "43", + "_g": "48", + "_b": "48" + }, + { + "_name": "UINFF", + "_r": "31", + "_g": "34", + "_b": "35" + }, + { + "_name": "UIBCK", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "UIAFD", + "_r": "3", + "_g": "4", + "_b": "19" + }, + { + "_name": "UINFR", + "_r": "59", + "_g": "17", + "_b": "10" + }, + { + "_name": "UINFG", + "_r": "22", + "_g": "34", + "_b": "7" + }, + { + "_name": "UINFO", + "_r": "52", + "_g": "28", + "_b": "12" + }, + { + "_name": "UINFB", + "_r": "21", + "_g": "29", + "_b": "69" + }, + { + "_name": "UINFM", + "_r": "52", + "_g": "18", + "_b": "52" + }, + { + "_name": "UIBDR", + "_r": "31", + "_g": "34", + "_b": "35" + }, + { + "_name": "UIAFF", + "_r": "13", + "_g": "10", + "_b": "8" + }, + { + "_name": "OUTLW", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "OUTLL", + "_r": "13", + "_g": "10", + "_b": "8" + }, + { + "_name": "RES01", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "RES02", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "RES03", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "BKAJ1", + "_r": "7", + "_g": "7", + "_b": "7" + }, + { + "_name": "BKAJ2", + "_r": "7", + "_g": "8", + "_b": "8" + } + ], + "_name": "NIGHT" + } + ] + }, + "lookups": { + "lookup": [ + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AP(QUESMRK1);LS(DASH,1,CHMGD)", + "display-cat": "Standard", + "comment": "21010", + "_id": "0", + "_RCID": "32036", + "_name": "######" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATACH8" + } + ], + "instruction": "SY(ACHARE02);LS(DASH,2,CHMGF);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26220", + "_id": "1", + "_RCID": "32037", + "_name": "ACHARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(ACHARE51);CS(RESARE02)", + "display-cat": "Standard", + "comment": "26220", + "_id": "2", + "_RCID": "32038", + "_name": "ACHARE" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(ACHBRT07);TE('%s','OBJNAM',3,1,2,'15110',1,0,CHBLK,29);LS(DASH,2,CHMGF)", + "display-cat": "Standard", + "comment": "26220", + "_id": "3", + "_RCID": "32039", + "_name": "ACHBRT" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Other", + "comment": "36050", + "_id": "4", + "_RCID": "32040", + "_name": "ADMARE" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "AC(LANDA);AP(AIRARE02);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "5", + "_RCID": "32041", + "_name": "AIRARE" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AP(AIRARE02);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32240", + "_id": "6", + "_RCID": "32042", + "_name": "AIRARE" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LC(ARCSLN01)", + "display-cat": "Standard", + "comment": "26260", + "_id": "7", + "_RCID": "32043", + "_name": "ARCSLN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(BRTHNO01);TE('%s','OBJNAM',3,1,2,'15110',1,0,CHBLK,29)", + "display-cat": "Other", + "comment": "32440", + "_id": "8", + "_RCID": "32044", + "_name": "BERTHS" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG2" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "9", + "_RCID": "32045", + "_name": "BRIDGE" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG3" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "10", + "_RCID": "32046", + "_name": "BRIDGE" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG4" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "11", + "_RCID": "32047", + "_name": "BRIDGE" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG5" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "12", + "_RCID": "32048", + "_name": "BRIDGE" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG7" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "13", + "_RCID": "32049", + "_name": "BRIDGE" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG8" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "14", + "_RCID": "32050", + "_name": "BRIDGE" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Plain", + "instruction": "TX(OBJNAM,3,1,2,'15110',1,0,CHBLK,21);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "15", + "_RCID": "32051", + "_name": "BRIDGE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);TX(OBJNAM,1,2,3,'16120',0,0,CHBLK,26);LS(SOLD,1,LANDF)", + "display-cat": "Standard", + "comment": "22240", + "_id": "16", + "_RCID": "32052", + "_name": "BUAARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN33" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);TX(OBJNAM,1,2,2,'15110',0,0,CHBLK,26);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "17", + "_RCID": "32053", + "_name": "BUISGL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN33" + } + ], + "instruction": "AC(CHBRN);TX(OBJNAM,1,2,2,'15110',0,0,CHBLK,26);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32220", + "_id": "18", + "_RCID": "32054", + "_name": "BUISGL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "19", + "_RCID": "32055", + "_name": "BUISGL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32220", + "_id": "20", + "_RCID": "32056", + "_name": "BUISGL" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CONDTN" + } + ], + "instruction": "AC(DEPVS);LS(DASH,1,CHBLK)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "21", + "_RCID": "32057", + "_name": "CANALS" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(DEPVS);LS(SOLD,1,CHBLK)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "22", + "_RCID": "32058", + "_name": "CANALS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV4" + } + ], + "instruction": "AC(DEPIT);LS(DASH,2,CSTLN)", + "display-cat": "Standard", + "comment": "22010", + "_id": "23", + "_RCID": "32059", + "_name": "CAUSWY" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,1,CSTLN)", + "display-cat": "Standard", + "comment": "22010", + "_id": "24", + "_RCID": "32060", + "_name": "CAUSWY" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(CBLARE51);LS(DASH,2,CHMGD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26230", + "_id": "25", + "_RCID": "32061", + "_name": "CBLARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(POSGEN04)", + "display-cat": "Other", + "comment": "32410", + "_id": "26", + "_RCID": "32062", + "_name": "CHKPNT" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD1" + } + ], + "instruction": "SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11);LS(SOLD,3,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "27", + "_RCID": "32063", + "_name": "CONVYR" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD3" + } + ], + "instruction": "SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11);LS(SOLD,3,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "28", + "_RCID": "32064", + "_name": "CONVYR" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Plain", + "instruction": "TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11);LS(SOLD,3,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "29", + "_RCID": "32065", + "_name": "CONVYR" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Other", + "comment": "36050", + "_id": "30", + "_RCID": "32066", + "_name": "CONZNE" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Other", + "comment": "36010", + "_id": "31", + "_RCID": "32067", + "_name": "COSARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "32", + "_RCID": "32068", + "_name": "CRANES" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32440", + "_id": "33", + "_RCID": "32069", + "_name": "CRANES" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(CTNARE51);LS(DASH,2,TRFCD)", + "display-cat": "Standard", + "comment": "26050", + "_id": "34", + "_RCID": "32070", + "_name": "CTNARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(INFARE51);LS(DASH,1,CHMGF)", + "display-cat": "Standard", + "comment": "26250", + "_id": "35", + "_RCID": "32071", + "_name": "CTSARE" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,1,CHGRF)", + "display-cat": "Other", + "comment": "36020", + "_id": "36", + "_RCID": "32072", + "_name": "CUSZNE" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDAM3" + } + ], + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "37", + "_RCID": "32073", + "_name": "DAMCON" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,1,LANDF)", + "display-cat": "Standard", + "comment": "22010", + "_id": "38", + "_RCID": "32074", + "_name": "DAMCON" + }, + { + "type": "Area", + "disp-prio": "Group 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "DRVAL1?" + }, + { + "_index": "1", + "__text": "DRVAL2?" + } + ], + "instruction": "AC(NODTA);AP(PRTSUR01);LS(SOLD,2,CHGRD)", + "display-cat": "Displaybase", + "comment": "13030", + "_id": "39", + "_RCID": "32075", + "_name": "DEPARE" + }, + { + "type": "Area", + "disp-prio": "Group 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "CS(DEPARE01)", + "display-cat": "Displaybase", + "comment": "13030", + "_id": "40", + "_RCID": "32076", + "_name": "DEPARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDPG5" + } + ], + "instruction": "LS(DASH,1,CHMGD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26240", + "_id": "41", + "_RCID": "32077", + "_name": "DMPGRD" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(INFARE51);LS(DASH,1,CHMGD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26240", + "_id": "42", + "_RCID": "32078", + "_name": "DMPGRD" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CONDTN" + } + ], + "instruction": "AC(DEPVS);TX(OBJNAM,1,2,3,'15110',0,0,CHBLK,26);LS(DASH,1,CHBLK)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "43", + "_RCID": "32079", + "_name": "DOCARE" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(DEPVS);TX(OBJNAM,1,2,3,'15110',0,0,CHBLK,26);LS(SOLD,1,CHBLK)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "44", + "_RCID": "32080", + "_name": "DOCARE" + }, + { + "type": "Area", + "disp-prio": "Group 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "CS(DEPARE01)", + "display-cat": "Standard", + "comment": "13030", + "_id": "45", + "_RCID": "32081", + "_name": "DRGARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(LANDA);LS(SOLD,1,CSTLN)", + "display-cat": "Other", + "comment": "32440", + "_id": "46", + "_RCID": "32082", + "_name": "DRYDOC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC1" + } + ], + "instruction": "SY(TSSLPT51,ORIENT);SY(DWRTPT51);LS(DASH,2,TRFCD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "47", + "_RCID": "32083", + "_name": "DWRTPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC2" + } + ], + "instruction": "SY(TSSLPT51,ORIENT);SY(DWRTPT51);LS(DASH,2,TRFCD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "48", + "_RCID": "32084", + "_name": "DWRTPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC3" + } + ], + "instruction": "SY(TSSLPT51,ORIENT);SY(DWRTPT51);LS(DASH,2,TRFCD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "49", + "_RCID": "32085", + "_name": "DWRTPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC4" + } + ], + "instruction": "SY(DWRUTE51,ORIENT);SY(DWRTPT51);LS(DASH,2,TRFCD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "50", + "_RCID": "32086", + "_name": "DWRTPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(TWRTPT52);SY(DWRTPT51);LS(DASH,2,TRFCD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "51", + "_RCID": "32087", + "_name": "DWRTPT" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,1,LANDF)", + "display-cat": "Standard", + "comment": "22010", + "_id": "52", + "_RCID": "32088", + "_name": "DYKCON" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Other", + "comment": "36050", + "_id": "53", + "_RCID": "32089", + "_name": "EXEZNE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC1" + } + ], + "instruction": "SY(FAIRWY51,ORIENT);LS(DASH,1,CHGRD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26050", + "_id": "54", + "_RCID": "32090", + "_name": "FAIRWY" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC2" + } + ], + "instruction": "SY(FAIRWY51,ORIENT);LS(DASH,1,CHGRD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26050", + "_id": "55", + "_RCID": "32091", + "_name": "FAIRWY" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC3" + } + ], + "instruction": "SY(FAIRWY51,ORIENT);LS(DASH,1,CHGRD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26050", + "_id": "56", + "_RCID": "32092", + "_name": "FAIRWY" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC4" + } + ], + "instruction": "SY(FAIRWY52,ORIENT);LS(DASH,1,CHGRD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26050", + "_id": "57", + "_RCID": "32093", + "_name": "FAIRWY" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,1,CHGRD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26050", + "_id": "58", + "_RCID": "32094", + "_name": "FAIRWY" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFRY2" + } + ], + "instruction": "SY(FRYARE52);LS(DASH,2,CHBLK)", + "display-cat": "Standard", + "comment": "26040", + "_id": "59", + "_RCID": "32095", + "_name": "FERYRT" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(FRYARE51);LS(DASH,2,CHMGD)", + "display-cat": "Standard", + "comment": "26040", + "_id": "60", + "_RCID": "32096", + "_name": "FERYRT" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "61", + "_RCID": "32097", + "_name": "FLODOC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "62", + "_RCID": "32098", + "_name": "FORSTC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32220", + "_id": "63", + "_RCID": "32099", + "_name": "FORSTC" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Other", + "comment": "36020", + "_id": "64", + "_RCID": "32100", + "_name": "FRPARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF1" + } + ], + "instruction": "AP(FSHFAC03);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34040", + "_id": "65", + "_RCID": "32101", + "_name": "FSHFAC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF2" + } + ], + "instruction": "AP(FSHFAC04);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34040", + "_id": "66", + "_RCID": "32102", + "_name": "FSHFAC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF3" + } + ], + "instruction": "AP(FSHFAC04);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34040", + "_id": "67", + "_RCID": "32103", + "_name": "FSHFAC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF4" + } + ], + "instruction": "AP(FSHFAC04);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34040", + "_id": "68", + "_RCID": "32104", + "_name": "FSHFAC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AP(FSHHAV02);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34040", + "_id": "69", + "_RCID": "32105", + "_name": "FSHFAC" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(FSHGRD01);LS(DASH,2,CHGRF)", + "display-cat": "Standard", + "comment": "26210", + "_id": "70", + "_RCID": "32106", + "_name": "FSHGRD" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Other", + "comment": "36040", + "_id": "71", + "_RCID": "32107", + "_name": "FSHZNE" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "72", + "_RCID": "32108", + "_name": "GATCON" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "32460", + "_id": "73", + "_RCID": "32109", + "_name": "GRIDRN" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "36020", + "_id": "74", + "_RCID": "32110", + "_name": "HRBARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATHAF1" + } + ], + "instruction": "SY(ROLROL01)", + "display-cat": "Other", + "comment": "32410", + "_id": "75", + "_RCID": "32111", + "_name": "HRBFAC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATHAF4" + } + ], + "instruction": "SY(HRBFAC09)", + "display-cat": "Other", + "comment": "32410", + "_id": "76", + "_RCID": "32112", + "_name": "HRBFAC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATHAF5" + } + ], + "instruction": "SY(SMCFAC02)", + "display-cat": "Other", + "comment": "32410", + "_id": "77", + "_RCID": "32113", + "_name": "HRBFAC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(CHINFO07)", + "display-cat": "Other", + "comment": "32410", + "_id": "78", + "_RCID": "32114", + "_name": "HRBFAC" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "79", + "_RCID": "32115", + "_name": "HULKES" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(NODTA);AP(ICEARE04);LS(DASH,1,CHGRD)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "80", + "_RCID": "32116", + "_name": "ICEARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(INFARE51);LS(DASH,1,CHMGF);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26250", + "_id": "81", + "_RCID": "32117", + "_name": "ICNARE" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(ITZARE51);LS(DASH,1,TRFCD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "82", + "_RCID": "32118", + "_name": "ISTZNE" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(DEPVS);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32050", + "_id": "83", + "_RCID": "32119", + "_name": "LAKARE" + }, + { + "type": "Area", + "disp-prio": "Group 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(LANDA);TX(OBJNAM,1,2,3,'15118',-1,-1,CHBLK,26)", + "display-cat": "Displaybase", + "comment": "12010", + "_id": "84", + "_RCID": "32120", + "_name": "LNDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN33" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);TX(OBJNAM,1,2,2,'15110',0,0,CHBLK,26);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "85", + "_RCID": "32121", + "_name": "LNDMRK" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN33" + } + ], + "instruction": "AC(CHBRN);TX(OBJNAM,1,2,2,'15110',0,0,CHBLK,26);LS(SOLD,1,LANDF)", + "display-cat": "Standard", + "comment": "32220", + "_id": "86", + "_RCID": "32122", + "_name": "LNDMRK" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "87", + "_RCID": "32123", + "_name": "LNDMRK" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,1,LANDF)", + "display-cat": "Standard", + "comment": "32220", + "_id": "88", + "_RCID": "32124", + "_name": "LNDMRK" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLND12" + } + ], + "instruction": "AP(MARSHES1)", + "display-cat": "Standard", + "comment": "21060", + "_id": "89", + "_RCID": "32125", + "_name": "LNDRGN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLND2" + } + ], + "instruction": "AP(MARSHES1)", + "display-cat": "Standard", + "comment": "21060", + "_id": "90", + "_RCID": "32126", + "_name": "LNDRGN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "TX(OBJNAM,1,2,3,'15120',0,0,CHBLK,26)", + "display-cat": "Standard", + "comment": "21060", + "_id": "91", + "_RCID": "32127", + "_name": "LNDRGN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(LOCMAG51);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "31080", + "_id": "92", + "_RCID": "32128", + "_name": "LOCMAG" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,1,CHBLK)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "93", + "_RCID": "32129", + "_name": "LOGPON" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(DEPVS);LS(SOLD,1,CHBLK)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "94", + "_RCID": "32130", + "_name": "LOKBSN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(MAGVAR51)", + "display-cat": "Other", + "comment": "31080", + "_id": "95", + "_RCID": "32131", + "_name": "MAGVAR" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AP(MARCUL02);LS(DASH,1,CHGRD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26210", + "_id": "96", + "_RCID": "32132", + "_name": "MARCUL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(CTYARE51);LS(DASH,2,CHMGD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26040", + "_id": "97", + "_RCID": "32133", + "_name": "MIPARE" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "12410", + "_id": "98", + "_RCID": "32134", + "_name": "MORFAC" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "99", + "_RCID": "32135", + "_name": "M_ACCY" + }, + { + "type": "Area", + "disp-prio": "Group 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "CS(DATCVR01)", + "display-cat": "Other", + "comment": "31040", + "_id": "100", + "_RCID": "32136", + "_name": "M_COVR" + }, + { + "type": "Area", + "disp-prio": "Group 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "CS(DATCVR01)", + "display-cat": "Other", + "comment": "31040", + "_id": "101", + "_RCID": "32137", + "_name": "M_CSCL" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "102", + "_RCID": "32138", + "_name": "M_HOPA" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "103", + "_RCID": "32139", + "_name": "M_NPUB" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "MARSYS1" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(DIRBOYA1,ORIENT);LS(DASH,1,CHYLW)", + "display-cat": "Standard", + "comment": "27040", + "_id": "104", + "_RCID": "32140", + "_name": "M_NSYS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "MARSYS2" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(DIRBOYB1,ORIENT);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "27040", + "_id": "105", + "_RCID": "32141", + "_name": "M_NSYS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + } + ], + "instruction": "SY(DIRBOY01,ORIENT);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "27040", + "_id": "106", + "_RCID": "32142", + "_name": "M_NSYS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LC(MARSYS51)", + "display-cat": "Standard", + "comment": "27040", + "_id": "107", + "_RCID": "32143", + "_name": "M_NSYS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATZOC1" + } + ], + "instruction": "AP(DQUALA11);LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "31010", + "_id": "108", + "_RCID": "32144", + "_name": "M_QUAL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATZOC2" + } + ], + "instruction": "AP(DQUALA21);LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "31010", + "_id": "109", + "_RCID": "32145", + "_name": "M_QUAL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATZOC3" + } + ], + "instruction": "AP(DQUALB01);LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "31010", + "_id": "110", + "_RCID": "32146", + "_name": "M_QUAL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATZOC4" + } + ], + "instruction": "AP(DQUALC01);LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "31010", + "_id": "111", + "_RCID": "32147", + "_name": "M_QUAL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATZOC5" + } + ], + "instruction": "AP(DQUALD01);LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "31010", + "_id": "112", + "_RCID": "32148", + "_name": "M_QUAL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATZOC6" + } + ], + "instruction": "AP(DQUALU01);LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "31010", + "_id": "113", + "_RCID": "32149", + "_name": "M_QUAL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AP(NODATA03);LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "31010", + "_id": "114", + "_RCID": "32150", + "_name": "M_QUAL" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "115", + "_RCID": "32151", + "_name": "M_SDAT" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "116", + "_RCID": "32152", + "_name": "M_SREL" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "117", + "_RCID": "32153", + "_name": "M_VDAT" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "SYMINS" + } + ], + "instruction": "CS(SYMINS01)", + "display-cat": "Standard", + "comment": "21020", + "_id": "118", + "_RCID": "32154", + "_name": "NEWOBJ" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(NEWOBJ01);LS(DASH,2,CHMGD)", + "display-cat": "Standard", + "comment": "21020", + "_id": "119", + "_RCID": "32155", + "_name": "NEWOBJ" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS7" + }, + { + "_index": "1", + "__text": "VALSOU" + } + ], + "instruction": "SY(FOULGND1);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34051", + "_id": "120", + "_RCID": "32156", + "_name": "OBSTRN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS10" + } + ], + "instruction": "SY(FLTHAZ02);LS(DASH,1,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "121", + "_RCID": "32157", + "_name": "OBSTRN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS6" + } + ], + "instruction": "CS(OBSTRN04);AP(FOULAR01);LS(DOTT,2,CHBLK)", + "display-cat": "Other", + "comment": "34050", + "_id": "122", + "_RCID": "32158", + "_name": "OBSTRN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS7" + } + ], + "instruction": "SY(FOULGND1);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34050", + "_id": "123", + "_RCID": "32159", + "_name": "OBSTRN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS8" + } + ], + "instruction": "SY(FLTHAZ02);LS(DASH,1,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "124", + "_RCID": "32160", + "_name": "OBSTRN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS9" + } + ], + "instruction": "SY(ACHARE02);LS(DASH,1,CHMGD)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "125", + "_RCID": "32161", + "_name": "OBSTRN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV7" + } + ], + "instruction": "SY(FLTHAZ02);LS(DASH,1,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "126", + "_RCID": "32162", + "_name": "OBSTRN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "CS(OBSTRN04)", + "display-cat": "Other", + "comment": "34050", + "_id": "127", + "_RCID": "32163", + "_name": "OBSTRN" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,4,CSTLN);TE('Prod %s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "128", + "_RCID": "32164", + "_name": "OFSPLF" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(CTYARE51);LS(DASH,2,CHMGD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26040", + "_id": "129", + "_RCID": "32165", + "_name": "OSPARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(PILBOP02);LS(DASH,2,TRFCF)", + "display-cat": "Standard", + "comment": "28010", + "_id": "130", + "_RCID": "32166", + "_name": "PILBOP" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPIP2" + } + ], + "instruction": "SY(INFARE51);LS(DASH,2,CHGRD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26230", + "_id": "131", + "_RCID": "32167", + "_name": "PIPARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPIP3" + } + ], + "instruction": "SY(INFARE51);LS(DASH,2,CHGRD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26230", + "_id": "132", + "_RCID": "32168", + "_name": "PIPARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "PRODCT3" + } + ], + "instruction": "SY(INFARE51);LS(DASH,2,CHGRD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26230", + "_id": "133", + "_RCID": "32169", + "_name": "PIPARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(INFARE51);LS(DASH,2,CHMGD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26230", + "_id": "134", + "_RCID": "32170", + "_name": "PIPARE" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "135", + "_RCID": "32171", + "_name": "PONTON" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(PRCARE51);LS(DASH,2,TRFCD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "136", + "_RCID": "32172", + "_name": "PRCARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA5" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(RFNERY11);LS(DASH,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "137", + "_RCID": "32173", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA8" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TNKFRM11);LS(DASH,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "138", + "_RCID": "32174", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA9" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(WNDFRM61);LS(DASH,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "139", + "_RCID": "32175", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA1" + } + ], + "instruction": "SY(QUARRY01);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32270", + "_id": "140", + "_RCID": "32176", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA5" + } + ], + "instruction": "SY(RFNERY01);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32270", + "_id": "141", + "_RCID": "32177", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA6" + } + ], + "instruction": "SY(TMBYRD01);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32270", + "_id": "142", + "_RCID": "32178", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA8" + } + ], + "instruction": "SY(TNKFRM01);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32270", + "_id": "143", + "_RCID": "32179", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA9" + } + ], + "instruction": "SY(WNDFRM51);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32270", + "_id": "144", + "_RCID": "32180", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32270", + "_id": "145", + "_RCID": "32181", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "146", + "_RCID": "32182", + "_name": "PYLONS" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,1,TRFCF)", + "display-cat": "Standard", + "comment": "25040", + "_id": "147", + "_RCID": "32183", + "_name": "RADRNG" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHGRD)", + "display-cat": "Other", + "comment": "32050", + "_id": "148", + "_RCID": "32184", + "_name": "RAPIDS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + } + ], + "instruction": "SY(RCTLPT52,ORIENT)", + "display-cat": "Standard", + "comment": "15020", + "_id": "149", + "_RCID": "32185", + "_name": "RCTLPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(RTLDEF51)", + "display-cat": "Standard", + "comment": "15020", + "_id": "150", + "_RCID": "32186", + "_name": "RCTLPT" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CATTRK1" + }, + { + "_index": "2", + "__text": "TRAFIC1" + } + ], + "instruction": "SY(RECTRC58,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "25020", + "_id": "151", + "_RCID": "32187", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CATTRK1" + }, + { + "_index": "2", + "__text": "TRAFIC2" + } + ], + "instruction": "SY(RECTRC58,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "25020", + "_id": "152", + "_RCID": "32188", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CATTRK1" + }, + { + "_index": "2", + "__text": "TRAFIC3" + } + ], + "instruction": "SY(RECTRC58,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "25020", + "_id": "153", + "_RCID": "32189", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CATTRK1" + }, + { + "_index": "2", + "__text": "TRAFIC4" + } + ], + "instruction": "SY(RECTRC56,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "25020", + "_id": "154", + "_RCID": "32190", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CATTRK2" + }, + { + "_index": "2", + "__text": "TRAFIC1" + } + ], + "instruction": "SY(RECTRC57,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "25020", + "_id": "155", + "_RCID": "32191", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CATTRK2" + }, + { + "_index": "2", + "__text": "TRAFIC2" + } + ], + "instruction": "SY(RECTRC57,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "25020", + "_id": "156", + "_RCID": "32192", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CATTRK2" + }, + { + "_index": "2", + "__text": "TRAFIC3" + } + ], + "instruction": "SY(RECTRC57,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "25020", + "_id": "157", + "_RCID": "32193", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CATTRK2" + }, + { + "_index": "2", + "__text": "TRAFIC4" + } + ], + "instruction": "SY(RECTRC55,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "25020", + "_id": "158", + "_RCID": "32194", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC1" + } + ], + "instruction": "SY(RECTRC57,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "25020", + "_id": "159", + "_RCID": "32195", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC2" + } + ], + "instruction": "SY(RECTRC57,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "25020", + "_id": "160", + "_RCID": "32196", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC3" + } + ], + "instruction": "SY(RECTRC57,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "25020", + "_id": "161", + "_RCID": "32197", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC4" + } + ], + "instruction": "SY(RECTRC55,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "25020", + "_id": "162", + "_RCID": "32198", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(RECDEF51);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "25020", + "_id": "163", + "_RCID": "32199", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATREA27" + } + ], + "instruction": "SY(ESSARE01);LC(ESSARE01)", + "display-cat": "Standard", + "comment": "26010", + "_id": "164", + "_RCID": "32200", + "_name": "RESARE" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATREA28" + } + ], + "instruction": "SY(PSSARE01);LC(ESSARE01)", + "display-cat": "Standard", + "comment": "26010", + "_id": "165", + "_RCID": "32201", + "_name": "RESARE" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATREA4" + } + ], + "instruction": "TX(OBJNAM,3,1,2,'15110',1,0,CHMGD,29);CS(RESARE02)", + "display-cat": "Standard", + "comment": "26010", + "_id": "166", + "_RCID": "93668", + "_name": "RESARE" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "CS(RESARE02)", + "display-cat": "Standard", + "comment": "26010", + "_id": "167", + "_RCID": "32202", + "_name": "RESARE" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(DEPVS);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32050", + "_id": "168", + "_RCID": "32203", + "_name": "RIVERS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(LANDA);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32250", + "_id": "169", + "_RCID": "32204", + "_name": "ROADWY" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "170", + "_RCID": "32205", + "_name": "RUNWAY" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN)", + "display-cat": "Other", + "comment": "32240", + "_id": "171", + "_RCID": "32206", + "_name": "RUNWAY" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV4" + }, + { + "_index": "1", + "__text": "NATSUR11" + } + ], + "instruction": "AP(RCKLDG01);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34010", + "_id": "172", + "_RCID": "32207", + "_name": "SBDARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV4" + }, + { + "_index": "1", + "__text": "NATSUR14" + } + ], + "instruction": "AP(RCKLDG01);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34010", + "_id": "173", + "_RCID": "32208", + "_name": "SBDARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV4" + }, + { + "_index": "1", + "__text": "NATSUR9" + } + ], + "instruction": "AP(RCKLDG01);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34010", + "_id": "174", + "_RCID": "32209", + "_name": "SBDARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV3" + }, + { + "_index": "1", + "__text": "NATSUR" + } + ], + "instruction": "TX(NATSUR,1,2,2,'15110',0,0,CHBLK,25);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34010", + "_id": "175", + "_RCID": "32210", + "_name": "SBDARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV4" + }, + { + "_index": "1", + "__text": "NATSUR" + } + ], + "instruction": "TX(NATSUR,1,2,2,'15110',0,0,CHBLK,25);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34010", + "_id": "176", + "_RCID": "32211", + "_name": "SBDARE" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "177", + "_RCID": "32212", + "_name": "SBDARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "TX(OBJNAM,1,2,3,'15110',0,0,CHBLK,26)", + "display-cat": "Standard", + "comment": "21060", + "_id": "178", + "_RCID": "32213", + "_name": "SEAARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "179", + "_RCID": "32214", + "_name": "SILTNK" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32220", + "_id": "180", + "_RCID": "32215", + "_name": "SILTNK" + }, + { + "type": "Area", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Plain", + "instruction": "CS(SLCONS03)", + "display-cat": "Standard", + "comment": "12410", + "_id": "181", + "_RCID": "32216", + "_name": "SLCONS" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO1" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "AC(CHGRD);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32010", + "_id": "182", + "_RCID": "32217", + "_name": "SLOGRD" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO2" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "AC(CHGRD);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32010", + "_id": "183", + "_RCID": "32218", + "_name": "SLOGRD" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO3" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "AC(CHGRD);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32010", + "_id": "184", + "_RCID": "32219", + "_name": "SLOGRD" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO4" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "AC(CHGRD);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32010", + "_id": "185", + "_RCID": "32220", + "_name": "SLOGRD" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO5" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "AC(CHGRD);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32010", + "_id": "186", + "_RCID": "32221", + "_name": "SLOGRD" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO7" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "AC(CHGRD);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32010", + "_id": "187", + "_RCID": "32222", + "_name": "SLOGRD" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO6" + } + ], + "instruction": "AC(CHGRD)", + "display-cat": "Other", + "comment": "32010", + "_id": "188", + "_RCID": "32223", + "_name": "SLOGRD" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "189", + "_RCID": "32224", + "_name": "SLOGRD" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);SY(SMCFAC02);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "38210", + "_id": "190", + "_RCID": "32225", + "_name": "SMCFAC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AP(SNDWAV01);LS(DASH,2,CHGRD)", + "display-cat": "Standard", + "comment": "24010", + "_id": "191", + "_RCID": "32226", + "_name": "SNDWAV" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(CTYARE51);LS(DASH,1,CHMGD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26040", + "_id": "192", + "_RCID": "32227", + "_name": "SPLARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(CTYARE51);LS(DASH,1,CHMGD);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26040", + "_id": "193", + "_RCID": "32228", + "_name": "SUBTLN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(SWPARE51);TE('swept to %5.1lf','DRVAL1',1,2,2,'15110',0,1,CHBLK,27);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "23030", + "_id": "194", + "_RCID": "32229", + "_name": "SWPARE" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,2,CHGRF);CS(RESTRN01)", + "display-cat": "Other", + "comment": "36050", + "_id": "195", + "_RCID": "32230", + "_name": "TESARE" + }, + { + "type": "Area", + "disp-prio": "Routing", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "TX(OBJNAM,1,2,3,'15110',0,0,CHBLK,25)", + "display-cat": "Other", + "comment": "32070", + "_id": "196", + "_RCID": "32231", + "_name": "TIDEWY" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(TRFCF,3)", + "display-cat": "Standard", + "comment": "15010", + "_id": "197", + "_RCID": "32232", + "_name": "TSEZNE" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AP(TSSJCT02);SY(TSSCRS51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "198", + "_RCID": "32233", + "_name": "TSSCRS" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + } + ], + "instruction": "SY(TSSLPT51,ORIENT);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "25010", + "_id": "199", + "_RCID": "32234", + "_name": "TSSLPT" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + } + ], + "instruction": "SY(TSSLPT51,ORIENT);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "200", + "_RCID": "32235", + "_name": "TSSLPT" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(CTNARE51);TX(INFORM,1,1,2,'15110',0,-2,CHBLK,24);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "201", + "_RCID": "32236", + "_name": "TSSLPT" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(TSSRON51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "202", + "_RCID": "32237", + "_name": "TSSRON" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CAT_TS1" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(FLDSTR01,ORIENT);TE('%4.1lf kn','CURVEL',3,1,2,'15110',1,-1,CHBLK,31)", + "display-cat": "Other", + "comment": "33060", + "_id": "203", + "_RCID": "32238", + "_name": "TS_FEB" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CAT_TS2" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(EBBSTR01,ORIENT);TE('%4.1lf kn','CURVEL',3,1,2,'15110',1,-1,CHBLK,31)", + "display-cat": "Other", + "comment": "33060", + "_id": "204", + "_RCID": "32239", + "_name": "TS_FEB" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CAT_TS3" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(CURENT01,ORIENT);TE('%4.1lf kn','CURVEL',3,1,2,'15110',1,-1,CHBLK,31)", + "display-cat": "Other", + "comment": "33060", + "_id": "205", + "_RCID": "32240", + "_name": "TS_FEB" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(CURDEF01);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "33060", + "_id": "206", + "_RCID": "32241", + "_name": "TS_FEB" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(TIDSTR01);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "33060", + "_id": "207", + "_RCID": "32242", + "_name": "TS_PAD" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(TIDSTR01);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "33060", + "_id": "208", + "_RCID": "32243", + "_name": "TS_PNH" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(TIDSTR01);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "33060", + "_id": "209", + "_RCID": "32244", + "_name": "TS_PRH" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(TIDSTR01);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "33060", + "_id": "210", + "_RCID": "32245", + "_name": "TS_TIS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "BURDEP0" + } + ], + "instruction": "AC(DEPVS);LS(DASH,1,CHBLK)", + "display-cat": "Standard", + "comment": "24010", + "_id": "211", + "_RCID": "32246", + "_name": "TUNNEL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "32250", + "_id": "212", + "_RCID": "32247", + "_name": "TUNNEL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC1" + } + ], + "instruction": "SY(TWRTPT53,ORIENT);LS(DASH,2,TRFCD)", + "display-cat": "Standard", + "comment": "15010", + "_id": "213", + "_RCID": "32248", + "_name": "TWRTPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC2" + } + ], + "instruction": "SY(TWRTPT53,ORIENT);LS(DASH,2,TRFCD)", + "display-cat": "Standard", + "comment": "15010", + "_id": "214", + "_RCID": "32249", + "_name": "TWRTPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC3" + } + ], + "instruction": "SY(TWRTPT53,ORIENT);LS(DASH,2,TRFCD)", + "display-cat": "Standard", + "comment": "15010", + "_id": "215", + "_RCID": "32250", + "_name": "TWRTPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC4" + } + ], + "instruction": "SY(TWRTPT52,ORIENT);LS(DASH,2,TRFCD)", + "display-cat": "Standard", + "comment": "15010", + "_id": "216", + "_RCID": "32251", + "_name": "TWRTPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(TWRDEF51);LS(DASH,2,TRFCD)", + "display-cat": "Standard", + "comment": "15010", + "_id": "217", + "_RCID": "32252", + "_name": "TWRTPT" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(TIDEHT01);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "33050", + "_id": "218", + "_RCID": "32253", + "_name": "T_HMON" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(TIDEHT01);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "33050", + "_id": "219", + "_RCID": "32254", + "_name": "T_NHMN" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(TIDEHT01);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "33050", + "_id": "220", + "_RCID": "32255", + "_name": "T_TIMS" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(NODTA);AP(NODATA03);LS(SOLD,2,CHGRD)", + "display-cat": "Standard", + "comment": "11050", + "_id": "221", + "_RCID": "32256", + "_name": "UNSARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AP(CROSSX02);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "222", + "_RCID": "32257", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG14" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "223", + "_RCID": "32258", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG15" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "224", + "_RCID": "32259", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG16" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "225", + "_RCID": "32260", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG17" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "226", + "_RCID": "32261", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG18" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "227", + "_RCID": "32262", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG19" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "228", + "_RCID": "32263", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG20" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "229", + "_RCID": "32264", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG21" + } + ], + "instruction": "AP(VEGATN04);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "230", + "_RCID": "32265", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG22" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "231", + "_RCID": "32266", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG3" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "232", + "_RCID": "32267", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG4" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "233", + "_RCID": "32268", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG5" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "234", + "_RCID": "32269", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG6" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "235", + "_RCID": "32270", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG7" + } + ], + "instruction": "AP(VEGATN04);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "236", + "_RCID": "32271", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "237", + "_RCID": "32272", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(WATTUR02);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "33040", + "_id": "238", + "_RCID": "32273", + "_name": "WATTUR" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Plain", + "instruction": "SY(WEDKLP03);LS(DASH,1,CHGRF)", + "display-cat": "Other", + "comment": "34020", + "_id": "239", + "_RCID": "32274", + "_name": "WEDKLP" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATWRK3" + }, + { + "_index": "1", + "__text": "VALSOU" + } + ], + "instruction": "LS(DASH,1,CHBLK)", + "display-cat": "Other", + "comment": "34051", + "_id": "240", + "_RCID": "32275", + "_name": "WRECKS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATWRK3" + } + ], + "instruction": "LS(DASH,1,CHBLK)", + "display-cat": "Other", + "comment": "34050", + "_id": "241", + "_RCID": "32276", + "_name": "WRECKS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "CS(WRECKS02)", + "display-cat": "Other", + "comment": "34050", + "_id": "242", + "_RCID": "32277", + "_name": "WRECKS" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(ACHARE02);TX(OBJNAM,1,2,3,'14108',0,2,CHMGD,29);LS(DASH,2,CHMGF);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26220", + "_id": "243", + "_RCID": "32278", + "_name": "achare" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(ACHBRT07);TX(OBJNAM,3,1,2,'14106',1,0,CHMGD,29);LS(DASH,2,CHMGF)", + "display-cat": "Standard", + "comment": "26220", + "_id": "244", + "_RCID": "32279", + "_name": "achbrt" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(BRTHNO01);TX(OBJNAM,1,2,2,'15110',1,0,CHBLK,29);LS(DASH,2,CHMGD)", + "display-cat": "Standard", + "comment": "22440", + "_id": "245", + "_RCID": "32280", + "_name": "berths" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Plain", + "instruction": "TX(OBJNAM,3,1,2,'15110',1,0,CHBLK,21);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "246", + "_RCID": "32281", + "_name": "bridge" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "catbun1" + } + ], + "instruction": "SY(BUNSTA01);LS(SOLD,1,CHGRD)", + "display-cat": "Standard", + "comment": "22410", + "_id": "247", + "_RCID": "32282", + "_name": "bunsta" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "catbun2" + } + ], + "instruction": "SY(BUNSTA02);LS(SOLD,1,CHGRD)", + "display-cat": "Standard", + "comment": "22410", + "_id": "248", + "_RCID": "32283", + "_name": "bunsta" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "catbun3" + } + ], + "instruction": "SY(BUNSTA03);LS(SOLD,1,CHGRD)", + "display-cat": "Standard", + "comment": "22410", + "_id": "249", + "_RCID": "32284", + "_name": "bunsta" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "instruction": "SY(CHINFO07);LS(SOLD,1,CHGRD)", + "display-cat": "Standard", + "comment": "22410", + "_id": "250", + "_RCID": "32285", + "_name": "bunsta" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "251", + "_RCID": "32286", + "_name": "cranes" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32440", + "_id": "252", + "_RCID": "32287", + "_name": "cranes" + }, + { + "type": "Area", + "disp-prio": "Group 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "CS(DEPARE02)", + "display-cat": "Displaybase", + "comment": "13030", + "_id": "253", + "_RCID": "32288", + "_name": "depare" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(DNGHL,3);LS(SOLD,3,DNGHL)", + "display-cat": "Mariners", + "comment": "53010", + "_id": "254", + "_RCID": "32289", + "_name": "dnghlt" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(SOLD,2,CSTLN);CS(DEPARE02)", + "display-cat": "Displaybase", + "comment": "13030", + "_id": "255", + "_RCID": "32290", + "_name": "excnst" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFRY2" + } + ], + "instruction": "SY(FRYARE52);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "26040", + "_id": "256", + "_RCID": "32291", + "_name": "feryrt" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(FRYARE51);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "26040", + "_id": "257", + "_RCID": "32292", + "_name": "feryrt" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "258", + "_RCID": "32293", + "_name": "flodoc" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "259", + "_RCID": "32294", + "_name": "gatcon" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cathbr3" + } + ], + "instruction": "SY(SMCFAC02);TX(OBJNAM,1,2,3,'15106',0,0,CHBLK,28);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "36020", + "_id": "260", + "_RCID": "32295", + "_name": "hrbare" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "TX(OBJNAM,1,2,3,'15108',0,0,CHGRD,28);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "36020", + "_id": "261", + "_RCID": "32296", + "_name": "hrbare" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "TX(OBJNAM,1,2,3,'15108',0,0,CHGRD,28);LS(DASH,1,CHGRF)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "262", + "_RCID": "32297", + "_name": "hrbbsn" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf12" + } + ], + "instruction": "AC(CHBRN,3);SY(HRBFAC13)", + "display-cat": "Standard", + "comment": "22410", + "_id": "263", + "_RCID": "32298", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf13" + } + ], + "instruction": "AC(CHBRN,3);SY(HRBFAC14)", + "display-cat": "Standard", + "comment": "22410", + "_id": "264", + "_RCID": "32299", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf14" + } + ], + "instruction": "AC(CHBRN,3);SY(HRBFAC15)", + "display-cat": "Standard", + "comment": "22410", + "_id": "265", + "_RCID": "32300", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf15" + } + ], + "instruction": "AC(CHBRN,3);SY(HRBFAC16)", + "display-cat": "Standard", + "comment": "22410", + "_id": "266", + "_RCID": "32301", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf16" + } + ], + "instruction": "AC(CHBRN,3);SY(HRBFAC17)", + "display-cat": "Standard", + "comment": "22410", + "_id": "267", + "_RCID": "32302", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf17" + } + ], + "instruction": "AC(CHBRN,3);SY(HRBFAC18)", + "display-cat": "Standard", + "comment": "22410", + "_id": "268", + "_RCID": "32303", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf5" + } + ], + "instruction": "SY(SMCFAC02);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "36020", + "_id": "269", + "_RCID": "32304", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf6" + } + ], + "instruction": "AC(CHBRN,3);SY(HRBFAC11)", + "display-cat": "Standard", + "comment": "22410", + "_id": "270", + "_RCID": "32305", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf9" + } + ], + "instruction": "AC(CHBRN,3);SY(HRBFAC12)", + "display-cat": "Standard", + "comment": "22410", + "_id": "271", + "_RCID": "32306", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "instruction": "AC(CHBRN,3);SY(HRBFAC10)", + "display-cat": "Standard", + "comment": "22410", + "_id": "272", + "_RCID": "32307", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "273", + "_RCID": "32308", + "_name": "hulkes" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "274", + "_RCID": "32309", + "_name": "lkbspt" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "275", + "_RCID": "32310", + "_name": "lokbsn" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(ADINF,3);TX(OBJNAM,1,2,3,'15110',0,0,CHBLK,50);LS(SOLD,2,NINFO);LS(SOLD,1,CHBLK);", + "display-cat": "Mariners", + "comment": "53050", + "_id": "276", + "_RCID": "32311", + "_name": "marfea" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "LS(DASH,2,ADINF)", + "display-cat": "Mariners", + "comment": "55010", + "_id": "277", + "_RCID": "32312", + "_name": "mnufea" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "278", + "_RCID": "32313", + "_name": "ponton" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "CS(RESARE02)", + "display-cat": "Standard", + "comment": "26010", + "_id": "279", + "_RCID": "32314", + "_name": "resare" + }, + { + "type": "Area", + "disp-prio": "Routing", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "CS(SLCONS03)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "280", + "_RCID": "32315", + "_name": "slcons" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd10" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL12)", + "display-cat": "Standard", + "comment": "22420", + "_id": "281", + "_RCID": "32316", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd1" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL03)", + "display-cat": "Standard", + "comment": "22420", + "_id": "282", + "_RCID": "32317", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd2" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL04)", + "display-cat": "Standard", + "comment": "22420", + "_id": "283", + "_RCID": "32318", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd3" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL05)", + "display-cat": "Standard", + "comment": "22420", + "_id": "284", + "_RCID": "32319", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd4" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL06)", + "display-cat": "Standard", + "comment": "22420", + "_id": "285", + "_RCID": "32320", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd5" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL07)", + "display-cat": "Standard", + "comment": "22420", + "_id": "286", + "_RCID": "32321", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd6" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL08)", + "display-cat": "Standard", + "comment": "22420", + "_id": "287", + "_RCID": "32322", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd7" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL09)", + "display-cat": "Standard", + "comment": "22420", + "_id": "288", + "_RCID": "32323", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd8" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL10)", + "display-cat": "Standard", + "comment": "22420", + "_id": "289", + "_RCID": "32324", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd9" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL11)", + "display-cat": "Standard", + "comment": "22420", + "_id": "290", + "_RCID": "32325", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf10" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL03)", + "display-cat": "Standard", + "comment": "22420", + "_id": "291", + "_RCID": "32326", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf11" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL04)", + "display-cat": "Standard", + "comment": "22420", + "_id": "292", + "_RCID": "32327", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf1" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL13)", + "display-cat": "Standard", + "comment": "22420", + "_id": "293", + "_RCID": "32328", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf3" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL02)", + "display-cat": "Standard", + "comment": "22420", + "_id": "294", + "_RCID": "32329", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf7" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL02)", + "display-cat": "Standard", + "comment": "22420", + "_id": "295", + "_RCID": "32330", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf8" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL01)", + "display-cat": "Standard", + "comment": "22420", + "_id": "296", + "_RCID": "32331", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml1" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL01)", + "display-cat": "Standard", + "comment": "22420", + "_id": "297", + "_RCID": "32332", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml2" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL02)", + "display-cat": "Standard", + "comment": "22420", + "_id": "298", + "_RCID": "32333", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL12)", + "display-cat": "Standard", + "comment": "22420", + "_id": "299", + "_RCID": "32334", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd1" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL03)", + "display-cat": "Standard", + "comment": "22420", + "_id": "300", + "_RCID": "32335", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd2" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL04)", + "display-cat": "Standard", + "comment": "22420", + "_id": "301", + "_RCID": "32336", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd3" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL05)", + "display-cat": "Standard", + "comment": "22420", + "_id": "302", + "_RCID": "32337", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd4" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL06)", + "display-cat": "Standard", + "comment": "22420", + "_id": "303", + "_RCID": "32338", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd5" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL07)", + "display-cat": "Standard", + "comment": "22420", + "_id": "304", + "_RCID": "32339", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd6" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL08)", + "display-cat": "Standard", + "comment": "22420", + "_id": "305", + "_RCID": "32340", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd7" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL09)", + "display-cat": "Standard", + "comment": "22420", + "_id": "306", + "_RCID": "32341", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd8" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL10)", + "display-cat": "Standard", + "comment": "22420", + "_id": "307", + "_RCID": "32342", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd9" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL11)", + "display-cat": "Standard", + "comment": "22420", + "_id": "308", + "_RCID": "32343", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "instruction": "AC(CHGRF,3);SY(TERMNL12)", + "display-cat": "Standard", + "comment": "22420", + "_id": "309", + "_RCID": "32344", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Plain", + "instruction": "SY(TRNBSN01);LS(DASH,2,CHMGD)", + "display-cat": "Standard", + "comment": "26020", + "_id": "310", + "_RCID": "32345", + "_name": "trnbsn" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "instruction": "SY(VEHTRF01);LS(DASH,1,CHGRF)", + "display-cat": "Standard", + "comment": "22410", + "_id": "311", + "_RCID": "32346", + "_name": "vehtrf" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBACKGROUND" + } + ], + "instruction": "AC(NODTA);LS(SOLD,2,CHGRD)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "312", + "_RCID": "32347", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHCRDEL1" + } + ], + "instruction": "SY(CHCRDEL1);LC(CHCRDEL1)", + "display-cat": "Standard", + "comment": "26220", + "_id": "313", + "_RCID": "32348", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHCRID01" + } + ], + "instruction": "SY(CHCRID01);LC(CHCRID01)", + "display-cat": "Standard", + "comment": "23030", + "_id": "314", + "_RCID": "32349", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDIAMOND1" + } + ], + "instruction": "AP(DIAMOND1)", + "display-cat": "Standard", + "comment": "23010", + "_id": "315", + "_RCID": "32350", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOVERSC01" + } + ], + "instruction": "AP(OVERSC01)", + "display-cat": "Standard", + "comment": "21030", + "_id": "316", + "_RCID": "32351", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEQUESMRK1" + } + ], + "instruction": "AP(QUESMRK1);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "21010", + "_id": "317", + "_RCID": "32352", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX10" + } + ], + "instruction": "AC(DEPDW);LS(SOLD,1,CHGRD);TX('10',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "318", + "_RCID": "32353", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX11" + } + ], + "instruction": "AC(DEPVS);LS(SOLD,1,CHGRD);TX('11',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "319", + "_RCID": "32354", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX12" + } + ], + "instruction": "AC(NODTA);LS(SOLD,1,CHGRD);TX('12',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "320", + "_RCID": "32355", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX13" + } + ], + "instruction": "AC(DEPDW);LS(SOLD,1,CHGRD);TX('13',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "321", + "_RCID": "32356", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX14" + } + ], + "instruction": "AC(LANDA);LS(SOLD,1,CHGRD);TX('14',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "322", + "_RCID": "32357", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX15" + } + ], + "instruction": "AC(DEPVS);LS(SOLD,1,CHGRD);TX('15',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "323", + "_RCID": "32358", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX16" + } + ], + "instruction": "AC(NODTA);LS(SOLD,1,CHGRD);TX('16',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "324", + "_RCID": "32359", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX17" + } + ], + "instruction": "AC(LANDA);LS(SOLD,1,CHGRD);TX('17',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "325", + "_RCID": "32360", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX18" + } + ], + "instruction": "AC(DEPVS);LS(SOLD,1,CHGRD);TX('18',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "326", + "_RCID": "32361", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX19" + } + ], + "instruction": "AC(DEPDW);LS(SOLD,1,CHGRD);TX('19',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "327", + "_RCID": "32362", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX20" + } + ], + "instruction": "AC(DEPVS);LS(SOLD,1,CHGRD);TX('20',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "328", + "_RCID": "32363", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX1" + } + ], + "instruction": "AC(DEPDW);LS(SOLD,1,CHGRD);TX('1',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "329", + "_RCID": "32364", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX2" + } + ], + "instruction": "AC(NODTA);LS(SOLD,1,CHGRD);TX('2',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "330", + "_RCID": "32365", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX3" + } + ], + "instruction": "AC(DEPVS);LS(SOLD,1,CHGRD);TX('3',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "331", + "_RCID": "32366", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX4" + } + ], + "instruction": "AC(NODTA);LS(SOLD,1,CHGRD);TX('4',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "332", + "_RCID": "32367", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX5" + } + ], + "instruction": "AC(DEPVS);LS(SOLD,1,CHGRD);TX('5',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "333", + "_RCID": "32368", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX6" + } + ], + "instruction": "AC(LANDA);LS(SOLD,1,CHGRD);TX('6',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "334", + "_RCID": "32369", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX7" + } + ], + "instruction": "AC(DEPDW);LS(SOLD,1,CHGRD);TX('7',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "335", + "_RCID": "32370", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX8" + } + ], + "instruction": "AC(DEPDW);LS(SOLD,1,CHGRD);TX('8',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "336", + "_RCID": "32371", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Plain", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX9" + } + ], + "instruction": "AC(NODTA);LS(SOLD,1,CHGRD);TX('9',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "337", + "_RCID": "32372", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AP(QUESMRK1)", + "display-cat": "Standard", + "comment": "21010", + "_id": "338", + "_RCID": "32373", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Plain", + "instruction": "TX($TXSTR,$JUSTH=3,$JUSTV=1,$SPACE=2,'15110',0,0,CHBLK,27)", + "display-cat": "Standard", + "comment": "10000", + "_id": "339", + "_RCID": "32374", + "_name": "$TEXTS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AP(QUESMRK1);LS(DASH,1,CHMGD)", + "display-cat": "Standard", + "comment": "21010", + "_id": "340", + "_RCID": "32375", + "_name": "######" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATACH8" + } + ], + "instruction": "SY(ACHARE02);LS(DASH,2,CHMGF);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26220", + "_id": "341", + "_RCID": "32376", + "_name": "ACHARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(ACHARE51);CS(RESARE02)", + "display-cat": "Standard", + "comment": "26220", + "_id": "342", + "_RCID": "32377", + "_name": "ACHARE" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(ACHBRT07);TE('%s','OBJNAM',3,1,2,'15110',1,0,CHBLK,29);LS(DASH,2,CHMGF)", + "display-cat": "Standard", + "comment": "26220", + "_id": "343", + "_RCID": "32378", + "_name": "ACHBRT" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Other", + "comment": "36050", + "_id": "344", + "_RCID": "32379", + "_name": "ADMARE" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "AC(LANDA);AP(AIRARE02);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "345", + "_RCID": "32380", + "_name": "AIRARE" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AP(AIRARE02);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32240", + "_id": "346", + "_RCID": "32381", + "_name": "AIRARE" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LC(ARCSLN01)", + "display-cat": "Standard", + "comment": "26260", + "_id": "347", + "_RCID": "32382", + "_name": "ARCSLN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(BRTHNO01);TX(OBJNAM,1,2,2,'15110',1,0,CHBLK,29);LS(DASH,2,CHMGD)", + "display-cat": "Other", + "comment": "32440", + "_id": "348", + "_RCID": "32383", + "_name": "BERTHS" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG2" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "349", + "_RCID": "32384", + "_name": "BRIDGE" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG3" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "350", + "_RCID": "32385", + "_name": "BRIDGE" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG4" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "351", + "_RCID": "32386", + "_name": "BRIDGE" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG5" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "352", + "_RCID": "32387", + "_name": "BRIDGE" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG7" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "353", + "_RCID": "32388", + "_name": "BRIDGE" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG8" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "354", + "_RCID": "32389", + "_name": "BRIDGE" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "instruction": "TX(OBJNAM,3,1,2,'15110',1,0,CHBLK,21);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "355", + "_RCID": "32390", + "_name": "BRIDGE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);TX(OBJNAM,1,2,3,'16120',0,0,CHBLK,26);LS(SOLD,1,LANDF)", + "display-cat": "Standard", + "comment": "22240", + "_id": "356", + "_RCID": "32391", + "_name": "BUAARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN33" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);TX(OBJNAM,1,2,2,'15110',0,0,CHBLK,26);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "357", + "_RCID": "32392", + "_name": "BUISGL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN33" + } + ], + "instruction": "AC(CHBRN);TX(OBJNAM,1,2,2,'15110',0,0,CHBLK,26);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32220", + "_id": "358", + "_RCID": "32393", + "_name": "BUISGL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "359", + "_RCID": "32394", + "_name": "BUISGL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32220", + "_id": "360", + "_RCID": "32395", + "_name": "BUISGL" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CONDTN" + } + ], + "instruction": "AC(DEPVS);LS(DASH,1,CHBLK)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "361", + "_RCID": "32396", + "_name": "CANALS" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(DEPVS);LS(SOLD,1,CHBLK)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "362", + "_RCID": "32397", + "_name": "CANALS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV4" + } + ], + "instruction": "AC(DEPIT);LS(DASH,2,CSTLN)", + "display-cat": "Standard", + "comment": "22010", + "_id": "363", + "_RCID": "32398", + "_name": "CAUSWY" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,1,CSTLN)", + "display-cat": "Standard", + "comment": "22010", + "_id": "364", + "_RCID": "32399", + "_name": "CAUSWY" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(CBLARE51);LC(CBLARE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26230", + "_id": "365", + "_RCID": "32400", + "_name": "CBLARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(POSGEN04)", + "display-cat": "Other", + "comment": "32410", + "_id": "366", + "_RCID": "32401", + "_name": "CHKPNT" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD1" + } + ], + "instruction": "SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11);LS(SOLD,3,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "367", + "_RCID": "32402", + "_name": "CONVYR" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD3" + } + ], + "instruction": "SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11);LS(SOLD,3,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "368", + "_RCID": "32403", + "_name": "CONVYR" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "instruction": "TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11);LS(SOLD,3,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "369", + "_RCID": "32404", + "_name": "CONVYR" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Other", + "comment": "36050", + "_id": "370", + "_RCID": "32405", + "_name": "CONZNE" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Other", + "comment": "36010", + "_id": "371", + "_RCID": "32406", + "_name": "COSARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "372", + "_RCID": "32407", + "_name": "CRANES" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32440", + "_id": "373", + "_RCID": "32408", + "_name": "CRANES" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(CTNARE51);LC(CTNARE51)", + "display-cat": "Standard", + "comment": "26050", + "_id": "374", + "_RCID": "32409", + "_name": "CTNARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(INFARE51);LC(CTYARE51)", + "display-cat": "Standard", + "comment": "26250", + "_id": "375", + "_RCID": "32410", + "_name": "CTSARE" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(DASH,1,CHGRF)", + "display-cat": "Other", + "comment": "36020", + "_id": "376", + "_RCID": "32411", + "_name": "CUSZNE" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDAM3" + } + ], + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "377", + "_RCID": "32412", + "_name": "DAMCON" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,1,LANDF)", + "display-cat": "Standard", + "comment": "22010", + "_id": "378", + "_RCID": "32413", + "_name": "DAMCON" + }, + { + "type": "Area", + "disp-prio": "Group 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "DRVAL1?" + }, + { + "_index": "1", + "__text": "DRVAL2?" + } + ], + "instruction": "AC(NODTA);AP(PRTSUR01);LS(SOLD,2,CHGRD)", + "display-cat": "Displaybase", + "comment": "13030", + "_id": "379", + "_RCID": "32414", + "_name": "DEPARE" + }, + { + "type": "Area", + "disp-prio": "Group 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "CS(DEPARE01)", + "display-cat": "Displaybase", + "comment": "13030", + "_id": "380", + "_RCID": "32415", + "_name": "DEPARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDPG5" + } + ], + "instruction": "LC(NAVARE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26240", + "_id": "381", + "_RCID": "32416", + "_name": "DMPGRD" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(INFARE51);LC(CTYARE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26240", + "_id": "382", + "_RCID": "32417", + "_name": "DMPGRD" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CONDTN" + } + ], + "instruction": "AC(DEPVS);TX(OBJNAM,1,2,3,'15110',0,0,CHBLK,26);LS(DASH,1,CHBLK)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "383", + "_RCID": "32418", + "_name": "DOCARE" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(DEPVS);TX(OBJNAM,1,2,3,'15110',0,0,CHBLK,26);LS(SOLD,1,CHBLK)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "384", + "_RCID": "32419", + "_name": "DOCARE" + }, + { + "type": "Area", + "disp-prio": "Group 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "CS(DEPARE01)", + "display-cat": "Standard", + "comment": "13030", + "_id": "385", + "_RCID": "32420", + "_name": "DRGARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(LANDA);LS(SOLD,1,CSTLN)", + "display-cat": "Other", + "comment": "32440", + "_id": "386", + "_RCID": "32421", + "_name": "DRYDOC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC1" + } + ], + "instruction": "SY(TSSLPT51,ORIENT);SY(DWRTPT51);LC(DWRUTE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "387", + "_RCID": "32422", + "_name": "DWRTPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC2" + } + ], + "instruction": "SY(TSSLPT51,ORIENT);SY(DWRTPT51);LC(DWRUTE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "388", + "_RCID": "32423", + "_name": "DWRTPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC3" + } + ], + "instruction": "SY(TSSLPT51,ORIENT);SY(DWRTPT51);LC(DWRUTE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "389", + "_RCID": "32424", + "_name": "DWRTPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC4" + } + ], + "instruction": "SY(DWRUTE51,ORIENT);SY(DWRTPT51);LC(DWRUTE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "390", + "_RCID": "32425", + "_name": "DWRTPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(TWRTPT52);SY(DWRTPT51);LC(DWRUTE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "391", + "_RCID": "32426", + "_name": "DWRTPT" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,1,LANDF)", + "display-cat": "Standard", + "comment": "22010", + "_id": "392", + "_RCID": "32427", + "_name": "DYKCON" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Other", + "comment": "36050", + "_id": "393", + "_RCID": "32428", + "_name": "EXEZNE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC1" + } + ], + "instruction": "SY(FAIRWY51,ORIENT);LC(NAVARE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26050", + "_id": "394", + "_RCID": "32429", + "_name": "FAIRWY" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC2" + } + ], + "instruction": "SY(FAIRWY51,ORIENT);LC(NAVARE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26050", + "_id": "395", + "_RCID": "32430", + "_name": "FAIRWY" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC3" + } + ], + "instruction": "SY(FAIRWY51,ORIENT);LC(NAVARE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26050", + "_id": "396", + "_RCID": "32431", + "_name": "FAIRWY" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC4" + } + ], + "instruction": "SY(FAIRWY52,ORIENT);LC(NAVARE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26050", + "_id": "397", + "_RCID": "32432", + "_name": "FAIRWY" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LC(NAVARE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26050", + "_id": "398", + "_RCID": "32433", + "_name": "FAIRWY" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFRY2" + } + ], + "instruction": "SY(FRYARE52);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "26040", + "_id": "399", + "_RCID": "32434", + "_name": "FERYRT" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(FRYARE51);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "26040", + "_id": "400", + "_RCID": "32435", + "_name": "FERYRT" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "401", + "_RCID": "32436", + "_name": "FLODOC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "402", + "_RCID": "32437", + "_name": "FORSTC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32220", + "_id": "403", + "_RCID": "32438", + "_name": "FORSTC" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Other", + "comment": "36020", + "_id": "404", + "_RCID": "32439", + "_name": "FRPARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF1" + } + ], + "instruction": "SY(FSHFAC03);LC(NAVARE51)", + "display-cat": "Other", + "comment": "34040", + "_id": "405", + "_RCID": "32440", + "_name": "FSHFAC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF2" + } + ], + "instruction": "SY(FSHFAC02);LC(NAVARE51)", + "display-cat": "Other", + "comment": "34040", + "_id": "406", + "_RCID": "32441", + "_name": "FSHFAC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF3" + } + ], + "instruction": "SY(FSHFAC02);LC(NAVARE51)", + "display-cat": "Other", + "comment": "34040", + "_id": "407", + "_RCID": "32442", + "_name": "FSHFAC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF4" + } + ], + "instruction": "SY(FSHFAC02);LC(NAVARE51)", + "display-cat": "Other", + "comment": "34040", + "_id": "408", + "_RCID": "32443", + "_name": "FSHFAC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(FSHFAC02);LC(NAVARE51)", + "display-cat": "Other", + "comment": "34040", + "_id": "409", + "_RCID": "32444", + "_name": "FSHFAC" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(FSHGRD01);LS(DASH,2,CHGRF)", + "display-cat": "Standard", + "comment": "26210", + "_id": "410", + "_RCID": "32445", + "_name": "FSHGRD" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Other", + "comment": "36040", + "_id": "411", + "_RCID": "32446", + "_name": "FSHZNE" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "412", + "_RCID": "32447", + "_name": "GATCON" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "32460", + "_id": "413", + "_RCID": "32448", + "_name": "GRIDRN" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LC(NAVARE51)", + "display-cat": "Other", + "comment": "36020", + "_id": "414", + "_RCID": "32449", + "_name": "HRBARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATHAF1" + } + ], + "instruction": "SY(ROLROL01)", + "display-cat": "Other", + "comment": "32410", + "_id": "415", + "_RCID": "32450", + "_name": "HRBFAC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATHAF4" + } + ], + "instruction": "SY(HRBFAC09)", + "display-cat": "Other", + "comment": "32410", + "_id": "416", + "_RCID": "32451", + "_name": "HRBFAC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATHAF5" + } + ], + "instruction": "SY(SMCFAC02)", + "display-cat": "Other", + "comment": "32410", + "_id": "417", + "_RCID": "32452", + "_name": "HRBFAC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(CHINFO07)", + "display-cat": "Other", + "comment": "32410", + "_id": "418", + "_RCID": "32453", + "_name": "HRBFAC" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "419", + "_RCID": "32454", + "_name": "HULKES" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(NODTA);AP(ICEARE04);LS(DASH,1,CHGRD)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "420", + "_RCID": "32455", + "_name": "ICEARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(INFARE51);LC(CTYARE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26250", + "_id": "421", + "_RCID": "32456", + "_name": "ICNARE" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(ITZARE51);LC(RESARE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "422", + "_RCID": "32457", + "_name": "ISTZNE" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(DEPVS);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32050", + "_id": "423", + "_RCID": "32458", + "_name": "LAKARE" + }, + { + "type": "Area", + "disp-prio": "Group 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(LANDA);TX(OBJNAM,1,2,3,'15118',-1,-1,CHBLK,26)", + "display-cat": "Displaybase", + "comment": "12010", + "_id": "424", + "_RCID": "32459", + "_name": "LNDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN33" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);TX(OBJNAM,1,2,2,'15110',0,0,CHBLK,26);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "425", + "_RCID": "32460", + "_name": "LNDMRK" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN33" + } + ], + "instruction": "AC(CHBRN);TX(OBJNAM,1,2,2,'15110',0,0,CHBLK,26);LS(SOLD,1,LANDF)", + "display-cat": "Standard", + "comment": "32220", + "_id": "426", + "_RCID": "32461", + "_name": "LNDMRK" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "427", + "_RCID": "32462", + "_name": "LNDMRK" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,1,LANDF)", + "display-cat": "Standard", + "comment": "32220", + "_id": "428", + "_RCID": "32463", + "_name": "LNDMRK" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLND12" + } + ], + "instruction": "AP(MARSHES1)", + "display-cat": "Standard", + "comment": "21060", + "_id": "429", + "_RCID": "32464", + "_name": "LNDRGN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLND2" + } + ], + "instruction": "AP(MARSHES1)", + "display-cat": "Standard", + "comment": "21060", + "_id": "430", + "_RCID": "32465", + "_name": "LNDRGN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "TX(OBJNAM,1,2,3,'15120',0,0,CHBLK,26)", + "display-cat": "Standard", + "comment": "21060", + "_id": "431", + "_RCID": "32466", + "_name": "LNDRGN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(LOCMAG51);LC(NAVARE51)", + "display-cat": "Other", + "comment": "31080", + "_id": "432", + "_RCID": "32467", + "_name": "LOCMAG" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(DASH,1,CHBLK)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "433", + "_RCID": "32468", + "_name": "LOGPON" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(DEPVS);LS(SOLD,1,CHBLK)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "434", + "_RCID": "32469", + "_name": "LOKBSN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(MAGVAR51)", + "display-cat": "Other", + "comment": "31080", + "_id": "435", + "_RCID": "32470", + "_name": "MAGVAR" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AP(MARCUL02);LC(NAVARE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26210", + "_id": "436", + "_RCID": "32471", + "_name": "MARCUL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(CTYARE51);LC(CTYARE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26040", + "_id": "437", + "_RCID": "32472", + "_name": "MIPARE" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,1,CHBLK)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "438", + "_RCID": "32473", + "_name": "MORFAC" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "439", + "_RCID": "32474", + "_name": "M_ACCY" + }, + { + "type": "Area", + "disp-prio": "Group 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "CS(DATCVR01)", + "display-cat": "Other", + "comment": "31040", + "_id": "440", + "_RCID": "32475", + "_name": "M_COVR" + }, + { + "type": "Area", + "disp-prio": "Group 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "CS(DATCVR01)", + "display-cat": "Other", + "comment": "31040", + "_id": "441", + "_RCID": "32476", + "_name": "M_CSCL" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "442", + "_RCID": "32477", + "_name": "M_HOPA" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "443", + "_RCID": "32478", + "_name": "M_NPUB" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "MARSYS1" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(DIRBOYA1,ORIENT);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "27040", + "_id": "444", + "_RCID": "32479", + "_name": "M_NSYS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "MARSYS2" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(DIRBOYB1,ORIENT);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "27040", + "_id": "445", + "_RCID": "32480", + "_name": "M_NSYS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + } + ], + "instruction": "SY(DIRBOY01,ORIENT);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "27040", + "_id": "446", + "_RCID": "32481", + "_name": "M_NSYS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LC(MARSYS51)", + "display-cat": "Standard", + "comment": "27040", + "_id": "447", + "_RCID": "32482", + "_name": "M_NSYS" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "448", + "_RCID": "32483", + "_name": "M_PROD" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATZOC1" + } + ], + "instruction": "AP(DQUALA11);LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "31010", + "_id": "449", + "_RCID": "32484", + "_name": "M_QUAL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATZOC2" + } + ], + "instruction": "AP(DQUALA21);LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "31010", + "_id": "450", + "_RCID": "32485", + "_name": "M_QUAL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATZOC3" + } + ], + "instruction": "AP(DQUALB01);LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "31010", + "_id": "451", + "_RCID": "32486", + "_name": "M_QUAL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATZOC4" + } + ], + "instruction": "AP(DQUALC01);LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "31010", + "_id": "452", + "_RCID": "32487", + "_name": "M_QUAL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATZOC5" + } + ], + "instruction": "AP(DQUALD01);LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "31010", + "_id": "453", + "_RCID": "32488", + "_name": "M_QUAL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATZOC6" + } + ], + "instruction": "AP(DQUALU01);LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "31010", + "_id": "454", + "_RCID": "32489", + "_name": "M_QUAL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AP(NODATA03);LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "31010", + "_id": "455", + "_RCID": "32490", + "_name": "M_QUAL" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "456", + "_RCID": "32491", + "_name": "M_SDAT" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "457", + "_RCID": "32492", + "_name": "M_SREL" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "458", + "_RCID": "32493", + "_name": "M_VDAT" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "459", + "_RCID": "32494", + "_name": "NATARE" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "SYMINS" + } + ], + "instruction": "CS(SYMINS01)", + "display-cat": "Standard", + "comment": "21020", + "_id": "460", + "_RCID": "32495", + "_name": "NEWOBJ" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(NEWOBJ01);LS(DASH,2,CHMGD)", + "display-cat": "Standard", + "comment": "21020", + "_id": "461", + "_RCID": "32496", + "_name": "NEWOBJ" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS7" + }, + { + "_index": "1", + "__text": "VALSOU" + } + ], + "instruction": "SY(FOULGND1);LC(NAVARE51)", + "display-cat": "Other", + "comment": "34051", + "_id": "462", + "_RCID": "32497", + "_name": "OBSTRN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS10" + } + ], + "instruction": "SY(FLTHAZ02);LS(DASH,1,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "463", + "_RCID": "32498", + "_name": "OBSTRN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS6" + } + ], + "instruction": "CS(OBSTRN04);AP(FOULAR01);LS(DOTT,2,CHBLK)", + "display-cat": "Other", + "comment": "34050", + "_id": "464", + "_RCID": "32499", + "_name": "OBSTRN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS7" + } + ], + "instruction": "SY(FOULGND1);LC(NAVARE51)", + "display-cat": "Other", + "comment": "34050", + "_id": "465", + "_RCID": "32500", + "_name": "OBSTRN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS8" + } + ], + "instruction": "SY(FLTHAZ02);LS(DASH,1,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "466", + "_RCID": "32501", + "_name": "OBSTRN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS9" + } + ], + "instruction": "SY(ACHARE02);LS(DASH,1,CHMGD)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "467", + "_RCID": "32502", + "_name": "OBSTRN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV7" + } + ], + "instruction": "SY(FLTHAZ02);LS(DASH,1,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "468", + "_RCID": "32503", + "_name": "OBSTRN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "CS(OBSTRN04)", + "display-cat": "Other", + "comment": "34050", + "_id": "469", + "_RCID": "32504", + "_name": "OBSTRN" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,4,CSTLN);TE('Prod %s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "470", + "_RCID": "32505", + "_name": "OFSPLF" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(CTYARE51);LC(CTYARE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26040", + "_id": "471", + "_RCID": "32506", + "_name": "OSPARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(PILBOP02);LC(CTYARE51)", + "display-cat": "Standard", + "comment": "28010", + "_id": "472", + "_RCID": "32507", + "_name": "PILBOP" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPIP2" + } + ], + "instruction": "SY(INFARE51);LC(PIPARE61);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26230", + "_id": "473", + "_RCID": "32508", + "_name": "PIPARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPIP3" + } + ], + "instruction": "SY(INFARE51);LC(PIPARE61);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26230", + "_id": "474", + "_RCID": "32509", + "_name": "PIPARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "PRODCT3" + } + ], + "instruction": "SY(INFARE51);LC(PIPARE61);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26230", + "_id": "475", + "_RCID": "32510", + "_name": "PIPARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(INFARE51);LC(PIPARE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26230", + "_id": "476", + "_RCID": "32511", + "_name": "PIPARE" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "477", + "_RCID": "32512", + "_name": "PONTON" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AP(TSSJCT02);SY(PRCARE51);LC(PRCARE51);CS(RESTRN01)", + "display-cat": "Displaybase", + "comment": "15010", + "_id": "478", + "_RCID": "32513", + "_name": "PRCARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA5" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(RFNERY11);LS(DASH,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "479", + "_RCID": "32514", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA8" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TNKFRM11);LS(DASH,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "480", + "_RCID": "32515", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA9" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(WNDFRM61);LS(DASH,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "481", + "_RCID": "32516", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA1" + } + ], + "instruction": "SY(QUARRY01);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32270", + "_id": "482", + "_RCID": "32517", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA5" + } + ], + "instruction": "SY(RFNERY01);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32270", + "_id": "483", + "_RCID": "32518", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA6" + } + ], + "instruction": "SY(TMBYRD01);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32270", + "_id": "484", + "_RCID": "32519", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA8" + } + ], + "instruction": "SY(TNKFRM01);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32270", + "_id": "485", + "_RCID": "32520", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA9" + } + ], + "instruction": "SY(WNDFRM51);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32270", + "_id": "486", + "_RCID": "32521", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32270", + "_id": "487", + "_RCID": "32522", + "_name": "PRDARE" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "488", + "_RCID": "32523", + "_name": "PYLONS" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(DASH,1,TRFCF)", + "display-cat": "Standard", + "comment": "25040", + "_id": "489", + "_RCID": "32524", + "_name": "RADRNG" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHGRD)", + "display-cat": "Other", + "comment": "32050", + "_id": "490", + "_RCID": "32525", + "_name": "RAPIDS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + } + ], + "instruction": "SY(RCTLPT52,ORIENT)", + "display-cat": "Standard", + "comment": "15020", + "_id": "491", + "_RCID": "32526", + "_name": "RCTLPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(RTLDEF51)", + "display-cat": "Standard", + "comment": "15020", + "_id": "492", + "_RCID": "32527", + "_name": "RCTLPT" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CATTRK1" + }, + { + "_index": "2", + "__text": "TRAFIC1" + } + ], + "instruction": "SY(RECTRC58,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "25020", + "_id": "493", + "_RCID": "32528", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CATTRK1" + }, + { + "_index": "2", + "__text": "TRAFIC2" + } + ], + "instruction": "SY(RECTRC58,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "25020", + "_id": "494", + "_RCID": "32529", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CATTRK1" + }, + { + "_index": "2", + "__text": "TRAFIC3" + } + ], + "instruction": "SY(RECTRC58,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "25020", + "_id": "495", + "_RCID": "32530", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CATTRK1" + }, + { + "_index": "2", + "__text": "TRAFIC4" + } + ], + "instruction": "SY(RECTRC56,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "25020", + "_id": "496", + "_RCID": "32531", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CATTRK2" + }, + { + "_index": "2", + "__text": "TRAFIC1" + } + ], + "instruction": "SY(RECTRC57,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "25020", + "_id": "497", + "_RCID": "32532", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CATTRK2" + }, + { + "_index": "2", + "__text": "TRAFIC2" + } + ], + "instruction": "SY(RECTRC57,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "25020", + "_id": "498", + "_RCID": "32533", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CATTRK2" + }, + { + "_index": "2", + "__text": "TRAFIC3" + } + ], + "instruction": "SY(RECTRC57,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "25020", + "_id": "499", + "_RCID": "32534", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CATTRK2" + }, + { + "_index": "2", + "__text": "TRAFIC4" + } + ], + "instruction": "SY(RECTRC55,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "25020", + "_id": "500", + "_RCID": "32535", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC1" + } + ], + "instruction": "SY(RECTRC57,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "25020", + "_id": "501", + "_RCID": "32536", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC2" + } + ], + "instruction": "SY(RECTRC57,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "25020", + "_id": "502", + "_RCID": "32537", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC3" + } + ], + "instruction": "SY(RECTRC57,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "25020", + "_id": "503", + "_RCID": "32538", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC4" + } + ], + "instruction": "SY(RECTRC55,ORIENT);TE('%03.0lf deg','ORIENT',3,2,2,'15110',4,0,CHBLK,11);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "25020", + "_id": "504", + "_RCID": "32539", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(RECDEF51);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "25020", + "_id": "505", + "_RCID": "32540", + "_name": "RECTRC" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATREA27" + } + ], + "instruction": "SY(ESSARE01);LC(ESSARE01)", + "display-cat": "Standard", + "comment": "26010", + "_id": "506", + "_RCID": "32541", + "_name": "RESARE" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATREA28" + } + ], + "instruction": "SY(PSSARE01);LC(ESSARE01)", + "display-cat": "Standard", + "comment": "26010", + "_id": "507", + "_RCID": "32542", + "_name": "RESARE" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "CS(RESARE02)", + "display-cat": "Standard", + "comment": "26010", + "_id": "508", + "_RCID": "32543", + "_name": "RESARE" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(DEPVS);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32050", + "_id": "509", + "_RCID": "32544", + "_name": "RIVERS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(LANDA);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32250", + "_id": "510", + "_RCID": "32545", + "_name": "ROADWY" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "511", + "_RCID": "32546", + "_name": "RUNWAY" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN)", + "display-cat": "Other", + "comment": "32240", + "_id": "512", + "_RCID": "32547", + "_name": "RUNWAY" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV4" + }, + { + "_index": "1", + "__text": "NATSUR11" + } + ], + "instruction": "AP(RCKLDG01);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34010", + "_id": "513", + "_RCID": "32548", + "_name": "SBDARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV4" + }, + { + "_index": "1", + "__text": "NATSUR14" + } + ], + "instruction": "AP(RCKLDG01);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34010", + "_id": "514", + "_RCID": "32549", + "_name": "SBDARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV4" + }, + { + "_index": "1", + "__text": "NATSUR9" + } + ], + "instruction": "AP(RCKLDG01);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34010", + "_id": "515", + "_RCID": "32550", + "_name": "SBDARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV3" + }, + { + "_index": "1", + "__text": "NATSUR" + } + ], + "instruction": "TX(NATSUR,1,2,2,'15110',0,0,CHBLK,25);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34010", + "_id": "516", + "_RCID": "32551", + "_name": "SBDARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV4" + }, + { + "_index": "1", + "__text": "NATSUR" + } + ], + "instruction": "TX(NATSUR,1,2,2,'15110',0,0,CHBLK,25);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "34010", + "_id": "517", + "_RCID": "32552", + "_name": "SBDARE" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "518", + "_RCID": "32553", + "_name": "SBDARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "TX(OBJNAM,1,2,3,'15120',0,0,CHGRD,26)", + "display-cat": "Standard", + "comment": "21060", + "_id": "519", + "_RCID": "32554", + "_name": "SEAARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "520", + "_RCID": "32555", + "_name": "SILTNK" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32220", + "_id": "521", + "_RCID": "32556", + "_name": "SILTNK" + }, + { + "type": "Area", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Symbolized", + "instruction": "CS(SLCONS03)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "522", + "_RCID": "32557", + "_name": "SLCONS" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO1" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "AC(CHGRD);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32010", + "_id": "523", + "_RCID": "32558", + "_name": "SLOGRD" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO2" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "AC(CHGRD);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32010", + "_id": "524", + "_RCID": "32559", + "_name": "SLOGRD" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO3" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "AC(CHGRD);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32010", + "_id": "525", + "_RCID": "32560", + "_name": "SLOGRD" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO4" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "AC(CHGRD);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32010", + "_id": "526", + "_RCID": "32561", + "_name": "SLOGRD" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO5" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "AC(CHGRD);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32010", + "_id": "527", + "_RCID": "32562", + "_name": "SLOGRD" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO7" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "AC(CHGRD);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32010", + "_id": "528", + "_RCID": "32563", + "_name": "SLOGRD" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO6" + } + ], + "instruction": "AC(CHGRD);LS(SOLD,1,CHBLK)", + "display-cat": "Other", + "comment": "32010", + "_id": "529", + "_RCID": "32564", + "_name": "SLOGRD" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "530", + "_RCID": "32565", + "_name": "SLOGRD" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);SY(SMCFAC02);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "38210", + "_id": "531", + "_RCID": "32566", + "_name": "SMCFAC" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AP(SNDWAV01);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "24010", + "_id": "532", + "_RCID": "32567", + "_name": "SNDWAV" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(CTYARE51);LC(CTYARE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26040", + "_id": "533", + "_RCID": "32568", + "_name": "SPLARE" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(CTYARE51);LC(CTYARE51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26040", + "_id": "534", + "_RCID": "32569", + "_name": "SUBTLN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(SWPARE51);TE('swept to %5.1lf','DRVAL1',1,2,2,'15110',0,1,CHBLK,27);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "23030", + "_id": "535", + "_RCID": "32570", + "_name": "SWPARE" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(DASH,2,CHGRF);CS(RESTRN01)", + "display-cat": "Other", + "comment": "36050", + "_id": "536", + "_RCID": "32571", + "_name": "TESARE" + }, + { + "type": "Area", + "disp-prio": "Routing", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "TX(OBJNAM,1,2,3,'15110',0,0,CHBLK,25)", + "display-cat": "Other", + "comment": "32070", + "_id": "537", + "_RCID": "32572", + "_name": "TIDEWY" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(TRFCF,3)", + "display-cat": "Standard", + "comment": "15010", + "_id": "538", + "_RCID": "32573", + "_name": "TSEZNE" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AP(TSSJCT02);SY(TSSCRS51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "539", + "_RCID": "32574", + "_name": "TSSCRS" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + } + ], + "instruction": "SY(TSSLPT51,ORIENT);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "25010", + "_id": "540", + "_RCID": "32575", + "_name": "TSSLPT" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + } + ], + "instruction": "SY(TSSLPT51,ORIENT);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "541", + "_RCID": "32576", + "_name": "TSSLPT" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AP(TSSJCT02);SY(CTNARE51);TX(INFORM,1,1,2,'15110',0,-2,CHBLK,24);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "542", + "_RCID": "32577", + "_name": "TSSLPT" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AP(TSSJCT02);SY(TSSRON51);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "15010", + "_id": "543", + "_RCID": "32578", + "_name": "TSSRON" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CAT_TS1" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(FLDSTR01,ORIENT);TE('%4.1lf kn','CURVEL',3,1,2,'15110',1,-1,CHBLK,31)", + "display-cat": "Other", + "comment": "33060", + "_id": "544", + "_RCID": "32579", + "_name": "TS_FEB" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CAT_TS2" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(EBBSTR01,ORIENT);TE('%4.1lf kn','CURVEL',3,1,2,'15110',1,-1,CHBLK,31)", + "display-cat": "Other", + "comment": "33060", + "_id": "545", + "_RCID": "32580", + "_name": "TS_FEB" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CAT_TS3" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(CURENT01,ORIENT);TE('%4.1lf kn','CURVEL',3,1,2,'15110',1,-1,CHBLK,31)", + "display-cat": "Other", + "comment": "33060", + "_id": "546", + "_RCID": "32581", + "_name": "TS_FEB" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(CURDEF01);LC(TIDINF51)", + "display-cat": "Other", + "comment": "33060", + "_id": "547", + "_RCID": "32582", + "_name": "TS_FEB" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(TIDSTR01);LC(TIDINF51)", + "display-cat": "Other", + "comment": "33060", + "_id": "548", + "_RCID": "32583", + "_name": "TS_PAD" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(TIDSTR01);LC(TIDINF51)", + "display-cat": "Other", + "comment": "33060", + "_id": "549", + "_RCID": "32584", + "_name": "TS_PNH" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(TIDSTR01);LC(TIDINF51)", + "display-cat": "Other", + "comment": "33060", + "_id": "550", + "_RCID": "32585", + "_name": "TS_PRH" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(TIDSTR01);LC(TIDINF51)", + "display-cat": "Other", + "comment": "33060", + "_id": "551", + "_RCID": "32586", + "_name": "TS_TIS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "BURDEP0" + } + ], + "instruction": "AC(DEPVS);LS(DASH,1,CHBLK)", + "display-cat": "Standard", + "comment": "24010", + "_id": "552", + "_RCID": "32587", + "_name": "TUNNEL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "32250", + "_id": "553", + "_RCID": "32588", + "_name": "TUNNEL" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC1" + } + ], + "instruction": "SY(TWRTPT53,ORIENT);LC(CTYARE51)", + "display-cat": "Standard", + "comment": "15010", + "_id": "554", + "_RCID": "32589", + "_name": "TWRTPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC2" + } + ], + "instruction": "SY(TWRTPT53,ORIENT);LC(CTYARE51)", + "display-cat": "Standard", + "comment": "15010", + "_id": "555", + "_RCID": "32590", + "_name": "TWRTPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC3" + } + ], + "instruction": "SY(TWRTPT53,ORIENT);LC(CTYARE51)", + "display-cat": "Standard", + "comment": "15010", + "_id": "556", + "_RCID": "32591", + "_name": "TWRTPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "TRAFIC4" + } + ], + "instruction": "SY(TWRTPT52,ORIENT);LC(CTYARE51)", + "display-cat": "Standard", + "comment": "15010", + "_id": "557", + "_RCID": "32592", + "_name": "TWRTPT" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(TWRDEF51);LC(CTYARE51)", + "display-cat": "Standard", + "comment": "15010", + "_id": "558", + "_RCID": "32593", + "_name": "TWRTPT" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(TIDEHT01);LC(TIDINF51)", + "display-cat": "Other", + "comment": "33050", + "_id": "559", + "_RCID": "32594", + "_name": "T_HMON" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(TIDEHT01);LC(TIDINF51)", + "display-cat": "Other", + "comment": "33050", + "_id": "560", + "_RCID": "32595", + "_name": "T_NHMN" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(TIDEHT01);LC(TIDINF51)", + "display-cat": "Other", + "comment": "33050", + "_id": "561", + "_RCID": "32596", + "_name": "T_TIMS" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(NODTA);AP(NODATA03);LS(SOLD,2,CHGRD)", + "display-cat": "Standard", + "comment": "11050", + "_id": "562", + "_RCID": "32597", + "_name": "UNSARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AP(CROSSX02);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "563", + "_RCID": "32598", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG14" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "564", + "_RCID": "32599", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG15" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "565", + "_RCID": "32600", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG16" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "566", + "_RCID": "32601", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG17" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "567", + "_RCID": "32602", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG18" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "568", + "_RCID": "32603", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG19" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "569", + "_RCID": "32604", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG20" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "570", + "_RCID": "32605", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG21" + } + ], + "instruction": "AP(VEGATN04);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "571", + "_RCID": "32606", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG22" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "572", + "_RCID": "32607", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG3" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "573", + "_RCID": "32608", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG4" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "574", + "_RCID": "32609", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG5" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "575", + "_RCID": "32610", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG6" + } + ], + "instruction": "AP(VEGATN03);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "576", + "_RCID": "32611", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG7" + } + ], + "instruction": "AP(VEGATN04);LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "577", + "_RCID": "32612", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "578", + "_RCID": "32613", + "_name": "VEGATN" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(WATTUR02);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "33040", + "_id": "579", + "_RCID": "32614", + "_name": "WATTUR" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Symbolized", + "instruction": "SY(WEDKLP03);LS(DASH,1,CHGRF)", + "display-cat": "Other", + "comment": "34020", + "_id": "580", + "_RCID": "32615", + "_name": "WEDKLP" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATWRK3" + }, + { + "_index": "1", + "__text": "VALSOU" + } + ], + "instruction": "LC(NAVARE51)", + "display-cat": "Other", + "comment": "34051", + "_id": "581", + "_RCID": "32616", + "_name": "WRECKS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATWRK3" + } + ], + "instruction": "LC(NAVARE51)", + "display-cat": "Other", + "comment": "34050", + "_id": "582", + "_RCID": "32617", + "_name": "WRECKS" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "CS(WRECKS02)", + "display-cat": "Other", + "comment": "34050", + "_id": "583", + "_RCID": "32618", + "_name": "WRECKS" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(ACHARE02);TX(OBJNAM,1,2,3,'14108',0,2,CHMGD,29);LS(DASH,2,CHMGF);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26220", + "_id": "584", + "_RCID": "32619", + "_name": "achare" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(ACHBRT07);TX(OBJNAM,3,1,2,'14106',1,0,CHMGD,29);LS(DASH,2,CHMGF)", + "display-cat": "Standard", + "comment": "26220", + "_id": "585", + "_RCID": "32620", + "_name": "achbrt" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(BRTHNO01);TX(OBJNAM,1,2,2,'15110',1,0,CHBLK,29);LS(DASH,2,CHMGD)", + "display-cat": "Standard", + "comment": "22440", + "_id": "586", + "_RCID": "32621", + "_name": "berths" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG2" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "587", + "_RCID": "32622", + "_name": "bridge" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG3" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "588", + "_RCID": "32623", + "_name": "bridge" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG4" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "589", + "_RCID": "32624", + "_name": "bridge" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG5" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "590", + "_RCID": "32625", + "_name": "bridge" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG7" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "591", + "_RCID": "32626", + "_name": "bridge" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG8" + } + ], + "instruction": "SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "592", + "_RCID": "32627", + "_name": "bridge" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Symbolized", + "instruction": "TX(OBJNAM,3,1,2,'15110',1,0,CHBLK,21);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,1,CHBLK,11);LS(SOLD,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "593", + "_RCID": "32628", + "_name": "bridge" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "catbun1" + } + ], + "instruction": "SY(BUNSTA01);LS(SOLD,1,CHGRD)", + "display-cat": "Standard", + "comment": "22410", + "_id": "594", + "_RCID": "32629", + "_name": "bunsta" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "catbun2" + } + ], + "instruction": "SY(BUNSTA02);LS(SOLD,1,CHGRD)", + "display-cat": "Standard", + "comment": "22410", + "_id": "595", + "_RCID": "32630", + "_name": "bunsta" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "catbun3" + } + ], + "instruction": "SY(BUNSTA03);LS(SOLD,1,CHGRD)", + "display-cat": "Standard", + "comment": "22410", + "_id": "596", + "_RCID": "32631", + "_name": "bunsta" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "instruction": "SY(CHINFO07);LS(SOLD,1,CHGRD)", + "display-cat": "Standard", + "comment": "22410", + "_id": "597", + "_RCID": "32632", + "_name": "bunsta" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "AC(CHBRN);LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "598", + "_RCID": "32633", + "_name": "cranes" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32440", + "_id": "599", + "_RCID": "32634", + "_name": "cranes" + }, + { + "type": "Area", + "disp-prio": "Group 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "CS(DEPARE02)", + "display-cat": "Displaybase", + "comment": "13030", + "_id": "600", + "_RCID": "32635", + "_name": "depare" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(DNGHL,3);LS(SOLD,3,DNGHL)", + "display-cat": "Mariners", + "comment": "53010", + "_id": "601", + "_RCID": "32636", + "_name": "dnghlt" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(SOLD,2,CSTLN);CS(DEPARE02)", + "display-cat": "Displaybase", + "comment": "13030", + "_id": "602", + "_RCID": "32637", + "_name": "excnst" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFRY2" + } + ], + "instruction": "SY(FRYARE52);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "26040", + "_id": "603", + "_RCID": "32638", + "_name": "feryrt" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(FRYARE51);LC(NAVARE51)", + "display-cat": "Standard", + "comment": "26040", + "_id": "604", + "_RCID": "32639", + "_name": "feryrt" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "605", + "_RCID": "32640", + "_name": "flodoc" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "606", + "_RCID": "32641", + "_name": "gatcon" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cathbr3" + } + ], + "instruction": "SY(SMCFAC02);TX(OBJNAM,1,2,3,'15106',0,0,CHBLK,28);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "36020", + "_id": "607", + "_RCID": "32642", + "_name": "hrbare" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "TX(OBJNAM,1,2,3,'15108',0,0,CHGRD,28);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "36020", + "_id": "608", + "_RCID": "32643", + "_name": "hrbare" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "TX(OBJNAM,1,2,3,'15108',0,0,CHGRD,28);LS(DASH,1,CHGRF)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "609", + "_RCID": "32644", + "_name": "hrbbsn" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf12" + } + ], + "instruction": "AC(CHBRN,3);SY(HRBFAC13)", + "display-cat": "Standard", + "comment": "22410", + "_id": "610", + "_RCID": "32645", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf13" + } + ], + "instruction": "AC(CHBRN,3);SY(HRBFAC14)", + "display-cat": "Standard", + "comment": "22410", + "_id": "611", + "_RCID": "32646", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf14" + } + ], + "instruction": "AC(CHBRN,3);SY(HRBFAC15)", + "display-cat": "Standard", + "comment": "22410", + "_id": "612", + "_RCID": "32647", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf15" + } + ], + "instruction": "AC(CHBRN,3);SY(HRBFAC16)", + "display-cat": "Standard", + "comment": "22410", + "_id": "613", + "_RCID": "32648", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf16" + } + ], + "instruction": "AC(CHBRN,3);SY(HRBFAC17)", + "display-cat": "Standard", + "comment": "22410", + "_id": "614", + "_RCID": "32649", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf17" + } + ], + "instruction": "AC(CHBRN,3);SY(HRBFAC18)", + "display-cat": "Standard", + "comment": "22410", + "_id": "615", + "_RCID": "32650", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf5" + } + ], + "instruction": "SY(SMCFAC02);LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "36020", + "_id": "616", + "_RCID": "32651", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf6" + } + ], + "instruction": "AC(CHBRN,3);SY(HRBFAC11)", + "display-cat": "Standard", + "comment": "22410", + "_id": "617", + "_RCID": "32652", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf9" + } + ], + "instruction": "AC(CHBRN,3);SY(HRBFAC12)", + "display-cat": "Standard", + "comment": "22410", + "_id": "618", + "_RCID": "32653", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "instruction": "AC(CHBRN,3);SY(HRBFAC10)", + "display-cat": "Standard", + "comment": "22410", + "_id": "619", + "_RCID": "32654", + "_name": "hrbfac" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "620", + "_RCID": "32655", + "_name": "hulkes" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "621", + "_RCID": "32656", + "_name": "lkbspt" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "622", + "_RCID": "32657", + "_name": "lokbsn" + }, + { + "type": "Area", + "disp-prio": "Hazards", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(ADINF,3);TX(OBJNAM,1,2,3,'15110',0,0,CHBLK,50);LS(SOLD,2,NINFO);LS(SOLD,1,CHBLK);", + "display-cat": "Mariners", + "comment": "53050", + "_id": "623", + "_RCID": "32658", + "_name": "marfea" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "LS(DASH,2,ADINF)", + "display-cat": "Mariners", + "comment": "55010", + "_id": "624", + "_RCID": "32659", + "_name": "mnufea" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(CHBRN);LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "625", + "_RCID": "32660", + "_name": "ponton" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "CS(RESARE02)", + "display-cat": "Standard", + "comment": "26010", + "_id": "626", + "_RCID": "32661", + "_name": "resare" + }, + { + "type": "Area", + "disp-prio": "Routing", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "CS(SLCONS03)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "627", + "_RCID": "32662", + "_name": "slcons" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd10" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL12)", + "display-cat": "Standard", + "comment": "22420", + "_id": "628", + "_RCID": "32663", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd1" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL03)", + "display-cat": "Standard", + "comment": "22420", + "_id": "629", + "_RCID": "32664", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd2" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL04)", + "display-cat": "Standard", + "comment": "22420", + "_id": "630", + "_RCID": "32665", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd3" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL05)", + "display-cat": "Standard", + "comment": "22420", + "_id": "631", + "_RCID": "32666", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd4" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL06)", + "display-cat": "Standard", + "comment": "22420", + "_id": "632", + "_RCID": "32667", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd5" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL07)", + "display-cat": "Standard", + "comment": "22420", + "_id": "633", + "_RCID": "32668", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd6" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL08)", + "display-cat": "Standard", + "comment": "22420", + "_id": "634", + "_RCID": "32669", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd7" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL09)", + "display-cat": "Standard", + "comment": "22420", + "_id": "635", + "_RCID": "32670", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd8" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL10)", + "display-cat": "Standard", + "comment": "22420", + "_id": "636", + "_RCID": "32671", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd9" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL11)", + "display-cat": "Standard", + "comment": "22420", + "_id": "637", + "_RCID": "32672", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf10" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL03)", + "display-cat": "Standard", + "comment": "22420", + "_id": "638", + "_RCID": "32673", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf11" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL04)", + "display-cat": "Standard", + "comment": "22420", + "_id": "639", + "_RCID": "32674", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf1" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL13)", + "display-cat": "Standard", + "comment": "22420", + "_id": "640", + "_RCID": "32675", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf3" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL02)", + "display-cat": "Standard", + "comment": "22420", + "_id": "641", + "_RCID": "32676", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf7" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL02)", + "display-cat": "Standard", + "comment": "22420", + "_id": "642", + "_RCID": "32677", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf8" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL01)", + "display-cat": "Standard", + "comment": "22420", + "_id": "643", + "_RCID": "32678", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml1" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL01)", + "display-cat": "Standard", + "comment": "22420", + "_id": "644", + "_RCID": "32679", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml2" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL02)", + "display-cat": "Standard", + "comment": "22420", + "_id": "645", + "_RCID": "32680", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL12)", + "display-cat": "Standard", + "comment": "22420", + "_id": "646", + "_RCID": "32681", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd1" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL03)", + "display-cat": "Standard", + "comment": "22420", + "_id": "647", + "_RCID": "32682", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd2" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL04)", + "display-cat": "Standard", + "comment": "22420", + "_id": "648", + "_RCID": "32683", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd3" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL05)", + "display-cat": "Standard", + "comment": "22420", + "_id": "649", + "_RCID": "32684", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd4" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL06)", + "display-cat": "Standard", + "comment": "22420", + "_id": "650", + "_RCID": "32685", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd5" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL07)", + "display-cat": "Standard", + "comment": "22420", + "_id": "651", + "_RCID": "32686", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd6" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL08)", + "display-cat": "Standard", + "comment": "22420", + "_id": "652", + "_RCID": "32687", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd7" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL09)", + "display-cat": "Standard", + "comment": "22420", + "_id": "653", + "_RCID": "32688", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd8" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL10)", + "display-cat": "Standard", + "comment": "22420", + "_id": "654", + "_RCID": "32689", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd9" + } + ], + "instruction": "AC(CHGRF,3);SY(TERMNL11)", + "display-cat": "Standard", + "comment": "22420", + "_id": "655", + "_RCID": "32690", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "instruction": "AC(CHGRF,3);SY(TERMNL12)", + "display-cat": "Standard", + "comment": "22420", + "_id": "656", + "_RCID": "32691", + "_name": "termnl" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Symbolized", + "instruction": "SY(TRNBSN01);LS(DASH,2,CHMGD)", + "display-cat": "Standard", + "comment": "26020", + "_id": "657", + "_RCID": "32692", + "_name": "trnbsn" + }, + { + "type": "Area", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "instruction": "SY(VEHTRF01);LS(DASH,1,CHGRF)", + "display-cat": "Standard", + "comment": "22410", + "_id": "658", + "_RCID": "32693", + "_name": "vehtrf" + }, + { + "type": "Area", + "disp-prio": "Area 1", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBACKGROUND" + } + ], + "instruction": "AC(NODTA);LS(SOLD,2,CHGRD)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "659", + "_RCID": "32694", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHCRDEL1" + } + ], + "instruction": "SY(CHCRDEL1);LC(CHCRDEL1)", + "display-cat": "Standard", + "comment": "26220", + "_id": "660", + "_RCID": "32695", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHCRID01" + } + ], + "instruction": "SY(CHCRID01);LC(CHCRID01)", + "display-cat": "Standard", + "comment": "23030", + "_id": "661", + "_RCID": "32696", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDIAMOND1" + } + ], + "instruction": "AP(DIAMOND1)", + "display-cat": "Standard", + "comment": "23010", + "_id": "662", + "_RCID": "32697", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOVERSC01" + } + ], + "instruction": "AP(OVERSC01)", + "display-cat": "Standard", + "comment": "21030", + "_id": "663", + "_RCID": "32698", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEQUESMRK1" + } + ], + "instruction": "AP(QUESMRK1);LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "21010", + "_id": "664", + "_RCID": "32699", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX10" + } + ], + "instruction": "AC(DEPDW);LS(SOLD,1,CHGRD);TX('10',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "665", + "_RCID": "32700", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX11" + } + ], + "instruction": "AC(DEPVS);LS(SOLD,1,CHGRD);TX('11',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "666", + "_RCID": "32701", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX12" + } + ], + "instruction": "AC(NODTA);LS(SOLD,1,CHGRD);TX('12',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "667", + "_RCID": "32702", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX13" + } + ], + "instruction": "AC(DEPDW);LS(SOLD,1,CHGRD);TX('13',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "668", + "_RCID": "32703", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX14" + } + ], + "instruction": "AC(LANDA);LS(SOLD,1,CHGRD);TX('14',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "669", + "_RCID": "32704", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX15" + } + ], + "instruction": "AC(DEPVS);LS(SOLD,1,CHGRD);TX('15',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "670", + "_RCID": "32705", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX16" + } + ], + "instruction": "AC(NODTA);LS(SOLD,1,CHGRD);TX('16',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "671", + "_RCID": "32706", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX17" + } + ], + "instruction": "AC(LANDA);LS(SOLD,1,CHGRD);TX('17',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "672", + "_RCID": "32707", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX18" + } + ], + "instruction": "AC(DEPVS);LS(SOLD,1,CHGRD);TX('18',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "673", + "_RCID": "32708", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX19" + } + ], + "instruction": "AC(DEPDW);LS(SOLD,1,CHGRD);TX('19',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "674", + "_RCID": "32709", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX20" + } + ], + "instruction": "AC(DEPVS);LS(SOLD,1,CHGRD);TX('20',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "675", + "_RCID": "32710", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX1" + } + ], + "instruction": "AC(DEPDW);LS(SOLD,1,CHGRD);TX('1',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "676", + "_RCID": "32711", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX2" + } + ], + "instruction": "AC(NODTA);LS(SOLD,1,CHGRD);TX('2',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "677", + "_RCID": "32712", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX3" + } + ], + "instruction": "AC(DEPVS);LS(SOLD,1,CHGRD);TX('3',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "678", + "_RCID": "32713", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX4" + } + ], + "instruction": "AC(NODTA);LS(SOLD,1,CHGRD);TX('4',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "679", + "_RCID": "32714", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX5" + } + ], + "instruction": "AC(DEPVS);LS(SOLD,1,CHGRD);TX('5',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "680", + "_RCID": "32715", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX6" + } + ], + "instruction": "AC(LANDA);LS(SOLD,1,CHGRD);TX('6',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "681", + "_RCID": "32716", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX7" + } + ], + "instruction": "AC(DEPDW);LS(SOLD,1,CHGRD);TX('7',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "682", + "_RCID": "32717", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX8" + } + ], + "instruction": "AC(DEPDW);LS(SOLD,1,CHGRD);TX('8',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "683", + "_RCID": "32718", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Symbolized", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBOX9" + } + ], + "instruction": "AC(NODTA);LS(SOLD,1,CHGRD);TX('9',2,2,3,'15110',3,2,CHBLK,30)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "684", + "_RCID": "32719", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AP(QUESMRK1)", + "display-cat": "Standard", + "comment": "21010", + "_id": "685", + "_RCID": "32720", + "_name": "$AREAS" + }, + { + "type": "Area", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Symbolized", + "instruction": "TX($TXSTR,$JUSTH=3,$JUSTV=1,$SPACE=2,'15110',0,0,CHBLK,27)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "686", + "_RCID": "32721", + "_name": "$TEXTS" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LC(QUESMRK1)", + "display-cat": "Standard", + "comment": "21010", + "_id": "687", + "_RCID": "31763", + "_name": "######" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Lines", + "instruction": "LS(DASH,2,CHMGF)", + "display-cat": "Standard", + "comment": "26260", + "_id": "688", + "_RCID": "31764", + "_name": "ASLXIS" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,3,CHGRD);SY(BRTHNO01);TE('%s','OBJNAM',1,2,2,'15110',0,0,CHBLK,29)", + "display-cat": "Other", + "comment": "32440", + "_id": "689", + "_RCID": "31765", + "_name": "BERTHS" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG2" + } + ], + "instruction": "LS(SOLD,5,CHGRD);SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "690", + "_RCID": "31766", + "_name": "BRIDGE" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG3" + } + ], + "instruction": "LS(SOLD,5,CHGRD);SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "691", + "_RCID": "31767", + "_name": "BRIDGE" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG4" + } + ], + "instruction": "LS(SOLD,5,CHGRD);SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "692", + "_RCID": "31768", + "_name": "BRIDGE" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG5" + } + ], + "instruction": "LS(SOLD,5,CHGRD);SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "693", + "_RCID": "31769", + "_name": "BRIDGE" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG7" + } + ], + "instruction": "LS(SOLD,5,CHGRD);SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "694", + "_RCID": "31770", + "_name": "BRIDGE" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG8" + } + ], + "instruction": "LS(SOLD,5,CHGRD);SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "695", + "_RCID": "31771", + "_name": "BRIDGE" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,5,CHGRD);TX(OBJNAM,3,1,2,'15110',1,0,CHBLK,21);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "696", + "_RCID": "31772", + "_name": "BRIDGE" + }, + { + "type": "Line", + "disp-prio": "Area 1", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,CHBLK)", + "display-cat": "Displaybase", + "comment": "12420", + "_id": "697", + "_RCID": "31773", + "_name": "CANALS" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV4" + } + ], + "instruction": "LS(DASH,3,LANDF)", + "display-cat": "Standard", + "comment": "22010", + "_id": "698", + "_RCID": "31774", + "_name": "CAUSWY" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,3,LANDF)", + "display-cat": "Standard", + "comment": "22010", + "_id": "699", + "_RCID": "31775", + "_name": "CAUSWY" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD1" + }, + { + "_index": "1", + "__text": "VERCLR" + } + ], + "instruction": "LS(DASH,4,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "700", + "_RCID": "31776", + "_name": "CBLOHD" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD1" + }, + { + "_index": "1", + "__text": "VERCSA" + } + ], + "instruction": "LS(DASH,4,CHGRD);SY(RACNSP01);TE('sf clr %4.1lf','VERCSA',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "701", + "_RCID": "31777", + "_name": "CBLOHD" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD3" + }, + { + "_index": "1", + "__text": "VERCLR" + } + ], + "instruction": "LS(DASH,4,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "702", + "_RCID": "31778", + "_name": "CBLOHD" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD3" + }, + { + "_index": "1", + "__text": "VERCSA" + } + ], + "instruction": "LS(DASH,4,CHGRD);SY(RACNSP01);TE('sf clr %4.1lf','VERCSA',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "703", + "_RCID": "31779", + "_name": "CBLOHD" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD1" + } + ], + "instruction": "LS(DASH,4,CHGRD);SY(RACNSP01)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "704", + "_RCID": "31780", + "_name": "CBLOHD" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD3" + } + ], + "instruction": "LS(DASH,4,CHGRD);SY(RACNSP01)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "705", + "_RCID": "31781", + "_name": "CBLOHD" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "VERCLR" + } + ], + "instruction": "LS(DASH,4,CHGRD);TE('sf clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "706", + "_RCID": "31782", + "_name": "CBLOHD" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "VERCSA" + } + ], + "instruction": "LS(DASH,4,CHGRD);TE('sf clr %4.1lf','VERCSA',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "707", + "_RCID": "31783", + "_name": "CBLOHD" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,4,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "708", + "_RCID": "31784", + "_name": "CBLOHD" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCBL6" + } + ], + "instruction": "LS(DASH,1,CHMGD)", + "display-cat": "Standard", + "comment": "24010", + "_id": "709", + "_RCID": "31785", + "_name": "CBLSUB" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LC(CBLSUB06)", + "display-cat": "Other", + "comment": "34070", + "_id": "710", + "_RCID": "31786", + "_name": "CBLSUB" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,1,CHBLK)", + "display-cat": "Standard", + "comment": "10000", + "_id": "711", + "_RCID": "31787", + "_name": "CHNWIR" + }, + { + "type": "Line", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCOA10" + } + ], + "instruction": "LS(DASH,1,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "712", + "_RCID": "31788", + "_name": "COALNE" + }, + { + "type": "Line", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCOA6" + } + ], + "instruction": "LS(DASH,1,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "713", + "_RCID": "31789", + "_name": "COALNE" + }, + { + "type": "Line", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCOA7" + } + ], + "instruction": "LS(DASH,1,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "714", + "_RCID": "31790", + "_name": "COALNE" + }, + { + "type": "Line", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCOA8" + } + ], + "instruction": "LS(DASH,1,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "715", + "_RCID": "31791", + "_name": "COALNE" + }, + { + "type": "Line", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "CS(QUAPOS01)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "716", + "_RCID": "31792", + "_name": "COALNE" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCON1" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "LS(DASH,4,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "717", + "_RCID": "31793", + "_name": "CONVYR" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCON1" + }, + { + "_index": "1", + "__text": "CONRAD3" + } + ], + "instruction": "LS(DASH,4,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "718", + "_RCID": "31794", + "_name": "CONVYR" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCON2" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "LS(SOLD,3,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "719", + "_RCID": "31795", + "_name": "CONVYR" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCON2" + }, + { + "_index": "1", + "__text": "CONRAD3" + } + ], + "instruction": "LS(SOLD,3,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "720", + "_RCID": "31796", + "_name": "CONVYR" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCON1" + } + ], + "instruction": "LS(DASH,4,CHGRD);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "721", + "_RCID": "31797", + "_name": "CONVYR" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCON2" + } + ], + "instruction": "LS(SOLD,3,CHGRD);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "722", + "_RCID": "31798", + "_name": "CONVYR" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD1" + } + ], + "instruction": "LS(DASH,4,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "723", + "_RCID": "31799", + "_name": "CONVYR" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD3" + } + ], + "instruction": "LS(DASH,4,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "724", + "_RCID": "31800", + "_name": "CONVYR" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,4,CHGRD);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "725", + "_RCID": "31801", + "_name": "CONVYR" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDAM3" + } + ], + "instruction": "LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "726", + "_RCID": "31802", + "_name": "DAMCON" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,4,LANDF)", + "display-cat": "Standard", + "comment": "22010", + "_id": "727", + "_RCID": "31803", + "_name": "DAMCON" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "CS(DEPCNT02)", + "display-cat": "Other", + "comment": "33020", + "_id": "728", + "_RCID": "31804", + "_name": "DEPARE" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "CS(DEPCNT02)", + "display-cat": "Other", + "comment": "33020", + "_id": "729", + "_RCID": "31805", + "_name": "DEPCNT" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK1" + }, + { + "_index": "1", + "__text": "TRAFIC1" + } + ], + "instruction": "LC(DWRTCL08);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "15010", + "_id": "730", + "_RCID": "31806", + "_name": "DWRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK1" + }, + { + "_index": "1", + "__text": "TRAFIC2" + } + ], + "instruction": "LC(DWRTCL08);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "15010", + "_id": "731", + "_RCID": "31807", + "_name": "DWRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK1" + }, + { + "_index": "1", + "__text": "TRAFIC3" + } + ], + "instruction": "LC(DWRTCL08);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "15010", + "_id": "732", + "_RCID": "31808", + "_name": "DWRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK1" + }, + { + "_index": "1", + "__text": "TRAFIC4" + } + ], + "instruction": "LC(DWRTCL06);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "15010", + "_id": "733", + "_RCID": "31809", + "_name": "DWRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK2" + }, + { + "_index": "1", + "__text": "TRAFIC1" + } + ], + "instruction": "LC(DWRTCL07);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "15010", + "_id": "734", + "_RCID": "31810", + "_name": "DWRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK2" + }, + { + "_index": "1", + "__text": "TRAFIC2" + } + ], + "instruction": "LC(DWRTCL07);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "15010", + "_id": "735", + "_RCID": "31811", + "_name": "DWRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK2" + }, + { + "_index": "1", + "__text": "TRAFIC3" + } + ], + "instruction": "LC(DWRTCL07);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "15010", + "_id": "736", + "_RCID": "31812", + "_name": "DWRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK2" + }, + { + "_index": "1", + "__text": "TRAFIC4" + } + ], + "instruction": "LC(DWRTCL05);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "15010", + "_id": "737", + "_RCID": "31813", + "_name": "DWRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC1" + } + ], + "instruction": "LC(DWRTCL07);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "15010", + "_id": "738", + "_RCID": "31814", + "_name": "DWRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC2" + } + ], + "instruction": "LC(DWRTCL07);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "15010", + "_id": "739", + "_RCID": "31815", + "_name": "DWRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC3" + } + ], + "instruction": "LC(DWRTCL07);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "15010", + "_id": "740", + "_RCID": "31816", + "_name": "DWRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC4" + } + ], + "instruction": "LC(DWRTCL05);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "15010", + "_id": "741", + "_RCID": "31817", + "_name": "DWRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LC(DWLDEF01);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "15010", + "_id": "742", + "_RCID": "31818", + "_name": "DWRTCL" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD1" + } + ], + "instruction": "LS(SOLD,2,CHBLK)", + "display-cat": "Standard", + "comment": "22210", + "_id": "743", + "_RCID": "31819", + "_name": "DYKCON" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,3,LANDF)", + "display-cat": "Standard", + "comment": "22010", + "_id": "744", + "_RCID": "31820", + "_name": "DYKCON" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFRY1" + } + ], + "instruction": "LC(FERYRT01)", + "display-cat": "Standard", + "comment": "25030", + "_id": "745", + "_RCID": "31821", + "_name": "FERYRT" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFRY2" + } + ], + "instruction": "LC(FERYRT02)", + "display-cat": "Standard", + "comment": "25030", + "_id": "746", + "_RCID": "31822", + "_name": "FERYRT" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LC(FERYRT02)", + "display-cat": "Standard", + "comment": "25030", + "_id": "747", + "_RCID": "31823", + "_name": "FERYRT" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,3,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "748", + "_RCID": "31824", + "_name": "FLODOC" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "749", + "_RCID": "31825", + "_name": "FNCLNE" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32220", + "_id": "750", + "_RCID": "31826", + "_name": "FNCLNE" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,3,LANDF)", + "display-cat": "Other", + "comment": "32220", + "_id": "751", + "_RCID": "31827", + "_name": "FORSTC" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF1" + } + ], + "instruction": "LC(FSHFAC02)", + "display-cat": "Other", + "comment": "34040", + "_id": "752", + "_RCID": "31828", + "_name": "FSHFAC" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "34040", + "_id": "753", + "_RCID": "31829", + "_name": "FSHFAC" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATGAT2" + } + ], + "instruction": "LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "754", + "_RCID": "31830", + "_name": "GATCON" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATGAT3" + } + ], + "instruction": "LS(SOLD,2,CSTLN);SY(GATCON04)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "755", + "_RCID": "31831", + "_name": "GATCON" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATGAT4" + } + ], + "instruction": "LS(SOLD,2,CSTLN);SY(GATCON03)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "756", + "_RCID": "31832", + "_name": "GATCON" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATGAT5" + } + ], + "instruction": "LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "757", + "_RCID": "31833", + "_name": "GATCON" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "758", + "_RCID": "31834", + "_name": "GATCON" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,CSTLN)", + "display-cat": "Standard", + "comment": "10000", + "_id": "759", + "_RCID": "31835", + "_name": "LAKSHR" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "CS(QUAPOS01)", + "display-cat": "Displaybase", + "comment": "12010", + "_id": "760", + "_RCID": "31836", + "_name": "LNDARE" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32010", + "_id": "761", + "_RCID": "31837", + "_name": "LNDELV" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22220", + "_id": "762", + "_RCID": "31838", + "_name": "LNDMRK" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32220", + "_id": "763", + "_RCID": "31839", + "_name": "LNDMRK" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Lines", + "instruction": "LS(DASH,1,CHMGF);SY(LOCMAG01)", + "display-cat": "Other", + "comment": "31080", + "_id": "764", + "_RCID": "31840", + "_name": "LOCMAG" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,2,CHMGF);SY(MAGVAR51);TE('varn %s','VALMAG',3,1,2,'15110',1,-1,CHBLK,27)", + "display-cat": "Other", + "comment": "31080", + "_id": "765", + "_RCID": "31841", + "_name": "MAGVAR" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,2,CHGRF)", + "display-cat": "Standard", + "comment": "26210", + "_id": "766", + "_RCID": "31842", + "_name": "MARCUL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATMOR4" + } + ], + "instruction": "LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "767", + "_RCID": "31843", + "_name": "MORFAC" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATMOR6" + } + ], + "instruction": "LS(DASH,1,CHMGF)", + "display-cat": "Displaybase", + "comment": "14010", + "_id": "768", + "_RCID": "31844", + "_name": "MORFAC" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "769", + "_RCID": "31845", + "_name": "MORFAC" + }, + { + "type": "Line", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Lines", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "770", + "_RCID": "31846", + "_name": "M_SREL" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATNAV1" + } + ], + "instruction": "LS(DASH,1,CHGRD);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "25010", + "_id": "771", + "_RCID": "31847", + "_name": "NAVLNE" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATNAV2" + } + ], + "instruction": "LS(DASH,1,CHGRD);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "25010", + "_id": "772", + "_RCID": "31848", + "_name": "NAVLNE" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,1,CHGRD)", + "display-cat": "Standard", + "comment": "25010", + "_id": "773", + "_RCID": "31849", + "_name": "NAVLNE" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "SYMINS" + } + ], + "instruction": "CS(SYMINS01)", + "display-cat": "Standard", + "comment": "21020", + "_id": "774", + "_RCID": "31850", + "_name": "NEWOBJ" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Lines", + "instruction": "LC(NEWOBJ01)", + "display-cat": "Standard", + "comment": "21020", + "_id": "775", + "_RCID": "31851", + "_name": "NEWOBJ" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS10" + } + ], + "instruction": "LS(DASH,1,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "776", + "_RCID": "31852", + "_name": "OBSTRN" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS8" + } + ], + "instruction": "LS(DASH,1,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "777", + "_RCID": "31853", + "_name": "OBSTRN" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS9" + } + ], + "instruction": "LS(DASH,1,CHMGD)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "778", + "_RCID": "31854", + "_name": "OBSTRN" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV7" + } + ], + "instruction": "LS(DASH,1,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "779", + "_RCID": "31855", + "_name": "OBSTRN" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "CS(OBSTRN04)", + "display-cat": "Other", + "comment": "34050", + "_id": "780", + "_RCID": "31856", + "_name": "OBSTRN" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,1,CHBLK)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "781", + "_RCID": "31857", + "_name": "OILBAR" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD1" + } + ], + "instruction": "LS(SOLD,3,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "782", + "_RCID": "31858", + "_name": "PIPOHD" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD3" + } + ], + "instruction": "LS(SOLD,3,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "783", + "_RCID": "31859", + "_name": "PIPOHD" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,3,CHGRD);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "784", + "_RCID": "31860", + "_name": "PIPOHD" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPIP2" + } + ], + "instruction": "LC(PIPSOL06)", + "display-cat": "Other", + "comment": "34070", + "_id": "785", + "_RCID": "31861", + "_name": "PIPSOL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPIP3" + } + ], + "instruction": "LC(PIPSOL06)", + "display-cat": "Other", + "comment": "34070", + "_id": "786", + "_RCID": "31862", + "_name": "PIPSOL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPIP4" + } + ], + "instruction": "LC(PIPSOL06)", + "display-cat": "Other", + "comment": "34070", + "_id": "787", + "_RCID": "31863", + "_name": "PIPSOL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPIP5" + } + ], + "instruction": "LC(PIPSOL06)", + "display-cat": "Other", + "comment": "34070", + "_id": "788", + "_RCID": "31864", + "_name": "PIPSOL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "PRODCT3" + } + ], + "instruction": "LC(PIPSOL06)", + "display-cat": "Other", + "comment": "34070", + "_id": "789", + "_RCID": "31865", + "_name": "PIPSOL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LC(PIPSOL05)", + "display-cat": "Other", + "comment": "34070", + "_id": "790", + "_RCID": "31866", + "_name": "PIPSOL" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "791", + "_RCID": "31867", + "_name": "PONTON" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,2,TRFCD);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "25040", + "_id": "792", + "_RCID": "31868", + "_name": "RADLNE" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,2,LANDF)", + "display-cat": "Other", + "comment": "32250", + "_id": "793", + "_RCID": "31869", + "_name": "RAILWY" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,3,CHGRD)", + "display-cat": "Other", + "comment": "32050", + "_id": "794", + "_RCID": "31870", + "_name": "RAPIDS" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK1" + }, + { + "_index": "1", + "__text": "TRAFIC1" + } + ], + "instruction": "LC(RCRTCL14);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15020", + "_id": "795", + "_RCID": "31871", + "_name": "RCRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK1" + }, + { + "_index": "1", + "__text": "TRAFIC2" + } + ], + "instruction": "LC(RCRTCL14);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15020", + "_id": "796", + "_RCID": "31872", + "_name": "RCRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK1" + }, + { + "_index": "1", + "__text": "TRAFIC3" + } + ], + "instruction": "LC(RCRTCL14);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15020", + "_id": "797", + "_RCID": "31873", + "_name": "RCRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK1" + }, + { + "_index": "1", + "__text": "TRAFIC4" + } + ], + "instruction": "LC(RCRTCL13);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15020", + "_id": "798", + "_RCID": "31874", + "_name": "RCRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK2" + }, + { + "_index": "1", + "__text": "TRAFIC1" + } + ], + "instruction": "LC(RCRTCL12);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15020", + "_id": "799", + "_RCID": "31875", + "_name": "RCRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK2" + }, + { + "_index": "1", + "__text": "TRAFIC2" + } + ], + "instruction": "LC(RCRTCL12);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15020", + "_id": "800", + "_RCID": "31876", + "_name": "RCRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK2" + }, + { + "_index": "1", + "__text": "TRAFIC3" + } + ], + "instruction": "LC(RCRTCL12);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15020", + "_id": "801", + "_RCID": "31877", + "_name": "RCRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK2" + }, + { + "_index": "1", + "__text": "TRAFIC4" + } + ], + "instruction": "LC(RCRTCL11);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15020", + "_id": "802", + "_RCID": "31878", + "_name": "RCRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC1" + } + ], + "instruction": "LC(RCRTCL12);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15020", + "_id": "803", + "_RCID": "31879", + "_name": "RCRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC2" + } + ], + "instruction": "LC(RCRTCL12);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15020", + "_id": "804", + "_RCID": "31880", + "_name": "RCRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC3" + } + ], + "instruction": "LC(RCRTCL12);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15020", + "_id": "805", + "_RCID": "31881", + "_name": "RCRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC4" + } + ], + "instruction": "LC(RCRTCL11);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15020", + "_id": "806", + "_RCID": "31882", + "_name": "RCRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LC(RCRDEF01);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15020", + "_id": "807", + "_RCID": "31883", + "_name": "RCRTCL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC1" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "LS(DASH,1,TRFCD);SY(RDOCAL02,ORIENT);TE('%s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21);TE('ch %s','COMCHA',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "808", + "_RCID": "31884", + "_name": "RDOCAL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC2" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "LS(DASH,1,TRFCD);SY(RDOCAL02,ORIENT);TE('%s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21);TE('ch %s','COMCHA',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "809", + "_RCID": "31885", + "_name": "RDOCAL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC3" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "LS(DASH,1,TRFCD);SY(RDOCAL02,ORIENT);TE('%s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21);TE('ch %s','COMCHA',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "810", + "_RCID": "31886", + "_name": "RDOCAL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC4" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "LS(DASH,1,TRFCD);SY(RDOCAL03,ORIENT);TE('%s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21);TE('ch %s','COMCHA',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "811", + "_RCID": "31887", + "_name": "RDOCAL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,1,TRFCD);SY(RCLDEF01);TE('%s','OBJNAM',3,2,2,'15110',1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "15060", + "_id": "812", + "_RCID": "31888", + "_name": "RDOCAL" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK1" + }, + { + "_index": "1", + "__text": "TRAFIC1" + } + ], + "instruction": "LC(RECTRC12);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "25020", + "_id": "813", + "_RCID": "31889", + "_name": "RECTRC" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK1" + }, + { + "_index": "1", + "__text": "TRAFIC2" + } + ], + "instruction": "LC(RECTRC12);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "25020", + "_id": "814", + "_RCID": "31890", + "_name": "RECTRC" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK1" + }, + { + "_index": "1", + "__text": "TRAFIC3" + } + ], + "instruction": "LC(RECTRC12);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "25020", + "_id": "815", + "_RCID": "31891", + "_name": "RECTRC" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK1" + }, + { + "_index": "1", + "__text": "TRAFIC4" + } + ], + "instruction": "LC(RECTRC10);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "25020", + "_id": "816", + "_RCID": "31892", + "_name": "RECTRC" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK2" + }, + { + "_index": "1", + "__text": "TRAFIC1" + } + ], + "instruction": "LC(RECTRC11);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "25020", + "_id": "817", + "_RCID": "31893", + "_name": "RECTRC" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK2" + }, + { + "_index": "1", + "__text": "TRAFIC2" + } + ], + "instruction": "LC(RECTRC11);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "25020", + "_id": "818", + "_RCID": "31894", + "_name": "RECTRC" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK2" + }, + { + "_index": "1", + "__text": "TRAFIC3" + } + ], + "instruction": "LC(RECTRC11);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "25020", + "_id": "819", + "_RCID": "31895", + "_name": "RECTRC" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTRK2" + }, + { + "_index": "1", + "__text": "TRAFIC4" + } + ], + "instruction": "LC(RECTRC09);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "25020", + "_id": "820", + "_RCID": "31896", + "_name": "RECTRC" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC1" + } + ], + "instruction": "LC(RECTRC11);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "25020", + "_id": "821", + "_RCID": "31897", + "_name": "RECTRC" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC2" + } + ], + "instruction": "LC(RECTRC11);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "25020", + "_id": "822", + "_RCID": "31898", + "_name": "RECTRC" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC3" + } + ], + "instruction": "LC(RECTRC11);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "25020", + "_id": "823", + "_RCID": "31899", + "_name": "RECTRC" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC4" + } + ], + "instruction": "LC(RECTRC09);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "25020", + "_id": "824", + "_RCID": "31900", + "_name": "RECTRC" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LC(RECDEF02);TE('%03.0lf deg','ORIENT',3,1,2,'15110',1,-1,CHBLK,11)", + "display-cat": "Standard", + "comment": "25020", + "_id": "825", + "_RCID": "31901", + "_name": "RECTRC" + }, + { + "type": "Line", + "disp-prio": "Area 1", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22010", + "_id": "826", + "_RCID": "31902", + "_name": "RIVERS" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,2,LANDF)", + "display-cat": "Other", + "comment": "32250", + "_id": "827", + "_RCID": "31903", + "_name": "ROADWY" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,3,LANDF)", + "display-cat": "Other", + "comment": "32240", + "_id": "828", + "_RCID": "31904", + "_name": "RUNWAY" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,CHGRD);TX(NATSUR,1,2,2,'15110',0,0,CHBLK,25)", + "display-cat": "Other", + "comment": "34010", + "_id": "829", + "_RCID": "31905", + "_name": "SBDARE" + }, + { + "type": "Line", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "CS(SLCONS03)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "830", + "_RCID": "31906", + "_name": "SLCONS" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO3" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22210", + "_id": "831", + "_RCID": "31907", + "_name": "SLOGRD" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO3" + } + ], + "instruction": "LS(SOLD,1,CHGRD)", + "display-cat": "Other", + "comment": "32010", + "_id": "832", + "_RCID": "31908", + "_name": "SLOGRD" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32010", + "_id": "833", + "_RCID": "31909", + "_name": "SLOGRD" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO2" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22210", + "_id": "834", + "_RCID": "31910", + "_name": "SLOTOP" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO6" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22210", + "_id": "835", + "_RCID": "31911", + "_name": "SLOTOP" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO6" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "22210", + "_id": "836", + "_RCID": "31912", + "_name": "SLOTOP" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO2" + } + ], + "instruction": "LS(SOLD,1,CHGRD)", + "display-cat": "Other", + "comment": "32010", + "_id": "837", + "_RCID": "31913", + "_name": "SLOTOP" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLO6" + } + ], + "instruction": "LS(SOLD,1,CHGRD)", + "display-cat": "Other", + "comment": "32010", + "_id": "838", + "_RCID": "31914", + "_name": "SLOTOP" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,LANDF)", + "display-cat": "Other", + "comment": "32010", + "_id": "839", + "_RCID": "31915", + "_name": "SLOTOP" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,2,CHGRD);SY(SNDWAV02)", + "display-cat": "Standard", + "comment": "24010", + "_id": "840", + "_RCID": "31916", + "_name": "SNDWAV" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,1,CHGRF)", + "display-cat": "Other", + "comment": "36050", + "_id": "841", + "_RCID": "31917", + "_name": "STSLNE" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,CHGRF)", + "display-cat": "Other", + "comment": "32070", + "_id": "842", + "_RCID": "31918", + "_name": "TIDEWY" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,6,TRFCF)", + "display-cat": "Standard", + "comment": "15010", + "_id": "843", + "_RCID": "31919", + "_name": "TSELNE" + }, + { + "type": "Line", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,2,TRFCD)", + "display-cat": "Standard", + "comment": "15010", + "_id": "844", + "_RCID": "31920", + "_name": "TSSBND" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "BURDEP0" + } + ], + "instruction": "LS(DASH,2,CHBLK)", + "display-cat": "Standard", + "comment": "24010", + "_id": "845", + "_RCID": "31921", + "_name": "TUNNEL" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,1,CHGRD)", + "display-cat": "Other", + "comment": "32250", + "_id": "846", + "_RCID": "31922", + "_name": "TUNNEL" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,1,LANDF)", + "display-cat": "Other", + "comment": "32030", + "_id": "847", + "_RCID": "31923", + "_name": "VEGATN" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "LS(SOLD,3,CHWHT)", + "display-cat": "Other", + "comment": "32050", + "_id": "848", + "_RCID": "31924", + "_name": "WATFAL" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,3,CHGRF)", + "display-cat": "Other", + "comment": "32050", + "_id": "849", + "_RCID": "31925", + "_name": "WATFAL" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,1,CHGRD);SY(WATTUR02)", + "display-cat": "Other", + "comment": "33040", + "_id": "850", + "_RCID": "31926", + "_name": "WATTUR" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,CHBLK)", + "display-cat": "Standard", + "comment": "10000", + "_id": "851", + "_RCID": "31927", + "_name": "ZEMCNT" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,3,CHGRD);SY(BRTHNO01);TX(OBJNAM,1,2,3,'14108',1,0,CHMGD,29)", + "display-cat": "Standard", + "comment": "32440", + "_id": "852", + "_RCID": "31928", + "_name": "berths" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG2" + } + ], + "instruction": "LS(SOLD,5,CHGRD);SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "853", + "_RCID": "31929", + "_name": "bridge" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG3" + } + ], + "instruction": "LS(SOLD,5,CHGRD);SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "854", + "_RCID": "31930", + "_name": "bridge" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG4" + } + ], + "instruction": "LS(SOLD,5,CHGRD);SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "855", + "_RCID": "31931", + "_name": "bridge" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG5" + } + ], + "instruction": "LS(SOLD,5,CHGRD);SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "856", + "_RCID": "31932", + "_name": "bridge" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG7" + } + ], + "instruction": "LS(SOLD,5,CHGRD);SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "857", + "_RCID": "31933", + "_name": "bridge" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATBRG8" + } + ], + "instruction": "LS(SOLD,5,CHGRD);SY(BRIDGE01);TE('clr cl %4.1lf','VERCCL',3,1,2,'15110',1,0,CHBLK,11);TE('clr op %4.1lf','VERCOP',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "858", + "_RCID": "31934", + "_name": "bridge" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,5,CHGRD);TX(OBJNAM,3,1,2,'15110',1,0,CHBLK,21);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "859", + "_RCID": "31935", + "_name": "bridge" + }, + { + "type": "Line", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "860", + "_RCID": "31936", + "_name": "canbnk" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD1" + }, + { + "_index": "1", + "__text": "VERCLR" + } + ], + "instruction": "LS(DASH,2,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'24207',1,0,CHBLK,52)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "861", + "_RCID": "31937", + "_name": "cblohd" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD1" + }, + { + "_index": "1", + "__text": "VERCSA" + } + ], + "instruction": "LS(DASH,2,CHGRD);SY(RACNSP01);TE('sf clr %4.1lf','VERCSA',3,1,2,'24207',1,0,CHBLK,52)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "862", + "_RCID": "31938", + "_name": "cblohd" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD3" + }, + { + "_index": "1", + "__text": "VERCLR" + } + ], + "instruction": "LS(DASH,2,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'24207',1,0,CHBLK,52)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "863", + "_RCID": "31939", + "_name": "cblohd" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD3" + }, + { + "_index": "1", + "__text": "VERCSA" + } + ], + "instruction": "LS(DASH,2,CHGRD);SY(RACNSP01);TE('sf clr %4.1lf','VERCSA',3,1,2,'24207',1,0,CHBLK,52)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "864", + "_RCID": "31940", + "_name": "cblohd" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD1" + } + ], + "instruction": "LS(DASH,2,CHGRD);SY(RACNSP01)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "865", + "_RCID": "31941", + "_name": "cblohd" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD3" + } + ], + "instruction": "LS(DASH,2,CHGRD);SY(RACNSP01)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "866", + "_RCID": "31942", + "_name": "cblohd" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "VERCLR" + } + ], + "instruction": "LS(DASH,2,CHGRD);TE('sf clr %4.1lf','VERCLR',3,1,2,'24207',1,0,CHBLK,52)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "867", + "_RCID": "31943", + "_name": "cblohd" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "VERCSA" + } + ], + "instruction": "LS(DASH,2,CHGRD);TE('sf clr %4.1lf','VERCSA',3,1,2,'24207',1,0,CHBLK,52)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "868", + "_RCID": "31944", + "_name": "cblohd" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,2,CHGRD)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "869", + "_RCID": "31945", + "_name": "cblohd" + }, + { + "type": "Line", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "CS(CLRLIN01)", + "display-cat": "Mariners", + "comment": "53020", + "_id": "870", + "_RCID": "31946", + "_name": "clrlin" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCON2" + }, + { + "_index": "1", + "__text": "CONRAD1" + } + ], + "instruction": "LS(SOLD,3,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "871", + "_RCID": "31947", + "_name": "convyr" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCON2" + }, + { + "_index": "1", + "__text": "CONRAD3" + } + ], + "instruction": "LS(SOLD,3,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "872", + "_RCID": "31948", + "_name": "convyr" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD1" + } + ], + "instruction": "LS(DASH,4,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "873", + "_RCID": "31949", + "_name": "convyr" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD3" + } + ], + "instruction": "LS(DASH,4,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "874", + "_RCID": "31950", + "_name": "convyr" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,4,CHGRD);TE('clr %4.1lf','VERCLR',3,1,2,'15110',1,0,CHBLK,11)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "875", + "_RCID": "31951", + "_name": "convyr" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,3,DNGHL)", + "display-cat": "Mariners", + "comment": "53010", + "_id": "876", + "_RCID": "31952", + "_name": "dnghlt" + }, + { + "type": "Line", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "CS(VRMEBL01)", + "display-cat": "Mariners", + "comment": "61010", + "_id": "877", + "_RCID": "31953", + "_name": "ebline" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFRY1" + } + ], + "instruction": "LC(FERYRT01)", + "display-cat": "Standard", + "comment": "25030", + "_id": "878", + "_RCID": "31954", + "_name": "feryrt" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFRY2" + } + ], + "instruction": "LC(FERYRT02)", + "display-cat": "Standard", + "comment": "25030", + "_id": "879", + "_RCID": "31955", + "_name": "feryrt" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LC(FERYRT02)", + "display-cat": "Standard", + "comment": "25030", + "_id": "880", + "_RCID": "31956", + "_name": "feryrt" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATGAT2" + } + ], + "instruction": "LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "881", + "_RCID": "31957", + "_name": "gatcon" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATGAT3" + } + ], + "instruction": "LS(SOLD,2,CSTLN);SY(GATCON04)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "882", + "_RCID": "31958", + "_name": "gatcon" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATGAT4" + } + ], + "instruction": "LS(SOLD,2,CSTLN);SY(GATCON03)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "883", + "_RCID": "31959", + "_name": "gatcon" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CATGAT5" + } + ], + "instruction": "LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "884", + "_RCID": "31960", + "_name": "gatcon" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "885", + "_RCID": "31961", + "_name": "gatcon" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "CS(LEGLIN02)", + "display-cat": "Standard", + "comment": "42210", + "_id": "886", + "_RCID": "31962", + "_name": "leglin" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,2,NINFO);TX(OBJNAM,3,3,2,'15110',0,1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "53050", + "_id": "887", + "_RCID": "31963", + "_name": "marfea" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,ADINF)", + "display-cat": "Mariners", + "comment": "55010", + "_id": "888", + "_RCID": "31964", + "_name": "mnufea" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "CS(PASTRK01)", + "display-cat": "Mariners", + "comment": "52430", + "_id": "889", + "_RCID": "31965", + "_name": "pastrk" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD1" + } + ], + "instruction": "LS(SOLD,2,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'24207',1,-1,CHBLK,52)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "890", + "_RCID": "31966", + "_name": "pipohd" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "CONRAD3" + } + ], + "instruction": "LS(SOLD,2,CHGRD);SY(RACNSP01);TE('clr %4.1lf','VERCLR',3,1,2,'24207',1,-1,CHBLK,52)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "891", + "_RCID": "31967", + "_name": "pipohd" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,2,CHGRD);TE('clr %4.1lf','VERCLR',3,1,2,'24207',1,-1,CHBLK,52)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "892", + "_RCID": "31968", + "_name": "pipohd" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "893", + "_RCID": "31969", + "_name": "ponton" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "transf2" + } + ], + "instruction": "LS(SOLD,1,NINFO);TX(loctim,3,1,2,'15110',0,-1,CHBLK,50);TX('TPL',3,3,2,'15110',0,1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62020", + "_id": "894", + "_RCID": "31970", + "_name": "poslin" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,NINFO);TX(loctim,3,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62020", + "_id": "895", + "_RCID": "31971", + "_name": "poslin" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC1" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "LS(DASH,1,TRFCD);SY(RDOCAL02,ORIENT);TX(OBJNAM,3,1,2,'24207',1,-1,CHBLK,21);TX(COMCHA,3,1,2,'24207',1,1,CHBLK,52)", + "display-cat": "Standard", + "comment": "15060", + "_id": "896", + "_RCID": "31972", + "_name": "rdocal" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC2" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "LS(DASH,1,TRFCD);SY(RDOCAL02,ORIENT);TX(OBJNAM,3,1,2,'24207',1,-1,CHBLK,21);TX(COMCHA,3,1,2,'24207',1,1,CHBLK,52)", + "display-cat": "Standard", + "comment": "15060", + "_id": "897", + "_RCID": "31973", + "_name": "rdocal" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC3" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "LS(DASH,1,TRFCD);SY(RDOCAL02,ORIENT);TX(OBJNAM,3,1,2,'24207',1,-1,CHBLK,21);TX(COMCHA,3,1,2,'24207',1,1,CHBLK,52)", + "display-cat": "Standard", + "comment": "15060", + "_id": "898", + "_RCID": "31974", + "_name": "rdocal" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC4" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "LS(DASH,1,TRFCD);SY(RDOCAL03,ORIENT);TX(OBJNAM,3,1,2,'24207',1,-1,CHBLK,21);TX(COMCHA,3,1,2,'24207',1,1,CHBLK,52)", + "display-cat": "Standard", + "comment": "15060", + "_id": "899", + "_RCID": "31975", + "_name": "rdocal" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,1,TRFCD);SY(RCLDEF01);TX(OBJNAM,3,2,2,'24207',1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "15060", + "_id": "900", + "_RCID": "31976", + "_name": "rdocal" + }, + { + "type": "Line", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "NATSUR6" + } + ], + "instruction": "LS(DOTT,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "901", + "_RCID": "31977", + "_name": "rivbnk" + }, + { + "type": "Line", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "NATSUR9" + } + ], + "instruction": "LS(DOTT,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "902", + "_RCID": "31978", + "_name": "rivbnk" + }, + { + "type": "Line", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "catbnk3" + } + ], + "instruction": "LS(SOLD,2,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "903", + "_RCID": "31979", + "_name": "rivbnk" + }, + { + "type": "Line", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,CSTLN)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "904", + "_RCID": "31980", + "_name": "rivbnk" + }, + { + "type": "Line", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,CURSR)", + "display-cat": "Mariners", + "comment": "61030", + "_id": "905", + "_RCID": "31981", + "_name": "rngrng" + }, + { + "type": "Line", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "CS(SLCONS03)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "906", + "_RCID": "31982", + "_name": "slcons" + }, + { + "type": "Line", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "CS(VRMEBL01)", + "display-cat": "Mariners", + "comment": "61010", + "_id": "907", + "_RCID": "31983", + "_name": "vrmark" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,2,NINFO);TX(loctim,3,3,2,'15110',0,1,CHBLK,50);TX(usrmrk,3,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "52010", + "_id": "908", + "_RCID": "31984", + "_name": "wholin" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Lines", + "instruction": "LS(DOTT,1,CHGRD)", + "display-cat": "Other", + "comment": "31050", + "_id": "909", + "_RCID": "31985", + "_name": "wtwaxs" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Lines", + "instruction": "LS(DOTT,1,CHGRD)", + "display-cat": "Other", + "comment": "31050", + "_id": "910", + "_RCID": "31986", + "_name": "wtwprf" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHCRDEL1" + } + ], + "instruction": "LC(CHCRDEL1)", + "display-cat": "Other", + "comment": "33020", + "_id": "911", + "_RCID": "31987", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHCRID01" + } + ], + "instruction": "LC(CHCRID01)", + "display-cat": "Other", + "comment": "33020", + "_id": "912", + "_RCID": "31988", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEERBLNA01" + } + ], + "instruction": "LC(ERBLNA01)", + "display-cat": "Mariners", + "comment": "61010", + "_id": "913", + "_RCID": "31989", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEERBLNB01" + } + ], + "instruction": "LC(ERBLNB01)", + "display-cat": "Mariners", + "comment": "61010", + "_id": "914", + "_RCID": "31990", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEGRIDLINE" + } + ], + "instruction": "LS(SOLD,1,CHGRD)", + "display-cat": "Standard", + "comment": "10000", + "_id": "915", + "_RCID": "31991", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEHODATA01" + } + ], + "instruction": "LC(HODATA01)", + "display-cat": "Standard", + "comment": "11060", + "_id": "916", + "_RCID": "31992", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELOWACC41" + } + ], + "instruction": "LC(LOWACC41)", + "display-cat": "Other", + "comment": "34050", + "_id": "917", + "_RCID": "31993", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEMARSYS51" + } + ], + "instruction": "LC(MARSYS51)", + "display-cat": "Standard", + "comment": "27040", + "_id": "918", + "_RCID": "31994", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEPLNRTE03" + } + ], + "instruction": "LC(PLNRTE03)", + "display-cat": "Displaybase", + "comment": "42210", + "_id": "919", + "_RCID": "31995", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEQUESMRK1" + } + ], + "instruction": "LC(QUESMRK1)", + "display-cat": "Standard", + "comment": "21010", + "_id": "920", + "_RCID": "31996", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODESCLBDY51" + } + ], + "instruction": "LC(SCLBDY51)", + "display-cat": "Standard", + "comment": "21030", + "_id": "921", + "_RCID": "31997", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Area 1", + "radar-prio": "Suppressed", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETIDINF51" + } + ], + "instruction": "LC(TIDINF51)", + "display-cat": "Other", + "comment": "33050", + "_id": "922", + "_RCID": "31998", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEUNITMTR1" + } + ], + "instruction": "LC(UNITMTR1)", + "display-cat": "Standard", + "comment": "11080", + "_id": "923", + "_RCID": "31999", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEAISHEAD" + } + ], + "instruction": "LS(SOLD,1,ARPAT)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "924", + "_RCID": "32000", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEALPLRT" + } + ], + "instruction": "LS(DOTT,2,APLRT)", + "display-cat": "Mariners", + "comment": "52210", + "_id": "925", + "_RCID": "32001", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECLRLIN" + } + ], + "instruction": "LS(SOLD,2,NINFO)", + "display-cat": "Mariners", + "comment": "53020", + "_id": "926", + "_RCID": "32002", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDANGER" + } + ], + "instruction": "LS(DOTT,2,CHBLK)", + "display-cat": "Other", + "comment": "34050", + "_id": "927", + "_RCID": "32003", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE10" + } + ], + "instruction": "LS(SOLD,3,DEPSC)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "928", + "_RCID": "32004", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE11" + } + ], + "instruction": "LS(SOLD,3,TRFCD)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "929", + "_RCID": "32005", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE12" + } + ], + "instruction": "LS(SOLD,3,ADINF)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "930", + "_RCID": "32006", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE13" + } + ], + "instruction": "LS(SOLD,3,RADLO)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "931", + "_RCID": "32007", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE14" + } + ], + "instruction": "LS(SOLD,3,NINFO)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "932", + "_RCID": "32008", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE15" + } + ], + "instruction": "LS(SOLD,3,ADINF)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "933", + "_RCID": "32009", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE16" + } + ], + "instruction": "LS(SOLD,3,NINFO)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "934", + "_RCID": "32010", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE17" + } + ], + "instruction": "LS(SOLD,3,DEPSC)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "935", + "_RCID": "32011", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE18" + } + ], + "instruction": "LS(SOLD,3,RADLO)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "936", + "_RCID": "32012", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE19" + } + ], + "instruction": "LS(SOLD,3,ADINF)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "937", + "_RCID": "32013", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE20" + } + ], + "instruction": "LS(SOLD,3,RESBL)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "938", + "_RCID": "32014", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOBSTRN" + } + ], + "instruction": "LS(DASH,2,CHGRD)", + "display-cat": "Other", + "comment": "34050", + "_id": "939", + "_RCID": "32015", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEHEDNG" + } + ], + "instruction": "LS(SOLD,1,SHIPS)", + "display-cat": "Displaybase", + "comment": "42010", + "_id": "940", + "_RCID": "32016", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE1" + } + ], + "instruction": "LS(SOLD,3,TRFCD)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "941", + "_RCID": "32017", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE2" + } + ], + "instruction": "LS(SOLD,3,RESBL)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "942", + "_RCID": "32018", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE3" + } + ], + "instruction": "LS(SOLD,3,DEPSC)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "943", + "_RCID": "32019", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE4" + } + ], + "instruction": "LS(SOLD,3,RADLO)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "944", + "_RCID": "32020", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE5" + } + ], + "instruction": "LS(SOLD,3,NINFO)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "945", + "_RCID": "32021", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE6" + } + ], + "instruction": "LS(SOLD,3,RADLO)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "946", + "_RCID": "32022", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE7" + } + ], + "instruction": "LS(SOLD,3,RESBL)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "947", + "_RCID": "32023", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE8" + } + ], + "instruction": "LS(SOLD,3,NINFO)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "948", + "_RCID": "32024", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELINE9" + } + ], + "instruction": "LS(SOLD,3,TRFCD)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "949", + "_RCID": "32025", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEPSTRK" + } + ], + "instruction": "LS(SOLD,2,PSTRK)", + "display-cat": "Mariners", + "comment": "52430", + "_id": "950", + "_RCID": "32026", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODESYTRK" + } + ], + "instruction": "LS(SOLD,1,SYTRK)", + "display-cat": "Mariners", + "comment": "52460", + "_id": "951", + "_RCID": "32027", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEARPA" + } + ], + "instruction": "LS(SOLD,2,ARPAT)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "952", + "_RCID": "32028", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEAIS" + } + ], + "instruction": "LS(SOLD,2,ARPAT)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "953", + "_RCID": "32029", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEERB" + } + ], + "instruction": "LS(DASH,2,NINFO)", + "display-cat": "Mariners", + "comment": "61010", + "_id": "954", + "_RCID": "32030", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODESOG" + } + ], + "instruction": "LS(SOLD,1,SHIPS)", + "display-cat": "Displaybase", + "comment": "42010", + "_id": "955", + "_RCID": "32031", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Lines", + "instruction": "LC(QUESMRK1)", + "display-cat": "Standard", + "comment": "21010", + "_id": "956", + "_RCID": "32032", + "_name": "$LINES" + }, + { + "type": "Line", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "TX($TXSTR,$JUSTH=3,$JUSTV=1,$SPACE=2,'15110',0,0,CHBLK,27)", + "display-cat": "Standard", + "comment": "10000", + "_id": "957", + "_RCID": "32033", + "_name": "$TEXTS" + }, + { + "type": "Line", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Lines", + "attrib-code": [ + { + "_index": "0", + "__text": "3_lcode2" + } + ], + "instruction": "LS(DASH,1,CHMGD)", + "display-cat": "Other", + "comment": "34050", + "_id": "958", + "_RCID": "32034", + "_name": "_cmapl" + }, + { + "type": "Line", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(SOLD,1,CHMGD)", + "display-cat": "Standard", + "comment": "10000", + "_id": "959", + "_RCID": "32035", + "_name": "_cmapl" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(QUESMRK1)", + "display-cat": "Standard", + "comment": "21010", + "_id": "960", + "_RCID": "31012", + "_name": "######" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(ACHARE02)", + "display-cat": "Standard", + "comment": "26220", + "_id": "961", + "_RCID": "31013", + "_name": "ACHARE" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(ACHBRT07);TE('%s','OBJNAM',3,1,2,'15110',1,0,CHBLK,29)", + "display-cat": "Standard", + "comment": "26220", + "_id": "962", + "_RCID": "31014", + "_name": "ACHBRT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(ACHPNT01)", + "display-cat": "Standard", + "comment": "10000", + "_id": "963", + "_RCID": "31015", + "_name": "ACHPNT" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(AIRARE02)", + "display-cat": "Other", + "comment": "32240", + "_id": "964", + "_RCID": "31016", + "_name": "AIRARE" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCAM1" + } + ], + "instruction": "SY(BCNCAR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "965", + "_RCID": "31017", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCAM2" + } + ], + "instruction": "SY(BCNCAR02);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "966", + "_RCID": "31018", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCAM3" + } + ], + "instruction": "SY(BCNCAR03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "967", + "_RCID": "31019", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCAM4" + } + ], + "instruction": "SY(BCNCAR04);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "968", + "_RCID": "31020", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BCNDEF13);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "969", + "_RCID": "31021", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BCNISD21);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "970", + "_RCID": "31022", + "_name": "BCNISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,4,3" + }, + { + "_index": "1", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNLAT21);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "971", + "_RCID": "31023", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,4,3" + }, + { + "_index": "1", + "__text": "BCNSHP2" + } + ], + "instruction": "SY(BCNLAT21);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "972", + "_RCID": "31024", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,4,3" + }, + { + "_index": "1", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNLAT15);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "973", + "_RCID": "31025", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,4,3" + }, + { + "_index": "1", + "__text": "BCNSHP4" + } + ], + "instruction": "SY(BCNLAT15);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "974", + "_RCID": "31026", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,4,3" + }, + { + "_index": "1", + "__text": "BCNSHP5" + } + ], + "instruction": "SY(BCNLAT15);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "975", + "_RCID": "31027", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,4,3" + }, + { + "_index": "1", + "__text": "BCNSHP7" + } + ], + "instruction": "SY(BCNLAT21);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "976", + "_RCID": "31028", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,3,4" + }, + { + "_index": "1", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNLAT22);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "977", + "_RCID": "31029", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,3,4" + }, + { + "_index": "1", + "__text": "BCNSHP2" + } + ], + "instruction": "SY(BCNLAT22);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "978", + "_RCID": "31030", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,3,4" + }, + { + "_index": "1", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNLAT16);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "979", + "_RCID": "31031", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,3,4" + }, + { + "_index": "1", + "__text": "BCNSHP4" + } + ], + "instruction": "SY(BCNLAT16);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "980", + "_RCID": "31032", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,3,4" + }, + { + "_index": "1", + "__text": "BCNSHP5" + } + ], + "instruction": "SY(BCNLAT16);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "981", + "_RCID": "31033", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,3,4" + }, + { + "_index": "1", + "__text": "BCNSHP6" + } + ], + "instruction": "SY(BCNLAT16);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "982", + "_RCID": "31034", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,3,4" + }, + { + "_index": "1", + "__text": "BCNSHP7" + } + ], + "instruction": "SY(BCNLAT22);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "983", + "_RCID": "31035", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP6" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(CAIRNS11);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27020", + "_id": "984", + "_RCID": "31036", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + }, + { + "_index": "1", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNLAT21);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "985", + "_RCID": "31037", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + }, + { + "_index": "1", + "__text": "BCNSHP2" + } + ], + "instruction": "SY(BCNLAT21);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "986", + "_RCID": "31038", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + }, + { + "_index": "1", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNLAT15);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "987", + "_RCID": "31039", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + }, + { + "_index": "1", + "__text": "BCNSHP4" + } + ], + "instruction": "SY(BCNLAT15);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "988", + "_RCID": "31040", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + }, + { + "_index": "1", + "__text": "BCNSHP5" + } + ], + "instruction": "SY(BCNLAT15);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "989", + "_RCID": "31041", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + }, + { + "_index": "1", + "__text": "BCNSHP7" + } + ], + "instruction": "SY(BCNLAT21);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "990", + "_RCID": "31042", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + }, + { + "_index": "1", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNLAT22);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "991", + "_RCID": "31043", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + }, + { + "_index": "1", + "__text": "BCNSHP2" + } + ], + "instruction": "SY(BCNLAT22);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "992", + "_RCID": "31044", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + }, + { + "_index": "1", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNLAT16);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "993", + "_RCID": "31045", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + }, + { + "_index": "1", + "__text": "BCNSHP4" + } + ], + "instruction": "SY(BCNLAT16);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "994", + "_RCID": "31046", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + }, + { + "_index": "1", + "__text": "BCNSHP5" + } + ], + "instruction": "SY(BCNLAT16);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "995", + "_RCID": "31047", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + }, + { + "_index": "1", + "__text": "BCNSHP7" + } + ], + "instruction": "SY(BCNLAT22);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "996", + "_RCID": "31048", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BCNLAT15);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "997", + "_RCID": "31049", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BCNLAT16);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "998", + "_RCID": "31050", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP6" + } + ], + "instruction": "SY(CAIRNS01);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27020", + "_id": "999", + "_RCID": "31051", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BCNLAT15);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1000", + "_RCID": "31052", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BCNLAT16);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1001", + "_RCID": "31053", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BCNDEF13);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1002", + "_RCID": "31054", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNSAW21);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1003", + "_RCID": "31055", + "_name": "BCNSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP2" + } + ], + "instruction": "SY(BCNSAW21);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1004", + "_RCID": "31056", + "_name": "BCNSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNSAW13);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1005", + "_RCID": "31057", + "_name": "BCNSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP4" + } + ], + "instruction": "SY(BCNSAW13);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1006", + "_RCID": "31058", + "_name": "BCNSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + } + ], + "instruction": "SY(BCNSAW13);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1007", + "_RCID": "31059", + "_name": "BCNSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP7" + } + ], + "instruction": "SY(BCNSAW21);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1008", + "_RCID": "31060", + "_name": "BCNSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BCNSAW13);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1009", + "_RCID": "31061", + "_name": "BCNSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP6" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(CAIRNS11);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1010", + "_RCID": "31062", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM18" + } + ], + "instruction": "SY(NOTBRD11);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1011", + "_RCID": "31063", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM44" + } + ], + "instruction": "SY(BCNSPP13);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1012", + "_RCID": "31064", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM52" + } + ], + "instruction": "SY(BCNDEF13);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1013", + "_RCID": "31065", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNSPP21);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1014", + "_RCID": "31066", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNSPP13);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1015", + "_RCID": "31067", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP4" + } + ], + "instruction": "SY(BCNSPP13);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1016", + "_RCID": "31068", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + } + ], + "instruction": "SY(BCNSPP13);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1017", + "_RCID": "31069", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP6" + } + ], + "instruction": "SY(CAIRNS01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1018", + "_RCID": "31070", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP7" + } + ], + "instruction": "SY(BCNSPP21);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1019", + "_RCID": "31071", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BCNSPP21);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1020", + "_RCID": "31072", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BRTHNO01);TE('%s','OBJNAM',3,1,2,'15110',1,0,CHBLK,29)", + "display-cat": "Other", + "comment": "32440", + "_id": "1021", + "_RCID": "31073", + "_name": "BERTHS" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCAM1" + } + ], + "instruction": "SY(BOYCAR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1022", + "_RCID": "31074", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCAM2" + } + ], + "instruction": "SY(BOYCAR02);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1023", + "_RCID": "31075", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCAM3" + } + ], + "instruction": "SY(BOYCAR03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1024", + "_RCID": "31076", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATCAM4" + } + ], + "instruction": "SY(BOYCAR04);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1025", + "_RCID": "31077", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BOYDEF03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1026", + "_RCID": "31078", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BOYMOR11);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1027", + "_RCID": "31079", + "_name": "BOYINB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BOYISD12);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1028", + "_RCID": "31080", + "_name": "BOYISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYLAT14);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1029", + "_RCID": "31081", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYLAT13);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1030", + "_RCID": "31082", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYLAT24);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1031", + "_RCID": "31083", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYLAT23);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1032", + "_RCID": "31084", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLAM3" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYLAT24);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1033", + "_RCID": "31085", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLAM3" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYLAT23);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1034", + "_RCID": "31086", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLAM4" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYLAT14);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1035", + "_RCID": "31087", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLAM4" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYLAT13);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1036", + "_RCID": "31088", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYLAT14);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1037", + "_RCID": "31089", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYLAT13);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1038", + "_RCID": "31090", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYLAT24);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1039", + "_RCID": "31091", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYLAT23);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1040", + "_RCID": "31092", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLAM1" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYLAT24);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1041", + "_RCID": "31093", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLAM1" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYLAT23);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1042", + "_RCID": "31094", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLAM2" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYLAT14);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1043", + "_RCID": "31095", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLAM2" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYLAT13);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1044", + "_RCID": "31096", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BOYDEF03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1045", + "_RCID": "31097", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BOYSAW12);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1046", + "_RCID": "31098", + "_name": "BOYSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM19" + }, + { + "_index": "1", + "__text": "BOYSHP1" + } + ], + "instruction": "SY(BOYSPP15);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1047", + "_RCID": "31099", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM19" + }, + { + "_index": "1", + "__text": "BOYSHP2" + } + ], + "instruction": "SY(BOYSPP25);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1048", + "_RCID": "31100", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM54" + }, + { + "_index": "1", + "__text": "BOYSHP1" + } + ], + "instruction": "SY(BOYSPP15);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27010", + "_id": "1049", + "_RCID": "31101", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM54" + }, + { + "_index": "1", + "__text": "BOYSHP2" + } + ], + "instruction": "SY(BOYSPP25);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27010", + "_id": "1050", + "_RCID": "31102", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM54" + }, + { + "_index": "1", + "__text": "BOYSHP4" + } + ], + "instruction": "SY(BOYSPP11);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27010", + "_id": "1051", + "_RCID": "31103", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM54" + }, + { + "_index": "1", + "__text": "BOYSHP5" + } + ], + "instruction": "SY(BOYSPP11);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27010", + "_id": "1052", + "_RCID": "31104", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM15" + } + ], + "instruction": "SY(BOYSUP02);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1053", + "_RCID": "31105", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM52" + } + ], + "instruction": "SY(BOYDEF03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1054", + "_RCID": "31106", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + } + ], + "instruction": "SY(BOYSPP15);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27010", + "_id": "1055", + "_RCID": "31107", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + } + ], + "instruction": "SY(BOYSPP25);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27010", + "_id": "1056", + "_RCID": "31108", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + } + ], + "instruction": "SY(BOYSPP11);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27010", + "_id": "1057", + "_RCID": "31109", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + } + ], + "instruction": "SY(BOYSPP11);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27010", + "_id": "1058", + "_RCID": "31110", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + } + ], + "instruction": "SY(BOYSPP11);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27010", + "_id": "1059", + "_RCID": "31111", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP6" + } + ], + "instruction": "SY(BOYSPP11);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27010", + "_id": "1060", + "_RCID": "31112", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP7" + } + ], + "instruction": "SY(BOYSUP02);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1061", + "_RCID": "31113", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP8" + } + ], + "instruction": "SY(BOYSPP11);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27010", + "_id": "1062", + "_RCID": "31114", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM9" + } + ], + "instruction": "SY(BOYSUP02);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1063", + "_RCID": "31115", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BOYSPP11);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1064", + "_RCID": "31116", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "1065", + "_RCID": "31117", + "_name": "BRIDGE" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BUAARE02);TX(OBJNAM,3,2,2,'15114',1,0,CHBLK,26)", + "display-cat": "Standard", + "comment": "22240", + "_id": "1066", + "_RCID": "31118", + "_name": "BUAARE" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1067", + "_RCID": "31119", + "_name": "BUIREL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN33" + }, + { + "_index": "1", + "__text": "CONVIS1" + }, + { + "_index": "2", + "__text": "OBJNAM" + } + ], + "instruction": "SY(POSGEN03);TX(OBJNAM,3,2,2,'15110',1,0,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1068", + "_RCID": "31120", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN20" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1069", + "_RCID": "31121", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN21" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1070", + "_RCID": "31122", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN22" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL14)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1071", + "_RCID": "31123", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN23" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL14)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1072", + "_RCID": "31124", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN24" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL14)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1073", + "_RCID": "31125", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN25" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL14)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1074", + "_RCID": "31126", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN26" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL15)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1075", + "_RCID": "31127", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN27" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL15)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1076", + "_RCID": "31128", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN33" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(POSGEN03)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1077", + "_RCID": "31129", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN35" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TNKCON12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1078", + "_RCID": "31130", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN33" + }, + { + "_index": "1", + "__text": "OBJNAM" + } + ], + "instruction": "SY(POSGEN03);TX(OBJNAM,3,2,2,'15110',1,0,CHBLK,26)", + "display-cat": "Other", + "comment": "32220", + "_id": "1079", + "_RCID": "31131", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN20" + } + ], + "instruction": "SY(BUIREL01)", + "display-cat": "Other", + "comment": "32220", + "_id": "1080", + "_RCID": "31132", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN21" + } + ], + "instruction": "SY(BUIREL01)", + "display-cat": "Other", + "comment": "32220", + "_id": "1081", + "_RCID": "31133", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN22" + } + ], + "instruction": "SY(BUIREL04)", + "display-cat": "Other", + "comment": "32220", + "_id": "1082", + "_RCID": "31134", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN23" + } + ], + "instruction": "SY(BUIREL04)", + "display-cat": "Other", + "comment": "32220", + "_id": "1083", + "_RCID": "31135", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN24" + } + ], + "instruction": "SY(BUIREL04)", + "display-cat": "Other", + "comment": "32220", + "_id": "1084", + "_RCID": "31136", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN25" + } + ], + "instruction": "SY(BUIREL04)", + "display-cat": "Other", + "comment": "32220", + "_id": "1085", + "_RCID": "31137", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN26" + } + ], + "instruction": "SY(BUIREL05)", + "display-cat": "Other", + "comment": "32220", + "_id": "1086", + "_RCID": "31138", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN27" + } + ], + "instruction": "SY(BUIREL05)", + "display-cat": "Other", + "comment": "32220", + "_id": "1087", + "_RCID": "31139", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN33" + } + ], + "instruction": "SY(POSGEN03)", + "display-cat": "Other", + "comment": "32220", + "_id": "1088", + "_RCID": "31140", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN35" + } + ], + "instruction": "SY(TNKCON02)", + "display-cat": "Other", + "comment": "32220", + "_id": "1089", + "_RCID": "31141", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUISGL11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1090", + "_RCID": "31142", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BUISGL01)", + "display-cat": "Other", + "comment": "32220", + "_id": "1091", + "_RCID": "31143", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CGUSTA02)", + "display-cat": "Other", + "comment": "38030", + "_id": "1092", + "_RCID": "31144", + "_name": "CGUSTA" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "1093", + "_RCID": "31145", + "_name": "CHKPNT" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CRANES01)", + "display-cat": "Other", + "comment": "32440", + "_id": "1094", + "_RCID": "31146", + "_name": "CRANES" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CHINFO06)", + "display-cat": "Standard", + "comment": "26050", + "_id": "1095", + "_RCID": "31147", + "_name": "CTNARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(POSGEN04);TE('%s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21);TE('%4.1lf (m)','HEIGHT',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Other", + "comment": "32250", + "_id": "1096", + "_RCID": "31148", + "_name": "CTRPNT" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CHINFO07)", + "display-cat": "Standard", + "comment": "26250", + "_id": "1097", + "_RCID": "31149", + "_name": "CTSARE" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CURVEL" + } + ], + "instruction": "SY(CURENT01,ORIENT);TE('%4.1lf kn','CURVEL',3,1,2,'15110',1,-1,CHBLK,31)", + "display-cat": "Other", + "comment": "33060", + "_id": "1098", + "_RCID": "31150", + "_name": "CURENT" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + } + ], + "instruction": "SY(CURENT01,ORIENT)", + "display-cat": "Other", + "comment": "33060", + "_id": "1099", + "_RCID": "31151", + "_name": "CURENT" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "1100", + "_RCID": "31152", + "_name": "CURENT" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDAM3" + } + ], + "instruction": "SY(CHINFO06)", + "display-cat": "Standard", + "comment": "22010", + "_id": "1101", + "_RCID": "31153", + "_name": "DAMCON" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "1102", + "_RCID": "31154", + "_name": "DAMCON" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + } + ], + "instruction": "SY(DAYSQR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "1103", + "_RCID": "31155", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP20" + } + ], + "instruction": "SY(DAYSQR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "1104", + "_RCID": "31156", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + } + ], + "instruction": "SY(DAYSQR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "1105", + "_RCID": "31157", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + } + ], + "instruction": "SY(DAYTRI01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "1106", + "_RCID": "31158", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP25" + } + ], + "instruction": "SY(DAYTRI05);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "1107", + "_RCID": "31159", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(DAYSQR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "1108", + "_RCID": "31160", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDIS1" + } + ], + "instruction": "SY(DISMAR04);TX(INFORM,3,2,2,'15110',2,0,CHMGD,21)", + "display-cat": "Other", + "comment": "32430", + "_id": "1109", + "_RCID": "31161", + "_name": "DISMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(DISMAR03);TX(INFORM,3,2,2,'15110',2,0,CHMGD,21)", + "display-cat": "Other", + "comment": "32430", + "_id": "1110", + "_RCID": "31162", + "_name": "DISMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CHINFO07)", + "display-cat": "Standard", + "comment": "26240", + "_id": "1111", + "_RCID": "31163", + "_name": "DMPGRD" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(FOGSIG01)", + "display-cat": "Standard", + "comment": "27080", + "_id": "1112", + "_RCID": "31164", + "_name": "FOGSIG" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "SY(FORSTC11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1113", + "_RCID": "31165", + "_name": "FORSTC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(FORSTC01)", + "display-cat": "Other", + "comment": "32220", + "_id": "1114", + "_RCID": "31166", + "_name": "FORSTC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF1" + } + ], + "instruction": "SY(FSHFAC03)", + "display-cat": "Other", + "comment": "34040", + "_id": "1115", + "_RCID": "31167", + "_name": "FSHFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF2" + } + ], + "instruction": "SY(FSHFAC02)", + "display-cat": "Other", + "comment": "34040", + "_id": "1116", + "_RCID": "31168", + "_name": "FSHFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF3" + } + ], + "instruction": "SY(FSHFAC02)", + "display-cat": "Other", + "comment": "34040", + "_id": "1117", + "_RCID": "31169", + "_name": "FSHFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF4" + } + ], + "instruction": "SY(FSHFAC02)", + "display-cat": "Other", + "comment": "34040", + "_id": "1118", + "_RCID": "31170", + "_name": "FSHFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(FSHHAV01)", + "display-cat": "Other", + "comment": "34040", + "_id": "1119", + "_RCID": "31171", + "_name": "FSHFAC" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATGAT2" + } + ], + "instruction": "SY(GATCON04)", + "display-cat": "Standard", + "comment": "22010", + "_id": "1120", + "_RCID": "31172", + "_name": "GATCON" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATGAT3" + } + ], + "instruction": "SY(GATCON04)", + "display-cat": "Other", + "comment": "32440", + "_id": "1121", + "_RCID": "31173", + "_name": "GATCON" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATGAT4" + } + ], + "instruction": "SY(GATCON03)", + "display-cat": "Other", + "comment": "32440", + "_id": "1122", + "_RCID": "31174", + "_name": "GATCON" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(GATCON04)", + "display-cat": "Standard", + "comment": "22010", + "_id": "1123", + "_RCID": "31175", + "_name": "GATCON" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "1124", + "_RCID": "31176", + "_name": "GRIDRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATHAF1" + } + ], + "instruction": "SY(ROLROL01)", + "display-cat": "Other", + "comment": "32410", + "_id": "1125", + "_RCID": "31177", + "_name": "HRBFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATHAF4" + } + ], + "instruction": "SY(HRBFAC09)", + "display-cat": "Other", + "comment": "32410", + "_id": "1126", + "_RCID": "31178", + "_name": "HRBFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATHAF5" + } + ], + "instruction": "SY(SMCFAC02)", + "display-cat": "Other", + "comment": "32410", + "_id": "1127", + "_RCID": "31179", + "_name": "HRBFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CHINFO07)", + "display-cat": "Other", + "comment": "32410", + "_id": "1128", + "_RCID": "31180", + "_name": "HRBFAC" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(HULKES01)", + "display-cat": "Standard", + "comment": "12410", + "_id": "1129", + "_RCID": "31181", + "_name": "HULKES" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CHINFO07)", + "display-cat": "Standard", + "comment": "26250", + "_id": "1130", + "_RCID": "31182", + "_name": "ICNARE" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "CS(LIGHTS05)", + "display-cat": "Standard", + "comment": "27070", + "_id": "1131", + "_RCID": "31183", + "_name": "LIGHTS" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(LITFLT02);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1132", + "_RCID": "31184", + "_name": "LITFLT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(LITVES02);TE('LtV %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17011", + "_id": "1133", + "_RCID": "31185", + "_name": "LITVES" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(LNDARE01);CS(QUAPOS01;TX(OBJNAM,1,2,3,'15118',-1,-1,CHBLK,26))", + "display-cat": "Displaybase", + "comment": "12010", + "_id": "1134", + "_RCID": "31186", + "_name": "LNDARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(POSGEN04);TX(ELEVAT,3,2,2,'15110',1,-1,CHBLK,31)", + "display-cat": "Other", + "comment": "32010", + "_id": "1135", + "_RCID": "31187", + "_name": "LNDELV" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK15" + }, + { + "_index": "1", + "__text": "FUNCTN20" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1136", + "_RCID": "31188", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK15" + }, + { + "_index": "1", + "__text": "FUNCTN21" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1137", + "_RCID": "31189", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN20" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1138", + "_RCID": "31190", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN21" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1139", + "_RCID": "31191", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN33" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TOWERS03);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1140", + "_RCID": "31192", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK20" + }, + { + "_index": "1", + "__text": "FUNCTN20" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1141", + "_RCID": "31193", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK20" + }, + { + "_index": "1", + "__text": "FUNCTN21" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1142", + "_RCID": "31194", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK20" + }, + { + "_index": "1", + "__text": "FUNCTN26" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL15)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1143", + "_RCID": "31195", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK20" + }, + { + "_index": "1", + "__text": "FUNCTN27" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL15)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1144", + "_RCID": "31196", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK15" + }, + { + "_index": "1", + "__text": "FUNCTN20" + } + ], + "instruction": "SY(BUIREL01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "1145", + "_RCID": "31197", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN20" + } + ], + "instruction": "SY(BUIREL01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "1146", + "_RCID": "31198", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN33" + } + ], + "instruction": "SY(TOWERS01);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "32220", + "_id": "1147", + "_RCID": "31199", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK20" + }, + { + "_index": "1", + "__text": "FUNCTN20" + } + ], + "instruction": "SY(BUIREL01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "1148", + "_RCID": "31200", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK10" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(MONUMT12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1149", + "_RCID": "31201", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK12" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(MONUMT12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1150", + "_RCID": "31202", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK13" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(MONUMT12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1151", + "_RCID": "31203", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK15" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(DOMES011)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1152", + "_RCID": "31204", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK16" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(RASCAN11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1153", + "_RCID": "31205", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TOWERS03)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1154", + "_RCID": "31206", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK18" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(WNDMIL12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1155", + "_RCID": "31207", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK19" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(WIMCON11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1156", + "_RCID": "31208", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK20" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(POSGEN03)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1157", + "_RCID": "31209", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK1" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(CAIRNS11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1158", + "_RCID": "31210", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK3" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(CHIMNY11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1159", + "_RCID": "31211", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK4" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(DSHAER11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1160", + "_RCID": "31212", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK5" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(FLGSTF01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1161", + "_RCID": "31213", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK6" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(FLASTK11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1162", + "_RCID": "31214", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK7" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(MSTCON14)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1163", + "_RCID": "31215", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK8" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(POSGEN03)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1164", + "_RCID": "31216", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK9" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(MONUMT12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1165", + "_RCID": "31217", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK15" + } + ], + "instruction": "SY(DOMES001)", + "display-cat": "Standard", + "comment": "32220", + "_id": "1166", + "_RCID": "31218", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK16" + } + ], + "instruction": "SY(RASCAN01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "1167", + "_RCID": "31219", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + } + ], + "instruction": "SY(TOWERS01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "1168", + "_RCID": "31220", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK3" + } + ], + "instruction": "SY(CHIMNY01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "1169", + "_RCID": "31221", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK6" + } + ], + "instruction": "SY(FLASTK01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "1170", + "_RCID": "31222", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK7" + } + ], + "instruction": "SY(MSTCON04)", + "display-cat": "Standard", + "comment": "32220", + "_id": "1171", + "_RCID": "31223", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "SY(POSGEN03)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1172", + "_RCID": "31224", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(POSGEN01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "1173", + "_RCID": "31225", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(POSGEN04);TX(OBJNAM,1,2,2,'15120',0,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "21060", + "_id": "1174", + "_RCID": "31226", + "_name": "LNDRGN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(LOCMAG01)", + "display-cat": "Other", + "comment": "31080", + "_id": "1175", + "_RCID": "31227", + "_name": "LOCMAG" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "1176", + "_RCID": "31228", + "_name": "LOGPON" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(MAGVAR01);TX(VALMAG,3,1,2,'15110',1,-1,CHBLK,27)", + "display-cat": "Other", + "comment": "31080", + "_id": "1177", + "_RCID": "31229", + "_name": "MAGVAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(MARCUL02)", + "display-cat": "Standard", + "comment": "26210", + "_id": "1178", + "_RCID": "31230", + "_name": "MARCUL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CHINFO06)", + "display-cat": "Standard", + "comment": "26040", + "_id": "1179", + "_RCID": "31231", + "_name": "MIPARE" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(MONUMT12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1180", + "_RCID": "31232", + "_name": "MONUMT" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATMOR1" + } + ], + "instruction": "SY(MORFAC03)", + "display-cat": "Standard", + "comment": "12410", + "_id": "1181", + "_RCID": "31233", + "_name": "MORFAC" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATMOR2" + } + ], + "instruction": "SY(MORFAC04)", + "display-cat": "Standard", + "comment": "12410", + "_id": "1182", + "_RCID": "31234", + "_name": "MORFAC" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATMOR3" + } + ], + "instruction": "SY(PILPNT02)", + "display-cat": "Other", + "comment": "32440", + "_id": "1183", + "_RCID": "31235", + "_name": "MORFAC" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATMOR5" + } + ], + "instruction": "SY(PILPNT02)", + "display-cat": "Standard", + "comment": "12410", + "_id": "1184", + "_RCID": "31236", + "_name": "MORFAC" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATMOR7" + } + ], + "instruction": "SY(BOYMOR11)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1185", + "_RCID": "31237", + "_name": "MORFAC" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(MORFAC03)", + "display-cat": "Standard", + "comment": "12410", + "_id": "1186", + "_RCID": "31238", + "_name": "MORFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CHINFO07)", + "display-cat": "Other", + "comment": "31020", + "_id": "1187", + "_RCID": "31239", + "_name": "M_NPUB" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "SYMINS" + } + ], + "instruction": "CS(SYMINS01)", + "display-cat": "Standard", + "comment": "21020", + "_id": "1188", + "_RCID": "31240", + "_name": "NEWOBJ" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "SY(NEWOBJ 01)", + "display-cat": "Standard", + "comment": "21020", + "_id": "1189", + "_RCID": "31241", + "_name": "NEWOBJ" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS10" + }, + { + "_index": "1", + "__text": "VALSOU" + } + ], + "instruction": "SY(FLTHAZ02)", + "display-cat": "Other", + "comment": "34051", + "_id": "1190", + "_RCID": "31242", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS7" + }, + { + "_index": "1", + "__text": "VALSOU" + } + ], + "instruction": "SY(FOULGND1)", + "display-cat": "Other", + "comment": "34051", + "_id": "1191", + "_RCID": "31243", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS8" + }, + { + "_index": "1", + "__text": "VALSOU" + } + ], + "instruction": "SY(FLTHAZ02)", + "display-cat": "Other", + "comment": "34051", + "_id": "1192", + "_RCID": "31244", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS9" + }, + { + "_index": "1", + "__text": "VALSOU" + } + ], + "instruction": "SY(ACHARE02)", + "display-cat": "Other", + "comment": "34051", + "_id": "1193", + "_RCID": "31245", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS10" + } + ], + "instruction": "SY(FLTHAZ02)", + "display-cat": "Other", + "comment": "34050", + "_id": "1194", + "_RCID": "31246", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS7" + } + ], + "instruction": "SY(FOULGND1)", + "display-cat": "Other", + "comment": "34050", + "_id": "1195", + "_RCID": "31247", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS8" + } + ], + "instruction": "SY(FLTHAZ02)", + "display-cat": "Other", + "comment": "34050", + "_id": "1196", + "_RCID": "31248", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS9" + } + ], + "instruction": "SY(ACHARE02)", + "display-cat": "Other", + "comment": "34050", + "_id": "1197", + "_RCID": "31249", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV7" + } + ], + "instruction": "SY(FLTHAZ02)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "1198", + "_RCID": "31250", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "CS(OBSTRN04)", + "display-cat": "Other", + "comment": "34050", + "_id": "1199", + "_RCID": "31251", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(OFSPLF01);TE('Prod %s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "12210", + "_id": "1200", + "_RCID": "31252", + "_name": "OFSPLF" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(PILBOP02);TE('Plt %s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "28010", + "_id": "1201", + "_RCID": "31253", + "_name": "PILBOP" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(PILPNT02)", + "display-cat": "Standard", + "comment": "12410", + "_id": "1202", + "_RCID": "31254", + "_name": "PILPNT" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CHINFO07)", + "display-cat": "Standard", + "comment": "26230", + "_id": "1203", + "_RCID": "31255", + "_name": "PIPARE" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "1204", + "_RCID": "31256", + "_name": "PIPSOL" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(PRCARE12)", + "display-cat": "Standard", + "comment": "15010", + "_id": "1205", + "_RCID": "31257", + "_name": "PRCARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA5" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(FLASTK11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1206", + "_RCID": "31258", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA8" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TNKCON12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1207", + "_RCID": "31259", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA9" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(WIMCON11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1208", + "_RCID": "31260", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA10" + } + ], + "instruction": "SY(PRDINS02)", + "display-cat": "Other", + "comment": "32270", + "_id": "1209", + "_RCID": "31261", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA1" + } + ], + "instruction": "SY(PRDINS02)", + "display-cat": "Other", + "comment": "32270", + "_id": "1210", + "_RCID": "31262", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA2" + } + ], + "instruction": "SY(PRDINS02)", + "display-cat": "Other", + "comment": "32270", + "_id": "1211", + "_RCID": "31263", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA3" + } + ], + "instruction": "SY(PRDINS02)", + "display-cat": "Other", + "comment": "32270", + "_id": "1212", + "_RCID": "31264", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA4" + } + ], + "instruction": "SY(PRDINS02)", + "display-cat": "Other", + "comment": "32270", + "_id": "1213", + "_RCID": "31265", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA5" + } + ], + "instruction": "SY(FLASTK01)", + "display-cat": "Other", + "comment": "32270", + "_id": "1214", + "_RCID": "31266", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA6" + } + ], + "instruction": "SY(TMBYRD01)", + "display-cat": "Other", + "comment": "32270", + "_id": "1215", + "_RCID": "31267", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA7" + } + ], + "instruction": "SY(PRDINS02)", + "display-cat": "Other", + "comment": "32270", + "_id": "1216", + "_RCID": "31268", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA8" + } + ], + "instruction": "SY(TNKCON02)", + "display-cat": "Other", + "comment": "32270", + "_id": "1217", + "_RCID": "31269", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA9" + } + ], + "instruction": "SY(WIMCON01)", + "display-cat": "Other", + "comment": "32270", + "_id": "1218", + "_RCID": "31270", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "1219", + "_RCID": "31271", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(POSGEN03)", + "display-cat": "Standard", + "comment": "12210", + "_id": "1220", + "_RCID": "31272", + "_name": "PYLONS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(RADRFL03)", + "display-cat": "Standard", + "comment": "27230", + "_id": "1221", + "_RCID": "31273", + "_name": "RADRFL" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATRAS2" + } + ], + "instruction": "SY(RDOSTA02);TE('ch %s','COMCHA',3,1,2,'15110',0,0,CHBLK,11)", + "display-cat": "Other", + "comment": "38010", + "_id": "1222", + "_RCID": "31274", + "_name": "RADSTA" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(POSGEN01)", + "display-cat": "Other", + "comment": "38010", + "_id": "1223", + "_RCID": "31275", + "_name": "RADSTA" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "1224", + "_RCID": "31276", + "_name": "RAPIDS" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + } + ], + "instruction": "SY(RCTLPT52,ORIENT)", + "display-cat": "Standard", + "comment": "15020", + "_id": "1225", + "_RCID": "31277", + "_name": "RCTLPT" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(RTLDEF51)", + "display-cat": "Standard", + "comment": "15020", + "_id": "1226", + "_RCID": "31278", + "_name": "RCTLPT" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC1" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(RDOCAL02,ORIENT);TE('%s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21);TE('ch %s','COMCHA',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "1227", + "_RCID": "31279", + "_name": "RDOCAL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC2" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(RDOCAL02,ORIENT);TE('%s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21);TE('ch %s','COMCHA',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "1228", + "_RCID": "31280", + "_name": "RDOCAL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC3" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(RDOCAL02,ORIENT);TE('%s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21);TE('ch %s','COMCHA',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "1229", + "_RCID": "31281", + "_name": "RDOCAL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC4" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(RDOCAL03,ORIENT);TE('%s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21);TE('ch %s','COMCHA',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "1230", + "_RCID": "31282", + "_name": "RDOCAL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(RCLDEF01);TE('%s','OBJNAM',3,2,2,'15110',1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "15060", + "_id": "1231", + "_RCID": "31283", + "_name": "RDOCAL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATROS10" + } + ], + "instruction": "SY(DGPS01DRFSTA01)", + "display-cat": "Other", + "comment": "38010", + "_id": "1232", + "_RCID": "31284", + "_name": "RDOSTA" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(RDOSTA02)", + "display-cat": "Other", + "comment": "38010", + "_id": "1233", + "_RCID": "31285", + "_name": "RDOSTA" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(RETRFL02)", + "display-cat": "Standard", + "comment": "27080", + "_id": "1234", + "_RCID": "31286", + "_name": "RETRFL" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "1235", + "_RCID": "31287", + "_name": "ROADWY" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(RSCSTA02)", + "display-cat": "Other", + "comment": "38030", + "_id": "1236", + "_RCID": "31288", + "_name": "RSCSTA" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(RTPBCN02)", + "display-cat": "Standard", + "comment": "27210", + "_id": "1237", + "_RCID": "31289", + "_name": "RTPBCN" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "1238", + "_RCID": "31290", + "_name": "RUNWAY" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "TX(NATSUR,1,2,2,'15110',0,0,CHBLK,25)", + "display-cat": "Other", + "comment": "34010", + "_id": "1239", + "_RCID": "31291", + "_name": "SBDARE" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "TX(OBJNAM,1,2,3,'15110',0,0,CHBLK,26)", + "display-cat": "Standard", + "comment": "21060", + "_id": "1240", + "_RCID": "31292", + "_name": "SEAARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSIL1" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(SILBUI11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1241", + "_RCID": "31293", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSIL2" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TNKCON12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1242", + "_RCID": "31294", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSIL3" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TOWERS03)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1243", + "_RCID": "31295", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSIL4" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TOWERS12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1244", + "_RCID": "31296", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSIL1" + } + ], + "instruction": "SY(SILBUI01)", + "display-cat": "Other", + "comment": "32220", + "_id": "1245", + "_RCID": "31297", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSIL2" + } + ], + "instruction": "SY(TNKCON02)", + "display-cat": "Other", + "comment": "32220", + "_id": "1246", + "_RCID": "31298", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSIL3" + } + ], + "instruction": "SY(TOWERS01)", + "display-cat": "Other", + "comment": "32220", + "_id": "1247", + "_RCID": "31299", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSIL4" + } + ], + "instruction": "SY(TOWERS02)", + "display-cat": "Other", + "comment": "32220", + "_id": "1248", + "_RCID": "31300", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TNKCON12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1249", + "_RCID": "31301", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(TNKCON02)", + "display-cat": "Other", + "comment": "32220", + "_id": "1250", + "_RCID": "31302", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(SISTAT02)", + "display-cat": "Standard", + "comment": "28020", + "_id": "1251", + "_RCID": "31303", + "_name": "SISTAT" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(SISTAT02)", + "display-cat": "Standard", + "comment": "28020", + "_id": "1252", + "_RCID": "31304", + "_name": "SISTAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(MORFAC03);CS(SLCONS03)", + "display-cat": "Standard", + "comment": "12410", + "_id": "1253", + "_RCID": "31305", + "_name": "SLCONS" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "SY(HILTOP01)", + "display-cat": "Other", + "comment": "32010", + "_id": "1254", + "_RCID": "31306", + "_name": "SLOGRD" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "SY(HILTOP11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1255", + "_RCID": "31307", + "_name": "SLOTOP" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "SY(HILTOP01)", + "display-cat": "Other", + "comment": "32010", + "_id": "1256", + "_RCID": "31308", + "_name": "SLOTOP" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "1257", + "_RCID": "31309", + "_name": "SMCFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(SNDWAV02)", + "display-cat": "Standard", + "comment": "24010", + "_id": "1258", + "_RCID": "31310", + "_name": "SNDWAV" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "CS(SOUNDG02)", + "display-cat": "Other", + "comment": "33010", + "_id": "1259", + "_RCID": "31311", + "_name": "SOUNDG" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CHINFO06)", + "display-cat": "Standard", + "comment": "26040", + "_id": "1260", + "_RCID": "31312", + "_name": "SPLARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(SPRING02)", + "display-cat": "Other", + "comment": "34020", + "_id": "1261", + "_RCID": "31313", + "_name": "SPRING" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "", + "display-cat": "Standard", + "comment": "0", + "_id": "1262", + "_RCID": "31314", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(TOWERS03);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1263", + "_RCID": "31315", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CAT_TS1" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(FLDSTR01,ORIENT);TE('%4.1lf kn','CURVEL',3,1,2,'15110',1,-1,CHBLK,31)", + "display-cat": "Other", + "comment": "33060", + "_id": "1264", + "_RCID": "31316", + "_name": "TS_FEB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CAT_TS2" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(EBBSTR01,ORIENT);TE('%4.1lf kn','CURVEL',3,1,2,'15110',1,-1,CHBLK,31)", + "display-cat": "Other", + "comment": "33060", + "_id": "1265", + "_RCID": "31317", + "_name": "TS_FEB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CAT_TS3" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(CURENT01,ORIENT);TE('%4.1lf kn','CURVEL',3,1,2,'15110',1,-1,CHBLK,31)", + "display-cat": "Other", + "comment": "33060", + "_id": "1266", + "_RCID": "31318", + "_name": "TS_FEB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CURDEF01)", + "display-cat": "Other", + "comment": "33060", + "_id": "1267", + "_RCID": "31319", + "_name": "TS_FEB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(TIDSTR01)", + "display-cat": "Other", + "comment": "33060", + "_id": "1268", + "_RCID": "31320", + "_name": "TS_PAD" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(TIDSTR01)", + "display-cat": "Other", + "comment": "33060", + "_id": "1269", + "_RCID": "31321", + "_name": "TS_PNH" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(TIDSTR01)", + "display-cat": "Other", + "comment": "33060", + "_id": "1270", + "_RCID": "31322", + "_name": "TS_PRH" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(TIDSTR01)", + "display-cat": "Other", + "comment": "33060", + "_id": "1271", + "_RCID": "31323", + "_name": "TS_TIS" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "1272", + "_RCID": "31324", + "_name": "TUNNEL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(TIDEHT01)", + "display-cat": "Other", + "comment": "33050", + "_id": "1273", + "_RCID": "31325", + "_name": "T_HMON" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(TIDEHT01)", + "display-cat": "Other", + "comment": "33050", + "_id": "1274", + "_RCID": "31326", + "_name": "T_NHMN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(TIDEHT01)", + "display-cat": "Other", + "comment": "33050", + "_id": "1275", + "_RCID": "31327", + "_name": "T_TIMS" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "CS(OBSTRN04)", + "display-cat": "Other", + "comment": "34050", + "_id": "1276", + "_RCID": "31328", + "_name": "UWTROC" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG13" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "1277", + "_RCID": "31329", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG14" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "1278", + "_RCID": "31330", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG15" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "1279", + "_RCID": "31331", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG16" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "1280", + "_RCID": "31332", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG17" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "1281", + "_RCID": "31333", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG18" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "1282", + "_RCID": "31334", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG19" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "1283", + "_RCID": "31335", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG20" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "1284", + "_RCID": "31336", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG21" + } + ], + "instruction": "SY(TREPNT05)", + "display-cat": "Other", + "comment": "32030", + "_id": "1285", + "_RCID": "31337", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG22" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "1286", + "_RCID": "31338", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG3" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "1287", + "_RCID": "31339", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG4" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "1288", + "_RCID": "31340", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG5" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "1289", + "_RCID": "31341", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG6" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "1290", + "_RCID": "31342", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG7" + } + ], + "instruction": "SY(TREPNT05)", + "display-cat": "Other", + "comment": "32030", + "_id": "1291", + "_RCID": "31343", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "1292", + "_RCID": "31344", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "1293", + "_RCID": "31345", + "_name": "WATFAL" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(WATTUR02)", + "display-cat": "Other", + "comment": "33040", + "_id": "1294", + "_RCID": "31346", + "_name": "WATTUR" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(WEDKLP03)", + "display-cat": "Other", + "comment": "34020", + "_id": "1295", + "_RCID": "31347", + "_name": "WEDKLP" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATWRK3" + }, + { + "_index": "1", + "__text": "VALSOU" + } + ], + "instruction": "SY(FOULGND1)", + "display-cat": "Other", + "comment": "34051", + "_id": "1296", + "_RCID": "31348", + "_name": "WRECKS" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATWRK3" + } + ], + "instruction": "SY(FOULGND1)", + "display-cat": "Other", + "comment": "34050", + "_id": "1297", + "_RCID": "31349", + "_name": "WRECKS" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "CS(WRECKS02)", + "display-cat": "Other", + "comment": "34050", + "_id": "1298", + "_RCID": "31350", + "_name": "WRECKS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(ACHARE02)", + "display-cat": "Standard", + "comment": "26220", + "_id": "1299", + "_RCID": "31351", + "_name": "achare" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(ACHBRT07);TX(OBJNAM,3,1,2,'14106',1,0,CHBLK,29)", + "display-cat": "Standard", + "comment": "26220", + "_id": "1300", + "_RCID": "31352", + "_name": "achbrt" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,4,3" + }, + { + "_index": "1", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNLAT21);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1301", + "_RCID": "31353", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,4,3" + }, + { + "_index": "1", + "__text": "BCNSHP5" + } + ], + "instruction": "SY(BCNLAT15);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1302", + "_RCID": "31354", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,3,4" + }, + { + "_index": "1", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNLAT22);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1303", + "_RCID": "31355", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,3,4" + }, + { + "_index": "1", + "__text": "BCNSHP5" + } + ], + "instruction": "SY(BCNLAT16);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1304", + "_RCID": "31356", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + }, + { + "_index": "1", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNLAT21);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1305", + "_RCID": "31357", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + }, + { + "_index": "1", + "__text": "BCNSHP5" + } + ], + "instruction": "SY(BCNLAT15);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1306", + "_RCID": "31358", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + }, + { + "_index": "1", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNLAT22);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1307", + "_RCID": "31359", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BCNLAT16);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1308", + "_RCID": "31360", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BCNLAT15);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1309", + "_RCID": "31361", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BCNLAT16);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1310", + "_RCID": "31362", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam11" + } + ], + "instruction": "SY(BCNLAT21);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1311", + "_RCID": "31363", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam12" + } + ], + "instruction": "SY(BCNLAT22);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1312", + "_RCID": "31364", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam13" + } + ], + "instruction": "SY(BCNSPP21);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1313", + "_RCID": "31365", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam14" + } + ], + "instruction": "SY(BCNSPP21);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1314", + "_RCID": "31366", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam15" + } + ], + "instruction": "SY(BCNLAT21);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1315", + "_RCID": "31367", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam16" + } + ], + "instruction": "SY(BCNLAT22);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1316", + "_RCID": "31368", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam17" + } + ], + "instruction": "SY(BCNLAT21);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1317", + "_RCID": "31369", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam18" + } + ], + "instruction": "SY(BCNLAT22);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1318", + "_RCID": "31370", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam19" + } + ], + "instruction": "SY(BCNLAT21);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1319", + "_RCID": "31371", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam20" + } + ], + "instruction": "SY(BCNLAT22);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1320", + "_RCID": "31372", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam21" + } + ], + "instruction": "SY(BCNLAT21);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1321", + "_RCID": "31373", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam22" + } + ], + "instruction": "SY(BCNLAT22);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1322", + "_RCID": "31374", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BCNLAT15);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1323", + "_RCID": "31375", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BCNLAT16);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1324", + "_RCID": "31376", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam5" + } + ], + "instruction": "SY(BCNLAT21);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1325", + "_RCID": "31377", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam6" + } + ], + "instruction": "SY(BCNLAT22);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1326", + "_RCID": "31378", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam9" + } + ], + "instruction": "SY(BCNLAT23);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1327", + "_RCID": "31379", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BCNDEF13);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1328", + "_RCID": "31380", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BCNLAT50);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1329", + "_RCID": "31381", + "_name": "bcnwtw" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BRTHNO01);TX(OBJNAM,1,2,3,'14108',0,0,CHMGD,29)", + "display-cat": "Standard", + "comment": "22440", + "_id": "1330", + "_RCID": "31382", + "_name": "berths" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam3" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYLAT24);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1331", + "_RCID": "31383", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam3" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYLAT23);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1332", + "_RCID": "31384", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam4" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYLAT14);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1333", + "_RCID": "31385", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam4" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYLAT13);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1334", + "_RCID": "31386", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam10" + }, + { + "_index": "1", + "__text": "COLOUR3,4" + } + ], + "instruction": "SY(BOYLAT25);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1335", + "_RCID": "31387", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam10" + }, + { + "_index": "1", + "__text": "COLOUR4,3" + } + ], + "instruction": "SY(BOYLAT25);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1336", + "_RCID": "31388", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam15" + }, + { + "_index": "1", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(BOYLAT26);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1337", + "_RCID": "31389", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam16" + }, + { + "_index": "1", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(BOYLAT27);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1338", + "_RCID": "31390", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam23" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYSPP25);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1339", + "_RCID": "31391", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam1" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYLAT24);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1340", + "_RCID": "31392", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam1" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYLAT23);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1341", + "_RCID": "31393", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam2" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYLAT14);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1342", + "_RCID": "31394", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam2" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYLAT13);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1343", + "_RCID": "31395", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam7" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYLAT24);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1344", + "_RCID": "31396", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catlam8" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYLAT13);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1345", + "_RCID": "31397", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BOYDEF03);TE('by %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1346", + "_RCID": "31398", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm10" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYLAT53);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1347", + "_RCID": "31399", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm13" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYLAT52);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1348", + "_RCID": "31400", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm14" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYLAT53);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1349", + "_RCID": "31401", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm15" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYLAT52);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1350", + "_RCID": "31402", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm16" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYLAT53);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1351", + "_RCID": "31403", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm17" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYLAT52);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1352", + "_RCID": "31404", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm18" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYLAT53);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1353", + "_RCID": "31405", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm7" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYLAT52);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1354", + "_RCID": "31406", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm8" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYLAT53);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1355", + "_RCID": "31407", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm9" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYLAT52);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1356", + "_RCID": "31408", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm10" + }, + { + "_index": "1", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(BOYLAT56);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1357", + "_RCID": "31409", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm10" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BOYLAT56);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1358", + "_RCID": "31410", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm11" + }, + { + "_index": "1", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(BOYLAT55);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1359", + "_RCID": "31411", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm11" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BOYLAT55);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1360", + "_RCID": "31412", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm12" + }, + { + "_index": "1", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(BOYLAT56);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1361", + "_RCID": "31413", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm12" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BOYLAT56);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1362", + "_RCID": "31414", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm13" + }, + { + "_index": "1", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(BOYLAT55);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1363", + "_RCID": "31415", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm13" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BOYLAT55);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1364", + "_RCID": "31416", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm14" + }, + { + "_index": "1", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(BOYLAT56);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1365", + "_RCID": "31417", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm14" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BOYLAT56);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1366", + "_RCID": "31418", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm15" + }, + { + "_index": "1", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(BOYLAT55);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1367", + "_RCID": "31419", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm15" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BOYLAT55);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1368", + "_RCID": "31420", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm16" + }, + { + "_index": "1", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(BOYLAT56);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1369", + "_RCID": "31421", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm16" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BOYLAT56);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1370", + "_RCID": "31422", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm17" + }, + { + "_index": "1", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(BOYLAT55);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1371", + "_RCID": "31423", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm17" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BOYLAT55);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1372", + "_RCID": "31424", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm18" + }, + { + "_index": "1", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(BOYLAT56);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1373", + "_RCID": "31425", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm18" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BOYLAT56);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1374", + "_RCID": "31426", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm6" + }, + { + "_index": "1", + "__text": "COLOUR3,4" + } + ], + "instruction": "SY(BOYLAT54);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1375", + "_RCID": "31427", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm6" + }, + { + "_index": "1", + "__text": "COLOUR4,3" + } + ], + "instruction": "SY(BOYLAT54);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1376", + "_RCID": "31428", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm7" + }, + { + "_index": "1", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(BOYLAT55);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1377", + "_RCID": "31429", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm7" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BOYLAT55);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1378", + "_RCID": "31430", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm8" + }, + { + "_index": "1", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(BOYLAT56);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1379", + "_RCID": "31431", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm8" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BOYLAT56);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1380", + "_RCID": "31432", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm9" + }, + { + "_index": "1", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(BOYLAT55);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1381", + "_RCID": "31433", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm9" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BOYLAT55);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1382", + "_RCID": "31434", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm19" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(boyspp50);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1383", + "_RCID": "31435", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm4" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYLAT50);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1384", + "_RCID": "31436", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm5" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYLAT51);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1385", + "_RCID": "31437", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR6" + } + ], + "instruction": "SY(boyspp50);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1386", + "_RCID": "31438", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BOYDEF03);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1387", + "_RCID": "31439", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BRIDGE01)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "1388", + "_RCID": "31440", + "_name": "bridge" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catbun1" + } + ], + "instruction": "SY(BUNSTA01)", + "display-cat": "Standard", + "comment": "22410", + "_id": "1389", + "_RCID": "31441", + "_name": "bunsta" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catbun2" + } + ], + "instruction": "SY(BUNSTA02)", + "display-cat": "Standard", + "comment": "22410", + "_id": "1390", + "_RCID": "31442", + "_name": "bunsta" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catbun3" + } + ], + "instruction": "SY(BUNSTA03)", + "display-cat": "Standard", + "comment": "22410", + "_id": "1391", + "_RCID": "31443", + "_name": "bunsta" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CHINFO07)", + "display-cat": "Standard", + "comment": "22410", + "_id": "1392", + "_RCID": "31444", + "_name": "bunsta" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catchp1" + } + ], + "instruction": "SY(CUSTOM01)", + "display-cat": "Other", + "comment": "32410", + "_id": "1393", + "_RCID": "31445", + "_name": "chkpnt" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catchp2" + } + ], + "instruction": "SY(BORDER01)", + "display-cat": "Other", + "comment": "32410", + "_id": "1394", + "_RCID": "31446", + "_name": "chkpnt" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(POSGEN04)", + "display-cat": "Other", + "comment": "32410", + "_id": "1395", + "_RCID": "31447", + "_name": "chkpnt" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CRANES01)", + "display-cat": "Other", + "comment": "32440", + "_id": "1396", + "_RCID": "31448", + "_name": "cranes" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + } + ], + "instruction": "SY(CURENT01,ORIENT)", + "display-cat": "Other", + "comment": "33060", + "_id": "1397", + "_RCID": "31449", + "_name": "curent" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(POSGEN04)", + "display-cat": "Other", + "comment": "33060", + "_id": "1398", + "_RCID": "31450", + "_name": "curent" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cursty2" + } + ], + "instruction": "SY(CURSRB01)", + "display-cat": "Mariners", + "comment": "61040", + "_id": "1399", + "_RCID": "31451", + "_name": "cursor" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CURSRA01)", + "display-cat": "Displaybase", + "comment": "11010", + "_id": "1400", + "_RCID": "31452", + "_name": "cursor" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDIS1" + }, + { + "_index": "1", + "__text": "hunits3" + } + ], + "instruction": "SY(DISMAR06);TX(wtwdis,3,1,2,'14106',1,-1,CHBLK,21)", + "display-cat": "Other", + "comment": "32420", + "_id": "1401", + "_RCID": "31453", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDIS1" + }, + { + "_index": "1", + "__text": "hunits4" + } + ], + "instruction": "SY(DISMAR05)", + "display-cat": "Other", + "comment": "32420", + "_id": "1402", + "_RCID": "31454", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDIS3" + }, + { + "_index": "1", + "__text": "hunits3" + } + ], + "instruction": "SY(HECMTR02);TX(wtwdis,3,1,2,'14106',1,0,CHMGD,21)", + "display-cat": "Standard", + "comment": "22430", + "_id": "1403", + "_RCID": "31455", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDIS3" + }, + { + "_index": "1", + "__text": "hunits4" + } + ], + "instruction": "SY(HECMTR01);TX(wtwdis,3,1,2,'14106',1,0,CHMGD,21)", + "display-cat": "Standard", + "comment": "22430", + "_id": "1404", + "_RCID": "31456", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catdis5" + } + ], + "instruction": "SY(HECMTR02);TX(INFORM,3,1,2,'14106',1,0,CHMGD,21)", + "display-cat": "Standard", + "comment": "22430", + "_id": "1405", + "_RCID": "31457", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catdis6" + } + ], + "instruction": "SY(HECMTR01);TX(INFORM,3,1,2,'14106',1,0,CHMGD,21)", + "display-cat": "Standard", + "comment": "22430", + "_id": "1406", + "_RCID": "31458", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catdis7" + } + ], + "instruction": "SY(DISMAR06);TX(INFORM,3,1,2,'14106',1,-1,CHBLK,21)", + "display-cat": "Other", + "comment": "31050", + "_id": "1407", + "_RCID": "31459", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catdis8" + } + ], + "instruction": "SY(DISMAR05)", + "display-cat": "Other", + "comment": "31050", + "_id": "1408", + "_RCID": "31460", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(DISMAR03);TX(INFORM,3,2,2,'14106',1,-1,CHMGD,21)", + "display-cat": "Other", + "comment": "32430", + "_id": "1409", + "_RCID": "31461", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(DNGHILIT)", + "display-cat": "Mariners", + "comment": "53010", + "_id": "1410", + "_RCID": "31462", + "_name": "dnghlt" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(EVENTS02);TX(OBJNAM,3,2,3,'15110',1,0,CHBLK,50)", + "display-cat": "Mariners", + "comment": "52410", + "_id": "1411", + "_RCID": "31463", + "_name": "events" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf12" + } + ], + "instruction": "SY(HRBFAC13)", + "display-cat": "Standard", + "comment": "22410", + "_id": "1412", + "_RCID": "31464", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf13" + } + ], + "instruction": "SY(HRBFAC14)", + "display-cat": "Standard", + "comment": "22410", + "_id": "1413", + "_RCID": "31465", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf14" + } + ], + "instruction": "SY(HRBFAC15)", + "display-cat": "Standard", + "comment": "22410", + "_id": "1414", + "_RCID": "31466", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf15" + } + ], + "instruction": "SY(HRBFAC16)", + "display-cat": "Standard", + "comment": "22410", + "_id": "1415", + "_RCID": "31467", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf16" + } + ], + "instruction": "SY(HRBFAC17)", + "display-cat": "Standard", + "comment": "22410", + "_id": "1416", + "_RCID": "31468", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf17" + } + ], + "instruction": "SY(HRBFAC18)", + "display-cat": "Standard", + "comment": "22410", + "_id": "1417", + "_RCID": "31469", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf6" + } + ], + "instruction": "SY(HRBFAC11)", + "display-cat": "Standard", + "comment": "22410", + "_id": "1418", + "_RCID": "31470", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf9" + } + ], + "instruction": "SY(HRBFAC12)", + "display-cat": "Standard", + "comment": "22410", + "_id": "1419", + "_RCID": "31471", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(HRBFAC10)", + "display-cat": "Standard", + "comment": "22410", + "_id": "1420", + "_RCID": "31472", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CHINFO09);TX(OBJNAM,3,1,3,'15110',1,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "53050", + "_id": "1421", + "_RCID": "31473", + "_name": "marfea" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnot1" + } + ], + "instruction": "SY(CHINFO08);TX(usrmrk,3,1,2,'15110',0,0,CHBLK,50)", + "display-cat": "Mariners", + "comment": "53030", + "_id": "1422", + "_RCID": "31474", + "_name": "marnot" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnot2" + } + ], + "instruction": "SY(CHINFO09);TX(usrmrk,3,1,2,'15110',0,0,CHBLK,50)", + "display-cat": "Mariners", + "comment": "53040", + "_id": "1423", + "_RCID": "31475", + "_name": "marnot" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CHINFO09);TX(usrmrk,3,1,2,'15110',0,0,CHBLK,50)", + "display-cat": "Mariners", + "comment": "53040", + "_id": "1424", + "_RCID": "31476", + "_name": "marnot" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnot1" + } + ], + "instruction": "SY(CHINFO10)", + "display-cat": "Mariners", + "comment": "55010", + "_id": "1425", + "_RCID": "31477", + "_name": "mnufea" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnot2" + } + ], + "instruction": "SY(CHINFO11)", + "display-cat": "Mariners", + "comment": "55020", + "_id": "1426", + "_RCID": "31478", + "_name": "mnufea" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(CHINFO10)", + "display-cat": "Mariners", + "comment": "55010", + "_id": "1427", + "_RCID": "31479", + "_name": "mnufea" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk55" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk2,3,4" + } + ], + "instruction": "SY(NMKINF06);SY(ADDMRK01);SY(ADDMRK02);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1428", + "_RCID": "31480", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk6" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk2,3,4" + } + ], + "instruction": "SY(NMKPRH07);SY(ADDMRK01);SY(ADDMRK02);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1429", + "_RCID": "31481", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk55" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk2,3" + } + ], + "instruction": "SY(NMKINF06);SY(ADDMRK01);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1430", + "_RCID": "31482", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk55" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk2,4" + } + ], + "instruction": "SY(NMKINF06);SY(ADDMRK02);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1431", + "_RCID": "31483", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk72" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk2,3" + } + ], + "instruction": "SY(NMKINF20);SY(ADDMRK01);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1432", + "_RCID": "31484", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk72" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk2,4" + } + ], + "instruction": "SY(NMKINF20);SY(ADDMRK02);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1433", + "_RCID": "31485", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk100" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKINF48);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1434", + "_RCID": "31486", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk100" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKINF48);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1435", + "_RCID": "31487", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk6" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk2,3" + } + ], + "instruction": "SY(NMKPRH07);SY(ADDMRK05);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1436", + "_RCID": "31488", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk6" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk2,4" + } + ], + "instruction": "SY(NMKPRH07);SY(ADDMRK05);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1437", + "_RCID": "31489", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk6" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk3,4" + } + ], + "instruction": "SY(NMKPRH07);SY(ADDMRK01);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1438", + "_RCID": "31490", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk8" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk3,4" + } + ], + "instruction": "SY(NMKPRH08);SY(ADDMRK01);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1439", + "_RCID": "31491", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk11" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKPRH11);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1440", + "_RCID": "31492", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk11" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKPRH11);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1441", + "_RCID": "31493", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk38" + }, + { + "_index": "1", + "__text": "fnctnm3" + }, + { + "_index": "2", + "__text": "addmrk2" + } + ], + "instruction": "SY(NMKREG16);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1442", + "_RCID": "31494", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk39" + }, + { + "_index": "1", + "__text": "fnctnm3" + }, + { + "_index": "2", + "__text": "addmrk2" + } + ], + "instruction": "SY(NMKREG17);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1443", + "_RCID": "31495", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk52" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk2" + } + ], + "instruction": "SY(NMKINF03);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1444", + "_RCID": "31496", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk55" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk2" + } + ], + "instruction": "SY(NMKINF06);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1445", + "_RCID": "31497", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk55" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKINF06);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1446", + "_RCID": "31498", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk55" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKINF06);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1447", + "_RCID": "31499", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk72" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKINF20);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1448", + "_RCID": "31500", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk72" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKINF20);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1449", + "_RCID": "31501", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk95" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKINF43);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1450", + "_RCID": "31502", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk95" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKINF43);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1451", + "_RCID": "31503", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk97" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKINF45);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1452", + "_RCID": "31504", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk97" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKINF45);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1453", + "_RCID": "31505", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk1" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKPRH02);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1454", + "_RCID": "31506", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk1" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKPRH02);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1455", + "_RCID": "31507", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk6" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk2" + } + ], + "instruction": "SY(NMKPRH07);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1456", + "_RCID": "31508", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk6" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKPRH07);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1457", + "_RCID": "31509", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk6" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKPRH07);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1458", + "_RCID": "31510", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk8" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKPRH08);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1459", + "_RCID": "31511", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk8" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKPRH08);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1460", + "_RCID": "31512", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk100" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF48)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1461", + "_RCID": "31513", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk101" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF49)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1462", + "_RCID": "31514", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk102" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF50)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1463", + "_RCID": "31515", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk223" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1464", + "_RCID": "31516", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk235" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1465", + "_RCID": "31517", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk10" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NMKPRH10)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1466", + "_RCID": "31518", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk11" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NMKPRH11)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1467", + "_RCID": "31519", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk12" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NMKPRH12)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1468", + "_RCID": "31520", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk13" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NMKPRH13)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1469", + "_RCID": "31521", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk23" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1470", + "_RCID": "31522", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk31" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG10)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1471", + "_RCID": "31523", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk32" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG01);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1472", + "_RCID": "31524", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk33" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG11)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1473", + "_RCID": "31525", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk34" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG12)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1474", + "_RCID": "31526", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk35" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG13)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1475", + "_RCID": "31527", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk36" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG14)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1476", + "_RCID": "31528", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk37" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG15)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1477", + "_RCID": "31529", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk38" + }, + { + "_index": "1", + "__text": "fnctnm3" + } + ], + "instruction": "SY(NMKREG16)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1478", + "_RCID": "31530", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk39" + }, + { + "_index": "1", + "__text": "fnctnm3" + } + ], + "instruction": "SY(NMKREG17)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1479", + "_RCID": "31531", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk41" + }, + { + "_index": "1", + "__text": "fnctnm3" + } + ], + "instruction": "SY(NMKREG01);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1480", + "_RCID": "31532", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk42" + }, + { + "_index": "1", + "__text": "fnctnm3" + } + ], + "instruction": "SY(NMKREG19)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1481", + "_RCID": "31533", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk43" + }, + { + "_index": "1", + "__text": "fnctnm3" + } + ], + "instruction": "SY(NMKREG20)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1482", + "_RCID": "31534", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk44" + }, + { + "_index": "1", + "__text": "fnctnm4" + } + ], + "instruction": "SY(NMKRCD01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1483", + "_RCID": "31535", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk45" + }, + { + "_index": "1", + "__text": "fnctnm4" + } + ], + "instruction": "SY(NMKRCD02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1484", + "_RCID": "31536", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk46" + }, + { + "_index": "1", + "__text": "fnctnm4" + } + ], + "instruction": "SY(NMKRCD03)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1485", + "_RCID": "31537", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk47" + }, + { + "_index": "1", + "__text": "fnctnm4" + } + ], + "instruction": "SY(NMKRCD04)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1486", + "_RCID": "31538", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk48" + }, + { + "_index": "1", + "__text": "fnctnm4" + } + ], + "instruction": "SY(NMKRCD05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1487", + "_RCID": "31539", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk49" + }, + { + "_index": "1", + "__text": "fnctnm4" + } + ], + "instruction": "SY(NMKRCD06)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1488", + "_RCID": "31540", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk50" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1489", + "_RCID": "31541", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk51" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1490", + "_RCID": "31542", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk52" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF03)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1491", + "_RCID": "31543", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk53" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF04)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1492", + "_RCID": "31544", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk54" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1493", + "_RCID": "31545", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk55" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF06)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1494", + "_RCID": "31546", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk58" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF06)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1495", + "_RCID": "31547", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk71" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF19)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1496", + "_RCID": "31548", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk72" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF20)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1497", + "_RCID": "31549", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk73" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF21)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1498", + "_RCID": "31550", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk74" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF22)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1499", + "_RCID": "31551", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk75" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF23)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1500", + "_RCID": "31552", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk76" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF24)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1501", + "_RCID": "31553", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk77" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF25)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1502", + "_RCID": "31554", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk78" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF26)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1503", + "_RCID": "31555", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk79" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF27)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1504", + "_RCID": "31556", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk80" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF28)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1505", + "_RCID": "31557", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk81" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF29)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1506", + "_RCID": "31558", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk90" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF38)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1507", + "_RCID": "31559", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk95" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF43)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1508", + "_RCID": "31560", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk96" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF44)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1509", + "_RCID": "31561", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk97" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF45)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1510", + "_RCID": "31562", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk98" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF46)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1511", + "_RCID": "31563", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk99" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF47)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1512", + "_RCID": "31564", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk1" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NMKPRH02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1513", + "_RCID": "31565", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk5" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NMKPRH06)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1514", + "_RCID": "31566", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk6" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NMKPRH07)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1515", + "_RCID": "31567", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk8" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NMKPRH08)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1516", + "_RCID": "31568", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk12" + } + ], + "instruction": "SY(NMKPRH12,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1517", + "_RCID": "31569", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk13" + } + ], + "instruction": "SY(NMKPRH13,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1518", + "_RCID": "31570", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk44" + } + ], + "instruction": "SY(NMKRCD01,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1519", + "_RCID": "31571", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk45" + } + ], + "instruction": "SY(NMKRCD02,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1520", + "_RCID": "31572", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk46" + } + ], + "instruction": "SY(NMKRCD03,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1521", + "_RCID": "31573", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk47" + } + ], + "instruction": "SY(NMKRCD04,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1522", + "_RCID": "31574", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk50" + } + ], + "instruction": "SY(NMKINF01,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1523", + "_RCID": "31575", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk1" + } + ], + "instruction": "SY(NMKPRH02,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1524", + "_RCID": "31576", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NOTMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1525", + "_RCID": "31577", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "fnctnm4" + } + ], + "instruction": "SY(NOTMRK03)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1526", + "_RCID": "31578", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NOTMRK03)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1527", + "_RCID": "31579", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(NOTMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "1528", + "_RCID": "31580", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "CS(OWNSHP02)", + "display-cat": "Displaybase", + "comment": "42010", + "_id": "1529", + "_RCID": "31581", + "_name": "ownshp" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(PLNPOS01);SY(PLNPOS02,ORIENT);TX(plndat,1,2,2,'15110',4,3,CHBLK,50);", + "display-cat": "Mariners", + "comment": "52030", + "_id": "1530", + "_RCID": "31582", + "_name": "plnpos" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth10" + } + ], + "instruction": "SY(POSITN02);TX('M',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1531", + "_RCID": "31583", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth11" + } + ], + "instruction": "SY(POSITN02);TX('O',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1532", + "_RCID": "31584", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth12" + } + ], + "instruction": "SY(POSITN02);TX('T',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1533", + "_RCID": "31585", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth13" + } + ], + "instruction": "SY(POSITN02);TX('dG',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1534", + "_RCID": "31586", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth14" + } + ], + "instruction": "SY(POSITN02);TX('dGl',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1535", + "_RCID": "31587", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth15" + } + ], + "instruction": "SY(POSITN02);TX('dO',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1536", + "_RCID": "31588", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth1" + } + ], + "instruction": "SY(POSITN02);TX('DR',2,3,2,'15110',-1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1537", + "_RCID": "31589", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth2" + } + ], + "instruction": "SY(POSITN02);TX('EP',2,3,2,'15110',-1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1538", + "_RCID": "31590", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth3" + } + ], + "instruction": "SY(POSITN02);TX('V',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1539", + "_RCID": "31591", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth4" + } + ], + "instruction": "SY(POSITN02);TX('A',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1540", + "_RCID": "31592", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth5" + } + ], + "instruction": "SY(POSITN02);TX('R',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1541", + "_RCID": "31593", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth6" + } + ], + "instruction": "SY(POSITN02);TX('D',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1542", + "_RCID": "31594", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth7" + } + ], + "instruction": "SY(POSITN02);TX('G',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1543", + "_RCID": "31595", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth8" + } + ], + "instruction": "SY(POSITN02);TX('Gl',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1544", + "_RCID": "31596", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth9" + } + ], + "instruction": "SY(POSITN02);TX('L',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1545", + "_RCID": "31597", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(POSITN02);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1546", + "_RCID": "31598", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC1" + } + ], + "instruction": "SY(rdocal02,ORIENT);TX(COMCHA,1,2,2,'14106',0,0,CHMGD,11);TX(OBJNAM,3,2,2,'14106',2,-2,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "1547", + "_RCID": "31599", + "_name": "rdocal" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC2" + } + ], + "instruction": "SY(rdocal02,ORIENT);TX(COMCHA,1,2,2,'14106',0,0,CHMGD,11);TX(OBJNAM,3,2,2,'14106',2,-2,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "1548", + "_RCID": "31600", + "_name": "rdocal" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC3" + } + ], + "instruction": "SY(rdocal02,ORIENT);TX(COMCHA,1,2,2,'14106',0,0,CHMGD,11);TX(OBJNAM,3,2,2,'14106',2,-2,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "1549", + "_RCID": "31601", + "_name": "rdocal" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC4" + } + ], + "instruction": "SY(rdocal03,ORIENT);TX(COMCHA,1,2,2,'14106',0,0,CHMGD,11);TX(OBJNAM,3,2,2,'14106',2,-2,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "1550", + "_RCID": "31602", + "_name": "rdocal" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(RCLDEF01)", + "display-cat": "Standard", + "comment": "15060", + "_id": "1551", + "_RCID": "31603", + "_name": "rdocal" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(REFDMP01)", + "display-cat": "Standard", + "comment": "22410", + "_id": "1552", + "_RCID": "31604", + "_name": "refdmp" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(REFPNT02)", + "display-cat": "Mariners", + "comment": "61050", + "_id": "1553", + "_RCID": "31605", + "_name": "refpnt" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catsit10" + } + ], + "instruction": "SY(SSWARS01)", + "display-cat": "Standard", + "comment": "28020", + "_id": "1554", + "_RCID": "31606", + "_name": "sistat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catsit2" + } + ], + "instruction": "SY(SSENTR01)", + "display-cat": "Standard", + "comment": "28020", + "_id": "1555", + "_RCID": "31607", + "_name": "sistat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catsit6" + } + ], + "instruction": "SY(SSLOCK01)", + "display-cat": "Standard", + "comment": "28020", + "_id": "1556", + "_RCID": "31608", + "_name": "sistat" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(SISTAT02)", + "display-cat": "Standard", + "comment": "28020", + "_id": "1557", + "_RCID": "31609", + "_name": "sistat" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catsiw12" + } + ], + "instruction": "SY(WTLVGG02)", + "display-cat": "Standard", + "comment": "28020", + "_id": "1558", + "_RCID": "31610", + "_name": "sistaw" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catsiw13" + } + ], + "instruction": "SY(WTLVGG01)", + "display-cat": "Standard", + "comment": "28020", + "_id": "1559", + "_RCID": "31611", + "_name": "sistaw" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catsiw15" + } + ], + "instruction": "SY(HGWTMK01)", + "display-cat": "Standard", + "comment": "28020", + "_id": "1560", + "_RCID": "31612", + "_name": "sistaw" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catsiw16" + } + ], + "instruction": "SY(VTCLMK01)", + "display-cat": "Standard", + "comment": "28020", + "_id": "1561", + "_RCID": "31613", + "_name": "sistaw" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catsiw17" + } + ], + "instruction": "SY(VTCLMK01)", + "display-cat": "Standard", + "comment": "28020", + "_id": "1562", + "_RCID": "31614", + "_name": "sistaw" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(SISTAT02)", + "display-cat": "Standard", + "comment": "28020", + "_id": "1563", + "_RCID": "31615", + "_name": "sistaw" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLC4" + } + ], + "instruction": "SY(PIER0001);CS(SLCONS03)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "1564", + "_RCID": "31616", + "_name": "slcons" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(MORFAC03);CS(SLCONS03)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "1565", + "_RCID": "31617", + "_name": "slcons" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd10" + } + ], + "instruction": "SY(TERMNL12)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1566", + "_RCID": "31618", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd1" + } + ], + "instruction": "SY(TERMNL03)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1567", + "_RCID": "31619", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd2" + } + ], + "instruction": "SY(TERMNL04)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1568", + "_RCID": "31620", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd3" + } + ], + "instruction": "SY(TERMNL05)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1569", + "_RCID": "31621", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd4" + } + ], + "instruction": "SY(TERMNL06)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1570", + "_RCID": "31622", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd5" + } + ], + "instruction": "SY(TERMNL07)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1571", + "_RCID": "31623", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd6" + } + ], + "instruction": "SY(TERMNL08)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1572", + "_RCID": "31624", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd7" + } + ], + "instruction": "SY(TERMNL09)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1573", + "_RCID": "31625", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd8" + } + ], + "instruction": "SY(TERMNL10)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1574", + "_RCID": "31626", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd9" + } + ], + "instruction": "SY(TERMNL11)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1575", + "_RCID": "31627", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf10" + } + ], + "instruction": "SY(TERMNL03)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1576", + "_RCID": "31628", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf11" + } + ], + "instruction": "SY(TERMNL04)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1577", + "_RCID": "31629", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf1" + } + ], + "instruction": "SY(TERMNL13)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1578", + "_RCID": "31630", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf3" + } + ], + "instruction": "SY(TERMNL02)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1579", + "_RCID": "31631", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf7" + } + ], + "instruction": "SY(TERMNL02)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1580", + "_RCID": "31632", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf8" + } + ], + "instruction": "SY(TERMNL01)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1581", + "_RCID": "31633", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml1" + } + ], + "instruction": "SY(TERMNL01)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1582", + "_RCID": "31634", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + } + ], + "instruction": "SY(TERMNL12)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1583", + "_RCID": "31635", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd1" + } + ], + "instruction": "SY(TERMNL03)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1584", + "_RCID": "31636", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd2" + } + ], + "instruction": "SY(TERMNL04)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1585", + "_RCID": "31637", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd3" + } + ], + "instruction": "SY(TERMNL05)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1586", + "_RCID": "31638", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd4" + } + ], + "instruction": "SY(TERMNL06)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1587", + "_RCID": "31639", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd5" + } + ], + "instruction": "SY(TERMNL07)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1588", + "_RCID": "31640", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd6" + } + ], + "instruction": "SY(TERMNL08)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1589", + "_RCID": "31641", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd7" + } + ], + "instruction": "SY(TERMNL09)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1590", + "_RCID": "31642", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd8" + } + ], + "instruction": "SY(TERMNL10)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1591", + "_RCID": "31643", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd9" + } + ], + "instruction": "SY(TERMNL11)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1592", + "_RCID": "31644", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(TERMNL12)", + "display-cat": "Standard", + "comment": "22420", + "_id": "1593", + "_RCID": "31645", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catcur1" + } + ], + "instruction": "SY(TIDCUR01,ORIENT);SY(TIDCUR03);TX('P',2,3,2,'15110',-4,2,CHBLK,50);TX(curstr,2,3,2,'15110',-1,2,CHBLK,50);TX(loctim,3,1,2,'15110',1,-2,CHBLK,50)", + "display-cat": "Mariners", + "comment": "53080", + "_id": "1594", + "_RCID": "31646", + "_name": "tidcur" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "catcur2" + } + ], + "instruction": "SY(TIDCUR02,ORIENT);SY(TIDCUR03);TX('A',2,3,2,'15110',-4,2,CHBLK,50);TX(curstr,2,3,2,'15110',-1,2,CHBLK,50);TX(loctim,3,1,2,'15110',1,-2,CHBLK,50)", + "display-cat": "Mariners", + "comment": "53080", + "_id": "1595", + "_RCID": "31647", + "_name": "tidcur" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(TIDCUR01,ORIENT);SY(TIDCUR03);TX(curstr,2,3,2,'15110',-1,2,CHBLK,50);TX(loctim,3,1,2,'15110',1,-2,CHBLK,50)", + "display-cat": "Mariners", + "comment": "53080", + "_id": "1596", + "_RCID": "31648", + "_name": "tidcur" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "CS(TOPMARI1)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1597", + "_RCID": "31649", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(TRNBSN01)", + "display-cat": "Standard", + "comment": "26020", + "_id": "1598", + "_RCID": "31650", + "_name": "trnbsn" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "CS(OBSTRN04)", + "display-cat": "Other", + "comment": "34050", + "_id": "1599", + "_RCID": "31651", + "_name": "uwtroc" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(VEHTRF01)", + "display-cat": "Standard", + "comment": "22410", + "_id": "1600", + "_RCID": "31652", + "_name": "vehtrf" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "CS(VESSEL01)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "1601", + "_RCID": "31653", + "_name": "vessel" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "select1" + } + ], + "instruction": "SY(WAYPNT11);TX(OBJNAM,3,1,3,'15110',1,-1,CHBLK,50)", + "display-cat": "Displaybase", + "comment": "42210", + "_id": "1602", + "_RCID": "31654", + "_name": "waypnt" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "select2" + } + ], + "instruction": "SY(WAYPNT03);TX(OBJNAM,3,1,3,'15110',1,-1,APLRT,50)", + "display-cat": "Mariners", + "comment": "52210", + "_id": "1603", + "_RCID": "31655", + "_name": "waypnt" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(WAYPNT11);TX(OBJNAM,3,1,3,'15110',1,-1,APLRT,50)", + "display-cat": "Displaybase", + "comment": "42210", + "_id": "1604", + "_RCID": "31656", + "_name": "waypnt" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(WTLVGG02)", + "display-cat": "Standard", + "comment": "28020", + "_id": "1605", + "_RCID": "31657", + "_name": "wtwgag" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEACHRES61" + } + ], + "instruction": "SY(ACHRES61)", + "display-cat": "Standard", + "comment": "26010", + "_id": "1606", + "_RCID": "31658", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEACHRES71" + } + ], + "instruction": "SY(ACHRES71)", + "display-cat": "Standard", + "comment": "26010", + "_id": "1607", + "_RCID": "31659", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEAISDEF01" + } + ], + "instruction": "SY(AISDEF01)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "1608", + "_RCID": "31660", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEAISONE01" + } + ], + "instruction": "SY(AISONE01)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "1609", + "_RCID": "31661", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEAISSIX01" + } + ], + "instruction": "SY(AISSIX01)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "1610", + "_RCID": "31662", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEAISSLP01" + } + ], + "instruction": "SY(AISSLP01,ORIENT)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "1611", + "_RCID": "31663", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEAISVES01" + } + ], + "instruction": "SY(AISVES01,ORIENT)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "1612", + "_RCID": "31664", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEARPATG01" + } + ], + "instruction": "SY(ARPATG01)", + "display-cat": "Mariners", + "comment": "54010", + "_id": "1613", + "_RCID": "31665", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEARPONE01" + } + ], + "instruction": "SY(ARPONE01,ORIENT)", + "display-cat": "Mariners", + "comment": "54010", + "_id": "1614", + "_RCID": "31666", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEARPSIX01" + } + ], + "instruction": "SY(ARPSIX01,ORIENT)", + "display-cat": "Mariners", + "comment": "54010", + "_id": "1615", + "_RCID": "31667", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBLKADJ01" + } + ], + "instruction": "SY(BLKADJ01)", + "display-cat": "Standard", + "comment": "21000", + "_id": "1616", + "_RCID": "31668", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBRIDGE01" + } + ], + "instruction": "SY(BRIDGE01)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "1617", + "_RCID": "31669", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHCRDEL1" + } + ], + "instruction": "SY(CHCRDEL1)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "1618", + "_RCID": "31670", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHCRID01" + } + ], + "instruction": "SY(CHCRID01)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "1619", + "_RCID": "31671", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHINFO08" + } + ], + "instruction": "SY(CHINFO08)", + "display-cat": "Mariners", + "comment": "53030", + "_id": "1620", + "_RCID": "31672", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHINFO09" + } + ], + "instruction": "SY(CHINFO09)", + "display-cat": "Mariners", + "comment": "53040", + "_id": "1621", + "_RCID": "31673", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHINFO10" + } + ], + "instruction": "SY(CHINFO10)", + "display-cat": "Mariners", + "comment": "55010", + "_id": "1622", + "_RCID": "31674", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHINFO11" + } + ], + "instruction": "SY(CHINFO11)", + "display-cat": "Mariners", + "comment": "55020", + "_id": "1623", + "_RCID": "31675", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHKSYM01" + } + ], + "instruction": "SY(CHKSYM01)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "1624", + "_RCID": "31676", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECLRLIN01" + } + ], + "instruction": "SY(CLRLIN01,ORIENT)", + "display-cat": "Mariners", + "comment": "53020", + "_id": "1625", + "_RCID": "31677", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECURSRA01" + } + ], + "instruction": "SY(CURSRA01)", + "display-cat": "Displaybase", + "comment": "11010", + "_id": "1626", + "_RCID": "31678", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECURSRB01" + } + ], + "instruction": "SY(CURSRB01)", + "display-cat": "Displaybase", + "comment": "11010", + "_id": "1627", + "_RCID": "31679", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDANGER01" + } + ], + "instruction": "SY(DANGER51)", + "display-cat": "Other", + "comment": "34050", + "_id": "1628", + "_RCID": "31680", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDANGER02" + } + ], + "instruction": "SY(DANGER52)", + "display-cat": "Other", + "comment": "34050", + "_id": "1629", + "_RCID": "31681", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDANGER03" + } + ], + "instruction": "SY(DANGER53)", + "display-cat": "Other", + "comment": "34050", + "_id": "1630", + "_RCID": "31682", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDIRBOY01" + } + ], + "instruction": "SY(DIRBOY01)", + "display-cat": "Standard", + "comment": "27040", + "_id": "1631", + "_RCID": "31683", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDIRBOYA1" + } + ], + "instruction": "SY(DIRBOYA1)", + "display-cat": "Standard", + "comment": "27040", + "_id": "1632", + "_RCID": "31684", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDIRBOYB1" + } + ], + "instruction": "SY(DIRBOYB1)", + "display-cat": "Standard", + "comment": "27040", + "_id": "1633", + "_RCID": "31685", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDNGHILIT" + } + ], + "instruction": "SY(DNGHILIT)", + "display-cat": "Mariners", + "comment": "53010", + "_id": "1634", + "_RCID": "31686", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEEBLVRM11" + } + ], + "instruction": "SY(EBLVRM11)", + "display-cat": "Mariners", + "comment": "61010", + "_id": "1635", + "_RCID": "31687", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEERBLTIK1" + } + ], + "instruction": "SY(ERBLTIK1,ORIENT)", + "display-cat": "Mariners", + "comment": "61010", + "_id": "1636", + "_RCID": "31688", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEEVENTS02" + } + ], + "instruction": "SY(EVENTS02)", + "display-cat": "Mariners", + "comment": "52410", + "_id": "1637", + "_RCID": "31689", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEINFORM01" + } + ], + "instruction": "SY(INFORM01)", + "display-cat": "Other", + "comment": "31030", + "_id": "1638", + "_RCID": "31690", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEISODGR01" + } + ], + "instruction": "SY(ISODGR51)", + "display-cat": "Displaybase", + "comment": "14010", + "_id": "1639", + "_RCID": "31691", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELOWACC01" + } + ], + "instruction": "SY(LOWACC01)", + "display-cat": "Standard", + "comment": "21000", + "_id": "1640", + "_RCID": "31692", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODENORTHAR1" + } + ], + "instruction": "SY(NORTHAR1)", + "display-cat": "Displaybase", + "comment": "11040", + "_id": "1641", + "_RCID": "31693", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOBSTRN01" + } + ], + "instruction": "SY(OBSTRN01)", + "display-cat": "Other", + "comment": "34050", + "_id": "1642", + "_RCID": "31694", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOBSTRN02" + } + ], + "instruction": "SY(OBSTRN02)", + "display-cat": "Other", + "comment": "34050", + "_id": "1643", + "_RCID": "31695", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOBSTRN03" + } + ], + "instruction": "SY(OBSTRN03)", + "display-cat": "Other", + "comment": "34050", + "_id": "1644", + "_RCID": "31696", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOBSTRN11" + } + ], + "instruction": "SY(OBSTRN11)", + "display-cat": "Other", + "comment": "34050", + "_id": "1645", + "_RCID": "31697", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOSPONE02" + } + ], + "instruction": "SY(OSPONE02)", + "display-cat": "Displaybase", + "comment": "42010", + "_id": "1646", + "_RCID": "31698", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOSPSIX02" + } + ], + "instruction": "SY(OSPSIX02)", + "display-cat": "Displaybase", + "comment": "42010", + "_id": "1647", + "_RCID": "31699", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOWNSHP01" + } + ], + "instruction": "SY(OWNSHP01)", + "display-cat": "Displaybase", + "comment": "42010", + "_id": "1648", + "_RCID": "31700", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOWNSHP05" + } + ], + "instruction": "SY(OWNSHP05,ORIENT)", + "display-cat": "Displaybase", + "comment": "42010", + "_id": "1649", + "_RCID": "31701", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEPLNPOS01" + } + ], + "instruction": "SY(PLNPOS01)", + "display-cat": "Mariners", + "comment": "52030", + "_id": "1650", + "_RCID": "31702", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEPLNSPD03" + } + ], + "instruction": "SY(PLNSPD03)", + "display-cat": "Displaybase", + "comment": "42210", + "_id": "1651", + "_RCID": "31703", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEPLNSPD04" + } + ], + "instruction": "SY(PLNSPD04)", + "display-cat": "Displaybase", + "comment": "42210", + "_id": "1652", + "_RCID": "31704", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEPOSITN02" + } + ], + "instruction": "SY(POSITN02)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "1653", + "_RCID": "31705", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEQUAPOS01" + } + ], + "instruction": "SY(QUAPOS01)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "1654", + "_RCID": "31706", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEQUARRY01" + } + ], + "instruction": "SY(QUARRY01)", + "display-cat": "Other", + "comment": "32270", + "_id": "1655", + "_RCID": "31707", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEQUESMRK1" + } + ], + "instruction": "SY(QUESMRK1)", + "display-cat": "Standard", + "comment": "21010", + "_id": "1656", + "_RCID": "31708", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODERACNSP01" + } + ], + "instruction": "SY(RACNSP01)", + "display-cat": "Standard", + "comment": "22210", + "_id": "1657", + "_RCID": "31709", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODERECDEF51" + } + ], + "instruction": "SY(RECDEF51)", + "display-cat": "Standard", + "comment": "25020", + "_id": "1658", + "_RCID": "31710", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODERECTRC55" + } + ], + "instruction": "SY(RECTRC55)", + "display-cat": "Standard", + "comment": "25020", + "_id": "1659", + "_RCID": "31711", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODERECTRC56" + } + ], + "instruction": "SY(RECTRC56)", + "display-cat": "Standard", + "comment": "25020", + "_id": "1660", + "_RCID": "31712", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODERECTRC57" + } + ], + "instruction": "SY(RECTRC57)", + "display-cat": "Standard", + "comment": "25020", + "_id": "1661", + "_RCID": "31713", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODERECTRC58" + } + ], + "instruction": "SY(RECTRC58)", + "display-cat": "Standard", + "comment": "25020", + "_id": "1662", + "_RCID": "31714", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEREFPNT02" + } + ], + "instruction": "SY(REFPNT02)", + "display-cat": "Mariners", + "comment": "61050", + "_id": "1663", + "_RCID": "31715", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODERFNERY01" + } + ], + "instruction": "SY(RFNERY01)", + "display-cat": "Other", + "comment": "32270", + "_id": "1664", + "_RCID": "31716", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODERFNERY11" + } + ], + "instruction": "SY(RFNERY11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1665", + "_RCID": "31717", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODESCALEB10" + } + ], + "instruction": "SY(SCALEB10)", + "display-cat": "Displaybase", + "comment": "11030", + "_id": "1666", + "_RCID": "31718", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODESCALEB11" + } + ], + "instruction": "SY(SCALEB11)", + "display-cat": "Displaybase", + "comment": "11030", + "_id": "1667", + "_RCID": "31719", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETIDCUR01" + } + ], + "instruction": "SY(TIDCUR01,ORIENT)", + "display-cat": "Mariners", + "comment": "53080", + "_id": "1668", + "_RCID": "31720", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETIDCUR02" + } + ], + "instruction": "SY(TIDCUR02,ORIENT)", + "display-cat": "Mariners", + "comment": "53080", + "_id": "1669", + "_RCID": "31721", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETIDCUR03" + } + ], + "instruction": "SY(TIDCUR03)", + "display-cat": "Mariners", + "comment": "53080", + "_id": "1670", + "_RCID": "31722", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETMBYRD01" + } + ], + "instruction": "SY(TMBYRD01)", + "display-cat": "Other", + "comment": "32270", + "_id": "1671", + "_RCID": "31723", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETNKFRM01" + } + ], + "instruction": "SY(TNKFRM01)", + "display-cat": "Other", + "comment": "32270", + "_id": "1672", + "_RCID": "31724", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETNKFRM11" + } + ], + "instruction": "SY(TNKFRM11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1673", + "_RCID": "31725", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETOWERS05" + } + ], + "instruction": "SY(TOWERS05)", + "display-cat": "Other", + "comment": "32200", + "_id": "1674", + "_RCID": "31726", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETOWERS15" + } + ], + "instruction": "SY(TOWERS15)", + "display-cat": "Standard", + "comment": "22200", + "_id": "1675", + "_RCID": "31727", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETREPNT04" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "1676", + "_RCID": "31728", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETREPNT05" + } + ], + "instruction": "SY(TREPNT05)", + "display-cat": "Other", + "comment": "32030", + "_id": "1677", + "_RCID": "31729", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEUNITFTH1" + } + ], + "instruction": "SY(UNITFTH1)", + "display-cat": "Displaybase", + "comment": "11000", + "_id": "1678", + "_RCID": "31730", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEUNITMTR1" + } + ], + "instruction": "SY(UNITMTR1)", + "display-cat": "Displaybase", + "comment": "11000", + "_id": "1679", + "_RCID": "31731", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEUWTROC03" + } + ], + "instruction": "SY(UWTROC03)", + "display-cat": "Other", + "comment": "34050", + "_id": "1680", + "_RCID": "31732", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEUWTROC04" + } + ], + "instruction": "SY(UWTROC04)", + "display-cat": "Other", + "comment": "34050", + "_id": "1681", + "_RCID": "31733", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEVECGND01" + } + ], + "instruction": "SY(VECGND01)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "1682", + "_RCID": "31734", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEVECGND21" + } + ], + "instruction": "SY(VECGND21)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "1683", + "_RCID": "31735", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEVECWTR01" + } + ], + "instruction": "SY(VECWTR01)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "1684", + "_RCID": "31736", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEVECWTR21" + } + ], + "instruction": "SY(VECWTR21,ORIENT)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "1685", + "_RCID": "31737", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEWAYPNT01" + } + ], + "instruction": "SY(WAYPNT01)", + "display-cat": "Displaybase", + "comment": "42210", + "_id": "1686", + "_RCID": "31738", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEWAYPNT03" + } + ], + "instruction": "SY(WAYPNT03)", + "display-cat": "Mariners", + "comment": "52210", + "_id": "1687", + "_RCID": "31739", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEWAYPNT11" + } + ], + "instruction": "SY(WAYPNT11)", + "display-cat": "Displaybase", + "comment": "42210", + "_id": "1688", + "_RCID": "31740", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEWNDFRM51" + } + ], + "instruction": "SY(WNDFRM51)", + "display-cat": "Other", + "comment": "32270", + "_id": "1689", + "_RCID": "31741", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEWNDFRM61" + } + ], + "instruction": "SY(WNDFRM61)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1690", + "_RCID": "31742", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEWRECKS01" + } + ], + "instruction": "SY(WRECKS01)", + "display-cat": "Other", + "comment": "34050", + "_id": "1691", + "_RCID": "31743", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEWRECKS04" + } + ], + "instruction": "SY(WRECKS04)", + "display-cat": "Other", + "comment": "34050", + "_id": "1692", + "_RCID": "31744", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEWRECKS05" + } + ], + "instruction": "SY(WRECKS05)", + "display-cat": "Other", + "comment": "34050", + "_id": "1693", + "_RCID": "31745", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(QUESMRK1)", + "display-cat": "Standard", + "comment": "21010", + "_id": "1694", + "_RCID": "31746", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "TX($TXSTR,$JUSTH=3,$JUSTV=1,$SPACE=2,'15110',0,0,CHBLK,27)", + "display-cat": "Standard", + "comment": "10000", + "_id": "1695", + "_RCID": "31747", + "_name": "$TEXTS" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1696", + "_RCID": "31748", + "_name": "_bcngn" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "COLMAR7" + } + ], + "instruction": "SY(BOYPIL69);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1697", + "_RCID": "31749", + "_name": "_boygn" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BOYCAN62);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1698", + "_RCID": "31750", + "_name": "_boygn" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(STARPT01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1699", + "_RCID": "31751", + "_name": "_extgn" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR1,11" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYSPR04);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1700", + "_RCID": "31752", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYCON60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1701", + "_RCID": "31753", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYCAN61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1702", + "_RCID": "31754", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYPIL60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1703", + "_RCID": "31755", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYPIL61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1704", + "_RCID": "31756", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYSPR03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1705", + "_RCID": "31757", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYSPR02);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1706", + "_RCID": "31758", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + } + ], + "instruction": "SY(BOYSPR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1707", + "_RCID": "31759", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1708", + "_RCID": "31760", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "WRKATT1" + } + ], + "instruction": "SY(WRECKS04);TX(_texta,$JUSTH=3,$JUSTV=1,$SPACE=2,'15110',0,0,CHBLK,27)", + "display-cat": "Standard", + "comment": "10000", + "_id": "1709", + "_RCID": "31761", + "_name": "_texto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "TX(_texta,$JUSTH=3,$JUSTV=1,$SPACE=2,'15110',0,0,CHBLK,27)", + "display-cat": "Standard", + "comment": "10000", + "_id": "1710", + "_RCID": "31762", + "_name": "_texto" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(QUESMRK1)", + "display-cat": "Standard", + "comment": "21010", + "_id": "1711", + "_RCID": "30000", + "_name": "######" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(ACHARE02)", + "display-cat": "Standard", + "comment": "26220", + "_id": "1712", + "_RCID": "30001", + "_name": "ACHARE" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(ACHBRT07);TE('%s','OBJNAM',3,1,2,'15110',1,0,CHBLK,29)", + "display-cat": "Standard", + "comment": "26220", + "_id": "1713", + "_RCID": "30002", + "_name": "ACHBRT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(ACHPNT01)", + "display-cat": "Standard", + "comment": "10000", + "_id": "1714", + "_RCID": "30003", + "_name": "ACHPNT" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(AIRARE02)", + "display-cat": "Other", + "comment": "32240", + "_id": "1715", + "_RCID": "30004", + "_name": "AIRARE" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR2,6,2" + }, + { + "_index": "1", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNTOW70);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1716", + "_RCID": "30005", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR6,2,6" + }, + { + "_index": "1", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNTOW71);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1717", + "_RCID": "30006", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR2,6" + }, + { + "_index": "1", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNTOW68);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1718", + "_RCID": "30007", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR6,2" + }, + { + "_index": "1", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNTOW69);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1719", + "_RCID": "30008", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR2,6,2" + } + ], + "instruction": "SY(BCNGEN70);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1720", + "_RCID": "30009", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR6,2,6" + } + ], + "instruction": "SY(BCNGEN71);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1721", + "_RCID": "30010", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR2,6" + } + ], + "instruction": "SY(BCNGEN68);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1722", + "_RCID": "30011", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR6,2" + } + ], + "instruction": "SY(BCNGEN69);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1723", + "_RCID": "30012", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNSTK02);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1724", + "_RCID": "30013", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNTOW01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1725", + "_RCID": "30014", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP4" + } + ], + "instruction": "SY(BCNLTC01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1726", + "_RCID": "30015", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + } + ], + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1727", + "_RCID": "30016", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP7" + } + ], + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1728", + "_RCID": "30017", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BCNGEN03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1729", + "_RCID": "30018", + "_name": "BCNCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + }, + { + "_index": "1", + "__text": "COLOUR2,3,2" + } + ], + "instruction": "SY(BCNTOW76);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1730", + "_RCID": "30019", + "_name": "BCNISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR2,3,2" + } + ], + "instruction": "SY(BCNGEN76);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1731", + "_RCID": "30020", + "_name": "BCNISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNSTK02);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1732", + "_RCID": "30021", + "_name": "BCNISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNTOW01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1733", + "_RCID": "30022", + "_name": "BCNISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP4" + } + ], + "instruction": "SY(BCNLTC01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1734", + "_RCID": "30023", + "_name": "BCNISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + } + ], + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1735", + "_RCID": "30024", + "_name": "BCNISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP7" + } + ], + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1736", + "_RCID": "30025", + "_name": "BCNISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BCNGEN03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1737", + "_RCID": "30026", + "_name": "BCNISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + }, + { + "_index": "1", + "__text": "CATLAM4" + }, + { + "_index": "2", + "__text": "COLPAT1" + }, + { + "_index": "3", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BCNTOW74);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1738", + "_RCID": "93980", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + }, + { + "_index": "1", + "__text": "CATLAM1" + }, + { + "_index": "2", + "__text": "COLPAT1" + }, + { + "_index": "3", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(BCNTOW66);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1739", + "_RCID": "30033", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + }, + { + "_index": "1", + "__text": "CATLAM1" + }, + { + "_index": "2", + "__text": "COLPAT1" + }, + { + "_index": "3", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BCNTOW65);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1740", + "_RCID": "30035", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + }, + { + "_index": "1", + "__text": "CATLAM2" + }, + { + "_index": "2", + "__text": "COLPAT1" + }, + { + "_index": "3", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(BCNTOW63);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1741", + "_RCID": "30032", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + }, + { + "_index": "1", + "__text": "CATLAM2" + }, + { + "_index": "2", + "__text": "COLPAT1" + }, + { + "_index": "3", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BCNTOW64);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1742", + "_RCID": "30034", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + }, + { + "_index": "1", + "__text": "CATLAM1" + }, + { + "_index": "2", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BCNSTK61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1743", + "_RCID": "30027", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + }, + { + "_index": "1", + "__text": "CATLAM2" + }, + { + "_index": "2", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BCNSTK60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1744", + "_RCID": "30028", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + }, + { + "_index": "1", + "__text": "COLOUR1,4,1" + } + ], + "instruction": "SY(BCNSTK77);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1745", + "_RCID": "30029", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + }, + { + "_index": "1", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(BCNSTK78);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1746", + "_RCID": "30030", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + }, + { + "_index": "1", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(BCNSTK77);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1747", + "_RCID": "30031", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BCNSTK60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1748", + "_RCID": "30036", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BCNSTK61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1749", + "_RCID": "30037", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP2" + }, + { + "_index": "1", + "__text": "CATLAM1" + } + ], + "instruction": "SY(PRICKE03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1750", + "_RCID": "30038", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP2" + }, + { + "_index": "1", + "__text": "CATLAM2" + } + ], + "instruction": "SY(PRICKE04);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1751", + "_RCID": "30039", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BCNTOW60);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1752", + "_RCID": "30040", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BCNTOW61);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1753", + "_RCID": "30041", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP4" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BCNTOW60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1754", + "_RCID": "30042", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP4" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BCNTOW61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1755", + "_RCID": "30043", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + }, + { + "_index": "1", + "__text": "CATLAM1" + } + ], + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1756", + "_RCID": "30044", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + }, + { + "_index": "1", + "__text": "CATLAM2" + } + ], + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1757", + "_RCID": "30045", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP6" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(CAIRNS11);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1758", + "_RCID": "30046", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP7" + }, + { + "_index": "1", + "__text": "COLOUR1" + } + ], + "instruction": "SY(BCNTOW05);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1759", + "_RCID": "30047", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP7" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BCNSTK60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1760", + "_RCID": "30048", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP7" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BCNSTK61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1761", + "_RCID": "30049", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BCNSTK78);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1762", + "_RCID": "30050", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BCNSTK77);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1763", + "_RCID": "30051", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNSTK02);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1764", + "_RCID": "30052", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNTOW01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1765", + "_RCID": "30053", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP4" + } + ], + "instruction": "SY(BCNLTC01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1766", + "_RCID": "30054", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + } + ], + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1767", + "_RCID": "30055", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP6" + } + ], + "instruction": "SY(CAIRNS01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1768", + "_RCID": "30056", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP7" + } + ], + "instruction": "SY(BCNGEN01);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "27020", + "_id": "1769", + "_RCID": "30057", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BCNGEN60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1770", + "_RCID": "30058", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BCNGEN61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1771", + "_RCID": "30059", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1772", + "_RCID": "30060", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP7" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BCNSTK78);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1773", + "_RCID": "30061", + "_name": "BCNSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BCNSTK78);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1774", + "_RCID": "30062", + "_name": "BCNSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNSTK02);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1775", + "_RCID": "30063", + "_name": "BCNSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNTOW01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1776", + "_RCID": "30064", + "_name": "BCNSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP4" + } + ], + "instruction": "SY(BCNLTC01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1777", + "_RCID": "30065", + "_name": "BCNSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + } + ], + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1778", + "_RCID": "30066", + "_name": "BCNSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP7" + } + ], + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1779", + "_RCID": "30067", + "_name": "BCNSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BCNGEN03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1780", + "_RCID": "30068", + "_name": "BCNSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLPAT1,2" + }, + { + "_index": "2", + "__text": "COLOUR5,3,1,5" + } + ], + "instruction": "SY(BCNCON81);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1781", + "_RCID": "93806", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR2,1,2" + } + ], + "instruction": "SY(BCNTOW87);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1782", + "_RCID": "30069", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + }, + { + "_index": "2", + "__text": "COLPAT2" + } + ], + "instruction": "SY(BCNTOW85);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1783", + "_RCID": "30070", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + }, + { + "_index": "1", + "__text": "CATLAM1" + }, + { + "_index": "2", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BCNSTK61);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1784", + "_RCID": "30071", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BCNTOW65);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1785", + "_RCID": "30072", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP4" + }, + { + "_index": "1", + "__text": "COLOUR1,2" + } + ], + "instruction": "SY(BCNTOW86);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1786", + "_RCID": "30073", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP4" + }, + { + "_index": "1", + "__text": "COLOUR2,1" + } + ], + "instruction": "SY(BCNTOW88);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1787", + "_RCID": "30074", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM18" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(NOTBRD12);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1788", + "_RCID": "30075", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + }, + { + "_index": "1", + "__text": "COLOUR1" + } + ], + "instruction": "SY(BCNSTK05);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1789", + "_RCID": "30076", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BCNSTK60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1790", + "_RCID": "30077", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BCNSTK61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1791", + "_RCID": "30078", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BCNSTK08);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1792", + "_RCID": "30079", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + }, + { + "_index": "1", + "__text": "COLOUR1" + } + ], + "instruction": "SY(BCNTOW05);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1793", + "_RCID": "30080", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "SY(BCNTOW89);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1794", + "_RCID": "93977", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BCNTOW61);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1795", + "_RCID": "93948", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BCNTOW62);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1796", + "_RCID": "93979", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP4" + }, + { + "_index": "1", + "__text": "COLOUR1" + } + ], + "instruction": "SY(BCNTOW91);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1797", + "_RCID": "30081", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP4" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "SY(BCNTOW89);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1798", + "_RCID": "30082", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP4" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BCNTOW60);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1799", + "_RCID": "93949", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP4" + }, + { + "_index": "1", + "__text": "COLOUR8" + } + ], + "instruction": "SY(BCNTOW90);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1800", + "_RCID": "30083", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + }, + { + "_index": "1", + "__text": "COLOUR1" + } + ], + "instruction": "SY(BCNSTK05);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1801", + "_RCID": "30084", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BCNSTK08);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1802", + "_RCID": "94017", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP6" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(CAIRNS11);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1803", + "_RCID": "30085", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP7" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BCNSTK62);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1804", + "_RCID": "30086", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BCNSTK79);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1805", + "_RCID": "30087", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BCNSTK80);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1806", + "_RCID": "30088", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BCNSTK78);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1807", + "_RCID": "30089", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BCNSTK81);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1808", + "_RCID": "30090", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM18" + } + ], + "instruction": "SY(NOTBRD11);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1809", + "_RCID": "30091", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM44" + } + ], + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1810", + "_RCID": "30092", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR11" + } + ], + "instruction": "SY(BCNGEN79);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1811", + "_RCID": "30093", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNSTK02);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1812", + "_RCID": "30094", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNTOW01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1813", + "_RCID": "30095", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP4" + } + ], + "instruction": "SY(BCNLTC01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1814", + "_RCID": "30096", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + } + ], + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1815", + "_RCID": "30097", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP6" + } + ], + "instruction": "SY(CAIRNS01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1816", + "_RCID": "30098", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP7" + } + ], + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1817", + "_RCID": "30099", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR1" + } + ], + "instruction": "SY(BCNGEN05);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1818", + "_RCID": "30100", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR2" + } + ], + "instruction": "SY(BCNGEN80);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1819", + "_RCID": "30101", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BCNGEN60);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1820", + "_RCID": "30102", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BCNGEN61);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1821", + "_RCID": "30103", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BCNSPR62);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1822", + "_RCID": "30104", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1823", + "_RCID": "30105", + "_name": "BCNSPP" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BRTHNO01);TE('%s','OBJNAM',3,1,2,'15110',1,0,CHBLK,29)", + "display-cat": "Other", + "comment": "32440", + "_id": "1824", + "_RCID": "30106", + "_name": "BERTHS" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR2,6,2" + } + ], + "instruction": "SY(BOYCON71);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1825", + "_RCID": "30107", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR6,2,6" + } + ], + "instruction": "SY(BOYCON72);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1826", + "_RCID": "30108", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR2,6,2" + } + ], + "instruction": "SY(BOYCAN70);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1827", + "_RCID": "30109", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR6,2,6" + } + ], + "instruction": "SY(BOYCAN71);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1828", + "_RCID": "30110", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR2,6,2" + } + ], + "instruction": "SY(BOYSPH70);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1829", + "_RCID": "30111", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR6,2,6" + } + ], + "instruction": "SY(BOYSPH71);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1830", + "_RCID": "30112", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR2,6,2" + } + ], + "instruction": "SY(BOYPIL70);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1831", + "_RCID": "30113", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR6,2,6" + } + ], + "instruction": "SY(BOYPIL71);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1832", + "_RCID": "30114", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR2,6,2" + } + ], + "instruction": "SY(BOYSPR70);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1833", + "_RCID": "30115", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR6,2,6" + } + ], + "instruction": "SY(BOYSPR71);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1834", + "_RCID": "30116", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR2,6" + } + ], + "instruction": "SY(BOYCON69);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1835", + "_RCID": "30117", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR6,2" + } + ], + "instruction": "SY(BOYCON70);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1836", + "_RCID": "30118", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR2,6" + } + ], + "instruction": "SY(BOYCAN68);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1837", + "_RCID": "30119", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR6,2" + } + ], + "instruction": "SY(BOYCAN69);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1838", + "_RCID": "30120", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR2,6" + } + ], + "instruction": "SY(BOYSPH68);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1839", + "_RCID": "30121", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR6,2" + } + ], + "instruction": "SY(BOYSPH69);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1840", + "_RCID": "30122", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR2,6" + } + ], + "instruction": "SY(BOYPIL68);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1841", + "_RCID": "30123", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR6,2" + } + ], + "instruction": "SY(BOYPIL69);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1842", + "_RCID": "30124", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR2,6" + } + ], + "instruction": "SY(BOYSPR68);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1843", + "_RCID": "30125", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR6,2" + } + ], + "instruction": "SY(BOYSPR69);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1844", + "_RCID": "30126", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "CATCAM1" + } + ], + "instruction": "SY(BOYPIL68);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1845", + "_RCID": "30127", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "CATCAM2" + } + ], + "instruction": "SY(BOYPIL70);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1846", + "_RCID": "30128", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "CATCAM3" + } + ], + "instruction": "SY(BOYPIL69);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1847", + "_RCID": "30129", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "CATCAM4" + } + ], + "instruction": "SY(BOYPIL71);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1848", + "_RCID": "30130", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "CATCAM1" + } + ], + "instruction": "SY(BOYSPR68);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1849", + "_RCID": "30131", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "CATCAM2" + } + ], + "instruction": "SY(BOYSPR70);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1850", + "_RCID": "30132", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "CATCAM3" + } + ], + "instruction": "SY(BOYSPR69);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1851", + "_RCID": "30133", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "CATCAM4" + } + ], + "instruction": "SY(BOYSPR71);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1852", + "_RCID": "30134", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + } + ], + "instruction": "SY(BOYCON01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1853", + "_RCID": "30135", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + } + ], + "instruction": "SY(BOYCAN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1854", + "_RCID": "30136", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + } + ], + "instruction": "SY(BOYSPH01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1855", + "_RCID": "30137", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + } + ], + "instruction": "SY(BOYPIL01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1856", + "_RCID": "30138", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + } + ], + "instruction": "SY(BOYSPR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1857", + "_RCID": "30139", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP6" + } + ], + "instruction": "SY(BOYBAR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1858", + "_RCID": "30140", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP7" + } + ], + "instruction": "SY(BOYSUP01);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1859", + "_RCID": "30141", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP8" + } + ], + "instruction": "SY(BOYSPR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1860", + "_RCID": "30142", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BOYGEN03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1861", + "_RCID": "30143", + "_name": "BOYCAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP6" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYBAR62);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1862", + "_RCID": "30144", + "_name": "BOYINB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP7" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYSUP62);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1863", + "_RCID": "30145", + "_name": "BOYINB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BOYINB01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1864", + "_RCID": "30146", + "_name": "BOYINB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR1,11" + } + ], + "instruction": "SY(BOYCON77);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1865", + "_RCID": "93803", + "_name": "BOYISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR2.3.2" + } + ], + "instruction": "SY(BOYCON63);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1866", + "_RCID": "30147", + "_name": "BOYISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR2,3,2" + } + ], + "instruction": "SY(BOYCAN76);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1867", + "_RCID": "30148", + "_name": "BOYISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR2,3,2" + } + ], + "instruction": "SY(BOYPIL72);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1868", + "_RCID": "30149", + "_name": "BOYISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR2,3,2" + } + ], + "instruction": "SY(BOYSPR72);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1869", + "_RCID": "30150", + "_name": "BOYISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR2,3" + } + ], + "instruction": "SY(BOYPIL72);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1870", + "_RCID": "30151", + "_name": "BOYISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + } + ], + "instruction": "SY(BOYCON01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1871", + "_RCID": "30152", + "_name": "BOYISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + } + ], + "instruction": "SY(BOYCAN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1872", + "_RCID": "30153", + "_name": "BOYISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + } + ], + "instruction": "SY(BOYSPH01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1873", + "_RCID": "30154", + "_name": "BOYISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + } + ], + "instruction": "SY(BOYPIL01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1874", + "_RCID": "30155", + "_name": "BOYISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + } + ], + "instruction": "SY(BOYSPR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1875", + "_RCID": "30156", + "_name": "BOYISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP6" + } + ], + "instruction": "SY(BOYBAR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1876", + "_RCID": "30157", + "_name": "BOYISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP7" + } + ], + "instruction": "SY(BOYSUP01);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1877", + "_RCID": "30158", + "_name": "BOYISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP8" + } + ], + "instruction": "SY(BOYSPR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1878", + "_RCID": "30159", + "_name": "BOYISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BOYGEN03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1879", + "_RCID": "30160", + "_name": "BOYISD" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "CATLAM7" + }, + { + "_index": "2", + "__text": "COLOUR3,1,3,1,3" + } + ], + "instruction": "SY(BOYCAN82);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1880", + "_RCID": "93823", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "CATLAM7" + }, + { + "_index": "2", + "__text": "COLOUR3,1,3,1" + } + ], + "instruction": "SY(BOYCAN83);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1881", + "_RCID": "93816", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYCON66);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1882", + "_RCID": "30161", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYCAN73);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1883", + "_RCID": "30162", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYPIL66);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1884", + "_RCID": "30163", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYPIL67);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1885", + "_RCID": "30164", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3,4" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYSPH79);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1886", + "_RCID": "93804", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR3,4" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYSPH74);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1887", + "_RCID": "30165", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR4,3" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYSPH75);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1888", + "_RCID": "30166", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR4,3" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYPIL74);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1889", + "_RCID": "30167", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "CATLAM23" + }, + { + "_index": "2", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYSPH62);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1890", + "_RCID": "93817", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4,1,4,1,4" + } + ], + "instruction": "SY(BOYCON65);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1891", + "_RCID": "30168", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3,1,3,1,3" + } + ], + "instruction": "SY(BOYCAN74);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1892", + "_RCID": "30169", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3,4,3" + } + ], + "instruction": "SY(BOYSPH74);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1893", + "_RCID": "30170", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYCON67);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1894", + "_RCID": "30171", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYCAN72);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1895", + "_RCID": "30172", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYPIL66);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1896", + "_RCID": "30173", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYPIL67);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1897", + "_RCID": "30174", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BOYCON73);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1898", + "_RCID": "30175", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4,3" + } + ], + "instruction": "SY(BOYCON68);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1899", + "_RCID": "30176", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BOYCAN74);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1900", + "_RCID": "30177", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3,4" + } + ], + "instruction": "SY(BOYCAN75);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1901", + "_RCID": "30178", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR3,4" + } + ], + "instruction": "SY(BOYSPH74);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1902", + "_RCID": "30179", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "SY(BOYCON64);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1903", + "_RCID": "30180", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYCON60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1904", + "_RCID": "30181", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYCON61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1905", + "_RCID": "30182", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYCON62);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1906", + "_RCID": "30183", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYCAN60);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1907", + "_RCID": "30184", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYCAN61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1908", + "_RCID": "30185", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYCAN63);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1909", + "_RCID": "30186", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYPIL60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1910", + "_RCID": "30187", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYPIL61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1911", + "_RCID": "30188", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR1" + } + ], + "instruction": "SY(BOYSPR05);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1912", + "_RCID": "30189", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYSPR60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1913", + "_RCID": "30190", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYSPR61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1914", + "_RCID": "30191", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + }, + { + "_index": "1", + "__text": "CATLAM2" + } + ], + "instruction": "SY(BOYPIL60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1915", + "_RCID": "30192", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + }, + { + "_index": "1", + "__text": "CATLAM1" + } + ], + "instruction": "SY(BOYPIL61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1916", + "_RCID": "30193", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + } + ], + "instruction": "SY(BOYCON01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1917", + "_RCID": "30194", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + } + ], + "instruction": "SY(BOYCAN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1918", + "_RCID": "30195", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + } + ], + "instruction": "SY(BOYSPH01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1919", + "_RCID": "30196", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + } + ], + "instruction": "SY(BOYPIL01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1920", + "_RCID": "30197", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + } + ], + "instruction": "SY(BOYSPR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1921", + "_RCID": "30198", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP6" + } + ], + "instruction": "SY(BOYBAR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1922", + "_RCID": "30199", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP7" + } + ], + "instruction": "SY(BOYSUP01);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1923", + "_RCID": "30200", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP8" + } + ], + "instruction": "SY(BOYSPR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1924", + "_RCID": "30201", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BOYGEN03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1925", + "_RCID": "30202", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + }, + { + "_index": "2", + "__text": "COLPAT2" + } + ], + "instruction": "SY(BOYSPH65);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1926", + "_RCID": "30203", + "_name": "BOYSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + }, + { + "_index": "2", + "__text": "COLPAT2" + } + ], + "instruction": "SY(BOYPIL73);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1927", + "_RCID": "30204", + "_name": "BOYSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BOYCON78);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1928", + "_RCID": "30205", + "_name": "BOYSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BOYSPH65);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1929", + "_RCID": "30206", + "_name": "BOYSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BOYPIL73);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1930", + "_RCID": "30207", + "_name": "BOYSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYPIL73);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1931", + "_RCID": "30208", + "_name": "BOYSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + } + ], + "instruction": "SY(BOYSPH01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1932", + "_RCID": "30209", + "_name": "BOYSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + } + ], + "instruction": "SY(BOYPIL01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1933", + "_RCID": "30210", + "_name": "BOYSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + } + ], + "instruction": "SY(BOYSPR65);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1934", + "_RCID": "30211", + "_name": "BOYSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP6" + } + ], + "instruction": "SY(BOYBAR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1935", + "_RCID": "30212", + "_name": "BOYSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP7" + } + ], + "instruction": "SY(BOYSUP01);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1936", + "_RCID": "30213", + "_name": "BOYSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP8" + } + ], + "instruction": "SY(BOYSPR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1937", + "_RCID": "30214", + "_name": "BOYSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BOYGEN03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1938", + "_RCID": "30215", + "_name": "BOYSAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4,1,4,1,4" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYCON65);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1939", + "_RCID": "93898", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR5,3,1,5" + }, + { + "_index": "2", + "__text": "COLPAT1,2" + } + ], + "instruction": "SY(BOYCON81);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1940", + "_RCID": "93807", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR1,11,1" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYCON80);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1941", + "_RCID": "93805", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR1,11,1" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYCAN78);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1942", + "_RCID": "30216", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYSPH66);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1943", + "_RCID": "30217", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR1,11" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYCAN77);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1944", + "_RCID": "30218", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR11,1" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYCAN81);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1945", + "_RCID": "30219", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR1,11" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYSPH77);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1946", + "_RCID": "30220", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR1,11" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYPIL81);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1947", + "_RCID": "30221", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYCON73);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1948", + "_RCID": "30222", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYCAN80);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1949", + "_RCID": "30223", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3,4" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYCAN75);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1950", + "_RCID": "93959", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + }, + { + "_index": "2", + "__text": "COLPAT2" + } + ], + "instruction": "SY(BOYPIL73);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1951", + "_RCID": "30224", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + }, + { + "_index": "2", + "__text": "COLPAT4" + } + ], + "instruction": "SY(BOYPIL78);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1952", + "_RCID": "30225", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP7" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BOYSUP66);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1953", + "_RCID": "93967", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP7" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BOYSUP65);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1954", + "_RCID": "30233", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM14" + }, + { + "_index": "1", + "__text": "BOYSHP2" + }, + { + "_index": "2", + "__text": "COLOUR1" + } + ], + "instruction": "SY(BOYMOR31);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1955", + "_RCID": "30226", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM8" + }, + { + "_index": "1", + "__text": "BOYSHP2" + }, + { + "_index": "2", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYCAN60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1956", + "_RCID": "30227", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR1,11" + } + ], + "instruction": "SY(BOYCON77);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1957", + "_RCID": "30228", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR1,11" + } + ], + "instruction": "SY(BOYCAN77);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1958", + "_RCID": "30229", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR1,11" + } + ], + "instruction": "SY(BOYSPH77);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1959", + "_RCID": "30230", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR1,11" + } + ], + "instruction": "SY(BOYPIL81);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1960", + "_RCID": "30231", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR4,3" + } + ], + "instruction": "SY(BOYPIL74);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1961", + "_RCID": "30232", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR11" + } + ], + "instruction": "SY(BOYCAN79);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1962", + "_RCID": "30234", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR11" + } + ], + "instruction": "SY(BOYPIL59);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1963", + "_RCID": "93965", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM14" + }, + { + "_index": "1", + "__text": "BOYSHP2" + } + ], + "instruction": "SY(BOYMOR03);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1964", + "_RCID": "30235", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYCON60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1965", + "_RCID": "30236", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYCON62);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1966", + "_RCID": "30237", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR1" + } + ], + "instruction": "SY(BOYCAN65);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1967", + "_RCID": "30238", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "SY(BOYCAN64);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1968", + "_RCID": "30239", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYCAN60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1969", + "_RCID": "30240", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYCAN61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1970", + "_RCID": "30241", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYCAN63);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1971", + "_RCID": "30242", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "INFORMwhite/orange" + } + ], + "instruction": "SY(BOYCAN77);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1971", + "_RCID": "3024200", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR1" + } + ], + "instruction": "SY(BOYSPH05);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1972", + "_RCID": "30243", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYSPH60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1973", + "_RCID": "30244", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYSPH62);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1974", + "_RCID": "30245", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYPIL60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1975", + "_RCID": "30246", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYPIL61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1976", + "_RCID": "30247", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYPIL62);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1977", + "_RCID": "30248", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYSPR62);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1978", + "_RCID": "30249", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP6" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYBAR60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1979", + "_RCID": "30250", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP6" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYBAR61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1980", + "_RCID": "30251", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP6" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYBAR62);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1981", + "_RCID": "30252", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP7" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYSUP62);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1982", + "_RCID": "30253", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM15" + } + ], + "instruction": "SY(BOYSUP03);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1983", + "_RCID": "30254", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + } + ], + "instruction": "SY(BOYCON01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1984", + "_RCID": "30255", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + } + ], + "instruction": "SY(BOYCAN62);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1985", + "_RCID": "30256", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + } + ], + "instruction": "SY(BOYSPH01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1986", + "_RCID": "30257", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + } + ], + "instruction": "SY(BOYPIL01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1987", + "_RCID": "30258", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + } + ], + "instruction": "SY(BOYSPR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1988", + "_RCID": "30259", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP6" + } + ], + "instruction": "SY(BOYBAR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1989", + "_RCID": "93873", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP7" + } + ], + "instruction": "SY(BOYSUP01);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1990", + "_RCID": "30261", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP8" + } + ], + "instruction": "SY(BOYSPR01);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1991", + "_RCID": "30262", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSPM9" + } + ], + "instruction": "SY(BOYSUP01);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1992", + "_RCID": "30263", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYSPH62);TE('%s','OBJNAM',2,1,2,'15110',-2,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1993", + "_RCID": "30264", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BOYGEN03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "1994", + "_RCID": "30265", + "_name": "BOYSPP" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "1995", + "_RCID": "30266", + "_name": "BRIDGE" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BUAARE02);TX(OBJNAM,3,2,2,'15114',1,0,CHBLK,26)", + "display-cat": "Standard", + "comment": "22240", + "_id": "1996", + "_RCID": "30267", + "_name": "BUAARE" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1997", + "_RCID": "30268", + "_name": "BUIREL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN33" + }, + { + "_index": "1", + "__text": "CONVIS1" + }, + { + "_index": "2", + "__text": "OBJNAM" + } + ], + "instruction": "SY(POSGEN03);TX(OBJNAM,3,2,2,'15110',1,0,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1998", + "_RCID": "30269", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN20" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "1999", + "_RCID": "30270", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN21" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2000", + "_RCID": "30271", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN22" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL14)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2001", + "_RCID": "30272", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN23" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL14)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2002", + "_RCID": "30273", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN24" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL14)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2003", + "_RCID": "30274", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN25" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL14)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2004", + "_RCID": "30275", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN26" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL15)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2005", + "_RCID": "30276", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN27" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL15)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2006", + "_RCID": "30277", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN33" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(POSGEN03)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2007", + "_RCID": "30278", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN35" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TNKCON12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2008", + "_RCID": "30279", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN33" + }, + { + "_index": "1", + "__text": "OBJNAM" + } + ], + "instruction": "SY(POSGEN03);TX(OBJNAM,3,2,2,'15110',1,0,CHBLK,26)", + "display-cat": "Other", + "comment": "32220", + "_id": "2009", + "_RCID": "30280", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN20" + } + ], + "instruction": "SY(BUIREL01)", + "display-cat": "Other", + "comment": "32220", + "_id": "2010", + "_RCID": "30281", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN21" + } + ], + "instruction": "SY(BUIREL01)", + "display-cat": "Other", + "comment": "32220", + "_id": "2011", + "_RCID": "30282", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN22" + } + ], + "instruction": "SY(BUIREL04)", + "display-cat": "Other", + "comment": "32220", + "_id": "2012", + "_RCID": "30283", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN23" + } + ], + "instruction": "SY(BUIREL04)", + "display-cat": "Other", + "comment": "32220", + "_id": "2013", + "_RCID": "30284", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN24" + } + ], + "instruction": "SY(BUIREL04)", + "display-cat": "Other", + "comment": "32220", + "_id": "2014", + "_RCID": "30285", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN25" + } + ], + "instruction": "SY(BUIREL04)", + "display-cat": "Other", + "comment": "32220", + "_id": "2015", + "_RCID": "30286", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN26" + } + ], + "instruction": "SY(BUIREL05)", + "display-cat": "Other", + "comment": "32220", + "_id": "2016", + "_RCID": "30287", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN27" + } + ], + "instruction": "SY(BUIREL05)", + "display-cat": "Other", + "comment": "32220", + "_id": "2017", + "_RCID": "30288", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN33" + } + ], + "instruction": "SY(POSGEN03)", + "display-cat": "Other", + "comment": "32220", + "_id": "2018", + "_RCID": "30289", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "FUNCTN35" + } + ], + "instruction": "SY(TNKCON02)", + "display-cat": "Other", + "comment": "32220", + "_id": "2019", + "_RCID": "30290", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUISGL11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2020", + "_RCID": "30291", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BUISGL01)", + "display-cat": "Other", + "comment": "32220", + "_id": "2021", + "_RCID": "30292", + "_name": "BUISGL" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CGUSTA02)", + "display-cat": "Other", + "comment": "38030", + "_id": "2022", + "_RCID": "30293", + "_name": "CGUSTA" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "2023", + "_RCID": "30294", + "_name": "CHKPNT" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CRANES01)", + "display-cat": "Other", + "comment": "32440", + "_id": "2024", + "_RCID": "30295", + "_name": "CRANES" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CHINFO06)", + "display-cat": "Standard", + "comment": "26050", + "_id": "2025", + "_RCID": "30296", + "_name": "CTNARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(POSGEN04);TE('%s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21);TE('%4.1lf (m)','HEIGHT',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Other", + "comment": "32250", + "_id": "2026", + "_RCID": "30297", + "_name": "CTRPNT" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CHINFO07)", + "display-cat": "Standard", + "comment": "26250", + "_id": "2027", + "_RCID": "30298", + "_name": "CTSARE" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + }, + { + "_index": "1", + "__text": "CURVEL" + } + ], + "instruction": "SY(CURENT01,ORIENT);TE('%4.1lf kn','CURVEL',3,1,2,'15110',1,-1,CHBLK,31)", + "display-cat": "Other", + "comment": "33060", + "_id": "2028", + "_RCID": "30299", + "_name": "CURENT" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + } + ], + "instruction": "SY(CURENT01,ORIENT)", + "display-cat": "Other", + "comment": "33060", + "_id": "2029", + "_RCID": "30300", + "_name": "CURENT" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "2030", + "_RCID": "30301", + "_name": "CURENT" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDAM3" + } + ], + "instruction": "SY(CHINFO06)", + "display-cat": "Standard", + "comment": "22010", + "_id": "2031", + "_RCID": "30302", + "_name": "DAMCON" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "2032", + "_RCID": "30303", + "_name": "DAMCON" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT6,4" + }, + { + "_index": "2", + "__text": "COLOUR1,1,2,1" + } + ], + "instruction": "SY(TOPSHP77);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2033", + "_RCID": "93737", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT6,4" + }, + { + "_index": "2", + "__text": "COLOUR1,1,3,1" + } + ], + "instruction": "SY(TOPSHP76);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2034", + "_RCID": "30304", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT6,4" + }, + { + "_index": "2", + "__text": "COLOUR1,1,6,1" + } + ], + "instruction": "SY(TOPSHP78);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2035", + "_RCID": "93961", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT5,2" + }, + { + "_index": "2", + "__text": "COLOUR3,1,3,6" + } + ], + "instruction": "SY(TOPSHP96);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2036", + "_RCID": "30306", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT4" + }, + { + "_index": "2", + "__text": "COLOUR3,1,1,3" + } + ], + "instruction": "SY(TOPSHP74);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2037", + "_RCID": "93797", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT6,4" + }, + { + "_index": "2", + "__text": "COLOUR1,2,1" + } + ], + "instruction": "SY(TOPSHP73;TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2038", + "_RCID": "30307", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT6,4" + }, + { + "_index": "2", + "__text": "COLOUR1,3,1" + } + ], + "instruction": "SY(TOPSHP72);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2039", + "_RCID": "30308", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT6,4" + }, + { + "_index": "2", + "__text": "COLOUR1,4,1" + } + ], + "instruction": "SY(TOPSHP64);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2040", + "_RCID": "30309", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR1,1,3,1" + } + ], + "instruction": "SY(TOPSHP76);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2041", + "_RCID": "93966", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT6,1" + }, + { + "_index": "2", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(TOPSHP43);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2042", + "_RCID": "30310", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT6,1" + }, + { + "_index": "2", + "__text": "COLOUR4,4,3" + } + ], + "instruction": "SY(TOPSHP43);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2043", + "_RCID": "30311", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT5,2" + }, + { + "_index": "2", + "__text": "COLOUR3,1,3" + } + ], + "instruction": "SY(TOPSHP90);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2044", + "_RCID": "93736", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR11,2,11" + } + ], + "instruction": "SY(TOPSHP17);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2045", + "_RCID": "93768", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLPAT6,1" + }, + { + "_index": "2", + "__text": "COLOUR3,3,4" + } + ], + "instruction": "SY(TOPSHP09;TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2046", + "_RCID": "30312", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLPAT6,1" + }, + { + "_index": "2", + "__text": "COLOUR3,3,6" + } + ], + "instruction": "SY(TOPSHP08);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2047", + "_RCID": "93776", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP33" + }, + { + "_index": "1", + "__text": "COLPAT6,5" + }, + { + "_index": "2", + "__text": "COLOUR1,1,3" + } + ], + "instruction": "SY(TOPSHP00);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2048", + "_RCID": "93918", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR1,11,1" + } + ], + "instruction": "SY(TOPSHP34);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2049", + "_RCID": "93758", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT6,4" + }, + { + "_index": "2", + "__text": "COLOUR11,1" + } + ], + "instruction": "SY(TOPSHP38);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2050", + "_RCID": "93796", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR1,3,1" + } + ], + "instruction": "SY(TOPSHP63);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2051", + "_RCID": "30313", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR11,11" + } + ], + "instruction": "SY(TOPSHP41);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2052", + "_RCID": "30316", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(TOPSHP29);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2053", + "_RCID": "93809", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(TOPSHP33);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2054", + "_RCID": "30314", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR4,4,6" + } + ], + "instruction": "SY(TOPSHP30);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2055", + "_RCID": "30315", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP20" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR3,1,3" + } + ], + "instruction": "SY(TOPSHP89;TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2056", + "_RCID": "93775", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR1,2,1" + } + ], + "instruction": "SY(TOPSHPA5);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2057", + "_RCID": "93792", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR1,3,1" + } + ], + "instruction": "SY(TOPSHP94);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2058", + "_RCID": "30317", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR2,1,2" + } + ], + "instruction": "SY(TOPSHPA1);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2059", + "_RCID": "93745", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR3,1,3" + } + ], + "instruction": "SY(TOPSHP90);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2060", + "_RCID": "30318", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR3,2,3" + } + ], + "instruction": "SY(TOPSHPA0);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2061", + "_RCID": "93799", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(TOPSHPA3);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2062", + "_RCID": "93753", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(TOPSHPA7);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2063", + "_RCID": "93769", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR6,2,6" + } + ], + "instruction": "SY(TOPSHP97);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2064", + "_RCID": "30319", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR3,3,6" + } + ], + "instruction": "SY(TOPSHP15;TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2065", + "_RCID": "30320", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP33" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR1,1,3" + } + ], + "instruction": "SY(TOPSHP00);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2066", + "_RCID": "30321", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP33" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR1,3,1" + } + ], + "instruction": "SY(TOPSHPS1);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2067", + "_RCID": "93917", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR1,11" + } + ], + "instruction": "SY(TOPSHP62);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2068", + "_RCID": "93740", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR11,1" + } + ], + "instruction": "SY(TOPSHP61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2069", + "_RCID": "93746", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR1,11" + } + ], + "instruction": "SY(TOPSHP71);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2070", + "_RCID": "30322", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR11,1" + } + ], + "instruction": "SY(TOPSHP67);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2071", + "_RCID": "30323", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR1,11" + } + ], + "instruction": "SY(TOPSHP25);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2072", + "_RCID": "30324", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR11,1" + } + ], + "instruction": "SY(TOPSHP31);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2073", + "_RCID": "30325", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP20" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR11,1" + } + ], + "instruction": "SY(TOPSHP84);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2074", + "_RCID": "93735", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP20" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR11,2" + } + ], + "instruction": "SY(TOPSHP81;TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2075", + "_RCID": "93761", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP20" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR11,1" + } + ], + "instruction": "SY(TOPSHP79);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2076", + "_RCID": "93810", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP22" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR1,11" + } + ], + "instruction": "SY(TOPSHP03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2077", + "_RCID": "93749", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP23" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR1,11" + } + ], + "instruction": "SY(TOPSHP01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2078", + "_RCID": "93748", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR11,2" + } + ], + "instruction": "SY(TOPSHP13);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2079", + "_RCID": "93763", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP25" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR11,2" + } + ], + "instruction": "SY(TOPSHP05);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2080", + "_RCID": "93767", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP6" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR1,2,1" + } + ], + "instruction": "SY(TOPSHPT8;TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2081", + "_RCID": "93958", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(TOPSHP58);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2082", + "_RCID": "93759", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(TOPSHP65);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2083", + "_RCID": "93744", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT4" + }, + { + "_index": "2", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(TOPSHP74);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2084", + "_RCID": "30327", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(TOPSHP69);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2085", + "_RCID": "93739", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR6,6" + } + ], + "instruction": "SY(TOPSHP70);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2086", + "_RCID": "30326", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(TOPSHP42);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2087", + "_RCID": "93755", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(TOPSHP32);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2088", + "_RCID": "93754", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR1,2" + } + ], + "instruction": "SY(TOPSHP40);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2089", + "_RCID": "93801", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(TOPMA107);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2090", + "_RCID": "93800", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR2,2" + } + ], + "instruction": "SY(TOPSHP37);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2091", + "_RCID": "30328", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR4,4" + } + ], + "instruction": "SY(TOPSHP48);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2092", + "_RCID": "93741", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR6,6" + } + ], + "instruction": "SY(TOPSHP44);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2093", + "_RCID": "30330", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP20" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(TOPSHP85);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2094", + "_RCID": "93734", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP20" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(TOPSHP87);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2095", + "_RCID": "93794", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP20" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(TOPSHP88);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2096", + "_RCID": "93795", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP20" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(TOPSHP80);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2097", + "_RCID": "93771", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(TOPSHPA9);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2098", + "_RCID": "93808", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(TOPSHPB0);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2099", + "_RCID": "93742", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR1,2" + } + ], + "instruction": "SY(TOPSHP99);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2100", + "_RCID": "93738", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(TOPSHP92);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2101", + "_RCID": "30331", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(TOPSHP93);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2102", + "_RCID": "30332", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(TOPSHP91);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2103", + "_RCID": "30333", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR3,2" + } + ], + "instruction": "SY(TOPSHP98);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2104", + "_RCID": "93802", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR3,4" + } + ], + "instruction": "SY(TOPSHPA2);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2105", + "_RCID": "93752", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR4,2" + } + ], + "instruction": "SY(TOPSHPA8);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2106", + "_RCID": "93770", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(TOPSHPA4);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2107", + "_RCID": "93764", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP22" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR3,2" + } + ], + "instruction": "SY(TOPSHP04);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2108", + "_RCID": "93751", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP23" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR3,2" + } + ], + "instruction": "SY(TOPSHP02);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2109", + "_RCID": "93750", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(TOPSHP16);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2110", + "_RCID": "30334", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR3,3" + } + ], + "instruction": "SY(TOPSHP20);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2111", + "_RCID": "30335", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR3,6" + } + ], + "instruction": "SY(TOPSHP19);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2112", + "_RCID": "93772", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR4,4" + } + ], + "instruction": "SY(TOPSHPU1);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2113", + "_RCID": "93960", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR6,6" + } + ], + "instruction": "SY(TOPSHP18);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2114", + "_RCID": "93773", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR11" + } + ], + "instruction": "SY(TOPSHP55);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2115", + "_RCID": "30336", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP3" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR4,4" + } + ], + "instruction": "SY(TOPSHPD2);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2116", + "_RCID": "93760", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLOUR4,1,2" + } + ], + "instruction": "SY(TOPSHP28);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2117", + "_RCID": "30337", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP10" + }, + { + "_index": "1", + "__text": "COLOUR3,4" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2118", + "_RCID": "93812", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLOUR3,3" + } + ], + "instruction": "SY(TOPSHP47);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2119", + "_RCID": "30338", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLOUR4,4" + } + ], + "instruction": "SY(TOPSHP48);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2120", + "_RCID": "30339", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLOUR3,3" + } + ], + "instruction": "SY(TOPSHP20);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2121", + "_RCID": "30340", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLOUR11" + } + ], + "instruction": "SY(TOPSHP55);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2122", + "_RCID": "30341", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLOUR11" + } + ], + "instruction": "SY(TOPSHP36);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2123", + "_RCID": "30342", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLOUR11" + } + ], + "instruction": "SY(TOPSHP11);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2124", + "_RCID": "93762", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP26" + }, + { + "_index": "1", + "__text": "COLOUR11" + } + ], + "instruction": "SY(TOPSHPD1);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2125", + "_RCID": "93757", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLOUR1" + } + ], + "instruction": "SY(TOPSHP51);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2126", + "_RCID": "93756", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLOUR1" + } + ], + "instruction": "SY(TOPSHP21);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2127", + "_RCID": "93798", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "SY(TOPSHP23);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2128", + "_RCID": "93791", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(TOPSHP22);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2129", + "_RCID": "30343", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(TOPSHP24);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2130", + "_RCID": "30344", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(TOPSHP35);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2131", + "_RCID": "30345", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP20" + }, + { + "_index": "1", + "__text": "COLOUR1" + } + ], + "instruction": "SY(TOPSHP83);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2132", + "_RCID": "93743", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP20" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "SY(TOPSHP82);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2133", + "_RCID": "93747", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLOUR1" + } + ], + "instruction": "SY(TOPSHP95);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2134", + "_RCID": "30346", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(TOPSHPA6);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2135", + "_RCID": "93766", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(TOPSHP12);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2136", + "_RCID": "30347", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(TOPMA102);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2137", + "_RCID": "30348", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(TOPSHP10);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2138", + "_RCID": "30349", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP25" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(TOPMA100);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2139", + "_RCID": "93811", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2140", + "_RCID": "93970", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP3" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(TOPSHPD3);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2141", + "_RCID": "93793", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP10" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2142", + "_RCID": "93780", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP11" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2143", + "_RCID": "93781", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2144", + "_RCID": "93782", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP13" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2145", + "_RCID": "93783", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP14" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2146", + "_RCID": "93784", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP15" + } + ], + "instruction": "SY(TOPSHQ15);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2147", + "_RCID": "93923", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP16" + } + ], + "instruction": "SY(TOPSHQ16);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2148", + "_RCID": "93924", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP17" + } + ], + "instruction": "SY(TOPSHQ17);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2149", + "_RCID": "93926", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP18" + } + ], + "instruction": "SY(TOPSHQ18);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2150", + "_RCID": "93927", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + } + ], + "instruction": "SY(TOPSHQ19);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2151", + "_RCID": "93785", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP20" + } + ], + "instruction": "SY(TOPSHQ20);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2152", + "_RCID": "93786", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + } + ], + "instruction": "SY(TOPSHQ21);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2153", + "_RCID": "93787", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP22" + } + ], + "instruction": "SY(TOPSHQ22);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2154", + "_RCID": "93788", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP23" + } + ], + "instruction": "SY(TOPSHQ23);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2155", + "_RCID": "93789", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + } + ], + "instruction": "SY(TOPSHQ24);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2156", + "_RCID": "93790", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP25" + } + ], + "instruction": "SY(TOPSHQ25);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2157", + "_RCID": "30354", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP26" + } + ], + "instruction": "SY(TOPSHQ26);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2158", + "_RCID": "93928", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP27" + } + ], + "instruction": "SY(TOPSHQ27);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2159", + "_RCID": "93929", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP28" + } + ], + "instruction": "SY(TOPSHQ28);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2160", + "_RCID": "93930", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP29" + } + ], + "instruction": "SY(TOPSHQ29);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2161", + "_RCID": "93931", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP30" + } + ], + "instruction": "SY(TOPSHQ30);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2162", + "_RCID": "93932", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP31" + } + ], + "instruction": "SY(TOPSHQ31);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2163", + "_RCID": "93933", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP32" + } + ], + "instruction": "SY(TOPSHQ32);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2164", + "_RCID": "93934", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP33" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2165", + "_RCID": "93914", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP1" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2166", + "_RCID": "93777", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP2" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2167", + "_RCID": "93778", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP3" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2168", + "_RCID": "93779", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP4" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2169", + "_RCID": "93919", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP5" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2170", + "_RCID": "93830", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP6" + } + ], + "instruction": "SY(TOPSHQ06);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2171", + "_RCID": "93920", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP7" + } + ], + "instruction": "SY(TOPSHQ07);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2172", + "_RCID": "93831", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP8" + } + ], + "instruction": "SY(TOPSHQ08);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2173", + "_RCID": "93921", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP9" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2174", + "_RCID": "93922", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(DAYSQR21);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2175", + "_RCID": "30355", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDIS1" + } + ], + "instruction": "SY(DISMAR04);TX(INFORM,3,2,2,'15110',2,0,CHMGD,21)", + "display-cat": "Other", + "comment": "32430", + "_id": "2176", + "_RCID": "30356", + "_name": "DISMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(DISMAR03);TX(INFORM,3,2,2,'15110',2,0,CHMGD,21)", + "display-cat": "Other", + "comment": "32430", + "_id": "2177", + "_RCID": "30357", + "_name": "DISMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CHINFO07)", + "display-cat": "Standard", + "comment": "26240", + "_id": "2178", + "_RCID": "30358", + "_name": "DMPGRD" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(FOGSIG01)", + "display-cat": "Standard", + "comment": "27080", + "_id": "2179", + "_RCID": "30359", + "_name": "FOGSIG" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "SY(FORSTC11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2180", + "_RCID": "30360", + "_name": "FORSTC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(FORSTC01)", + "display-cat": "Other", + "comment": "32220", + "_id": "2181", + "_RCID": "30361", + "_name": "FORSTC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF1" + } + ], + "instruction": "SY(FSHFAC03)", + "display-cat": "Other", + "comment": "34040", + "_id": "2182", + "_RCID": "30362", + "_name": "FSHFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF2" + } + ], + "instruction": "SY(FSHFAC02)", + "display-cat": "Other", + "comment": "34040", + "_id": "2183", + "_RCID": "30363", + "_name": "FSHFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF3" + } + ], + "instruction": "SY(FSHFAC02)", + "display-cat": "Other", + "comment": "34040", + "_id": "2184", + "_RCID": "30364", + "_name": "FSHFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATFIF4" + } + ], + "instruction": "SY(FSHFAC02)", + "display-cat": "Other", + "comment": "34040", + "_id": "2185", + "_RCID": "30365", + "_name": "FSHFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(FSHHAV01)", + "display-cat": "Other", + "comment": "34040", + "_id": "2186", + "_RCID": "30366", + "_name": "FSHFAC" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATGAT2" + } + ], + "instruction": "SY(GATCON04)", + "display-cat": "Standard", + "comment": "22010", + "_id": "2187", + "_RCID": "30367", + "_name": "GATCON" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATGAT3" + } + ], + "instruction": "SY(GATCON04)", + "display-cat": "Other", + "comment": "32440", + "_id": "2188", + "_RCID": "30368", + "_name": "GATCON" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATGAT4" + } + ], + "instruction": "SY(GATCON03)", + "display-cat": "Other", + "comment": "32440", + "_id": "2189", + "_RCID": "30369", + "_name": "GATCON" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(GATCON04)", + "display-cat": "Standard", + "comment": "22010", + "_id": "2190", + "_RCID": "30370", + "_name": "GATCON" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "2191", + "_RCID": "30371", + "_name": "GRIDRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATHAF1" + } + ], + "instruction": "SY(ROLROL01)", + "display-cat": "Other", + "comment": "32410", + "_id": "2192", + "_RCID": "30372", + "_name": "HRBFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATHAF4" + } + ], + "instruction": "SY(HRBFAC09)", + "display-cat": "Other", + "comment": "32410", + "_id": "2193", + "_RCID": "30373", + "_name": "HRBFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATHAF5" + } + ], + "instruction": "SY(SMCFAC02)", + "display-cat": "Other", + "comment": "32410", + "_id": "2194", + "_RCID": "30374", + "_name": "HRBFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CHINFO07)", + "display-cat": "Other", + "comment": "32410", + "_id": "2195", + "_RCID": "30375", + "_name": "HRBFAC" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(HULKES01)", + "display-cat": "Standard", + "comment": "12410", + "_id": "2196", + "_RCID": "30376", + "_name": "HULKES" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CHINFO07)", + "display-cat": "Standard", + "comment": "26250", + "_id": "2197", + "_RCID": "30377", + "_name": "ICNARE" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "CS(LIGHTS05)", + "display-cat": "Standard", + "comment": "27070", + "_id": "2202", + "_RCID": "30382", + "_name": "LIGHTS" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(LITFLT10);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2203", + "_RCID": "30383", + "_name": "LITFLT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + } + ], + "instruction": "SY(LITFLT61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2204", + "_RCID": "30384", + "_name": "LITFLT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(LITFLT01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2205", + "_RCID": "30385", + "_name": "LITFLT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + } + ], + "instruction": "SY(LITVES60);TE('LtV %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17011", + "_id": "2206", + "_RCID": "30386", + "_name": "LITVES" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + } + ], + "instruction": "SY(LITVES61);TE('LtV %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17011", + "_id": "2207", + "_RCID": "30387", + "_name": "LITVES" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(LITVES01);TE('LtV %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17011", + "_id": "2208", + "_RCID": "30388", + "_name": "LITVES" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(LNDARE01);CS(QUAPOS01;TX(OBJNAM,1,2,3,'15118',-1,-1,CHBLK,26))", + "display-cat": "Displaybase", + "comment": "12010", + "_id": "2209", + "_RCID": "30389", + "_name": "LNDARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(POSGEN04);TX(ELEVAT,3,2,2,'15110',1,-1,CHBLK,31);TX(HEIGHT,3,2,2,'15110',1,-1,CHBLK,31)", + "display-cat": "Other", + "comment": "32010", + "_id": "2210", + "_RCID": "30390", + "_name": "LNDELV" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "FUNCTN33" + }, + { + "_index": "3", + "__text": "COLOUR1,2,1" + } + ], + "instruction": "SY(TOWERS51)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2211", + "_RCID": "94002", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "FUNCTN33" + }, + { + "_index": "3", + "__text": "COLOUR1,3,1" + } + ], + "instruction": "SY(TOWERS72)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2212", + "_RCID": "93988", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "FUNCTN33" + }, + { + "_index": "3", + "__text": "COLOUR2,1,2" + } + ], + "instruction": "SY(TOWERS92)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2213", + "_RCID": "30391", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "FUNCTN33" + }, + { + "_index": "3", + "__text": "COLOUR2,1,7" + } + ], + "instruction": "SY(TOWERS93)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2214", + "_RCID": "30392", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "FUNCTN33" + }, + { + "_index": "3", + "__text": "COLOUR2,3,2" + } + ], + "instruction": "SY(TOWERS73)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2215", + "_RCID": "93989", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "FUNCTN33" + }, + { + "_index": "3", + "__text": "COLOUR1,2" + } + ], + "instruction": "SY(TOWERS79)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2216", + "_RCID": "30393", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "FUNCTN33" + }, + { + "_index": "3", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(TOWERS48)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2217", + "_RCID": "94010", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "FUNCTN33" + }, + { + "_index": "3", + "__text": "COLOUR2,1" + } + ], + "instruction": "SY(TOWERS83)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2218", + "_RCID": "30394", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT3" + }, + { + "_index": "2", + "__text": "FUNCTN33" + }, + { + "_index": "3", + "__text": "COLOUR2,1" + } + ], + "instruction": "SY(TOWERS94)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2219", + "_RCID": "30395", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT4" + }, + { + "_index": "2", + "__text": "FUNCTN33" + }, + { + "_index": "3", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(TOWERS98)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2220", + "_RCID": "94005", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR3,1,3,1" + } + ], + "instruction": "SY(TOWERS85)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2221", + "_RCID": "93993", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR1,6,1" + } + ], + "instruction": "SY(TOWERS67)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2222", + "_RCID": "93997", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR1,7,1" + } + ], + "instruction": "SY(TOWERS66)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2223", + "_RCID": "93999", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR1,2" + } + ], + "instruction": "SY(TOWERS88)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2224", + "_RCID": "94006", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(TOWERS52)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2225", + "_RCID": "94000", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR2,1" + } + ], + "instruction": "SY(TOWERS83)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2226", + "_RCID": "94008", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(TOWERS53)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2227", + "_RCID": "93994", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR1,2" + } + ], + "instruction": "SY(TOWERS96)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2228", + "_RCID": "94009", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(TOWERS50)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2229", + "_RCID": "94003", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR2,1" + } + ], + "instruction": "SY(TOWERS49)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2230", + "_RCID": "94007", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLPAT3" + }, + { + "_index": "2", + "__text": "COLOUR1,2" + } + ], + "instruction": "SY(TOWERS97)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2231", + "_RCID": "93964", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK15" + }, + { + "_index": "1", + "__text": "FUNCTN20" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2232", + "_RCID": "30396", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK15" + }, + { + "_index": "1", + "__text": "FUNCTN21" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2233", + "_RCID": "30397", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN17" + }, + { + "_index": "2", + "__text": "COLOUR7" + } + ], + "instruction": "SY(TOWERS65)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2234", + "_RCID": "93998", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN20" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2235", + "_RCID": "30398", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN21" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2236", + "_RCID": "30399", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN33" + }, + { + "_index": "2", + "__text": "COLOUR1" + } + ], + "instruction": "SY(TOWERS05)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2237", + "_RCID": "30400", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN33" + }, + { + "_index": "2", + "__text": "COLOUR3" + } + ], + "instruction": "SY(TOWERS60)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2238", + "_RCID": "30401", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN33" + }, + { + "_index": "2", + "__text": "COLOUR4" + } + ], + "instruction": "SY(TOWERS61)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2239", + "_RCID": "30402", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN33" + }, + { + "_index": "2", + "__text": "COLOUR6" + } + ], + "instruction": "SY(TOWERS62)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2240", + "_RCID": "94001", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN33" + }, + { + "_index": "2", + "__text": "COLOUR7" + } + ], + "instruction": "SY(TOWERS65)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2241", + "_RCID": "93995", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN33" + }, + { + "_index": "2", + "__text": "COLOUR8" + } + ], + "instruction": "SY(TOWERS59)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2242", + "_RCID": "94004", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN33" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TOWERS03);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2243", + "_RCID": "30403", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK20" + }, + { + "_index": "1", + "__text": "FUNCTN20" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2244", + "_RCID": "30404", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK20" + }, + { + "_index": "1", + "__text": "FUNCTN21" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2245", + "_RCID": "30405", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK20" + }, + { + "_index": "1", + "__text": "FUNCTN26" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL15)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2246", + "_RCID": "30406", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK20" + }, + { + "_index": "1", + "__text": "FUNCTN27" + }, + { + "_index": "2", + "__text": "CONVIS1" + } + ], + "instruction": "SY(BUIREL15)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2247", + "_RCID": "30407", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN31,33" + } + ], + "instruction": "SY(TOWERS15);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2248", + "_RCID": "93963", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN20" + } + ], + "instruction": "SY(BUIREL13)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2249", + "_RCID": "93946", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN31" + } + ], + "instruction": "SY(TOWERS15);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2250", + "_RCID": "30408", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "FUNCTN33" + } + ], + "instruction": "SY(TOWERS01);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2251", + "_RCID": "30409", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK20" + }, + { + "_index": "1", + "__text": "FUNCTN20" + } + ], + "instruction": "SY(BUIREL01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2252", + "_RCID": "30410", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK10" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(MONUMT12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2253", + "_RCID": "30411", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK12" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(MONUMT12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2254", + "_RCID": "30412", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK13" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(MONUMT12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2255", + "_RCID": "30413", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK15" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(DOMES011)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2256", + "_RCID": "30414", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK16" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(RASCAN11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2257", + "_RCID": "30415", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "COLOUR1" + } + ], + "instruction": "SY(TOWERS05)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2258", + "_RCID": "93962", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TOWERS03)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2259", + "_RCID": "30416", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK18" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(WNDMIL12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2260", + "_RCID": "30417", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK19" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(WIMCON11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2261", + "_RCID": "30418", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK20" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(POSGEN03)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2262", + "_RCID": "30419", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK1" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(CAIRNS11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2263", + "_RCID": "30420", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK3" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(CHIMNY11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2264", + "_RCID": "30421", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK4" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(DSHAER11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2265", + "_RCID": "30422", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK5" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(FLGSTF01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2266", + "_RCID": "30423", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK6" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(FLASTK11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2267", + "_RCID": "30424", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK7" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(MSTCON14)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2268", + "_RCID": "30425", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK8" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(POSGEN03)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2269", + "_RCID": "30426", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK9" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(MONUMT12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2270", + "_RCID": "30427", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK10" + } + ], + "instruction": "SY(MONUMT02)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2271", + "_RCID": "30428", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK12" + } + ], + "instruction": "SY(MONUMT02)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2272", + "_RCID": "30429", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK13" + } + ], + "instruction": "SY(MONUMT02)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2273", + "_RCID": "30430", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK15" + } + ], + "instruction": "SY(DOMES001)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2274", + "_RCID": "30431", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK16" + } + ], + "instruction": "SY(RASCAN01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2275", + "_RCID": "30432", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK17" + } + ], + "instruction": "SY(TOWERS01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2276", + "_RCID": "30433", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK18" + } + ], + "instruction": "SY(WNDMIL02)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2277", + "_RCID": "30434", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK19" + } + ], + "instruction": "SY(WIMCON01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2278", + "_RCID": "30435", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK20" + } + ], + "instruction": "SY(POSGEN01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2279", + "_RCID": "30436", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK1" + } + ], + "instruction": "SY(CAIRNS01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2280", + "_RCID": "30437", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK3" + } + ], + "instruction": "SY(CHIMNY01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2281", + "_RCID": "30438", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK4" + } + ], + "instruction": "SY(DSHAER01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2282", + "_RCID": "30439", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK5" + } + ], + "instruction": "SY(FLGSTF01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2283", + "_RCID": "30440", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK6" + } + ], + "instruction": "SY(FLASTK01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2284", + "_RCID": "30441", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK7" + } + ], + "instruction": "SY(MSTCON04)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2285", + "_RCID": "30442", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK8" + } + ], + "instruction": "SY(POSGEN03)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2286", + "_RCID": "30443", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATLMK9" + } + ], + "instruction": "SY(MONUMT02)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2287", + "_RCID": "30444", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "SY(POSGEN03)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2288", + "_RCID": "30445", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(POSGEN01)", + "display-cat": "Standard", + "comment": "32220", + "_id": "2289", + "_RCID": "30446", + "_name": "LNDMRK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(POSGEN04);TX(OBJNAM,1,2,2,'15120',0,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "21060", + "_id": "2290", + "_RCID": "30447", + "_name": "LNDRGN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(LOCMAG01)", + "display-cat": "Other", + "comment": "31080", + "_id": "2291", + "_RCID": "30448", + "_name": "LOCMAG" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "2292", + "_RCID": "30449", + "_name": "LOGPON" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(MAGVAR01);TX(VALMAG,3,1,2,'15110',1,-1,CHBLK,27)", + "display-cat": "Other", + "comment": "31080", + "_id": "2293", + "_RCID": "30450", + "_name": "MAGVAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(MARCUL02)", + "display-cat": "Standard", + "comment": "26210", + "_id": "2294", + "_RCID": "30451", + "_name": "MARCUL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CHINFO06)", + "display-cat": "Standard", + "comment": "26040", + "_id": "2295", + "_RCID": "30452", + "_name": "MIPARE" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(MONUMT12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2296", + "_RCID": "30453", + "_name": "MONUMT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATMOR7" + }, + { + "_index": "1", + "__text": "BOYSHP3" + } + ], + "instruction": "SY(BOYMOR01)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2297", + "_RCID": "30454", + "_name": "MORFAC" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATMOR7" + }, + { + "_index": "1", + "__text": "BOYSHP6" + } + ], + "instruction": "SY(BOYMOR03)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2298", + "_RCID": "30455", + "_name": "MORFAC" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATMOR1" + } + ], + "instruction": "SY(MORFAC03)", + "display-cat": "Standard", + "comment": "12410", + "_id": "2299", + "_RCID": "30456", + "_name": "MORFAC" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATMOR2" + } + ], + "instruction": "SY(MORFAC04)", + "display-cat": "Standard", + "comment": "12410", + "_id": "2300", + "_RCID": "30457", + "_name": "MORFAC" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATMOR3" + } + ], + "instruction": "SY(PILPNT02)", + "display-cat": "Other", + "comment": "32440", + "_id": "2301", + "_RCID": "30458", + "_name": "MORFAC" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATMOR5" + } + ], + "instruction": "SY(PILPNT02)", + "display-cat": "Standard", + "comment": "12410", + "_id": "2302", + "_RCID": "30459", + "_name": "MORFAC" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATMOR7" + } + ], + "instruction": "SY(BOYMOR11)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2303", + "_RCID": "30460", + "_name": "MORFAC" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(MORFAC03)", + "display-cat": "Standard", + "comment": "12410", + "_id": "2304", + "_RCID": "30461", + "_name": "MORFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CHINFO07)", + "display-cat": "Other", + "comment": "31020", + "_id": "2305", + "_RCID": "30462", + "_name": "M_NPUB" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "SYMINS" + } + ], + "instruction": "CS(SYMINS01)", + "display-cat": "Standard", + "comment": "21020", + "_id": "2306", + "_RCID": "30463", + "_name": "NEWOBJ" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "SY(NEWOBJ01)", + "display-cat": "Standard", + "comment": "21020", + "_id": "2307", + "_RCID": "30464", + "_name": "NEWOBJ" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS10" + }, + { + "_index": "1", + "__text": "VALSOU" + } + ], + "instruction": "SY(FLTHAZ02)", + "display-cat": "Other", + "comment": "34051", + "_id": "2308", + "_RCID": "30465", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS7" + }, + { + "_index": "1", + "__text": "VALSOU" + } + ], + "instruction": "SY(FOULGND1)", + "display-cat": "Other", + "comment": "34051", + "_id": "2309", + "_RCID": "30466", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS8" + }, + { + "_index": "1", + "__text": "VALSOU" + } + ], + "instruction": "SY(FLTHAZ02)", + "display-cat": "Other", + "comment": "34051", + "_id": "2310", + "_RCID": "30467", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS9" + }, + { + "_index": "1", + "__text": "VALSOU" + } + ], + "instruction": "SY(ACHARE02)", + "display-cat": "Other", + "comment": "34051", + "_id": "2311", + "_RCID": "30468", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS10" + } + ], + "instruction": "SY(FLTHAZ02)", + "display-cat": "Other", + "comment": "34050", + "_id": "2312", + "_RCID": "30469", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS7" + } + ], + "instruction": "SY(FOULGND1)", + "display-cat": "Other", + "comment": "34050", + "_id": "2313", + "_RCID": "30470", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS8" + } + ], + "instruction": "SY(FLTHAZ02)", + "display-cat": "Other", + "comment": "34050", + "_id": "2314", + "_RCID": "30471", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATOBS9" + } + ], + "instruction": "SY(ACHARE02)", + "display-cat": "Other", + "comment": "34050", + "_id": "2315", + "_RCID": "30472", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "WATLEV7" + } + ], + "instruction": "SY(FLTHAZ02)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "2316", + "_RCID": "30473", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "CS(OBSTRN04)", + "display-cat": "Other", + "comment": "34050", + "_id": "2317", + "_RCID": "30474", + "_name": "OBSTRN" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(OFSPLF01);TE('Prod %s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "12210", + "_id": "2318", + "_RCID": "30475", + "_name": "OFSPLF" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(PILBOP02);TE('Plt %s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "28010", + "_id": "2319", + "_RCID": "30476", + "_name": "PILBOP" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(PILPNT02)", + "display-cat": "Standard", + "comment": "12410", + "_id": "2320", + "_RCID": "30477", + "_name": "PILPNT" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CHINFO07)", + "display-cat": "Standard", + "comment": "26230", + "_id": "2321", + "_RCID": "30478", + "_name": "PIPARE" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "2322", + "_RCID": "30479", + "_name": "PIPSOL" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(PRCARE12)", + "display-cat": "Standard", + "comment": "15010", + "_id": "2323", + "_RCID": "30480", + "_name": "PRCARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA5" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(FLASTK11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2324", + "_RCID": "30481", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA8" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TNKCON12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2325", + "_RCID": "30482", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA9" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(WIMCON11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2326", + "_RCID": "30483", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA10" + } + ], + "instruction": "SY(PRDINS02)", + "display-cat": "Other", + "comment": "32270", + "_id": "2327", + "_RCID": "30484", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA1" + } + ], + "instruction": "SY(PRDINS02)", + "display-cat": "Other", + "comment": "32270", + "_id": "2328", + "_RCID": "30485", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA2" + } + ], + "instruction": "SY(PRDINS02)", + "display-cat": "Other", + "comment": "32270", + "_id": "2329", + "_RCID": "30486", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA3" + } + ], + "instruction": "SY(PRDINS02)", + "display-cat": "Other", + "comment": "32270", + "_id": "2330", + "_RCID": "30487", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA4" + } + ], + "instruction": "SY(PRDINS02)", + "display-cat": "Other", + "comment": "32270", + "_id": "2331", + "_RCID": "30488", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA5" + } + ], + "instruction": "SY(FLASTK01)", + "display-cat": "Other", + "comment": "32270", + "_id": "2332", + "_RCID": "30489", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA6" + } + ], + "instruction": "SY(TMBYRD01)", + "display-cat": "Other", + "comment": "32270", + "_id": "2333", + "_RCID": "30490", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA7" + } + ], + "instruction": "SY(PRDINS02)", + "display-cat": "Other", + "comment": "32270", + "_id": "2334", + "_RCID": "30491", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA8" + } + ], + "instruction": "SY(TNKCON02)", + "display-cat": "Other", + "comment": "32270", + "_id": "2335", + "_RCID": "30492", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATPRA9" + } + ], + "instruction": "SY(WIMCON01)", + "display-cat": "Other", + "comment": "32270", + "_id": "2336", + "_RCID": "30493", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "2337", + "_RCID": "30494", + "_name": "PRDARE" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(POSGEN03)", + "display-cat": "Standard", + "comment": "12210", + "_id": "2338", + "_RCID": "30495", + "_name": "PYLONS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(RADRFL03)", + "display-cat": "Standard", + "comment": "27230", + "_id": "2339", + "_RCID": "30496", + "_name": "RADRFL" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATRAS2" + } + ], + "instruction": "SY(RDOSTA02);TE('ch %s','COMCHA',3,1,2,'15110',0,0,CHBLK,11)", + "display-cat": "Other", + "comment": "38010", + "_id": "2340", + "_RCID": "30497", + "_name": "RADSTA" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(POSGEN01)", + "display-cat": "Other", + "comment": "38010", + "_id": "2341", + "_RCID": "30498", + "_name": "RADSTA" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "2342", + "_RCID": "30499", + "_name": "RAPIDS" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + } + ], + "instruction": "SY(RCTLPT52,ORIENT)", + "display-cat": "Standard", + "comment": "15020", + "_id": "2343", + "_RCID": "30500", + "_name": "RCTLPT" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(RTLDEF51)", + "display-cat": "Standard", + "comment": "15020", + "_id": "2344", + "_RCID": "30501", + "_name": "RCTLPT" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC1" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(RDOCAL02,ORIENT);TE('%s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21);TE('Ch %s','COMCHA',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "2345", + "_RCID": "30502", + "_name": "RDOCAL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC2" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(RDOCAL02,ORIENT);TE('%s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21);TE('Ch %s','COMCHA',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "2346", + "_RCID": "30503", + "_name": "RDOCAL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC3" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(RDOCAL02,ORIENT);TE('%s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21);TE('Ch %s','COMCHA',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "2347", + "_RCID": "30504", + "_name": "RDOCAL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC4" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(RDOCAL03,ORIENT);TE('%s','OBJNAM',3,1,2,'15110',1,-1,CHBLK,21);TE('Ch %s','COMCHA',3,1,2,'15110',1,1,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "2348", + "_RCID": "30505", + "_name": "RDOCAL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(RCLDEF01);TE('%s','OBJNAM',3,2,2,'15110',1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "15060", + "_id": "2349", + "_RCID": "30506", + "_name": "RDOCAL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATROS10" + } + ], + "instruction": "SY(RDOSTA02);TX('DGPS',3,1,2,'15110',1,1,CHBLK,27)", + "display-cat": "Other", + "comment": "38010", + "_id": "2350", + "_RCID": "30507", + "_name": "RDOSTA" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(RDOSTA02)", + "display-cat": "Other", + "comment": "38010", + "_id": "2351", + "_RCID": "30508", + "_name": "RDOSTA" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(RETRFL01)", + "display-cat": "Standard", + "comment": "27080", + "_id": "2352", + "_RCID": "30509", + "_name": "RETRFL" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "2353", + "_RCID": "30510", + "_name": "ROADWY" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(RSCSTA02)", + "display-cat": "Other", + "comment": "38030", + "_id": "2354", + "_RCID": "30511", + "_name": "RSCSTA" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(RTPBCN02)", + "display-cat": "Standard", + "comment": "27210", + "_id": "2355", + "_RCID": "30512", + "_name": "RTPBCN" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "2356", + "_RCID": "30513", + "_name": "RUNWAY" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "TX(NATSUR,1,2,2,'15110',0,0,CHBLK,25)", + "display-cat": "Other", + "comment": "34010", + "_id": "2357", + "_RCID": "30514", + "_name": "SBDARE" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "TX(OBJNAM,1,2,3,'15120',0,0,CHGRD,26)", + "display-cat": "Standard", + "comment": "21060", + "_id": "2358", + "_RCID": "30515", + "_name": "SEAARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSIL1" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(SILBUI11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2359", + "_RCID": "30516", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSIL2" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TNKCON12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2360", + "_RCID": "30517", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSIL3" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TOWERS03)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2361", + "_RCID": "30518", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSIL4" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TOWERS12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2362", + "_RCID": "30519", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSIL1" + } + ], + "instruction": "SY(SILBUI01)", + "display-cat": "Other", + "comment": "32220", + "_id": "2363", + "_RCID": "30520", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSIL2" + } + ], + "instruction": "SY(TNKCON02)", + "display-cat": "Other", + "comment": "32220", + "_id": "2364", + "_RCID": "30521", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSIL3" + } + ], + "instruction": "SY(TOWERS01)", + "display-cat": "Other", + "comment": "32220", + "_id": "2365", + "_RCID": "30522", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSIL4" + } + ], + "instruction": "SY(TOWERS02)", + "display-cat": "Other", + "comment": "32220", + "_id": "2366", + "_RCID": "30523", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "SY(TNKCON12)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2367", + "_RCID": "30524", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(TNKCON02)", + "display-cat": "Other", + "comment": "32220", + "_id": "2368", + "_RCID": "30525", + "_name": "SILTNK" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(SISTAT02)", + "display-cat": "Standard", + "comment": "28020", + "_id": "2369", + "_RCID": "30526", + "_name": "SISTAT" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(SISTAT02)", + "display-cat": "Standard", + "comment": "28020", + "_id": "2370", + "_RCID": "30527", + "_name": "SISTAW" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(MORFAC03);CS(SLCONS03)", + "display-cat": "Standard", + "comment": "12410", + "_id": "2371", + "_RCID": "30528", + "_name": "SLCONS" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "SY(HILTOP01)", + "display-cat": "Other", + "comment": "32010", + "_id": "2372", + "_RCID": "30529", + "_name": "SLOGRD" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CONVIS1" + } + ], + "instruction": "SY(HILTOP11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2373", + "_RCID": "30530", + "_name": "SLOTOP" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "SY(HILTOP01)", + "display-cat": "Other", + "comment": "32010", + "_id": "2374", + "_RCID": "30531", + "_name": "SLOTOP" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "2375", + "_RCID": "30532", + "_name": "SMCFAC" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(SNDWAV02)", + "display-cat": "Standard", + "comment": "24010", + "_id": "2376", + "_RCID": "30533", + "_name": "SNDWAV" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "CS(SOUNDG02)", + "display-cat": "Other", + "comment": "33010", + "_id": "2377", + "_RCID": "30534", + "_name": "SOUNDG" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CHINFO06)", + "display-cat": "Standard", + "comment": "26040", + "_id": "2378", + "_RCID": "30535", + "_name": "SPLARE" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(SPRING02)", + "display-cat": "Other", + "comment": "34020", + "_id": "2379", + "_RCID": "30536", + "_name": "SPRING" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT6" + }, + { + "_index": "2", + "__text": "COLOUR1,11" + } + ], + "instruction": "SY(TOPMAR98);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2380", + "_RCID": "30537", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLPAT3" + }, + { + "_index": "2", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(TOPSHPU2);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2381", + "_RCID": "93991", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP3" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR3,4" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2382", + "_RCID": "93871", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP3" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR3,6" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2383", + "_RCID": "93887", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP6" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(TOPSHPT2);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2384", + "_RCID": "93952", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP7" + }, + { + "_index": "1", + "__text": "COLPAT3" + }, + { + "_index": "2", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(TOPSHPI3);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2385", + "_RCID": "93990", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLOUR1,11" + } + ], + "instruction": "SY(TOPMAR99);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2386", + "_RCID": "30538", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP6" + }, + { + "_index": "1", + "__text": "COLOUR11,2" + } + ], + "instruction": "SY(TOPSHPT6);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2387", + "_RCID": "93956", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP6" + }, + { + "_index": "1", + "__text": "COLOUR2,11" + } + ], + "instruction": "SY(TOPSHPT7);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2388", + "_RCID": "93957", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP23" + }, + { + "_index": "1", + "__text": "COLOUR11" + } + ], + "instruction": "SY(TOPSHP07);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2389", + "_RCID": "93910", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP6" + }, + { + "_index": "1", + "__text": "COLOUR1,2" + } + ], + "instruction": "SY(TOPSHPT5);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2390", + "_RCID": "93955", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP6" + }, + { + "_index": "1", + "__text": "COLOUR2,1" + } + ], + "instruction": "SY(TOPSHPT4);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2391", + "_RCID": "93954", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP10" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2392", + "_RCID": "93850", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP11" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2393", + "_RCID": "93848", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLOUR1" + } + ], + "instruction": "SY(TOPSHP51);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2394", + "_RCID": "93971", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "SY(TOPSHP52);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2395", + "_RCID": "93908", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(TOPSHP54);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2396", + "_RCID": "93897", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(TOPSHP53);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2397", + "_RCID": "93907", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP13" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2398", + "_RCID": "93832", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP14" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2399", + "_RCID": "93852", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP17" + }, + { + "_index": "1", + "__text": "COLOUR1" + } + ], + "instruction": "SY(TOPSHPJ3);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2400", + "_RCID": "93911", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP17" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(TOPSHPJ1);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2401", + "_RCID": "93824", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "SY(TOPSHP23);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2402", + "_RCID": "93899", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP22" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "SY(TOPSHPR1);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2403", + "_RCID": "93900", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(TOPSHP10);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2404", + "_RCID": "93992", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2405", + "_RCID": "93969", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(TOPMA115);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2406", + "_RCID": "93872", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2407", + "_RCID": "93888", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP3" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2408", + "_RCID": "93833", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP3" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2409", + "_RCID": "93909", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP4" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2410", + "_RCID": "93876", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP5" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(TOPMA114);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2411", + "_RCID": "93828", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP5" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2412", + "_RCID": "93891", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP6" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "SY(TOPSHPT3);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2413", + "_RCID": "93953", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP6" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(TOPSHPT1);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2414", + "_RCID": "93951", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP7" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "SY(TOPSHPI2);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2415", + "_RCID": "93890", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP7" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(TOPSHPI1);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2416", + "_RCID": "93870", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP8" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(TOPSHPP2);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2417", + "_RCID": "93905", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP10" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2418", + "_RCID": "93836", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP11" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2419", + "_RCID": "93837", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2420", + "_RCID": "93829", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP13" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2421", + "_RCID": "93838", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP14" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2422", + "_RCID": "93839", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP17" + } + ], + "instruction": "SY(TOPSHQ17);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2423", + "_RCID": "93825", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + } + ], + "instruction": "SY(TOPSHQ19);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2424", + "_RCID": "93847", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP20" + } + ], + "instruction": "SY(TOPSHQ20);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2425", + "_RCID": "93841", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + } + ], + "instruction": "SY(TOPSHQ21);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2426", + "_RCID": "93842", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP22" + } + ], + "instruction": "SY(TOPSHQ22);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2427", + "_RCID": "93843", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP23" + } + ], + "instruction": "SY(TOPSHQ23);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2428", + "_RCID": "93844", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + } + ], + "instruction": "SY(TOPSHQ24);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2429", + "_RCID": "93845", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP25" + } + ], + "instruction": "SY(TOPSHQ25);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2430", + "_RCID": "93846", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP26" + } + ], + "instruction": "SY(TOPSHQ26);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2431", + "_RCID": "93855", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP27" + } + ], + "instruction": "SY(TOPSHQ27);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2432", + "_RCID": "93901", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP28" + } + ], + "instruction": "SY(TOPSHQ28);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2433", + "_RCID": "93904", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP29" + } + ], + "instruction": "SY(TOPSHQ29);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2434", + "_RCID": "93935", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP30" + } + ], + "instruction": "SY(TOPSHQ30);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2435", + "_RCID": "93936", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP31" + } + ], + "instruction": "SY(TOPSHQ31);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2436", + "_RCID": "93937", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP32" + } + ], + "instruction": "SY(TOPSHQ32);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2437", + "_RCID": "93938", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP33" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2438", + "_RCID": "93915", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP98" + } + ], + "instruction": "SY(ZZZZZZ01)", + "display-cat": "Standard", + "comment": "27020", + "_id": "2439", + "_RCID": "93892", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP99" + } + ], + "instruction": "SY(ZZZZZZ01)", + "display-cat": "Standard", + "comment": "27020", + "_id": "2440", + "_RCID": "93895", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + } + ], + "instruction": "SY(TOPMAR91)", + "display-cat": "Standard", + "comment": "27020", + "_id": "2441", + "_RCID": "94011", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + }, + { + "_index": "1", + "__text": "INFORMtriangle, point up|TR" + } + ], + "instruction": "SY(TOPSHP20)", + "display-cat": "Standard", + "comment": "27020", + "_id": "2441", + "_RCID": "940111", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + } + ], + "instruction": "SY(TOPMAR92)", + "display-cat": "Standard", + "comment": "27020", + "_id": "2442", + "_RCID": "94012", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + }, + { + "_index": "1", + "__text": "INFORMsquare|SG" + } + ], + "instruction": "SY(TOPSHP48)", + "display-cat": "Standard", + "comment": "27020", + "_id": "2442", + "_RCID": "940121", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP1" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2443", + "_RCID": "93827", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP2" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2444", + "_RCID": "93826", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP3" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2445", + "_RCID": "93835", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP4" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2446", + "_RCID": "93874", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP5" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2447", + "_RCID": "93834", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP6" + } + ], + "instruction": "SY(TOPSHQ06);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2448", + "_RCID": "93878", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP7" + } + ], + "instruction": "SY(TOPSHQ07);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2449", + "_RCID": "93840", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP8" + } + ], + "instruction": "SY(TOPSHQ08);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2450", + "_RCID": "93880", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP9" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2451", + "_RCID": "93912", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(TOPMAR01)", + "display-cat": "Standard", + "comment": "27020", + "_id": "2452", + "_RCID": "30539", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR1,3,1" + }, + { + "_index": "1", + "__text": "COLPAT1" + } + ], + "instruction": "SY(TOWERS72);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2453", + "_RCID": "93981", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR11,1" + }, + { + "_index": "1", + "__text": "COLPAT2" + } + ], + "instruction": "SY(TOWERS54);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2454", + "_RCID": "93987", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR11,1" + }, + { + "_index": "1", + "__text": "COLPAT4" + } + ], + "instruction": "SY(TOWERS56);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2455", + "_RCID": "93976", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR2,11" + }, + { + "_index": "1", + "__text": "COLPAT1" + } + ], + "instruction": "SY(TOWERS75);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2456", + "_RCID": "93983", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR1,2" + }, + { + "_index": "1", + "__text": "COLPAT2" + } + ], + "instruction": "SY(TOWERS96);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2457", + "_RCID": "93950", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR1,3" + }, + { + "_index": "1", + "__text": "COLPAT2" + } + ], + "instruction": "SY(TOWERS95);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2458", + "_RCID": "93947", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR1,5" + }, + { + "_index": "1", + "__text": "COLPAT1" + } + ], + "instruction": "SY(TOWERS76);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2459", + "_RCID": "93982", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR1,8" + }, + { + "_index": "1", + "__text": "COLPAT2" + } + ], + "instruction": "SY(TOWERS58);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2460", + "_RCID": "93974", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR2,1" + }, + { + "_index": "1", + "__text": "COLPAT4" + } + ], + "instruction": "SY(TOWERS99);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2461", + "_RCID": "93972", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR2,3" + }, + { + "_index": "1", + "__text": "COLPAT1" + } + ], + "instruction": "SY(TOWERS57);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2462", + "_RCID": "93975", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,1" + }, + { + "_index": "1", + "__text": "COLPAT4" + } + ], + "instruction": "SY(TOWERS98);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2463", + "_RCID": "93968", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR6,2" + }, + { + "_index": "1", + "__text": "COLPAT3" + } + ], + "instruction": "SY(TOWERS55);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2464", + "_RCID": "93978", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR2,3,2" + } + ], + "instruction": "SY(TOWERS80);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2465", + "_RCID": "30540", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR2,6,2" + } + ], + "instruction": "SY(TOWERS70);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2466", + "_RCID": "30541", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,1,2" + } + ], + "instruction": "SY(TOWERS81);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2467", + "_RCID": "30542", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR6,2,6" + } + ], + "instruction": "SY(TOWERS71);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2468", + "_RCID": "30543", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR1,11" + } + ], + "instruction": "SY(TOWERS74|;TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2469", + "_RCID": "93985", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR1,2" + } + ], + "instruction": "SY(TOWERS79);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2470", + "_RCID": "30544", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(TOWERS78);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2471", + "_RCID": "30545", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(TOWERS77);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2472", + "_RCID": "30546", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR1,5" + } + ], + "instruction": "SY(TOWERS76);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2473", + "_RCID": "93984", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR1,7" + } + ], + "instruction": "SY(TOWERS87);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2474", + "_RCID": "30547", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR2,1" + } + ], + "instruction": "SY(TOWERS83);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2475", + "_RCID": "30548", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR2,6" + } + ], + "instruction": "SY(TOWERS68);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2476", + "_RCID": "30549", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR2,7" + } + ], + "instruction": "SY(TOWERS84);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2477", + "_RCID": "30550", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(TOWERS85);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2478", + "_RCID": "30551", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(TOWERS85);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2479", + "_RCID": "30552", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3,7" + } + ], + "instruction": "SY(TOWERS82);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2480", + "_RCID": "30553", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(TOWERS77);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2481", + "_RCID": "30554", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4,7" + } + ], + "instruction": "SY(TOWERS89);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2482", + "_RCID": "30555", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR6,2" + } + ], + "instruction": "SY(TOWERS69);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2483", + "_RCID": "30556", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR7,1" + } + ], + "instruction": "SY(TOWERS91);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2484", + "_RCID": "30557", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR7,3" + } + ], + "instruction": "SY(TOWERS90);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2485", + "_RCID": "30558", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR11" + } + ], + "instruction": "SY(TOWERS64);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2486", + "_RCID": "93986", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTOW2" + } + ], + "instruction": "SY(TOWERS02);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2487", + "_RCID": "30559", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATTOW3" + } + ], + "instruction": "SY(TOWERS15);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2488", + "_RCID": "30560", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR1" + } + ], + "instruction": "SY(TOWERS05);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2489", + "_RCID": "30561", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR2" + } + ], + "instruction": "SY(TOWERS63);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2490", + "_RCID": "30562", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR3" + } + ], + "instruction": "SY(TOWERS60);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2491", + "_RCID": "30563", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR4" + } + ], + "instruction": "SY(TOWERS61);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2492", + "_RCID": "30564", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR6" + } + ], + "instruction": "SY(TOWERS62);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2493", + "_RCID": "30565", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR7" + } + ], + "instruction": "SY(TOWERS86);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2494", + "_RCID": "30566", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLOUR8" + } + ], + "instruction": "SY(TOWERS59);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2495", + "_RCID": "93973", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(TOWERS03);TX(OBJNAM,3,2,2,'15110',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2496", + "_RCID": "30567", + "_name": "TOWERS" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CAT_TS1" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(FLDSTR01,ORIENT);TE('%4.1lf kn','CURVEL',3,1,2,'15110',1,-1,CHBLK,31)", + "display-cat": "Other", + "comment": "33060", + "_id": "2497", + "_RCID": "30568", + "_name": "TS_FEB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CAT_TS2" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(EBBSTR01,ORIENT);TE('%4.1lf kn','CURVEL',3,1,2,'15110',1,-1,CHBLK,31)", + "display-cat": "Other", + "comment": "33060", + "_id": "2498", + "_RCID": "30569", + "_name": "TS_FEB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CAT_TS3" + }, + { + "_index": "1", + "__text": "ORIENT" + } + ], + "instruction": "SY(CURENT01,ORIENT);TE('%4.1lf kn','CURVEL',3,1,2,'15110',1,-1,CHBLK,31)", + "display-cat": "Other", + "comment": "33060", + "_id": "2499", + "_RCID": "30570", + "_name": "TS_FEB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CURDEF01)", + "display-cat": "Other", + "comment": "33060", + "_id": "2500", + "_RCID": "30571", + "_name": "TS_FEB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(TIDSTR01)", + "display-cat": "Other", + "comment": "33060", + "_id": "2501", + "_RCID": "30572", + "_name": "TS_PAD" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(TIDSTR01)", + "display-cat": "Other", + "comment": "33060", + "_id": "2502", + "_RCID": "30573", + "_name": "TS_PNH" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(TIDSTR01)", + "display-cat": "Other", + "comment": "33060", + "_id": "2503", + "_RCID": "30574", + "_name": "TS_PRH" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(TIDSTR01)", + "display-cat": "Other", + "comment": "33060", + "_id": "2504", + "_RCID": "30575", + "_name": "TS_TIS" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "2505", + "_RCID": "30576", + "_name": "TUNNEL" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(TIDEHT01)", + "display-cat": "Other", + "comment": "33050", + "_id": "2506", + "_RCID": "30577", + "_name": "T_HMON" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(TIDEHT01)", + "display-cat": "Other", + "comment": "33050", + "_id": "2507", + "_RCID": "30578", + "_name": "T_NHMN" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(TIDEHT01)", + "display-cat": "Other", + "comment": "33050", + "_id": "2508", + "_RCID": "30579", + "_name": "T_TIMS" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "CS(OBSTRN04)", + "display-cat": "Other", + "comment": "34050", + "_id": "2509", + "_RCID": "30580", + "_name": "UWTROC" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG13" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "2510", + "_RCID": "30581", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG14" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "2511", + "_RCID": "30582", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG15" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "2512", + "_RCID": "30583", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG16" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "2513", + "_RCID": "30584", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG17" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "2514", + "_RCID": "30585", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG18" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "2515", + "_RCID": "30586", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG19" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "2516", + "_RCID": "30587", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG20" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "2517", + "_RCID": "30588", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG21" + } + ], + "instruction": "SY(TREPNT05)", + "display-cat": "Other", + "comment": "32030", + "_id": "2518", + "_RCID": "30589", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG22" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "2519", + "_RCID": "30590", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG3" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "2520", + "_RCID": "30591", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG4" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "2521", + "_RCID": "30592", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG5" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "2522", + "_RCID": "30593", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG6" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "2523", + "_RCID": "30594", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATVEG7" + } + ], + "instruction": "SY(TREPNT05)", + "display-cat": "Other", + "comment": "32030", + "_id": "2524", + "_RCID": "30595", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "2525", + "_RCID": "30596", + "_name": "VEGATN" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "Suppressed", + "table-name": "Paper", + "instruction": "", + "display-cat": "", + "comment": "0", + "_id": "2526", + "_RCID": "30597", + "_name": "WATFAL" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(WATTUR02)", + "display-cat": "Other", + "comment": "33040", + "_id": "2527", + "_RCID": "30598", + "_name": "WATTUR" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(WEDKLP03)", + "display-cat": "Other", + "comment": "34020", + "_id": "2528", + "_RCID": "30599", + "_name": "WEDKLP" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATWRK3" + }, + { + "_index": "1", + "__text": "VALSOU" + } + ], + "instruction": "SY(FOULGND1)", + "display-cat": "Other", + "comment": "34051", + "_id": "2529", + "_RCID": "30600", + "_name": "WRECKS" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATWRK3" + } + ], + "instruction": "SY(FOULGND1)", + "display-cat": "Other", + "comment": "34050", + "_id": "2530", + "_RCID": "30601", + "_name": "WRECKS" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "CS(WRECKS02)", + "display-cat": "Other", + "comment": "34050", + "_id": "2531", + "_RCID": "30602", + "_name": "WRECKS" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(ACHARE02)", + "display-cat": "Standard", + "comment": "26220", + "_id": "2532", + "_RCID": "30603", + "_name": "achare" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(ACHBRT07);TX(OBJNAM,3,1,2,'14106',1,0,CHBLK,29)", + "display-cat": "Standard", + "comment": "26220", + "_id": "2533", + "_RCID": "30604", + "_name": "achbrt" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP2" + }, + { + "_index": "1", + "__text": "CATLAM1" + } + ], + "instruction": "SY(PRICKE03);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "2534", + "_RCID": "30605", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP2" + }, + { + "_index": "1", + "__text": "CATLAM2" + } + ], + "instruction": "SY(PRICKE04);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "2535", + "_RCID": "30606", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP6" + }, + { + "_index": "1", + "__text": "CONVIS1" + } + ], + "instruction": "SY(CAIRNS11);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "2536", + "_RCID": "30607", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNSTK03);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "2537", + "_RCID": "30608", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNTOW01);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "2538", + "_RCID": "30609", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP4" + } + ], + "instruction": "SY(BCNLTC01);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "2539", + "_RCID": "30610", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + } + ], + "instruction": "SY(BCNGEN01);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "2540", + "_RCID": "30611", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP6" + } + ], + "instruction": "SY(CAIRNS01);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "2541", + "_RCID": "30612", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP7" + } + ], + "instruction": "SY(BCNGEN01);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "2542", + "_RCID": "30613", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BCNGEN03);TE('bn %s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "2543", + "_RCID": "30614", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BCNLAT50);TX(OBJNAM,2,1,2,'14106',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "2544", + "_RCID": "30615", + "_name": "bcnwtw" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BRTHNO01);TX(OBJNAM,1,2,3,'14108',0,0,CHMGD,29)", + "display-cat": "Standard", + "comment": "22440", + "_id": "2545", + "_RCID": "30616", + "_name": "berths" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "catlam8" + }, + { + "_index": "2", + "__text": "COLOUR4,1,4,1,4" + } + ], + "instruction": "SY(BOYCON74);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2546", + "_RCID": "93813", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "catlam7" + }, + { + "_index": "2", + "__text": "COLOUR3,1,3,1,3" + } + ], + "instruction": "SY(BOYCAN82);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2547", + "_RCID": "93814", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "catlam7" + }, + { + "_index": "2", + "__text": "COLOUR3,1,3,1" + } + ], + "instruction": "SY(BOYCAN83);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2548", + "_RCID": "93815", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + }, + { + "_index": "2", + "__text": "COLPAT2" + } + ], + "instruction": "SY(BOYCON78);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2549", + "_RCID": "30617", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3,4,3" + } + ], + "instruction": "SY(BOYSPH74);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2550", + "_RCID": "30618", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4,1,4,1" + } + ], + "instruction": "SY(BOYCON73);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2551", + "_RCID": "30619", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3,1,3,1" + } + ], + "instruction": "SY(BOYCAN74);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2552", + "_RCID": "30620", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR4,1,4,1" + } + ], + "instruction": "SY(BCNGEN65);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2551", + "_RCID": "3061901", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR3,1,3,1" + } + ], + "instruction": "SY(BCNGEN64);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2552", + "_RCID": "3062001", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BOYCON68);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2553", + "_RCID": "30621", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4,3" + } + ], + "instruction": "SY(BOYCON68);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2554", + "_RCID": "30622", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3,4" + } + ], + "instruction": "SY(BOYCAN75);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2555", + "_RCID": "30623", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR3,4" + } + ], + "instruction": "SY(BOYSPH74);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2556", + "_RCID": "30624", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR4,3" + } + ], + "instruction": "SY(BOYSPH75);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2557", + "_RCID": "30625", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYCON61);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2558", + "_RCID": "30626", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYCON62);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2559", + "_RCID": "30627", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYCAN60);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2560", + "_RCID": "30628", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYCAN63);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2561", + "_RCID": "30629", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYSPH62);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2562", + "_RCID": "30630", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + } + ], + "instruction": "SY(BOYCON01);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2563", + "_RCID": "30631", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + } + ], + "instruction": "SY(BOYCAN01);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2564", + "_RCID": "30632", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + } + ], + "instruction": "SY(BOYSPH01);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2565", + "_RCID": "30633", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + } + ], + "instruction": "SY(BOYPIL01);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2566", + "_RCID": "30634", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + } + ], + "instruction": "SY(BOYSPR01);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2567", + "_RCID": "30635", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP6" + } + ], + "instruction": "SY(BOYBAR01);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2568", + "_RCID": "30636", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP7" + } + ], + "instruction": "SY(BOYSUP01);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2569", + "_RCID": "30637", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP8" + } + ], + "instruction": "SY(BOYSPR01);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2570", + "_RCID": "30638", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BOYGEN03);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2571", + "_RCID": "30639", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm11" + }, + { + "_index": "1", + "__text": "COLOUR1,3" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYSPR65);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2572", + "_RCID": "94013", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm10" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYCON67);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2573", + "_RCID": "30640", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm13" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYCAN72);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2574", + "_RCID": "30641", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm14" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYCON67);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2575", + "_RCID": "30642", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm15" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYCAN72);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2576", + "_RCID": "30643", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm16" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYCON67);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2577", + "_RCID": "30644", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm17" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYCAN72);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2578", + "_RCID": "30645", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm18" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYCON67);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2579", + "_RCID": "30646", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm7" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYCAN72);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2580", + "_RCID": "30647", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm8" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BOYCON67);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2581", + "_RCID": "30648", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm9" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BOYCAN72);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2582", + "_RCID": "30649", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm10" + }, + { + "_index": "1", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(BCNSTK81);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2583", + "_RCID": "30650", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm10" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BCNSTK81);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2584", + "_RCID": "30651", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm11" + }, + { + "_index": "1", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(BCNSTK78);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2585", + "_RCID": "30652", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm11" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BCNSTK78);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2586", + "_RCID": "30653", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm12" + }, + { + "_index": "1", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(BCNSTK81);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2587", + "_RCID": "30654", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm12" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BCNSTK81);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2588", + "_RCID": "30655", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm13" + }, + { + "_index": "1", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(BCNSTK78);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2589", + "_RCID": "30656", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm13" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BCNSTK78);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2590", + "_RCID": "30657", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm14" + }, + { + "_index": "1", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(BCNSTK81);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2591", + "_RCID": "30658", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm14" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BCNSTK81);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2592", + "_RCID": "30659", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm15" + }, + { + "_index": "1", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(BCNSTK78);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2593", + "_RCID": "30660", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm15" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BCNSTK78);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2594", + "_RCID": "30661", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm16" + }, + { + "_index": "1", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(BCNSTK81);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2595", + "_RCID": "30662", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm16" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BCNSTK81);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2596", + "_RCID": "30663", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm17" + }, + { + "_index": "1", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(BCNSTK78);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2597", + "_RCID": "30664", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm17" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BCNSTK78);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2598", + "_RCID": "30665", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm18" + }, + { + "_index": "1", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(BCNSTK81);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2599", + "_RCID": "30666", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm18" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BCNSTK81);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2600", + "_RCID": "30667", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm6" + }, + { + "_index": "1", + "__text": "COLOUR3,4" + } + ], + "instruction": "SY(BOYLAT54);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2601", + "_RCID": "30668", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm6" + }, + { + "_index": "1", + "__text": "COLOUR4,3" + } + ], + "instruction": "SY(BOYLAT54);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2602", + "_RCID": "30669", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm7" + }, + { + "_index": "1", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(BOYLAT55);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2603", + "_RCID": "30670", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm7" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BOYLAT55);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2604", + "_RCID": "30671", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm8" + }, + { + "_index": "1", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(BOYLAT56);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2605", + "_RCID": "30672", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm8" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + } + ], + "instruction": "SY(BOYLAT56);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2606", + "_RCID": "30673", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm9" + }, + { + "_index": "1", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(BOYLAT55);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2607", + "_RCID": "30674", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm9" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + } + ], + "instruction": "SY(BOYLAT55);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2608", + "_RCID": "30675", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm19" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYBAR62);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2609", + "_RCID": "30679", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm4" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYCAN60);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2610", + "_RCID": "30677", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catwwm5" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYCON61);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2611", + "_RCID": "30678", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BOYDEF03);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2612", + "_RCID": "30680", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BRIDGE01)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "2613", + "_RCID": "30681", + "_name": "bridge" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catbun1" + } + ], + "instruction": "SY(BUNSTA01)", + "display-cat": "Standard", + "comment": "22410", + "_id": "2614", + "_RCID": "30682", + "_name": "bunsta" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catbun2" + } + ], + "instruction": "SY(BUNSTA02)", + "display-cat": "Standard", + "comment": "22410", + "_id": "2615", + "_RCID": "30683", + "_name": "bunsta" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catbun3" + } + ], + "instruction": "SY(BUNSTA03)", + "display-cat": "Standard", + "comment": "22410", + "_id": "2616", + "_RCID": "30684", + "_name": "bunsta" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CHINFO07)", + "display-cat": "Standard", + "comment": "22410", + "_id": "2617", + "_RCID": "30685", + "_name": "bunsta" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catchp1" + } + ], + "instruction": "SY(CUSTOM01)", + "display-cat": "Other", + "comment": "32410", + "_id": "2618", + "_RCID": "30686", + "_name": "chkpnt" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catchp2" + } + ], + "instruction": "SY(BORDER01)", + "display-cat": "Other", + "comment": "32410", + "_id": "2619", + "_RCID": "30687", + "_name": "chkpnt" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(POSGEN04)", + "display-cat": "Other", + "comment": "32410", + "_id": "2620", + "_RCID": "30688", + "_name": "chkpnt" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CRANES01)", + "display-cat": "Other", + "comment": "32440", + "_id": "2621", + "_RCID": "30689", + "_name": "cranes" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "ORIENT" + } + ], + "instruction": "SY(CURENT01,ORIENT)", + "display-cat": "Other", + "comment": "33060", + "_id": "2622", + "_RCID": "30690", + "_name": "curent" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(POSGEN04)", + "display-cat": "Other", + "comment": "33060", + "_id": "2623", + "_RCID": "30691", + "_name": "curent" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cursty2" + } + ], + "instruction": "SY(CURSRB01)", + "display-cat": "Mariners", + "comment": "61040", + "_id": "2624", + "_RCID": "30692", + "_name": "cursor" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CURSRA01)", + "display-cat": "Displaybase", + "comment": "11010", + "_id": "2625", + "_RCID": "30693", + "_name": "cursor" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDIS1" + }, + { + "_index": "1", + "__text": "hunits3" + } + ], + "instruction": "SY(DISMAR05);TX(wtwdis,3,1,2,'14106',1,-1,CHBLK,21)", + "display-cat": "Other", + "comment": "32420", + "_id": "2626", + "_RCID": "30694", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDIS1" + }, + { + "_index": "1", + "__text": "hunits4" + } + ], + "instruction": "SY(DISMAR05)", + "display-cat": "Other", + "comment": "32420", + "_id": "2627", + "_RCID": "30695", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDIS1" + }, + { + "_index": "1", + "__text": "wtwdis" + } + ], + "instruction": "SY(DISMAR03);TX(wtwdis,3,2,2,'14106',1,0,CHMGD,21)", + "display-cat": "Other", + "comment": "32420", + "_id": "2628", + "_RCID": "30696", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDIS3" + }, + { + "_index": "1", + "__text": "hunits3" + } + ], + "instruction": "SY(HECMTR02);TX(wtwdis,3,1,2,'14106',1,0,CHMGD,21)", + "display-cat": "Standard", + "comment": "22430", + "_id": "2629", + "_RCID": "30697", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATDIS3" + }, + { + "_index": "1", + "__text": "hunits4" + } + ], + "instruction": "SY(HECMTR01);TX(wtwdis,3,1,2,'14106',1,0,CHMGD,21)", + "display-cat": "Standard", + "comment": "22430", + "_id": "2630", + "_RCID": "30698", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catdis5" + } + ], + "instruction": "SY(HECMTR02);TX(INFORM,3,1,2,'14106',1,0,CHMGD,21)", + "display-cat": "Standard", + "comment": "22430", + "_id": "2631", + "_RCID": "30699", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catdis6" + } + ], + "instruction": "SY(HECMTR01);TX(INFORM,3,1,2,'14106',1,0,CHMGD,21)", + "display-cat": "Standard", + "comment": "22430", + "_id": "2632", + "_RCID": "30700", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catdis7" + } + ], + "instruction": "SY(DISMAR06);TX(INFORM,3,1,2,'14106',1,-1,CHBLK,21)", + "display-cat": "Other", + "comment": "31050", + "_id": "2633", + "_RCID": "30701", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catdis8" + } + ], + "instruction": "SY(DISMAR05)", + "display-cat": "Other", + "comment": "31050", + "_id": "2634", + "_RCID": "30702", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "wtwdis" + } + ], + "instruction": "SY(DISMAR03);TX(wtwdis,3,2,2,'14106',1,0,CHMGD,21)", + "display-cat": "Other", + "comment": "32420", + "_id": "2635", + "_RCID": "30703", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(DISMAR03);TX(INFORM,3,2,2,'14106',1,0,CHMGD,21)", + "display-cat": "Other", + "comment": "32430", + "_id": "2636", + "_RCID": "30704", + "_name": "dismar" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(DNGHILIT)", + "display-cat": "Mariners", + "comment": "53010", + "_id": "2637", + "_RCID": "30705", + "_name": "dnghlt" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(EVENTS02);TX(OBJNAM,3,2,3,'15110',1,0,CHBLK,50)", + "display-cat": "Mariners", + "comment": "52410", + "_id": "2638", + "_RCID": "30706", + "_name": "events" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf12" + } + ], + "instruction": "SY(HRBFAC13)", + "display-cat": "Standard", + "comment": "22410", + "_id": "2639", + "_RCID": "30707", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf13" + } + ], + "instruction": "SY(HRBFAC14)", + "display-cat": "Standard", + "comment": "22410", + "_id": "2640", + "_RCID": "30708", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf14" + } + ], + "instruction": "SY(HRBFAC15)", + "display-cat": "Standard", + "comment": "22410", + "_id": "2641", + "_RCID": "30709", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf15" + } + ], + "instruction": "SY(HRBFAC16)", + "display-cat": "Standard", + "comment": "22410", + "_id": "2642", + "_RCID": "30710", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf16" + } + ], + "instruction": "SY(HRBFAC17)", + "display-cat": "Standard", + "comment": "22410", + "_id": "2643", + "_RCID": "30711", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf17" + } + ], + "instruction": "SY(HRBFAC18)", + "display-cat": "Standard", + "comment": "22410", + "_id": "2644", + "_RCID": "30712", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf6" + } + ], + "instruction": "SY(HRBFAC11)", + "display-cat": "Standard", + "comment": "22410", + "_id": "2645", + "_RCID": "30713", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf9" + } + ], + "instruction": "SY(HRBFAC12)", + "display-cat": "Standard", + "comment": "22410", + "_id": "2646", + "_RCID": "30714", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(HRBFAC10)", + "display-cat": "Standard", + "comment": "22410", + "_id": "2647", + "_RCID": "30715", + "_name": "hrbfac" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CHINFO09);TX(OBJNAM,3,1,3,'15110',1,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "53050", + "_id": "2648", + "_RCID": "30716", + "_name": "marfea" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnot1" + } + ], + "instruction": "SY(CHINFO08);TX(usrmrk,3,1,2,'15110',0,0,CHBLK,50)", + "display-cat": "Mariners", + "comment": "53030", + "_id": "2649", + "_RCID": "30717", + "_name": "marnot" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnot2" + } + ], + "instruction": "SY(CHINFO09);TX(usrmrk,3,1,2,'15110',0,0,CHBLK,50)", + "display-cat": "Mariners", + "comment": "53040", + "_id": "2650", + "_RCID": "30718", + "_name": "marnot" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CHINFO09);TX(usrmrk,3,1,2,'15110',0,0,CHBLK,50)", + "display-cat": "Mariners", + "comment": "53040", + "_id": "2651", + "_RCID": "30719", + "_name": "marnot" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnot1" + } + ], + "instruction": "SY(CHINFO10)", + "display-cat": "Mariners", + "comment": "55010", + "_id": "2652", + "_RCID": "30720", + "_name": "mnufea" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnot2" + } + ], + "instruction": "SY(CHINFO11)", + "display-cat": "Mariners", + "comment": "55020", + "_id": "2653", + "_RCID": "30721", + "_name": "mnufea" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(CHINFO10)", + "display-cat": "Mariners", + "comment": "55010", + "_id": "2654", + "_RCID": "30722", + "_name": "mnufea" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk55" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk2,3,4" + } + ], + "instruction": "SY(NMKINF06);SY(ADDMRK01);SY(ADDMRK02);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2655", + "_RCID": "30723", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk6" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk2,3,4" + } + ], + "instruction": "SY(NMKPRH07);SY(ADDMRK01);SY(ADDMRK02);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2656", + "_RCID": "30724", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk55" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk2,3" + } + ], + "instruction": "SY(NMKINF06);SY(ADDMRK01);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2657", + "_RCID": "30725", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk55" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk2,4" + } + ], + "instruction": "SY(NMKINF06);SY(ADDMRK02);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2658", + "_RCID": "30726", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk58" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk2,4" + } + ], + "instruction": "SY(NMKINF53);SY(ADDMRK05);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2659", + "_RCID": "30727", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk72" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk2,3" + } + ], + "instruction": "SY(NMKINF20);SY(ADDMRK01);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2660", + "_RCID": "30728", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk72" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk2,4" + } + ], + "instruction": "SY(NMKINF20);SY(ADDMRK02);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2661", + "_RCID": "30729", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk100" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKINF48);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2662", + "_RCID": "30730", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk100" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKINF48);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2663", + "_RCID": "30731", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk6" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk2,3" + } + ], + "instruction": "SY(NMKPRH07);SY(ADDMRK05);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2664", + "_RCID": "30732", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk6" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk2,4" + } + ], + "instruction": "SY(NMKPRH07);SY(ADDMRK05);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2665", + "_RCID": "30733", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk6" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk3,4" + } + ], + "instruction": "SY(NMKPRH07);SY(ADDMRK01);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2666", + "_RCID": "30734", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk8" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk3,4" + } + ], + "instruction": "SY(NMKPRH08);SY(ADDMRK01);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2667", + "_RCID": "30735", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk11" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKPRH11);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2668", + "_RCID": "30736", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk11" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKPRH11);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2669", + "_RCID": "30737", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk14" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk2" + } + ], + "instruction": "SY(NMKPRH14);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2670", + "_RCID": "30738", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk38" + }, + { + "_index": "1", + "__text": "fnctnm3" + }, + { + "_index": "2", + "__text": "addmrk2" + } + ], + "instruction": "SY(NMKREG16);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2671", + "_RCID": "30739", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk39" + }, + { + "_index": "1", + "__text": "fnctnm3" + }, + { + "_index": "2", + "__text": "addmrk2" + } + ], + "instruction": "SY(NMKREG17);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2672", + "_RCID": "30740", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk52" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk2" + } + ], + "instruction": "SY(NMKINF03);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2673", + "_RCID": "30741", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk55" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk2" + } + ], + "instruction": "SY(NMKINF06);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2674", + "_RCID": "30742", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk55" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKINF06);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2675", + "_RCID": "30743", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk55" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKINF06);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2676", + "_RCID": "30744", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk72" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKINF20);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2677", + "_RCID": "30745", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk72" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKINF20);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2678", + "_RCID": "30746", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk95" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKINF43);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2679", + "_RCID": "30747", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk95" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKINF43);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2680", + "_RCID": "30748", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk97" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKINF45);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2681", + "_RCID": "30749", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk97" + }, + { + "_index": "1", + "__text": "fnctnm5" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKINF45);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2682", + "_RCID": "30750", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk1" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKPRH02);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2683", + "_RCID": "30751", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk1" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKPRH02);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2684", + "_RCID": "30752", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk6" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk2" + } + ], + "instruction": "SY(NMKPRH07);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2685", + "_RCID": "30753", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk6" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKPRH07);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2686", + "_RCID": "30754", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk6" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKPRH07);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2687", + "_RCID": "30755", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk8" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk3" + } + ], + "instruction": "SY(NMKPRH08);SY(ADDMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2688", + "_RCID": "30756", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk8" + }, + { + "_index": "1", + "__text": "fnctnm1" + }, + { + "_index": "2", + "__text": "addmrk4" + } + ], + "instruction": "SY(NMKPRH08);SY(ADDMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2689", + "_RCID": "30757", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk100" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF48)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2690", + "_RCID": "30758", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk101" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF49)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2691", + "_RCID": "30759", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk102" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF50)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2692", + "_RCID": "30760", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk223" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2693", + "_RCID": "30761", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk235" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2694", + "_RCID": "30762", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk10" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NMKPRH10)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2695", + "_RCID": "30763", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk11" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NMKPRH11)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2696", + "_RCID": "30764", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk12" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NMKPRH12)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2697", + "_RCID": "30765", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk13" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NMKPRH13)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2698", + "_RCID": "30766", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk23" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2699", + "_RCID": "30767", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk24" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG03)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2700", + "_RCID": "30768", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk31" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG10)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2701", + "_RCID": "30769", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk32" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG01);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2702", + "_RCID": "30770", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk33" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG11)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2703", + "_RCID": "30771", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk34" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG12)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2704", + "_RCID": "30772", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk35" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG13)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2705", + "_RCID": "30773", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk36" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG14)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2706", + "_RCID": "30774", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk37" + }, + { + "_index": "1", + "__text": "fnctnm2" + } + ], + "instruction": "SY(NMKREG15)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2707", + "_RCID": "30775", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk38" + }, + { + "_index": "1", + "__text": "fnctnm3" + } + ], + "instruction": "SY(NMKREG16)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2708", + "_RCID": "30776", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk39" + }, + { + "_index": "1", + "__text": "fnctnm3" + } + ], + "instruction": "SY(NMKREG17)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2709", + "_RCID": "30777", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk41" + }, + { + "_index": "1", + "__text": "fnctnm3" + } + ], + "instruction": "SY(NMKREG01);SY(ADDMRK05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2710", + "_RCID": "30778", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk42" + }, + { + "_index": "1", + "__text": "fnctnm3" + } + ], + "instruction": "SY(NMKREG19)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2711", + "_RCID": "30779", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk43" + }, + { + "_index": "1", + "__text": "fnctnm3" + } + ], + "instruction": "SY(NMKREG20)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2712", + "_RCID": "30780", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk44" + }, + { + "_index": "1", + "__text": "fnctnm4" + } + ], + "instruction": "SY(NMKRCD01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2713", + "_RCID": "30781", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk45" + }, + { + "_index": "1", + "__text": "fnctnm4" + } + ], + "instruction": "SY(NMKRCD02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2714", + "_RCID": "30782", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk46" + }, + { + "_index": "1", + "__text": "fnctnm4" + } + ], + "instruction": "SY(NMKRCD03)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2715", + "_RCID": "30783", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk47" + }, + { + "_index": "1", + "__text": "fnctnm4" + } + ], + "instruction": "SY(NMKRCD04)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2716", + "_RCID": "30784", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk48" + }, + { + "_index": "1", + "__text": "fnctnm4" + } + ], + "instruction": "SY(NMKRCD05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2717", + "_RCID": "30785", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk49" + }, + { + "_index": "1", + "__text": "fnctnm4" + } + ], + "instruction": "SY(NMKRCD06)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2718", + "_RCID": "30786", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk50" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2719", + "_RCID": "30787", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk51" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2720", + "_RCID": "30788", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk52" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF03)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2721", + "_RCID": "30789", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk53" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF04)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2722", + "_RCID": "30790", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk54" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF05)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2723", + "_RCID": "30791", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk55" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF06)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2724", + "_RCID": "30792", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk56" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF06)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2725", + "_RCID": "30793", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk58" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF53)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2726", + "_RCID": "30794", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk71" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF19)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2727", + "_RCID": "30795", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk72" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF20)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2728", + "_RCID": "30796", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk73" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF21)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2729", + "_RCID": "30797", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk74" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF22)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2730", + "_RCID": "30798", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk75" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF23)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2731", + "_RCID": "30799", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk76" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF24)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2732", + "_RCID": "30800", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk77" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF25)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2733", + "_RCID": "30801", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk78" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF26)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2734", + "_RCID": "30802", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk79" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF27)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2735", + "_RCID": "30803", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk80" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF28)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2736", + "_RCID": "30804", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk81" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF29)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2737", + "_RCID": "30805", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk90" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF38)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2738", + "_RCID": "30806", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk95" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF43)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2739", + "_RCID": "30807", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk96" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF44)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2740", + "_RCID": "30808", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk97" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF45)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2741", + "_RCID": "30809", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk98" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF46)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2742", + "_RCID": "30810", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk99" + }, + { + "_index": "1", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NMKINF47)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2743", + "_RCID": "30811", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk1" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NMKPRH02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2744", + "_RCID": "30812", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk5" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NMKPRH06)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2745", + "_RCID": "30813", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk6" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NMKPRH07)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2746", + "_RCID": "30814", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk8" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NMKPRH08)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2747", + "_RCID": "30815", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk12" + } + ], + "instruction": "SY(NMKPRH12,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2748", + "_RCID": "30816", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk13" + } + ], + "instruction": "SY(NMKPRH13,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2749", + "_RCID": "30817", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk14" + } + ], + "instruction": "SY(NMKPRH14,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2750", + "_RCID": "30818", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk44" + } + ], + "instruction": "SY(NMKRCD01,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2751", + "_RCID": "30819", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk45" + } + ], + "instruction": "SY(NMKRCD02,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2752", + "_RCID": "30820", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk46" + } + ], + "instruction": "SY(NMKRCD03,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2753", + "_RCID": "30821", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk47" + } + ], + "instruction": "SY(NMKRCD04,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2754", + "_RCID": "30822", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk50" + } + ], + "instruction": "SY(NMKINF01,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2755", + "_RCID": "30823", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk92" + } + ], + "instruction": "SY(NMKINF40,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2756", + "_RCID": "30824", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk1" + } + ], + "instruction": "SY(NMKPRH02,ORIENT)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2757", + "_RCID": "30825", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "fnctnm1" + } + ], + "instruction": "SY(NOTMRK01)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2758", + "_RCID": "30826", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "fnctnm4" + } + ], + "instruction": "SY(NOTMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2759", + "_RCID": "30827", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "fnctnm5" + } + ], + "instruction": "SY(NOTMRK03)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2760", + "_RCID": "30828", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(NOTMRK02)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "2761", + "_RCID": "30829", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "CS(OWNSHP02)", + "display-cat": "Displaybase", + "comment": "42010", + "_id": "2762", + "_RCID": "30830", + "_name": "ownshp" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(PLNPOS01);SY(PLNPOS02,ORIENT);TX(plndat,1,2,2,'15110',4,3,CHBLK,50);", + "display-cat": "Mariners", + "comment": "52030", + "_id": "2763", + "_RCID": "30831", + "_name": "plnpos" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth10" + } + ], + "instruction": "SY(POSITN02);TX('M',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2764", + "_RCID": "30832", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth11" + } + ], + "instruction": "SY(POSITN02);TX('O',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2765", + "_RCID": "30833", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth12" + } + ], + "instruction": "SY(POSITN02);TX('T',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2766", + "_RCID": "30834", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth13" + } + ], + "instruction": "SY(POSITN02);TX('dG',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2767", + "_RCID": "30835", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth14" + } + ], + "instruction": "SY(POSITN02);TX('dGl',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2768", + "_RCID": "30836", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth15" + } + ], + "instruction": "SY(POSITN02);TX('dO',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2769", + "_RCID": "30837", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth1" + } + ], + "instruction": "SY(POSITN02);TX('DR',2,3,2,'15110',-1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2770", + "_RCID": "30838", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth2" + } + ], + "instruction": "SY(POSITN02);TX('EP',2,3,2,'15110',-1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2771", + "_RCID": "30839", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth3" + } + ], + "instruction": "SY(POSITN02);TX('V',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2772", + "_RCID": "30840", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth4" + } + ], + "instruction": "SY(POSITN02);TX('A',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2773", + "_RCID": "30841", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth5" + } + ], + "instruction": "SY(POSITN02);TX('R',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2774", + "_RCID": "30842", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth6" + } + ], + "instruction": "SY(POSITN02);TX('D',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2775", + "_RCID": "30843", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth7" + } + ], + "instruction": "SY(POSITN02);TX('G',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2776", + "_RCID": "30844", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth8" + } + ], + "instruction": "SY(POSITN02);TX('Gl',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2777", + "_RCID": "30845", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "pfmeth9" + } + ], + "instruction": "SY(POSITN02);TX('L',3,3,2,'15110',1,1,CHBLK,50);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2778", + "_RCID": "30846", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(POSITN02);TX(loctim,1,1,2,'15110',0,-1,CHBLK,50)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2779", + "_RCID": "30847", + "_name": "positn" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC1" + } + ], + "instruction": "SY(RDOCAL02,ORIENT);TX(COMCHA,1,2,2,'14106',0,0,CHMGD,11);TX(OBJNAM,3,2,2,'14106',2,-2,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "2780", + "_RCID": "30848", + "_name": "_RDOCAL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC2" + } + ], + "instruction": "SY(RDOCAL02,ORIENT);TX(COMCHA,1,2,2,'14106',0,0,CHMGD,11);TX(OBJNAM,3,2,2,'14106',2,-2,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "2781", + "_RCID": "30849", + "_name": "_RDOCAL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC3" + } + ], + "instruction": "SY(RDOCAL02,ORIENT);TX(COMCHA,1,2,2,'14106',0,0,CHMGD,11);TX(OBJNAM,3,2,2,'14106',2,-2,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "2782", + "_RCID": "30850", + "_name": "_RDOCAL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TRAFIC4" + } + ], + "instruction": "SY(RDOCAL03,ORIENT);TX(COMCHA,1,2,2,'14106',0,0,CHMGD,11);TX(OBJNAM,3,2,2,'14106',2,-2,CHBLK,11)", + "display-cat": "Standard", + "comment": "15060", + "_id": "2783", + "_RCID": "30851", + "_name": "_RDOCAL" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(RCLDEF01)", + "display-cat": "Standard", + "comment": "15060", + "_id": "2784", + "_RCID": "30852", + "_name": "_RDOCAL" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(REFDMP01)", + "display-cat": "Standard", + "comment": "22410", + "_id": "2785", + "_RCID": "30853", + "_name": "refdmp" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(REFPNT02)", + "display-cat": "Mariners", + "comment": "61050", + "_id": "2786", + "_RCID": "30854", + "_name": "refpnt" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catsit10" + } + ], + "instruction": "SY(SSWARS01)", + "display-cat": "Standard", + "comment": "28020", + "_id": "2787", + "_RCID": "30855", + "_name": "sistat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catsit2" + } + ], + "instruction": "SY(SSENTR01)", + "display-cat": "Standard", + "comment": "28020", + "_id": "2788", + "_RCID": "30856", + "_name": "sistat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catsit6" + } + ], + "instruction": "SY(SSLOCK01)", + "display-cat": "Standard", + "comment": "28020", + "_id": "2789", + "_RCID": "30857", + "_name": "sistat" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(SISTAT02)", + "display-cat": "Standard", + "comment": "28020", + "_id": "2790", + "_RCID": "30858", + "_name": "sistat" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catsiw12" + } + ], + "instruction": "SY(WTLVGG02)", + "display-cat": "Standard", + "comment": "28020", + "_id": "2791", + "_RCID": "30859", + "_name": "sistaw" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catsiw13" + } + ], + "instruction": "SY(WTLVGG01)", + "display-cat": "Standard", + "comment": "28020", + "_id": "2792", + "_RCID": "30860", + "_name": "sistaw" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catsiw15" + } + ], + "instruction": "SY(HGWTMK01)", + "display-cat": "Standard", + "comment": "28020", + "_id": "2793", + "_RCID": "30861", + "_name": "sistaw" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catsiw16" + } + ], + "instruction": "SY(VTCLMK01)", + "display-cat": "Standard", + "comment": "28020", + "_id": "2794", + "_RCID": "30862", + "_name": "sistaw" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catsiw17" + } + ], + "instruction": "SY(VTCLMK01)", + "display-cat": "Standard", + "comment": "28020", + "_id": "2795", + "_RCID": "30863", + "_name": "sistaw" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(SISTAT02)", + "display-cat": "Standard", + "comment": "28020", + "_id": "2796", + "_RCID": "30864", + "_name": "sistaw" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "CATSLC4" + } + ], + "instruction": "SY(PIER0001);CS(SLCONS03)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "2797", + "_RCID": "30865", + "_name": "slcons" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(MORFAC03);CS(SLCONS03)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "2798", + "_RCID": "30866", + "_name": "slcons" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd10" + } + ], + "instruction": "SY(TERMNL12)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2799", + "_RCID": "30867", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd1" + } + ], + "instruction": "SY(TERMNL03)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2800", + "_RCID": "30868", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd2" + } + ], + "instruction": "SY(TERMNL04)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2801", + "_RCID": "30869", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd3" + } + ], + "instruction": "SY(TERMNL05)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2802", + "_RCID": "30870", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd4" + } + ], + "instruction": "SY(TERMNL06)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2803", + "_RCID": "30871", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd5" + } + ], + "instruction": "SY(TERMNL07)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2804", + "_RCID": "30872", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd6" + } + ], + "instruction": "SY(TERMNL08)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2805", + "_RCID": "30873", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd7" + } + ], + "instruction": "SY(TERMNL09)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2806", + "_RCID": "30874", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd8" + } + ], + "instruction": "SY(TERMNL10)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2807", + "_RCID": "30875", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + }, + { + "_index": "1", + "__text": "trshgd9" + } + ], + "instruction": "SY(TERMNL11)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2808", + "_RCID": "30876", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf10" + } + ], + "instruction": "SY(TERMNL03)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2809", + "_RCID": "30877", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf11" + } + ], + "instruction": "SY(TERMNL04)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2810", + "_RCID": "30878", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf1" + } + ], + "instruction": "SY(TERMNL13)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2811", + "_RCID": "30879", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf3" + } + ], + "instruction": "SY(TERMNL02)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2812", + "_RCID": "30880", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf7" + } + ], + "instruction": "SY(TERMNL02)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2813", + "_RCID": "30881", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cathaf8" + } + ], + "instruction": "SY(TERMNL01)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2814", + "_RCID": "30882", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml1" + } + ], + "instruction": "SY(TERMNL01)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2815", + "_RCID": "30883", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "cattml3" + } + ], + "instruction": "SY(TERMNL12)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2816", + "_RCID": "30884", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd1" + } + ], + "instruction": "SY(TERMNL03)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2817", + "_RCID": "30885", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd2" + } + ], + "instruction": "SY(TERMNL04)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2818", + "_RCID": "30886", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd3" + } + ], + "instruction": "SY(TERMNL05)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2819", + "_RCID": "30887", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd4" + } + ], + "instruction": "SY(TERMNL06)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2820", + "_RCID": "30888", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd5" + } + ], + "instruction": "SY(TERMNL07)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2821", + "_RCID": "30889", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd6" + } + ], + "instruction": "SY(TERMNL08)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2822", + "_RCID": "30890", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd7" + } + ], + "instruction": "SY(TERMNL09)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2823", + "_RCID": "30891", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd8" + } + ], + "instruction": "SY(TERMNL10)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2824", + "_RCID": "30892", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "trshgd9" + } + ], + "instruction": "SY(TERMNL11)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2825", + "_RCID": "30893", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(TERMNL12)", + "display-cat": "Standard", + "comment": "22420", + "_id": "2826", + "_RCID": "30894", + "_name": "termnl" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catcur1" + } + ], + "instruction": "SY(TIDCUR01,ORIENT);SY(TIDCUR03);TX('P',2,3,2,'15110',-4,2,CHBLK,50);TX(curstr,2,3,2,'15110',-1,2,CHBLK,50);TX(loctim,3,1,2,'15110',1,-2,CHBLK,50)", + "display-cat": "Mariners", + "comment": "53080", + "_id": "2827", + "_RCID": "30895", + "_name": "tidcur" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catcur2" + } + ], + "instruction": "SY(TIDCUR02,ORIENT);SY(TIDCUR03);TX('A',2,3,2,'15110',-4,2,CHBLK,50);TX(curstr,2,3,2,'15110',-1,2,CHBLK,50);TX(loctim,3,1,2,'15110',1,-2,CHBLK,50)", + "display-cat": "Mariners", + "comment": "53080", + "_id": "2828", + "_RCID": "30896", + "_name": "tidcur" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(TIDCUR01,ORIENT);SY(TIDCUR03);TX(curstr,2,3,2,'15110',-1,2,CHBLK,50);TX(loctim,3,1,2,'15110',1,-2,CHBLK,50)", + "display-cat": "Mariners", + "comment": "53080", + "_id": "2829", + "_RCID": "30897", + "_name": "tidcur" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP5" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR3,1,3" + } + ], + "instruction": "SY(TOPMA116);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2830", + "_RCID": "93820", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP3" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR3,4" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2831", + "_RCID": "93896", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP10" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2832", + "_RCID": "93851", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP11" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2833", + "_RCID": "93849", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP13" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2834", + "_RCID": "93853", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP14" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2835", + "_RCID": "93854", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(TOPMA115);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2836", + "_RCID": "94014", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(TOPMA100);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2837", + "_RCID": "94015", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP4" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2838", + "_RCID": "93877", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP5" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(TOPMA114);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2839", + "_RCID": "94016", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP7" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(TOPSHPI1);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2840", + "_RCID": "93821", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP8" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(TOPSHPP2);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2841", + "_RCID": "93906", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP10" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2842", + "_RCID": "93857", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP11" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2843", + "_RCID": "93858", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2844", + "_RCID": "93859", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP13" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2845", + "_RCID": "93860", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP14" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2846", + "_RCID": "93861", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP15" + } + ], + "instruction": "SY(TOPSHQ15);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2847", + "_RCID": "93939", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP16" + } + ], + "instruction": "SY(TOPSHQ16);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2848", + "_RCID": "93940", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP17" + } + ], + "instruction": "SY(TOPSHQ17);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2849", + "_RCID": "93862", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP18" + } + ], + "instruction": "SY(TOPSHQ18);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2850", + "_RCID": "93941", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP19" + } + ], + "instruction": "SY(TOPSHQ19);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2851", + "_RCID": "93863", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP20" + } + ], + "instruction": "SY(TOPSHQ20);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2852", + "_RCID": "93864", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP21" + } + ], + "instruction": "SY(TOPSHQ21);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2853", + "_RCID": "93865", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP22" + } + ], + "instruction": "SY(TOPSHQ22);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2854", + "_RCID": "93866", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP23" + } + ], + "instruction": "SY(TOPSHQ23);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2855", + "_RCID": "93867", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP24" + } + ], + "instruction": "SY(TOPSHQ24);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2856", + "_RCID": "93868", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP25" + } + ], + "instruction": "SY(TOPSHQ25);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2857", + "_RCID": "93869", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP26" + } + ], + "instruction": "SY(TOPSHQ26);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2858", + "_RCID": "93856", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP27" + } + ], + "instruction": "SY(TOPSHQ27);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2859", + "_RCID": "93902", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP28" + } + ], + "instruction": "SY(TOPSHQ28);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2860", + "_RCID": "93903", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP29" + } + ], + "instruction": "SY(TOPSHQ29);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2861", + "_RCID": "93942", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP30" + } + ], + "instruction": "SY(TOPSHQ30);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2862", + "_RCID": "93943", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP31" + } + ], + "instruction": "SY(TOPSHQ31);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2863", + "_RCID": "93944", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP32" + } + ], + "instruction": "SY(TOPSHQ32);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2864", + "_RCID": "93945", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP33" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2865", + "_RCID": "93916", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP4" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2866", + "_RCID": "93875", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP6" + } + ], + "instruction": "SY(TOPSHQ06);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2867", + "_RCID": "93879", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP8" + } + ], + "instruction": "SY(TOPSHQ08);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2868", + "_RCID": "93881", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP9" + } + ], + "instruction": "CS(TOPMAR01)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2869", + "_RCID": "93913", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "CS(TOPMAR01)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "2870", + "_RCID": "30898", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(TRNBSN01)", + "display-cat": "Standard", + "comment": "26020", + "_id": "2871", + "_RCID": "30899", + "_name": "trnbsn" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "CS(OBSTRN04)", + "display-cat": "Other", + "comment": "34050", + "_id": "2872", + "_RCID": "30900", + "_name": "uwtroc" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(VEHTRF01)", + "display-cat": "Standard", + "comment": "22410", + "_id": "2873", + "_RCID": "30901", + "_name": "vehtrf" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "CS(VESSEL01)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "2874", + "_RCID": "30902", + "_name": "vessel" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "select1" + } + ], + "instruction": "SY(WAYPNT11);TX(OBJNAM,3,1,3,'15110',1,-1,CHBLK,50)", + "display-cat": "Displaybase", + "comment": "42210", + "_id": "2875", + "_RCID": "30903", + "_name": "waypnt" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "select2" + } + ], + "instruction": "SY(WAYPNT03);TX(OBJNAM,3,1,3,'15110',1,-1,APLRT,50)", + "display-cat": "Mariners", + "comment": "52210", + "_id": "2876", + "_RCID": "30904", + "_name": "waypnt" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(WAYPNT11);TX(OBJNAM,3,1,3,'15110',1,-1,APLRT,50)", + "display-cat": "Displaybase", + "comment": "42210", + "_id": "2877", + "_RCID": "30905", + "_name": "waypnt" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(WTLVGG02)", + "display-cat": "Standard", + "comment": "28020", + "_id": "2878", + "_RCID": "30906", + "_name": "wtwgag" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEACHRES61" + } + ], + "instruction": "SY(ACHRES61)", + "display-cat": "Standard", + "comment": "26010", + "_id": "2879", + "_RCID": "30907", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEACHRES71" + } + ], + "instruction": "SY(ACHRES71)", + "display-cat": "Standard", + "comment": "26010", + "_id": "2880", + "_RCID": "30908", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEAISDEF01" + } + ], + "instruction": "SY(AISDEF01)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "2881", + "_RCID": "30909", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEAISONE01" + } + ], + "instruction": "SY(AISONE01)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "2882", + "_RCID": "30910", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEAISSIX01" + } + ], + "instruction": "SY(AISSIX01)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "2883", + "_RCID": "30911", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEAISSLP01" + } + ], + "instruction": "SY(AISSLP01,ORIENT)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "2884", + "_RCID": "30912", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEAISVES01" + } + ], + "instruction": "SY(AISVES01,ORIENT)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "2885", + "_RCID": "30913", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEARPATG01" + } + ], + "instruction": "SY(ARPATG01)", + "display-cat": "Mariners", + "comment": "54010", + "_id": "2886", + "_RCID": "30914", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEARPONE01" + } + ], + "instruction": "SY(ARPONE01,ORIENT)", + "display-cat": "Mariners", + "comment": "54010", + "_id": "2887", + "_RCID": "30915", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEARPSIX01" + } + ], + "instruction": "SY(ARPSIX01,ORIENT)", + "display-cat": "Mariners", + "comment": "54010", + "_id": "2888", + "_RCID": "30916", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBLKADJ01" + } + ], + "instruction": "SY(BLKADJ01)", + "display-cat": "Standard", + "comment": "21000", + "_id": "2889", + "_RCID": "30917", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEBRIDGE01" + } + ], + "instruction": "SY(BRIDGE01)", + "display-cat": "Displaybase", + "comment": "12210", + "_id": "2890", + "_RCID": "30918", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHCRDEL1" + } + ], + "instruction": "SY(CHCRDEL1)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "2891", + "_RCID": "30919", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHCRID01" + } + ], + "instruction": "SY(CHCRID01)", + "display-cat": "Displaybase", + "comment": "10000", + "_id": "2892", + "_RCID": "30920", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHINFO08" + } + ], + "instruction": "SY(CHINFO08)", + "display-cat": "Mariners", + "comment": "53030", + "_id": "2893", + "_RCID": "30921", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHINFO09" + } + ], + "instruction": "SY(CHINFO09)", + "display-cat": "Mariners", + "comment": "53040", + "_id": "2894", + "_RCID": "30922", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHINFO10" + } + ], + "instruction": "SY(CHINFO10)", + "display-cat": "Mariners", + "comment": "55010", + "_id": "2895", + "_RCID": "30923", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHINFO11" + } + ], + "instruction": "SY(CHINFO11)", + "display-cat": "Mariners", + "comment": "55020", + "_id": "2896", + "_RCID": "30924", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECHKSYM01" + } + ], + "instruction": "SY(CHKSYM01)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "2897", + "_RCID": "30925", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECLRLIN01" + } + ], + "instruction": "SY(CLRLIN01,ORIENT)", + "display-cat": "Mariners", + "comment": "53020", + "_id": "2898", + "_RCID": "30926", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECURSRA01" + } + ], + "instruction": "SY(CURSRA01)", + "display-cat": "Displaybase", + "comment": "11010", + "_id": "2899", + "_RCID": "30927", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODECURSRB01" + } + ], + "instruction": "SY(CURSRB01)", + "display-cat": "Displaybase", + "comment": "11010", + "_id": "2900", + "_RCID": "30928", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDANGER01" + } + ], + "instruction": "SY(DANGER51)", + "display-cat": "Other", + "comment": "34050", + "_id": "2901", + "_RCID": "30929", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDANGER02" + } + ], + "instruction": "SY(DANGER52)", + "display-cat": "Other", + "comment": "34050", + "_id": "2902", + "_RCID": "30930", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDANGER03" + } + ], + "instruction": "SY(DANGER53)", + "display-cat": "Other", + "comment": "34050", + "_id": "2903", + "_RCID": "30931", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDIRBOY01" + } + ], + "instruction": "SY(DIRBOY01)", + "display-cat": "Standard", + "comment": "27040", + "_id": "2904", + "_RCID": "30932", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDIRBOYA1" + } + ], + "instruction": "SY(DIRBOYA1)", + "display-cat": "Standard", + "comment": "27040", + "_id": "2905", + "_RCID": "30933", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDIRBOYB1" + } + ], + "instruction": "SY(DIRBOYB1)", + "display-cat": "Standard", + "comment": "27040", + "_id": "2906", + "_RCID": "30934", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEDNGHILIT" + } + ], + "instruction": "SY(DNGHILIT)", + "display-cat": "Mariners", + "comment": "53010", + "_id": "2907", + "_RCID": "30935", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEEBLVRM11" + } + ], + "instruction": "SY(EBLVRM11)", + "display-cat": "Mariners", + "comment": "61010", + "_id": "2908", + "_RCID": "30936", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEERBLTIK1" + } + ], + "instruction": "SY(ERBLTIK1,ORIENT)", + "display-cat": "Mariners", + "comment": "61010", + "_id": "2909", + "_RCID": "30937", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEEVENTS02" + } + ], + "instruction": "SY(EVENTS02)", + "display-cat": "Mariners", + "comment": "52410", + "_id": "2910", + "_RCID": "30938", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEINFORM01" + } + ], + "instruction": "SY(INFORM01)", + "display-cat": "Other", + "comment": "31030", + "_id": "2911", + "_RCID": "30939", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEISODGR01" + } + ], + "instruction": "SY(ISODGR51)", + "display-cat": "Displaybase", + "comment": "14010", + "_id": "2912", + "_RCID": "30940", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODELOWACC01" + } + ], + "instruction": "SY(LOWACC01)", + "display-cat": "Standard", + "comment": "21000", + "_id": "2913", + "_RCID": "30941", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODENORTHAR1" + } + ], + "instruction": "SY(NORTHAR1)", + "display-cat": "Displaybase", + "comment": "11040", + "_id": "2914", + "_RCID": "30942", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOBSTRN01" + } + ], + "instruction": "SY(OBSTRN01)", + "display-cat": "Other", + "comment": "34050", + "_id": "2915", + "_RCID": "30943", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOBSTRN02" + } + ], + "instruction": "SY(OBSTRN02)", + "display-cat": "Other", + "comment": "34050", + "_id": "2916", + "_RCID": "30944", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOBSTRN03" + } + ], + "instruction": "SY(OBSTRN03)", + "display-cat": "Other", + "comment": "34050", + "_id": "2917", + "_RCID": "30945", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOBSTRN11" + } + ], + "instruction": "SY(OBSTRN11)", + "display-cat": "Other", + "comment": "34050", + "_id": "2918", + "_RCID": "30946", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOSPONE02" + } + ], + "instruction": "SY(OSPONE02)", + "display-cat": "Displaybase", + "comment": "42010", + "_id": "2919", + "_RCID": "30947", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOSPSIX02" + } + ], + "instruction": "SY(OSPSIX02)", + "display-cat": "Displaybase", + "comment": "42010", + "_id": "2920", + "_RCID": "30948", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOWNSHP01" + } + ], + "instruction": "SY(OWNSHP01)", + "display-cat": "Displaybase", + "comment": "42010", + "_id": "2921", + "_RCID": "30949", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEOWNSHP05" + } + ], + "instruction": "SY(OWNSHP05,ORIENT)", + "display-cat": "Displaybase", + "comment": "42010", + "_id": "2922", + "_RCID": "30950", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEPLNPOS01" + } + ], + "instruction": "SY(PLNPOS01)", + "display-cat": "Mariners", + "comment": "52030", + "_id": "2923", + "_RCID": "30951", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEPLNSPD03" + } + ], + "instruction": "SY(PLNSPD03)", + "display-cat": "Displaybase", + "comment": "42210", + "_id": "2924", + "_RCID": "30952", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEPLNSPD04" + } + ], + "instruction": "SY(PLNSPD04)", + "display-cat": "Displaybase", + "comment": "42210", + "_id": "2925", + "_RCID": "30953", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEPOSITN02" + } + ], + "instruction": "SY(POSITN02)", + "display-cat": "Mariners", + "comment": "62010", + "_id": "2926", + "_RCID": "30954", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEQUAPOS01" + } + ], + "instruction": "SY(QUAPOS01)", + "display-cat": "Displaybase", + "comment": "12410", + "_id": "2927", + "_RCID": "30955", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEQUARRY01" + } + ], + "instruction": "SY(QUARRY01)", + "display-cat": "Other", + "comment": "32270", + "_id": "2928", + "_RCID": "30956", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEQUESMRK1" + } + ], + "instruction": "SY(QUESMRK1)", + "display-cat": "Standard", + "comment": "21010", + "_id": "2929", + "_RCID": "30957", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODERACNSP01" + } + ], + "instruction": "SY(RACNSP01)", + "display-cat": "Standard", + "comment": "22210", + "_id": "2930", + "_RCID": "30958", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODERECDEF51" + } + ], + "instruction": "SY(RECDEF51)", + "display-cat": "Standard", + "comment": "25020", + "_id": "2931", + "_RCID": "30959", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODERECTRC55" + } + ], + "instruction": "SY(RECTRC55)", + "display-cat": "Standard", + "comment": "25020", + "_id": "2932", + "_RCID": "30960", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODERECTRC56" + } + ], + "instruction": "SY(RECTRC56)", + "display-cat": "Standard", + "comment": "25020", + "_id": "2933", + "_RCID": "30961", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODERECTRC57" + } + ], + "instruction": "SY(RECTRC57)", + "display-cat": "Standard", + "comment": "25020", + "_id": "2934", + "_RCID": "30962", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Area Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODERECTRC58" + } + ], + "instruction": "SY(RECTRC58)", + "display-cat": "Standard", + "comment": "25020", + "_id": "2935", + "_RCID": "30963", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEREFPNT02" + } + ], + "instruction": "SY(REFPNT02)", + "display-cat": "Mariners", + "comment": "61050", + "_id": "2936", + "_RCID": "30964", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODERFNERY01" + } + ], + "instruction": "SY(RFNERY01)", + "display-cat": "Other", + "comment": "32270", + "_id": "2937", + "_RCID": "30965", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODERFNERY11" + } + ], + "instruction": "SY(RFNERY11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2938", + "_RCID": "30966", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODESCALEB10" + } + ], + "instruction": "SY(SCALEB10)", + "display-cat": "Displaybase", + "comment": "11030", + "_id": "2939", + "_RCID": "30967", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODESCALEB11" + } + ], + "instruction": "SY(SCALEB11)", + "display-cat": "Displaybase", + "comment": "11030", + "_id": "2940", + "_RCID": "30968", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETIDCUR01" + } + ], + "instruction": "SY(TIDCUR01,ORIENT)", + "display-cat": "Mariners", + "comment": "53080", + "_id": "2941", + "_RCID": "30969", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETIDCUR02" + } + ], + "instruction": "SY(TIDCUR02,ORIENT)", + "display-cat": "Mariners", + "comment": "53080", + "_id": "2942", + "_RCID": "30970", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETIDCUR03" + } + ], + "instruction": "SY(TIDCUR03)", + "display-cat": "Mariners", + "comment": "53080", + "_id": "2943", + "_RCID": "30971", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETMBYRD01" + } + ], + "instruction": "SY(TMBYRD01)", + "display-cat": "Other", + "comment": "32270", + "_id": "2944", + "_RCID": "30972", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETNKFRM01" + } + ], + "instruction": "SY(TNKFRM01)", + "display-cat": "Other", + "comment": "32270", + "_id": "2945", + "_RCID": "30973", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETNKFRM11" + } + ], + "instruction": "SY(TNKFRM11)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2946", + "_RCID": "30974", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETOWERS05" + } + ], + "instruction": "SY(TOWERS05)", + "display-cat": "Other", + "comment": "32200", + "_id": "2947", + "_RCID": "30975", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETOWERS15" + } + ], + "instruction": "SY(TOWERS15)", + "display-cat": "Standard", + "comment": "22200", + "_id": "2948", + "_RCID": "30976", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETREPNT04" + } + ], + "instruction": "SY(TREPNT04)", + "display-cat": "Other", + "comment": "32030", + "_id": "2949", + "_RCID": "30977", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODETREPNT05" + } + ], + "instruction": "SY(TREPNT05)", + "display-cat": "Other", + "comment": "32030", + "_id": "2950", + "_RCID": "30978", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEUNITFTH1" + } + ], + "instruction": "SY(UNITFTH1)", + "display-cat": "Displaybase", + "comment": "11000", + "_id": "2951", + "_RCID": "30979", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEUNITMTR1" + } + ], + "instruction": "SY(UNITMTR1)", + "display-cat": "Displaybase", + "comment": "11000", + "_id": "2952", + "_RCID": "30980", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEUWTROC03" + } + ], + "instruction": "SY(UWTROC03)", + "display-cat": "Other", + "comment": "34050", + "_id": "2953", + "_RCID": "30981", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEUWTROC04" + } + ], + "instruction": "SY(UWTROC04)", + "display-cat": "Other", + "comment": "34050", + "_id": "2954", + "_RCID": "30982", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEVECGND01" + } + ], + "instruction": "SY(VECGND01)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "2955", + "_RCID": "30983", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEVECGND21" + } + ], + "instruction": "SY(VECGND21)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "2956", + "_RCID": "30984", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEVECWTR01" + } + ], + "instruction": "SY(VECWTR01)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "2957", + "_RCID": "30985", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Mariners", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEVECWTR21" + } + ], + "instruction": "SY(VECWTR21,ORIENT)", + "display-cat": "Mariners", + "comment": "54030", + "_id": "2958", + "_RCID": "30986", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEWAYPNT01" + } + ], + "instruction": "SY(WAYPNT01)", + "display-cat": "Displaybase", + "comment": "42210", + "_id": "2959", + "_RCID": "30987", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEWAYPNT03" + } + ], + "instruction": "SY(WAYPNT03)", + "display-cat": "Mariners", + "comment": "52210", + "_id": "2960", + "_RCID": "30988", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEWAYPNT11" + } + ], + "instruction": "SY(WAYPNT11)", + "display-cat": "Displaybase", + "comment": "42210", + "_id": "2961", + "_RCID": "30989", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEWNDFRM51" + } + ], + "instruction": "SY(WNDFRM51)", + "display-cat": "Other", + "comment": "32270", + "_id": "2962", + "_RCID": "30990", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "Suppressed", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEWNDFRM61" + } + ], + "instruction": "SY(WNDFRM61)", + "display-cat": "Standard", + "comment": "22220", + "_id": "2963", + "_RCID": "30991", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEWRECKS01" + } + ], + "instruction": "SY(WRECKS01)", + "display-cat": "Other", + "comment": "34050", + "_id": "2964", + "_RCID": "30992", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEWRECKS04" + } + ], + "instruction": "SY(WRECKS04)", + "display-cat": "Other", + "comment": "34050", + "_id": "2965", + "_RCID": "30993", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "$SCODEWRECKS05" + } + ], + "instruction": "SY(WRECKS05)", + "display-cat": "Other", + "comment": "34050", + "_id": "2966", + "_RCID": "30994", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Line Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(QUESMRK1)", + "display-cat": "Standard", + "comment": "21010", + "_id": "2967", + "_RCID": "30995", + "_name": "$CSYMB" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "TX($TXSTR,$JUSTH=3,$JUSTV=1,$SPACE=2,'15110',0,0,CHBLK,27)", + "display-cat": "Standard", + "comment": "10000", + "_id": "2968", + "_RCID": "30996", + "_name": "$TEXTS" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "2969", + "_RCID": "30997", + "_name": "_bcngn" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLMAR7" + } + ], + "instruction": "SY(BOYPIL69);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2970", + "_RCID": "30998", + "_name": "_boygn" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BOYCAN62);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2971", + "_RCID": "30999", + "_name": "_boygn" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(STARPT01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "2972", + "_RCID": "31000", + "_name": "_extgn" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR1,11" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYSPR04);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2973", + "_RCID": "31001", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYCON60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2974", + "_RCID": "31002", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYCAN61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2975", + "_RCID": "31003", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYPIL60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2976", + "_RCID": "31004", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYPIL61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2977", + "_RCID": "31005", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYSPR03);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2978", + "_RCID": "31006", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYSPR02);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2979", + "_RCID": "31007", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + } + ], + "instruction": "SY(BOYSPR01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2980", + "_RCID": "31008", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "SY(BCNGEN01);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2981", + "_RCID": "31009", + "_name": "_slgto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "WRKATT1" + } + ], + "instruction": "SY(WRECKS04);TX(_texta,$JUSTH=3,$JUSTV=1,$SPACE=2,'15110',0,0,CHBLK,27)", + "display-cat": "Standard", + "comment": "10000", + "_id": "2982", + "_RCID": "31010", + "_name": "_texto" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "TX(_texta,$JUSTH=3,$JUSTV=1,$SPACE=2,'15110',0,0,CHBLK,27)", + "display-cat": "Standard", + "comment": "10000", + "_id": "2983", + "_RCID": "31011", + "_name": "_texto" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "TX(ANTXT1,3,2,2,'15114',1,0,CHBLK,26)", + "display-cat": "Standard", + "comment": "54023", + "_id": "1996", + "_RCID": "54023", + "_name": "ANNOTA" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,1,CHMGD)", + "display-cat": "Standard", + "comment": "24010", + "_id": "1733", + "_RCID": "54024", + "_name": "RESTRC" + }, + { + "type": "Line", + "disp-prio": "Area Symbol", + "radar-prio": "On Top", + "table-name": "Lines", + "instruction": "LS(DASH,2,CHMGD)", + "display-cat": "Standard", + "comment": "24010", + "_id": "1733", + "_RCID": "54025", + "_name": "TRFLNE" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP3" + } + ], + "instruction": "SY(BCNTOW01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1733", + "_RCID": "54026", + "_name": "GENNAV" + }, + { + "type": "Point", + "disp-prio": "Area 2", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "TX(ANTXT1,3,2,2,'15114',1,0,CHBLK,26)", + "display-cat": "Standard", + "comment": "54023", + "_id": "1996", + "_RCID": "54027", + "_name": "ANNOTA" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "instruction": "SY(BCNTOW01);TE('%s','OBJNAM',2,1,2,'15110',-1,-2,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "1997", + "_RCID": "54028", + "_name": "GENNAV" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BCNGEN61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2984", + "_RCID": "3063001", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BCNGEN60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2985", + "_RCID": "3063002", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR1,4,1,4" + } + ], + "instruction": "SY(BCNGEN65);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2986", + "_RCID": "3063003", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR1,3,1,3" + } + ], + "instruction": "SY(BCNGEN64);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2987", + "_RCID": "3063004", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYCON67);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2988", + "_RCID": "3063005", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYCON66);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2989", + "_RCID": "3063006", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYCAN72);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2990", + "_RCID": "3063007", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLOUR1,4" + }, + { + "_index": "2", + "__text": "COLPAT6" + } + ], + "instruction": "SY(TOPMA109);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2991", + "_RCID": "3063008", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP7" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(TOPMA113);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2992", + "_RCID": "3063009", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP8" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(TOPMA111);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2993", + "_RCID": "3063010", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP2" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(TOPMA100);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2994", + "_RCID": "3063011", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(TOPMA102);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "2995", + "_RCID": "3063012", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + }, + { + "_index": "1", + "__text": "COLOUR1,3" + } + ], + "instruction": "SY(BCNSTK78);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2997", + "_RCID": "3063014", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + }, + { + "_index": "1", + "__text": "COLOUR1,4" + } + ], + "instruction": "SY(BCNSTK81);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2998", + "_RCID": "3063015", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR4,3" + } + ], + "instruction": "SY(BCNSTK83);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "2999", + "_RCID": "3063016", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BCNSTK80);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3000", + "_RCID": "3063017", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BCNGEN60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3001", + "_RCID": "3063018", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP5" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BCNGEN61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3002", + "_RCID": "3063019", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP20" + }, + { + "_index": "1", + "__text": "COLOUR1,2" + }, + { + "_index": "2", + "__text": "COLPAT4" + } + ], + "instruction": "SY(TOPSHP83);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "3003", + "_RCID": "3063020", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP7" + }, + { + "_index": "1", + "__text": "COLOUR2" + } + ], + "instruction": "SY(TOPSHPI2);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "3004", + "_RCID": "3063021", + "_name": "DAYMAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP6" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYBAR62);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3005", + "_RCID": "3063022", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BCNSTK78);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3006", + "_RCID": "3063023", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BCNSTK81);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3007", + "_RCID": "3063024", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BCNSTK79);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3008", + "_RCID": "3063025", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR3" + } + ], + "instruction": "SY(BOYPIL60);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3009", + "_RCID": "3063026", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP4" + }, + { + "_index": "1", + "__text": "COLOUR4" + } + ], + "instruction": "SY(BOYPIL61);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3010", + "_RCID": "3063027", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP6" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR1,3,1" + } + ], + "instruction": "SY(TOPMA106);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "3011", + "_RCID": "3063028", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT2" + }, + { + "_index": "2", + "__text": "COLOUR1,2,1" + } + ], + "instruction": "SY(TOPSHP51);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "3012", + "_RCID": "3063029", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP6" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR3,1,3" + } + ], + "instruction": "SY(TOPMA116);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "3013", + "_RCID": "3063030", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP5" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR3,1,3" + } + ], + "instruction": "SY(TOPMA116);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "3014", + "_RCID": "3063031", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP6" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR3,1,3" + } + ], + "instruction": "SY(TOPMA116);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "3015", + "_RCID": "3063032", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "catnmk2" + }, + { + "_index": "1", + "__text": "fnctnm1" + } + ], + "instruction": "SY(TOPSHPD5);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17030", + "_id": "3016", + "_RCID": "3063033", + "_name": "notmrk" + }, + { + "type": "Point", + "disp-prio": "No data", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP2" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(BOYCAN63);TX(OBJNAM,2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Displaybase", + "comment": "17010", + "_id": "3017", + "_RCID": "3063034", + "_name": "boywtw" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR4,3" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYSPH75);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3018", + "_RCID": "3063035", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + }, + { + "_index": "1", + "__text": "COLOUR3,4" + } + ], + "instruction": "SY(BOYCON79);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3019", + "_RCID": "3063036", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + }, + { + "_index": "1", + "__text": "COLOUR4,3" + } + ], + "instruction": "SY(BOYCON68);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3020", + "_RCID": "3063037", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLPAT1" + }, + { + "_index": "1", + "__text": "COLOUR3,4" + } + ], + "instruction": "SY(BCNSTK82);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3021", + "_RCID": "3063054", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLPAT1" + }, + { + "_index": "1", + "__text": "COLOUR4,3" + } + ], + "instruction": "SY(BCNSTK83);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3022", + "_RCID": "3063038", + "_name": "BCNLAT" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP12" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR1,2,1" + } + ], + "instruction": "SY(TOPSHP51);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "3023", + "_RCID": "3063039", + "_name": "topmar" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR4,1,4,1" + } + ], + "instruction": "SY(BCNGEN65);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3024", + "_RCID": "3063040", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR3,1,3,1" + } + ], + "instruction": "SY(BCNGEN64);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3025", + "_RCID": "3063041", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR4,3" + } + ], + "instruction": "SY(BCNSTK83);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3026", + "_RCID": "3063042", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR3,4" + } + ], + "instruction": "SY(BCNSTK82);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3027", + "_RCID": "3063043", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR3,1" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BCNSTK78);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3028", + "_RCID": "3063044", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR4,1" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BCNSTK81);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3029", + "_RCID": "3063045", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP26" + }, + { + "_index": "1", + "__text": "COLPAT1" + }, + { + "_index": "2", + "__text": "COLOUR3,4" + } + ], + "instruction": "SY(TOPMA117);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "3030", + "_RCID": "3063046", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR3,4" + } + ], + "instruction": "SY(BCNSTK82);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3031", + "_RCID": "3063047", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLPAT1" + }, + { + "_index": "1", + "__text": "COLOUR3,4" + } + ], + "instruction": "SY(BCNSTK82);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3032", + "_RCID": "3063048", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "COLPAT1" + }, + { + "_index": "1", + "__text": "COLOUR4,3" + } + ], + "instruction": "SY(BCNSTK83);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3033", + "_RCID": "3063049", + "_name": "bcnlat" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR4,3,4" + } + ], + "instruction": "SY(BCNSTK80);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3034", + "_RCID": "3063050", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP5" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + } + ], + "instruction": "SY(BCNSTK79);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3035", + "_RCID": "3063051", + "_name": "BOYLAT" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "BOYSHP3" + }, + { + "_index": "1", + "__text": "COLOUR3,4,3" + }, + { + "_index": "2", + "__text": "COLPAT1" + } + ], + "instruction": "SY(BOYSPH66);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17010", + "_id": "3036", + "_RCID": "3063052", + "_name": "boylat" + }, + { + "type": "Point", + "disp-prio": "Routing", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP5" + }, + { + "_index": "1", + "__text": "COLOUR6" + } + ], + "instruction": "SY(TOPSHP53);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "27025", + "_id": "3037", + "_RCID": "3063053", + "_name": "TOPMAR" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "SY(ACHARE51);LS(DASH,2,CHMGF);CS(RESTRN01)", + "display-cat": "Standard", + "comment": "26220", + "_id": "2", + "_RCID": "32038", + "_name": "ACHARE" + }, + { + "type": "Area", + "disp-prio": "Area 2", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "SY(ACHARE51);LC(ACHARE51);CS(RESARE01)", + "display-cat": "Standard", + "comment": "26220", + "_id": "342", + "_RCID": "32377", + "_name": "ACHARE" + }, + { + "type": "Area", + "disp-prio": "Group 1", + "radar-prio": "Suppressed", + "table-name": "Plain", + "instruction": "AC(LANDA);TX(OBJNAM,1,2,3,'15118',-1,-1,CHBLK,26)", + "display-cat": "Displaybase", + "comment": "12010", + "_id": "84", + "_RCID": "32120", + "_name": "LNDARE" + }, + { + "type": "Area", + "disp-prio": "Group 1", + "radar-prio": "Suppressed", + "table-name": "Symbolized", + "instruction": "AC(LANDA);TX(OBJNAM,1,2,3,'15118',-1,-1,CHBLK,26)", + "display-cat": "Displaybase", + "comment": "12010", + "_id": "424", + "_RCID": "32459", + "_name": "LNDARE" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "CS(LIGHTS05)", + "display-cat": "Standard", + "comment": "27070", + "_id": "2198", + "_RCID": "30378", + "_name": "LIGHTS" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "CS(LIGHTS05)", + "display-cat": "Standard", + "comment": "27070", + "_id": "2199", + "_RCID": "30379", + "_name": "LIGHTS" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "CS(LIGHTS05)", + "display-cat": "Standard", + "comment": "27070", + "_id": "2200", + "_RCID": "30380", + "_name": "LIGHTS" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Paper", + "instruction": "CS(LIGHTS05)", + "display-cat": "Standard", + "comment": "27070", + "_id": "2201", + "_RCID": "30381", + "_name": "LIGHTS" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP16" + } + ], + "instruction": "SY(TOPMAR90);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "12701", + "_RCID": "31537", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Paper", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP15" + } + ], + "instruction": "SY(TOPMAR93);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "12702", + "_RCID": "31538", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP16" + } + ], + "instruction": "SY(TOPMAR88);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "12703", + "_RCID": "31539", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Point Symbol", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "TOPSHP15" + } + ], + "instruction": "SY(TOPMAR87);TX(OBJNAM,3,2,2,'1508',1,-1,CHBLK,26)", + "display-cat": "Standard", + "comment": "22220", + "_id": "12704", + "_RCID": "31540", + "_name": "TOPMAR" + }, + { + "type": "Point", + "disp-prio": "Hazards", + "radar-prio": "On Top", + "table-name": "Simplified", + "attrib-code": [ + { + "_index": "0", + "__text": "BCNSHP1" + } + ], + "instruction": "SY(BCNSTK02);TE('%s','OBJNAM',2,1,2,'15110',-1,-1,CHBLK,21)", + "display-cat": "Standard", + "comment": "17020", + "_id": "12705", + "_RCID": "31541", + "_name": "BCNLAT" + } + ] + }, + "line-styles": { + "line-style": [ + { + "name": "ACHARE51", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "108", + "_y": "820" + }, + "origin": { + "_x": "306", + "_y": "568" + }, + "_width": "3030", + "_height": "503" + }, + "description": "boundary of an anchorage area", + "HPGL": "SPA;SW1;PU1429,568;PD1429,1070;SPA;SW1;PU1273,717;PD1577,717;SPA;SW1;PU1226,967;PD1332,1071;PD1530,1071;PD1628,970;SPA;SW1;PU306,815;PD906,815;SPA;SW1;PU2732,815;PD3336,815;SPA;SW1;PU2868,813;PD3030,975;PD3199,807;SPA;SW1;PU1928,814;PD2528,814;SPA;SW1;PU2068,812;PD2233,976;PD2397,812;SPA;SW1;PU390,812;PD546,974;PD713,813;", + "color-ref": "ACHMGD", + "_RCID": "3346" + }, + { + "name": "ACHRES51", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "108", + "_y": "820" + }, + "origin": { + "_x": "446", + "_y": "572" + }, + "_width": "2729", + "_height": "503" + }, + "description": "boundary of an area where anchoring is prohibited or restricted", + "HPGL": "SPA;SW1;PU1208,572;PD1208,1074;SPA;SW1;PU1052,721;PD1356,721;SPA;SW1;PU1005,971;PD1111,1075;PD1309,1075;PD1407,974;SPA;SW1;PU1418,640;PD987,1071;SPA;SW1;PU2248,809;PD2552,809;SPA;SW1;PU2404,809;PD2404,959;SPA;SW1;PU446,810;PD747,810;SPA;SW1;PU2874,810;PD3175,810;SPA;SW1;PU3030,810;PD3030,971;SPA;SW1;PU1655,812;PD1957,812;SPA;SW1;PU1808,812;PD1808,979;SPA;SW1;PU595,812;PD595,970;", + "color-ref": "ACHMGD", + "_RCID": "3354" + }, + { + "name": "ADMARE01", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1904", + "_y": "1468" + }, + "origin": { + "_x": "2105", + "_y": "1470" + }, + "_width": "304", + "_height": "150" + }, + "description": "jurisdiction boundary", + "HPGL": "SPA;SW2;PU2105,1470;PD2409,1470;SPA;SW2;PU2261,1470;PD2261,1620;", + "color-ref": "ACHGRD", + "_RCID": "3194" + }, + { + "name": "ESSARE01", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1904", + "_y": "1468" + }, + "origin": { + "_x": "2105", + "_y": "1470" + }, + "_width": "304", + "_height": "150" + }, + "description": "ESSA or PSSA boundary", + "HPGL": "SPA;SW2;PU2105,1470;PD2409,1470;SPA;SW2;PU2261,1470;PD2261,1620;", + "color-ref": "ACHMGD", + "_RCID": "3192" + }, + { + "name": "CBLARE51", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "94", + "_y": "834" + }, + "origin": { + "_x": "295", + "_y": "637" + }, + "_width": "2739", + "_height": "500" + }, + "description": "boundary of a submarine cable area", + "HPGL": "SPA;SW1;PU295,840;PD895,840;SPA;SW1;PU2430,840;PD3034,840;SPA;SW1;PU2566,843;PD2727,1004;PD2897,836;SPA;SW1;PU1631,844;PD2231,844;SPA;SW1;PU1767,843;PD1933,1008;PD2097,843;SPA;SW1;PU436,842;PD592,997;PD757,835;SPA;SW1;PU1280,637;PD1130,837;PD1330,937;PD1180,1137;", + "color-ref": "ACHMGD", + "_RCID": "3347" + }, + { + "name": "CBLSUB06", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "448", + "_y": "1274" + }, + "origin": { + "_x": "692", + "_y": "1050" + }, + "_width": "2293", + "_height": "500" + }, + "description": "submarine cable", + "HPGL": "SPA;SW1;PU2935,1050;PD2785,1250;PD2985,1350;PD2835,1550;SPA;SW1;PU1390,1263;PD1541,1161;PD1839,1365;PD1994,1263;SPA;SW1;PU692,1264;PD847,1164;PD1148,1371;PD1292,1264;SPA;SW1;PU2076,1249;PD2228,1149;PD2527,1352;PD2686,1249;", + "color-ref": "ACHMGD", + "_RCID": "2012" + }, + { + "name": "CHCRDEL1", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4636", + "_y": "2650" + }, + "origin": { + "_x": "5179", + "_y": "2251" + }, + "_width": "799", + "_height": "804" + }, + "description": "this line has been deleted by a manual update", + "HPGL": "SPA;SW1;PU5179,3055;PD5978,2251;", + "color-ref": "ACHCOR", + "_RCID": "3432" + }, + { + "name": "CHCRID01", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4483", + "_y": "2650" + }, + "origin": { + "_x": "5424", + "_y": "2498" + }, + "_width": "300", + "_height": "300" + }, + "description": "this line has been manually updated", + "HPGL": "SPA;SW1;PU5574,2648;CI150;", + "color-ref": "ACHCOR", + "_RCID": "3359" + }, + { + "name": "CTNARE51", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "104", + "_y": "830" + }, + "origin": { + "_x": "298", + "_y": "640" + }, + "_width": "3030", + "_height": "518" + }, + "description": "boundary of area with a specific caution", + "HPGL": "SPA;SW1;PU298,822;PD898,822;SPA;SW1;PU2724,822;PD3328,822;SPA;SW1;PU2890,826;PD3051,987;PD3221,819;SPA;SW1;PU1920,829;PD2520,829;SPA;SW1;PU2056,828;PD2222,993;PD2386,828;SPA;SW1;PU432,831;PD588,986;PD753,824;SPA;SW1;PU1415,899;CI259;SPA;SW1;PU1411,725;PD1411,950;SPA;SW1;PU1395,1043;PD1450,1043;", + "color-ref": "ACHMGD", + "_RCID": "3418" + }, + { + "name": "CTYARE51", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1298", + "_y": "812" + }, + "origin": { + "_x": "1507", + "_y": "812" + }, + "_width": "600", + "_height": "164" + }, + "description": "boundary of area to be navigated with caution", + "HPGL": "SPA;SW1;PU1507,814;PD2107,814;SPA;SW1;PU1647,812;PD1812,976;PD1976,812;", + "color-ref": "ACHMGD", + "_RCID": "3417" + }, + { + "name": "DWLDEF01", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1449", + "_y": "1415" + }, + "origin": { + "_x": "1596", + "_y": "1192" + }, + "_width": "2550", + "_height": "526" + }, + "description": "deep water route centreline, direction not defined in the data", + "HPGL": "SPA;SW1;PU3522,1270;PD3522,1574;PD3626,1574;PD3726,1529;PD3726,1313;PD3623,1270;PD3522,1270;SPA;SW1;PU3847,1266;PD3923,1575;PD3994,1266;PD4080,1571;PD4146,1266;SPA;SW1;PU1596,1415;PD1921,1415;SPA;SW1;PU3002,1415;PD3327,1415;SPA;SW1;PU2269,1570;PD2064,1415;PD2269,1260;SPA;SW1;PU3618,1718;PD4022,1718;SPA;SW1;PU2353,1288;PD2366,1260;PD2379,1235;PD2396,1218;PD2413,1201;PD2439,1192;PD2462,1194;PD2492,1203;PD2520,1209;PD2543,1243;PD2561,1262;PD2573,1284;PD2573,1309;PD2561,1333;PD2548,1354;PD2528,1378;PD2505,1403;PD2484,1429;PD2471,1448;PD2460,1465;PD2458,1487;PD2458,1510;PD2458,1527;PD2460,1549;PD2460,1551;SPA;SW2;PU2439,1635;PD2492,1635;SPA;SW1;PU2653,1565;PD2858,1410;PD2653,1255;", + "color-ref": "ATRFCD", + "_RCID": "3208" + }, + { + "name": "DWRTCL05", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1449", + "_y": "1415" + }, + "origin": { + "_x": "1596", + "_y": "1260" + }, + "_width": "2550", + "_height": "458" + }, + "description": "two-way deep water route centreline, not based on fixed marks", + "HPGL": "SPA;SW1;PU3522,1270;PD3522,1574;PD3626,1574;PD3726,1529;PD3726,1313;PD3623,1270;PD3522,1270;SPA;SW1;PU3847,1266;PD3923,1575;PD3994,1266;PD4080,1571;PD4146,1266;SPA;SW1;PU1596,1415;PD1921,1415;SPA;SW1;PU2299,1415;PD2624,1415;SPA;SW1;PU3002,1415;PD3327,1415;SPA;SW1;PU2299,1570;PD2094,1415;PD2299,1260;SPA;SW1;PU3618,1718;PD4022,1718;SPA;SW1;PU2624,1570;PD2829,1415;PD2624,1260;", + "color-ref": "ATRFCD", + "_RCID": "2015" + }, + { + "name": "DWRTCL06", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1449", + "_y": "1415" + }, + "origin": { + "_x": "1596", + "_y": "1260" + }, + "_width": "2550", + "_height": "458" + }, + "description": "two-way deep water route centreline, based on fixed marks", + "HPGL": "SPA;SW1;PU3522,1270;PD3522,1574;PD3626,1574;PD3726,1529;PD3726,1313;PD3623,1270;PD3522,1270;SPA;SW1;PU3847,1266;PD3923,1575;PD3994,1266;PD4080,1571;PD4146,1266;SPA;SW1;PU3618,1718;PD4022,1718;SPA;SW1;PU1596,1415;PD3327,1415;SPA;SW1;PU2299,1570;PD2094,1415;PD2299,1260;SPA;SW1;PU2624,1570;PD2829,1415;PD2624,1260;", + "color-ref": "ATRFCD", + "_RCID": "2016" + }, + { + "name": "DWRTCL07", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1449", + "_y": "1415" + }, + "origin": { + "_x": "1596", + "_y": "1269" + }, + "_width": "1860", + "_height": "458" + }, + "description": "one-way deep water route centreline, not based on fixed marks", + "HPGL": "SPA;SW1;PU3157,1275;PD3233,1584;PD3304,1275;PD3390,1580;PD3456,1275;SPA;SW1;PU1596,1415;PD1921,1415;SPA;SW1;PU2312,1415;PD2637,1415;SPA;SW1;PU2928,1727;PD3332,1727;SPA;SW1;PU1934,1579;PD2139,1424;PD1934,1269;SPA;SW1;PU2832,1279;PD2832,1583;PD2936,1583;PD3036,1538;PD3036,1322;PD2933,1279;PD2832,1279;", + "color-ref": "ATRFCD", + "_RCID": "2017" + }, + { + "name": "DWRTCL08", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1449", + "_y": "1415" + }, + "origin": { + "_x": "1596", + "_y": "1269" + }, + "_width": "1860", + "_height": "458" + }, + "description": "one-way deep water route centreline, based on fixed-marks", + "HPGL": "SPA;SW1;PU3157,1275;PD3233,1584;PD3304,1275;PD3390,1580;PD3456,1275;SPA;SW1;PU1596,1415;PD2637,1415;SPA;SW1;PU2928,1727;PD3332,1727;SPA;SW1;PU1934,1579;PD2139,1424;PD1934,1269;SPA;SW1;PU2832,1279;PD2832,1583;PD2936,1583;PD3036,1538;PD3036,1322;PD2933,1279;PD2832,1279;", + "color-ref": "ATRFCD", + "_RCID": "2018" + }, + { + "name": "DWRUTE51", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "104", + "_y": "830" + }, + "origin": { + "_x": "298", + "_y": "743" + }, + "_width": "3030", + "_height": "309" + }, + "description": "boundary of a deep water route", + "HPGL": "SPA;SW1;PU298,822;PD898,822;SPA;SW1;PU2724,822;PD3328,822;SPA;SW1;PU2890,826;PD3051,987;PD3221,819;SPA;SW1;PU1920,818;PD2520,818;SPA;SW1;PU2056,828;PD2222,993;PD2386,828;SPA;SW1;PU432,831;PD588,986;PD753,824;SPA;SW1;PU1101,747;PD1101,1051;PD1205,1051;PD1305,1006;PD1305,790;PD1202,747;PD1101,747;SPA;SW1;PU1426,743;PD1502,1052;PD1573,743;PD1659,1048;PD1725,743;", + "color-ref": "ATRFCD", + "_RCID": "3352" + }, + { + "name": "ENTRES51", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "138", + "_y": "807" + }, + "origin": { + "_x": "446", + "_y": "522" + }, + "_width": "2729", + "_height": "578" + }, + "description": "boundary of an area where entry is prohibited or restricted", + "HPGL": "SPA;SW1;PU2248,809;PD2552,809;SPA;SW1;PU2404,809;PD2404,959;SPA;SW1;PU446,810;PD747,810;SPA;SW1;PU2874,810;PD3175,810;SPA;SW1;PU3030,810;PD3030,971;SPA;SW1;PU1655,812;PD1957,812;SPA;SW1;PU1808,812;PD1808,979;SPA;SW1;PU595,812;PD595,970;SPA;SW1;PU1237,811;CI289;SPA;SW1;PU1085,818;PD1396,818;", + "color-ref": "ACHMGD", + "_RCID": "3381" + }, + { + "name": "ERBLNA01", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1244", + "_y": "1550" + }, + "origin": { + "_x": "1459", + "_y": "1555" + }, + "_width": "2204", + "_height": "0" + }, + "description": "electronic bearing line, dash", + "HPGL": "SPA;SW2;PU1459,1555;PD2463,1555;SPA;SW2;PU2664,1555;PD3663,1555;", + "color-ref": "ANINFO", + "_RCID": "3414" + }, + { + "name": "ERBLNB01", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1249", + "_y": "1552" + }, + "origin": { + "_x": "1459", + "_y": "1552" + }, + "_width": "1407", + "_height": "3" + }, + "description": "electronic bearing line, dash dot", + "HPGL": "SPA;SW2;PU1459,1555;PD2463,1555;SPA;SW2;PU2668,1552;PD2866,1552;", + "color-ref": "ANINFO", + "_RCID": "3415" + }, + { + "name": "FERYRT01", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "187", + "_y": "853" + }, + "origin": { + "_x": "387", + "_y": "774" + }, + "_width": "1999", + "_height": "160" + }, + "description": "ferry route", + "HPGL": "SPA;SW1;PU1374,890;PD1275,934;PD869,933;PD869,774;PD1275,774;PD1374,819;PD1374,890;SPA;SW1;PU1602,853;PD1894,853;SPA;SW1;PU697,853;PD387,853;SPA;SW1;PU2094,853;PD2386,853;", + "color-ref": "ACHMGD", + "_RCID": "2019" + }, + { + "name": "FERYRT02", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "187", + "_y": "853" + }, + "origin": { + "_x": "387", + "_y": "774" + }, + "_width": "1999", + "_height": "160" + }, + "description": "cable ferry route", + "HPGL": "SPA;SW1;PU1374,890;PD1275,934;PD869,933;PD869,774;PD1275,774;PD1374,819;PD1374,890;SPA;SW1;PU1602,853;PD1894,853;SPA;SW1;PU697,853;PD387,853;SPA;SW1;PU2094,853;PD2386,853;", + "color-ref": "ACHBLK", + "_RCID": "2020" + }, + { + "name": "FSHFAC02", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "687", + "_y": "774" + }, + "origin": { + "_x": "687", + "_y": "621" + }, + "_width": "202", + "_height": "153" + }, + "description": "fishing stakes", + "HPGL": "SPA;SW1;PU889,621;PD889,774;PD687,774;", + "color-ref": "ACHGRD", + "_RCID": "2021" + }, + { + "name": "FSHRES51", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "108", + "_y": "820" + }, + "origin": { + "_x": "446", + "_y": "689" + }, + "_width": "2691", + "_height": "393" + }, + "description": "boundary of an area where trawling or fishing is prohibited or restricted", + "HPGL": "SPA;SW1;PU2248,809;PD2552,809;SPA;SW1;PU2404,809;PD2404,959;SPA;SW1;PU446,810;PD747,810;SPA;SW1;PU2836,810;PD3137,810;SPA;SW1;PU2992,810;PD2992,971;SPA;SW1;PU1655,812;PD1957,812;SPA;SW1;PU1808,812;PD1808,979;SPA;SW1;PU595,812;PD595,970;SPA;SW1;PU895,973;PD1013,874;PD1063,819;PD1121,781;PD1182,758;PD1239,741;PD1302,741;PD1355,747;PD1419,769;PD1477,795;PD1529,834;PD1560,874;PD1521,910;PD1484,943;PD1438,966;PD1377,989;PD1316,1001;PD1247,1001;PD1182,989;PD1118,966;PD1063,929;PD1025,898;SPA;SW1;PU997,863;PD914,755;SPA;SW1;PU1023,897;PD996,867;SPA;SW1;PU1499,689;PD1106,1082;", + "color-ref": "ACHMGD", + "_RCID": "3355" + }, + { + "name": "HODATA01", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "787", + "_y": "634" + }, + "origin": { + "_x": "788", + "_y": "635" + }, + "_width": "601", + "_height": "300" + }, + "description": "boundary marking end of HO data", + "HPGL": "SPA;SW1;PU788,935;PD1088,635;SPA;SW1;PU789,636;PD1389,636;", + "color-ref": "ACHGRD", + "_RCID": "3345" + }, + { + "name": "LOWACC01", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5305", + "_y": "2650" + }, + "origin": { + "_x": "5476", + "_y": "2607" + }, + "_width": "130", + "_height": "79" + }, + "description": "safety contour of low accuracy in position", + "HPGL": "SPA;SW1;PU5476,2607;PD5476,2686;PD5606,2686;PD5606,2607;PD5476,2607;", + "color-ref": "ADEPSC", + "_RCID": "3424" + }, + { + "name": "LOWACC11", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5305", + "_y": "2650" + }, + "origin": { + "_x": "5476", + "_y": "2607" + }, + "_width": "130", + "_height": "79" + }, + "description": "contour of low accuracy in position", + "HPGL": "SPA;SW1;PU5476,2607;PD5476,2686;PD5606,2686;PD5606,2607;PD5476,2607;", + "color-ref": "ADEPCN", + "_RCID": "3425" + }, + { + "name": "LOWACC21", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5305", + "_y": "2650" + }, + "origin": { + "_x": "5476", + "_y": "2607" + }, + "_width": "130", + "_height": "79" + }, + "description": "coastline or shoreline construction of low accuracy in position", + "HPGL": "SPA;SW1;PU5476,2607;PD5476,2686;PD5606,2686;PD5606,2607;PD5476,2607;", + "color-ref": "ACSTLN", + "_RCID": "3426" + }, + { + "name": "LOWACC31", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5305", + "_y": "2650" + }, + "origin": { + "_x": "5476", + "_y": "2607" + }, + "_width": "130", + "_height": "79" + }, + "description": "area of wrecks or obstructions of low accuracy", + "HPGL": "SPA;SW1;PU5476,2607;PD5476,2686;PD5606,2686;PD5606,2607;PD5476,2607;", + "color-ref": "ACHGRD", + "_RCID": "3427" + }, + { + "name": "LOWACC41", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5305", + "_y": "2650" + }, + "origin": { + "_x": "5476", + "_y": "2607" + }, + "_width": "130", + "_height": "79" + }, + "description": "danger line of low accuracy surrounding a foul area", + "HPGL": "SPA;SW1;PU5476,2607;PD5476,2686;PD5606,2686;PD5606,2607;PD5476,2607;", + "color-ref": "ACHBLK", + "_RCID": "3428" + }, + { + "name": "MARSYS51", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "112", + "_y": "843" + }, + "origin": { + "_x": "109", + "_y": "681" + }, + "_width": "2558", + "_height": "320" + }, + "description": "boundary between IALA-A and IALA-B systems of lateral buoys and beacons", + "HPGL": "SPA;SW1;PU1633,846;PD1925,846;SPA;SW1;PU2375,846;PD2667,846;SPA;SW1;PU1415,846;PD1109,846;SPA;SW1;PU743,982;PD843,681;PD945,982;SPA;SW1;PU783,863;PD909,863;SPA;SW1;PU2181,700;PD2082,700;PD2082,1001;PD2181,1001;SPA;SW1;PU2082,852;PD2181,852;SPA;SW1;PU2224,730;PD2224,829;SPA;SW1;PU2223,879;PD2223,978;SPA;SW1;PU2181,700;PD2224,730;SPA;SW1;PU2181,1001;PD2224,968;SPA;SW1;PU2224,826;PD2178,856;PD2221,882;SPA;SW1;PU618,846;PD314,846;SPA;SW1;PU109,849;PD120,843;", + "color-ref": "ACHGRD", + "_RCID": "3379" + }, + { + "name": "NAVARE51", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1298", + "_y": "812" + }, + "origin": { + "_x": "1507", + "_y": "812" + }, + "_width": "600", + "_height": "164" + }, + "description": "boundary of a navigation feature such as a fairway, magnetic anomaly, etc.", + "HPGL": "SPA;SW1;PU1507,814;PD2107,814;SPA;SW1;PU1647,812;PD1812,976;PD1976,812;", + "color-ref": "ACHGRD", + "_RCID": "3380" + }, + { + "name": "PIPARE51", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "93", + "_y": "805" + }, + "origin": { + "_x": "298", + "_y": "772" + }, + "_width": "3030", + "_height": "221" + }, + "description": "boundary of a submarine pipeline area with potentially dangerous contents", + "HPGL": "SPA;SW1;PU1619,867;CI95;SPA;SW1;PU1125,867;PD1522,867;SPA;SW1;PU298,822;PD898,822;SPA;SW1;PU2724,822;PD3328,822;SPA;SW1;PU2890,826;PD3051,987;PD3221,819;SPA;SW1;PU1920,829;PD2520,829;SPA;SW1;PU2056,828;PD2222,993;PD2386,828;SPA;SW1;PU432,831;PD588,986;PD753,824;", + "color-ref": "ACHMGD", + "_RCID": "3348" + }, + { + "name": "PIPARE61", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "93", + "_y": "805" + }, + "origin": { + "_x": "298", + "_y": "772" + }, + "_width": "3030", + "_height": "221" + }, + "description": "boundary of a submarine pipeline area with generally non-dangerous contents", + "HPGL": "SPA;SW1;PU1619,867;CI95;SPA;SW1;PU1125,867;PD1522,867;SPA;SW1;PU298,822;PD898,822;SPA;SW1;PU2724,822;PD3328,822;SPA;SW1;PU2890,826;PD3051,987;PD3221,819;SPA;SW1;PU1920,829;PD2520,829;SPA;SW1;PU2056,828;PD2222,993;PD2386,828;SPA;SW1;PU432,831;PD588,986;PD753,824;", + "color-ref": "ACHGRD", + "_RCID": "3419" + }, + { + "name": "PIPSOL05", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1729", + "_y": "2199" + }, + "origin": { + "_x": "2087", + "_y": "2104" + }, + "_width": "589", + "_height": "190" + }, + "description": "oil, gas pipeline, submerged or on land", + "HPGL": "SPA;SW1;PU2581,2199;CI95;SPA;SW1;PU2087,2199;PD2484,2199;", + "color-ref": "ACHMGD", + "_RCID": "2025" + }, + { + "name": "PIPSOL06", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1731", + "_y": "2197" + }, + "origin": { + "_x": "2087", + "_y": "2140" + }, + "_width": "512", + "_height": "114" + }, + "description": "water pipeline, sewer, etc.", + "HPGL": "SPA;SW1;PU2087,2197;PD2485,2197;SPA;SW1;PU2542,2197;CI57;", + "color-ref": "ACHGRD", + "_RCID": "2026" + }, + { + "name": "PLNRTE03", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1603", + "_y": "1434" + }, + "origin": { + "_x": "1738", + "_y": "1343" + }, + "_width": "172", + "_height": "172" + }, + "description": "planned route for own ship", + "HPGL": "SPA;SW1;ST0;PU1824,1429;PM0;CI86;PM2;FP;", + "color-ref": "APLRTE", + "_RCID": "3651" + }, + { + "name": "PRCARE51", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "104", + "_y": "830" + }, + "origin": { + "_x": "298", + "_y": "595" + }, + "_width": "2869", + "_height": "503" + }, + "description": "boundary of a precautionary area", + "HPGL": "SPA;SW1;PU298,822;PD898,822;SPA;SW1;PU2563,817;PD3167,817;SPA;SW1;PU2729,821;PD2890,982;PD3060,814;SPA;SW1;PU1759,824;PD2359,824;SPA;SW1;PU1895,823;PD2061,988;PD2225,823;SPA;SW1;PU432,831;PD588,986;PD753,824;SPA;SW1;PU1138,1098;PD1504,1098;PD1313,595;PD1141,1098;SPA;SW1;PU1291,1027;PD1346,1027;SPA;SW1;PU1315,971;PD1315,773;", + "color-ref": "ACHMGD", + "_RCID": "3353" + }, + { + "name": "QUESMRK1", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "500", + "_y": "1498" + }, + "origin": { + "_x": "700", + "_y": "1227" + }, + "_width": "1456", + "_height": "443" + }, + "description": "object which is not sufficiently described to be symbolized, or for which no symbol exists in the symbol library", + "HPGL": "SPA;SW1;PU1568,1323;PD1581,1295;PD1594,1270;PD1611,1253;PD1628,1236;PD1654,1227;PD1677,1229;PD1707,1238;PD1735,1244;PD1758,1278;PD1776,1297;PD1788,1319;PD1788,1344;PD1776,1368;PD1763,1389;PD1743,1413;PD1720,1438;PD1699,1464;PD1686,1483;PD1675,1500;PD1673,1522;PD1673,1545;PD1673,1562;PD1675,1584;PD1675,1586;SPA;SW2;PU1654,1670;PD1707,1670;SPA;SW2;PU700,1498;PD1000,1498;SPA;SW2;PU1200,1498;PD1500,1498;SPA;SW2;PU1856,1498;PD2156,1498;", + "color-ref": "ACHMGD", + "_RCID": "2028" + }, + { + "name": "RCRDEF01", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1607", + "_y": "1470" + }, + "origin": { + "_x": "1601", + "_y": "1204" + }, + "_width": "2323", + "_height": "537" + }, + "description": "regulated recommended route centreline, details not defined", + "HPGL": "SPA;SW1;PU2105,1470;PD2409,1470;SPA;SW1;PU3110,1470;PD3422,1470;SPA;SW1;PU3608,1470;PD3912,1470;SPA;SW1;PU1607,1470;PD1907,1470;SPA;SW1;PU1753,1573;PD1601,1657;PD1768,1741;SPA;SW1;PU3771,1204;PD3924,1288;PD3782,1375;SPA;SW1;PU3106,1294;PD3316,1294;SPA;SW1;PU3408,1294;PD3610,1294;SPA;SW1;PU3709,1290;PD3915,1290;SPA;SW1;PU1608,1655;PD1807,1655;SPA;SW1;PU1902,1655;PD2108,1655;SPA;SW1;PU2207,1655;PD2410,1655;SPA;SW1;PU2609,1310;PD2622,1282;PD2635,1257;PD2652,1240;PD2669,1223;PD2695,1214;PD2718,1216;PD2748,1225;PD2776,1231;PD2799,1265;PD2817,1284;PD2829,1306;PD2829,1331;PD2817,1355;PD2804,1376;PD2784,1400;PD2761,1425;PD2740,1451;PD2727,1470;PD2716,1487;PD2714,1509;PD2714,1532;PD2714,1549;PD2716,1571;PD2716,1573;SPA;SW1;PU2695,1656;PD2745,1656;", + "color-ref": "ATRFCD", + "_RCID": "3195" + }, + { + "name": "RCRTCL01", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1607", + "_y": "1470" + }, + "origin": { + "_x": "1607", + "_y": "1209" + }, + "_width": "2305", + "_height": "523" + }, + "description": "regulated two-way recommended route centreline, not based on fixed marks", + "HPGL": "SPA;SW1;PU2608,1470;PD2912,1470;SPA;SW1;PU2105,1470;PD2409,1470;SPA;SW1;PU3110,1470;PD3422,1470;SPA;SW1;PU3608,1470;PD3912,1470;SPA;SW1;PU1607,1470;PD1907,1470;SPA;SW1;PU2152,1564;PD2000,1648;PD2167,1732;SPA;SW1;PU3355,1209;PD3508,1293;PD3366,1380;SPA;SW1;PU2690,1299;PD2900,1299;SPA;SW1;PU2992,1299;PD3194,1299;SPA;SW1;PU3293,1295;PD3499,1295;SPA;SW1;PU2007,1646;PD2206,1646;SPA;SW1;PU2301,1646;PD2507,1646;SPA;SW1;PU2606,1646;PD2809,1646;", + "color-ref": "ATRFCD", + "_RCID": "2239" + }, + { + "name": "RCRTCL02", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1607", + "_y": "1470" + }, + "origin": { + "_x": "1607", + "_y": "1209" + }, + "_width": "2305", + "_height": "261" + }, + "description": "regulated one-way recommended route centreline, not based on fixed marks", + "HPGL": "SPA;SW1;PU2608,1470;PD2912,1470;SPA;SW1;PU2105,1470;PD2409,1470;SPA;SW1;PU3110,1470;PD3422,1470;SPA;SW1;PU3608,1470;PD3912,1470;SPA;SW1;PU1607,1470;PD1907,1470;SPA;SW1;PU3355,1209;PD3508,1293;PD3366,1380;SPA;SW1;PU2690,1299;PD2900,1299;SPA;SW1;PU2992,1299;PD3194,1299;SPA;SW1;PU3293,1295;PD3499,1295;", + "color-ref": "ATRFCD", + "_RCID": "3211" + }, + { + "name": "RCRTCL03", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1607", + "_y": "1470" + }, + "origin": { + "_x": "1607", + "_y": "1209" + }, + "_width": "2305", + "_height": "523" + }, + "description": "regulated two-way recommended route centreline, based on fixed-marks", + "HPGL": "SPA;SW1;PU1607,1470;PD3912,1470;SPA;SW1;PU2152,1564;PD2000,1648;PD2167,1732;SPA;SW1;PU3355,1209;PD3508,1293;PD3366,1380;SPA;SW1;PU2690,1299;PD2900,1299;SPA;SW1;PU2992,1299;PD3194,1299;SPA;SW1;PU3293,1295;PD3499,1295;SPA;SW1;PU2007,1646;PD2206,1646;SPA;SW1;PU2301,1646;PD2507,1646;SPA;SW1;PU2606,1646;PD2809,1646;", + "color-ref": "ATRFCD", + "_RCID": "2239" + }, + { + "name": "RCRTCL04", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1607", + "_y": "1470" + }, + "origin": { + "_x": "1607", + "_y": "1209" + }, + "_width": "2305", + "_height": "261" + }, + "description": "regulated one-way recommended route centreline, based on fixed marks", + "HPGL": "SPA;SW1;PU1607,1470;PD3912,1470;SPA;SW1;PU3355,1209;PD3508,1293;PD3366,1380;SPA;SW1;PU2690,1299;PD2900,1299;SPA;SW1;PU2992,1299;PD3194,1299;SPA;SW1;PU3293,1295;PD3499,1295;", + "color-ref": "ATRFCD", + "_RCID": "3212" + }, + { + "name": "RECDEF02", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "932", + "_y": "1415" + }, + "origin": { + "_x": "1107", + "_y": "1179" + }, + "_width": "2220", + "_height": "443" + }, + "description": "non-regulated recommended track, direction not defined in data", + "HPGL": "SPA;SW1;PU1107,1415;PD1423,1415;SPA;SW1;PU1596,1415;PD1921,1415;SPA;SW1;PU3002,1415;PD3327,1415;SPA;SW1;PU2358,1275;PD2371,1247;PD2384,1222;PD2401,1205;PD2418,1188;PD2444,1179;PD2467,1181;PD2497,1190;PD2525,1196;PD2548,1230;PD2566,1249;PD2578,1271;PD2578,1296;PD2566,1320;PD2553,1341;PD2533,1365;PD2510,1390;PD2489,1416;PD2476,1435;PD2465,1452;PD2463,1474;PD2463,1497;PD2463,1514;PD2465,1536;PD2465,1538;SPA;SW2;PU2444,1622;PD2497,1622;SPA;SW1;PU2254,1570;PD2049,1415;PD2254,1260;SPA;SW1;PU2660,1566;PD2865,1411;PD2660,1256;", + "color-ref": "ACHGRD", + "_RCID": "3335" + }, + { + "name": "RECTRC09", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "932", + "_y": "1415" + }, + "origin": { + "_x": "1107", + "_y": "1260" + }, + "_width": "2220", + "_height": "310" + }, + "description": "non-regulated recommended two-way track, not based on fixed marks", + "HPGL": "SPA;SW1;PU1107,1415;PD1423,1415;SPA;SW1;PU1596,1415;PD1921,1415;SPA;SW1;PU2299,1415;PD2624,1415;SPA;SW1;PU3002,1415;PD3327,1415;SPA;SW1;PU2299,1570;PD2094,1415;PD2299,1260;SPA;SW1;PU2624,1570;PD2829,1415;PD2624,1260;", + "color-ref": "ACHGRD", + "_RCID": "3336" + }, + { + "name": "RECTRC10", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1113", + "_y": "1414" + }, + "origin": { + "_x": "1113", + "_y": "1259" + }, + "_width": "2013", + "_height": "310" + }, + "description": "non-regulated recommended two-way track, based on fixed-marks", + "HPGL": "SPA;SW1;PU2217,1569;PD2012,1414;PD2217,1259;SPA;SW1;PU1113,1414;PD3126,1414;SPA;SW1;PU2542,1569;PD2747,1414;PD2542,1259;", + "color-ref": "ACHGRD", + "_RCID": "3337" + }, + { + "name": "RECTRC11", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "932", + "_y": "1415" + }, + "origin": { + "_x": "1107", + "_y": "1260" + }, + "_width": "1526", + "_height": "310" + }, + "description": "non-regulated recommended one-way track, not based on fixed marks", + "HPGL": "SPA;SW1;PU1107,1415;PD1432,1415;SPA;SW1;PU1605,1415;PD1930,1415;SPA;SW1;PU2308,1415;PD2633,1415;SPA;SW1;PU1930,1570;PD2135,1415;PD1930,1260;", + "color-ref": "ACHGRD", + "_RCID": "3338" + }, + { + "name": "RECTRC12", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1107", + "_y": "1415" + }, + "origin": { + "_x": "1107", + "_y": "1260" + }, + "_width": "1526", + "_height": "310" + }, + "description": "non-regulated recommended one-way track, based on fixed marks", + "HPGL": "SPA;SW1;PU1107,1415;PD2633,1415;SPA;SW1;PU1930,1570;PD2135,1415;PD1930,1260;", + "color-ref": "ACHGRD", + "_RCID": "3339" + }, + { + "name": "RESARE51", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1000", + "_y": "1000" + }, + "origin": { + "_x": "1000", + "_y": "1150" + }, + "_width": "300", + "_height": "150" + }, + "description": "boundary of a restricted area", + "HPGL": "SPA;SW1;PU1000,1000;PD1300,1000;PU1150,1000;PD1150,1150;", + "color-ref": "ACHMGD", + "_RCID": "3161" + }, + { + "name": "SCLBDY51", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "263", + "_y": "598" + }, + "origin": { + "_x": "264", + "_y": "597" + }, + "_width": "610", + "_height": "244" + }, + "description": "chart scale boundary, the double line indicates the larger scale", + "HPGL": "SPA;SW2;PU264,597;PD874,597;SPA;SW1;PU264,772;PD865,772;SPA;SW1;PU264,841;PD865,841;", + "color-ref": "ACHGRF", + "_RCID": "3420" + }, + { + "name": "TIDINF51", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "104", + "_y": "830" + }, + "origin": { + "_x": "298", + "_y": "656" + }, + "_width": "3276", + "_height": "336" + }, + "description": "boundary of an area for which there is tidal information", + "HPGL": "SPA;SW1;PU298,822;PD898,822;SPA;SW1;PU2970,816;PD3574,816;SPA;SW1;PU3136,820;PD3297,981;PD3467,813;SPA;SW1;PU2166,823;PD2766,823;SPA;SW1;PU2302,822;PD2468,987;PD2632,822;SPA;SW1;PU432,831;PD588,986;PD753,824;SPA;SW1;PU1083,824;PD1967,824;SPA;SW1;PU1155,823;PD1155,799;PD1162,768;PD1177,735;PD1199,707;PD1228,685;PD1262,669;PD1295,658;PD1326,656;PD1359,663;PD1389,673;PD1417,690;PD1440,709;PD1462,741;PD1479,779;PD1479,808;PD1479,823;PD1479,849;PD1484,878;PD1491,901;PD1506,930;PD1536,955;PD1548,965;PD1565,975;PD1585,984;PD1616,990;PD1651,992;PD1690,984;PD1719,971;PD1752,950;PD1776,926;PD1795,892;PD1806,860;PD1811,843;PD1811,823;", + "color-ref": "ACHGRD", + "_RCID": "3421" + }, + { + "name": "UNITFTH1", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "276", + "_y": "644" + }, + "origin": { + "_x": "276", + "_y": "644" + }, + "_width": "1109", + "_height": "432" + }, + "description": "change of depth unit line, bounds 'fathom depths'", + "HPGL": "SPA;SW1;PU276,644;PD1385,644;SPA;SW1;PU915,770;PD915,1076;PD714,1076;SPA;SW1;PU915,921;PD705,921;", + "color-ref": "ACHGRD", + "_RCID": "2033" + }, + { + "name": "UNITMTR1", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "276", + "_y": "644" + }, + "origin": { + "_x": "276", + "_y": "644" + }, + "_width": "1109", + "_height": "447" + }, + "description": "change of depth unit line, bounds 'metre depths'", + "HPGL": "SPA;SW1;PU276,644;PD1385,644;SPA;SW1;PU701,782;PD701,1089;PD804,786;PD908,1091;PD908,786;", + "color-ref": "ACHGRD", + "_RCID": "2034" + }, + { + "name": "RCRTCL11", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1607", + "_y": "1470" + }, + "origin": { + "_x": "1607", + "_y": "1209" + }, + "_width": "2305", + "_height": "523" + }, + "description": "regulated two-way recommended route centreline, not based on fixed marks", + "HPGL": "SPA;SW1;PU2608,1470;PD2912,1470;SPA;SW1;PU2105,1470;PD2409,1470;SPA;SW1;PU3110,1470;PD3422,1470;SPA;SW1;PU3608,1470;PD3912,1470;SPA;SW1;PU1607,1470;PD1907,1470;SPA;SW1;PU3355,1564;PD3508,1648;PD3366,1732;SPA;SW1;PU2152,1209;PD2000,1293;PD2167,1380;SPA;SW1;PU2690,1646;PD2900,1646;SPA;SW1;PU2992,1646;PD3194,1646;SPA;SW1;PU3293,1646;PD3499,1646;SPA;SW1;PU2007,1299;PD2206,1299;SPA;SW1;PU2301,1299;PD2507,1299;SPA;SW1;PU2606,1299;PD2809,1299;", + "color-ref": "ATRFCD", + "_RCID": "2239" + }, + { + "name": "RCRTCL12", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1607", + "_y": "1470" + }, + "origin": { + "_x": "1607", + "_y": "1209" + }, + "_width": "2305", + "_height": "523" + }, + "description": "regulated one-way recommended route centreline, not based on fixed marks", + "HPGL": "SPA;SW1;PU2608,1470;PD2912,1470;SPA;SW1;PU2105,1470;PD2409,1470;SPA;SW1;PU3110,1470;PD3422,1470;SPA;SW1;PU3608,1470;PD3912,1470;SPA;SW1;PU1607,1470;PD1907,1470;SPA;SW1;PU2152,1209;PD2000,1293;PD2167,1380;SPA;SW1;PU2007,1299;PD2206,1299;SPA;SW1;PU2301,1299;PD2507,1299;SPA;SW1;PU2606,1299;PD2809,1299;", + "color-ref": "ATRFCD", + "_RCID": "2239" + }, + { + "name": "RCRTCL13", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1607", + "_y": "1470" + }, + "origin": { + "_x": "1607", + "_y": "1209" + }, + "_width": "2305", + "_height": "523" + }, + "description": "regulated two-way recommended route centreline, based on fixed marks", + "HPGL": "SPA;SW1;PU1607,1470;PD3912,1470;SPA;SW1;PU3355,1564;PD3508,1648;PD3366,1732;SPA;SW1;PU2152,1209;PD2000,1293;PD2167,1380;SPA;SW1;PU2690,1646;PD2900,1646;SPA;SW1;PU2992,1646;PD3194,1646;SPA;SW1;PU3293,1646;PD3499,1646;SPA;SW1;PU2007,1299;PD2206,1299;SPA;SW1;PU2301,1299;PD2507,1299;SPA;SW1;PU2606,1299;PD2809,1299;", + "color-ref": "ATRFCD", + "_RCID": "2239" + }, + { + "name": "RCRTCL14", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1607", + "_y": "1470" + }, + "origin": { + "_x": "1607", + "_y": "1209" + }, + "_width": "2305", + "_height": "523" + }, + "description": "regulated one-way recommended route centreline, based on fixed marks", + "HPGL": "SPA;SW1;PU1607,1470;PD3912,1470;SPA;SW1;PU2152,1209;PD2000,1293;PD2167,1380;SPA;SW1;PU2007,1299;PD2206,1299;SPA;SW1;PU2301,1299;PD2507,1299;SPA;SW1;PU2606,1299;PD2809,1299;", + "color-ref": "ATRFCD", + "_RCID": "2239" + } + ] + }, + "patterns": { + "pattern": [ + { + "name": "AIRARE02", + "definition": "V", + "filltype": "S", + "spacing": "C", + "vector": { + "distance": { + "_min": "2000", + "_max": "10000" + }, + "pivot": { + "_x": "2259", + "_y": "2256" + }, + "origin": { + "_x": "435", + "_y": "452" + }, + "_width": "618", + "_height": "528" + }, + "description": "pattern of symbols for an airport area", + "color-ref": "ALANDF", + "HPGL": "SPA;SW1;PU623,980;PD859,980;PD790,901;PD790,801;PD1053,801;PD810,638;PD810,516;PD751,452;PD680,516;PD680,638;PD435,795;PD684,797;PD684,907;PD623,980;", + "_RCID": "2000" + }, + { + "name": "DIAMOND1", + "definition": "V", + "filltype": "L", + "spacing": "C", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "1125", + "_y": "93" + }, + "_width": "2250", + "_height": "4313" + }, + "description": "area of depth less than the safety contour", + "color-ref": "\\DEPCN", + "HPGL": "SP\\;SW1;PU1125,93;PD3375,4406;PU1125,4406;PD3375,93;", + "_RCID": "1206" + }, + { + "name": "DQUALA11", + "definition": "V", + "filltype": "S", + "spacing": "C", + "vector": { + "distance": { + "_min": "1400", + "_max": "10000" + }, + "pivot": { + "_x": "2423", + "_y": "1417" + }, + "origin": { + "_x": "1570", + "_y": "856" + }, + "_width": "1697", + "_height": "1184" + }, + "description": "pattern of symbols for a chart of 5m accuracy with full seafloor coverage", + "color-ref": "ACHGRD", + "HPGL": "SPA;SW1;PU2779,1066;PD3080,1066;SPA;SW1;PU3021,947;PD2840,1187;SPA;SW1;PU2841,947;PD3021,1186;SPA;SW1;PU2257,1066;PD2558,1066;SPA;SW1;PU2499,947;PD2318,1187;SPA;SW1;PU2319,947;PD2499,1186;SPA;SW1;PU1728,1071;PD2029,1071;SPA;SW1;PU1970,952;PD1789,1192;SPA;SW1;PU1790,952;PD1970,1191;SPA;SW1;PU2009,1420;PD2310,1420;SPA;SW1;PU2251,1301;PD2070,1541;SPA;SW1;PU2071,1301;PD2251,1540;SPA;SW1;PU2537,1415;PD2838,1415;SPA;SW1;PU2779,1296;PD2598,1536;SPA;SW1;PU2599,1296;PD2779,1535;SPA;SW1;PU2287,1756;PD2588,1756;SPA;SW1;PU2529,1637;PD2348,1877;SPA;SW1;PU2349,1637;PD2529,1876;SPA;SW1;PU1600,1052;PD1570,971;PD1581,917;PD1600,879;PD1647,859;PD1678,856;PD3105,856;PD3186,863;PD3236,886;PD3256,914;PD3267,944;PD3267,968;PD3267,1006;PD3248,1037;PD2561,1951;PD2534,1982;PD2507,2013;PD2480,2029;PD2461,2032;PD2442,2040;PD2407,2036;PD2388,2032;PD2349,2021;PD2330,2005;PD2310,1982;PD2287,1955;PD1600,1052;", + "_RCID": "3373" + }, + { + "name": "DQUALA21", + "definition": "V", + "filltype": "S", + "spacing": "C", + "vector": { + "distance": { + "_min": "1400", + "_max": "10000" + }, + "pivot": { + "_x": "2401", + "_y": "1247" + }, + "origin": { + "_x": "1570", + "_y": "856" + }, + "_width": "1697", + "_height": "1184" + }, + "description": "pattern of symbols for a chart with 20m accuracy with full seafloor coverage", + "color-ref": "ACHGRD", + "HPGL": "SPA;SW1;PU2779,1066;PD3080,1066;SPA;SW1;PU3021,947;PD2840,1187;SPA;SW1;PU2841,947;PD3021,1186;SPA;SW1;PU2257,1066;PD2558,1066;SPA;SW1;PU2499,947;PD2318,1187;SPA;SW1;PU2319,947;PD2499,1186;SPA;SW1;PU1728,1071;PD2029,1071;SPA;SW1;PU1970,952;PD1789,1192;SPA;SW1;PU1790,952;PD1970,1191;SPA;SW1;PU2009,1420;PD2310,1420;SPA;SW1;PU2251,1301;PD2070,1541;SPA;SW1;PU2071,1301;PD2251,1540;SPA;SW1;PU2537,1415;PD2838,1415;SPA;SW1;PU2779,1296;PD2598,1536;SPA;SW1;PU2599,1296;PD2779,1535;SPA;SW1;PU1600,1052;PD1570,971;PD1581,917;PD1600,879;PD1647,859;PD1678,856;PD3105,856;PD3186,863;PD3236,886;PD3256,914;PD3267,944;PD3267,968;PD3267,1006;PD3248,1037;PD2561,1951;PD2534,1982;PD2507,2013;PD2480,2029;PD2461,2032;PD2442,2040;PD2407,2036;PD2388,2032;PD2349,2021;PD2330,2005;PD2310,1982;PD2287,1955;PD1600,1052;", + "_RCID": "3374" + }, + { + "name": "DQUALB01", + "definition": "V", + "filltype": "S", + "spacing": "C", + "vector": { + "distance": { + "_min": "1400", + "_max": "10000" + }, + "pivot": { + "_x": "2401", + "_y": "1247" + }, + "origin": { + "_x": "1570", + "_y": "856" + }, + "_width": "1697", + "_height": "1184" + }, + "description": "pattern of symbols for a chart with 50m accuracy from standard survey based on lines of continuous soundings", + "color-ref": "ACHGRD", + "HPGL": "SPA;SW1;PU2779,1066;PD3080,1066;SPA;SW1;PU3021,947;PD2840,1187;SPA;SW1;PU2841,947;PD3021,1186;SPA;SW1;PU2257,1066;PD2558,1066;SPA;SW1;PU2499,947;PD2318,1187;SPA;SW1;PU2319,947;PD2499,1186;SPA;SW1;PU1728,1071;PD2029,1071;SPA;SW1;PU1970,952;PD1789,1192;SPA;SW1;PU1790,952;PD1970,1191;SPA;SW1;PU2253,1459;PD2554,1459;SPA;SW1;PU2495,1340;PD2314,1580;SPA;SW1;PU2315,1340;PD2495,1579;SPA;SW1;PU1600,1052;PD1570,971;PD1581,917;PD1600,879;PD1647,859;PD1678,856;PD3105,856;PD3186,863;PD3236,886;PD3256,914;PD3267,944;PD3267,968;PD3267,1006;PD3248,1037;PD2561,1951;PD2534,1982;PD2507,2013;PD2480,2029;PD2461,2032;PD2442,2040;PD2407,2036;PD2388,2032;PD2349,2021;PD2330,2005;PD2310,1982;PD2287,1955;PD1600,1052;", + "_RCID": "3375" + }, + { + "name": "DQUALC01", + "definition": "V", + "filltype": "S", + "spacing": "C", + "vector": { + "distance": { + "_min": "1600", + "_max": "10000" + }, + "pivot": { + "_x": "2407", + "_y": "1062" + }, + "origin": { + "_x": "1591", + "_y": "837" + }, + "_width": "1604", + "_height": "430" + }, + "description": "pattern of symbols for a low accuracy or incomplete chart", + "color-ref": "ACHGRD", + "HPGL": "SPA;SW1;PU3021,947;PD2840,1187;SPA;SW1;PU2841,947;PD3021,1186;SPA;SW1;PU2499,947;PD2318,1187;SPA;SW1;PU2319,947;PD2499,1186;SPA;SW1;PU1970,952;PD1789,1192;SPA;SW1;PU1790,952;PD1970,1191;SPA;SW1;PU1783,837;PD1738,851;PD1703,865;PD1668,890;PD1640,925;PD1615,967;PD1601,1005;PD1591,1054;PD1598,1106;PD1608,1148;PD1626,1194;PD1671,1232;PD1727,1257;PD1776,1267;SPA;SW1;PU1769,841;PD3024,841;PD3066,855;PD3118,883;PD3150,914;PD3178,953;PD3185,981;PD3192,1019;PD3195,1054;PD3192,1099;PD3185,1141;PD3167,1183;PD3150,1208;PD3111,1243;PD3083,1260;PD3059,1267;PD3024,1264;PD1773,1264;SPA;SW1;PU1731,1069;PD2031,1069;SPA;SW1;PU2780,1066;PD3080,1066;SPA;SW1;PU2249,1064;PD2549,1064;", + "_RCID": "3376" + }, + { + "name": "DQUALD01", + "definition": "V", + "filltype": "S", + "spacing": "C", + "vector": { + "distance": { + "_min": "1600", + "_max": "10000" + }, + "pivot": { + "_x": "2268", + "_y": "1078" + }, + "origin": { + "_x": "1466", + "_y": "843" + }, + "_width": "1604", + "_height": "430" + }, + "description": "pattern of symbols for an unreliable chart", + "color-ref": "ACHGRD", + "HPGL": "SPA;SW1;PU2739,942;PD2558,1182;SPA;SW1;PU2559,942;PD2739,1181;SPA;SW1;PU1970,952;PD1789,1192;SPA;SW1;PU1790,952;PD1970,1191;SPA;SW1;PU1658,843;PD1613,857;PD1578,871;PD1543,896;PD1515,931;PD1490,973;PD1476,1011;PD1466,1060;PD1473,1112;PD1483,1154;PD1501,1200;PD1546,1238;PD1602,1263;PD1651,1273;SPA;SW1;PU1644,847;PD2899,847;PD2941,861;PD2993,889;PD3025,920;PD3053,959;PD3060,987;PD3067,1025;PD3070,1060;PD3067,1105;PD3060,1147;PD3042,1189;PD3025,1214;PD2986,1249;PD2958,1266;PD2934,1273;PD2899,1270;PD1648,1270;SPA;SW1;PU1734,1069;PD2034,1067;SPA;SW1;PU2493,1064;PD2815,1064;", + "_RCID": "3377" + }, + { + "name": "DQUALU01", + "definition": "V", + "filltype": "S", + "spacing": "C", + "vector": { + "distance": { + "_min": "1600", + "_max": "10000" + }, + "pivot": { + "_x": "2927", + "_y": "1059" + }, + "origin": { + "_x": "2124", + "_y": "841" + }, + "_width": "1604", + "_height": "430" + }, + "description": "pattern of symbols for a chart with quality not assessed", + "color-ref": "ACHGRD", + "HPGL": "SPA;SW1;PU2316,841;PD2271,855;PD2236,869;PD2201,894;PD2173,929;PD2148,971;PD2134,1009;PD2124,1058;PD2131,1110;PD2141,1152;PD2159,1198;PD2204,1236;PD2260,1261;PD2309,1271;SPA;SW1;PU2302,845;PD3557,845;PD3599,859;PD3651,887;PD3683,918;PD3711,957;PD3718,985;PD3725,1023;PD3728,1058;PD3725,1103;PD3718,1145;PD3700,1187;PD3683,1212;PD3644,1247;PD3616,1264;PD3592,1271;PD3557,1268;PD2306,1268;SPA;SW1;PU2841,946;PD2842,1137;PD2852,1166;PD2873,1186;PD2904,1201;PD2938,1203;PD2961,1193;PD2990,1175;PD3008,1158;PD3018,1134;PD3018,946;", + "_RCID": "3378" + }, + { + "name": "DRGARE01", + "definition": "V", + "filltype": "L", + "spacing": "C", + "vector": { + "distance": { + "_min": "150", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1500", + "_y": "1300" + }, + "_width": "200", + "_height": "200" + }, + "description": "dredged area", + "color-ref": "DCHGRD", + "HPGL": "SPD;SW1;PU1500,1300;PD;PU1700,1500;PD;", + "_RCID": "1207" + }, + { + "name": "FOULAR11", + "definition": "V", + "filltype": "L", + "spacing": "C", + "vector": { + "distance": { + "_min": "150", + "_max": "10000" + }, + "pivot": { + "_x": "837", + "_y": "728" + }, + "origin": { + "_x": "1020", + "_y": "850" + }, + "_width": "570", + "_height": "684" + }, + "description": "foul area, not safe for navigation", + "color-ref": "ACHGRD", + "HPGL": "SPA;SW1;PU1590,1294;PD1409,1534;SPA;SW1;PU1410,1294;PD1590,1533;SPA;SW1;PU1022,850;PD1200,1090;SPA;SW1;PU1196,853;PD1020,1093;", + "_RCID": "3416" + }, + { + "name": "FSHFAC03", + "definition": "V", + "filltype": "S", + "spacing": "C", + "vector": { + "distance": { + "_min": "2000", + "_max": "10000" + }, + "pivot": { + "_x": "4643", + "_y": "2168" + }, + "origin": { + "_x": "3135", + "_y": "2173" + }, + "_width": "604", + "_height": "151" + }, + "description": "pattern of symbols for an area with fishing stakes", + "color-ref": "ACHGRD", + "HPGL": "SPA;SW1;PU3135,2173;PD3135,2323;PD3739,2323;PD3739,2180;SPA;SW1;PU3290,2176;PD3290,2324;SPA;SW1;PU3438,2179;PD3438,2321;SPA;SW1;PU3590,2179;PD3590,2321;", + "_RCID": "2001" + }, + { + "name": "FSHFAC04", + "definition": "V", + "filltype": "S", + "spacing": "C", + "bitmap": { + "distance": { + "_min": "100", + "_max": "200" + }, + "pivot": { + "_x": "20", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "257", + "_y": "1007" + }, + "_width": "40", + "_height": "40" + }, + "vector": { + "distance": { + "_min": "2000", + "_max": "10000" + }, + "pivot": { + "_x": "1753", + "_y": "189" + }, + "origin": { + "_x": "492", + "_y": "416" + }, + "_width": "511", + "_height": "438" + }, + "description": "pattern of symbols for an area with fish traps, fish weirs, tunny nets", + "color-ref": "ACHGRD", + "HPGL": "SPA;SW1;PU492,854;PD1003,854;PD1003,632;PD494,632;PD494,853;SPA;SW1;PU558,416;PD776,634;", + "_RCID": "1211" + }, + { + "name": "FSHHAV02", + "definition": "V", + "filltype": "S", + "spacing": "C", + "bitmap": { + "distance": { + "_min": "100", + "_max": "200" + }, + "pivot": { + "_x": "20", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "305", + "_y": "1007" + }, + "_width": "40", + "_height": "40" + }, + "vector": { + "distance": { + "_min": "2000", + "_max": "10000" + }, + "pivot": { + "_x": "2200", + "_y": "1470" + }, + "origin": { + "_x": "710", + "_y": "1335" + }, + "_width": "790", + "_height": "320" + }, + "description": "pattern of symbols for a fish haven", + "color-ref": "ECHGRD", + "HPGL": "SPE;SW1;PU835,1490;PD725,1355;PU835,1500;PD710,1625;PU835,1500;PD890,1440;PD960,1390;PD1050,1350;PD1150,1335;PD1240,1340;PD1340,1360;PD1425,1400;PD1485,1445;PD1500,1475;PU840,1495;PD925,1565;PD1030,1625;PD1140,1650;PD1220,1655;PD1305,1640;PD1385,1610;PD1450,1550;PD1500,1480;PU1365,1380;PD1340,1445;PD1340,1535;PD1385,1600;", + "_RCID": "1212" + }, + { + "name": "ICEARE04", + "definition": "V", + "filltype": "L", + "spacing": "C", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "2381", + "_y": "815" + }, + "_width": "1434", + "_height": "1331" + }, + "description": "continuous pattern for an ice area (glacier, etc.)", + "color-ref": "ECHGRD", + "HPGL": "SPE;SW1;PU2559,2146;PD2775,1978;PU2381,1153;PD2596,1396;PU2981,1537;PD3253,1603;PU2953,1059;PD3028,815;PU3131,2043;PD3412,1959;PU3665,1593;PD3731,1865;PU3553,1125;PD3815,1106;", + "_RCID": "1213" + }, + { + "name": "MARCUL02", + "definition": "V", + "filltype": "S", + "spacing": "C", + "vector": { + "distance": { + "_min": "2000", + "_max": "10000" + }, + "pivot": { + "_x": "2409", + "_y": "369" + }, + "origin": { + "_x": "416", + "_y": "568" + }, + "_width": "705", + "_height": "403" + }, + "description": "pattern of symbols for a marine farm", + "color-ref": "ACHGRD", + "HPGL": "SPA;SW1;PU505,847;PD641,725;PD714,684;PD771,668;PD822,662;PD882,673;PD944,693;PD984,717;PD1018,744;PD1039,774;PD1004,803;PD968,831;PD914,855;PD871,869;PD819,871;PD763,869;PD709,857;PD670,835;PD505,698;SPA;SW1;PU416,669;PD416,570;PD1117,570;PD1117,666;SPA;SW1;PU416,871;PD416,971;PD1120,971;PD1121,871;SPA;SW1;PU564,871;PD564,971;SPA;SW1;PU965,871;PD965,971;SPA;SW1;PU765,870;PD765,968;SPA;SW1;PU564,571;PD564,672;SPA;SW1;PU965,569;PD965,670;SPA;SW1;PU764,568;PD764,668;", + "_RCID": "2003" + }, + { + "name": "MARSHES1", + "definition": "V", + "filltype": "S", + "spacing": "C", + "bitmap": { + "distance": { + "_min": "1500", + "_max": "15000" + }, + "pivot": { + "_x": "30", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "207", + "_y": "1007" + }, + "_width": "40", + "_height": "40" + }, + "vector": { + "distance": { + "_min": "1500", + "_max": "15000" + }, + "pivot": { + "_x": "750", + "_y": "1016" + }, + "origin": { + "_x": "550", + "_y": "499" + }, + "_width": "400", + "_height": "393" + }, + "description": "pattern of symbols for a marsh", + "color-ref": "ACHBRN", + "HPGL": "SPA;SW2;PU751,765;PD751,499;SPA;SW2;PU626,892;PD876,892;SPA;SW2;PU550,810;PD950,810;SPA;SW2;PU664,799;PD592,634;SPA;SW2;PU830,799;PD901,637;", + "_RCID": "3143" + }, + { + "name": "NODATA03", + "definition": "V", + "filltype": "S", + "spacing": "C", + "vector": { + "distance": { + "_min": "100", + "_max": "10000" + }, + "pivot": { + "_x": "2942", + "_y": "1040" + }, + "origin": { + "_x": "2342", + "_y": "645" + }, + "_width": "602", + "_height": "396" + }, + "description": "area of no chart data", + "color-ref": "ACHGRD", + "HPGL": "SPA;SW2;PU2342,1041;PD2542,1040;", + "_RCID": "3113" + }, + { + "name": "OVERSC01", + "definition": "V", + "filltype": "L", + "spacing": "C", + "vector": { + "distance": { + "_min": "0", + "_max": "10000" + }, + "pivot": { + "_x": "4243", + "_y": "1227" + }, + "origin": { + "_x": "3443", + "_y": "827" + }, + "_width": "0", + "_height": "400" + }, + "description": "overscale part of a display containing data from more than one navigation purpose", + "color-ref": "ACHGRD", + "HPGL": "SPA;SW1;PU3443,827;PD3443,1227;", + "_RCID": "3372" + }, + { + "name": "PRTSUR01", + "definition": "V", + "filltype": "S", + "spacing": "C", + "vector": { + "distance": { + "_min": "1000", + "_max": "10000" + }, + "pivot": { + "_x": "2347", + "_y": "640" + }, + "origin": { + "_x": "2448", + "_y": "741" + }, + "_width": "201", + "_height": "0" + }, + "description": "incompletely surveyed area", + "color-ref": "ACHGRD", + "HPGL": "SPA;SW2;PU2448,741;PD2650,741;", + "_RCID": "3371" + }, + { + "name": "QUESMRK1", + "definition": "V", + "filltype": "S", + "spacing": "C", + "vector": { + "distance": { + "_min": "2000", + "_max": "10000" + }, + "pivot": { + "_x": "1676", + "_y": "1501" + }, + "origin": { + "_x": "1568", + "_y": "1227" + }, + "_width": "220", + "_height": "443" + }, + "description": "pattern of symbols for an area which is not sufficiently described to be symbolized, or for which no symbol exists in the symbol library", + "color-ref": "ACHMGD", + "HPGL": "SPA;SW1;PU1568,1323;PD1581,1295;PD1594,1270;PD1611,1253;PD1628,1236;PD1654,1227;PD1677,1229;PD1707,1238;PD1735,1244;PD1758,1278;PD1776,1297;PD1788,1319;PD1788,1344;PD1776,1368;PD1763,1389;PD1743,1413;PD1720,1438;PD1699,1464;PD1686,1483;PD1675,1500;PD1673,1522;PD1673,1545;PD1673,1562;PD1675,1584;PD1675,1586;SPA;SW2;PU1654,1670;PD1707,1670;", + "_RCID": "2007" + }, + { + "name": "RCKLDG01", + "definition": "V", + "filltype": "L", + "spacing": "C", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2319", + "_y": "2152" + }, + "origin": { + "_x": "2325", + "_y": "814" + }, + "_width": "1541", + "_height": "1332" + }, + "description": "rock or coral drying ledges", + "color-ref": "ALANDF", + "HPGL": "SPA;SW1;PU2559,2146;PD2775,1978;SPA;SW1;PU2490,1030;PD2593,1337;SPA;SW1;PU3102,1412;PD2942,1642;SPA;SW1;PU2953,1059;PD3028,815;SPA;SW1;PU3194,1797;PD3244,2086;SPA;SW1;PU3751,1761;PD3866,1506;SPA;SW1;PU3768,1160;PD3518,1079;SPA;SW1;PU2593,1331;PD2325,1193;SPA;SW1;PU2951,1640;PD2924,1374;SPA;SW1;PU2554,2146;PD2583,1889;SPA;SW1;PU3197,1797;PD3409,1967;SPA;SW1;PU3859,1507;PD3595,1618;SPA;SW1;PU3522,1083;PD3727,948;SPA;SW1;PU3028,814;PD3138,1049;", + "_RCID": "3180" + }, + { + "name": "SNDWAV01", + "definition": "V", + "filltype": "S", + "spacing": "C", + "vector": { + "distance": { + "_min": "2000", + "_max": "10000" + }, + "pivot": { + "_x": "29", + "_y": "499" + }, + "origin": { + "_x": "37", + "_y": "316" + }, + "_width": "1179", + "_height": "179" + }, + "description": "pattern of symbols for sand waves", + "color-ref": "ACHGRD", + "HPGL": "SPA;SW1;PU37,495;PD121,495;PD163,473;PD228,328;PD263,328;PD320,473;PD347,495;PD523,495;PD554,468;PD600,331;PD626,331;PD677,468;PD710,495;PD856,495;PD906,495;PD937,476;PD998,316;PD1036,316;PD1093,473;PD1132,495;PD1216,495;", + "_RCID": "2238" + }, + { + "name": "TSSJCT02", + "definition": "V", + "filltype": "L", + "spacing": "C", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "750", + "_y": "250" + }, + "_width": "500", + "_height": "500" + }, + "description": "precautionary area or a traffic separation scheme crossing or roundabout", + "color-ref": "UTRFCF", + "HPGL": "SPU;SW1;PU750,750;PD1250,250;", + "_RCID": "1224" + }, + { + "name": "VEGATN03", + "definition": "V", + "filltype": "S", + "spacing": "C", + "vector": { + "distance": { + "_min": "1000", + "_max": "10000" + }, + "pivot": { + "_x": "749", + "_y": "746" + }, + "origin": { + "_x": "574", + "_y": "348" + }, + "_width": "362", + "_height": "399" + }, + "description": "pattern of symbols for wooded areas", + "color-ref": "ALANDF", + "HPGL": "SPA;SW1;PU750,747;PD750,350;SPA;SW1;PU574,447;PD936,447;SPA;SW1;PU641,545;PD858,545;SPA;SW1;PU684,348;PD814,348;SPA;SW1;PU695,747;PD815,747;SPA;SW1;PU638,396;PD858,396;SPA;SW1;PU621,494;PD883,494;", + "_RCID": "2008" + }, + { + "name": "VEGATN04", + "definition": "V", + "filltype": "S", + "spacing": "C", + "vector": { + "distance": { + "_min": "1000", + "_max": "10000" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "550", + "_y": "450" + }, + "_width": "400", + "_height": "300" + }, + "description": "pattern of symbols for mangroves", + "color-ref": "ALANDF", + "HPGL": "SPA;SW1;PU750,600;CI150;SPA;SW1;PU550,750;PD950,750;SPA;SW1;PU750,748;PD750,587;", + "_RCID": "3001" + }, + { + "name": "NODATA04", + "definition": "R", + "filltype": "S", + "spacing": "C", + "description": "area of no chart data", + "bitmap": { + "distance": { + "_min": "3", + "_max": "326" + }, + "pivot": { + "_x": "20", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "68", + "_y": "1007" + }, + "_width": "48", + "_height": "24" + }, + "color-ref": "ACHGRD", + "_RCID": "16" + }, + { + "name": "FOULAR02", + "definition": "R", + "filltype": "L", + "spacing": "C", + "description": "area of depth less than the safety contour", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "36", + "_y": "69" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "121", + "_y": "1007" + }, + "_width": "73", + "_height": "142" + }, + "color-ref": "ACHGRD", + "_RCID": "1" + }, + { + "name": "FOULAR01", + "definition": "R", + "filltype": "L", + "spacing": "C", + "description": "area of depth less than the safety contour", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "5" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "68", + "_y": "1039" + }, + "_width": "32", + "_height": "32" + }, + "color-ref": "ACHGRD", + "_RCID": "1" + }, + { + "name": "CROSSX01", + "definition": "R", + "filltype": "L", + "spacing": "C", + "description": "General Cross Hatch pattern, Angle 0", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "400", + "_y": "1040" + }, + "_width": "16", + "_height": "16" + }, + "color-ref": "ACHBRN", + "_RCID": "3" + }, + { + "name": "CROSSX02", + "definition": "R", + "filltype": "L", + "spacing": "C", + "description": "General small dot pattern", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "430", + "_y": "1040" + }, + "_width": "16", + "_height": "16" + }, + "color-ref": "ACHBRN", + "_RCID": "4" + } + ] + }, + "symbols": { + "symbol": [ + { + "name": "ACHARE02", + "description": "anchorage area as a point at small scale, or anchor points of mooring trot at large scale", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "10" + }, + "_width": "13", + "_height": "16" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1267", + "_y": "1052" + }, + "origin": { + "_x": "1061", + "_y": "789" + }, + "HPGL": "SPA;SW1;PU1264,789;PD1264,1291;SPA;SW1;PU1108,938;PD1412,938;SPA;SW1;PU1061,1188;PD1167,1292;PD1365,1292;PD1463,1191;", + "_width": "402", + "_height": "503" + }, + "definition": "V", + "_RCID": "2035" + }, + { + "name": "ACHARE51", + "description": "anchorage area", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "18", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "33", + "_y": "10" + }, + "_width": "36", + "_height": "38" + }, + "color-ref": "JCHMGF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "1621", + "_y": "1471" + }, + "HPGL": "SPJ;SW1;PU2193,1471;PD2193,1800;PD1875,1800;PD1875,1912;PD2193,1912;PD2193,2596;PD1987,2550;PD1800,2409;PD1621,2409;PD1875,2596;PD2250,2775;PD2596,2596;PD2850,2409;PD2700,2409;PD2475,2550;PD2268,2596;PD2268,1912;PD2596,1912;PD2596,1800;PD2268,1800;PD2268,1471;PD2193,1471;", + "_width": "1229", + "_height": "1304" + }, + "definition": "V", + "_RCID": "1228" + }, + { + "name": "ACHBRT07", + "description": "designated anchor berth for a single vessel", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "79", + "_y": "10" + }, + "_width": "16", + "_height": "16" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1264", + "_y": "1062" + }, + "origin": { + "_x": "1010", + "_y": "783" + }, + "HPGL": "SPA;SW1;PU1262,783;PD1262,1004;SPA;SW1;PU1262,1289;PD1262,1207;SPA;SW1;PU1516,1135;PD1364,1287;PD1167,1287;PD1010,1132;SPA;SW1;PU1261,1101;CI101;SPA;SW1;PU1107,937;PD1424,937;", + "_width": "506", + "_height": "506" + }, + "definition": "V", + "_RCID": "3003" + }, + { + "name": "ACHRES51", + "description": "area where anchoring is prohibited or restricted", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-18", + "_y": "-14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "105", + "_y": "10" + }, + "_width": "36", + "_height": "38" + }, + "color-ref": "ACHMGF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "981", + "_y": "958" + }, + "origin": { + "_x": "1621", + "_y": "1471" + }, + "HPGL": "SPA;SW1;PU2193,1471;PD2193,1800;PD1875,1800;PD1875,1912;PD2193,1912;PD2193,2596;PD1987,2550;PD1800,2409;PD1621,2409;PD1875,2596;PD2250,2775;PD2596,2596;PD2850,2409;PD2700,2409;PD2475,2550;PD2268,2596;PD2268,1912;PD2596,1912;PD2596,1800;PD2268,1800;PD2268,1471;PD2193,1471;SPA;SW3;PU2703,1671;PD1701,2679;", + "_width": "1229", + "_height": "1304" + }, + "definition": "V", + "_RCID": "3399" + }, + { + "name": "ACHRES61", + "description": "area where anchoring is prohibited or restricted, with other cautions", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-18", + "_y": "-14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "151", + "_y": "10" + }, + "_width": "42", + "_height": "38" + }, + "color-ref": "ACHMGFCCHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "981", + "_y": "958" + }, + "origin": { + "_x": "1621", + "_y": "1471" + }, + "HPGL": "SPA;SW1;PU2193,1471;PD2193,1800;PD1875,1800;PD1875,1912;PD2193,1912;PD2193,2596;PD1987,2550;PD1800,2409;PD1621,2409;PD1875,2596;PD2250,2775;PD2596,2596;PD2850,2409;PD2700,2409;PD2475,2550;PD2268,2596;PD2268,1912;PD2596,1912;PD2596,1800;PD2268,1800;PD2268,1471;PD2193,1471;SPA;SW2;PU2703,1671;PD1701,2679;SPC;SW2;PU3001,2775;PD3056,2775;SPC;SW1;PU3019,2325;PD3019,2671;", + "_width": "1435", + "_height": "1304" + }, + "definition": "V", + "_RCID": "3401" + }, + { + "name": "ACHRES71", + "description": "area where anchoring is prohibited or restricted, with other information", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-12", + "_y": "-14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "203", + "_y": "10" + }, + "_width": "43", + "_height": "38" + }, + "color-ref": "ACHMGFCCHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "981", + "_y": "958" + }, + "origin": { + "_x": "1403", + "_y": "1471" + }, + "HPGL": "SPA;SW1;PU2193,1471;PD2193,1800;PD1875,1800;PD1875,1912;PD2193,1912;PD2193,2596;PD1987,2550;PD1800,2409;PD1621,2409;PD1875,2596;PD2250,2775;PD2596,2596;PD2850,2409;PD2700,2409;PD2475,2550;PD2268,2596;PD2268,1912;PD2596,1912;PD2596,1800;PD2268,1800;PD2268,1471;PD2193,1471;SPA;SW3;PU2703,1671;PD1701,2679;SPC;SW1;PU1495,2761;PD1495,2527;PD1403,2526;SPC;SW1;PU1404,2762;PD1591,2762;SPC;SW1;PU1449,2408;PD1452,2448;", + "_width": "1447", + "_height": "1304" + }, + "definition": "V", + "_RCID": "3403" + }, + { + "name": "AIRARE02", + "description": "symbol for airport as a point", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "256", + "_y": "10" + }, + "_width": "24", + "_height": "24" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "749", + "_y": "750" + }, + "origin": { + "_x": "351", + "_y": "352" + }, + "HPGL": "SPA;SW1;PU749,750;CI398;SPA;SW1;PU623,980;PD859,980;PD790,901;PD790,801;PD1053,801;PD810,638;PD810,516;PD751,452;PD680,516;PD680,638;PD435,795;PD684,797;PD684,907;PD623,980;", + "_width": "796", + "_height": "796" + }, + "definition": "V", + "_RCID": "2075" + }, + { + "name": "AISDEF01", + "description": "AIS target whose heading and course are both unknown", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "290", + "_y": "10" + }, + "_width": "17", + "_height": "23" + }, + "color-ref": "AARPATCCHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "472", + "_y": "1050" + }, + "origin": { + "_x": "345", + "_y": "391" + }, + "HPGL": "SPA;SW1;ST0;PU472,1052;PM0;CI31;PM2;FP;SPA;SW2;PU350,1142;PD598,1142;PD469,391;PD345,1140;SPC;SW1;PU687,638;PD700,610;PD713,585;PD730,568;PD747,551;PD773,542;PD796,544;PD826,553;PD854,559;PD877,593;PD895,612;PD907,634;PD907,659;PD895,683;PD882,704;PD862,728;PD839,753;PD818,779;PD805,798;PD794,815;PD792,837;PD792,860;PD792,877;PD794,899;PD794,901;SPC;SW1;PU775,929;PD811,929;", + "_width": "562", + "_height": "751" + }, + "definition": "V", + "_RCID": "3500" + }, + { + "name": "AISONE01", + "description": "one minute mark for AIS vector", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "5" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "317", + "_y": "10" + }, + "_width": "13", + "_height": "6" + }, + "color-ref": "AARPAT", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7371", + "_y": "1615" + }, + "origin": { + "_x": "7174", + "_y": "1445" + }, + "HPGL": "SPA;SW1;PU7174,1616;PD7579,1616;PD7372,1445;PD7174,1616;", + "_width": "405", + "_height": "171" + }, + "definition": "V", + "_RCID": "3216" + }, + { + "name": "AISSIX01", + "description": "six minute mark for AIS vector", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "340", + "_y": "10" + }, + "_width": "13", + "_height": "7" + }, + "color-ref": "AARPAT", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7371", + "_y": "1657" + }, + "origin": { + "_x": "7173", + "_y": "1445" + }, + "HPGL": "SPA;SW1;PU7173,1617;PD7578,1616;PD7371,1445;PD7173,1617;SPA;SW3;PU7173,1659;PD7578,1659;", + "_width": "405", + "_height": "214" + }, + "definition": "V", + "_RCID": "3215" + }, + { + "name": "AISSLP01", + "description": "sleeping AIS target", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "363", + "_y": "10" + }, + "_width": "9", + "_height": "23" + }, + "color-ref": "AARPAT", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "472", + "_y": "1050" + }, + "origin": { + "_x": "345", + "_y": "391" + }, + "HPGL": "SPA;SW1;ST0;PU472,1052;PM0;CI31;PM2;FP;SPA;SW2;PU350,1142;PD598,1142;PD469,391;PD345,1140;", + "_width": "253", + "_height": "751" + }, + "definition": "V", + "_RCID": "3210" + }, + { + "name": "AISVES01", + "description": "active AIS target showing vector and/or heading", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "29" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "382", + "_y": "10" + }, + "_width": "15", + "_height": "37" + }, + "color-ref": "AARPAT", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "495", + "_y": "1050" + }, + "origin": { + "_x": "245", + "_y": "51" + }, + "HPGL": "SPA;SW2;PU245,1299;PD744,1299;PD495,51;PD245,1299;SPA;SW1;ST0;PU495,1050;PM0;CI31;PM2;FP;", + "_width": "499", + "_height": "1248" + }, + "definition": "V", + "_RCID": "3209" + }, + { + "name": "ARPATG01", + "description": "ARPA target", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "407", + "_y": "10" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "eARPAT", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1250", + "_y": "1250" + }, + "HPGL": "SPe;PU1500,1500;SW2;CI250;PU1500,1500;ST0;PM0;CI62;PM2;FP;", + "_width": "500", + "_height": "500" + }, + "definition": "V", + "_RCID": "3221" + }, + { + "name": "ARPONE01", + "description": "one minute mark on ARPA vector", + "bitmap": { + "distance": { + "_min": "-2147483648", + "_max": "-2147483648" + }, + "pivot": { + "_x": "-2147483648", + "_y": "-2147483648" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "432", + "_y": "10" + }, + "_width": "13", + "_height": "2" + }, + "color-ref": "AARPAT", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5033", + "_y": "2167" + }, + "origin": { + "_x": "4828", + "_y": "2167" + }, + "HPGL": "SPA;SW2;PU4828,2167;PD5222,2167;", + "_width": "394", + "_height": "0" + }, + "definition": "V", + "_RCID": "3219" + }, + { + "name": "ARPSIX01", + "description": "six minute mark on ARPA vector", + "bitmap": { + "distance": { + "_min": "-2147483648", + "_max": "-2147483648" + }, + "pivot": { + "_x": "-2147483648", + "_y": "-2147483648" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "455", + "_y": "10" + }, + "_width": "13", + "_height": "2" + }, + "color-ref": "AARPAT", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5384", + "_y": "2145" + }, + "origin": { + "_x": "5189", + "_y": "2146" + }, + "HPGL": "SPA;SW5;PU5189,2146;PD5586,2146;", + "_width": "397", + "_height": "0" + }, + "definition": "V", + "_RCID": "3220" + }, + { + "name": "BCNCAR01", + "description": "cardinal beacon, north, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "478", + "_y": "10" + }, + "_width": "13", + "_height": "19" + }, + "color-ref": "mOUTLWHCHYLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "550", + "_y": "445" + }, + "HPGL": "SPH;ST0;PU750,780;PM0;PD552,1052,950,1057,750,780;PM2;FP;PU750,445;PM0;PD952,720,555,720,750,445;PM2;FP;SPm;SW1;PU750,445;PD550,720;PD950,720;PD750,445;PU550,1055;PD950,1055;PD750,780;PD550,1055;", + "_width": "402", + "_height": "612" + }, + "definition": "V", + "_RCID": "1232" + }, + { + "name": "BCNCAR02", + "description": "cardinal beacon, east, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "501", + "_y": "10" + }, + "_width": "13", + "_height": "20" + }, + "color-ref": "mOUTLWHCHYLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "550", + "_y": "420" + }, + "HPGL": "SPH;ST0;PU750,420;PM0;PD947,695,552,692,750,420;PM2;FP;PU585,805;PM0;PD947,805,750,1080,552,805;PM2;FP;SPm;SW1;PU750,420;PD550,695;PD950,695;PD750,420;PU550,805;PD950,805;PD750,1080;PD550,805;", + "_width": "400", + "_height": "660" + }, + "definition": "V", + "_RCID": "1233" + }, + { + "name": "BCNCAR03", + "description": "cardinal beacon, south, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "524", + "_y": "10" + }, + "_width": "13", + "_height": "19" + }, + "color-ref": "mOUTLWHCHYLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "550", + "_y": "445" + }, + "HPGL": "SPH;ST0;PU585,445;PM0;PD947,447,750,720,555,445;PM2;FP;PU585,780;PM0;PD947,780,750,1055,552,780;PM2;FP;SPm;SW1;PU750,720;PD550,445;PD950,445;PD750,720;PU550,780;PD950,780;PD750,1055;PD550,780;", + "_width": "400", + "_height": "610" + }, + "definition": "V", + "_RCID": "1234" + }, + { + "name": "BCNCAR04", + "description": "cardinal beacon, west, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "547", + "_y": "10" + }, + "_width": "13", + "_height": "19" + }, + "color-ref": "mOUTLWHCHYLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "550", + "_y": "445" + }, + "HPGL": "SPH;ST0;PU750,780;PM0;PD552,1055,947,1055,750,780;PM2;FP;PU585,445;PM0;PD947,445,750,720,550,445;PM2;FP;SPm;SW1;PU550,1055;PD950,1055;PD750,780;PD550,1055;PU750,720;PD550,445;PD950,445;PD750,720;", + "_width": "400", + "_height": "610" + }, + "definition": "V", + "_RCID": "1235" + }, + { + "name": "BCNDEF13", + "description": "default symbol for a beacon, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "570", + "_y": "10" + }, + "_width": "16", + "_height": "14" + }, + "color-ref": "ACHMGDCCHGRDDOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1238", + "_y": "1452" + }, + "origin": { + "_x": "1135", + "_y": "1234" + }, + "HPGL": "SPA;SW1;PU1442,1329;PD1455,1301;PD1468,1276;PD1486,1260;PD1503,1243;PD1529,1234;PD1552,1237;PD1582,1246;PD1610,1253;PD1632,1287;PD1650,1306;PD1662,1329;PD1661,1354;PD1649,1377;PD1635,1398;PD1615,1422;PD1591,1446;PD1570,1472;PD1557,1491;PD1546,1508;PD1543,1529;PD1542,1552;PD1542,1568;PD1543,1590;PD1543,1591;SPA;SW2;PU1518,1680;PD1570,1680;SPC;SW1;ST0;PU1135,1250;PM0;PD1135,1649;PD1335,1649;PD1335,1251;PD1135,1250;PM2;FP;SPD;SW1;PU1135,1250;PD1135,1649;PD1335,1649;PD1335,1251;PD1135,1250;SPD;SW1;ST0;PU1238,1452;PM0;CI15;PM2;FP;", + "_width": "527", + "_height": "446" + }, + "definition": "V", + "_RCID": "2039" + }, + { + "name": "BCNGEN01", + "description": "beacon in general, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "596", + "_y": "10" + }, + "_width": "10", + "_height": "16" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "600", + "_y": "300" + }, + "HPGL": "SPC;ST0;PU675,743;PM0;PD675,300,818,300,818,750,809,725,806,706,800,700,778,690,759,684,753,681,734,684,725,684,712,690;PD703,703,693,718,681,725,675,740,675,750;PM2;FP;PU750,750;SW2;CI65;PU600,750;PD684,750;PU815,750;PD900,750;", + "_width": "300", + "_height": "515" + }, + "definition": "V", + "_RCID": "1238" + }, + { + "name": "BCNGEN03", + "description": "default symbol for beacon, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "616", + "_y": "10" + }, + "_width": "18", + "_height": "16" + }, + "color-ref": "ACHMGDCCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1231", + "_y": "1634" + }, + "origin": { + "_x": "1081", + "_y": "1188" + }, + "HPGL": "SPA;SW1;PU1454,1302;PD1467,1274;PD1480,1249;PD1497,1232;PD1514,1215;PD1540,1206;PD1563,1208;PD1593,1217;PD1621,1223;PD1644,1257;PD1662,1276;PD1674,1298;PD1674,1323;PD1662,1347;PD1649,1368;PD1629,1392;PD1606,1417;PD1585,1443;PD1572,1462;PD1561,1479;PD1559,1501;PD1559,1524;PD1559,1541;PD1561,1563;PD1561,1565;SPA;SW2;PU1540,1652;PD1593,1652;SPC;SW2;PU1081,1577;PD1399,1576;SPC;SW2;PU1231,1634;CI54;SPC;SW4;PU1230,1575;PD1227,1188;", + "_width": "593", + "_height": "500" + }, + "definition": "V", + "_RCID": "2040" + }, + { + "name": "BCNISD21", + "description": "isolated danger beacon, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "644", + "_y": "10" + }, + "_width": "8", + "_height": "17" + }, + "color-ref": "AOUTLWCCHRED", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1493", + "_y": "623" + }, + "origin": { + "_x": "1381", + "_y": "354" + }, + "HPGL": "SPC;SW1;ST0;PU1493,464;PM0;CI110;PM2;FP;SPC;SW1;ST0;PU1491,788;PM0;CI110;PM2;FP;SPA;SW1;PU1493,464;CI110;SPA;SW1;PU1491,788;CI110;", + "_width": "222", + "_height": "544" + }, + "definition": "V", + "_RCID": "2041" + }, + { + "name": "BCNLAT15", + "description": "major lateral beacon, red, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "662", + "_y": "10" + }, + "_width": "7", + "_height": "13" + }, + "color-ref": "FCHREDmOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "600", + "_y": "850" + }, + "origin": { + "_x": "500", + "_y": "650" + }, + "HPGL": "SPF;ST0;PU500,1050;PM0;PD700,1050,700,650,500,650,500,1050;PM2;FP;SPm;SW1;PU500,1050;PD700,1050;PD700,650;PD500,650;PD500,1050;SPm;SW1;ST0;PU600,850;PM0;CI15;PM2;FP;", + "_width": "200", + "_height": "400" + }, + "definition": "V", + "_RCID": "1253" + }, + { + "name": "BCNLAT16", + "description": "major lateral beacon, green, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "679", + "_y": "10" + }, + "_width": "7", + "_height": "13" + }, + "color-ref": "GCHGRNmOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "650", + "_y": "550" + }, + "HPGL": "SPG;ST0;PU650,950;PM0;PD850,950,850,550,650,550,650,950;PM2;FP;SPm;SW1;PU650,950;PD850,950;PD850,550;PD650,550;PD650,950;SPm;SW1;ST0;PU750,750;PM0;CI15;PM2;FP;", + "_width": "200", + "_height": "400" + }, + "definition": "V", + "_RCID": "1254" + }, + { + "name": "BCNLAT21", + "description": "minor lateral beacon, red, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "696", + "_y": "10" + }, + "_width": "5", + "_height": "15" + }, + "color-ref": "aOUTLWbCHRED", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "413", + "_y": "756" + }, + "origin": { + "_x": "347", + "_y": "505" + }, + "HPGL": "SPb;SW1;ST0;PU347,1005;PM0;PD347,505;PD480,505;PD480,1005;PD347,1005;PM2;FP;SPa;SW1;PU347,1005;PD347,505;PD480,505;PD480,1005;PD347,1005;SPa;SW1;ST0;PU413,756;PM0;CI15;PM2;FP;", + "_width": "133", + "_height": "500" + }, + "definition": "V", + "_RCID": "2042" + }, + { + "name": "BCNLAT22", + "description": "minor lateral beacon, green, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "711", + "_y": "10" + }, + "_width": "5", + "_height": "15" + }, + "color-ref": "aOUTLWbCHGRN", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "413", + "_y": "756" + }, + "origin": { + "_x": "347", + "_y": "505" + }, + "HPGL": "SPb;SW1;ST0;PU347,1005;PM0;PD347,505;PD480,505;PD480,1005;PD347,1005;PM2;FP;SPa;SW1;PU347,1005;PD347,505;PD480,505;PD480,1005;PD347,1005;SPa;SW1;ST0;PU413,756;PM0;CI15;PM2;FP;", + "_width": "133", + "_height": "500" + }, + "definition": "V", + "_RCID": "2043" + }, + { + "name": "BCNLTC01", + "description": "lattice beacon, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "726", + "_y": "10" + }, + "_width": "15", + "_height": "16" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "500", + "_y": "300" + }, + "HPGL": "SPC;PU750,750;SW2;CI68;PU500,750;PD678,750;PU812,750;PD1000,750;SW2;PU550,750;PD650,300;PD850,300;PD950,750;SW2;PU562,675;PD903,543;PU596,543;PD931,671;PU640,343;PD884,465;PU850,350;PD609,468;", + "_width": "500", + "_height": "518" + }, + "definition": "V", + "_RCID": "1255" + }, + { + "name": "BCNSAW13", + "description": "major safe water beacon, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "751", + "_y": "10" + }, + "_width": "7", + "_height": "13" + }, + "color-ref": "CCHBLKmOUTLWBDEPVS", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "650", + "_y": "550" + }, + "HPGL": "SPC;ST0;PU650,950;PM0;PD850,950,850,550,650,550,650,950;PM2;FP;SPm;SW1;PU650,950;PD850,950;PD850,550;PD650,550;PD650,950;SPB;SW1;ST0;PU750,750;PM0;CI15;PM2;FP;", + "_width": "200", + "_height": "400" + }, + "definition": "V", + "_RCID": "1260" + }, + { + "name": "BCNSAW21", + "description": "minor safe water beacon, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "768", + "_y": "10" + }, + "_width": "5", + "_height": "15" + }, + "color-ref": "aOUTLWbCHBLKBDEPVS", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "413", + "_y": "756" + }, + "origin": { + "_x": "347", + "_y": "505" + }, + "HPGL": "SPb;SW1;ST0;PU347,1005;PM0;PD347,505;PD480,505;PD480,1005;PD347,1005;PM2;FP;SPa;SW1;PU347,1005;PD347,505;PD480,505;PD480,1005;PD347,1005;SPB;SW1;ST0;PU413,756;PM0;CI15;PM2;FP;", + "_width": "133", + "_height": "500" + }, + "definition": "V", + "_RCID": "2044" + }, + { + "name": "BCNSPP13", + "description": "major special purpose beacon, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "783", + "_y": "10" + }, + "_width": "7", + "_height": "13" + }, + "color-ref": "HCHYLWmOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "650", + "_y": "550" + }, + "HPGL": "SPH;ST0;PU650,950;PM0;PD850,950,850,550,650,550,650,950;PM2;FP;SPm;SW1;PU650,950;PD850,950;PD850,550;PD650,550;PD650,950;SPm;SW1;ST0;PU750,750;PM0;CI15;PM2;FP;", + "_width": "200", + "_height": "400" + }, + "definition": "V", + "_RCID": "1265" + }, + { + "name": "BCNSPP21", + "description": "minor special purpose beacon, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "800", + "_y": "10" + }, + "_width": "5", + "_height": "15" + }, + "color-ref": "aOUTLWbCHYLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "413", + "_y": "756" + }, + "origin": { + "_x": "347", + "_y": "505" + }, + "HPGL": "SPb;SW1;ST0;PU347,1005;PM0;PD347,505;PD480,505;PD480,1005;PD347,1005;PM2;FP;SPa;SW1;PU347,1005;PD347,505;PD480,505;PD480,1005;PD347,1005;SPa;SW1;ST0;PU413,756;PM0;CI15;PM2;FP;", + "_width": "133", + "_height": "500" + }, + "definition": "V", + "_RCID": "2045" + }, + { + "name": "BCNSTK02", + "description": "minor, stake or pole beacon, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "815", + "_y": "10" + }, + "_width": "8", + "_height": "14" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "625", + "_y": "299" + }, + "HPGL": "SPA;SW2;PU625,750;PD875,750;SPA;SW2;PU754,299;PD755,749;", + "_width": "250", + "_height": "451" + }, + "definition": "V", + "_RCID": "2046" + }, + { + "name": "BCNTOW01", + "description": "beacon tower, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "833", + "_y": "10" + }, + "_width": "15", + "_height": "16" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "500", + "_y": "300" + }, + "HPGL": "SPC;PU750,750;SW2;CI70;PU500,750;PD680,750;PU815,750;PD1000,750;SW2;PU550,750;PD650,300;PD850,300;PD950,750;", + "_width": "500", + "_height": "520" + }, + "definition": "V", + "_RCID": "1267" + }, + { + "name": "BLKADJ01", + "description": "symbol to be used for checking and adjusting the brightness and contrast controls", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "29", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "858", + "_y": "10" + }, + "_width": "58", + "_height": "58" + }, + "color-ref": "ABKAJ1BBKAJ2", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1070", + "_y": "2025" + }, + "origin": { + "_x": "37", + "_y": "982" + }, + "HPGL": "SPA;SW1;ST0;PU37,982;PM0;PD2037,982;PD2037,2982;PD37,2982;PD37,982;PM2;FP;SPB;SW1;ST0;PU448,1377;PM0;PD1648,1377;PD1648,2577;PD448,2577;PD448,1377;PM2;FP;", + "_width": "2000", + "_height": "2000" + }, + "definition": "V", + "_RCID": "3650" + }, + { + "name": "BOYBAR01", + "description": "barrel buoy, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "926", + "_y": "10" + }, + "_width": "19", + "_height": "14" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1145", + "_y": "1110" + }, + "HPGL": "SPC;PU1500,1500;SW2;CI50;PU1200,1500;PD1200,1345;PD1210,1280;PD1245,1210;PU1290,1165;PD1335,1140;PD1390,1120;PD1435,1110;PD1480,1110;PD1530,1120;PD1590,1155;PD1635,1185;PD1660,1215;PD1685,1265;PD1700,1310;PD1705,1345;PD1705,1500;PU1275,1175;PD1310,1230;PD1345,1280;PD1365,1335;PD1380,1410;PD1390,1455;PD1390,1500;PU1545,1500;PD1760,1500;PU1245,1210;PD1290,1165;PU1445,1500;PD1145,1500;", + "_width": "615", + "_height": "440" + }, + "definition": "V", + "_RCID": "1268" + }, + { + "name": "BOYCAN01", + "description": "can buoy, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "955", + "_y": "10" + }, + "_width": "19", + "_height": "12" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "462", + "_y": "415" + }, + "HPGL": "SPC;PU750,750;SW2;CI59;PU462,750;PD690,750;PU803,750;PD1031,750;SW2;PU509,750;PD603,415;PD1078,415;PD984,750;", + "_width": "616", + "_height": "394" + }, + "definition": "V", + "_RCID": "1269" + }, + { + "name": "BOYCAR01", + "description": "cardinal buoy, north, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "984", + "_y": "10" + }, + "_width": "13", + "_height": "19" + }, + "color-ref": "HCHYLWmOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "484", + "_y": "437" + }, + "HPGL": "SPH;ST0;PU778,790;PM0;PD778,1050,484,1053,778,790;PM2;FP;PU593,718;PM0;PD900,718,900,437,593,718;PM2;FP;SPm;SW1;PU593,718;PD900,718;PD900,440;PD593,718;PU778,787;PD778,1053;PD484,1053;PD778,787;", + "_width": "416", + "_height": "616" + }, + "definition": "V", + "_RCID": "1270" + }, + { + "name": "BOYCAR02", + "description": "cardinal buoy, east, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1007", + "_y": "10" + }, + "_width": "12", + "_height": "20" + }, + "color-ref": "mOUTLWHCHYLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "765", + "_y": "750" + }, + "origin": { + "_x": "585", + "_y": "420" + }, + "HPGL": "SPH;ST0;PU640,695;PM0;PD950,692,947,420,640,695;PM2;FP;PU585,805;PM0;PD890,805,585,1080,585,805;PM2;FP;SPm;SW1;PU585,805;PD892,805;PD585,1080;PD585,805;PU640,695;PD950,695;PD950,420;PD640,695;", + "_width": "365", + "_height": "660" + }, + "definition": "V", + "_RCID": "1271" + }, + { + "name": "BOYCAR03", + "description": "cardinal buoy, south, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1029", + "_y": "10" + }, + "_width": "13", + "_height": "19" + }, + "color-ref": "mOUTLWHCHYLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "715", + "_y": "750" + }, + "origin": { + "_x": "595", + "_y": "445" + }, + "HPGL": "SPH;ST0;PU735,445;PM0;PD1010,445,700,715,700,445;PM2;FP;PU625,780;PM0;PD900,780,595,1052,595,780;PM2;FP;SPm;SW1;PU595,780;PD900,780;PD595,1055;PD595,780;PU700,445;PD1010,445;PD700,715;PU700,445;PD700,715;", + "_width": "415", + "_height": "610" + }, + "definition": "V", + "_RCID": "1272" + }, + { + "name": "BOYCAR04", + "description": "cardinal buoy, west, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1052", + "_y": "10" + }, + "_width": "19", + "_height": "19" + }, + "color-ref": "mOUTLWHCHYLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "445", + "_y": "445" + }, + "HPGL": "SPH;ST0;PU750,720;PM0;PD750,445,1050,445,750,720;PM2;FP;PU750,780;PM0;PD750,1055,452,1055,750,780;PM2;FP;SPm;SW1;PU750,780;PD750,1055;PD445,1055;PD750,780;PU750,445;PD750,720;PD1052,445;PD750,445;", + "_width": "607", + "_height": "610" + }, + "definition": "V", + "_RCID": "1273" + }, + { + "name": "BOYCON01", + "description": "conical buoy, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1081", + "_y": "10" + }, + "_width": "18", + "_height": "15" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "462", + "_y": "312" + }, + "HPGL": "SPC;PU750,750;SW2;CI56;PU525,750;PD537,659;PD556,584;PD584,528;PD625,468;PD659,425;PD709,381;PD775,343;PD825,312;PD843,343;PD884,415;PD925,509;PD940,575;PU462,750;PD696,750;PU940,575;PD953,659;PD959,750;PU800,750;PD1037,750;", + "_width": "575", + "_height": "494" + }, + "definition": "V", + "_RCID": "1274" + }, + { + "name": "BOYDEF03", + "description": "default symbol for buoy, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1109", + "_y": "10" + }, + "_width": "22", + "_height": "14" + }, + "color-ref": "ACHMGDCCHGRDDOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1236", + "_y": "1429" + }, + "origin": { + "_x": "1033", + "_y": "1203" + }, + "HPGL": "SPA;SW1;PU1534,1299;PD1547,1271;PD1560,1246;PD1577,1229;PD1594,1212;PD1620,1203;PD1643,1205;PD1673,1214;PD1701,1220;PD1724,1254;PD1742,1273;PD1754,1295;PD1754,1320;PD1742,1344;PD1729,1365;PD1709,1389;PD1686,1414;PD1665,1440;PD1652,1459;PD1641,1476;PD1639,1498;PD1639,1521;PD1639,1538;PD1641,1560;PD1641,1562;SPA;SW2;PU1620,1646;PD1673,1646;SPC;SW1;ST0;PU1236,1429;PM0;CI203;PM2;FP;SPD;SW1;PU1236,1429;CI203;SPD;SW1;ST0;PU1236,1429;PM0;CI15;PM2;FP;", + "_width": "721", + "_height": "443" + }, + "definition": "V", + "_RCID": "3356" + }, + { + "name": "BOYGEN03", + "description": "default symbol for buoy, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1141", + "_y": "10" + }, + "_width": "23", + "_height": "15" + }, + "color-ref": "ACHMGDCCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1236", + "_y": "1684" + }, + "origin": { + "_x": "970", + "_y": "1263" + }, + "HPGL": "SPA;SW1;PU1515,1359;PD1528,1331;PD1541,1306;PD1558,1289;PD1575,1272;PD1601,1263;PD1624,1265;PD1654,1274;PD1682,1280;PD1705,1314;PD1723,1333;PD1735,1355;PD1735,1380;PD1723,1404;PD1710,1425;PD1690,1449;PD1667,1474;PD1646,1500;PD1633,1519;PD1622,1536;PD1620,1558;PD1620,1581;PD1620,1598;PD1622,1620;PD1622,1622;SPA;SW2;PU1601,1706;PD1654,1706;SPC;SW2;PU1231,1453;CI173;SPC;SW2;PU1233,1682;CI55;SPC;SW2;PU1288,1682;PD1495,1682;SPC;SW2;PU970,1682;PD1176,1682;", + "_width": "765", + "_height": "474" + }, + "definition": "V", + "_RCID": "2048" + }, + { + "name": "BOYINB01", + "description": "instructionallation buoy, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1174", + "_y": "10" + }, + "_width": "26", + "_height": "15" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "321", + "_y": "316" + }, + "HPGL": "SPC;PU750,750;SW2;CI65;PU750,387;CI71;PU321,750;PD681,750;PU809,750;PD1178,750;PU368,750;PD465,465;PD1034,465;PD1131,750;", + "_width": "857", + "_height": "499" + }, + "definition": "V", + "_RCID": "1279" + }, + { + "name": "BOYISD12", + "description": "isolated danger buoy, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1210", + "_y": "10" + }, + "_width": "12", + "_height": "17" + }, + "color-ref": "AOUTLWCCHRED", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1554", + "_y": "624" + }, + "origin": { + "_x": "1366", + "_y": "353" + }, + "HPGL": "SPC;SW1;ST0;PU1640,463;PM0;CI110;PM2;FP;SPC;SW1;ST0;PU1476,787;PM0;CI110;PM2;FP;SPA;SW1;PU1640,463;CI110;SPA;SW1;PU1476,787;CI110;", + "_width": "384", + "_height": "544" + }, + "definition": "V", + "_RCID": "2049" + }, + { + "name": "BOYLAT13", + "description": "conical lateral buoy, green, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1232", + "_y": "10" + }, + "_width": "14", + "_height": "14" + }, + "color-ref": "ACHGRNBOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1033", + "_y": "960" + }, + "origin": { + "_x": "724", + "_y": "663" + }, + "HPGL": "SPA;SW1;ST0;PU1157,1102;PM0;PD1157,663;PD724,1102;PD1157,1102;PM2;FP;SPB;SW1;PU1157,1102;PD1157,663;PD724,1102;PD1157,1102;SPB;SW1;ST0;PU1033,960;PM0;CI15;PM2;FP;", + "_width": "433", + "_height": "439" + }, + "definition": "V", + "_RCID": "2050" + }, + { + "name": "BOYLAT14", + "description": "conical lateral buoy, red, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1256", + "_y": "10" + }, + "_width": "14", + "_height": "14" + }, + "color-ref": "ACHREDbOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1033", + "_y": "960" + }, + "origin": { + "_x": "724", + "_y": "663" + }, + "HPGL": "SPA;SW1;ST0;PU1157,1102;PM0;PD1157,663;PD724,1102;PD1157,1102;PM2;FP;SPb;SW1;PU1157,1102;PD1157,663;PD724,1102;PD1157,1102;SPb;SW1;ST0;PU1033,960;PM0;CI15;PM2;FP;", + "_width": "433", + "_height": "439" + }, + "definition": "V", + "_RCID": "2051" + }, + { + "name": "BOYLAT23", + "description": "can shape lateral buoy, green, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1280", + "_y": "10" + }, + "_width": "16", + "_height": "13" + }, + "color-ref": "ACHGRNBOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "774", + "_y": "690" + }, + "origin": { + "_x": "499", + "_y": "499" + }, + "HPGL": "SPA;SW1;ST0;PU499,898;PM0;PD651,500;PD1027,500;PD901,898;PD499,898;PM2;FP;SPB;SW1;PU499,898;PD651,500;PD1027,499;PD901,898;PD499,898;SPB;SW1;ST0;PU774,690;PM0;CI15;PM2;FP;", + "_width": "528", + "_height": "399" + }, + "definition": "V", + "_RCID": "2052" + }, + { + "name": "BOYLAT24", + "description": "can shape lateral buoy, red, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1306", + "_y": "10" + }, + "_width": "16", + "_height": "13" + }, + "color-ref": "ACHREDbOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "774", + "_y": "690" + }, + "origin": { + "_x": "499", + "_y": "499" + }, + "HPGL": "SPA;SW1;ST0;PU499,899;PM0;PD651,500;PD1027,499;PD901,898;PD499,899;PM2;FP;SPb;SW1;PU499,899;PD651,500;PD1027,499;PD901,898;PD499,899;SPb;SW1;ST0;PU774,690;PM0;CI15;PM2;FP;", + "_width": "528", + "_height": "400" + }, + "definition": "V", + "_RCID": "2053" + }, + { + "name": "BOYMOR01", + "description": "mooring buoy, barrel shape, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "10", + "_y": "16" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1332", + "_y": "10" + }, + "_width": "19", + "_height": "18" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "405", + "_y": "230" + }, + "HPGL": "SPC;PU750,750;SW2;CI60;PU705,295;CI65;PU800,750;PD1015,750;PU685,750;PD405,750;SW2;PU960,750;PD960,620;PU450,750;PD450,620;PD455,570;PD475,510;PD505,460;PD530,435;PD567,402;PD610,382;PD652,370;PD705,362;PD752,367;PD805,385;PD857,412;PD895,447;PD930,497;PD950,547;PD960,595;PD960,620;PU530,435;PD567,490;PU612,580;PD632,662;PD637,712;PD640,750;PU567,490;PD612,580;", + "_width": "610", + "_height": "580" + }, + "definition": "V", + "_RCID": "1290" + }, + { + "name": "BOYMOR03", + "description": "mooring buoy, can shape, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1361", + "_y": "10" + }, + "_width": "19", + "_height": "17" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "465", + "_y": "259" + }, + "HPGL": "SPC;PU750,750;SW2;CI65;PU843,334;CI75;PU465,750;PD681,750;PU809,750;PD1034,750;SW2;PU512,750;PD606,418;PD1081,418;PD990,750;", + "_width": "616", + "_height": "556" + }, + "definition": "V", + "_RCID": "1291" + }, + { + "name": "BOYMOR11", + "description": "instructionallation buoy and mooring buoy, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "5" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1390", + "_y": "10" + }, + "_width": "23", + "_height": "11" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "748", + "_y": "570" + }, + "origin": { + "_x": "368", + "_y": "395" + }, + "HPGL": "SPA;SW2;ST0;PU755,466;PM0;CI71;PM2;FP;SPA;SW1;ST0;PU368,745;PM0;PD433,548;PD1060,548;PD1127,745;PD368,745;PM2;FP;", + "_width": "759", + "_height": "350" + }, + "definition": "V", + "_RCID": "2054" + }, + { + "name": "BOYPIL01", + "description": "pillar buoy, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1423", + "_y": "10" + }, + "_width": "18", + "_height": "15" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "443", + "_y": "318" + }, + "HPGL": "SPC;PU750,750;SW2;CI59;PU443,750;PD693,750;PU803,750;PD1040,750;SW2;PU509,750;PD728,515;PD793,318;PD890,318;PD890,556;PD984,750;", + "_width": "597", + "_height": "491" + }, + "definition": "V", + "_RCID": "1292" + }, + { + "name": "BOYSAW12", + "description": "safe water buoy, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1451", + "_y": "10" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "CCHREDmOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "547", + "_y": "547" + }, + "HPGL": "SPC;PU750,750;ST0;PM0;CI200;PM2;FP;SPm;PU750,750;SW1;CI203;SPm;SW1;ST0;PU750,750;PM0;CI15;PM2;FP;", + "_width": "406", + "_height": "406" + }, + "definition": "V", + "_RCID": "1294" + }, + { + "name": "BOYSPH01", + "description": "spherical buoy, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "78" + }, + "_width": "17", + "_height": "15" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "734", + "_y": "750" + }, + "origin": { + "_x": "456", + "_y": "312" + }, + "HPGL": "SPC;PU734,750;SW2;CI53;PU790,750;PD1021,750;PU515,750;PD487,681;PD478,625;PD471,565;PD484,500;PD503,453;PD537,409;PD575,371;PD621,340;PD665,325;PD718,312;PD775,312;PD831,325;PD893,353;PD934,384;PD962,425;PD996,478;PD1015,531;PD1018,590;PD1012,662;PD990,712;PD971,750;PU456,750;PD681,750;", + "_width": "565", + "_height": "491" + }, + "definition": "V", + "_RCID": "1295" + }, + { + "name": "BOYSPP11", + "description": "special purpose buoy, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "37", + "_y": "78" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "HCHYLWmOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "550", + "_y": "550" + }, + "HPGL": "SPH;PU750,750;ST0;PM0;CI200;PM2;FP;SPm;PU750,750;SW1;CI200;SPm;SW1;ST0;PU750,750;PM0;CI15;PM2;FP;", + "_width": "400", + "_height": "400" + }, + "definition": "V", + "_RCID": "1297" + }, + { + "name": "BOYSPP15", + "description": "special purpose TSS buoy marking the starboard side of the traffic lane, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "60", + "_y": "78" + }, + "_width": "14", + "_height": "14" + }, + "color-ref": "ACHYLWBOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1013", + "_y": "962" + }, + "origin": { + "_x": "724", + "_y": "663" + }, + "HPGL": "SPA;SW1;ST0;PU1157,1102;PM0;PD1157,663;PD724,1102;PD1157,1102;PM2;FP;SPB;SW1;PU1157,1102;PD1157,663;PD724,1102;PD1157,1102;SPB;SW1;ST0;PU1013,960;PM0;CI15;PM2;FP;", + "_width": "433", + "_height": "439" + }, + "definition": "V", + "_RCID": "3121" + }, + { + "name": "BOYSPP25", + "description": "special purpose TSS buoy marking the port side of the traffic lane, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "84", + "_y": "78" + }, + "_width": "16", + "_height": "13" + }, + "color-ref": "ACHYLWBOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "774", + "_y": "690" + }, + "origin": { + "_x": "499", + "_y": "499" + }, + "HPGL": "SPA;SW1;ST0;PU499,899;PM0;PD651,500;PD1027,499;PD901,898;PD499,899;PM2;FP;SPB;SW1;PU499,899;PD651,500;PD1027,499;PD901,898;PD499,899;SPB;SW1;ST0;PU774,690;PM0;CI15;PM2;FP;", + "_width": "528", + "_height": "400" + }, + "definition": "V", + "_RCID": "3122" + }, + { + "name": "BOYSPR01", + "description": "spar buoy, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "110", + "_y": "78" + }, + "_width": "10", + "_height": "15" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "603", + "_y": "318" + }, + "HPGL": "SPC;ST0;PU690,750;PM0;PD793,318,890,318,800,709,781,703,771,696,753,693,731,700,687,750,715,706,706,712,690,750;PM2;FP;PU750,750;SW2;CI59;PU603,750;PD690,750;PU803,750;PD890,750;", + "_width": "287", + "_height": "491" + }, + "definition": "V", + "_RCID": "1299" + }, + { + "name": "BOYSUP01", + "description": "super-buoy, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "130", + "_y": "78" + }, + "_width": "26", + "_height": "17" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "321", + "_y": "275" + }, + "HPGL": "SPC;PU750,750;SW2;CI65;PU321,750;PD681,750;PU809,750;PD1178,750;PU368,750;PD465,465;PD1034,465;PD1131,750;SW2;PU750,465;PD750,275;", + "_width": "857", + "_height": "540" + }, + "definition": "V", + "_RCID": "1300" + }, + { + "name": "BOYSUP02", + "description": "super-buoy ODAS + LANBY, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "166", + "_y": "78" + }, + "_width": "23", + "_height": "15" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "749", + "_y": "513" + }, + "origin": { + "_x": "365", + "_y": "275" + }, + "HPGL": "SPA;SW2;PU368,750;PD465,465;PD1034,465;PD1131,750;SPA;SW2;PU750,465;PD750,275;SPA;SW1;ST0;PU365,747;PM0;PD464,462;PD1036,465;PD1132,747;PD365,747;PM2;FP;", + "_width": "767", + "_height": "475" + }, + "definition": "V", + "_RCID": "2055" + }, + { + "name": "BOYSUP03", + "description": "LANBY, super-buoy, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "17" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "199", + "_y": "78" + }, + "_width": "26", + "_height": "19" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "318", + "_y": "178" + }, + "HPGL": "SPC;PU750,750;SW2;CI59;PU750,318;PD750,178;PU653,225;PD840,318;PU653,318;PD840,225;PU318,750;PD690,750;PU803,750;PD1175,750;PU365,750;PD462,462;PD1031,462;PD1128,750;SW2;PU750,462;PD750,265;", + "_width": "857", + "_height": "631" + }, + "definition": "V", + "_RCID": "1301" + }, + { + "name": "BRIDGE01", + "description": "symbol for opening bridge", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "235", + "_y": "78" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "551", + "_y": "816" + }, + "origin": { + "_x": "351", + "_y": "617" + }, + "HPGL": "SPA;SW1;PU551,817;CI200;SPA;SW1;PU552,813;CI115;", + "_width": "400", + "_height": "400" + }, + "definition": "V", + "_RCID": "3127" + }, + { + "name": "BRTHNO01", + "description": "berth number symbol", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "10", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "258", + "_y": "78" + }, + "_width": "21", + "_height": "21" + }, + "color-ref": "JCHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "400", + "_y": "400" + }, + "HPGL": "SPJ;PU750,750;SW1;CI350;", + "_width": "700", + "_height": "700" + }, + "definition": "V", + "_RCID": "1358" + }, + { + "name": "BUAARE02", + "description": "built-up area", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "289", + "_y": "78" + }, + "_width": "16", + "_height": "16" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1142", + "_y": "1436" + }, + "origin": { + "_x": "886", + "_y": "1182" + }, + "HPGL": "SPA;SW1;ST0;PU1145,1441;PM0;CI259;PM2;FP;", + "_width": "518", + "_height": "518" + }, + "definition": "V", + "_RCID": "2240" + }, + { + "name": "BUIREL01", + "description": "non-conspicuous religious building, Christian", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "315", + "_y": "78" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "550", + "_y": "550" + }, + "HPGL": "SPA;SW1;ST0;PU650,550;PM0;PD850,550;PD750,650;PD650,550;PM2;FP;SPA;SW1;ST0;PU950,650;PM0;PD950,850;PD850,750;PD950,650;PM2;FP;SPA;SW1;ST0;PU650,950;PM0;PD850,950;PD750,850;PD650,950;PM2;FP;SPA;SW1;ST0;PU550,650;PM0;PD550,850;PD650,750;PD550,650;PM2;FP;SPA;SW1;PU650,750;PD850,750;SPA;SW1;PU750,650;PD750,850;SPA;SW1;PU650,550;PD850,550;PD750,650;PD650,550;SPA;SW1;PU950,650;PD950,850;PD850,750;PD950,650;SPA;SW1;PU850,950;PD650,950;PD750,850;PD850,950;SPA;SW1;PU550,650;PD550,850;PD650,750;PD550,650;", + "_width": "400", + "_height": "400" + }, + "definition": "V", + "_RCID": "2057" + }, + { + "name": "BUIREL04", + "description": "non-conspicuous religious building, non-Christian", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "338", + "_y": "78" + }, + "_width": "18", + "_height": "9" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "462", + "_y": "603" + }, + "HPGL": "SPA;SW1;PU462,603;PD1034,887;SPA;SW1;PU462,887;PD1034,603;SPA;SW1;PU534,637;PD959,637;PD959,853;PD534,853;PD534,637;", + "_width": "572", + "_height": "284" + }, + "definition": "V", + "_RCID": "2056" + }, + { + "name": "BUIREL05", + "description": "mosque or minaret", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "366", + "_y": "78" + }, + "_width": "11", + "_height": "15" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "746", + "_y": "886" + }, + "origin": { + "_x": "561", + "_y": "518" + }, + "HPGL": "SPA;SW1;PU561,518;PD588,552;PD618,579;PD652,596;PD686,610;PD723,615;PD752,613;PD783,610;PD818,598;PD844,582;PD867,567;PD887,546;PD901,529;PD910,518;SPA;SW1;PU743,885;CI99;SPA;SW1;PU743,781;PD743,613;SPA;SW1;ST0;PU745,884;PM0;CI20;PM2;FP;", + "_width": "349", + "_height": "466" + }, + "definition": "V", + "_RCID": "3118" + }, + { + "name": "BUIREL13", + "description": "conspicuous religious building, Christian", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "387", + "_y": "78" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "550", + "_y": "550" + }, + "HPGL": "SPA;SW1;ST0;PU650,550;PM0;PD850,550;PD750,650;PD650,550;PM2;FP;SPA;SW1;ST0;PU950,650;PM0;PD950,850;PD850,750;PD950,650;PM2;FP;SPA;SW1;ST0;PU650,950;PM0;PD850,950;PD750,850;PD650,950;PM2;FP;SPA;SW1;ST0;PU550,650;PM0;PD550,850;PD650,750;PD550,650;PM2;FP;SPA;SW1;PU650,750;PD850,750;SPA;SW1;PU750,650;PD750,850;SPA;SW1;PU650,550;PD850,550;PD750,650;PD650,550;SPA;SW1;PU950,650;PD950,850;PD850,750;PD950,650;SPA;SW1;PU850,950;PD650,950;PD750,850;PD850,950;SPA;SW1;PU550,650;PD550,850;PD650,750;PD550,650;", + "_width": "400", + "_height": "400" + }, + "definition": "V", + "_RCID": "2057" + }, + { + "name": "BUIREL14", + "description": "conspicuous religious building, non-Christian", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "410", + "_y": "78" + }, + "_width": "18", + "_height": "9" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "462", + "_y": "603" + }, + "HPGL": "SPA;SW1;PU462,603;PD1034,887;SPA;SW1;PU462,887;PD1034,603;SPA;SW1;PU534,637;PD959,637;PD959,853;PD534,853;PD534,637;", + "_width": "572", + "_height": "284" + }, + "definition": "V", + "_RCID": "2058" + }, + { + "name": "BUIREL15", + "description": "conspicuous mosque or minaret", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "438", + "_y": "78" + }, + "_width": "11", + "_height": "14" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "744", + "_y": "883" + }, + "origin": { + "_x": "561", + "_y": "518" + }, + "HPGL": "SPA;SW1;PU561,518;PD588,552;PD618,579;PD652,596;PD686,610;PD723,615;PD752,613;PD783,610;PD818,598;PD844,582;PD867,567;PD887,546;PD901,529;PD910,518;SPA;SW1;PU743,885;CI99;SPA;SW1;PU743,781;PD743,613;SPA;SW1;ST0;PU745,884;PM0;CI20;PM2;FP;", + "_width": "349", + "_height": "466" + }, + "definition": "V", + "_RCID": "3119" + }, + { + "name": "BUISGL01", + "description": "single building", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "459", + "_y": "78" + }, + "_width": "9", + "_height": "9" + }, + "color-ref": "WLANDFKCHBRN", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "618", + "_y": "618" + }, + "HPGL": "SPK;ST0;PU618,618;PM0;PD868,618,868,868,618,868,618,618;PM2;FP;SPW;SW2;PU618,618;PD868,618;PD868,868;PD618,868;PD618,618;", + "_width": "250", + "_height": "250" + }, + "definition": "V", + "_RCID": "1307" + }, + { + "name": "BUISGL11", + "description": "conspicuous single building", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "478", + "_y": "78" + }, + "_width": "9", + "_height": "9" + }, + "color-ref": "WLANDFCCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "618", + "_y": "618" + }, + "HPGL": "SPW;ST0;PU618,618;PM0;PD868,618,868,868,618,868,618,618;PM2;FP;SPC;SW2;PU618,618;PD868,618;PD868,868;PD618,868;PD618,618;", + "_width": "250", + "_height": "250" + }, + "definition": "V", + "_RCID": "1308" + }, + { + "name": "CAIRNS01", + "description": "cairn", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "497", + "_y": "78" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "WLANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "510", + "_y": "310" + }, + "HPGL": "SPW;ST0;PU768,312;PM0;PD809,325,834,337,859,368,868,393,875,412,875,443,862,468,853,487,837,509,828,518,837,493,850,468;PD853,450,853,418,843,387,834,368,818,350,793,328,768,312;PM2;FP;PU675,512;PM0;PD700,534,725,553,734,568,743,593;PD750,618,750,637,737,668,728,693,712,712,684,734,700,709,712,684,725,634,725,609,712,578,703,559,684,528,675,512;PM2;FP;PU878,525;PM0;PD903,528,928,537,953,562,962,578,975,603,978,628,975,653,968,675,959,693,943,709,925,734,943,700,953,668;PD959,634,950,593,934,568,912,543,893,534,878,525;PM2;FP;PU750,750;SW2;CI37;PU628,628;CI118;PU756,425;CI115;PU868,634;CI109;PU528,750;PD709,750;PU787,750;PD962,750;", + "_width": "468", + "_height": "477" + }, + "definition": "V", + "_RCID": "1309" + }, + { + "name": "CAIRNS11", + "description": "conspicuous cairn", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "522", + "_y": "78" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "510", + "_y": "310" + }, + "HPGL": "SPC;ST0;PU768,312;PM0;PD809,325,834,337,859,368,868,393,875,412,875,443,862,468,853,487,837,509,828,518,837,493,850,468;PD853,450,853,418,843,387,834,368,818,350,793,328,768,312;PM2;FP;PU675,512;PM0;PD700,534,725,553,734,568,743,593;PD750,618,750,637,737,668,728,693,712,712,684,734,700,709,712,684,725,634,725,609,712,578,703,559,684,528,675,512;PM2;FP;PU878,525;PM0;PD903,528,928,537,953,562,962,578,975,603,978,628,975,653,968,675,959,693,943,709,925,734,943,700,953,668;PD959,634,950,593,934,568,912,543,893,534,878,525;PM2;FP;PU750,750;SW2;CI37;PU628,628;CI118;PU756,425;CI115;PU868,634;CI109;PU528,750;PD709,750;PU787,750;PD962,750;", + "_width": "468", + "_height": "477" + }, + "definition": "V", + "_RCID": "1310" + }, + { + "name": "CBLARE51", + "description": "cable area", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "16" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "547", + "_y": "78" + }, + "_width": "12", + "_height": "33" + }, + "color-ref": "ACHMGF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3101", + "_y": "1855" + }, + "origin": { + "_x": "2930", + "_y": "1289" + }, + "HPGL": "SPA;SW2;PU3246,1289;PD2930,1791;PD3304,1923;PD3005,2401;", + "_width": "374", + "_height": "1112" + }, + "definition": "V", + "_RCID": "3384" + }, + { + "name": "CGUSTA02", + "description": "coastguard station", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "0", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "569", + "_y": "78" + }, + "_width": "21", + "_height": "15" + }, + "color-ref": "ALANDFBCHWHTCCHMGF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "198", + "_y": "748" + }, + "origin": { + "_x": "169", + "_y": "312" + }, + "HPGL": "SPA;SW1;ST0;PU200,750;PM0;CI31;PM2;FP;SPB;SW2;ST0;PU271,312;PM0;PD871,312;PD871,687;PD271,687;PD271,312;PM2;FP;SPC;SW2;PU271,312;PD871,312;PD871,687;PD271,687;PD271,312;SPC;SW2;PU496,437;PD446,412;PD399,412;PD346,440;SPC;SW2;PU346,562;PD396,612;PD446,612;PD496,571;SPC;SW2;PU746,437;PD696,412;PD649,412;PD596,440;PD596,562;PD652,612;PD696,612;PD746,587;PD746,515;PD696,515;SPC;SW2;PU346,440;PD346,562;", + "_width": "702", + "_height": "469" + }, + "definition": "V", + "_RCID": "2059" + }, + { + "name": "CHCRDEL1", + "description": "this object has been manually deleted or modified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "600", + "_y": "78" + }, + "_width": "24", + "_height": "24" + }, + "color-ref": "ACHCOR", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "780", + "_y": "544" + }, + "origin": { + "_x": "371", + "_y": "143" + }, + "HPGL": "SPA;SW1;PU371,948;PD1176,143;", + "_width": "805", + "_height": "805" + }, + "definition": "V", + "_RCID": "3357" + }, + { + "name": "CHCRID01", + "description": "this object has been manually updated", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "634", + "_y": "78" + }, + "_width": "4", + "_height": "18" + }, + "color-ref": "ACHCOR", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5519", + "_y": "1854" + }, + "origin": { + "_x": "5470", + "_y": "1851" + }, + "HPGL": "SPA;SW1;PU5519,2404;CI49;SPA;SW1;PU5519,1851;PD5519,2353;", + "_width": "98", + "_height": "602" + }, + "definition": "V", + "_RCID": "3357" + }, + { + "name": "CHIMNY01", + "description": "chimney", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "18" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "648", + "_y": "78" + }, + "_width": "15", + "_height": "20" + }, + "color-ref": "WLANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "743", + "_y": "750" + }, + "origin": { + "_x": "568", + "_y": "134" + }, + "HPGL": "SPW;PU743,750;SW2;CI56;PU806,750;PD918,750;PU656,750;PD703,290;PD775,290;PD831,750;PU568,750;PD681,750;PU703,290;PD687,237;PD690,193;PD715,168;PD753,153;PD812,153;PD840,165;PD871,146;PD925,134;PD975,137;PD1021,140;PD1043,162;PD1046,206;PD993,237;PD931,240;PD928,268;PD868,293;PD775,293;", + "_width": "478", + "_height": "672" + }, + "definition": "V", + "_RCID": "1313" + }, + { + "name": "CHIMNY11", + "description": "conspicuous chimney", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "18" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "673", + "_y": "78" + }, + "_width": "15", + "_height": "20" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "743", + "_y": "750" + }, + "origin": { + "_x": "568", + "_y": "134" + }, + "HPGL": "SPC;PU743,750;SW2;CI56;PU806,750;PD918,750;PU656,750;PD703,290;PD775,290;PD831,750;PU568,750;PD681,750;PU703,290;PD687,237;PD690,193;PD715,168;PD753,153;PD812,153;PD840,165;PD871,146;PD925,134;PD975,137;PD1021,140;PD1043,162;PD1046,206;PD993,237;PD931,240;PD928,268;PD868,293;PD775,293;", + "_width": "478", + "_height": "672" + }, + "definition": "V", + "_RCID": "1314" + }, + { + "name": "CHINFO06", + "description": "HO caution note", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "698", + "_y": "78" + }, + "_width": "16", + "_height": "16" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1142", + "_y": "1436" + }, + "origin": { + "_x": "886", + "_y": "1182" + }, + "HPGL": "SPA;SW1;PU1145,1441;CI259;SPA;SW1;PU1141,1267;PD1141,1492;SPA;SW1;PU1109,1585;PD1164,1585;", + "_width": "518", + "_height": "518" + }, + "definition": "V", + "_RCID": "2076" + }, + { + "name": "CHINFO07", + "description": "HO information note", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "724", + "_y": "78" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2635", + "_y": "1859" + }, + "origin": { + "_x": "2400", + "_y": "1605" + }, + "HPGL": "SPA;SW1;PU2400,2100;PD2895,2100;PD2895,1605;PD2400,1605;PD2400,2100;SPA;SW1;PU2631,1672;PD2631,1714;SPA;SW1;PU2635,2009;PD2635,1775;PD2543,1774;SPA;SW1;PU2544,2010;PD2711,2010;", + "_width": "495", + "_height": "495" + }, + "definition": "V", + "_RCID": "2077" + }, + { + "name": "CHINFO08", + "description": "mariner's information note", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "749", + "_y": "78" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ANINFO", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2635", + "_y": "1859" + }, + "origin": { + "_x": "2400", + "_y": "1605" + }, + "HPGL": "SPA;SW1;PU2400,2100;PD2895,2100;PD2895,1605;PD2400,1605;PD2400,2100;SPA;SW1;PU2631,1672;PD2631,1714;SPA;SW1;PU2635,2009;PD2635,1775;PD2543,1774;SPA;SW1;PU2544,2010;PD2711,2010;", + "_width": "495", + "_height": "495" + }, + "definition": "V", + "_RCID": "2063" + }, + { + "name": "CHINFO09", + "description": "mariners caution note", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "774", + "_y": "78" + }, + "_width": "16", + "_height": "16" + }, + "color-ref": "ANINFO", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1142", + "_y": "1436" + }, + "origin": { + "_x": "886", + "_y": "1182" + }, + "HPGL": "SPA;SW1;PU1145,1441;CI259;SPA;SW1;PU1141,1267;PD1141,1492;SPA;SW1;PU1109,1585;PD1164,1585;", + "_width": "518", + "_height": "518" + }, + "definition": "V", + "_RCID": "2064" + }, + { + "name": "CHINFO10", + "description": "manufacturer's information note", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "800", + "_y": "78" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "AADINF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2635", + "_y": "1859" + }, + "origin": { + "_x": "2400", + "_y": "1605" + }, + "HPGL": "SPA;SW1;PU2400,2100;PD2895,2100;PD2895,1605;PD2400,1605;PD2400,2100;SPA;SW1;PU2631,1672;PD2631,1714;SPA;SW1;PU2635,2009;PD2635,1775;PD2543,1774;SPA;SW1;PU2544,2010;PD2711,2010;", + "_width": "495", + "_height": "495" + }, + "definition": "V", + "_RCID": "2062" + }, + { + "name": "CHINFO11", + "description": "manufacturer's caution note", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "825", + "_y": "78" + }, + "_width": "16", + "_height": "16" + }, + "color-ref": "AADINF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1142", + "_y": "1436" + }, + "origin": { + "_x": "886", + "_y": "1182" + }, + "HPGL": "SPA;SW1;PU1145,1441;CI259;SPA;SW1;PU1141,1267;PD1141,1492;SPA;SW1;PU1109,1585;PD1164,1585;", + "_width": "518", + "_height": "518" + }, + "definition": "V", + "_RCID": "2061" + }, + { + "name": "CHKSYM01", + "description": "test symbol for checking symbol sizes, should measure 5mm by 5mm", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "851", + "_y": "78" + }, + "_width": "16", + "_height": "15" + }, + "color-ref": "ACHBLKBOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "680", + "_y": "682" + }, + "origin": { + "_x": "419", + "_y": "433" + }, + "HPGL": "SPA;SW1;ST0;PU419,433;PM0;PD419,933;PD920,933;PD920,433;PD419,433;PM2;FP;SPB;SW1;PU419,433;PD419,933;PD920,933;PD920,433;PD419,433;", + "_width": "501", + "_height": "500" + }, + "definition": "V", + "_RCID": "3204" + }, + { + "name": "CLRLIN01", + "description": "arrow head for mariner's clearing line", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "18" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "877", + "_y": "78" + }, + "_width": "11", + "_height": "19" + }, + "color-ref": "fNINFO", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1499", + "_y": "1500" + }, + "origin": { + "_x": "1337", + "_y": "893" + }, + "HPGL": "SPf;ST0;PU1337,1500;PM0;PD1500,893,1662,1500,1337,1500;PM2;FP;", + "_width": "325", + "_height": "607" + }, + "definition": "V", + "_RCID": "1319" + }, + { + "name": "CRANES01", + "description": "cranes", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "898", + "_y": "78" + }, + "_width": "18", + "_height": "16" + }, + "color-ref": "WLANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "500", + "_y": "300" + }, + "HPGL": "SPW;PU750,750;SW2;CI50;PU550,750;PD700,750;PU800,750;PD950,750;PU700,750;PD700,350;PU800,750;PD800,350;PU500,300;PD1100,300;PU500,300;PD500,450;PD600,450;PD600,350;", + "_width": "600", + "_height": "500" + }, + "definition": "V", + "_RCID": "1322" + }, + { + "name": "CTNARE51", + "description": "caution area, a specific caution note applies", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "52", + "_y": "-17" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "926", + "_y": "78" + }, + "_width": "29", + "_height": "29" + }, + "color-ref": "ATRFCF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2061", + "_y": "1246" + }, + "origin": { + "_x": "276", + "_y": "1846" + }, + "HPGL": "SPA;SW2;PU775,2471;PD775,2006;SPA;SW2;PU708,2651;PD851,2651;SPA;SW2;PU773,2343;CI497;", + "_width": "994", + "_height": "994" + }, + "definition": "V", + "_RCID": "3385" + }, + { + "name": "CTYARE51", + "description": "cautionary area (e.g. ferry area) navigate with caution", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "52", + "_y": "-17" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "965", + "_y": "78" + }, + "_width": "29", + "_height": "29" + }, + "color-ref": "ATRFCF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2061", + "_y": "1246" + }, + "origin": { + "_x": "276", + "_y": "1846" + }, + "HPGL": "SPA;SW2;PU775,2471;PD775,2006;SPA;SW2;PU708,2651;PD851,2651;SPA;SW2;PU773,2343;CI497;", + "_width": "994", + "_height": "994" + }, + "definition": "V", + "_RCID": "3362" + }, + { + "name": "CTYARE71", + "description": "cautionary area with further information", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "59", + "_y": "-17" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1004", + "_y": "78" + }, + "_width": "36", + "_height": "29" + }, + "color-ref": "ATRFCFDCHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2061", + "_y": "1246" + }, + "origin": { + "_x": "35", + "_y": "1846" + }, + "HPGL": "SPA;SW2;PU775,2471;PD775,2006;SPA;SW2;PU708,2651;PD851,2651;SPA;SW2;PU773,2343;CI497;SPD;SW1;PU127,2827;PD127,2593;PD35,2592;SPD;SW1;PU36,2828;PD223,2828;SPD;SW1;PU81,2474;PD84,2514;", + "_width": "1235", + "_height": "994" + }, + "definition": "V", + "_RCID": "3387" + }, + { + "name": "CURDEF01", + "description": "current or tidal stream whose direction is not known", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "14", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1050", + "_y": "78" + }, + "_width": "30", + "_height": "27" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "785", + "_y": "810" + }, + "origin": { + "_x": "785", + "_y": "810" + }, + "HPGL": "SPA;SW1;PU685,1257;PD785,1058;PD884,1257;SPA;SW1;PU685,1073;PD785,874;PD884,1073;SPA;SW1;PU785,362;PD785,1270;SPA;SW1;PU684,611;PD786,364;PD886,611;SPA;SW1;PU297,710;PD310,682;PD323,657;PD340,640;PD357,623;PD383,614;PD406,616;PD436,625;PD464,631;PD487,665;PD505,684;PD517,706;PD517,731;PD505,755;PD492,776;PD472,800;PD449,825;PD428,851;PD415,870;PD404,887;PD402,909;PD402,932;PD402,949;PD404,971;PD404,973;SPA;SW2;PU383,1057;PD436,1057;SPA;SW1;PU1086,704;PD1099,676;PD1112,651;PD1129,634;PD1146,617;PD1172,608;PD1195,610;PD1225,619;PD1253,625;PD1276,659;PD1294,678;PD1306,700;PD1306,725;PD1294,749;PD1281,770;PD1261,794;PD1238,819;PD1217,845;PD1204,864;PD1193,881;PD1191,903;PD1191,926;PD1191,943;PD1193,965;PD1193,967;SPA;SW2;PU1172,1051;PD1225,1051;", + "_width": "1009", + "_height": "908" + }, + "prefer-bitmap": "no", + "definition": "V", + "_RCID": "3431" + }, + { + "name": "CURENT01", + "description": "non-tidal current", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1090", + "_y": "78" + }, + "_width": "7", + "_height": "27" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "785", + "_y": "810" + }, + "origin": { + "_x": "785", + "_y": "810" + }, + "HPGL": "SPA;SW1;PU685,1257;PD785,1058;PD884,1257;SPA;SW1;PU685,1073;PD785,874;PD884,1073;SPA;SW1;PU785,362;PD785,1270;SPA;SW1;PU684,611;PD786,364;PD886,611;", + "_width": "202", + "_height": "908" + }, + "prefer-bitmap": "no", + "definition": "V", + "_RCID": "3128" + }, + { + "name": "CURSRA01", + "description": "ordinary cursor", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1107", + "_y": "78" + }, + "_width": "30", + "_height": "30" + }, + "color-ref": "BCURSR", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2384", + "_y": "2247" + }, + "origin": { + "_x": "1875", + "_y": "1755" + }, + "HPGL": "SPB;SW3;PU2379,1755;PD2379,2755;PU1875,2250;PD2875,2250;", + "_width": "1000", + "_height": "1000" + }, + "definition": "V", + "_RCID": "1328" + }, + { + "name": "CURSRB01", + "description": "cursor with open centre", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "14", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1147", + "_y": "78" + }, + "_width": "30", + "_height": "30" + }, + "color-ref": "ACURSR", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2172", + "_y": "2254" + }, + "origin": { + "_x": "1673", + "_y": "1752" + }, + "HPGL": "SPA;SW3;PU1673,2252;PD2073,2252;SPA;SW3;PU2274,2252;PD2674,2252;SPA;SW3;PU2170,1752;PD2170,2152;SPA;SW3;PU2171,2353;PD2171,2753;", + "_width": "1001", + "_height": "1001" + }, + "definition": "V", + "_RCID": "3365" + }, + { + "name": "DANGER01", + "description": "underwater hazard with a defined depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1187", + "_y": "78" + }, + "_width": "24", + "_height": "19" + }, + "color-ref": "ADEPVSBCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "620", + "_y": "814" + }, + "origin": { + "_x": "225", + "_y": "496" + }, + "HPGL": "SPA;SW1;ST0;PU234,731;PM0;PD300,637;PD387,556;PD459,525;PD553,496;PD706,496;PD806,525;PD909,584;PD975,662;PD1025,762;PD1025,881;PD959,975;PD881,1050;PD784,1100;PD681,1128;PD540,1125;PD440,1087;PD350,1028;PD275,950;PD225,850;PD234,731;PM2;FP;SPB;SW1;PU387,556;PD;SPB;SW1;PU300,637;PD;SPB;SW1;PU234,731;PD;SPB;SW1;PU225,850;PD;SPB;SW1;PU275,950;PD;SPB;SW1;PU350,1028;PD;SPB;SW1;PU440,1087;PD;SPB;SW1;PU540,1125;PD;SPB;SW1;PU681,1128;PD;SPB;SW1;PU784,1100;PD;SPB;SW1;PU881,1050;PD;SPB;SW1;PU959,975;PD;SPB;SW1;PU1025,881;PD;SPB;SW1;PU1025,762;PD;SPB;SW1;PU975,662;PD;SPB;SW1;PU906,584;PD;SPB;SW1;PU809,528;PD;SPB;SW1;PU706,500;PD;SPB;SW1;PU553,500;PD;SPB;SW1;PU459,525;PD;", + "_width": "800", + "_height": "632" + }, + "definition": "V", + "_RCID": "1329" + }, + { + "name": "DANGER02", + "description": "underwater hazard with depth greater than 20 metres", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1221", + "_y": "78" + }, + "_width": "24", + "_height": "19" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "630", + "_y": "828" + }, + "origin": { + "_x": "225", + "_y": "500" + }, + "HPGL": "SPA;SW1;PU387,556;PD;SPA;SW1;PU300,637;PD;SPA;SW1;PU234,731;PD;SPA;SW1;PU225,850;PD;SPA;SW1;PU275,950;PD;SPA;SW1;PU350,1028;PD;SPA;SW1;PU440,1087;PD;SPA;SW1;PU540,1125;PD;SPA;SW1;PU681,1128;PD;SPA;SW1;PU784,1100;PD;SPA;SW1;PU881,1050;PD;SPA;SW1;PU959,975;PD;SPA;SW1;PU1025,881;PD;SPA;SW1;PU1025,762;PD;SPA;SW1;PU975,662;PD;SPA;SW1;PU906,584;PD;SPA;SW1;PU809,528;PD;SPA;SW1;PU706,500;PD;SPA;SW1;PU553,500;PD;SPA;SW1;PU459,525;PD;", + "_width": "800", + "_height": "628" + }, + "definition": "V", + "_RCID": "3183" + }, + { + "name": "DANGER03", + "description": "underwater hazard which covers and uncovers", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1255", + "_y": "78" + }, + "_width": "24", + "_height": "19" + }, + "color-ref": "ADEPITBCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "620", + "_y": "814" + }, + "origin": { + "_x": "225", + "_y": "496" + }, + "HPGL": "SPA;SW1;ST0;PU234,731;PM0;PD300,637;PD387,556;PD459,525;PD553,496;PD706,496;PD806,525;PD909,584;PD975,662;PD1025,762;PD1025,881;PD959,975;PD881,1050;PD784,1100;PD681,1128;PD540,1125;PD440,1087;PD350,1028;PD275,950;PD225,850;PD234,731;PM2;FP;SPB;SW1;PU387,556;PD;SPB;SW1;PU300,637;PD;SPB;SW1;PU234,731;PD;SPB;SW1;PU225,850;PD;SPB;SW1;PU275,950;PD;SPB;SW1;PU350,1028;PD;SPB;SW1;PU440,1087;PD;SPB;SW1;PU540,1125;PD;SPB;SW1;PU681,1128;PD;SPB;SW1;PU784,1100;PD;SPB;SW1;PU881,1050;PD;SPB;SW1;PU959,975;PD;SPB;SW1;PU1025,881;PD;SPB;SW1;PU1025,762;PD;SPB;SW1;PU975,662;PD;SPB;SW1;PU906,584;PD;SPB;SW1;PU809,528;PD;SPB;SW1;PU706,500;PD;SPB;SW1;PU553,500;PD;SPB;SW1;PU459,525;PD;", + "_width": "800", + "_height": "632" + }, + "definition": "V", + "_RCID": "3610" + }, + { + "name": "DAYSQR01", + "description": "square or rectangular daymark, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1289", + "_y": "78" + }, + "_width": "13", + "_height": "18" + }, + "color-ref": "ALITGN", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "753", + "_y": "603" + }, + "origin": { + "_x": "549", + "_y": "204" + }, + "HPGL": "SPA;SW1;PU549,204;PD549,605;PD950,605;PD950,204;PD549,204;SPA;SW1;PU751,634;PD751,787;SPA;SW1;ST0;PU751,602;PM0;CI50;PM2;FP;SPA;SW1;PU751,602;CI50;", + "_width": "401", + "_height": "583" + }, + "definition": "V", + "_RCID": "3224" + }, + { + "name": "DAYSQR21", + "description": "square or rectangular daymark, paper chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "19" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1312", + "_y": "78" + }, + "_width": "13", + "_height": "21" + }, + "color-ref": "ALITGN", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "747", + "_y": "824" + }, + "origin": { + "_x": "549", + "_y": "204" + }, + "HPGL": "SPA;SW1;PU549,204;PD549,605;PD950,605;PD950,204;PD549,204;SPA;SW1;PU750,605;PD750,758;SPA;SW1;PU751,822;CI65;SPA;SW1;PU603,822;PD687,822;SPA;SW1;PU816,822;PD901,822;", + "_width": "401", + "_height": "683" + }, + "definition": "V", + "_RCID": "3225" + }, + { + "name": "DAYTRI01", + "description": "triangular daymark, point up, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1335", + "_y": "78" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ALITRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "766", + "_y": "504" + }, + "origin": { + "_x": "517", + "_y": "103" + }, + "HPGL": "SPA;SW1;PU517,505;PD1017,505;PD768,103;PD517,505;SPA;SW1;PU766,506;PD766,704;SPA;SW1;ST0;PU766,505;PM0;CI50;PM2;FP;SPA;SW1;PU766,505;CI50;", + "_width": "500", + "_height": "601" + }, + "definition": "V", + "_RCID": "3226" + }, + { + "name": "DAYTRI05", + "description": "triangular daymark, point down, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1360", + "_y": "78" + }, + "_width": "16", + "_height": "19" + }, + "color-ref": "ALITRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "619" + }, + "origin": { + "_x": "500", + "_y": "224" + }, + "HPGL": "SPA;SW1;PU500,225;PD1003,224;PD751,626;PD500,228;SPA;SW1;ST0;PU750,617;PM0;CI50;PM2;FP;SPA;SW1;PU750,617;CI50;SPA;SW1;PU751,642;PD751,831;", + "_width": "503", + "_height": "607" + }, + "definition": "V", + "_RCID": "3227" + }, + { + "name": "DAYTRI21", + "description": "triangular daymark, point up, paper chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1386", + "_y": "78" + }, + "_width": "16", + "_height": "22" + }, + "color-ref": "ALITRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "746", + "_y": "751" + }, + "origin": { + "_x": "498", + "_y": "88" + }, + "HPGL": "SPA;SW1;PU498,490;PD998,490;PD749,88;PD498,490;SPA;SW1;PU747,491;PD747,689;SPA;SW1;PU747,750;CI65;SPA;SW1;PU599,748;PD683,748;SPA;SW1;PU812,748;PD897,748;", + "_width": "500", + "_height": "727" + }, + "definition": "V", + "_RCID": "3228" + }, + { + "name": "DAYTRI25", + "description": "triangular daymark, point down, paper chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "18" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1412", + "_y": "78" + }, + "_width": "16", + "_height": "20" + }, + "color-ref": "ALITRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "751", + "_y": "810" + }, + "origin": { + "_x": "500", + "_y": "224" + }, + "HPGL": "SPA;SW1;PU500,225;PD1003,224;PD751,626;PD500,228;SPA;SW1;PU751,625;PD751,747;SPA;SW1;PU750,808;CI65;SPA;SW1;PU602,808;PD686,808;SPA;SW1;PU815,808;PD900,808;", + "_width": "503", + "_height": "649" + }, + "definition": "V", + "_RCID": "3229" + }, + { + "name": "DIRBOY01", + "description": "direction of buoyage", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-74", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "121" + }, + "_width": "38", + "_height": "25" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "778", + "_y": "3043" + }, + "origin": { + "_x": "778", + "_y": "778" + }, + "HPGL": "SPA;SW1;PU478,983;PD179,983;PD783,381;PD1381,983;PD1079,983;PD1079,1182;PD478,1182;PD478,983;SPA;SW2;PU280,507;CI152;SPA;SW2;PU1291,507;CI149;", + "_width": "1312", + "_height": "827" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3500" + }, + { + "name": "DIRBOYA1", + "description": "direction and color of buoyage for approaching harbour in IALA region A (red to port)", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-74", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "58", + "_y": "121" + }, + "_width": "38", + "_height": "25" + }, + "color-ref": "ACHMGDBCHREDCCHGRN", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "778", + "_y": "3043" + }, + "origin": { + "_x": "778", + "_y": "778" + }, + "HPGL": "SPA;SW1;PU478,983;PD179,983;PD783,381;PD1381,983;PD1079,983;PD1079,1182;PD478,1182;PD478,983;SPB;SW3;PU280,507;CI152;SPC;SW3;PU1291,507;CI149;", + "_width": "1312", + "_height": "827" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3133" + }, + { + "name": "DIRBOYB1", + "description": "direction and color of buoyage for approaching harbour in IALA region B (green to port)", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-74", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "106", + "_y": "121" + }, + "_width": "38", + "_height": "25" + }, + "color-ref": "ACHMGDBCHGRNCCHRED", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "778", + "_y": "3043" + }, + "origin": { + "_x": "778", + "_y": "778" + }, + "HPGL": "SPA;SW1;PU478,983;PD179,983;PD783,381;PD1381,983;PD1079,983;PD1079,1182;PD478,1182;PD478,983;SPB;SW3;PU280,507;CI152;SPC;SW3;PU1291,507;CI149;", + "_width": "1312", + "_height": "827" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3132" + }, + { + "name": "DISMAR03", + "description": "distance mark", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "154", + "_y": "121" + }, + "_width": "26", + "_height": "13" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "825", + "_y": "756" + }, + "origin": { + "_x": "335", + "_y": "494" + }, + "HPGL": "SPA;SW1;PU650,494;PD650,894;SPA;SW1;PU785,644;PD650,794;SPA;SW1;PU695,744;PD800,894;SPA;SW1;PU900,644;PD900,894;SPA;SW1;PU900,684;PD935,649;PD965,639;PD985,639;PD1027,659;PD1050,689;PD1050,894;SPA;SW1;PU1050,694;PD1070,654;PD1110,636;PD1135,636;PD1177,654;PD1200,694;PD1200,894;SPA;SW1;PU419,765;CI84;", + "_width": "865", + "_height": "400" + }, + "definition": "V", + "_RCID": "2242" + }, + { + "name": "DISMAR04", + "description": "distance point with no mark", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "190", + "_y": "121" + }, + "_width": "17", + "_height": "13" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "825", + "_y": "756" + }, + "origin": { + "_x": "650", + "_y": "494" + }, + "HPGL": "SPA;SW1;PU650,494;PD650,894;SPA;SW1;PU785,644;PD650,794;SPA;SW1;PU695,744;PD800,894;SPA;SW1;PU900,644;PD900,894;SPA;SW1;PU900,684;PD935,649;PD965,639;PD985,639;PD1027,659;PD1050,689;PD1050,894;SPA;SW1;PU1050,694;PD1070,654;PD1110,636;PD1135,636;PD1177,654;PD1200,694;PD1200,894;", + "_width": "550", + "_height": "400" + }, + "definition": "V", + "_RCID": "3386" + }, + { + "name": "DNGHILIT", + "description": "transparent danger highlight for mariner's use", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "217", + "_y": "121" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "SDNGHL", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1206", + "_y": "1206" + }, + "HPGL": "SPS;ST3;PU1206,1206;PM0;PD1793,1206,1793,1793,1206,1793,1206,1206;PM2;FP;SW3;PU1206,1793;PD1793,1793;PD1793,1206;PD1206,1206;PD1206,1793;", + "_width": "587", + "_height": "587" + }, + "definition": "V", + "_RCID": "1331" + }, + { + "name": "DOMES001", + "description": "dome", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "245", + "_y": "121" + }, + "_width": "16", + "_height": "13" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "747", + "_y": "530" + }, + "origin": { + "_x": "498", + "_y": "150" + }, + "HPGL": "SPA;SW1;PU745,528;CI43;SPA;SW1;PU703,524;PD539,524;SPA;SW1;PU538,525;PD528,509;PD514,475;PD502,440;PD498,410;PD498,370;PD508,328;PD526,280;PD542,250;PD570,220;PD600,194;PD628,180;PD676,162;PD716,154;PD760,150;PD809,158;PD855,172;PD901,202;PD943,242;PD965,274;PD987,316;PD999,368;PD1001,430;PD991,471;PD977,505;PD963,521;SPA;SW1;PU787,524;PD961,524;PD964,516;", + "_width": "503", + "_height": "421" + }, + "definition": "V", + "_RCID": "3114" + }, + { + "name": "DOMES011", + "description": "conspicuous dome", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "271", + "_y": "121" + }, + "_width": "16", + "_height": "13" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "746", + "_y": "521" + }, + "origin": { + "_x": "498", + "_y": "150" + }, + "HPGL": "SPA;SW1;PU745,528;CI43;SPA;SW1;PU703,524;PD539,524;SPA;SW1;PU538,525;PD528,509;PD514,475;PD502,440;PD498,410;PD498,370;PD508,328;PD526,280;PD542,250;PD570,220;PD600,194;PD628,180;PD676,162;PD716,154;PD760,150;PD809,158;PD855,172;PD901,202;PD943,242;PD965,274;PD987,316;PD999,368;PD1001,430;PD991,471;PD977,505;PD963,521;SPA;SW1;PU787,524;PD961,524;PD964,516;", + "_width": "503", + "_height": "421" + }, + "definition": "V", + "_RCID": "3115" + }, + { + "name": "DSHAER01", + "description": "dish aerial", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "297", + "_y": "121" + }, + "_width": "11", + "_height": "16" + }, + "color-ref": "WLANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "584", + "_y": "259" + }, + "HPGL": "SPW;PU750,750;SW2;CI40;PU584,750;PD700,750;PU790,750;PD900,750;PU659,265;PD934,434;PU800,350;PD825,309;PU725,490;PD665,750;PU781,506;PD825,750;PU659,259;PD640,300;PD634,365;PD646,418;PD684,468;PD725,490;PD781,506;PD818,506;PD865,500;PD909,475;PD934,434;", + "_width": "350", + "_height": "531" + }, + "definition": "V", + "_RCID": "1332" + }, + { + "name": "DSHAER11", + "description": "conspicuous dish aerial", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "318", + "_y": "121" + }, + "_width": "11", + "_height": "16" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "584", + "_y": "259" + }, + "HPGL": "SPC;PU750,750;SW2;CI40;PU584,750;PD700,750;PU790,750;PD900,750;PU659,265;PD934,434;PU800,350;PD825,309;PU725,490;PD665,750;PU781,506;PD825,750;PU659,259;PD640,300;PD634,365;PD646,418;PD684,468;PD725,490;PD781,506;PD818,506;PD865,500;PD909,475;PD934,434;", + "_width": "350", + "_height": "531" + }, + "definition": "V", + "_RCID": "1333" + }, + { + "name": "DWRTPT51", + "description": "part of deep water route", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "21", + "_y": "51" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "339", + "_y": "121" + }, + "_width": "46", + "_height": "28" + }, + "color-ref": "ATRFCF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2313", + "_y": "2615" + }, + "origin": { + "_x": "1587", + "_y": "881" + }, + "HPGL": "SPA;SW2;PU1987,1141;PD1987,1592;PD2134,1593;PD2187,1566;PD2238,1492;PD2238,1243;PD2187,1167;PD2135,1141;PD1987,1141;SPA;SW2;PU2370,1141;PD2469,1594;PD2571,1144;PD2671,1594;PD2772,1141;", + "_width": "1570", + "_height": "934" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3392" + }, + { + "name": "DWRUTE51", + "description": "reciprocal traffic directions in a two-way part of a deep-water route", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "395", + "_y": "121" + }, + "_width": "19", + "_height": "44" + }, + "color-ref": "ATRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "2250", + "_y": "2250" + }, + "HPGL": "SPA;ST3;PU1944,1950;PM0;PD2245,1500;PD2553,1950;PD1944,1950;PM2;FP;PU2096,1940;PM0;PD2096,2566;PD2401,2566;PD2401,1940;PD2096,1940;PM2;FP;PU1944,2546;PM0;PD2245,2999;PD2553,2546;PD1944,2546;PM2;FP;SPA;SW1;PU2096,1950;PD1944,1950;PD2245,1500;PD2553,1950;PD2401,1950;PD2401,2546;PD2563,2546;PD2252,2999;PD1947,2546;PD2096,2546;PD2096,1950;", + "_width": "619", + "_height": "1499" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3501" + }, + { + "name": "EBBSTR01", + "description": "ebb stream, rate at spring tides", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "424", + "_y": "121" + }, + "_width": "7", + "_height": "26" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "785", + "_y": "883" + }, + "origin": { + "_x": "785", + "_y": "883" + }, + "HPGL": "SPA;SW1;PU684,611;PD786,364;PD886,611;SPA;SW1;PU785,366;PD785,1248;", + "_width": "202", + "_height": "884" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3361" + }, + { + "name": "EBLVRM11", + "description": "point of origin for an offset EBL or VRM", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "3" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "441", + "_y": "121" + }, + "_width": "7", + "_height": "7" + }, + "color-ref": "CNINFO", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "650", + "_y": "650" + }, + "HPGL": "SPC;PU750,750;ST0;PM0;CI100;PM2;FP;", + "_width": "200", + "_height": "200" + }, + "definition": "V", + "_RCID": "3391" + }, + { + "name": "ENTRES51", + "description": "area where entry is prohibited or restricted or \"to be avoided\"", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "58", + "_y": "25" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "458", + "_y": "121" + }, + "_width": "29", + "_height": "29" + }, + "color-ref": "ATRFCF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2265", + "_y": "2721" + }, + "origin": { + "_x": "276", + "_y": "1846" + }, + "HPGL": "SPA;SW2;PU1020,2344;PD558,2344;SPA;SW2;PU773,2343;CI497;", + "_width": "994", + "_height": "994" + }, + "definition": "V", + "_RCID": "3405" + }, + { + "name": "ENTRES61", + "description": "area where entry is prohibited or restricted or \"to be avoided\", with other cautions", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "58", + "_y": "25" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "497", + "_y": "121" + }, + "_width": "35", + "_height": "30" + }, + "color-ref": "ATRFCFCCHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2265", + "_y": "2721" + }, + "origin": { + "_x": "276", + "_y": "1846" + }, + "HPGL": "SPA;SW2;PU1020,2344;PD558,2344;SPA;SW2;PU773,2343;CI497;SPC;SW1;PU1392,2865;PD1447,2865;SPC;SW1;PU1405,2479;PD1405,2814;", + "_width": "1171", + "_height": "1019" + }, + "definition": "V", + "_RCID": "3406" + }, + { + "name": "ENTRES71", + "description": "area where entry is prohibited or restricted or \"to be avoided\", with other information", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "65", + "_y": "25" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "542", + "_y": "121" + }, + "_width": "36", + "_height": "29" + }, + "color-ref": "ATRFCFCCHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2265", + "_y": "2721" + }, + "origin": { + "_x": "35", + "_y": "1846" + }, + "HPGL": "SPA;SW2;PU1020,2344;PD558,2344;SPA;SW2;PU773,2343;CI497;SPC;SW1;PU127,2827;PD127,2593;PD35,2592;SPC;SW1;PU36,2828;PD223,2828;SPC;SW1;PU81,2474;PD84,2514;", + "_width": "1235", + "_height": "994" + }, + "definition": "V", + "_RCID": "3407" + }, + { + "name": "ERBLTIK1", + "description": "range mark for an ERBL", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "23", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "588", + "_y": "121" + }, + "_width": "36", + "_height": "5" + }, + "color-ref": "ANINFO", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2674", + "_y": "1320" + }, + "origin": { + "_x": "2072", + "_y": "1317" + }, + "HPGL": "SPA;SW2;PU2601,1317;PD2750,1317;SPA;SW2;PU2322,1353;PD2468,1324;SPA;SW2;PU2893,1327;PD3039,1355;SPA;SW2;PU2072,1436;PD2211,1379;SPA;SW2;PU3157,1396;PD3298,1444;", + "_width": "1226", + "_height": "127" + }, + "definition": "V", + "_RCID": "3393" + }, + { + "name": "EVENTS02", + "description": "mariner's event mark", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "5" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "634", + "_y": "121" + }, + "_width": "13", + "_height": "10" + }, + "color-ref": "fNINFO", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "550", + "_y": "600" + }, + "HPGL": "SPf;SW2;PU550,600;PD950,600;PD950,900;PD550,900;PD550,600;PU550,900;PD950,600;", + "_width": "400", + "_height": "300" + }, + "definition": "V", + "_RCID": "1334" + }, + { + "name": "FAIRWY51", + "description": "fairway with one-way traffic in direction indicated", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "657", + "_y": "121" + }, + "_width": "19", + "_height": "40" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "2250", + "_y": "2250" + }, + "HPGL": "SPA;SW1;PU2100,2850;PD2100,1950;PD1950,1950;PD2250,1500;PD2550,1950;PD2400,1950;PD2400,2850;PD2100,2850;", + "_width": "600", + "_height": "1350" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3184" + }, + { + "name": "FAIRWY52", + "description": "fairway with two-way traffic", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "686", + "_y": "121" + }, + "_width": "18", + "_height": "40" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "2250", + "_y": "2250" + }, + "HPGL": "SPA;SW1;PU2403,2397;PD2549,2397;PD2251,2850;PD1953,2397;PD2102,2397;SPA;SW1;PU2097,2396;PD2097,1949;PD1948,1949;PD2250,1499;PD2544,1949;PD2399,1949;PD2399,2396;", + "_width": "601", + "_height": "1351" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3185" + }, + { + "name": "FLASTK01", + "description": "flare stack", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "17" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "714", + "_y": "121" + }, + "_width": "10", + "_height": "19" + }, + "color-ref": "WLANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1350", + "_y": "943" + }, + "HPGL": "SPW;ST0;PU1450,1500;PM0;PD1450,1175,1550,1175,1550,1500,1537,1462,1500,1450,1468,1462,1450,1500;PM2;FP;PU1500,1500;SW2;CI50;PU1550,1500;PD1650,1500;PU1450,1500;PD1350,1500;PU1556,943;PD1525,962;PD1493,981;PD1468,1012;PD1450,1050;PD1450,1087;PD1456,1106;PD1481,1118;PD1512,1118;PD1531,1106;PD1543,1081;PD1537,1050;PD1525,1037;PD1525,1012;PD1525,987;PD1543,968;PD1556,943;", + "_width": "300", + "_height": "607" + }, + "definition": "V", + "_RCID": "1335" + }, + { + "name": "FLASTK11", + "description": "conspicuous flare stack", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "17" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "734", + "_y": "121" + }, + "_width": "10", + "_height": "19" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1350", + "_y": "943" + }, + "HPGL": "SPC;ST0;PU1450,1500;PM0;PD1450,1175,1550,1175,1550,1500,1537,1462,1500,1450,1468,1462,1450,1500;PM2;FP;PU1500,1500;SW2;CI50;PU1550,1500;PD1650,1500;PU1450,1500;PD1350,1500;PU1556,943;PD1525,962;PD1493,981;PD1468,1012;PD1450,1050;PD1450,1087;PD1456,1106;PD1481,1118;PD1512,1118;PD1531,1106;PD1543,1081;PD1537,1050;PD1525,1037;PD1525,1012;PD1525,987;PD1543,968;PD1556,943;", + "_width": "300", + "_height": "607" + }, + "definition": "V", + "_RCID": "1336" + }, + { + "name": "FLDSTR01", + "description": "flood stream, rate at spring tides", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "754", + "_y": "121" + }, + "_width": "7", + "_height": "27" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "785", + "_y": "810" + }, + "origin": { + "_x": "785", + "_y": "810" + }, + "HPGL": "SPA;SW1;PU785,362;PD785,1277;SPA;SW1;PU684,611;PD786,364;PD886,611;SPA;SW1;PU787,894;PD886,1099;SPA;SW1;PU787,1079;PD886,1277;SPA;SW1;PU785,1103;PD785,1161;", + "_width": "202", + "_height": "915" + }, + "prefer-bitmap": "no", + "definition": "V", + "_RCID": "3360" + }, + { + "name": "FLGSTF01", + "description": "flagstaff, flagpole", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "771", + "_y": "121" + }, + "_width": "10", + "_height": "16" + }, + "color-ref": "WLANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "600", + "_y": "300" + }, + "HPGL": "SPW;PU750,750;SW2;CI50;PU750,700;PD750,300;PD900,300;PD900,475;PD750,475;PU600,750;PD700,750;PU800,750;PD900,750;", + "_width": "300", + "_height": "500" + }, + "definition": "V", + "_RCID": "1337" + }, + { + "name": "FOGSIG01", + "description": "fog signal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "-3" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "791", + "_y": "121" + }, + "_width": "12", + "_height": "13" + }, + "color-ref": "JCHMGF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "265", + "_y": "771" + }, + "HPGL": "SPJ;SW2;PU265,787;PD284,890;PD328,990;PD378,1062;PD446,1125;PD512,1171;PU387,781;PD406,859;PD446,934;PD487,1000;PD537,1043;PD571,1059;PU509,771;PD525,850;PD568,912;PD609,946;PD628,962;", + "_width": "363", + "_height": "400" + }, + "definition": "V", + "_RCID": "1338" + }, + { + "name": "FORSTC01", + "description": "fortified structure", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "813", + "_y": "121" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "WLANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "550", + "_y": "550" + }, + "HPGL": "SPW;SW2;PU550,550;PD950,550;PD950,950;PD550,950;PD550,550;", + "_width": "400", + "_height": "400" + }, + "definition": "V", + "_RCID": "1339" + }, + { + "name": "FORSTC11", + "description": "conspicuous fortified structure", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "836", + "_y": "121" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "550", + "_y": "550" + }, + "HPGL": "SPC;SW2;PU550,550;PD950,550;PD950,950;PD550,950;PD550,550;", + "_width": "400", + "_height": "400" + }, + "definition": "V", + "_RCID": "1340" + }, + { + "name": "FOULGND1", + "description": "foul area of seabed safe for navigation but not for anchoring", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "5" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "859", + "_y": "121" + }, + "_width": "12", + "_height": "10" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "666", + "_y": "767" + }, + "origin": { + "_x": "465", + "_y": "613" + }, + "HPGL": "SPA;SW1;PU641,613;PD539,913;SPA;SW1;PU793,613;PD688,912;SPA;SW1;PU507,713;PD855,713;SPA;SW1;PU465,814;PD821,814;", + "_width": "390", + "_height": "300" + }, + "definition": "V", + "_RCID": "3129" + }, + { + "name": "FRYARE51", + "description": "ferry area", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "37", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "881", + "_y": "121" + }, + "_width": "74", + "_height": "10" + }, + "color-ref": "ACHMGF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1631", + "_y": "863" + }, + "origin": { + "_x": "513", + "_y": "728" + }, + "HPGL": "SPA;SW1;PU823,863;PD513,863;SPA;SW1;PU2279,863;PD2571,863;SPA;SW1;PU1883,728;PD1086,728;PD1086,1026;PD1882,1022;PD2083,923;PD2084,823;PD1883,728;SPA;SW1;PU2778,868;PD3073,868;", + "_width": "2560", + "_height": "298" + }, + "definition": "V", + "_RCID": "3390" + }, + { + "name": "FRYARE52", + "description": "cable ferry area", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "37", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "965", + "_y": "121" + }, + "_width": "74", + "_height": "10" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1631", + "_y": "863" + }, + "origin": { + "_x": "513", + "_y": "728" + }, + "HPGL": "SPA;SW1;PU823,863;PD513,863;SPA;SW1;PU2279,863;PD2571,863;SPA;SW1;PU1883,728;PD1086,728;PD1086,1026;PD1882,1022;PD2083,923;PD2084,823;PD1883,728;SPA;SW1;PU2778,868;PD3073,868;", + "_width": "2560", + "_height": "298" + }, + "definition": "V", + "_RCID": "3390" + }, + { + "name": "FSHFAC02", + "description": "fish trap, fish weir, tunny net", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1049", + "_y": "121" + }, + "_width": "16", + "_height": "14" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "772", + "_y": "631" + }, + "origin": { + "_x": "492", + "_y": "416" + }, + "HPGL": "SPA;SW1;PU492,854;PD1003,854;PD1003,632;PD494,632;PD494,853;SPA;SW1;PU558,416;PD776,634;", + "_width": "511", + "_height": "438" + }, + "definition": "V", + "_RCID": "1342" + }, + { + "name": "FSHFAC03", + "description": "fish stakes", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "3" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1075", + "_y": "121" + }, + "_width": "19", + "_height": "6" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3437", + "_y": "2254" + }, + "origin": { + "_x": "3135", + "_y": "2173" + }, + "HPGL": "SPA;SW1;PU3135,2173;PD3135,2323;PD3739,2323;PD3739,2180;SPA;SW1;PU3290,2176;PD3290,2324;SPA;SW1;PU3438,2179;PD3438,2321;SPA;SW1;PU3590,2179;PD3590,2321;", + "_width": "604", + "_height": "151" + }, + "definition": "V", + "_RCID": "2067" + }, + { + "name": "FSHGRD01", + "description": "fishing ground", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "21", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1104", + "_y": "121" + }, + "_width": "33", + "_height": "14" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1202", + "_y": "1547" + }, + "origin": { + "_x": "527", + "_y": "1303" + }, + "HPGL": "SPA;SW2;PU699,1532;PD546,1344;SPA;SW2;PU701,1535;PD527,1708;SPA;SW2;PU703,1532;PD780,1449;PD877,1379;PD1002,1323;PD1141,1303;PD1267,1309;PD1406,1337;PD1525,1393;PD1608,1455;PD1629,1498;SPA;SW2;PU697,1530;PD816,1628;PD962,1711;PD1115,1745;PD1226,1752;PD1345,1732;PD1456,1691;PD1546,1607;PD1616,1509;SPA;SW2;PU1333,1322;PD1287,1442;PD1287,1609;PD1370,1729;SPA;SW2;PU1631,1497;PD1614,1511;", + "_width": "1104", + "_height": "449" + }, + "definition": "V", + "_RCID": "3193" + }, + { + "name": "FSHHAV01", + "description": "fish haven", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1147", + "_y": "121" + }, + "_width": "29", + "_height": "19" + }, + "color-ref": "DCHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "875", + "_y": "750" + }, + "origin": { + "_x": "250", + "_y": "440" + }, + "HPGL": "SPD;SW2;PU384,868;PD525,750;PD584,684;PD653,640;PD725,612;PD793,593;PD868,593;PD931,600;PD1006,625;PD1075,656;PD1137,703;PD1175,750;PD1128,793;PD1084,831;PD1028,859;PD956,887;PD884,900;PD803,900;PD725,887;PD650,859;PD584,815;PD540,778;PU500,731;PD400,603;PU1018,628;PD1000,662;PD987,709;PD984,740;PD984,765;PD993,809;PD1012,865;PU540,778;PD500,731;PU750,440;PD;PU750,1056;PD;PU1234,750;PD;PU250,750;PD;PU465,500;PD;PU1015,500;PD;PU1025,1000;PD;PU309,900;PD;PU309,590;PD;PU1175,590;PD;PU1175,900;PD;PU390,534;PD;PU265,650;PD;PU275,850;PD;PU1215,850;PD;PU1209,650;PD;PU1106,550;PD;PU1115,950;PD;PU365,950;PD;PU565,465;PD;PU665,450;PD;PU815,450;PD;PU915,459;PD;PU915,1031;PD;PU815,1050;PD;PU665,1050;PD;PU565,1031;PD;PU465,1000;PD;", + "_width": "984", + "_height": "616" + }, + "definition": "V", + "_RCID": "1343" + }, + { + "name": "FSHRES51", + "description": "area where fishing or trawling is prohibited or restricted", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-33", + "_y": "32" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1186", + "_y": "121" + }, + "_width": "30", + "_height": "19" + }, + "color-ref": "ACHMGF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "821", + "_y": "1426" + }, + "origin": { + "_x": "1869", + "_y": "411" + }, + "HPGL": "SPA;SW2;PU1869,874;PD2051,722;PD2127,637;PD2216,580;PD2309,544;PD2397,519;PD2494,519;PD2575,528;PD2672,561;PD2761,601;PD2841,661;PD2890,722;PD2830,777;PD2773,827;PD2701,863;PD2608,899;PD2515,916;PD2410,916;PD2309,899;PD2212,863;PD2127,806;PD2070,758;SPA;SW2;PU2037,717;PD1908,551;SPA;SW3;PU2075,759;PD2035,712;SPA;SW3;PU2801,411;PD2199,1013;", + "_width": "1021", + "_height": "602" + }, + "definition": "V", + "_RCID": "3400" + }, + { + "name": "FSHRES61", + "description": "area where fishing or trawling is prohibited or restricted, with other cautions", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-32", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1226", + "_y": "121" + }, + "_width": "34", + "_height": "19" + }, + "color-ref": "ACHMGFECHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "821", + "_y": "1426" + }, + "origin": { + "_x": "1869", + "_y": "411" + }, + "HPGL": "SPA;SW2;PU1869,874;PD2051,722;PD2127,637;PD2216,580;PD2309,544;PD2397,519;PD2494,519;PD2575,528;PD2672,561;PD2761,601;PD2841,661;PD2890,722;PD2830,777;PD2773,827;PD2701,863;PD2608,899;PD2515,916;PD2410,916;PD2309,899;PD2212,863;PD2127,806;PD2070,758;SPA;SW2;PU2037,717;PD1908,551;SPA;SW3;PU2075,759;PD2035,712;SPA;SW3;PU2801,411;PD2199,1013;SPE;SW1;PU2992,700;PD2992,925;SPE;SW1;PU2967,1018;PD3022,1018;", + "_width": "1153", + "_height": "607" + }, + "definition": "V", + "_RCID": "3402" + }, + { + "name": "FSHRES71", + "description": "area where fishing or trawling is prohibited or restricted, with other information", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-24", + "_y": "32" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1270", + "_y": "121" + }, + "_width": "38", + "_height": "19" + }, + "color-ref": "ACHMGFECHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "821", + "_y": "1426" + }, + "origin": { + "_x": "1603", + "_y": "411" + }, + "HPGL": "SPA;SW2;PU1869,874;PD2051,722;PD2127,637;PD2216,580;PD2309,544;PD2397,519;PD2494,519;PD2575,528;PD2672,561;PD2761,601;PD2841,661;PD2890,722;PD2830,777;PD2773,827;PD2701,863;PD2608,899;PD2515,916;PD2410,916;PD2309,899;PD2212,863;PD2127,806;PD2070,758;SPA;SW2;PU2037,717;PD1908,551;SPA;SW3;PU2075,759;PD2035,712;SPA;SW3;PU2801,411;PD2199,1013;SPE;SW1;PU1695,1007;PD1695,773;PD1603,772;SPE;SW1;PU1604,1008;PD1791,1008;SPE;SW1;PU1649,654;PD1652,694;", + "_width": "1287", + "_height": "602" + }, + "definition": "V", + "_RCID": "3404" + }, + { + "name": "GATCON03", + "description": "navigable lock gate", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "10", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1318", + "_y": "121" + }, + "_width": "21", + "_height": "21" + }, + "color-ref": "JTRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1150", + "_y": "1150" + }, + "HPGL": "SPJ;PU1500,1500;SW1;CI350;PU1181,1350;PD1812,1350;PU1181,1650;PD1818,1650;PU1250,1500;PD1500,1250;PU1250,1500;PD1500,1750;PU1650,1250;PD1400,1500;PD1650,1750;", + "_width": "700", + "_height": "700" + }, + "definition": "V", + "_RCID": "1344" + }, + { + "name": "GATCON04", + "description": "non-navigable lock gate", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "10", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1349", + "_y": "121" + }, + "_width": "21", + "_height": "21" + }, + "color-ref": "JTRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1150", + "_y": "1150" + }, + "HPGL": "SPJ;PU1500,1500;SW1;CI350;PU1181,1350;PD1812,1350;PU1181,1650;PD1818,1650;PU1500,1250;PD1500,1750;", + "_width": "700", + "_height": "700" + }, + "definition": "V", + "_RCID": "1345" + }, + { + "name": "HILTOP01", + "description": "hill or mountain top", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1380", + "_y": "121" + }, + "_width": "30", + "_height": "25" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "586", + "_y": "1070" + }, + "origin": { + "_x": "78", + "_y": "631" + }, + "HPGL": "SPA;SW1;ST0;PU849,993;PM0;PD873,1078;PD1085,969;PD849,993;PM2;FP;SPA;SW1;ST0;PU849,1122;PM0;PD795,1191;PD1016,1306;PD849,1122;PM2;FP;SPA;SW1;ST0;PU389,1202;PM0;PD334,1132;PD172,1322;PD389,1202;PM2;FP;SPA;SW1;ST0;PU558,1254;PM0;PD475,1224;PD425,1467;PD558,1254;PM2;FP;SPA;SW1;ST0;PU722,1203;PM0;PD640,1244;PD789,1445;PD722,1203;PM2;FP;SPA;SW1;ST0;PU726,890;PM0;PD796,946;PD912,726;PD729,891;PD726,890;PM2;FP;SPA;SW1;ST0;PU304,1071;PM0;PD328,983;PD78,959;PD304,1071;PM2;FP;SPA;SW1;ST0;PU548,887;PM0;PD639,871;PD550,631;PD546,888;PD548,887;PM2;FP;SPA;SW1;ST0;PU389,958;PM0;PD462,908;PD281,728;PD388,957;PD389,958;PM2;FP;", + "_width": "1007", + "_height": "836" + }, + "definition": "V", + "_RCID": "3366" + }, + { + "name": "HILTOP11", + "description": "conspicuous hill or mountain top", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1420", + "_y": "121" + }, + "_width": "30", + "_height": "25" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "586", + "_y": "1070" + }, + "origin": { + "_x": "78", + "_y": "631" + }, + "HPGL": "SPA;SW1;ST0;PU849,993;PM0;PD873,1078;PD1085,969;PD849,993;PM2;FP;SPA;SW1;ST0;PU849,1122;PM0;PD795,1191;PD1016,1306;PD849,1122;PM2;FP;SPA;SW1;ST0;PU389,1202;PM0;PD334,1132;PD172,1322;PD389,1202;PM2;FP;SPA;SW1;ST0;PU558,1254;PM0;PD475,1224;PD425,1467;PD558,1254;PM2;FP;SPA;SW1;ST0;PU722,1203;PM0;PD640,1244;PD789,1445;PD722,1203;PM2;FP;SPA;SW1;ST0;PU726,890;PM0;PD796,946;PD912,726;PD729,891;PD726,890;PM2;FP;SPA;SW1;ST0;PU304,1071;PM0;PD328,983;PD78,959;PD304,1071;PM2;FP;SPA;SW1;ST0;PU548,887;PM0;PD639,871;PD550,631;PD546,888;PD548,887;PM2;FP;SPA;SW1;ST0;PU389,958;PM0;PD462,908;PD281,728;PD388,957;PD389,958;PM2;FP;", + "_width": "1007", + "_height": "836" + }, + "definition": "V", + "_RCID": "3367" + }, + { + "name": "HRBFAC09", + "description": "fishing harbour", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "175" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "453", + "_y": "459" + }, + "HPGL": "SPA;SW1;PU553,750;PD578,725;PD612,693;PD643,675;PD675,659;PD712,643;PD737,637;PD775,634;PD803,634;PD837,634;PD878,643;PD909,653;PD943,668;PD978,687;PD1003,709;PD1025,728;PD1037,750;PD1009,775;PD975,809;PD934,828;PD903,843;PD862,853;PD828,859;PD803,859;PD768,859;PD737,853;PD712,850;PD693,843;PD659,828;PD628,809;PD603,787;PD578,775;PD568,762;PD553,750;SPA;SW1;PU553,750;PD462,837;PD459,809;PD453,775;PD453,743;PD453,703;PD462,662;PD475,643;PD553,750;SPA;SW1;PU540,550;PD584,512;PD612,493;PD656,475;PD715,462;PD775,459;PD831,468;PD875,484;PD915,509;PD959,550;PD993,590;PD1003,603;SPA;SW1;PU534,946;PD581,990;PD631,1015;PD668,1031;PD706,1040;PD756,1043;PD787,1043;PD828,1034;PD871,1018;PD912,993;PD943,968;PD971,943;PD1006,900;", + "_width": "584", + "_height": "584" + }, + "definition": "V", + "_RCID": "2068" + }, + { + "name": "HULKES01", + "description": "hulk", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "38", + "_y": "175" + }, + "_width": "15", + "_height": "9" + }, + "color-ref": "XCSTLNECHBRN", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "496", + "_y": "609" + }, + "HPGL": "SPE;ST0;PU500,840;PM0;PD550,856,606,865,656,875,700,875,750,859,784,856,825,840,859,825,884,809,925,790,950,775,965,756;PD984,750,965,725,940,700,909,684,881,665,850,650,815,634,790,625,753,618,715,609,681,609,656,609,625,615,600,615;PD565,625,540,631,525,640,500,650,500,840,500,840;PM2;FP;SPX;SW2;PU500,840;PD500,650;PU496,653;PD559,621;PD643,609;PD718,609;PD800,625;PD878,665;PD953,709;PD984,746;PD906,803;PD831,840;PD771,862;PD690,875;PD659,875;PD609,868;PD500,843;", + "_width": "488", + "_height": "266" + }, + "definition": "V", + "_RCID": "1348" + }, + { + "name": "INFARE51", + "description": "area with minor restrictions or information notices", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-41", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "63", + "_y": "175" + }, + "_width": "24", + "_height": "24" + }, + "color-ref": "ACHMGF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-1394", + "_y": "2427" + }, + "origin": { + "_x": "2", + "_y": "2172" + }, + "HPGL": "SPA;SW2;PU231,2854;PD672,2854;SPA;SW2;PU348,2228;PD355,2323;SPA;SW2;PU2,2977;PD806,2977;PD803,2173;SPA;SW2;PU4,2972;PD4,2172;PD799,2172;SPA;SW2;PU446,2853;PD446,2440;PD267,2440;", + "_width": "804", + "_height": "805" + }, + "definition": "V", + "_RCID": "3396" + }, + { + "name": "INFORM01", + "description": "this object has additional information available by cursor query", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "41" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "97", + "_y": "175" + }, + "_width": "47", + "_height": "47" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3991", + "_y": "3004" + }, + "origin": { + "_x": "3808", + "_y": "1599" + }, + "HPGL": "SPA;SW2;PU4914,2094;PD5409,2094;PD5409,1599;PD4914,1599;PD4914,2094;SPA;SW2;PU5145,1666;PD5145,1708;SPA;SW2;PU5159,2003;PD5159,1769;PD5067,1768;SPA;SW2;PU5058,2004;PD5225,2004;SPA;SW2;PU3916,3089;CI108;SPA;SW2;PU4908,2092;PD3988,3011;", + "_width": "1601", + "_height": "1598" + }, + "definition": "V", + "_RCID": "3369" + }, + { + "name": "ISODGR01", + "description": "isolated danger of depth less than the safety contour", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "10", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "154", + "_y": "175" + }, + "_width": "21", + "_height": "21" + }, + "color-ref": "RISDNG", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "600", + "_y": "700" + }, + "origin": { + "_x": "250", + "_y": "350" + }, + "HPGL": "SPR;ST0;PU600,350;PM0;PD850,450,950,700,850,950,600,1050,350,950,250,700,350,450,600,350,600,625,737,487,812,562;PD675,700,812,837,737,912,600,775,462,912,387,837,525,700,387,562,462,487,600,625,600,350;PM2;FP;SW1;PU250,700;PD350,450;PD600,350;PD850,450;PD950,700;PD850,950;PD600,1050;PD350,950;PD250,700;", + "_width": "700", + "_height": "700" + }, + "definition": "V", + "_RCID": "1392" + }, + { + "name": "ITZARE51", + "description": "area of inshore traffic", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "14", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "185", + "_y": "175" + }, + "_width": "34", + "_height": "27" + }, + "color-ref": "ACHMGF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2189", + "_y": "1310" + }, + "origin": { + "_x": "1693", + "_y": "910" + }, + "HPGL": "SPA;SW2;PU1834,1811;PD1834,910;SPA;SW2;PU2540,913;PD2540,1811;SPA;SW2;PU1693,911;PD1986,911;SPA;SW2;PU1703,1809;PD1986,1809;SPA;SW2;PU2233,911;PD2842,911;", + "_width": "1149", + "_height": "901" + }, + "definition": "V", + "_RCID": "3395" + }, + { + "name": "LIGHTDEF", + "description": "light flare", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "0", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "247", + "_y": "205" + }, + "_width": "22", + "_height": "22" + }, + "color-ref": "ICHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1375", + "_y": "800" + }, + "HPGL": "SPI;ST2;PU1500,1500;PM0;PD1375,937,1375,912,1381,875,1400,843,1418,825,1450,800,1493,800,1531,800,1556,806,1593,831;PD1606,868,1612,900,1612,931,1500,1500;PM2;FP;SPI;SW1;PU1500,1500;PD1375,925;PD1375,887;PD1387,850;PD1406,831;PD1437,806;PD1475,800;PD1500,800;PD1531,800;PD1562,812;PD1587,837;PD1606,875;PD1612,900;PD1606,956;PD1500,1500;", + "_width": "237", + "_height": "700" + }, + "definition": "V", + "_RCID": "1395" + }, + { + "name": "LIGHTS11", + "description": "light flare, red", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "0", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "247", + "_y": "175" + }, + "_width": "22", + "_height": "22" + }, + "color-ref": "PLITRD^CHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2302" + }, + "origin": { + "_x": "2250", + "_y": "2302" + }, + "HPGL": "SPP;ST2;PU2250,2220;PM0;PD2130,1657,2130,1635,2130,1597,2145,1560,2167,1545,2197,1522,2242,1515,2280,1522,2310,1530;PD2340,1552,2355,1590,2362,1620,2362,1650,2250,2220;PM2;FP;SP^;SW1;ST0;PU2385,1605;PD2377,1642;PD2250,2302;SPP;ST2;PU2250,2220;PD2122,1642;PD2130,1605;PD2137,1575;PD2160,1552;PD2190,1522;PD2227,1515;PD2250,1515;PD2280,1522;PD2317,1537;PD2340,1560;PD2355,1590;PD2362,1620;PD2355,1672;PD2250,2220;SP^;ST0;PU2250,2302;PD2100,1627;PD2122,1560;PD2182,1507;PD2250,1492;PD2310,1515;PD2347,1537;PD2377,1597;", + "_width": "285", + "_height": "810" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "1396" + }, + { + "name": "LIGHTS12", + "description": "light flare, green", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "0", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "278", + "_y": "205" + }, + "_width": "22", + "_height": "22" + }, + "color-ref": "PLITGN^CHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2302" + }, + "origin": { + "_x": "2250", + "_y": "2302" + }, + "HPGL": "SPP;ST2;PU2250,2220;PM0;PD2130,1657,2130,1635,2130,1597,2145,1560,2167,1545,2197,1522,2242,1515,2280,1522,2310,1530;PD2340,1552,2355,1590,2362,1620,2362,1650,2250,2220;PM2;FP;SP^;SW1;ST0;PU2385,1605;PD2377,1642;PD2250,2302;SPP;ST2;PU2250,2220;PD2122,1642;PD2130,1605;PD2137,1575;PD2160,1552;PD2190,1522;PD2227,1515;PD2250,1515;PD2280,1522;PD2317,1537;PD2340,1560;PD2355,1590;PD2362,1620;PD2355,1672;PD2250,2220;SP^;ST0;PU2250,2302;PD2100,1627;PD2122,1560;PD2182,1507;PD2250,1492;PD2310,1515;PD2347,1537;PD2377,1597;", + "_width": "285", + "_height": "810" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "1397" + }, + { + "name": "LIGHTS13", + "description": "light flare, white or yellow", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "0", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "278", + "_y": "175" + }, + "_width": "22", + "_height": "22" + }, + "color-ref": "PLITYW^CHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2302" + }, + "origin": { + "_x": "2250", + "_y": "2302" + }, + "HPGL": "SPP;ST2;PU2250,2220;PM0;PD2130,1657,2130,1635,2130,1597,2145,1560,2167,1545,2197,1522,2242,1515,2280,1522,2310,1530;PD2340,1552,2355,1590,2362,1620,2362,1650,2250,2220;PM2;FP;SP^;SW1;ST0;PU2385,1605;PD2377,1642;PD2250,2302;SPP;ST2;PU2250,2220;PD2122,1642;PD2130,1605;PD2137,1575;PD2160,1552;PD2190,1522;PD2227,1515;PD2250,1515;PD2280,1522;PD2317,1537;PD2340,1560;PD2355,1590;PD2362,1620;PD2355,1672;PD2250,2220;SP^;ST0;PU2250,2302;PD2100,1627;PD2122,1560;PD2182,1507;PD2250,1492;PD2310,1515;PD2347,1537;PD2377,1597;", + "_width": "285", + "_height": "810" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "1398" + }, + { + "name": "LIGHTS81", + "description": "strip light", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "307", + "_y": "175" + }, + "_width": "12", + "_height": "9" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "642", + "_y": "745" + }, + "origin": { + "_x": "450", + "_y": "624" + }, + "HPGL": "SPA;SW1;PU450,873;PD524,624;PD598,874;PD674,624;PD749,875;PD824,624;", + "_width": "374", + "_height": "251" + }, + "definition": "V", + "_RCID": "2079" + }, + { + "name": "LIGHTS82", + "description": "floodlight", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "24", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "329", + "_y": "175" + }, + "_width": "18", + "_height": "10" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "768", + "_y": "2123" + }, + "origin": { + "_x": "30", + "_y": "1742" + }, + "HPGL": "SPA;SW1;PU146,1928;CI116;SPA;SW1;PU301,2031;PD514,2039;SPA;SW1;PU270,1817;PD555,1742;SPA;SW1;PU319,1923;PD614,1893;", + "_width": "584", + "_height": "302" + }, + "definition": "V", + "_RCID": "1399" + }, + { + "name": "LITFLT01", + "description": "light float, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "357", + "_y": "175" + }, + "_width": "27", + "_height": "11" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "300", + "_y": "500" + }, + "HPGL": "SPC;PU750,750;SW2;CI72;PU300,750;PD650,750;SW2;PU450,750;PD350,550;PU1050,750;PD1150,550;SW2;PU600,600;PD650,500;PD850,500;PD900,600;PU350,550;PD550,600;PD950,600;PD1150,550;PU850,750;PD1200,750;", + "_width": "900", + "_height": "322" + }, + "definition": "V", + "_RCID": "1400" + }, + { + "name": "LITFLT02", + "description": "light float, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "10", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "394", + "_y": "175" + }, + "_width": "19", + "_height": "8" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "741", + "_y": "601" + }, + "origin": { + "_x": "434", + "_y": "489" + }, + "HPGL": "SPA;SW1;ST0;PU435,539;PM0;PD529,713;PD963,713;PD1047,538;PM2;FP;SPA;SW1;ST0;PU434,538;PM0;PD529,713;PD963,713;PD1044,538;PD434,538;PM2;FP;SPA;SW1;PU637,537;PD637,489;PD847,489;PD847,538;", + "_width": "613", + "_height": "224" + }, + "definition": "V", + "_RCID": "2245" + }, + { + "name": "LITVES01", + "description": "light vessel, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "17" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "423", + "_y": "175" + }, + "_width": "27", + "_height": "20" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "300", + "_y": "150" + }, + "HPGL": "SPC;PU750,750;SW2;CI70;PU300,750;PD650,750;SW2;PU450,750;PD350,500;PU1050,750;PD1150,500;PU750,575;PD750,300;PU550,575;PD550,395;PU950,575;PD950,400;SW2;PU750,300;PD750,150;PU650,200;PD850,300;PU650,300;PD850,200;PU410,650;PD575,650;PU925,650;PD1090,650;PU350,500;PD547,575;PD750,575;PD950,575;PD1150,500;PU850,750;PD1200,750;", + "_width": "900", + "_height": "670" + }, + "definition": "V", + "_RCID": "1402" + }, + { + "name": "LITVES02", + "description": "light vessel, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "5" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "460", + "_y": "175" + }, + "_width": "23", + "_height": "12" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "747", + "_y": "563" + }, + "origin": { + "_x": "375", + "_y": "381" + }, + "HPGL": "SPA;SW1;ST0;PU497,745;PM0;PD375,541;PD1120,541;PD987,745;PD497,745;PM2;FP;SPA;SW1;PU747,540;PD747,381;", + "_width": "745", + "_height": "364" + }, + "definition": "V", + "_RCID": "2080" + }, + { + "name": "LNDARE01", + "description": "land as a point at small scale", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "3" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "493", + "_y": "175" + }, + "_width": "7", + "_height": "7" + }, + "color-ref": "VLANDAXCSTLN", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "2147", + "_y": "2147" + }, + "HPGL": "SPV;PU2250,2250;ST0;PM0;CI93;PM2;FP;SPX;PU2250,2250;SW2;CI103;", + "_width": "206", + "_height": "206" + }, + "definition": "V", + "_RCID": "1403" + }, + { + "name": "LOCMAG01", + "description": "cursor pick site for a magnetic anomaly at a point", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "510", + "_y": "175" + }, + "_width": "7", + "_height": "28" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1414", + "_y": "670" + }, + "origin": { + "_x": "1300", + "_y": "201" + }, + "HPGL": "SPA;SW1;PU1481,869;PD1481,1134;SPA;SW1;PU1481,897;PD1481,201;PD1300,727;PD1335,738;PD1363,753;PD1386,772;PD1404,792;PD1423,811;PD1445,841;PD1462,867;PD1479,893;", + "_width": "181", + "_height": "933" + }, + "definition": "V", + "_RCID": "3197" + }, + { + "name": "LOCMAG51", + "description": "cursor pick site for a magnetic anomaly along a line or over an area", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "-62" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "527", + "_y": "175" + }, + "_width": "12", + "_height": "54" + }, + "color-ref": "ACHMGF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1430", + "_y": "-2146" + }, + "origin": { + "_x": "1160", + "_y": "0" + }, + "HPGL": "SPA;SW2;PU1526,1403;PD1526,0;PD1160,1060;PD1231,1082;PD1288,1112;PD1334,1150;PD1370,1191;PD1408,1229;PD1452,1289;PD1487,1341;PD1522,1395;SPA;SW2;PU1534,1395;PD1534,1859;", + "_width": "374", + "_height": "1859" + }, + "definition": "V", + "_RCID": "3198" + }, + { + "name": "LOWACC01", + "description": "point feature or area of low accuracy", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "36", + "_y": "39" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "549", + "_y": "175" + }, + "_width": "34", + "_height": "37" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2792", + "_y": "2621" + }, + "origin": { + "_x": "1562", + "_y": "1291" + }, + "HPGL": "SPA;SW1;PU1654,1670;PD1707,1670;SPA;SW1;PU1673,1579;PD1672,1520;PD1673,1501;PD1690,1481;PD1703,1463;PD1729,1437;PD1740,1412;PD1746,1383;PD1739,1352;PD1729,1332;PD1708,1313;PD1685,1297;PD1665,1294;PD1642,1291;PD1619,1297;PD1598,1307;PD1578,1327;PD1568,1347;PD1562,1366;PD1562,1384;PD1567,1401;PD1572,1406;SPA;SW1;PU1747,1582;PD2691,2526;", + "_width": "1129", + "_height": "1235" + }, + "definition": "V", + "_RCID": "3398" + }, + { + "name": "MAGVAR01", + "description": "cursor pick site for magnetic variation at a point", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "593", + "_y": "175" + }, + "_width": "7", + "_height": "27" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1408", + "_y": "648" + }, + "origin": { + "_x": "1300", + "_y": "201" + }, + "HPGL": "SPA;SW1;ST0;PU1481,897;PM0;PD1481,201;PD1300,727;PD1335,738;PD1363,753;PD1386,772;PD1404,792;PD1423,811;PD1445,841;PD1462,867;PD1479,893;PD1481,897;PM2;FP;SPA;SW1;PU1475,202;PD1475,1116;", + "_width": "181", + "_height": "915" + }, + "definition": "V", + "_RCID": "3199" + }, + { + "name": "MAGVAR51", + "description": "cursor pick site for magnetic variation along a line or over an area", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "107" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "610", + "_y": "175" + }, + "_width": "12", + "_height": "54" + }, + "color-ref": "ACHMGF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1413", + "_y": "3674" + }, + "origin": { + "_x": "1160", + "_y": "0" + }, + "HPGL": "SPA;SW2;ST0;PU1526,1403;PM0;PD1526,0;PD1160,1060;PD1231,1082;PD1288,1112;PD1334,1150;PD1370,1191;PD1408,1229;PD1452,1289;PD1487,1341;PD1522,1395;PD1526,1403;PM2;FP;SPA;SW2;PU1521,1390;PD1521,1854;", + "_width": "366", + "_height": "1854" + }, + "definition": "V", + "_RCID": "3196" + }, + { + "name": "MARCUL02", + "description": "fish farm", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "632", + "_y": "175" + }, + "_width": "21", + "_height": "13" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "769", + "_y": "770" + }, + "origin": { + "_x": "416", + "_y": "568" + }, + "HPGL": "SPA;SW1;PU505,847;PD641,725;PD714,684;PD771,668;PD822,662;PD882,673;PD944,693;PD984,717;PD1018,744;PD1039,774;PD1004,803;PD968,831;PD914,855;PD871,869;PD819,871;PD763,869;PD709,857;PD670,835;PD505,698;SPA;SW1;PU416,669;PD416,570;PD1117,570;PD1117,666;SPA;SW1;PU416,871;PD416,971;PD1120,971;PD1121,871;SPA;SW1;PU564,871;PD564,971;SPA;SW1;PU965,871;PD965,971;SPA;SW1;PU765,870;PD765,968;SPA;SW1;PU564,571;PD564,672;SPA;SW1;PU965,569;PD965,670;SPA;SW1;PU764,568;PD764,668;", + "_width": "705", + "_height": "403" + }, + "definition": "V", + "_RCID": "2081" + }, + { + "name": "MONUMT02", + "description": "monument", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "663", + "_y": "175" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "747", + "_y": "749" + }, + "origin": { + "_x": "550", + "_y": "394" + }, + "HPGL": "SPA;SW2;PU750,750;CI50;SPA;SW2;PU550,750;PD687,750;SPA;SW2;PU800,750;PD950,750;SPA;SW1;PU809,401;PD653,564;SPA;SW1;PU825,506;PD650,700;SPA;SW1;PU837,631;PD775,700;SPA;SW1;PU628,749;PD673,394;PD811,397;PD850,747;", + "_width": "400", + "_height": "406" + }, + "definition": "V", + "_RCID": "2082" + }, + { + "name": "MONUMT12", + "description": "conspicuous monument", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "686", + "_y": "175" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "747", + "_y": "749" + }, + "origin": { + "_x": "550", + "_y": "394" + }, + "HPGL": "SPA;SW2;PU750,750;CI50;SPA;SW2;PU550,750;PD687,750;SPA;SW2;PU800,750;PD950,750;SPA;SW1;PU809,401;PD653,564;SPA;SW1;PU825,506;PD650,700;SPA;SW1;PU837,631;PD775,700;SPA;SW1;PU628,749;PD673,394;PD811,397;PD850,747;", + "_width": "400", + "_height": "406" + }, + "definition": "V", + "_RCID": "2083" + }, + { + "name": "MORFAC03", + "description": "mooring dolphin", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "709", + "_y": "175" + }, + "_width": "9", + "_height": "9" + }, + "color-ref": "ALANDABCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "747", + "_y": "746" + }, + "origin": { + "_x": "603", + "_y": "617" + }, + "HPGL": "SPA;SW2;ST0;PU603,617;PM0;PD856,617;PD856,870;PD605,870;PD603,617;PM2;FP;SPB;SW2;PU603,617;PD856,617;PD856,870;PD605,870;PD603,617;", + "_width": "253", + "_height": "253" + }, + "definition": "V", + "_RCID": "2084" + }, + { + "name": "MORFAC04", + "description": "deviation mooring dolphin", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "16" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "728", + "_y": "175" + }, + "_width": "11", + "_height": "16" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "570", + "_y": "247" + }, + "HPGL": "SPA;SW1;PU570,750;PD920,750;SPA;SW1;PU610,750;PD655,390;PD835,390;PD875,750;SPA;SW1;PU747,749;PD747,247;", + "_width": "350", + "_height": "503" + }, + "definition": "V", + "_RCID": "2085" + }, + { + "name": "MSTCON04", + "description": "mast", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "18" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "749", + "_y": "175" + }, + "_width": "10", + "_height": "20" + }, + "color-ref": "WLANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "600", + "_y": "150" + }, + "HPGL": "SPW;PU750,750;SW2;CI50;PU600,750;PD700,750;PU800,750;PD900,750;PU700,750;PD750,150;PD800,750;", + "_width": "300", + "_height": "650" + }, + "definition": "V", + "_RCID": "1412" + }, + { + "name": "MSTCON14", + "description": "conspicuous mast", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "18" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "769", + "_y": "175" + }, + "_width": "10", + "_height": "20" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "600", + "_y": "150" + }, + "HPGL": "SPC;PU750,750;SW2;CI50;PU600,750;PD700,750;PU800,750;PD900,750;PU700,750;PD750,150;PD800,750;", + "_width": "300", + "_height": "650" + }, + "definition": "V", + "_RCID": "1414" + }, + { + "name": "NORTHAR1", + "description": "north arrow", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "24" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "789", + "_y": "175" + }, + "_width": "12", + "_height": "44" + }, + "color-ref": "ASCLBR", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "825" + }, + "origin": { + "_x": "1307", + "_y": "0" + }, + "HPGL": "SPA;SW2;PU1500,1500;PD1500,0;SPA;SW2;PU1325,987;PD1325,656;PD1662,987;PD1662,662;SPA;SW1;ST0;PU1307,395;PM0;PD1662,395;PD1495,3;PD1307,395;PM2;FP;", + "_width": "355", + "_height": "1500" + }, + "definition": "V", + "_RCID": "2086" + }, + { + "name": "NOTBRD11", + "description": "conspicuous notice board", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "811", + "_y": "175" + }, + "_width": "10", + "_height": "13" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "600", + "_y": "350" + }, + "HPGL": "SPC;SW1;PU650,750;PD850,750;PU750,750;PD750,550;PU600,550;PD900,550;PD900,350;PD600,350;PD600,550;", + "_width": "300", + "_height": "400" + }, + "definition": "V", + "_RCID": "2087" + }, + { + "name": "OBSTRN01", + "description": "obstruction, depth not stated", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "831", + "_y": "175" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "ADEPVSBCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1295", + "_y": "1295" + }, + "HPGL": "SPA;SW1;ST0;PU1500,1500;PM0;CI205;PM2;FP;SPB;SW1;PU1500,1300;PD;SPB;SW1;PU1500,1700;PD;SPB;SW1;PU1700,1500;PD;SPB;SW1;PU1300,1500;PD;SPB;SW1;PU1580,1310;PD;SPB;SW1;PU1640,1360;PD;SPB;SW1;PU1685,1425;PD;SPB;SW1;PU1675,1585;PD;SPB;SW1;PU1640,1640;PD;SPB;SW1;PU1575,1680;PD;SPB;SW1;PU1420,1680;PD;SPB;SW1;PU1360,1635;PD;SPB;SW1;PU1315,1570;PD;SPB;SW1;PU1320,1420;PD;SPB;SW1;PU1355,1355;PD;SPB;SW1;PU1420,1315;PD;", + "_width": "410", + "_height": "410" + }, + "definition": "V", + "_RCID": "2248" + }, + { + "name": "OBSTRN02", + "description": "obstruction in the intertidal area", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "854", + "_y": "175" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1300", + "_y": "1300" + }, + "HPGL": "SPA;SW1;PU1500,1300;PD;SPA;SW1;PU1500,1700;PD;SPA;SW1;PU1700,1500;PD;SPA;SW1;PU1300,1500;PD;SPA;SW1;PU1580,1310;PD;SPA;SW1;PU1640,1360;PD;SPA;SW1;PU1685,1425;PD;SPA;SW1;PU1675,1585;PD;SPA;SW1;PU1640,1640;PD;SPA;SW1;PU1575,1680;PD;SPA;SW1;PU1420,1680;PD;SPA;SW1;PU1360,1635;PD;SPA;SW1;PU1315,1570;PD;SPA;SW1;PU1320,1420;PD;SPA;SW1;PU1355,1355;PD;SPA;SW1;PU1420,1315;PD;", + "_width": "400", + "_height": "400" + }, + "definition": "V", + "_RCID": "3130" + }, + { + "name": "OBSTRN03", + "description": "obstruction which covers and uncovers", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "877", + "_y": "175" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "ADEPITBCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1295", + "_y": "1295" + }, + "HPGL": "SPA;SW1;ST0;PU1500,1500;PM0;CI205;PM2;FP;SPB;SW1;PU1500,1300;PD;SPB;SW1;PU1500,1700;PD;SPB;SW1;PU1700,1500;PD;SPB;SW1;PU1300,1500;PD;SPB;SW1;PU1580,1310;PD;SPB;SW1;PU1640,1360;PD;SPB;SW1;PU1685,1425;PD;SPB;SW1;PU1675,1585;PD;SPB;SW1;PU1640,1640;PD;SPB;SW1;PU1575,1680;PD;SPB;SW1;PU1420,1680;PD;SPB;SW1;PU1360,1635;PD;SPB;SW1;PU1315,1570;PD;SPB;SW1;PU1320,1420;PD;SPB;SW1;PU1355,1355;PD;SPB;SW1;PU1420,1315;PD;", + "_width": "410", + "_height": "410" + }, + "definition": "V", + "_RCID": "3611" + }, + { + "name": "OBSTRN18", + "description": "obstruction in the water which is always above water level", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "3" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "900", + "_y": "175" + }, + "_width": "7", + "_height": "7" + }, + "color-ref": "BCSTLNALANDA", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "698", + "_y": "773" + }, + "origin": { + "_x": "598", + "_y": "672" + }, + "HPGL": "SPA;SW1;ST0;PU598,672;PM0;PD598,872;PD798,872;PD797,672;PD598,672;PM2;FP;SPB;SW2;PD598,872;PD798,872;PD797,672;PD598,672;", + "_width": "200", + "_height": "200" + }, + "definition": "V", + "_RCID": "3131" + }, + { + "name": "OFSPLF01", + "description": "offshore platform", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "917", + "_y": "175" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "550", + "_y": "550" + }, + "HPGL": "SPC;PU750,750;ST0;PM0;CI50;PM2;FP;SW2;PU550,550;PD950,550;PD950,950;PD550,950;PD550,550;", + "_width": "400", + "_height": "400" + }, + "definition": "V", + "_RCID": "1418" + }, + { + "name": "OSPONE02", + "description": "one minute mark for ownship vector", + "bitmap": { + "distance": { + "_min": "-2147483648", + "_max": "-2147483648" + }, + "pivot": { + "_x": "-2147483648", + "_y": "-2147483648" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "940", + "_y": "175" + }, + "_width": "13", + "_height": "2" + }, + "color-ref": "ASHIPS", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5033", + "_y": "2167" + }, + "origin": { + "_x": "4828", + "_y": "2167" + }, + "HPGL": "SPA;SW2;PU4828,2167;PD5222,2167;", + "_width": "394", + "_height": "0" + }, + "definition": "V", + "_RCID": "3600" + }, + { + "name": "OSPSIX02", + "description": "six minute mark for ownship vector", + "bitmap": { + "distance": { + "_min": "-2147483648", + "_max": "-2147483648" + }, + "pivot": { + "_x": "-2147483648", + "_y": "-2147483648" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "963", + "_y": "175" + }, + "_width": "13", + "_height": "2" + }, + "color-ref": "ASHIPS", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5384", + "_y": "2145" + }, + "origin": { + "_x": "5189", + "_y": "2146" + }, + "HPGL": "SPA;SW5;PU5189,2146;PD5586,2146;", + "_width": "397", + "_height": "0" + }, + "definition": "V", + "_RCID": "3601" + }, + { + "name": "OWNSHP01", + "description": "own ship symbol, constant size", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "14", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "986", + "_y": "175" + }, + "_width": "29", + "_height": "29" + }, + "color-ref": "ASHIPS", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1490", + "_y": "1497" + }, + "origin": { + "_x": "985", + "_y": "1009" + }, + "HPGL": "SPA;SW2;PU1481,1505;CI496;SPA;SW2;PU1481,1501;CI261;", + "_width": "992", + "_height": "992" + }, + "definition": "V", + "_RCID": "3191" + }, + { + "name": "OWNSHP05", + "description": "own ship drawn to scale with conning position marked", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "24" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1025", + "_y": "175" + }, + "_width": "13", + "_height": "49" + }, + "color-ref": "ASHIPS", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "674", + "_y": "1154" + }, + "origin": { + "_x": "474", + "_y": "316" + }, + "HPGL": "SPA;SW2;PU773,316;PD873,570;PD875,2004;PD475,2004;PD474,573;PD570,321;PD773,316;", + "_width": "401", + "_height": "1688" + }, + "definition": "V", + "_RCID": "2251" + }, + { + "name": "PASTRK01", + "description": "time mark on past track", + "bitmap": { + "distance": { + "_min": "-2147483648", + "_max": "-2147483648" + }, + "pivot": { + "_x": "-2147483648", + "_y": "-2147483648" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1048", + "_y": "175" + }, + "_width": "13", + "_height": "2" + }, + "color-ref": "APSTRK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "198", + "_y": "904" + }, + "origin": { + "_x": "0", + "_y": "905" + }, + "HPGL": "SPA;SW2;PU0,905;PD402,905;", + "_width": "402", + "_height": "0" + }, + "definition": "V", + "_RCID": "1422" + }, + { + "name": "PASTRK02", + "description": "time mark on secondary past track", + "bitmap": { + "distance": { + "_min": "-2147483648", + "_max": "-2147483648" + }, + "pivot": { + "_x": "-2147483648", + "_y": "-2147483648" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1071", + "_y": "175" + }, + "_width": "13", + "_height": "2" + }, + "color-ref": "ASYTRK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "198", + "_y": "904" + }, + "origin": { + "_x": "0", + "_y": "905" + }, + "HPGL": "SPA;SW2;PU0,905;PD402,905;", + "_width": "402", + "_height": "0" + }, + "definition": "V", + "_RCID": "1422" + }, + { + "name": "PILBOP02", + "description": "pilot boarding place", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1094", + "_y": "175" + }, + "_width": "16", + "_height": "16" + }, + "color-ref": "JCHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "600", + "_y": "837" + }, + "origin": { + "_x": "341", + "_y": "568" + }, + "HPGL": "SPJ;ST0;PU603,568;PM0;PD500,837,603,1100,712,837,603,568;PM2;FP;PU603,837;SW1;CI262;", + "_width": "524", + "_height": "532" + }, + "definition": "V", + "_RCID": "1423" + }, + { + "name": "PILPNT02", + "description": "pile or bollard", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "3" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1120", + "_y": "175" + }, + "_width": "7", + "_height": "7" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "650", + "_y": "650" + }, + "HPGL": "SPC;PU750,750;ST0;PM0;CI100;PM2;FP;", + "_width": "200", + "_height": "200" + }, + "definition": "V", + "_RCID": "1424" + }, + { + "name": "PLNPOS01", + "description": "surrounding ellipse for arrival date and time at planned position", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-1", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1137", + "_y": "175" + }, + "_width": "69", + "_height": "28" + }, + "color-ref": "kPLRTE", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2437", + "_y": "2343" + }, + "origin": { + "_x": "2493", + "_y": "2343" + }, + "HPGL": "SPk;SW1;PU2493,2793;PD2521,2671;PD2681,2521;PD2943,2418;PD3225,2371;PD3656,2343;PD4096,2371;PD4396,2418;PD4650,2521;PD4818,2671;PD4875,2793;PD4856,2962;PD4650,3093;PD4396,3187;PD4096,3262;PD3656,3262;PD3225,3262;PD2943,3196;PD2643,3093;PD2503,2971;PD2493,2793;", + "_width": "2382", + "_height": "919" + }, + "definition": "V", + "_RCID": "1425" + }, + { + "name": "PLNPOS02", + "description": "crossline for planned position", + "bitmap": { + "distance": { + "_min": "-2147483648", + "_max": "-2147483648" + }, + "pivot": { + "_x": "-2147483648", + "_y": "-2147483648" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1216", + "_y": "175" + }, + "_width": "13", + "_height": "2" + }, + "color-ref": "APLRTE", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "198", + "_y": "904" + }, + "origin": { + "_x": "0", + "_y": "905" + }, + "HPGL": "SPA;SW2;PU0,905;PD402,905;", + "_width": "402", + "_height": "0" + }, + "definition": "V", + "_RCID": "1426" + }, + { + "name": "PLNSPD03", + "description": "box for speed to make good, planned route", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-5", + "_y": "-3" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1239", + "_y": "175" + }, + "_width": "25", + "_height": "18" + }, + "color-ref": "APLRTE", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "900", + "_y": "750" + }, + "origin": { + "_x": "1074", + "_y": "864" + }, + "HPGL": "SPA;SW1;PU1074,1431;PD1076,864;PD1914,864;PD1914,1435;PD1074,1431;", + "_width": "840", + "_height": "571" + }, + "definition": "V", + "_RCID": "2090" + }, + { + "name": "PLNSPD04", + "description": "box for speed to make good, alternate route", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-5", + "_y": "-3" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1274", + "_y": "175" + }, + "_width": "25", + "_height": "18" + }, + "color-ref": "AAPLRT", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "900", + "_y": "750" + }, + "origin": { + "_x": "1074", + "_y": "864" + }, + "HPGL": "SPA;SW1;PU1074,1431;PD1076,864;PD1914,864;PD1914,1435;PD1074,1431;", + "_width": "840", + "_height": "571" + }, + "definition": "V", + "_RCID": "2091" + }, + { + "name": "POSGEN01", + "description": "position of a point feature", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1309", + "_y": "175" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "WLANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "550", + "_y": "550" + }, + "HPGL": "SPW;PU750,750;SW2;CI200;PU750,750;ST0;PM0;CI50;PM2;FP;", + "_width": "400", + "_height": "400" + }, + "definition": "V", + "_RCID": "1437" + }, + { + "name": "POSGEN03", + "description": "position of a conspicuous point feature", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1332", + "_y": "175" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "WCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "550", + "_y": "550" + }, + "HPGL": "SPW;PU750,750;SW2;CI200;PU750,750;ST0;PM0;CI50;PM2;FP;", + "_width": "400", + "_height": "400" + }, + "definition": "V", + "_RCID": "3004" + }, + { + "name": "POSGEN04", + "description": "position of an elevation or control point", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "3" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1355", + "_y": "175" + }, + "_width": "7", + "_height": "7" + }, + "color-ref": "WCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "650", + "_y": "650" + }, + "HPGL": "SPW;PU750,750;SW1;CI100;", + "_width": "200", + "_height": "200" + }, + "definition": "V", + "_RCID": "2092" + }, + { + "name": "POSITN02", + "description": "ownship position fix", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1372", + "_y": "175" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "fNINFO", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "1950", + "_y": "1950" + }, + "HPGL": "SPf;PU2250,2250;SW1;CI290;PU2250,1950;PD2250,2540;PU1950,2250;PD2540,2250;", + "_width": "590", + "_height": "590" + }, + "definition": "V", + "_RCID": "1439" + }, + { + "name": "PRCARE12", + "description": "point symbol for traffic precautionary area", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1400", + "_y": "175" + }, + "_width": "16", + "_height": "16" + }, + "color-ref": "ATRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "734", + "_y": "2077" + }, + "origin": { + "_x": "557", + "_y": "1784" + }, + "HPGL": "SPA;SW1;PU557,2287;PD923,2287;PD732,1784;PD560,2287;SPA;SW1;PU710,2216;PD765,2216;SPA;SW1;PU734,2160;PD734,1962;", + "_width": "366", + "_height": "503" + }, + "definition": "V", + "_RCID": "3189" + }, + { + "name": "PRCARE51", + "description": "traffic precautionary area", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "14", + "_y": "-25" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1422", + "_y": "175" + }, + "_width": "31", + "_height": "38" + }, + "color-ref": "ATRFCF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "731", + "_y": "374" + }, + "origin": { + "_x": "219", + "_y": "1258" + }, + "HPGL": "SPA;SW2;PU219,2559;PD741,1258;PD1261,2559;PD219,2559;SPA;SW4;PU738,2219;PD738,1754;SPA;SW2;PU671,2399;PD814,2399;", + "_width": "1042", + "_height": "1301" + }, + "definition": "V", + "_RCID": "3397" + }, + { + "name": "PRDINS02", + "description": "mine, quarry", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "239" + }, + "_width": "16", + "_height": "13" + }, + "color-ref": "WLANDFKCHBRN", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "495", + "_y": "475" + }, + "HPGL": "SPK;ST0;PU665,555;PM0;PD520,700,495,675,495,565,585,475,665,555;PM2;FP;PU830,560;PM0;PD910,475,1000,565,1000,670;PD970,700,830,560;PM2;FP;SPW;SW2;PU615,615;PD895,895;PU885,615;PD605,895;SW1;PU585,475;PD665,555;PD520,700;PD495,675;PD495,565;PD585,475;PU910,475;PD1000,565;PD1000,670;PD970,700;PD830,560;PD910,475;", + "_width": "505", + "_height": "420" + }, + "definition": "V", + "_RCID": "1441" + }, + { + "name": "PRICKE03", + "description": "withy, port-hand, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "36", + "_y": "239" + }, + "_width": "10", + "_height": "14" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "625", + "_y": "315" + }, + "HPGL": "SPC;SW1;PU650,750;PD859,750;PU750,750;PD750,550;PU625,528;PD687,600;PD750,618;PD825,612;PD890,581;PD918,550;PU678,393;PD725,431;PD756,437;PD809,434;PD859,390;PU790,315;PD778,350;PD756,437;PD750,550;", + "_width": "293", + "_height": "435" + }, + "definition": "V", + "_RCID": "1442" + }, + { + "name": "PRICKE04", + "description": "withy, starboard-hand, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "56", + "_y": "239" + }, + "_width": "9", + "_height": "14" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "609", + "_y": "306" + }, + "HPGL": "SPC;SW1;PU650,750;PD859,750;PU750,750;PD750,550;PU609,628;PD675,559;PD750,540;PD809,550;PD862,606;PU668,437;PD728,387;PD768,384;PD818,406;PD856,459;PU800,306;PD768,381;PD753,450;PD750,550;", + "_width": "253", + "_height": "444" + }, + "definition": "V", + "_RCID": "1443" + }, + { + "name": "QUAPOS01", + "description": "position approximate", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "5" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "75", + "_y": "239" + }, + "_width": "11", + "_height": "10" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "132", + "_y": "629" + }, + "origin": { + "_x": "0", + "_y": "473" + }, + "HPGL": "SPA;SW1;PU1,479;PD1,780;SPA;SW1;PU0,478;PD100,478;SPA;SW1;PU1,630;PD100,630;SPA;SW1;PU133,502;PD133,601;SPA;SW1;PU100,477;PD134,502;SPA;SW1;PU100,628;PD134,601;SPA;SW1;PU181,774;PD263,473;PD351,776;SPA;SW1;PU215,646;PD313,646;", + "_width": "351", + "_height": "307" + }, + "definition": "V", + "_RCID": "3370" + }, + { + "name": "QUARRY01", + "description": "quarry", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "96", + "_y": "239" + }, + "_width": "21", + "_height": "21" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "398", + "_y": "342" + }, + "HPGL": "SPA;SW1;ST0;PU665,555;PM0;PD520,700;PD495,675;PD495,565;PD585,475;PD665,555;PM2;FP;SPA;SW1;ST0;PU830,560;PM0;PD910,475;PD1000,565;PD1000,670;PD970,700;PD830,560;PM2;FP;SPA;SW2;PU615,615;PD895,895;SPA;SW2;PU885,615;PD605,895;SPA;SW1;PU585,475;PD665,555;PD520,700;PD495,675;PD495,565;PD585,475;SPA;SW1;PU910,475;PD1000,565;PD1000,670;PD970,700;PD830,560;PD910,475;SPA;SW1;PU734,678;CI336;", + "_width": "672", + "_height": "672" + }, + "definition": "V", + "_RCID": "3165" + }, + { + "name": "QUESMRK1", + "description": "object which is not sufficiently described to be symbolized, or for which no symbol exists in the symbol library", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "127", + "_y": "239" + }, + "_width": "8", + "_height": "14" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1678", + "_y": "1449" + }, + "origin": { + "_x": "1568", + "_y": "1227" + }, + "HPGL": "SPA;SW1;PU1568,1323;PD1581,1295;PD1594,1270;PD1611,1253;PD1628,1236;PD1654,1227;PD1677,1229;PD1707,1238;PD1735,1244;PD1758,1278;PD1776,1297;PD1788,1319;PD1788,1344;PD1776,1368;PD1763,1389;PD1743,1413;PD1720,1438;PD1699,1464;PD1686,1483;PD1675,1500;PD1673,1522;PD1673,1545;PD1673,1562;PD1675,1584;PD1675,1586;SPA;SW2;PU1654,1670;PD1720,1670;", + "_width": "220", + "_height": "443" + }, + "definition": "V", + "_RCID": "2094" + }, + { + "name": "RACNSP01", + "description": "symbol indicating this object is radar conspicuous", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "145", + "_y": "239" + }, + "_width": "19", + "_height": "19" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1108", + "_y": "1049" + }, + "origin": { + "_x": "804", + "_y": "744" + }, + "HPGL": "SPA;SW1;PU1110,1051;CI149;SPA;SW1;PU1111,902;PD1111,744;SPA;SW1;PU1110,1201;PD1110,1354;SPA;SW1;PU1260,1048;PD1410,1048;SPA;SW1;PU960,1049;PD804,1049;SPA;SW1;PU1214,1155;PD1324,1265;SPA;SW1;PU1322,840;PD1213,950;SPA;SW1;PU1002,1156;PD892,1266;SPA;SW1;PU896,839;PD1005,949;", + "_width": "606", + "_height": "610" + }, + "definition": "V", + "_RCID": "3132" + }, + { + "name": "RADRFL03", + "description": "radar reflector", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "174", + "_y": "239" + }, + "_width": "19", + "_height": "19" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1108", + "_y": "1049" + }, + "origin": { + "_x": "804", + "_y": "744" + }, + "HPGL": "SPA;SW1;PU1110,1051;CI149;SPA;SW1;PU1111,902;PD1111,744;SPA;SW1;PU1110,1201;PD1110,1354;SPA;SW1;PU1260,1048;PD1410,1048;SPA;SW1;PU960,1049;PD804,1049;SPA;SW1;PU1214,1155;PD1324,1265;SPA;SW1;PU1322,840;PD1213,950;SPA;SW1;PU1002,1156;PD892,1266;SPA;SW1;PU896,839;PD1005,949;", + "_width": "606", + "_height": "610" + }, + "definition": "V", + "_RCID": "3133" + }, + { + "name": "RASCAN01", + "description": "radar scanner", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "203", + "_y": "239" + }, + "_width": "13", + "_height": "17" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "748", + "_y": "750" + }, + "origin": { + "_x": "546", + "_y": "256" + }, + "HPGL": "SPA;SW1;PU750,750;CI50;SPA;SW1;PU635,747;PD635,395;SPA;SW1;PU851,745;PD851,395;PD678,395;SPA;SW1;PU703,748;PD568,748;SPA;SW1;PU800,746;PD936,746;SPA;SW1;PU681,395;PD635,395;SPA;SW1;PU742,391;PD742,257;SPA;SW2;PU546,256;PD944,256;", + "_width": "398", + "_height": "544" + }, + "definition": "V", + "_RCID": "3116" + }, + { + "name": "RASCAN11", + "description": "conspicuous radar scanner", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "226", + "_y": "239" + }, + "_width": "13", + "_height": "17" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "753", + "_y": "748" + }, + "origin": { + "_x": "546", + "_y": "256" + }, + "HPGL": "SPA;SW1;PU750,750;CI50;SPA;SW1;PU635,747;PD635,395;SPA;SW1;PU851,745;PD851,395;PD678,395;SPA;SW1;PU703,748;PD568,748;SPA;SW1;PU800,746;PD936,746;SPA;SW1;PU681,395;PD635,395;SPA;SW1;PU742,391;PD742,257;SPA;SW2;PU546,256;PD944,256;", + "_width": "398", + "_height": "544" + }, + "definition": "V", + "_RCID": "3124" + }, + { + "name": "RCLDEF01", + "description": "radio calling-in point whose direction is not known", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "18", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "249", + "_y": "239" + }, + "_width": "36", + "_height": "31" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "751", + "_y": "748" + }, + "origin": { + "_x": "751", + "_y": "748" + }, + "HPGL": "SPA;SW1;PU144,651;PD157,623;PD170,598;PD187,581;PD204,564;PD230,555;PD253,557;PD283,566;PD311,572;PD334,606;PD352,625;PD364,647;PD364,672;PD352,696;PD339,717;PD319,741;PD296,766;PD275,792;PD262,811;PD251,828;PD249,850;PD249,873;PD249,890;PD251,912;PD251,914;SPA;SW2;PU230,998;PD283,998;SPA;SW1;PU1133,651;PD1146,623;PD1159,598;PD1176,581;PD1193,564;PD1219,555;PD1242,557;PD1272,566;PD1300,572;PD1323,606;PD1341,625;PD1353,647;PD1353,672;PD1341,696;PD1328,717;PD1308,741;PD1285,766;PD1264,792;PD1251,811;PD1240,828;PD1238,850;PD1238,873;PD1238,890;PD1240,912;PD1240,914;SPA;SW2;PU1219,998;PD1272,998;SPA;SW2;PU750,750;CI218;SPA;SW2;PU580,589;PD752,231;PD923,589;SPA;SW2;PU920,914;PD742,1268;PD580,911;", + "_width": "1209", + "_height": "1037" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3430" + }, + { + "name": "RCTLPT52", + "description": "recommended traffic direction between parts of a traffic separation scheme, or for ships not needing a deep water route", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "295", + "_y": "239" + }, + "_width": "18", + "_height": "41" + }, + "color-ref": "ATRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2257", + "_y": "2077" + }, + "origin": { + "_x": "2257", + "_y": "2077" + }, + "HPGL": "SPA;SW3;PU2134,1545;PD2257,1383;PD2380,1545;SPA;SW3;PU2043,1661;PD1960,1777;PD2108,1777;SPA;SW3;PU2394,1773;PD2557,1773;PD2463,1650;SPA;SW3;PU2104,2585;PD2104,2773;PD2408,2773;PD2408,2588;SPA;SW3;PU2104,2435;PD2104,2278;SPA;SW3;PU2104,1937;PD2104,2087;SPA;SW3;PU2423,1929;PD2423,2075;SPA;SW3;PU2419,2270;PD2419,2422;", + "_width": "597", + "_height": "1390" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "2098" + }, + { + "name": "RDOCAL02", + "description": "radio calling-in point for traffic in one direction only", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "323", + "_y": "239" + }, + "_width": "14", + "_height": "22" + }, + "color-ref": "ATRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "750", + "_y": "750" + }, + "HPGL": "SPA;SW2;PU750,750;CI218;SPA;SW2;PU580,589;PD752,231;PD923,589;", + "_width": "436", + "_height": "737" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "2099" + }, + { + "name": "RDOCAL03", + "description": "radio calling-in point for traffic in both directions", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "347", + "_y": "239" + }, + "_width": "14", + "_height": "31" + }, + "color-ref": "ATRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "750", + "_y": "750" + }, + "HPGL": "SPA;SW2;PU750,750;CI218;SPA;SW2;PU580,589;PD752,231;PD923,589;SPA;SW2;PU920,914;PD742,1268;PD580,911;", + "_width": "436", + "_height": "1037" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3099" + }, + { + "name": "RDOSTA02", + "description": "radio station", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "371", + "_y": "239" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "453", + "_y": "455" + }, + "HPGL": "SPA;SW1;PU748,750;CI295;", + "_width": "590", + "_height": "590" + }, + "definition": "V", + "_RCID": "2100" + }, + { + "name": "RECDEF51", + "description": "recommended track as an area, direction not defined in data", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "27", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "399", + "_y": "239" + }, + "_width": "50", + "_height": "14" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2470", + "_y": "1413" + }, + "origin": { + "_x": "2470", + "_y": "1413" + }, + "HPGL": "SPA;SW1;PU1596,1415;PD1921,1415;SPA;SW1;PU3002,1415;PD3327,1415;SPA;SW1;PU2358,1275;PD2371,1247;PD2384,1222;PD2401,1205;PD2418,1188;PD2444,1179;PD2467,1181;PD2497,1190;PD2525,1196;PD2548,1230;PD2566,1249;PD2578,1271;PD2578,1296;PD2566,1320;PD2553,1341;PD2533,1365;PD2510,1390;PD2489,1416;PD2476,1435;PD2465,1452;PD2463,1474;PD2463,1497;PD2463,1514;PD2465,1536;PD2465,1538;SPA;SW2;PU2444,1622;PD2497,1622;SPA;SW1;PU2254,1570;PD2049,1415;PD2254,1260;SPA;SW1;PU2660,1566;PD2865,1411;PD2660,1256;", + "_width": "1731", + "_height": "443" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3340" + }, + { + "name": "RECTRC55", + "description": "recommended two-way track as an area, not based on fixed marks", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "24" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "459", + "_y": "239" + }, + "_width": "10", + "_height": "50" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2461", + "_y": "1413" + }, + "origin": { + "_x": "2461", + "_y": "1413" + }, + "HPGL": "SPA;SW1;PU2461,2279;PD2461,1954;SPA;SW1;PU2463,1577;PD2463,1253;SPA;SW1;PU2462,876;PD2461,551;SPA;SW1;PU2615,1576;PD2462,1781;PD2308,1578;SPA;SW1;PU2618,1253;PD2462,1048;PD2308,1253;", + "_width": "310", + "_height": "1728" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3341" + }, + { + "name": "RECTRC56", + "description": "recommended two-way track as an area, based on fixed marks", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "479", + "_y": "239" + }, + "_width": "10", + "_height": "44" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2377", + "_y": "1410" + }, + "origin": { + "_x": "2377", + "_y": "1410" + }, + "HPGL": "SPA;SW1;PU2534,1570;PD2379,1774;PD2225,1570;SPA;SW1;PU2535,1246;PD2380,1041;PD2225,1246;SPA;SW1;PU2378,665;PD2378,2151;", + "_width": "310", + "_height": "1486" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3342" + }, + { + "name": "RECTRC57", + "description": "recommended one-way track as an area, not based on fixed marks", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "499", + "_y": "239" + }, + "_width": "10", + "_height": "30" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2137", + "_y": "1415" + }, + "origin": { + "_x": "2137", + "_y": "1415" + }, + "HPGL": "SPA;SW1;PU2135,1945;PD2136,1621;SPA;SW1;PU2135,1245;PD2135,920;SPA;SW1;PU2289,1621;PD2135,1418;PD1981,1621;", + "_width": "308", + "_height": "1025" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3343" + }, + { + "name": "RECTRC58", + "description": "recommended one-way track as an area, based on fixed marks", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "18" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "519", + "_y": "239" + }, + "_width": "10", + "_height": "36" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2011", + "_y": "1416" + }, + "origin": { + "_x": "2011", + "_y": "1416" + }, + "HPGL": "SPA;SW1;PU2163,1499;PD2008,1294;PD1854,1499;SPA;SW1;PU2007,795;PD2007,2001;", + "_width": "309", + "_height": "1206" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3344" + }, + { + "name": "REFPNT02", + "description": "reference point, 'ghost cursor' (user interface)", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "539", + "_y": "239" + }, + "_width": "30", + "_height": "30" + }, + "color-ref": "fNINFO", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1550", + "_y": "1650" + }, + "origin": { + "_x": "1050", + "_y": "1150" + }, + "HPGL": "SPf;SW1;PU1050,1550;PD1450,1550;PD1450,1150;PU1050,1750;PD1450,1750;PD1450,2150;PU1650,1150;PD1650,1550;PD2050,1550;PU2050,1750;PD1650,1750;PD1650,2150;", + "_width": "1000", + "_height": "1000" + }, + "definition": "V", + "_RCID": "1451" + }, + { + "name": "RETRFL01", + "description": "retro reflector, paper chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "579", + "_y": "239" + }, + "_width": "7", + "_height": "11" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "1052", + "_y": "405" + }, + "HPGL": "SPA;SW1;PU1053,465;PD1255,465;SPA;SW1;PU1052,688;PD1254,688;SPA;SW1;PU1053,574;PD1255,574;SPA;SW1;PU1052,405;PD1052,752;", + "_width": "203", + "_height": "347" + }, + "definition": "V", + "_RCID": "3125" + }, + { + "name": "RETRFL02", + "description": "retro reflector, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-8", + "_y": "5" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "596", + "_y": "239" + }, + "_width": "7", + "_height": "11" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "700", + "_y": "700" + }, + "origin": { + "_x": "979", + "_y": "534" + }, + "HPGL": "SPA;SW1;PU979,594;PD1181,594;SPA;SW1;PU981,821;PD1183,821;SPA;SW1;PU981,709;PD1183,709;SPA;SW1;PU980,534;PD980,881;", + "_width": "204", + "_height": "347" + }, + "definition": "V", + "_RCID": "3126" + }, + { + "name": "RFNERY01", + "description": "refinery", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "10", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "613", + "_y": "239" + }, + "_width": "21", + "_height": "21" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1510", + "_y": "1265" + }, + "origin": { + "_x": "1169", + "_y": "912" + }, + "HPGL": "SPA;SW1;ST0;PU1450,1500;PM0;PD1450,1175;PD1550,1175;PD1550,1500;PD1537,1462;PD1500,1450;PD1468,1462;PD1450,1500;PM2;FP;SPA;SW2;PU1556,943;PD1525,962;PD1493,981;PD1468,1012;PD1450,1050;PD1450,1087;PD1456,1106;PD1481,1118;PD1512,1118;PD1531,1106;PD1543,1081;PD1537,1050;PD1525,1037;PD1525,1012;PD1525,987;PD1543,968;PD1556,943;SPA;SW1;PU1509,1252;CI340;SPA;SW2;PU1349,1496;PD1644,1496;", + "_width": "680", + "_height": "680" + }, + "definition": "V", + "_RCID": "3166" + }, + { + "name": "RFNERY11", + "description": "conspicuous refinery", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "10", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "644", + "_y": "239" + }, + "_width": "21", + "_height": "21" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1501", + "_y": "1270" + }, + "origin": { + "_x": "1169", + "_y": "912" + }, + "HPGL": "SPA;SW1;ST0;PU1450,1500;PM0;PD1450,1175;PD1550,1175;PD1550,1500;PD1537,1462;PD1500,1450;PD1468,1462;PD1450,1500;PM2;FP;SPA;SW2;PU1556,943;PD1525,962;PD1493,981;PD1468,1012;PD1450,1050;PD1450,1087;PD1456,1106;PD1481,1118;PD1512,1118;PD1531,1106;PD1543,1081;PD1537,1050;PD1525,1037;PD1525,1012;PD1525,987;PD1543,968;PD1556,943;SPA;SW1;PU1509,1252;CI340;SPA;SW2;PU1349,1496;PD1644,1496;", + "_width": "680", + "_height": "680" + }, + "definition": "V", + "_RCID": "3167" + }, + { + "name": "ROLROL01", + "description": "RoRo terminal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "675", + "_y": "239" + }, + "_width": "24", + "_height": "10" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "367", + "_y": "619" + }, + "origin": { + "_x": "0", + "_y": "477" + }, + "HPGL": "SPA;SW1;PU1,479;PD1,780;SPA;SW1;PU398,481;PD398,781;SPA;SW1;PU0,478;PD100,478;SPA;SW1;PU1,630;PD100,630;SPA;SW1;PU398,481;PD497,481;SPA;SW1;PU398,632;PD497,632;SPA;SW1;PU100,628;PD137,778;SPA;SW1;PU497,630;PD533,781;SPA;SW1;PU532,603;PD532,503;SPA;SW1;PU135,601;PD135,501;SPA;SW1;PU100,477;PD134,502;SPA;SW1;PU100,628;PD134,601;SPA;SW1;PU497,630;PD532,604;SPA;SW1;PU496,480;PD532,505;SPA;SW1;PU261,702;CI74;SPA;SW1;PU647,702;CI73;", + "_width": "720", + "_height": "304" + }, + "definition": "V", + "_RCID": "3368" + }, + { + "name": "RSCSTA02", + "description": "rescue station", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "707", + "_y": "239" + }, + "_width": "15", + "_height": "13" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "301", + "_y": "750" + }, + "origin": { + "_x": "50", + "_y": "550" + }, + "HPGL": "SPA;SW1;ST0;PU300,550;PM0;PD200,750;PD300,950;PD400,750;PD300,550;PM2;FP;SPA;SW1;PU50,750;PD50,750;PD200,750;PD300,750;PD350,750;PD500,750;PD550,750;PD550,750;", + "_width": "500", + "_height": "400" + }, + "definition": "V", + "_RCID": "1452" + }, + { + "name": "RSRDEF51", + "description": "area in which undefined restrictions exist", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "57", + "_y": "25" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "732", + "_y": "239" + }, + "_width": "29", + "_height": "29" + }, + "color-ref": "ATRFCFDCHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2265", + "_y": "2721" + }, + "origin": { + "_x": "286", + "_y": "1837" + }, + "HPGL": "SPA;SW3;PU785,2462;PD785,1997;SPA;SW2;PU718,2642;PD861,2642;SPA;SW2;PU783,2334;CI497;", + "_width": "1319", + "_height": "994" + }, + "definition": "V", + "_RCID": "3408" + }, + { + "name": "RTLDEF51", + "description": "recommended route between parts of a traffic separation scheme, or for ships not needing a deep water route, with the direction not specified in the data", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "18", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "771", + "_y": "239" + }, + "_width": "35", + "_height": "41" + }, + "color-ref": "ATRFCDICHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2257", + "_y": "2077" + }, + "origin": { + "_x": "2257", + "_y": "2077" + }, + "HPGL": "SPA;SW2;PU2134,1545;PD2257,1383;PD2380,1545;SPA;SW2;PU2043,1661;PD1960,1777;PD2108,1777;SPA;SW2;PU2394,1773;PD2557,1773;PD2463,1650;SPA;SW2;PU2104,2585;PD2104,2773;PD2408,2773;PD2408,2588;SPA;SW2;PU2104,2435;PD2104,2278;SPA;SW2;PU2104,1937;PD2104,2087;SPA;SW2;PU2423,1929;PD2423,2075;SPA;SW2;PU2419,2270;PD2419,2422;SPI;SW1;PU1639,2104;PD1652,2076;PD1665,2051;PD1682,2034;PD1699,2017;PD1725,2008;PD1748,2010;PD1778,2019;PD1806,2025;PD1829,2059;PD1847,2078;PD1859,2100;PD1859,2125;PD1847,2149;PD1834,2170;PD1814,2194;PD1791,2219;PD1770,2245;PD1757,2264;PD1746,2281;PD1744,2303;PD1744,2326;PD1744,2343;PD1746,2365;PD1746,2367;SPI;SW2;PU1725,2451;PD1778,2451;SPI;SW1;PU2596,2102;PD2609,2074;PD2622,2049;PD2639,2032;PD2656,2015;PD2682,2006;PD2705,2008;PD2735,2017;PD2763,2023;PD2786,2057;PD2804,2076;PD2816,2098;PD2816,2123;PD2804,2147;PD2791,2168;PD2771,2192;PD2748,2217;PD2727,2243;PD2714,2262;PD2703,2279;PD2701,2301;PD2701,2324;PD2701,2341;PD2703,2363;PD2703,2365;SPI;SW2;PU2682,2449;PD2735,2449;", + "_width": "1177", + "_height": "1390" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3409" + }, + { + "name": "RTPBCN02", + "description": "radar transponder beacon", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "10", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "816", + "_y": "239" + }, + "_width": "20", + "_height": "19" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "720", + "_y": "806" + }, + "origin": { + "_x": "399", + "_y": "502" + }, + "HPGL": "SPA;SW2;PU1019,705;PD1042,808;PD1021,916;SPA;SW2;PU420,707;PD399,808;PD420,913;SPA;SW2;PU657,1110;PD556,1060;PD496,990;SPA;SW2;PU802,1104;PD893,1058;PD959,988;SPA;SW2;PU657,502;PD556,554;PD492,618;SPA;SW2;PU804,506;PD899,558;PD959,622;", + "_width": "643", + "_height": "608" + }, + "definition": "V", + "_RCID": "2259" + }, + { + "name": "SCALEB10", + "description": "one mile scalebar for display scales larger than 1/80,000", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "0", + "_y": "58" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "846", + "_y": "239" + }, + "_width": "2", + "_height": "58" + }, + "color-ref": "ASCLBRDCHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1150", + "_y": "3055" + }, + "origin": { + "_x": "1150", + "_y": "1055" + }, + "HPGL": "SPD;SW4;PU1150,1255;PD1150,1055;SPA;SW4;PU1150,1455;PD1150,1255;SPD;SW4;PU1150,1655;PD1150,1455;SPA;SW4;PU1150,1855;PD1150,1655;SPD;SW4;PU1150,2055;PD1150,1855;SPA;SW4;PU1150,2255;PD1150,2055;SPD;SW4;PU1150,2455;PD1150,2255;SPA;SW4;PU1150,2655;PD1150,2455;SPD;SW4;PU1150,2855;PD1150,2655;SPA;SW4;PU1150,3055;PD1150,2855;", + "_width": "1", + "_height": "2000" + }, + "definition": "V", + "_RCID": "2105" + }, + { + "name": "SCALEB11", + "description": "10 mile latitude scale for display scales smaller than 1/80,000", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "0", + "_y": "58" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "858", + "_y": "239" + }, + "_width": "2", + "_height": "58" + }, + "color-ref": "ASNDG2DSNDG1", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1150", + "_y": "3055" + }, + "origin": { + "_x": "1150", + "_y": "1055" + }, + "HPGL": "SPA;SW4;PU1150,1055;PD1150,1455;SPD;SW4;PU1150,1455;PD1150,1855;SPA;SW4;PU1150,1855;PD1150,2255;SPD;SW4;PU1150,2255;PD1150,2655;SPA;SW4;PU1150,2655;PD1150,3055;", + "_width": "1", + "_height": "2000" + }, + "definition": "V", + "_RCID": "2106" + }, + { + "name": "SILBUI01", + "description": "silo", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "5" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "870", + "_y": "239" + }, + "_width": "10", + "_height": "10" + }, + "color-ref": "WLANDFKCHBRN", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "600", + "_y": "600" + }, + "HPGL": "SPK;PU750,750;ST0;PM0;CI150;PM2;FP;SPW;PU750,750;SW2;CI150;", + "_width": "300", + "_height": "300" + }, + "definition": "V", + "_RCID": "1458" + }, + { + "name": "SILBUI11", + "description": "conspicuous silo", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "5" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "890", + "_y": "239" + }, + "_width": "10", + "_height": "10" + }, + "color-ref": "WLANDFCCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "600", + "_y": "600" + }, + "HPGL": "SPW;PU750,750;ST0;PM0;CI150;PM2;FP;SPC;PU750,750;SW2;CI150;", + "_width": "300", + "_height": "300" + }, + "definition": "V", + "_RCID": "1459" + }, + { + "name": "SISTAT02", + "description": "signal station", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "0", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "910", + "_y": "239" + }, + "_width": "20", + "_height": "13" + }, + "color-ref": "ACHWHTBLANDFCCHMGF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "484", + "_y": "758" + }, + "origin": { + "_x": "460", + "_y": "734" + }, + "HPGL": "SPA;SW1;ST0;PU500,787;PM0;PD1100,787;PD1100,1159;PD500,1159;PD500,787;PM2;FP;SPC;SW2;PU1100,787;PD1100,1159;PD500,1159;PD500,787;SPC;SW2;PU725,875;PD700,850;PD650,850;PD625,875;PD625,925;PD650,950;PD690,950;PD725,975;PD725,1025;PD700,1059;PD634,1059;PD606,1028;SPC;SW2;PU975,875;PD950,850;PD900,850;PD875,875;PD875,925;PD903,950;PD940,950;PD975,975;PD975,1028;PD950,1053;PD884,1053;PD856,1025;SPC;SW2;PU500,787;PD1100,787;SPB;SW1;ST0;PU485,759;PM0;CI25;PM2;FP;", + "_width": "640", + "_height": "425" + }, + "definition": "V", + "_RCID": "2107" + }, + { + "name": "SMCFAC02", + "description": "yacht harbour, marina", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "10", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "940", + "_y": "239" + }, + "_width": "21", + "_height": "21" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "410", + "_y": "405" + }, + "HPGL": "SPA;SW1;PU830,420;PD750,545;PD750,930;PD1050,865;PD1020,840;PD990,815;PD960,785;PD930,745;PD905,705;PD880,665;PD860,620;PD845,570;PD835,525;PD830,480;PD830,450;PD830,425;PD830,420;SPA;SW1;PU750,505;PD720,515;PD690,540;PD665,555;PD640,580;PD620,605;PD600,635;PD580,660;PD565,695;PD550,730;PD540,760;PD535,800;PD530,840;PD530,895;PD535,925;PD535,965;PD545,950;PD570,925;PD590,905;PD620,890;PD655,880;PD675,875;PD705,875;PD690,855;PD675,825;PD660,780;PD655,750;PD655,725;PD655,700;PD655,670;PD665,635;PD675,600;PD695,570;PD710,545;PD730,520;PD745,505;PD750,505;SPA;SW1;PU750,750;CI340;SPA;SW1;PU750,405;PD750,990;SPA;SW1;PU508,989;PD989,989;", + "_width": "680", + "_height": "685" + }, + "definition": "V", + "_RCID": "2108" + }, + { + "name": "SNDWAV02", + "description": "sand waves", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "3" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "971", + "_y": "239" + }, + "_width": "35", + "_height": "6" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "617", + "_y": "417" + }, + "origin": { + "_x": "37", + "_y": "316" + }, + "HPGL": "SPA;SW1;PU37,495;PD121,495;PD163,473;PD228,328;PD263,328;PD320,473;PD347,495;PD523,495;PD554,468;PD600,331;PD626,331;PD677,468;PD710,495;PD856,495;PD906,495;PD937,476;PD998,316;PD1036,316;PD1093,473;PD1132,495;PD1216,495;", + "_width": "1179", + "_height": "179" + }, + "definition": "V", + "_RCID": "1462" + }, + { + "name": "SOUNDGB1", + "definition": "V", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "750", + "_y": "750" + }, + "HPGL": "SPY;SW1;PU340,928;PD340,1059;PD971,1059;PD971,928;", + "_width": "631", + "_height": "131" + }, + "description": "symbol for swept sounding, used for deep soundings greater than safety depth", + "color-ref": "YSNDG1", + "_RCID": "1524" + }, + { + "name": "SOUNDGC2", + "definition": "V", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7350", + "_y": "1546" + }, + "origin": { + "_x": "7350", + "_y": "1546" + }, + "HPGL": "SPA;SW1;PU7350,1546;CI427;", + "_width": "854", + "_height": "854" + }, + "description": "sounding of low accuracy", + "color-ref": "ASNDG1", + "_RCID": "3422" + }, + { + "name": "SOUNDSA1", + "definition": "V", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "730", + "_y": "750" + }, + "HPGL": "SPZ;SW1;PU525,970;PD730,970;", + "_width": "205", + "_height": "1" + }, + "description": "symbol for drying height, used for shallow soundings, less than or equal to safety depth", + "color-ref": "ZSNDG2", + "_RCID": "1586" + }, + { + "name": "SOUNDSB1", + "definition": "V", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "750", + "_y": "750" + }, + "HPGL": "SPZ;SW1;PU340,928;PD340,1059;PD971,1059;PD971,928;", + "_width": "631", + "_height": "131" + }, + "description": "symbol for swept sounding, used for shallow soundings, less than or equal to safety depth", + "color-ref": "ZSNDG2", + "_RCID": "1587" + }, + { + "name": "SOUNDSC2", + "definition": "V", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7350", + "_y": "1546" + }, + "origin": { + "_x": "7350", + "_y": "1546" + }, + "HPGL": "SPA;SW1;PU7350,1546;CI427;", + "_width": "854", + "_height": "854" + }, + "description": "sounding of low accuracy", + "color-ref": "ASNDG1", + "_RCID": "3423" + }, + { + "name": "SPRING02", + "description": "spring", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1016", + "_y": "239" + }, + "_width": "10", + "_height": "11" + }, + "color-ref": "ECHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1350", + "_y": "1150" + }, + "HPGL": "SPE;SW3;PU1500,1500;PD;PU1550,1500;PD;PU1600,1500;PD;PU1450,1500;PD;PU1400,1500;PD;PU1500,1450;PD;PU1500,1400;PD;PU1500,1350;PD;PU1500,1300;PD;PU1500,1250;PD;PU1500,1200;PD;PU1550,1150;PD;PU1600,1150;PD;PU1650,1200;PD;PU1650,1250;PD;PU1450,1150;PD;PU1400,1150;PD;PU1350,1200;PD;PU1350,1250;PD;", + "_width": "300", + "_height": "350" + }, + "definition": "V", + "_RCID": "1589" + }, + { + "name": "SWPARE51", + "description": "swept area", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "18", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1036", + "_y": "239" + }, + "_width": "33", + "_height": "10" + }, + "color-ref": "ACHGRF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "651", + "_y": "1177" + }, + "origin": { + "_x": "91", + "_y": "869" + }, + "HPGL": "SPA;SW3;PU91,872;PD91,1173;PD1192,1173;PD1192,869;", + "_width": "1101", + "_height": "304" + }, + "definition": "V", + "_RCID": "3410" + }, + { + "name": "TIDCUR01", + "description": "predicted tidal stream or current direction", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "18" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1079", + "_y": "239" + }, + "_width": "13", + "_height": "44" + }, + "color-ref": "ANINFO", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1636", + "_y": "2287" + }, + "origin": { + "_x": "1636", + "_y": "2287" + }, + "HPGL": "SPA;SW1;PU1442,2172;PD1638,1972;PD1840,2175;SPA;SW1;PU1438,2474;PD1638,2275;PD1840,2474;SPA;SW1;PU1638,1683;PD1638,1879;SPA;SW1;PU1638,1976;PD1638,2168;SPA;SW1;PU1638,2275;PD1638,2477;SPA;SW1;PU1435,1866;PD1638,1667;PD1843,1876;SPA;SW1;PU1637,2952;PD1638,3152;SPA;SW1;PU1637,2619;PD1638,2819;", + "_width": "408", + "_height": "1485" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "2262" + }, + { + "name": "TIDCUR02", + "description": "actual tidal stream or current direction", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "18" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1102", + "_y": "239" + }, + "_width": "13", + "_height": "36" + }, + "color-ref": "fNINFO", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "2250", + "_y": "2250" + }, + "HPGL": "SPf;SW1;PU2343,1650;PD2343,1650;PU2250,1650;PD2250,2850;PU2250,1650;PD2043,1846;PU2250,1650;PD2446,1846;PU2250,2146;PD2043,2343;PU2250,2146;PD2446,2343;PU2250,1884;PD2043,2090;PU2250,1893;PD2446,2100;", + "_width": "403", + "_height": "1200" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "1591" + }, + { + "name": "TIDCUR03", + "description": "box for current strength", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "34", + "_y": "-17" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1125", + "_y": "239" + }, + "_width": "25", + "_height": "15" + }, + "color-ref": "fNINFO", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "1181", + "_y": "2803" + }, + "HPGL": "SPf;SW1;PU1181,2803;PD1996,2803;PU1181,3271;PD1996,3271;PU1996,2803;PD1996,3271;PU1181,2803;PD1181,3271;", + "_width": "815", + "_height": "468" + }, + "definition": "V", + "_RCID": "1592" + }, + { + "name": "TIDEHT01", + "description": "point for which tide height information is available", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "5" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1160", + "_y": "239" + }, + "_width": "27", + "_height": "11" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "707", + "_y": "750" + }, + "origin": { + "_x": "311", + "_y": "581" + }, + "HPGL": "SPA;SW1;PU311,749;PD1195,749;SPA;SW1;PU383,748;PD383,724;PD390,693;PD405,660;PD427,632;PD456,610;PD490,594;PD523,583;PD554,581;PD587,588;PD617,598;PD645,615;PD668,634;PD690,666;PD707,704;PD707,733;PD707,748;PD707,774;PD712,803;PD719,826;PD734,855;PD764,880;PD776,890;PD793,900;PD813,909;PD844,915;PD879,917;PD918,909;PD947,896;PD980,875;PD1004,851;PD1023,817;PD1034,785;PD1039,768;PD1039,748;", + "_width": "884", + "_height": "336" + }, + "definition": "V", + "_RCID": "3188" + }, + { + "name": "TIDSTR01", + "description": "point or area for which a tidal stream table is available", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1197", + "_y": "239" + }, + "_width": "17", + "_height": "17" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "741", + "_y": "747" + }, + "origin": { + "_x": "461", + "_y": "466" + }, + "HPGL": "SPA;SW1;PU461,749;PD744,466;PD1027,749;PD742,1026;PD461,749;", + "_width": "566", + "_height": "560" + }, + "definition": "V", + "_RCID": "3136" + }, + { + "name": "TMARDEF1", + "description": "topmark for beacons, flag or other shape, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "0", + "_y": "29" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1224", + "_y": "239" + }, + "_width": "2", + "_height": "11" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1432", + "_y": "1598" + }, + "origin": { + "_x": "1424", + "_y": "661" + }, + "HPGL": "SPA;SW2;PU1424,1008;PD1424,661;", + "_width": "0", + "_height": "347" + }, + "definition": "V", + "_RCID": "3106" + }, + { + "name": "TMARDEF2", + "description": "topmark for buoys, flag or other shape, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "28" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1236", + "_y": "239" + }, + "_width": "5", + "_height": "12" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1507", + "_y": "1603" + }, + "origin": { + "_x": "1574", + "_y": "737" + }, + "HPGL": "SPA;SW2;PU1574,1101;PD1710,737;", + "_width": "136", + "_height": "364" + }, + "definition": "V", + "_RCID": "3107" + }, + { + "name": "TMBYRD01", + "description": "timber yard", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1251", + "_y": "239" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "WLANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "550", + "_y": "550" + }, + "HPGL": "SPW;SW2;PU550,650;PD950,650;PU550,850;PD950,850;PU650,550;PD650,950;PU850,550;PD850,950;", + "_width": "400", + "_height": "400" + }, + "definition": "V", + "_RCID": "1347" + }, + { + "name": "TNKCON02", + "description": "tank", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1274", + "_y": "239" + }, + "_width": "9", + "_height": "9" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1498", + "_y": "1498" + }, + "origin": { + "_x": "1356", + "_y": "1357" + }, + "HPGL": "SPA;SW2;PU1498,1499;CI142;", + "_width": "284", + "_height": "284" + }, + "definition": "V", + "_RCID": "2121" + }, + { + "name": "TNKCON12", + "description": "conspicuous tank", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1293", + "_y": "239" + }, + "_width": "9", + "_height": "9" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1498", + "_y": "1498" + }, + "origin": { + "_x": "1356", + "_y": "1357" + }, + "HPGL": "SPA;SW2;PU1498,1499;CI142;", + "_width": "284", + "_height": "284" + }, + "definition": "V", + "_RCID": "2122" + }, + { + "name": "TNKFRM01", + "description": "tank farm", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1312", + "_y": "239" + }, + "_width": "23", + "_height": "23" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1127", + "_y": "1685" + }, + "origin": { + "_x": "737", + "_y": "1285" + }, + "HPGL": "SPA;SW1;ST0;PU1016,1574;PM0;CI97;PM2;FP;SPA;SW1;ST0;PU1018,1800;PM0;CI97;PM2;FP;SPA;SW1;ST0;PU1232,1794;PM0;CI90;PM2;FP;SPA;SW1;ST0;PU1237,1576;PM0;CI97;PM2;FP;SPA;SW1;PU1120,1668;CI383;", + "_width": "766", + "_height": "766" + }, + "definition": "V", + "_RCID": "3168" + }, + { + "name": "TNKFRM11", + "description": "conspicuous tank farm", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1345", + "_y": "239" + }, + "_width": "23", + "_height": "23" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1132", + "_y": "1690" + }, + "origin": { + "_x": "740", + "_y": "1285" + }, + "HPGL": "SPA;SW1;ST0;PU1019,1574;PM0;CI97;PM2;FP;SPA;SW1;ST0;PU1021,1800;PM0;CI97;PM2;FP;SPA;SW1;ST0;PU1235,1794;PM0;CI90;PM2;FP;SPA;SW1;ST0;PU1240,1576;PM0;CI97;PM2;FP;SPA;SW1;PU1123,1668;CI383;", + "_width": "766", + "_height": "766" + }, + "definition": "V", + "_RCID": "3170" + }, + { + "name": "TOPMAR02", + "description": "topmark for buoys, cone point up, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1", + "_y": "24" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1378", + "_y": "239" + }, + "_width": "8", + "_height": "6" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1510", + "_y": "1460" + }, + "origin": { + "_x": "1520", + "_y": "785" + }, + "HPGL": "SPC;ST0;PU1665,785;PM0;PD1520,950,1730,950,1665,785;PM2;FP;", + "_width": "210", + "_height": "165" + }, + "definition": "V", + "_RCID": "1595" + }, + { + "name": "TOPMAR04", + "description": "topmark for buoys, cone point down, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-1", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1395", + "_y": "239" + }, + "_width": "8", + "_height": "6" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1515", + "_y": "1470" + }, + "origin": { + "_x": "1560", + "_y": "785" + }, + "HPGL": "SPC;ST0;PU1560,785;PM0;PD1780,785,1620,940,1560,785;PM2;FP;", + "_width": "220", + "_height": "155" + }, + "definition": "V", + "_RCID": "1596" + }, + { + "name": "TOPMAR05", + "description": "topmark for buoys, 2 cones point upward, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "0", + "_y": "29" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1413", + "_y": "239" + }, + "_width": "9", + "_height": "13" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1505", + "_y": "1470" + }, + "origin": { + "_x": "1515", + "_y": "545" + }, + "HPGL": "SPC;ST0;PU1665,770;PM0;PD1515,950,1750,950,1665,770;PM2;FP;PU1715,545;PM0;PD1565,730,1790,730,1715,545;PM2;FP;", + "_width": "275", + "_height": "405" + }, + "definition": "V", + "_RCID": "1597" + }, + { + "name": "TOPMAR06", + "description": "topmark for buoys, 2 cones point downward, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-1", + "_y": "29" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1432", + "_y": "239" + }, + "_width": "10", + "_height": "12" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1510", + "_y": "1470" + }, + "origin": { + "_x": "1555", + "_y": "565" + }, + "HPGL": "SPC;ST0;PU1555,775;PM0;PD1790,775,1615,935,1555,775;PM2;FP;PU1600,565;PM0;PD1835,565,1665,725,1600,565;PM2;FP;", + "_width": "280", + "_height": "370" + }, + "definition": "V", + "_RCID": "1598" + }, + { + "name": "TOPMAR07", + "description": "topmark for buoys, 2 cones base to base, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "0", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1452", + "_y": "239" + }, + "_width": "8", + "_height": "13" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1505", + "_y": "1470" + }, + "origin": { + "_x": "1550", + "_y": "555" + }, + "HPGL": "SPC;ST0;PU1550,785;PM0;PD1785,785,1615,950,1550,785;PM2;FP;PU1700,555;PM0;PD1570,730,1790,730,1700,555;PM2;FP;", + "_width": "240", + "_height": "395" + }, + "definition": "V", + "_RCID": "1599" + }, + { + "name": "TOPMAR08", + "description": "topmark for buoys, 2 cones point to point, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1", + "_y": "28" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "307" + }, + "_width": "11", + "_height": "12" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1505", + "_y": "1470" + }, + "origin": { + "_x": "1510", + "_y": "565" + }, + "HPGL": "SPC;ST0;PU1665,770;PM0;PD1510,950,1750,950,1665,770;PM2;FP;PU1595,565;PM0;PD1840,565,1670,730,1595,565;PM2;FP;", + "_width": "330", + "_height": "385" + }, + "definition": "V", + "_RCID": "1600" + }, + { + "name": "TOPMAR10", + "description": "topmark for buoys, sphere, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-1", + "_y": "25" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "31", + "_y": "307" + }, + "_width": "7", + "_height": "7" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1515", + "_y": "1470" + }, + "origin": { + "_x": "1550", + "_y": "775" + }, + "HPGL": "SPC;PU1640,865;ST0;PM0;CI90;PM2;FP;", + "_width": "180", + "_height": "180" + }, + "definition": "V", + "_RCID": "1601" + }, + { + "name": "TOPMAR12", + "description": "topmark for buoys, 2 spheres, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-1", + "_y": "29" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "48", + "_y": "307" + }, + "_width": "8", + "_height": "13" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1510", + "_y": "1470" + }, + "origin": { + "_x": "1550", + "_y": "555" + }, + "HPGL": "SPC;PU1640,865;ST0;PM0;CI90;PM2;FP;PU1680,645;PM0;CI90;PM2;FP;", + "_width": "220", + "_height": "400" + }, + "definition": "V", + "_RCID": "1602" + }, + { + "name": "TOPMAR13", + "description": "topmark for buoys, cylinder, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "0", + "_y": "25" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "66", + "_y": "307" + }, + "_width": "7", + "_height": "8" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1505", + "_y": "1475" + }, + "origin": { + "_x": "1535", + "_y": "730" + }, + "HPGL": "SPC;SW2;PU1535,950;PD1685,950;PD1750,730;PD1590,730;PD1535,950;", + "_width": "215", + "_height": "220" + }, + "definition": "V", + "_RCID": "1603" + }, + { + "name": "TOPMAR14", + "description": "topmark for buoys, board, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2", + "_y": "24" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "83", + "_y": "307" + }, + "_width": "8", + "_height": "8" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1480" + }, + "origin": { + "_x": "1510", + "_y": "810" + }, + "HPGL": "SPC;SW2;PU1510,950;PD1720,950;PD1750,810;PD1540,810;PD1510,950;", + "_width": "240", + "_height": "140" + }, + "definition": "V", + "_RCID": "1604" + }, + { + "name": "TOPMAR16", + "description": "topmark for buoys, cube point up, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-1", + "_y": "25" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "101", + "_y": "307" + }, + "_width": "7", + "_height": "7" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1470" + }, + "origin": { + "_x": "1530", + "_y": "765" + }, + "HPGL": "SPC;SW2;PU1530,840;PD1610,960;PD1735,885;PD1660,765;PU1530,840;PD1655,765;", + "_width": "205", + "_height": "195" + }, + "definition": "V", + "_RCID": "1606" + }, + { + "name": "TOPMAR17", + "description": "topmark for buoys, flag or other shape, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "118", + "_y": "307" + }, + "_width": "13", + "_height": "9" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1507", + "_y": "1603" + }, + "origin": { + "_x": "1422", + "_y": "843" + }, + "HPGL": "SPA;SW2;PU1422,961;PD1843,961;SPA;SW2;PU1670,843;PD1574,1106;", + "_width": "421", + "_height": "263" + }, + "definition": "V", + "_RCID": "3108" + }, + { + "name": "TOPMAR18", + "description": "topmark for buoys, T-Shape, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "141", + "_y": "307" + }, + "_width": "13", + "_height": "9" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1507", + "_y": "1603" + }, + "origin": { + "_x": "1455", + "_y": "843" + }, + "HPGL": "SPA;SW2;PU1455,844;PD1876,844;SPA;SW2;PU1670,843;PD1574,1106;", + "_width": "421", + "_height": "263" + }, + "definition": "V", + "_RCID": "3383" + }, + { + "name": "TOPMAR22", + "description": "topmark for beacons, cone point up, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "25" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "164", + "_y": "307" + }, + "_width": "8", + "_height": "6" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1475" + }, + "origin": { + "_x": "1390", + "_y": "745" + }, + "HPGL": "SPC;ST0;PU1500,745;PM0;PD1390,920,1610,920,1500,745;PM2;FP;", + "_width": "220", + "_height": "175" + }, + "definition": "V", + "_RCID": "1607" + }, + { + "name": "TOPMAR24", + "description": "topmark for beacons, cone point down, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "25" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "182", + "_y": "307" + }, + "_width": "8", + "_height": "6" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1470" + }, + "origin": { + "_x": "1390", + "_y": "750" + }, + "HPGL": "SPC;ST0;PU1390,750;PM0;PD1610,750,1500,920,1390,750;PM2;FP;", + "_width": "220", + "_height": "170" + }, + "definition": "V", + "_RCID": "1608" + }, + { + "name": "TOPMAR25", + "description": "topmark for beacons, 2 cones point upward, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "200", + "_y": "307" + }, + "_width": "8", + "_height": "13" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1470" + }, + "origin": { + "_x": "1390", + "_y": "525" + }, + "HPGL": "SPC;ST0;PU1500,525;PM0;PD1390,700,1610,700,1500,525;PM2;FP;PU1500,745;PM0;PD1390,920,1610,920,1500,745;PM2;FP;", + "_width": "220", + "_height": "395" + }, + "definition": "V", + "_RCID": "1609" + }, + { + "name": "TOPMAR26", + "description": "topmark for beacons, 2 cones point downward, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "218", + "_y": "307" + }, + "_width": "8", + "_height": "13" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1460" + }, + "origin": { + "_x": "1390", + "_y": "530" + }, + "HPGL": "SPC;ST0;PU1390,750;PM0;PD1610,750,1500,920,1390,750;PM2;FP;PU1390,530;PM0;PD1610,530,1500,700,1390,530;PM2;FP;", + "_width": "220", + "_height": "390" + }, + "definition": "V", + "_RCID": "1610" + }, + { + "name": "TOPMAR27", + "description": "topmark for beacons, 2 cones base to base, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "236", + "_y": "307" + }, + "_width": "8", + "_height": "13" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1475" + }, + "origin": { + "_x": "1390", + "_y": "525" + }, + "HPGL": "SPC;ST0;PU1500,525;PM0;PD1390,700,1610,700,1500,525;PM2;FP;PU1390,750;PM0;PD1610,750,1500,920,1390,750;PM2;FP;", + "_width": "220", + "_height": "395" + }, + "definition": "V", + "_RCID": "1611" + }, + { + "name": "TOPMAR28", + "description": "topmark for beacons, 2 cones point to point, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "254", + "_y": "307" + }, + "_width": "8", + "_height": "13" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1470" + }, + "origin": { + "_x": "1390", + "_y": "530" + }, + "HPGL": "SPC;ST0;PU1390,530;PM0;PD1610,530,1500,700,1390,530;PM2;FP;PU1500,745;PM0;PD1390,920,1610,920,1500,745;PM2;FP;", + "_width": "220", + "_height": "390" + }, + "definition": "V", + "_RCID": "1612" + }, + { + "name": "TOPMAR30", + "description": "topmark for beacons, sphere, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "25" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "272", + "_y": "307" + }, + "_width": "8", + "_height": "8" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1480" + }, + "origin": { + "_x": "1390", + "_y": "730" + }, + "HPGL": "SPC;PU1500,840;ST0;PM0;CI110;PM2;FP;", + "_width": "220", + "_height": "220" + }, + "definition": "V", + "_RCID": "1613" + }, + { + "name": "TOPMAR32", + "description": "topmark for beacons, 2 spheres, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "290", + "_y": "307" + }, + "_width": "8", + "_height": "15" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1470" + }, + "origin": { + "_x": "1390", + "_y": "455" + }, + "HPGL": "SPC;PU1500,565;ST0;PM0;CI110;PM2;FP;PU1500,840;PM0;CI110;PM2;FP;", + "_width": "220", + "_height": "495" + }, + "definition": "V", + "_RCID": "1614" + }, + { + "name": "TOPMAR33", + "description": "topmark for beacons, cylinder, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "308", + "_y": "307" + }, + "_width": "6", + "_height": "9" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1475" + }, + "origin": { + "_x": "1425", + "_y": "675" + }, + "HPGL": "SPC;SW2;PU1425,920;PD1575,920;PD1575,675;PD1425,675;PD1425,920;", + "_width": "150", + "_height": "245" + }, + "definition": "V", + "_RCID": "1615" + }, + { + "name": "TOPMAR34", + "description": "topmark for beacons, board, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "25" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "324", + "_y": "307" + }, + "_width": "8", + "_height": "5" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1485" + }, + "origin": { + "_x": "1380", + "_y": "785" + }, + "HPGL": "SPC;SW2;PU1380,920;PD1380,785;PD1620,785;PD1620,920;PD1380,920;", + "_width": "240", + "_height": "135" + }, + "definition": "V", + "_RCID": "1616" + }, + { + "name": "TOPMAR36", + "description": "topmark for beacons, cube point up, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "342", + "_y": "307" + }, + "_width": "9", + "_height": "9" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1475" + }, + "origin": { + "_x": "1370", + "_y": "700" + }, + "HPGL": "SPC;SW2;PU1500,700;PD1370,830;PD1500,955;PD1625,830;PD1500,700;", + "_width": "255", + "_height": "255" + }, + "definition": "V", + "_RCID": "1618" + }, + { + "name": "TOPMAR65", + "description": "topmark for buoys, x-shape, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "0", + "_y": "25" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "361", + "_y": "307" + }, + "_width": "9", + "_height": "8" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1515", + "_y": "1475" + }, + "origin": { + "_x": "1495", + "_y": "757" + }, + "HPGL": "SPA;SW2;PU1533,757;PD1746,983;SPA;SW2;PU1774,793;PD1495,926;", + "_width": "279", + "_height": "226" + }, + "definition": "V", + "_RCID": "2123" + }, + { + "name": "TOPMAR85", + "description": "topmark for beacons, x-shape, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "380", + "_y": "307" + }, + "_width": "8", + "_height": "8" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1480" + }, + "origin": { + "_x": "1390", + "_y": "730" + }, + "HPGL": "SPC;SW2;PU1390,730;PD1610,950;PU1610,730;PD1390,950;", + "_width": "220", + "_height": "220" + }, + "definition": "V", + "_RCID": "2124" + }, + { + "name": "TOPMAR86", + "description": "topmark for beacons, upright cross, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "398", + "_y": "307" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1436", + "_y": "1648" + }, + "origin": { + "_x": "1219", + "_y": "680" + }, + "HPGL": "SPA;SW2;PU1429,680;PD1429,1079;SPA;SW2;PU1219,878;PD1639,878;", + "_width": "420", + "_height": "399" + }, + "definition": "V", + "_RCID": "3110" + }, + { + "name": "TOPMAR87", + "description": "topmark for beacons, besom point down, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "421", + "_y": "307" + }, + "_width": "9", + "_height": "10" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1496", + "_y": "1541" + }, + "origin": { + "_x": "1372", + "_y": "721" + }, + "HPGL": "SPA;SW1;PU1499,722;PD1498,1021;SPA;SW1;PU1372,1022;PD1454,721;SPA;SW1;PU1631,1021;PD1540,721;", + "_width": "259", + "_height": "301" + }, + "definition": "V", + "_RCID": "2125" + }, + { + "name": "TOPMAR88", + "description": "topmark for beacons, besom point up, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "440", + "_y": "307" + }, + "_width": "9", + "_height": "10" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1503", + "_y": "1216" + }, + "origin": { + "_x": "1370", + "_y": "401" + }, + "HPGL": "SPA;SW1;PU1502,701;PD1503,402;SPA;SW1;PU1628,401;PD1546,702;SPA;SW1;PU1370,402;PD1461,702;", + "_width": "258", + "_height": "301" + }, + "definition": "V", + "_RCID": "2126" + }, + { + "name": "TOPMAR89", + "description": "topmark for beacons, T-shape, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "459", + "_y": "307" + }, + "_width": "13", + "_height": "10" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1438", + "_y": "1672" + }, + "origin": { + "_x": "1221", + "_y": "799" + }, + "HPGL": "SPA;SW2;PU1221,799;PD1641,799;SPA;SW2;PU1429,799;PD1429,1079;", + "_width": "420", + "_height": "280" + }, + "definition": "V", + "_RCID": "3111" + }, + { + "name": "TOWERS01", + "description": "tower", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "17" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "482", + "_y": "307" + }, + "_width": "11", + "_height": "19" + }, + "color-ref": "WLANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "577", + "_y": "172" + }, + "HPGL": "SPW;PU750,750;SW2;CI57;PU645,750;PD692,172;PD807,172;PD855,750;PU807,750;PD922,750;PU692,750;PD577,750;PU687,282;PD807,282;", + "_width": "345", + "_height": "635" + }, + "definition": "V", + "_RCID": "1621" + }, + { + "name": "TOWERS02", + "description": "water tower", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "503", + "_y": "307" + }, + "_width": "10", + "_height": "17" + }, + "color-ref": "WLANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "600", + "_y": "250" + }, + "HPGL": "SPW;PU750,750;SW2;CI50;PU650,750;PD693,350;PU850,350;PD850,250;PD650,250;PD650,350;PD850,350;PU600,750;PD700,750;PU800,750;PD900,750;PU850,750;PD803,346;", + "_width": "300", + "_height": "550" + }, + "definition": "V", + "_RCID": "1622" + }, + { + "name": "TOWERS03", + "description": "conspicuous tower", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "17" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "523", + "_y": "307" + }, + "_width": "11", + "_height": "19" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "575", + "_y": "171" + }, + "HPGL": "SPC;PU750,750;SW1;CI56;PU643,750;PD690,171;PD806,171;PD853,750;PU806,750;PD921,750;PU690,750;PD575,750;PU684,281;PD806,281;", + "_width": "346", + "_height": "635" + }, + "definition": "V", + "_RCID": "1623" + }, + { + "name": "TOWERS05", + "description": "radio, television tower", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "544", + "_y": "307" + }, + "_width": "10", + "_height": "23" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "700", + "_y": "1100" + }, + "origin": { + "_x": "550", + "_y": "400" + }, + "HPGL": "SPA;SW2;PU700,1100;CI50;SPA;SW2;PU600,1100;PD650,600;PD750,600;PD784,1100;SPA;SW2;PU634,690;PD750,690;SPA;SW2;PU550,1100;PD650,1100;SPA;SW2;PU750,1100;PD850,1100;SPA;SW2;PU800,400;PD850,450;PD850,600;SPA;SW2;PU600,400;PD550,450;PD550,600;", + "_width": "300", + "_height": "750" + }, + "definition": "V", + "_RCID": "2127" + }, + { + "name": "TOWERS12", + "description": "conspicuous water tower", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "564", + "_y": "307" + }, + "_width": "10", + "_height": "17" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "600", + "_y": "250" + }, + "HPGL": "SPC;PU750,750;SW1;CI50;PU650,750;PD693,350;PU850,350;PD850,250;PD650,250;PD650,350;PD850,350;PU600,750;PD700,750;PU800,750;PD900,750;PU850,750;PD803,346;", + "_width": "300", + "_height": "550" + }, + "definition": "V", + "_RCID": "1625" + }, + { + "name": "TOWERS15", + "description": "conspicuous radio, television tower", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "584", + "_y": "307" + }, + "_width": "10", + "_height": "23" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "700", + "_y": "1100" + }, + "origin": { + "_x": "550", + "_y": "400" + }, + "HPGL": "SPA;SW2;PU700,1100;CI50;SPA;SW2;PU600,1100;PD650,600;PD750,600;PD784,1100;SPA;SW2;PU634,690;PD750,690;SPA;SW2;PU550,1100;PD650,1100;SPA;SW2;PU750,1100;PD850,1100;SPA;SW2;PU800,400;PD850,450;PD850,600;SPA;SW2;PU600,400;PD550,450;PD550,600;", + "_width": "300", + "_height": "750" + }, + "definition": "V", + "_RCID": "2128" + }, + { + "name": "TREPNT04", + "description": "general symbol for a tree", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "604", + "_y": "307" + }, + "_width": "12", + "_height": "13" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "749" + }, + "origin": { + "_x": "574", + "_y": "348" + }, + "HPGL": "SPA;SW1;PU750,747;PD750,350;SPA;SW1;PU574,447;PD936,447;SPA;SW1;PU641,545;PD858,545;SPA;SW1;PU684,348;PD814,348;SPA;SW1;PU695,747;PD815,747;SPA;SW1;PU638,396;PD858,396;SPA;SW1;PU621,494;PD883,494;", + "_width": "362", + "_height": "399" + }, + "definition": "V", + "_RCID": "2129" + }, + { + "name": "TREPNT05", + "description": "mangrove", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "626", + "_y": "307" + }, + "_width": "13", + "_height": "10" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "550", + "_y": "450" + }, + "HPGL": "SPA;SW1;PU750,600;CI150;SPA;SW1;PU550,750;PD950,750;SPA;SW1;PU750,748;PD750,587;", + "_width": "400", + "_height": "300" + }, + "definition": "V", + "_RCID": "2130" + }, + { + "name": "TSLDEF51", + "description": "one way lane of a traffic separation scheme, with the direction not defined in the data", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "17", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "649", + "_y": "307" + }, + "_width": "36", + "_height": "40" + }, + "color-ref": "ATRFCDCCHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "2250", + "_y": "2250" + }, + "HPGL": "SPA;SW1;ST3;PU1950,1950;PM0;PD2250,1500;PD2550,1950;PD2400,1950;PD2400,2850;PD2100,2850;PD2100,1950;PD1950,1950;PM2;FP;SPA;SW1;PU2100,2850;PD2100,1950;PD1950,1950;PD2250,1500;PD2550,1950;PD2400,1950;PD2400,2850;PD2100,2850;SPC;SW1;PU1647,2232;PD1660,2204;PD1673,2179;PD1690,2162;PD1707,2145;PD1733,2136;PD1756,2138;PD1786,2147;PD1814,2153;PD1837,2187;PD1855,2206;PD1867,2228;PD1867,2253;PD1855,2277;PD1842,2298;PD1822,2322;PD1799,2347;PD1778,2373;PD1765,2392;PD1754,2409;PD1752,2431;PD1752,2454;PD1752,2471;PD1754,2493;PD1754,2495;SPC;SW2;PU1733,2579;PD1786,2579;SPC;SW1;PU2636,2232;PD2649,2204;PD2662,2179;PD2679,2162;PD2696,2145;PD2722,2136;PD2745,2138;PD2775,2147;PD2803,2153;PD2826,2187;PD2844,2206;PD2856,2228;PD2856,2253;PD2844,2277;PD2831,2298;PD2811,2322;PD2788,2347;PD2767,2373;PD2754,2392;PD2743,2409;PD2741,2431;PD2741,2454;PD2741,2471;PD2743,2493;PD2743,2495;SPC;SW2;PU2722,2579;PD2775,2579;", + "_width": "1209", + "_height": "1350" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3411" + }, + { + "name": "TSSCRS51", + "description": "traffic crossing area", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "52", + "_y": "-17" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "695", + "_y": "307" + }, + "_width": "29", + "_height": "29" + }, + "color-ref": "ATRFCF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2049", + "_y": "1192" + }, + "origin": { + "_x": "248", + "_y": "1794" + }, + "HPGL": "SPA;SW3;PU747,2419;PD747,1954;SPA;SW2;PU680,2599;PD823,2599;SPA;SW2;PU745,2291;CI497;", + "_width": "994", + "_height": "994" + }, + "definition": "V", + "_RCID": "2131" + }, + { + "name": "TSSLPT51", + "description": "traffic direction in a one way lane of a traffic separation scheme", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "734", + "_y": "307" + }, + "_width": "19", + "_height": "40" + }, + "color-ref": "TTRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "2250", + "_y": "2250" + }, + "HPGL": "SPT;ST3;PU1950,1950;PM0;PD2250,1500,2550,1950,2400,1950,2400,2850,2100,2850,2100,1950,1950,1950;PM2;FP;SW1;ST0;PU2100,2850;PD2100,1950;PD1950,1950;PD2250,1500;PD2550,1950;PD2400,1950;PD2400,2850;PD2100,2850;", + "_width": "600", + "_height": "1350" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "1630" + }, + { + "name": "TSSRON51", + "description": "traffic roundabout", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "763", + "_y": "307" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ATRFCF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "448", + "_y": "741" + }, + "origin": { + "_x": "1", + "_y": "284" + }, + "HPGL": "SPA;SW2;PU1,793;PD27,884;PD66,980;PD123,1057;PD212,1124;PD315,1180;PD430,1199;PD522,1194;PD620,1165;PD721,1112;PD800,1031;PD862,925;PD896,812;PD896,688;PD862,560;PD798,452;PD704,373;PD591,313;PD464,294;PD320,313;PD217,364;PD128,424;PD298,594;PD1,594;PD1,284;PD133,424;", + "_width": "895", + "_height": "915" + }, + "definition": "V", + "_RCID": "3412" + }, + { + "name": "TWRDEF51", + "description": "two way route of a traffic separation scheme, with the direction not defined in the data", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "20", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "800", + "_y": "307" + }, + "_width": "40", + "_height": "41" + }, + "color-ref": "ATRFCDICHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2257", + "_y": "2077" + }, + "origin": { + "_x": "2257", + "_y": "2077" + }, + "HPGL": "SPA;SW2;PU2134,1545;PD2257,1383;PD2380,1545;SPA;SW2;PU2043,1661;PD1960,1777;PD2108,1777;SPA;SW2;PU2394,1773;PD2557,1773;PD2463,1650;SPA;SW2;PU2105,1965;PD2105,2178;SPA;SW2;PU2398,1959;PD2398,2170;SPA;SW2;PU2137,2616;PD2260,2786;PD2383,2616;SPA;SW2;PU2105,2373;PD1946,2373;PD2040,2493;SPA;SW2;PU2401,2373;PD2550,2373;PD2466,2504;SPI;SW1;PU1568,1942;PD1581,1914;PD1594,1889;PD1611,1872;PD1628,1855;PD1654,1846;PD1677,1848;PD1707,1857;PD1735,1863;PD1758,1897;PD1776,1916;PD1788,1938;PD1788,1963;PD1776,1987;PD1763,2008;PD1743,2032;PD1720,2057;PD1699,2083;PD1686,2102;PD1675,2119;PD1673,2141;PD1673,2164;PD1673,2181;PD1675,2203;PD1675,2205;SPI;SW2;PU1654,2289;PD1707,2289;SPI;SW1;PU2709,1939;PD2722,1911;PD2735,1886;PD2752,1869;PD2769,1852;PD2795,1843;PD2818,1845;PD2848,1854;PD2876,1860;PD2899,1894;PD2917,1913;PD2929,1935;PD2929,1960;PD2917,1984;PD2904,2005;PD2884,2029;PD2861,2054;PD2840,2080;PD2827,2099;PD2816,2116;PD2814,2138;PD2814,2161;PD2814,2178;PD2816,2200;PD2816,2202;SPI;SW2;PU2795,2286;PD2848,2286;", + "_width": "1361", + "_height": "1403" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3413" + }, + { + "name": "TWRTPT52", + "description": "reciprocal traffic directions in a two-way route of a traffic separation scheme", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "850", + "_y": "307" + }, + "_width": "19", + "_height": "41" + }, + "color-ref": "ATRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2257", + "_y": "2077" + }, + "origin": { + "_x": "2257", + "_y": "2077" + }, + "HPGL": "SPA;SW2;PU2134,1545;PD2257,1383;PD2380,1545;SPA;SW2;PU2043,1661;PD1960,1777;PD2108,1777;SPA;SW2;PU2394,1773;PD2557,1773;PD2463,1650;SPA;SW2;PU2105,1965;PD2105,2178;SPA;SW2;PU2398,1959;PD2398,2170;SPA;SW2;PU2137,2616;PD2260,2786;PD2383,2616;SPA;SW2;PU2105,2373;PD1946,2373;PD2040,2493;SPA;SW2;PU2401,2373;PD2550,2373;PD2466,2504;", + "_width": "611", + "_height": "1403" + }, + "prefer-bitmap": "no", + "definition": "V", + "_RCID": "2133" + }, + { + "name": "TWRTPT53", + "description": "single traffic direction in a two-way route part of a traffic separation scheme", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "879", + "_y": "307" + }, + "_width": "18", + "_height": "41" + }, + "color-ref": "ATRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2257", + "_y": "2077" + }, + "origin": { + "_x": "2257", + "_y": "2077" + }, + "HPGL": "SPA;SW2;PU2134,1545;PD2257,1383;PD2380,1545;SPA;SW2;PU2043,1661;PD1960,1777;PD2108,1777;SPA;SW2;PU2394,1773;PD2557,1773;PD2463,1650;SPA;SW2;PU2104,2585;PD2104,2773;PD2408,2773;PD2408,2588;SPA;SW2;PU2104,2435;PD2104,2278;SPA;SW2;PU2104,1937;PD2104,2087;SPA;SW2;PU2423,1929;PD2423,2075;SPA;SW2;PU2419,2270;PD2419,2422;", + "_width": "597", + "_height": "1390" + }, + "prefer-bitmap": "no", + "definition": "V", + "_RCID": "3141" + }, + { + "name": "UNITFTH1", + "description": "depth unit at ship's position is fathoms", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "907", + "_y": "307" + }, + "_width": "10", + "_height": "15" + }, + "color-ref": "ASCLBR", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1410", + "_y": "795" + }, + "origin": { + "_x": "1300", + "_y": "595" + }, + "HPGL": "SPA;SW3;PU1303,797;PD1603,797;SPA;SW3;PU1606,595;PD1303,595;PD1300,1061;", + "_width": "306", + "_height": "466" + }, + "definition": "V", + "_RCID": "2234" + }, + { + "name": "UNITMTR1", + "description": "depth unit at ship's position is metres", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "927", + "_y": "307" + }, + "_width": "13", + "_height": "15" + }, + "color-ref": "ASCLBR", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1469", + "_y": "813" + }, + "origin": { + "_x": "1262", + "_y": "581" + }, + "HPGL": "SPA;SW3;PU1262,1050;PD1263,581;PD1466,960;PD1666,588;PD1666,1044;", + "_width": "404", + "_height": "469" + }, + "definition": "V", + "_RCID": "3002" + }, + { + "name": "UWTROC03", + "description": "dangerous underwater rock of uncertain depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "950", + "_y": "307" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "ADEPVSBCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1299", + "_y": "1299" + }, + "HPGL": "SPA;SW1;ST0;PU1500,1500;PM0;CI201;PM2;FP;SPB;SW1;PU1500,1300;PD;SPB;SW1;PU1500,1700;PD;SPB;SW1;PU1700,1500;PD;SPB;SW1;PU1300,1500;PD;SPB;SW1;PU1580,1310;PD;SPB;SW1;PU1640,1360;PD;SPB;SW1;PU1685,1425;PD;SPB;SW1;PU1675,1585;PD;SPB;SW1;PU1640,1640;PD;SPB;SW1;PU1575,1680;PD;SPB;SW1;PU1420,1680;PD;SPB;SW1;PU1360,1635;PD;SPB;SW1;PU1315,1570;PD;SPB;SW1;PU1320,1420;PD;SPB;SW1;PU1355,1355;PD;SPB;SW1;PU1420,1315;PD;SPB;SW1;PU1502,1371;PD1502,1648;SPB;SW1;PU1364,1505;PD1637,1506;", + "_width": "402", + "_height": "402" + }, + "definition": "V", + "_RCID": "2249" + }, + { + "name": "UWTROC04", + "description": "rock which covers and uncovers or is awash at low water", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "5" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "973", + "_y": "307" + }, + "_width": "13", + "_height": "11" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1297", + "_y": "1336" + }, + "HPGL": "SPA;SW1;PU1697,1500;PD1297,1500;SPA;SW1;PU1614,1337;PD1379,1661;SPA;SW1;PU1614,1655;PD1374,1336;", + "_width": "400", + "_height": "325" + }, + "definition": "V", + "_RCID": "3164" + }, + { + "name": "VECGND01", + "description": "arrowhead for ownship vector for course and speed over the ground", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "996", + "_y": "307" + }, + "_width": "18", + "_height": "13" + }, + "color-ref": "ASHIPS", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "758", + "_y": "385" + }, + "origin": { + "_x": "466", + "_y": "384" + }, + "HPGL": "SPA;SW2;PU593,796;PD760,587;PD931,799;SPA;SW2;PU466,736;PD758,384;PD1056,738;", + "_width": "590", + "_height": "415" + }, + "definition": "V", + "_RCID": "3211" + }, + { + "name": "VECGND21", + "description": "arrowhead for ARPA or AIS vector for course and speed over the ground", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1024", + "_y": "307" + }, + "_width": "18", + "_height": "13" + }, + "color-ref": "AARPAT", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "758", + "_y": "385" + }, + "origin": { + "_x": "466", + "_y": "384" + }, + "HPGL": "SPA;SW2;PU593,796;PD760,587;PD931,799;SPA;SW2;PU466,736;PD758,384;PD1056,738;", + "_width": "590", + "_height": "415" + }, + "definition": "V", + "_RCID": "3213" + }, + { + "name": "VECWTR01", + "description": "arrowhead for ownship vector for course and speed through the water", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1052", + "_y": "307" + }, + "_width": "18", + "_height": "11" + }, + "color-ref": "ASHIPS", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "758", + "_y": "385" + }, + "origin": { + "_x": "466", + "_y": "384" + }, + "HPGL": "SPA;SW2;PU466,736;PD758,384;PD1056,738;", + "_width": "590", + "_height": "354" + }, + "definition": "V", + "_RCID": "3222" + }, + { + "name": "VECWTR21", + "description": "arrowhead for ARPA or AIS vector for course and speed through the water", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1080", + "_y": "307" + }, + "_width": "18", + "_height": "11" + }, + "color-ref": "AARPAT", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "758", + "_y": "385" + }, + "origin": { + "_x": "466", + "_y": "384" + }, + "HPGL": "SPA;SW2;PU466,736;PD758,384;PD1056,738;", + "_width": "590", + "_height": "354" + }, + "definition": "V", + "_RCID": "3214" + }, + { + "name": "WATTUR02", + "description": "overfalls, eddies and breakers", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "27", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1108", + "_y": "307" + }, + "_width": "44", + "_height": "10" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1817", + "_y": "1333" + }, + "origin": { + "_x": "967", + "_y": "1184" + }, + "HPGL": "SPA;SW1;PU967,1485;PD1060,1458;PD1167,1380;PD1270,1235;PD1371,1184;PD1483,1194;PD1371,1294;PD1371,1392;PD1486,1495;PD1584,1456;PD1674,1397;PD1780,1235;PD1892,1186;PD1983,1191;PD1878,1294;PD1873,1402;PD1993,1495;PD2093,1451;PD2179,1397;PD2284,1242;PD2399,1189;PD2485,1196;PD2382,1326;PD2387,1402;PD2480,1495;", + "_width": "1518", + "_height": "311" + }, + "definition": "V", + "_RCID": "3186" + }, + { + "name": "WAYPNT01", + "description": "waypoint on planned route", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1162", + "_y": "307" + }, + "_width": "19", + "_height": "19" + }, + "color-ref": "kPLRTE", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "450", + "_y": "450" + }, + "HPGL": "SPk;PU750,750;SW4;CI300;", + "_width": "600", + "_height": "600" + }, + "definition": "V", + "_RCID": "1634" + }, + { + "name": "WAYPNT03", + "description": "waypoint on alternate planned route", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1191", + "_y": "307" + }, + "_width": "19", + "_height": "19" + }, + "color-ref": "lAPLRT", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1200", + "_y": "1200" + }, + "HPGL": "SPl;PU1500,1500;SW2;CI300;", + "_width": "600", + "_height": "600" + }, + "definition": "V", + "_RCID": "1635" + }, + { + "name": "WAYPNT11", + "description": "next waypoint on planned route", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1220", + "_y": "307" + }, + "_width": "19", + "_height": "19" + }, + "color-ref": "APLRTE", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "450", + "_y": "450" + }, + "HPGL": "SPA;SW2;PU750,750;CI300;SPA;SW2;PU748,749;CI198;", + "_width": "600", + "_height": "600" + }, + "definition": "V", + "_RCID": "3179" + }, + { + "name": "WEDKLP03", + "description": "weed, kelp", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "16", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1249", + "_y": "307" + }, + "_width": "30", + "_height": "8" + }, + "color-ref": "ECHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "725" + }, + "origin": { + "_x": "250", + "_y": "600" + }, + "HPGL": "SPE;SW1;PU250,750;PD450,700;PD650,750;PD850,700;PD1050,750;PD1250,700;PU300,600;PD450,700;PU500,850;PD650,750;PU700,600;PD850,700;PU900,850;PD1050,750;", + "_width": "1000", + "_height": "250" + }, + "definition": "V", + "_RCID": "1636" + }, + { + "name": "WIMCON01", + "description": "windmotor", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "18" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1289", + "_y": "307" + }, + "_width": "12", + "_height": "20" + }, + "color-ref": "WLANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "600", + "_y": "137" + }, + "HPGL": "SPW;PU750,750;SW2;CI50;PU750,300;PD750,700;PU800,750;PD900,750;PU700,750;PD600,750;PU750,300;PD968,300;PU750,300;PD612,137;PU750,300;PD612,462;", + "_width": "368", + "_height": "663" + }, + "definition": "V", + "_RCID": "1637" + }, + { + "name": "WIMCON11", + "description": "conspicuous windmotor", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "18" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1311", + "_y": "307" + }, + "_width": "12", + "_height": "20" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "600", + "_y": "137" + }, + "HPGL": "SPC;PU750,750;SW2;CI50;PU750,300;PD750,700;PU800,750;PD900,750;PU700,750;PD600,750;PU750,300;PD968,300;PU750,300;PD612,137;PU750,300;PD612,462;", + "_width": "368", + "_height": "663" + }, + "definition": "V", + "_RCID": "1638" + }, + { + "name": "WNDFRM51", + "description": "wind generator farm", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1333", + "_y": "307" + }, + "_width": "23", + "_height": "23" + }, + "color-ref": "ALANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "749", + "_y": "468" + }, + "origin": { + "_x": "360", + "_y": "78" + }, + "HPGL": "SPA;SW2;PU750,300;PD968,300;SPA;SW2;PU750,300;PD612,137;SPA;SW2;PU750,300;PD612,462;SPA;SW2;PU749,467;CI389;SPA;SW2;PU596,746;PD899,746;SPA;SW2;PU749,298;PD749,745;", + "_width": "778", + "_height": "778" + }, + "definition": "V", + "_RCID": "3172" + }, + { + "name": "WNDFRM61", + "description": "conspicuous wind generator farm", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1366", + "_y": "307" + }, + "_width": "23", + "_height": "23" + }, + "color-ref": "ACHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "747", + "_y": "478" + }, + "origin": { + "_x": "360", + "_y": "78" + }, + "HPGL": "SPA;SW2;PU750,300;PD968,300;SPA;SW2;PU750,300;PD612,137;SPA;SW2;PU750,300;PD612,462;SPA;SW2;PU749,467;CI389;SPA;SW2;PU596,746;PD899,746;SPA;SW2;PU749,298;PD749,745;", + "_width": "778", + "_height": "778" + }, + "definition": "V", + "_RCID": "3171" + }, + { + "name": "WNDMIL02", + "description": "windmill", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1399", + "_y": "307" + }, + "_width": "10", + "_height": "13" + }, + "color-ref": "WLANDF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "600", + "_y": "450" + }, + "HPGL": "SPW;PU750,750;SW1;CI110;PU900,450;PD600,750;PU600,450;PD900,750;", + "_width": "300", + "_height": "410" + }, + "definition": "V", + "_RCID": "1639" + }, + { + "name": "WNDMIL12", + "description": "conspicuous windmill", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1419", + "_y": "307" + }, + "_width": "10", + "_height": "13" + }, + "color-ref": "CCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "600", + "_y": "450" + }, + "HPGL": "SPC;PU750,750;SW1;CI110;PU900,450;PD600,750;PU600,450;PD900,750;", + "_width": "300", + "_height": "410" + }, + "definition": "V", + "_RCID": "2037" + }, + { + "name": "WRECKS01", + "description": "wreck showing any portion of hull or superstructure at level of chart datum", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "10", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1439", + "_y": "307" + }, + "_width": "20", + "_height": "11" + }, + "color-ref": "DCHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "400", + "_y": "450" + }, + "HPGL": "SPD;ST0;PU550,750;PM0;PD400,550,1050,750,800,750,800,740,795,730,790,720,780,710,770,700,760,700,745,700,735,700;PD720,705,705,720,700,735,700,740,700,750,550,750,550,750;PM2;FP;PU750,750;SW3;CI50;PU400,750;PD700,750;PU800,750;PD1050,750;PU740,650;PD800,450;", + "_width": "650", + "_height": "350" + }, + "definition": "V", + "_RCID": "1641" + }, + { + "name": "WRECKS04", + "description": "non-dangerous wreck, depth unknown", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "5" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "358" + }, + "_width": "15", + "_height": "10" + }, + "color-ref": "ECHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "500", + "_y": "600" + }, + "HPGL": "SPE;SW1;PU750,900;PD750,900;SPE;SW1;PU600,650;PD600,850;PU900,650;PD900,850;PU500,750;PD1000,750;PU750,600;PD750,900;", + "_width": "500", + "_height": "300" + }, + "definition": "V", + "_RCID": "1642" + }, + { + "name": "WRECKS05", + "description": "dangerous wreck, depth unknown", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "35", + "_y": "358" + }, + "_width": "19", + "_height": "13" + }, + "color-ref": "ADEPVSCCHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "453", + "_y": "540" + }, + "HPGL": "SPA;SW1;ST0;PU453,700;PM0;PD512,625;PD600,575;PD687,550;PD800,540;PD900,575;PD981,625;PD1040,700;PD1040,800;PD987,859;PD900,915;PD800,950;PD700,950;PD600,915;PD525,865;PD453,800;PD453,700;PM2;FP;SPC;SW1;PU600,650;PD600,850;SPC;SW1;PU900,650;PD900,850;SPC;SW1;PU500,750;PD1000,750;SPC;SW1;PU750,600;PD750,900;SPC;SW1;PU453,700;PD;SPC;SW1;PU512,625;PD;SPC;SW1;PU600,575;PD;SPC;SW1;PU687,550;PD;SPC;SW1;PU800,540;PD;SPC;SW1;PU900,575;PD;SPC;SW1;PU981,625;PD;SPC;SW1;PU1040,700;PD;SPC;SW1;PU453,800;PD;SPC;SW1;PU525,865;PD;SPC;SW1;PU600,915;PD;SPC;SW1;PU700,950;PD;SPC;SW1;PU800,950;PD;SPC;SW1;PU900,915;PD;SPC;SW1;PU987,859;PD;SPC;SW1;PU1043,793;PD;", + "_width": "590", + "_height": "410" + }, + "definition": "V", + "_RCID": "2038" + }, + { + "name": "ACHPNT01", + "description": "anchor", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "63", + "_y": "358" + }, + "_width": "11", + "_height": "13" + }, + "color-ref": "JCHMGF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "578", + "_y": "550" + }, + "HPGL": "SPJ;SW2;PU750,550;PD750,962;PU665,650;PD825,650;PU578,850;PD603,890;PU643,928;PD690,953;PU750,962;PD803,956;PD856,931;PD893,896;PD921,850;PU690,953;PD750,962;PU643,928;PD603,890;", + "_width": "343", + "_height": "412" + }, + "definition": "V", + "_RCID": "1230" + }, + { + "name": "NMKINF01", + "description": "entry permitted", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "84", + "_y": "358" + }, + "_width": "19", + "_height": "13" + }, + "color-ref": "ACHBLKBCHGRNCCHWHT", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "300", + "_y": "200" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "HPGL": "SPB;PU0,0;PM0;PD210,0;PD210,400;PD0,390;PD0,0;PM2;FP;PU390,0;PM0;PD600,0;PD600,400;PD390,400;PD390,0;PM2;FP;SPC;PU210,0;PM0;PD390,0;PD390,400;PD210,400;PD210,0;PM2;FP;SPA;SW1;PU0,0;PD600,0;PD600,400;PD0,400;PD0,0;", + "_width": "600", + "_height": "400" + }, + "definition": "V", + "_RCID": "0" + }, + { + "name": "NMKPRH02", + "description": "entry prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "113", + "_y": "358" + }, + "_width": "19", + "_height": "13" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "300", + "_y": "200" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "HPGL": "SPB;PU0,0;PM0;PD600,0;PD600,140;PD0,140;PD0,0;PM2;FP;PU0,260;PM0;PD600,260;PD600,400;PD0,400;PD0,260;PM2;FP;SPC;PU0,140;PM0;PD600,140;PD600,260;PD0,260;PD0,140;PM2;FP;SPA;SW1;PU0,0;PD600,0;PD600,400;PD0,400;PD0,0;", + "_width": "600", + "_height": "400" + }, + "definition": "V", + "_RCID": "0" + }, + { + "name": "NMKPRH12", + "description": "passing on left side prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "142", + "_y": "358" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "240", + "_y": "240" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "HPGL": "SPB;PU0,240;PM0;PD240,0;PD240,480;PD0,240;PM2;FP;SPC;PU480,240;PM0;PD240,480;PD240,0;PD480,240;PM2;FP;SPA;SW1;PU0,240;PD240,0;PD480,240;PD240,480;PD0,240;", + "_width": "480", + "_height": "480" + }, + "definition": "V", + "_RCID": "0" + }, + { + "name": "NMKPRH13", + "description": "passing on right side prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "167", + "_y": "358" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ACHBLKBCHWHTCCHRED", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "240", + "_y": "240" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "HPGL": "SPB;PU0,240;PM0;PD240,0;PD240,480;PD0,240;PM2;FP;SPC;PU480,240;PM0;PD240,480;PD240,0;PD480,240;PM2;FP;SPA;SW1;PU0,240;PD240,0;PD480,240;PD240,480;PD0,240;", + "_width": "480", + "_height": "480" + }, + "definition": "V", + "_RCID": "0" + }, + { + "name": "NMKRCD01", + "description": "recommended passage for both directions", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "192", + "_y": "358" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ACHBLKBCHYLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "240", + "_y": "240" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "HPGL": "SPB;PU0,240;PM0;PD240,0;PD480,240;PD240,480;PD0,240;PM2;FP;SPA;SW1;PU0,240;PD240,0;PD480,240;PD240,480;PD0,240;", + "_width": "480", + "_height": "480" + }, + "definition": "V", + "_RCID": "0" + }, + { + "name": "NMKRCD02", + "description": "recommended passage for only one direction", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "5" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "217", + "_y": "358" + }, + "_width": "22", + "_height": "10" + }, + "color-ref": "ACHBLKBCHYLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "360", + "_y": "160" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "HPGL": "SPB;PU0,160;PM0;PD160,0;PD320,160;PD160,320;PD0,160;PM2;FP;PU400,160;PM0;PD560,0;PD720,160;PD560,320;PD400,160;PM2;FP;SPA;SW1;PU0,160;PD160,0;PD320,160;PD160,320;PD0,160;PU400,160;PD560,0;PD720,160;PD560,320;PD400,160;", + "_width": "640", + "_height": "320" + }, + "definition": "V", + "_RCID": "0" + }, + { + "name": "NMKRCD03", + "description": "recommended passage on right side", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "249", + "_y": "358" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ACHBLKBCHWHTCCHGRN", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "240", + "_y": "240" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "HPGL": "SPB;PU0,240;PM0;PD240,0;PD240,480;PD0,240;PM2;FP;SPC;PU480,240;PM0;PD240,480;PD240,0;PD480,240;PM2;FP;SPA;SW1;PU0,240;PD240,0;PD480,240;PD240,480;PD0,240;", + "_width": "480", + "_height": "480" + }, + "definition": "V", + "_RCID": "0" + }, + { + "name": "NMKRCD04", + "description": "recommended passage on left side", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "274", + "_y": "358" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ACHBLKBCHGRNCCHWHT", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "240", + "_y": "240" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "HPGL": "SPB;PU0,240;PM0;PD240,0;PD240,480;PD0,240;PM2;FP;SPC;PU480,240;PM0;PD240,480;PD240,0;PD480,240;PM2;FP;SPA;SW1;PU0,240;PD240,0;PD480,240;PD240,480;PD0,240;", + "_width": "480", + "_height": "480" + }, + "definition": "V", + "_RCID": "0" + }, + { + "name": "BOYLAT50", + "description": "can shape lateral buoy, red, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "299", + "_y": "358" + }, + "_width": "16", + "_height": "13" + }, + "color-ref": "ACHREDbOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "774", + "_y": "690" + }, + "origin": { + "_x": "499", + "_y": "499" + }, + "HPGL": "SPA;SW1;ST0;PU499,899;PM0;PD651,500;PD1027,499;PD901,898;PD499,899;PM2;FP;SPb;SW1;PU499,899;PD651,500;PD1027,499;PD901,898;PD499,899;SPb;SW1;ST0;PU774,690;PM0;CI15;PM2;FP;", + "_width": "528", + "_height": "400" + }, + "definition": "V", + "_RCID": "2053" + }, + { + "name": "BOYLAT51", + "description": "conical lateral buoy, green, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "325", + "_y": "358" + }, + "_width": "14", + "_height": "14" + }, + "color-ref": "ACHGRNBOUTLW", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1033", + "_y": "960" + }, + "origin": { + "_x": "724", + "_y": "663" + }, + "HPGL": "SPA;SW1;ST0;PU1157,1102;PM0;PD1157,663;PD724,1102;PD1157,1102;PM2;FP;SPB;SW1;PU1157,1102;PD1157,663;PD724,1102;PD1157,1102;SPB;SW1;ST0;PU1033,960;PM0;CI15;PM2;FP;", + "_width": "433", + "_height": "439" + }, + "definition": "V", + "_RCID": "2050" + }, + { + "name": "LIGHTS14", + "description": "light flare, magenta", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "349", + "_y": "358" + }, + "_width": "10", + "_height": "24" + }, + "color-ref": "PCHMGD^CHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2220" + }, + "origin": { + "_x": "2250", + "_y": "2220" + }, + "HPGL": "SPP;ST2;PU2250,2220;PM0;PD2130,1657,2130,1635,2130,1597,2145,1560,2167,1545,2197,1522,2242,1515,2280,1522,2310,1530;PD2340,1552,2355,1590,2362,1620,2362,1650,2250,2220;PM2;FP;SP^;SW1;PU2385,1605;PD2377,1642;PD2250,2302;SPP;PU2250,2220;PD2122,1642;PD2130,1605;PD2137,1575;PD2160,1552;PD2190,1522;PD2227,1515;PD2250,1515;PD2280,1522;PD2317,1537;PD2340,1560;PD2355,1590;PD2362,1620;PD2355,1672;PD2250,2220;SP^;PU2250,2302;PD2100,1627;PD2122,1560;PD2182,1507;PD2250,1492;PD2310,1515;PD2347,1537;PD2377,1597;", + "_width": "285", + "_height": "810" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "1396" + }, + { + "name": "LITDEF11", + "description": "light flare", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "369", + "_y": "358" + }, + "_width": "8", + "_height": "21" + }, + "color-ref": "ICHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1500", + "_y": "1500" + }, + "HPGL": "SPI;ST2;PU1500,1500;PM0;PD1375,937,1375,912,1381,875,1400,843,1418,825,1450,800,1493,800,1531,800,1556,806,1593,831;PD1606,868,1612,900,1612,931,1500,1500;PM2;FP;SPI;SW1;PU1500,1500;PD1375,925;PD1375,887;PD1387,850;PD1406,831;PD1437,806;PD1475,800;PD1500,800;PD1531,800;PD1562,812;PD1587,837;PD1606,875;PD1612,900;PD1606,956;PD1500,1500;", + "_width": "237", + "_height": "700" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "1395" + }, + { + "name": "OBSTRN11", + "description": "obstruction in the water which is always above water level", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "3" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "387", + "_y": "358" + }, + "_width": "9", + "_height": "9" + }, + "color-ref": "ACSTLNBLANDA", + "definition": "R", + "_RCID": "32" + }, + { + "name": "DAYTRI52", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "406", + "_y": "358" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDCHREDCPLRTE", + "definition": "R", + "_RCID": "1" + }, + { + "name": "DAYSQR01", + "description": "square or rectangular daymark, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "433", + "_y": "358" + }, + "_width": "15", + "_height": "22" + }, + "color-ref": "ADEPMDBCHMGD", + "definition": "R", + "_RCID": "27" + }, + { + "name": "DAYSQR21", + "description": "square or rectangular daymark, paper chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "458", + "_y": "358" + }, + "_width": "15", + "_height": "23" + }, + "color-ref": "ADEPMDBCHMGD", + "definition": "R", + "_RCID": "28" + }, + { + "name": "DAYSQR51", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "29" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "483", + "_y": "358" + }, + "_width": "15", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDCHGRNCRADLO", + "definition": "R", + "_RCID": "1" + }, + { + "name": "DAYTRI01", + "description": "triangular daymark, point up, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "508", + "_y": "358" + }, + "_width": "19", + "_height": "23" + }, + "color-ref": "ADEPMDBCHMGD", + "definition": "R", + "_RCID": "29" + }, + { + "name": "DAYTRI05", + "description": "triangular daymark, point down, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "537", + "_y": "358" + }, + "_width": "19", + "_height": "22" + }, + "color-ref": "ADEPMDBCHMGD", + "definition": "R", + "_RCID": "30" + }, + { + "name": "DAYTRI21", + "description": "triangular daymark, point up, paper chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "566", + "_y": "358" + }, + "_width": "19", + "_height": "25" + }, + "color-ref": "ADEPMDBCHMGD", + "definition": "R", + "_RCID": "31" + }, + { + "name": "DAYTRI25", + "description": "triangular daymark, point down, paper chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "595", + "_y": "358" + }, + "_width": "19", + "_height": "23" + }, + "color-ref": "ADEPMDBCHMGD", + "definition": "R", + "_RCID": "32" + }, + { + "name": "DAYTRI51", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "624", + "_y": "358" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDCHREDCPLRTE", + "definition": "R", + "_RCID": "1" + }, + { + "name": "DAYREC51", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "651", + "_y": "358" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "LIGHTS95", + "description": "allround light with big value of nominal range, green, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "17", + "_y": "17" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "674", + "_y": "358" + }, + "_width": "35", + "_height": "35" + }, + "color-ref": "ACSTLNBCHGRN", + "definition": "R", + "_RCID": "117" + }, + { + "name": "LIGHTS94", + "description": "allround light with big value of nominal range, white, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "23", + "_y": "23" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "719", + "_y": "358" + }, + "_width": "47", + "_height": "47" + }, + "color-ref": "ACSTLNBCHYLW", + "definition": "R", + "_RCID": "117" + }, + { + "name": "LIGHTS96", + "description": "allround light with big value of nominal range, red, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "20", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "776", + "_y": "358" + }, + "_width": "41", + "_height": "41" + }, + "color-ref": "ACSTLNBCHRED", + "definition": "R", + "_RCID": "117" + }, + { + "name": "LIGHTS90", + "description": "allround light with small value of nominal range, default, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "17", + "_y": "17" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "827", + "_y": "358" + }, + "_width": "35", + "_height": "35" + }, + "color-ref": "ACSTLNBCHMGD", + "definition": "R", + "_RCID": "117" + }, + { + "name": "LIGHTS91", + "description": "allround light with small value of nominal range, white, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "16", + "_y": "16" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "872", + "_y": "358" + }, + "_width": "33", + "_height": "33" + }, + "color-ref": "ACSTLNBCHYLW", + "definition": "R", + "_RCID": "117" + }, + { + "name": "LIGHTS92", + "description": "allround light with small value of nominal range, green, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "10", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "915", + "_y": "358" + }, + "_width": "21", + "_height": "21" + }, + "color-ref": "ACSTLNBCHGRN", + "definition": "R", + "_RCID": "117" + }, + { + "name": "LIGHTS93", + "description": "allround light with small value of nominal range, red, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "946", + "_y": "358" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ACSTLNBCHRED", + "definition": "R", + "_RCID": "117" + }, + { + "name": "BOYPIL78", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "983", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "BOYPIL79", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1011", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "BOYPIL01", + "description": "pillar buoy, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1039", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL60", + "description": "pillar buoy,lateral-r,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1067", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL61", + "description": "pillar buoy,lateral-g,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1095", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHGRN", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL62", + "description": "pillar buoy,special purpose-y,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1123", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL63", + "description": "pillar buoy,black,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1151", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL64", + "description": "pillar buoy,orange,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1179", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCURSR", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL65", + "description": "pillar buoy,default-grey,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1207", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHGRD", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL66", + "description": "pillar buoy,lateral-rgr,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1235", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHGRN", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL67", + "description": "pillar buoy,lateral-grg,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1263", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHRED", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL68", + "description": "pillar buoy,cardinal-by,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1291", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCOUTLWDCHYLW", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL69", + "description": "pillar buoy,cardinal-yb,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1319", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDOUTLW", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL70", + "description": "pillar buoy,cardinal-byb,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1347", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCOUTLWDCHYLW", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL71", + "description": "pillar buoy,cardianl-yby,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1375", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDOUTLW", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL72", + "description": "pillar buoy,isol.danger-brb,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1403", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCOUTLWDCHRED", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL73", + "description": "pillar buoy,safe water-rw,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1431", + "_y": "358" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL74", + "description": "pillar buoy,red/green,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "415" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHGRN", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL75", + "description": "pillar buoy,green/red,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "38", + "_y": "415" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHRED", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL76", + "description": "pillar buoy,red/white,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "66", + "_y": "415" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYPIL77", + "description": "pillar buoy,green/white,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "94", + "_y": "415" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHT", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BCNTOW68", + "description": "beacon by, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "122", + "_y": "415" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNGEN01", + "description": "beacon in general, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "147", + "_y": "415" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BOYCON60", + "description": "conical buoy,lateral-red,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "167", + "_y": "415" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYCON61", + "description": "conical buoy,lateral-green,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "196", + "_y": "415" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRN", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYCON62", + "description": "conical buoy,yellow,paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "225", + "_y": "415" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYCAN61", + "description": "can buoy,lateral-g,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "254", + "_y": "415" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRN", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYCAN62", + "description": "can buoy,generic,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "283", + "_y": "415" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRN", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYCAN63", + "description": "can buoy,yellow,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "312", + "_y": "415" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "26" + }, + { + "name": "RESTRN51", + "description": "centred symbol for an anchoring prohibited area, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "27", + "_y": "-6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "341", + "_y": "415" + }, + "_width": "22", + "_height": "26" + }, + "color-ref": "ADEPMDBCHMGD", + "definition": "R", + "_RCID": "9504" + }, + { + "name": "ACHARE51", + "description": "centred symbol for an anchorage area, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "18", + "_y": "1" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "373", + "_y": "415" + }, + "_width": "25", + "_height": "29" + }, + "color-ref": "ADEPMDBCHMGD", + "definition": "R", + "_RCID": "1105" + }, + { + "name": "ACHPNT02", + "description": "Simple acnchor symbol, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "18", + "_y": "1" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "408", + "_y": "415" + }, + "_width": "25", + "_height": "29" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "1106" + }, + { + "name": "DANGER51", + "description": "underwater hazard with a defined depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "16", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "443", + "_y": "415" + }, + "_width": "29", + "_height": "21" + }, + "color-ref": "ACHBLKBDEPVS", + "definition": "R", + "_RCID": "77" + }, + { + "name": "DANGER52", + "description": "underwater hazard with a defined depth less than safety contour, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "16", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "482", + "_y": "415" + }, + "_width": "29", + "_height": "21" + }, + "color-ref": "ACHBLK", + "definition": "R", + "_RCID": "77" + }, + { + "name": "QUAPOS01", + "description": "position approximate", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "21", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "521", + "_y": "415" + }, + "_width": "22", + "_height": "21" + }, + "color-ref": "ACHBLK", + "definition": "R", + "_RCID": "1" + }, + { + "name": "QUAPOS02", + "description": "position doubtful", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "21", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "553", + "_y": "415" + }, + "_width": "22", + "_height": "21" + }, + "color-ref": "ACHBLK", + "definition": "R", + "_RCID": "1" + }, + { + "name": "QUAPOS03", + "description": "reported but not surveyed", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "25", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "585", + "_y": "415" + }, + "_width": "26", + "_height": "21" + }, + "color-ref": "ACHBLK", + "definition": "R", + "_RCID": "1" + }, + { + "name": "ISODGR51", + "description": "isolated danger symbol, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "621", + "_y": "415" + }, + "_width": "19", + "_height": "19" + }, + "color-ref": "ADEPMDBCHMGD", + "definition": "R", + "_RCID": "108" + }, + { + "name": "BOYSPR04", + "description": "white/orange spar bouy, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "650", + "_y": "415" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHCOR", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BOYSPR05", + "description": "yellow spar bouy, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "670", + "_y": "415" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLK", + "definition": "R", + "_RCID": "11" + }, + { + "name": "SOUNDG00", + "description": "deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "690", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "184" + }, + { + "name": "SOUNDG01", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "706", + "_y": "415" + }, + "_width": "4", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "185" + }, + { + "name": "SOUNDG02", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "720", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "186" + }, + { + "name": "SOUNDG03", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "736", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "187" + }, + { + "name": "SOUNDG04", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "752", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "188" + }, + { + "name": "SOUNDG05", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "768", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "189" + }, + { + "name": "SOUNDG06", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "784", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "190" + }, + { + "name": "SOUNDG07", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "800", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "191" + }, + { + "name": "SOUNDG08", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "816", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "192" + }, + { + "name": "SOUNDG09", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "832", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "193" + }, + { + "name": "SOUNDG10", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "848", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "194" + }, + { + "name": "SOUNDG11", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "864", + "_y": "415" + }, + "_width": "4", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "195" + }, + { + "name": "SOUNDG12", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "878", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "196" + }, + { + "name": "SOUNDG13", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "894", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "197" + }, + { + "name": "SOUNDG14", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "910", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "198" + }, + { + "name": "SOUNDG15", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "926", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "199" + }, + { + "name": "SOUNDG16", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "942", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "200" + }, + { + "name": "SOUNDG17", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "958", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "201" + }, + { + "name": "SOUNDG18", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "974", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "202" + }, + { + "name": "SOUNDG19", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "990", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "203" + }, + { + "name": "SOUNDG20", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1006", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "204" + }, + { + "name": "SOUNDG21", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1022", + "_y": "415" + }, + "_width": "4", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "205" + }, + { + "name": "SOUNDG22", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1036", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "206" + }, + { + "name": "SOUNDG23", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1052", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "207" + }, + { + "name": "SOUNDG24", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1068", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "208" + }, + { + "name": "SOUNDG25", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1084", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "209" + }, + { + "name": "SOUNDG26", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1100", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "210" + }, + { + "name": "SOUNDG27", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1116", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "211" + }, + { + "name": "SOUNDG28", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1132", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "212" + }, + { + "name": "SOUNDG29", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1148", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "213" + }, + { + "name": "SOUNDG30", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1164", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "214" + }, + { + "name": "SOUNDG31", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "18", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1180", + "_y": "415" + }, + "_width": "4", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "215" + }, + { + "name": "SOUNDG32", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1194", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "216" + }, + { + "name": "SOUNDG33", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1210", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "217" + }, + { + "name": "SOUNDG34", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1226", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "218" + }, + { + "name": "SOUNDG35", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1242", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "219" + }, + { + "name": "SOUNDG36", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1258", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "220" + }, + { + "name": "SOUNDG37", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1274", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "221" + }, + { + "name": "SOUNDG38", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1290", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "222" + }, + { + "name": "SOUNDG39", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1306", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "223" + }, + { + "name": "SOUNDG40", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1322", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "224" + }, + { + "name": "SOUNDG41", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1338", + "_y": "415" + }, + "_width": "4", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "225" + }, + { + "name": "SOUNDG42", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1352", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "226" + }, + { + "name": "SOUNDG43", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1368", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "227" + }, + { + "name": "SOUNDG44", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1384", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "228" + }, + { + "name": "SOUNDG45", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1400", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "229" + }, + { + "name": "SOUNDG46", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1416", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "230" + }, + { + "name": "SOUNDG47", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1432", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "231" + }, + { + "name": "SOUNDG48", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1448", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "232" + }, + { + "name": "SOUNDG49", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1464", + "_y": "415" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "233" + }, + { + "name": "SOUNDG50", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "234" + }, + { + "name": "SOUNDG51", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "26", + "_y": "454" + }, + "_width": "4", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "235" + }, + { + "name": "SOUNDG52", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "40", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "236" + }, + { + "name": "SOUNDG53", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "56", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "237" + }, + { + "name": "SOUNDG54", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "72", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "238" + }, + { + "name": "SOUNDG55", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "88", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "239" + }, + { + "name": "SOUNDG56", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "104", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "240" + }, + { + "name": "SOUNDG57", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "120", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "241" + }, + { + "name": "SOUNDG58", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "136", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "242" + }, + { + "name": "SOUNDG59", + "description": "for deep soundings, greater than safety depth, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "152", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ACHGRDBDEPMD", + "definition": "R", + "_RCID": "243" + }, + { + "name": "SOUNDGA1", + "description": "symbol for drying height, used for soundings less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "6" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "168", + "_y": "454" + }, + "_width": "8", + "_height": "2" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "244" + }, + { + "name": "SOUNDGB1", + "description": "symbol for swept sounding, used for soundings less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "-8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "186", + "_y": "454" + }, + "_width": "23", + "_height": "5" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "245" + }, + { + "name": "SOUNDGC2", + "description": "sounding of low accuracy", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "14", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "219", + "_y": "454" + }, + "_width": "29", + "_height": "29" + }, + "color-ref": "ACHGRD", + "definition": "R", + "_RCID": "62" + }, + { + "name": "STARPT01", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "258", + "_y": "454" + }, + "_width": "24", + "_height": "24" + }, + "color-ref": "BCHMGFACHBLK", + "definition": "R", + "_RCID": "1" + }, + { + "name": "SOUNDS00", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "292", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "184" + }, + { + "name": "SOUNDS01", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "308", + "_y": "454" + }, + "_width": "4", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "185" + }, + { + "name": "SOUNDS02", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "322", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "186" + }, + { + "name": "SOUNDS03", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "338", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "187" + }, + { + "name": "SOUNDS04", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "354", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "188" + }, + { + "name": "SOUNDS05", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "370", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "189" + }, + { + "name": "SOUNDS06", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "386", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "190" + }, + { + "name": "SOUNDS07", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "402", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "191" + }, + { + "name": "SOUNDS08", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "418", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "192" + }, + { + "name": "SOUNDS09", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "434", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "193" + }, + { + "name": "SOUNDS10", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "450", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "194" + }, + { + "name": "SOUNDS11", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "466", + "_y": "454" + }, + "_width": "4", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "195" + }, + { + "name": "SOUNDS12", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "480", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "196" + }, + { + "name": "SOUNDS13", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "496", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "197" + }, + { + "name": "SOUNDS14", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "512", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "198" + }, + { + "name": "SOUNDS15", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "528", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "199" + }, + { + "name": "SOUNDS16", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "544", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "200" + }, + { + "name": "SOUNDS17", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "560", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "201" + }, + { + "name": "SOUNDS18", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "576", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "202" + }, + { + "name": "SOUNDS19", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "592", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "203" + }, + { + "name": "SOUNDS20", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "608", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "204" + }, + { + "name": "SOUNDS21", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "624", + "_y": "454" + }, + "_width": "4", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "205" + }, + { + "name": "SOUNDS22", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "638", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "206" + }, + { + "name": "SOUNDS23", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "654", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "207" + }, + { + "name": "SOUNDS24", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "670", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "208" + }, + { + "name": "SOUNDS25", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "686", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "209" + }, + { + "name": "SOUNDS26", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "702", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "210" + }, + { + "name": "SOUNDS27", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "718", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "211" + }, + { + "name": "SOUNDS28", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "734", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "212" + }, + { + "name": "SOUNDS29", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "750", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "213" + }, + { + "name": "SOUNDS30", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "766", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "214" + }, + { + "name": "SOUNDS31", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "18", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "782", + "_y": "454" + }, + "_width": "4", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "215" + }, + { + "name": "SOUNDS32", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "796", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "216" + }, + { + "name": "SOUNDS33", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "812", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "217" + }, + { + "name": "SOUNDS34", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "828", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "218" + }, + { + "name": "SOUNDS35", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "844", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "219" + }, + { + "name": "SOUNDS36", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "860", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "220" + }, + { + "name": "SOUNDS37", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "876", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "221" + }, + { + "name": "SOUNDS38", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "892", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "222" + }, + { + "name": "SOUNDS39", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "19", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "908", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "223" + }, + { + "name": "SOUNDS40", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "924", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "224" + }, + { + "name": "SOUNDS41", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "940", + "_y": "454" + }, + "_width": "4", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "225" + }, + { + "name": "SOUNDS42", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "954", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "226" + }, + { + "name": "SOUNDS43", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "970", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "227" + }, + { + "name": "SOUNDS44", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "986", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "228" + }, + { + "name": "SOUNDS45", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1002", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "229" + }, + { + "name": "SOUNDS46", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1018", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "230" + }, + { + "name": "SOUNDS47", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1034", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "231" + }, + { + "name": "SOUNDS48", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1050", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "232" + }, + { + "name": "SOUNDS49", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-9", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1066", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "233" + }, + { + "name": "SOUNDS50", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1082", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "234" + }, + { + "name": "SOUNDS51", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1098", + "_y": "454" + }, + "_width": "4", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "235" + }, + { + "name": "SOUNDS52", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1112", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "236" + }, + { + "name": "SOUNDS53", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1128", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "237" + }, + { + "name": "SOUNDS54", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1144", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "238" + }, + { + "name": "SOUNDS55", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1160", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "239" + }, + { + "name": "SOUNDS56", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1176", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "240" + }, + { + "name": "SOUNDS57", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1192", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "241" + }, + { + "name": "SOUNDS58", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1208", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "242" + }, + { + "name": "SOUNDS59", + "description": "shallow soundings, less than or equal to the safety depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-2", + "_y": "0" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1224", + "_y": "454" + }, + "_width": "6", + "_height": "10" + }, + "color-ref": "ASNDG2BDEPMD", + "definition": "R", + "_RCID": "243" + }, + { + "name": "ADDMRK01", + "description": "additional mark, traiangle to the right", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1240", + "_y": "454" + }, + "_width": "17", + "_height": "31" + }, + "color-ref": "ACHBLKBCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "ADDMRK02", + "description": "additional mark, traiangle to the left", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "31", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1267", + "_y": "454" + }, + "_width": "17", + "_height": "31" + }, + "color-ref": "ACHBLKBCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "ADDMRK03", + "description": "additional mark, board, bottom", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "-23" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1294", + "_y": "454" + }, + "_width": "31", + "_height": "11" + }, + "color-ref": "ACHBLKBCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "ADDMRK04", + "description": "additional mark, board, top", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1335", + "_y": "454" + }, + "_width": "31", + "_height": "11" + }, + "color-ref": "ACHBLKBCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "ADDMRK05", + "description": "additional mark, board, bottom", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "-15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1376", + "_y": "454" + }, + "_width": "31", + "_height": "11" + }, + "color-ref": "ACHBLKBCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "ADDMRK06", + "description": "additional mark, board, top", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "25" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1417", + "_y": "454" + }, + "_width": "31", + "_height": "11" + }, + "color-ref": "ACHBLKBCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "ADDMRK07", + "description": "additional mark, traiangle to the right", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-22", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "495" + }, + "_width": "17", + "_height": "31" + }, + "color-ref": "ACHBLKBCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "ADDMRK08", + "description": "additional mark, traiangle to the left", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "38", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "37", + "_y": "495" + }, + "_width": "17", + "_height": "31" + }, + "color-ref": "ACHBLKBCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "ADDMRK09", + "description": "additional mark, triangle, bottom", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "-15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "64", + "_y": "495" + }, + "_width": "31", + "_height": "16" + }, + "color-ref": "ACHBLKBCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "ADDMRK10", + "description": "additional mark, triangle, bottom", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "-23" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "105", + "_y": "495" + }, + "_width": "31", + "_height": "16" + }, + "color-ref": "ACHBLKBCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "BCNLAT23", + "description": "minor lateral beacon, red-green, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "146", + "_y": "495" + }, + "_width": "8", + "_height": "22" + }, + "color-ref": "ADEPMDBCHBLKDCHGRNCCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "BCNSTK03", + "description": "river beacon stake - pole", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "164", + "_y": "495" + }, + "_width": "7", + "_height": "14" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "36" + }, + { + "name": "BORDER01", + "description": "border", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "181", + "_y": "495" + }, + "_width": "20", + "_height": "24" + }, + "color-ref": "BCHGRDCCHREDDDEPDWADEPMD", + "definition": "R", + "_RCID": "1" + }, + { + "name": "BOYLAT25", + "description": "red-green lateral buoy, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "211", + "_y": "495" + }, + "_width": "17", + "_height": "17" + }, + "color-ref": "ADEPMDBCHBLKDCHGRNCCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "BOYLAT26", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "238", + "_y": "495" + }, + "_width": "10", + "_height": "20" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "BOYLAT27", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "258", + "_y": "495" + }, + "_width": "10", + "_height": "20" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "BUNSTA01", + "description": "bunker station, diesel oil station", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "278", + "_y": "495" + }, + "_width": "16", + "_height": "19" + }, + "color-ref": "ADEPMDBCHBLKCNODTADCHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "BUNSTA02", + "description": "bunker station, water", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "304", + "_y": "495" + }, + "_width": "14", + "_height": "22" + }, + "color-ref": "ADEPMDBCHBLKCRESBLDNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "BUNSTA03", + "description": "bunker station, ballast", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "328", + "_y": "495" + }, + "_width": "21", + "_height": "19" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "CATHAF01", + "description": "harbour facilities, RoRo terminal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "359", + "_y": "495" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ACHBLKBCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "CATHAF02", + "description": "harbour facilities, container terminal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "396", + "_y": "495" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ACHBLKBCHWHTCCHREDDNODTAECURSR", + "definition": "R", + "_RCID": "95" + }, + { + "name": "CATHAF04", + "description": "harbour facilities, bulk terminal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "433", + "_y": "495" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ACHBLKBCHWHTCCHGRD", + "definition": "R", + "_RCID": "95" + }, + { + "name": "CUSTOM01", + "description": "customs", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "470", + "_y": "495" + }, + "_width": "17", + "_height": "17" + }, + "color-ref": "DCHGRDBCHREDCCHWHTADEPMD", + "definition": "R", + "_RCID": "1" + }, + { + "name": "DISMAR05", + "description": "cartographic symbol, distance mark 100m on river axsis", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "3" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "497", + "_y": "495" + }, + "_width": "7", + "_height": "7" + }, + "color-ref": "ACHBLK", + "definition": "R", + "_RCID": "36" + }, + { + "name": "DISMAR06", + "description": "cartographic symbol, distance mark 1km on river axsis", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "5" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "514", + "_y": "495" + }, + "_width": "11", + "_height": "11" + }, + "color-ref": "ACHBLK", + "definition": "R", + "_RCID": "36" + }, + { + "name": "HECMTR01", + "description": "hectometre point, 100m", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "3" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "535", + "_y": "495" + }, + "_width": "7", + "_height": "7" + }, + "color-ref": "ACHMGD", + "definition": "R", + "_RCID": "36" + }, + { + "name": "HECMTR02", + "description": "hectometre point, 1km", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "4" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "552", + "_y": "495" + }, + "_width": "9", + "_height": "9" + }, + "color-ref": "ACHMGD", + "definition": "R", + "_RCID": "36" + }, + { + "name": "HGWTMK01", + "description": "high water mark", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "10", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "571", + "_y": "495" + }, + "_width": "21", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCDEPDW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "HRBFAC10", + "description": "default harbour facilitiy", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "602", + "_y": "495" + }, + "_width": "19", + "_height": "19" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "HRBFAC11", + "description": "harbour facilitiy, naval base", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "631", + "_y": "495" + }, + "_width": "19", + "_height": "19" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "HRBFAC12", + "description": "harbour facilitiy, ship yard", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "660", + "_y": "495" + }, + "_width": "19", + "_height": "19" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "HRBFAC13", + "description": "harbour facilitiy, harbour-master's office", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "689", + "_y": "495" + }, + "_width": "18", + "_height": "23" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "HRBFAC14", + "description": "harbour facilitiy, pilot", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "717", + "_y": "495" + }, + "_width": "19", + "_height": "19" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "HRBFAC15", + "description": "harbour facilitiy, water police", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "746", + "_y": "495" + }, + "_width": "19", + "_height": "19" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "HRBFAC16", + "description": "harbour facilitiy, custom office", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "775", + "_y": "495" + }, + "_width": "19", + "_height": "19" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "HRBFAC17", + "description": "harbour facilitiy, service and repair", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "804", + "_y": "495" + }, + "_width": "19", + "_height": "19" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "HRBFAC18", + "description": "harbour facilitiy, quarantine station", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "833", + "_y": "495" + }, + "_width": "19", + "_height": "19" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "NMKINF02", + "description": "notice mark, overhead power line crossing", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "862", + "_y": "495" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF03", + "description": "notice mark, weir", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "22", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "903", + "_y": "495" + }, + "_width": "45", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF04", + "description": "notice mark, cable ferry", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "22", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "958", + "_y": "495" + }, + "_width": "45", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF05", + "description": "notice mark, ferry", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "22", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1013", + "_y": "495" + }, + "_width": "45", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF19", + "description": "notice mark, anchoring permitted", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1068", + "_y": "495" + }, + "_width": "31", + "_height": "45" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF22", + "description": "notice mark, turning permitted", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1109", + "_y": "495" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF23", + "description": "notice mark, crossing with secondary waterway ahead", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1150", + "_y": "495" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF24", + "description": "notice mark, secondary waterway ahead on the right", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1191", + "_y": "495" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF25", + "description": "notice mark, secondary waterway ahead on the left", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "16", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1232", + "_y": "495" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF28", + "description": "notice mark, secondary waterway left (main fairway right)", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1273", + "_y": "495" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF29", + "description": "notice mark, secondary waterway right (main fairway left)", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1314", + "_y": "495" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF30", + "description": "notice mark, secondary waterway ahead and left (main fairway right)", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1355", + "_y": "495" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF31", + "description": "notice mark, secondary waterway ahead and right (main fairway left)", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1396", + "_y": "495" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF32", + "description": "notice mark, crossing with main fairway ahead", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1437", + "_y": "495" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF33", + "description": "notice mark, main fairway ahead", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF34", + "description": "notice mark, main fairway ahead (main fairway ahead and right)", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "51", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF35", + "description": "notice mark, main fairway ahead (main fairway ahead and left)", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "92", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF36", + "description": "notice mark, main fairway ahead (main fairway ahead and right, secondary fairway continues left)", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "133", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF37", + "description": "notice mark, main fairway ahead (main fairway ahead and left, secondary fairway continues right)", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "174", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF38", + "description": "notice mark, end of prohibition or regulation", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "215", + "_y": "550" + }, + "_width": "31", + "_height": "45" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF39", + "description": "notice mark, drink water", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "256", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF40", + "description": "notice mark, telephone", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "297", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF41", + "description": "notice mark, Boats with engine permitted", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "338", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF42", + "description": "notice mark, Sport and pleasure boats permitted", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "379", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF43", + "description": "notice mark, waterski", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "420", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF44", + "description": "notice mark, sailing boats", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "461", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF45", + "description": "notice mark, boats without engine or sails", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "502", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF46", + "description": "notice mark, windsurfing", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "543", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF47", + "description": "notice mark, nautical radio information", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "584", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF48", + "description": "notice mark, waterscooters, jetskis", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "625", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF49", + "description": "notice mark, High speed motorboats permitted", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "666", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF50", + "description": "notice mark, Slipping of boats permitted", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "707", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF51", + "description": "notice mark, maximum number ov vessels side by side, 1 vessel", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "748", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF52", + "description": "notice mark, maximum number ov vessels side by side, 2 vessels", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "789", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF53", + "description": "notice mark, maximum number ov vessels side by side, 3 vessels", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "830", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF54", + "description": "notice mark, maximum number ov vessels side by side, 4 vessels", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "871", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF55", + "description": "notice mark, maximum number ov vessels side by side, 5 vessels", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "912", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH01", + "description": "notice mark, prohibition in general", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "953", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH04", + "description": "notice mark, overtaking prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "994", + "_y": "550" + }, + "_width": "31", + "_height": "45" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH05", + "description": "notice mark, overtaking prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1035", + "_y": "550" + }, + "_width": "31", + "_height": "45" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH06", + "description": "notice mark, passing and overtaking prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1076", + "_y": "550" + }, + "_width": "31", + "_height": "45" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH08", + "description": "notice mark, anchoring prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1117", + "_y": "550" + }, + "_width": "31", + "_height": "45" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH10", + "description": "notice mark, turning prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1158", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH11", + "description": "notice mark, avoid wave wash", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1199", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH14", + "description": "notice mark, boats with engine prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1240", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH15", + "description": "notice mark, sport and pleasure boats prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1281", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH16", + "description": "notice mark, waterskiing prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1322", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH17", + "description": "notice mark, sailing boats prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1363", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH18", + "description": "notice mark, boats without engines or sails prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1404", + "_y": "550" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH19", + "description": "notice mark, windsurfing prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "605" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH20", + "description": "notice mark, waterscooters and jetskis prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "51", + "_y": "605" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH21", + "description": "notice mark, high speed boats prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "92", + "_y": "605" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH22", + "description": "notice mark, slipping of boats prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "133", + "_y": "605" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKRCD05", + "description": "notice mark, recommended traffic direction, left", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "22", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "174", + "_y": "605" + }, + "_width": "45", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKRCD06", + "description": "notice mark, recommended traffic direction, right", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "22", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "229", + "_y": "605" + }, + "_width": "45", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG01", + "description": "notice mark, regulation in genearal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "284", + "_y": "605" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG02", + "description": "notice mark, mandarory traffic direction, left", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "22", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "325", + "_y": "605" + }, + "_width": "45", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG03", + "description": "notice mark, mandarory traffic direction, right", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "22", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "380", + "_y": "605" + }, + "_width": "45", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG04", + "description": "notice mark, mandarory change to the fairwayside to port", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "435", + "_y": "605" + }, + "_width": "31", + "_height": "45" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG05", + "description": "notice mark, mandarory change to the fairwayside to starboard", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "476", + "_y": "605" + }, + "_width": "31", + "_height": "45" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG06", + "description": "notice mark, port fairwayside is mandarory traffic direction", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "517", + "_y": "605" + }, + "_width": "31", + "_height": "45" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG07", + "description": "notice mark, starboard fairwayside is mandarory traffic direction", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "558", + "_y": "605" + }, + "_width": "31", + "_height": "45" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG08", + "description": "notice mark, mandarory crossing of the fairwayside to port", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "599", + "_y": "605" + }, + "_width": "31", + "_height": "45" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG09", + "description": "notice mark, mandarory crossing of the fairwayside to starboard", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "640", + "_y": "605" + }, + "_width": "31", + "_height": "45" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG10", + "description": "notice mark, mandarory stop", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "681", + "_y": "605" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG11", + "description": "notice mark, mandarory sound signal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "722", + "_y": "605" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG12", + "description": "notice mark, special attention", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "763", + "_y": "605" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG13", + "description": "notice mark, give way other vessels when entering the main fairway", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "804", + "_y": "605" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG14", + "description": "notice mark, give way other vessels when crossing the main fairway", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "845", + "_y": "605" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG15", + "description": "notice mark, mandarory radiophone", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "886", + "_y": "605" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG16", + "description": "notice mark, restricted fairway depth", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "927", + "_y": "605" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG17", + "description": "notice mark, restricted vertical clearance", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "968", + "_y": "605" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG18", + "description": "notice mark, restricted width of the faiway or passage", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1009", + "_y": "605" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG19", + "description": "restricted width of the waterway, left side, default", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "22", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1050", + "_y": "605" + }, + "_width": "45", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKREG20", + "description": "restricted width of the waterway, right side, default", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "22", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1105", + "_y": "605" + }, + "_width": "45", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NOTMRK01", + "description": "notice mark, prohibition", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1160", + "_y": "605" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "NOTMRK02", + "description": "notice mark, regulation, restriction", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1185", + "_y": "605" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "NOTMRK03", + "description": "notice mark, information, recommendation", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1210", + "_y": "605" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCRESBL", + "definition": "R", + "_RCID": "36" + }, + { + "name": "PIER0001", + "description": "pier with no surveyed extension", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "10", + "_y": "10" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1235", + "_y": "605" + }, + "_width": "21", + "_height": "21" + }, + "color-ref": "ADEPMDBCHBLKCLANDADCHGRDECSTLNFDEPMS", + "definition": "R", + "_RCID": "36" + }, + { + "name": "RADHLT01", + "description": "radar highlight (CONRAD=1)", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1266", + "_y": "605" + }, + "_width": "17", + "_height": "17" + }, + "color-ref": "ARADHI", + "definition": "R", + "_RCID": "36" + }, + { + "name": "REFDMP01", + "description": "refuse dump", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1293", + "_y": "605" + }, + "_width": "19", + "_height": "24" + }, + "color-ref": "ADEPMDBCHBLKCCHGRDDCHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "SSENTR01", + "description": "signal station, port entry", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "28" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1322", + "_y": "605" + }, + "_width": "17", + "_height": "31" + }, + "color-ref": "ADEPMDBCHBLKCDEPDW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "SSLOCK01", + "description": "signal station, lock", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "10", + "_y": "23" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1349", + "_y": "605" + }, + "_width": "21", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCDEPDW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "SSWARS01", + "description": "signal station, wahrschau", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "28" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1380", + "_y": "605" + }, + "_width": "17", + "_height": "31" + }, + "color-ref": "ADEPMDBCHBLKCDEPDW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TERMNL01", + "description": "terminal, passanger terminal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1407", + "_y": "605" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TERMNL02", + "description": "terminal, ferry terminal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "660" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ADEPMDBCHBLKCNODTADCHGRD", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TERMNL03", + "description": "terminal, Container transshipment", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "47", + "_y": "660" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ADEPMDBCHBLKCNODTADCHREDERADHI", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TERMNL04", + "description": "terminal, Bulk transshipment", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "84", + "_y": "660" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ADEPMDBCHBLKCNODTADCHWHTECHGRD", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TERMNL05", + "description": "terminal, Oil transshipment", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "121", + "_y": "660" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TERMNL06", + "description": "terminal, Fuel transshipment", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "158", + "_y": "660" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TERMNL07", + "description": "terminal, Chemical transshipment", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "195", + "_y": "660" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TERMNL08", + "description": "terminal, Liquid Goods transshipment", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "232", + "_y": "660" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TERMNL09", + "description": "terminal, Explosive goods transshipment", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "269", + "_y": "660" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ADEPMDBCHBLKCNODTADCHREDECHYLWFCHGRD", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TERMNL10", + "description": "terminal, Fish transshipment", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "306", + "_y": "660" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TERMNL11", + "description": "terminal, Car transshipment", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "343", + "_y": "660" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TERMNL12", + "description": "terminal, General Cargo transshipment", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "380", + "_y": "660" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TERMNL13", + "description": "terminal, RoRo Terminal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "417", + "_y": "660" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ADEPMDBCHBLKCNODTA", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPMA100", + "description": "topmark, beacon, red cone, point down", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "454", + "_y": "660" + }, + "_width": "15", + "_height": "11" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPMA101", + "description": "topmark, beacon, red boarded cone, point down", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "479", + "_y": "660" + }, + "_width": "15", + "_height": "11" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPMA102", + "description": "topmark, beacon, green cone, point up", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "23" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "504", + "_y": "660" + }, + "_width": "15", + "_height": "12" + }, + "color-ref": "ADEPMDBCHBLKCCHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPMA103", + "description": "topmark, beacon, green boarded cone, point up", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "23" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "529", + "_y": "660" + }, + "_width": "15", + "_height": "12" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPMA104", + "description": "topmark, beacon, red boarded cone, point down, green boarded cone, point up, symplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "33" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "554", + "_y": "660" + }, + "_width": "15", + "_height": "22" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPMA105", + "description": "topmark, beacon, red boarded cone, point down, green boarded cone, point up, symplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "33" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "579", + "_y": "660" + }, + "_width": "15", + "_height": "22" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPMA106", + "description": "beacon top mark, white-red square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "604", + "_y": "660" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPMA107", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "629", + "_y": "660" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPMA108", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "654", + "_y": "660" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPMA109", + "description": "beacon top mark, green boarded square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "681", + "_y": "660" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPMA110", + "description": "beacon top mark, yellow-black square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "708", + "_y": "660" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPMA111", + "description": "beacon top mark, yellow St.Georg cross", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "28" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "733", + "_y": "660" + }, + "_width": "17", + "_height": "17" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPMA112", + "description": "beacon top mark, yellow-black square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "760", + "_y": "660" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPMA113", + "description": "beacon top mark, yellow Andreas cross", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "787", + "_y": "660" + }, + "_width": "17", + "_height": "17" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPMA114", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2", + "_y": "23" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "814", + "_y": "660" + }, + "_width": "8", + "_height": "23" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPMA115", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "23" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "830", + "_y": "660" + }, + "_width": "8", + "_height": "23" + }, + "color-ref": "ADEPMDBCHBLKCCHGRN", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPMA116", + "description": "topmark, buoy, red-white-red board, entry prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "23" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "850", + "_y": "660" + }, + "_width": "14", + "_height": "10" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPMA117", + "description": "topmark, buoy, red-grean shere", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2", + "_y": "23" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "874", + "_y": "660" + }, + "_width": "13", + "_height": "13" + }, + "color-ref": "ADEPMDBUINFDCCHREDDCHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TRNBSN01", + "description": "turning basin", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "11", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "897", + "_y": "660" + }, + "_width": "23", + "_height": "23" + }, + "color-ref": "ADEPMDBCHMGD", + "definition": "R", + "_RCID": "36" + }, + { + "name": "CARTRF01", + "description": "facilities for loading and unloading vehicles", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "930", + "_y": "660" + }, + "_width": "18", + "_height": "24" + }, + "color-ref": "BCHBLKDCHGRFADEPMDCDEPMS", + "definition": "R", + "_RCID": "1" + }, + { + "name": "VTCLMK01", + "description": "vertical clearance mark at bridges", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "3" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "958", + "_y": "660" + }, + "_width": "8", + "_height": "24" + }, + "color-ref": "ADEPMDBCHBLKCDEPDW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "WTLVGG01", + "description": "gauge, height of water", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "23" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "976", + "_y": "660" + }, + "_width": "19", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCDEPDW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "WTLVGG02", + "description": "recording gauge, height of water", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1005", + "_y": "660" + }, + "_width": "8", + "_height": "24" + }, + "color-ref": "ADEPMDBCHBLKCDEPDW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "NMKINF06", + "description": "notice mark, berthing permitted", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1023", + "_y": "660" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF07", + "description": "notice mark, berthing facilities for push tows", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1064", + "_y": "660" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF08", + "description": "notice mark, berthing facilities for push tows with one blue cone", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1105", + "_y": "660" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF09", + "description": "notice mark, berthing facilities for push tows with two blue cones", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1146", + "_y": "660" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF10", + "description": "notice mark, berthing facilities for push tows with three blue cones", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1187", + "_y": "660" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF11", + "description": "notice mark, berthing facilities for other vessels than push tows", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1228", + "_y": "660" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF12", + "description": "notice mark, berthing facilities for other vessels than push tows with one blue cone", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1269", + "_y": "660" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF13", + "description": "notice mark, berthing facilities for other vessels than push tows with two blue cones", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1310", + "_y": "660" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF14", + "description": "notice mark, berthing facilities for other vessels than push tows with three blue cones", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1351", + "_y": "660" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF15", + "description": "notice mark, berthing facilities for all vessels", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1392", + "_y": "660" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF16", + "description": "notice mark, berthing facilities for all vessels with one blue cone", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1433", + "_y": "660" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF17", + "description": "notice mark, berthing facilities for all vessels with two blue cones", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "701" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF18", + "description": "notice mark, berthing facilities for all vessels with three blue cones", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "51", + "_y": "701" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF20", + "description": "notice mark, making fast to the bank permitted", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "92", + "_y": "701" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF21", + "description": "notice mark, facilities for loading and unloading vehicles", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "133", + "_y": "701" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF26", + "description": "notice mark, secondary waterway ahead (main fairway right)", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "174", + "_y": "701" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "AUINFDBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKINF27", + "description": "notice mark, secondary waterway ahead (main fairway left)", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "215", + "_y": "701" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "AUINFDBRESBLCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "NMKPRH07", + "description": "notice mark, berthing prohibited", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "256", + "_y": "701" + }, + "_width": "31", + "_height": "31" + }, + "color-ref": "ACHBLKBCHREDCCHWHT", + "definition": "R", + "_RCID": "95" + }, + { + "name": "BOYCAN60", + "description": "can buoy,lateral-r,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "297", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYBAR60", + "description": "barrel buoy, red, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "326", + "_y": "701" + }, + "_width": "24", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "25" + }, + { + "name": "BOYBAR61", + "description": "barrel buoy, green, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "360", + "_y": "701" + }, + "_width": "24", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRN", + "definition": "R", + "_RCID": "25" + }, + { + "name": "BOYBAR62", + "description": "barrel buoy, yellow, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "394", + "_y": "701" + }, + "_width": "24", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "25" + }, + { + "name": "BOYSPH60", + "description": "spherical buoy,lateral-r,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "428", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "45" + }, + { + "name": "BOYSPH61", + "description": "spherical buoy,lateral-g,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "457", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRN", + "definition": "R", + "_RCID": "45" + }, + { + "name": "BOYSPH62", + "description": "spherical buoy,yellow,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "486", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "45" + }, + { + "name": "BOYCAN64", + "description": "can buoy,black,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "515", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHBLK", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYSPH05", + "description": "spherical buoy,white,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "544", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHWHT", + "definition": "R", + "_RCID": "45" + }, + { + "name": "BOYCON64", + "description": "conical buoy,black,paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "573", + "_y": "701" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHBLK", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYSPH65", + "description": "spherical buoy,red-white,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "602", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "45" + }, + { + "name": "BOYSPH66", + "description": "spherical buoy,rgr,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "631", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHGRN", + "definition": "R", + "_RCID": "45" + }, + { + "name": "BOYSPH67", + "description": "spherical buoy,grg,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "660", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHRED", + "definition": "R", + "_RCID": "45" + }, + { + "name": "BOYCAN68", + "description": "can buoy,cardinal north by,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "689", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYCAN70", + "description": "can buoy,cardinal east byb,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "718", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYCAN71", + "description": "can buoy,cardinal west yby,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "747", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYCAN69", + "description": "can buoy,cardinal south yb,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "776", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYCAN72", + "description": "can buoy,lateral rgr,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "805", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHGRN", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYCAN73", + "description": "can buoy,lateral grg,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "834", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHRED", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYPIL80", + "description": "pillar buoy,red/yellow,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "863", + "_y": "701" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHYLW", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYCON66", + "description": "conical buoy,lateral-rgr,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "891", + "_y": "701" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHGRN", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYCON67", + "description": "conical buoy,lateral-grg,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "920", + "_y": "701" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHRED", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYSPH74", + "description": "spherical buoy,rg,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "949", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHGRN", + "definition": "R", + "_RCID": "45" + }, + { + "name": "BOYCAN74", + "description": "can buoy,lateral-rw,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "978", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYCAN75", + "description": "can buoy,lateral rg,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1007", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHGRN", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYCON68", + "description": "conical buoy,lateral-gr,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1036", + "_y": "701" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHRED", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYCAN76", + "description": "can buoy,isolated danger brb,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1065", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYCON71", + "description": "conical buoy,cardinal-east-byb,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1094", + "_y": "701" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHBLKDCHYLW", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYCON72", + "description": "conical buoy,cardinal-west-yby,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1123", + "_y": "701" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHBLK", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYCON69", + "description": "conical buoy,cardinal-north-by,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1152", + "_y": "701" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHBLKDCHYLW", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYCON70", + "description": "conical buoy,cardinal-south-yb,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1181", + "_y": "701" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHBLK", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYSUP60", + "description": "super buoy, red, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1210", + "_y": "701" + }, + "_width": "25", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "50" + }, + { + "name": "BOYSUP61", + "description": "super buoy, green, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1245", + "_y": "701" + }, + "_width": "25", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRN", + "definition": "R", + "_RCID": "50" + }, + { + "name": "BOYSUP62", + "description": "super buoy, yellow, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1280", + "_y": "701" + }, + "_width": "25", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "50" + }, + { + "name": "BOYCON73", + "description": "conical buoy,gw,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1315", + "_y": "701" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHT", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYPIL81", + "description": "pillar buoy,white/orange,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1344", + "_y": "701" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHCOR", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYCAN77", + "description": "can buoy,lateral white/orange,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1372", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHCOR", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYCAN78", + "description": "can buoy,lateral wow,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1401", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHCOR", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYCAN79", + "description": "can buoy,orange,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1430", + "_y": "701" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHCOR", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYSPR68", + "description": "black/yellow spar bouy, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1459", + "_y": "701" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHBLK", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BCNLAT50", + "description": "river beacon stake - pole", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "742" + }, + "_width": "7", + "_height": "14" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "36" + }, + { + "name": "BOYCON77", + "description": "conical buoy,lateral-wo,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "27", + "_y": "742" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHCOR", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYSPH77", + "description": "spherical buoy,wo,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "56", + "_y": "742" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHCOR", + "definition": "R", + "_RCID": "45" + }, + { + "name": "BOYCON78", + "description": "conical buoy,lateral-rw,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "85", + "_y": "742" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYSPH75", + "description": "spherical buoy,gr,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "114", + "_y": "742" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHRED", + "definition": "R", + "_RCID": "45" + }, + { + "name": "BOYSPR69", + "description": "yellow/black spar bouy, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "143", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHBLK", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BOYSPR70", + "description": "black/yellow/black spar bouy, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "163", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHBLK", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BOYSPR71", + "description": "yellow/black/yellow spar bouy, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "183", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHBLK", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BOYSPR62", + "description": "yellow spar bouy, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "203", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHBLK", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BCNSPR62", + "description": "yellow spar beacon, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "223", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHBLKDCHYLW", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BCNTOW01", + "description": "beacon tower, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "243", + "_y": "742" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNTOW61", + "description": "beacon tower, green, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "268", + "_y": "742" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHGRN", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNTOW60", + "description": "beacon tower, red, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "293", + "_y": "742" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNTOW62", + "description": "beacon yellow, red, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "318", + "_y": "742" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "24" + }, + { + "name": "TOWERS01", + "description": "tower, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "343", + "_y": "742" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBLANDF", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS03", + "description": "tower, black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "367", + "_y": "742" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS05", + "description": "tower, white, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "391", + "_y": "742" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHT", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS78", + "description": "tower, white/red, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "415", + "_y": "742" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS62", + "description": "tower, yellow, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "439", + "_y": "742" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS79", + "description": "tower, white/black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "463", + "_y": "742" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLK", + "definition": "R", + "_RCID": "342" + }, + { + "name": "BCNGEN60", + "description": "beacon in general, red, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "487", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BCNGEN61", + "description": "beacon in general, green, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "507", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHGRN", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BCNSTK02", + "description": "minor, stake or pole beacon, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "527", + "_y": "742" + }, + "_width": "8", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "23" + }, + { + "name": "BCNSTK60", + "description": "minor, stake or pole beacon, red, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "545", + "_y": "742" + }, + "_width": "8", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "23" + }, + { + "name": "BCNSTK61", + "description": "minor, stake or pole beacon, green, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "563", + "_y": "742" + }, + "_width": "8", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRN", + "definition": "R", + "_RCID": "23" + }, + { + "name": "BCNGEN68", + "description": "beacon in general, black/yellow, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "581", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BCNGEN69", + "description": "beacon in general, yellow/black, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "601", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BCNGEN70", + "description": "beacon in general, black/yellow/back, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "621", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BCNGEN71", + "description": "beacon in general, yellow/back/yellow, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "641", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BOYSPH68", + "description": "spherical buoy,by,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "661", + "_y": "742" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHBLKDCHYLW", + "definition": "R", + "_RCID": "45" + }, + { + "name": "BOYSPH69", + "description": "spherical buoy,yb,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "690", + "_y": "742" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHBLK", + "definition": "R", + "_RCID": "45" + }, + { + "name": "BOYSPH70", + "description": "spherical buoy,byb,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "719", + "_y": "742" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHBLKDCHYLW", + "definition": "R", + "_RCID": "45" + }, + { + "name": "BOYSPH71", + "description": "spherical buoy,yby,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "748", + "_y": "742" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHBLK", + "definition": "R", + "_RCID": "45" + }, + { + "name": "BCNTOW76", + "description": "beacon tower, brb, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "777", + "_y": "742" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNLTC01", + "description": "lattice beacon, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "802", + "_y": "742" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "24" + }, + { + "name": "TOWERS60", + "description": "tower, red, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "827", + "_y": "742" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS61", + "description": "tower, green, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "851", + "_y": "742" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHGRN", + "definition": "R", + "_RCID": "342" + }, + { + "name": "BCNGEN76", + "description": "beacon in general, black/red/back, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "875", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BCNSTK78", + "description": "minor, stake or pole beacon, red/white, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "895", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "23" + }, + { + "name": "TOPMAR23", + "description": "topmark for beacons, cone point up, yellow, filled, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "913", + "_y": "742" + }, + "_width": "9", + "_height": "6" + }, + "color-ref": "ADEPMDBCHYLW", + "definition": "R", + "_RCID": "327" + }, + { + "name": "BCNTOW69", + "description": "beacon yb, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "932", + "_y": "742" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNTOW70", + "description": "beacon byb, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "957", + "_y": "742" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNTOW71", + "description": "beacon yby, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "982", + "_y": "742" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNTOW64", + "description": "beacon tower, red/white, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1007", + "_y": "742" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNTOW05", + "description": "beacon tower, white, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1032", + "_y": "742" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHWHT", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNTOW65", + "description": "beacon tower, green/white, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1057", + "_y": "742" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHT", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNGEN05", + "description": "beacon in general, white, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1082", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHWHT", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BCNGEN79", + "description": "beacon in general, orange, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1102", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHCOR", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BCNGEN64", + "description": "beacon in general, red/white, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1122", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BOYSPR72", + "description": "black/red/black spar bouy, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1142", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHBLK", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BCNGEN65", + "description": "beacon in general, green/white, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1162", + "_y": "742" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHGRN", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BCNSTK62", + "description": "minor, stake or pole beacon, yellow, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1182", + "_y": "742" + }, + "_width": "8", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "23" + }, + { + "name": "TOWERS77", + "description": "tower, white/green, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1200", + "_y": "742" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHGRN", + "definition": "R", + "_RCID": "342" + }, + { + "name": "BOYBAR01", + "description": "barrel buoy, black full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1224", + "_y": "742" + }, + "_width": "24", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "25" + }, + { + "name": "RSCSTA02", + "description": "position approximate", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "21", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1258", + "_y": "742" + }, + "_width": "22", + "_height": "21" + }, + "color-ref": "ACHBLK", + "definition": "R", + "_RCID": "1" + }, + { + "name": "BOYSPH01", + "description": "spherical buoy,general ,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1290", + "_y": "742" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "45" + }, + { + "name": "BOYGEN03", + "description": "default buoy, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1319", + "_y": "742" + }, + "_width": "20", + "_height": "17" + }, + "color-ref": "ADEPMDBCHBLKCCHMGD", + "definition": "R", + "_RCID": "1" + }, + { + "name": "LITVES01", + "description": "light vessel, full-chart.", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1349", + "_y": "742" + }, + "_width": "31", + "_height": "23" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "121" + }, + { + "name": "LITVES60", + "description": "light vessel. red, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1390", + "_y": "742" + }, + "_width": "31", + "_height": "23" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "121" + }, + { + "name": "LITVES61", + "description": "light vessel. green, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1431", + "_y": "742" + }, + "_width": "31", + "_height": "23" + }, + "color-ref": "ADEPMDBCHBLKCCHGRN", + "definition": "R", + "_RCID": "121" + }, + { + "name": "BOYSUP65", + "description": "super buoy, red, white, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "778" + }, + "_width": "25", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "50" + }, + { + "name": "BOYSUP01", + "description": "super buoy, general, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "45", + "_y": "778" + }, + "_width": "25", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "50" + }, + { + "name": "BOYSUP02", + "description": "super buoy, black, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "80", + "_y": "778" + }, + "_width": "25", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHBLK", + "definition": "R", + "_RCID": "50" + }, + { + "name": "BOYSPR60", + "description": "red spar bouy, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "115", + "_y": "778" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHBLK", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BOYSPR61", + "description": "green spar bouy, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "135", + "_y": "778" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHBLK", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BOYSPR65", + "description": "red/white spar bouy, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "155", + "_y": "778" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BOYCON01", + "description": "conical buoy, general, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "175", + "_y": "778" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BCNSTK01", + "description": "minor, stake or pole beacon, white, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "204", + "_y": "778" + }, + "_width": "8", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDNODTA", + "definition": "R", + "_RCID": "23" + }, + { + "name": "BCNSTK05", + "description": "minor, stake or pole beacon, white, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "222", + "_y": "778" + }, + "_width": "8", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHWHT", + "definition": "R", + "_RCID": "23" + }, + { + "name": "BOYMOR01", + "description": "mooring buoy, barrel shape, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "240", + "_y": "778" + }, + "_width": "24", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "40" + }, + { + "name": "BOYMOR03", + "description": "can mooring buoy,generic,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "274", + "_y": "778" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRN", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYSUP03", + "description": "LANBY, super-buoy, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "303", + "_y": "778" + }, + "_width": "25", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "50" + }, + { + "name": "LITFLT01", + "description": "light float, full-chart.", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "338", + "_y": "778" + }, + "_width": "31", + "_height": "14" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "119" + }, + { + "name": "BOYSPR01", + "description": "default spar bouy, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "379", + "_y": "778" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLK", + "definition": "R", + "_RCID": "11" + }, + { + "name": "CAIRNS01", + "description": "cairn, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "399", + "_y": "778" + }, + "_width": "18", + "_height": "17" + }, + "color-ref": "ADEPMDBLANDF", + "definition": "R", + "_RCID": "59" + }, + { + "name": "NOTBRD11", + "description": "notice board, visual conspicuous, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "427", + "_y": "778" + }, + "_width": "12", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "134" + }, + { + "name": "PRICKE03", + "description": "withy, porthand, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "18" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "449", + "_y": "778" + }, + "_width": "13", + "_height": "20" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "157" + }, + { + "name": "PRICKE04", + "description": "withy, starboard hand, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "18" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "472", + "_y": "778" + }, + "_width": "13", + "_height": "20" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "158" + }, + { + "name": "TOWERS80", + "description": "tower, white/black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "495", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLKECHRED", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS81", + "description": "tower, green/white/black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "519", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLKECHREDFCHGRN", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS82", + "description": "tower, red/grey, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "543", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHGRNECHREDFCHGRF", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS83", + "description": "tower, black/white, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "567", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLK", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS84", + "description": "tower, black/grey, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "591", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHGRNECHREDFCHGRF", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS85", + "description": "tower, red/white, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "615", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS86", + "description": "tower, grey, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "639", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHGRD", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS87", + "description": "tower, white/grey, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "663", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHGRNECHREDFCHGRF", + "definition": "R", + "_RCID": "342" + }, + { + "name": "BCNTOW85", + "description": "beacon tower, green/white, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "687", + "_y": "778" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCUINFGDDEPDW", + "definition": "R", + "_RCID": "24" + }, + { + "name": "TOWERS89", + "description": "tower, green/grey, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "712", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHGRNECHREDFCHGRF", + "definition": "R", + "_RCID": "342" + }, + { + "name": "PILBOP02", + "description": "Pilot boarding place", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "736", + "_y": "778" + }, + "_width": "17", + "_height": "17" + }, + "color-ref": "ADEPDWBCHBLKCDEPMDDCHMGD", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOWERS02", + "description": "tower, water, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "763", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBLANDF", + "definition": "R", + "_RCID": "342" + }, + { + "name": "PILBOP04", + "description": "Pilot boarding place", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "8" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "787", + "_y": "778" + }, + "_width": "17", + "_height": "17" + }, + "color-ref": "ADEPMDBCHBLKCDEPMDDCHMGD", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOWERS12", + "description": "tower, water, black, conspicious, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "814", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS15", + "description": "conspisious tower, radio/television, black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "838", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "342" + }, + { + "name": "BCNGEN80", + "description": "beacon in general, orange, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "862", + "_y": "778" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHCOR", + "definition": "R", + "_RCID": "11" + }, + { + "name": "BCNSTK79", + "description": "minor, stake or pole beacon, red/green/red, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "882", + "_y": "778" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRN", + "definition": "R", + "_RCID": "23" + }, + { + "name": "BCNSTK80", + "description": "minor, stake or pole beacon, green/red/green, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "900", + "_y": "778" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHRED", + "definition": "R", + "_RCID": "23" + }, + { + "name": "TOPMAR99", + "description": "topmark, beacon, Diamond,yellow", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "918", + "_y": "778" + }, + "_width": "15", + "_height": "11" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "BOYCAN80", + "description": "can buoy,red-white,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "943", + "_y": "778" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BCNSTK08", + "description": "minor, stake or pole beacon,yellow full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "972", + "_y": "778" + }, + "_width": "8", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "23" + }, + { + "name": "BCNSTK81", + "description": "minor, stake or pole beacon, red/white, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "989", + "_y": "778" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHT", + "definition": "R", + "_RCID": "23" + }, + { + "name": "BOYCON63", + "description": "conical buoy,lateral-balck-red-black,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1008", + "_y": "778" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHRED", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYCON65", + "description": "conical buoy,green-white,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1037", + "_y": "778" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHT", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYMOR31", + "description": "can mooring buoy,generic, whire,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1066", + "_y": "778" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHWHT", + "definition": "R", + "_RCID": "26" + }, + { + "name": "NOTBRD12", + "description": "notice board, visual conspicuous, yellow full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1095", + "_y": "778" + }, + "_width": "12", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLW", + "definition": "R", + "_RCID": "134" + }, + { + "name": "TOWERS63", + "description": "tower, black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1117", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLK", + "definition": "R", + "_RCID": "342" + }, + { + "name": "LITFLT61", + "description": "light float, green, full-chart.", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1141", + "_y": "778" + }, + "_width": "31", + "_height": "14" + }, + "color-ref": "ADEPMDBCHBLKCCHGRN", + "definition": "R", + "_RCID": "119" + }, + { + "name": "LITFLT10", + "description": "light float, red/white, full-chart.", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "15", + "_y": "9" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1182", + "_y": "778" + }, + "_width": "31", + "_height": "14" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "119" + }, + { + "name": "TOWERS69", + "description": "tower, yellow/black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1223", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLKECHYLWFCHGRN", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS68", + "description": "tower, black/yellow, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1247", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLKECHYLWFCHGRN", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS70", + "description": "tower, black/yellow/black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1271", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLKECHYLWFCHGRN", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS71", + "description": "tower, yellow/black/yellow, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1295", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLKECHYLWFCHGRN", + "definition": "R", + "_RCID": "342" + }, + { + "name": "BCNSTK77", + "description": "minor, stake or pole beacon, green/white, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1319", + "_y": "778" + }, + "_width": "8", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHT", + "definition": "R", + "_RCID": "23" + }, + { + "name": "BCNTOW73", + "description": "beacon tower, grg, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1337", + "_y": "778" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCRADHIDCHWHTECHRED", + "definition": "R", + "_RCID": "24" + }, + { + "name": "TOWERS90", + "description": "tower, red/grey, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1362", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHGRNECHREDFCHGRF", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS91", + "description": "tower, white/grey, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1386", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHGRNECHREDFCHGRF", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS92", + "description": "tower, black/yellow/black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1410", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLKECHYLWFCHGRN", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS93", + "description": "tower, black/yellow/black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1434", + "_y": "778" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLKECHYLWFCHGRNGCHGRF", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS94", + "description": "tower, black/yellow/black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "814" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLKECHYLWFCHGRNGCHGRF", + "definition": "R", + "_RCID": "342" + }, + { + "name": "BCNTOW86", + "description": "beacon yb, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "34", + "_y": "814" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHWHT", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNTOW87", + "description": "beacon yb, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "59", + "_y": "814" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHWHT", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNTOW88", + "description": "beacon yb, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "84", + "_y": "814" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHWHT", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNTOW89", + "description": "beacon yb, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "109", + "_y": "814" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHWHT", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNTOW90", + "description": "beacon yb, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "134", + "_y": "814" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHWHTECHBRN", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNTOW91", + "description": "beacon yb, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "159", + "_y": "814" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHWHTECHBRN", + "definition": "R", + "_RCID": "24" + }, + { + "name": "TOPSHP11", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "184", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHCOR", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP12", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "209", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP13", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "234", + "_y": "814" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHCORDCHBLK", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP14", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "257", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP17", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "282", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHCOR", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP16", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "307", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP21", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "332", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP22", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "357", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP23", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "382", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP24", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "407", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP28", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "432", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP34", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "457", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHCORDCHWHTECHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP32", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "482", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP42", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "507", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP44", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "532", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHWHTECHGRNFCHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP47", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "557", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRNFCHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP48", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "582", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRNFCHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP51", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "607", + "_y": "814" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP58", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "634", + "_y": "814" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP61", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "661", + "_y": "814" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHCORECHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP62", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "688", + "_y": "814" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHCOR", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP65", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "715", + "_y": "814" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP63", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "742", + "_y": "814" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP64", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "769", + "_y": "814" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP69", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "796", + "_y": "814" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHREDFCHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP19", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "823", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHYLWECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP20", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "848", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "BCNLAT24", + "description": "minor lateral beacon, red-green, simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "873", + "_y": "814" + }, + "_width": "8", + "_height": "22" + }, + "color-ref": "ADEPMDBCHBLKDCHGRNCCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP25", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "891", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHCOR", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP67", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "916", + "_y": "814" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHREDFCHCOR", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP29", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "943", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP30", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "968", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRNFCHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP15", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "993", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHREDFCHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP43", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1018", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRNFCHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP50", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1043", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRNFCHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP70", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1068", + "_y": "814" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP35", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1095", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP10", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1120", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP09", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1145", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP71", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1170", + "_y": "814" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHREDFCHCOR", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP31", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1197", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHCOR", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP55", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1222", + "_y": "814" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHCORDCHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "BOYCAN65", + "description": "can buoy,yellow,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1249", + "_y": "814" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHWHT", + "definition": "R", + "_RCID": "26" + }, + { + "name": "TOPSHPA9", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1278", + "_y": "814" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPMAR98", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1301", + "_y": "814" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHREDFCHCOR", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP36", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1328", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHCOR", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP37", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1353", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP41", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1378", + "_y": "814" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCSCLBRDCHWHTECHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP73", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1403", + "_y": "814" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP72", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1430", + "_y": "814" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "BOYCAN81", + "description": "can buoy,lateral white/orange,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "858" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHCOR", + "definition": "R", + "_RCID": "26" + }, + { + "name": "TOPSHP74", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "39", + "_y": "858" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP92", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "66", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP90", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "89", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP91", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "112", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP93", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "135", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHGRN", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP94", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "158", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP95", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "181", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP96", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "204", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHYLW", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP76", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "227", + "_y": "858" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP97", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "254", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHBLK", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP85", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "277", + "_y": "858" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDNODTACNODTAECHREDFCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP86", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "304", + "_y": "858" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDNODTACNODTAECHWHTFCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP01", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "331", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHCOR", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP84", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "356", + "_y": "858" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDNODTACNODTAECHCORFCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP77", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "383", + "_y": "858" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHBLK", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP99", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "410", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLK", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP89", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "433", + "_y": "858" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDNODTACNODTAECHREDFCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP83", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "460", + "_y": "858" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDNODTACNODTAECHCORFCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPA1", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "487", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHBLKDCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP82", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "510", + "_y": "858" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDNODTACNODTAECHCORFCHBLK", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPA0", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "537", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHBLK", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPB0", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "560", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPA2", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "583", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHGRN", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPA3", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "606", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHGRN", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPA4", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "629", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP81", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "652", + "_y": "858" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDNODTACNODTAECHCORFCHBLK", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPD1", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "679", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHCOR", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHPA5", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "704", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLK", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPA6", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "727", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP05", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "750", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHCORDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHPA7", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "775", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPA8", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "798", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHBLK", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP08", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "821", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHREDFCHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHQ19", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "846", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHQ21", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "871", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHQ20", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "894", + "_y": "858" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDNODTACNODTAECHCORFCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHQ22", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "921", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHCOR", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHQ23", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "946", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHCOR", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHQ24", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "971", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHQ25", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "996", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHQ26", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1021", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHCOR", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHPD3", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1046", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP87", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1071", + "_y": "858" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDNODTACNODTAECHWHTFCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP88", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1098", + "_y": "858" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDNODTACNODTAECHREDFCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP38", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1125", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHCOR", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP39", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1150", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP40", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1175", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLK", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP18", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1200", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "BOYCON79", + "description": "conical buoy,lateral-gr,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1225", + "_y": "858" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHGRN", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYCON80", + "description": "conical buoy,lateral-grg,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1254", + "_y": "858" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHCOR", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYCON81", + "description": "conical buoy,gw,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1283", + "_y": "858" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCRESBLDCHREDECHWHT", + "definition": "R", + "_RCID": "31" + }, + { + "name": "TOPSHPD2", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1312", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP02", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1337", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHREDECHBLK", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP03", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1362", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHCOR", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP04", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1387", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHREDECHBLK", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP98", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1412", + "_y": "858" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHBLK", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP00", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1435", + "_y": "858" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP80", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "902" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDNODTACNODTAECHREDFCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP79", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "37", + "_y": "902" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDNODTACNODTAECHCORFCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHP06", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "64", + "_y": "902" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "BOYCON74", + "description": "conical buoy,gw,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "89", + "_y": "902" + }, + "_width": "19", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHT", + "definition": "R", + "_RCID": "31" + }, + { + "name": "BOYCAN82", + "description": "can buoy,lateral-rw,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "118", + "_y": "902" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "26" + }, + { + "name": "BOYCAN83", + "description": "can buoy,lateral-rw,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "147", + "_y": "902" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "26" + }, + { + "name": "TOPSHPI1", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "176", + "_y": "902" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHQ17", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "201", + "_y": "902" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDNODTACNODTAECHCORFCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPJ1", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "228", + "_y": "902" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDCHYLWCCHYLWECHCORFCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPJ2", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "255", + "_y": "902" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDCHGRNCCHYLWECHCORFCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPMAR01", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "282", + "_y": "902" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDNODTACNODTAECHCORFCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPMAR91", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "309", + "_y": "902" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHQ07", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "336", + "_y": "902" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHQ27", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "361", + "_y": "902" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPP1", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "384", + "_y": "902" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHQ08", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "409", + "_y": "902" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "ZZZZZZ01", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "434", + "_y": "902" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHREDECHGRNFCHYLW", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPI2", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "457", + "_y": "902" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP54", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "482", + "_y": "902" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHPR1", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "509", + "_y": "902" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHREDECHBLK", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHQ28", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "534", + "_y": "902" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHPP2", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "559", + "_y": "902" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP53", + "description": "beacon top mark, yellow square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "584", + "_y": "902" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHYLWDCHWHT", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP52", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "611", + "_y": "902" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHBLK", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHPD4", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "638", + "_y": "902" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP07", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "663", + "_y": "902" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHCORDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHPJ3", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "688", + "_y": "902" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKDCHWHTCCHYLWECHCORFCHWHT", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPS1", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "715", + "_y": "902" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "BCNTOW63", + "description": "beacon tower, red/white, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "740", + "_y": "902" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "24" + }, + { + "name": "BCNTOW66", + "description": "beacon tower, green/white, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "765", + "_y": "902" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHGRN", + "definition": "R", + "_RCID": "24" + }, + { + "name": "TOPSHQ30", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "790", + "_y": "902" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHQ31", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "813", + "_y": "902" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHQ32", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "836", + "_y": "902" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHQ29", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "859", + "_y": "902" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHQ18", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "882", + "_y": "902" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOWERS95", + "description": "tower, white/red, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "905", + "_y": "902" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOPSHQ06", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "929", + "_y": "902" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOWERS96", + "description": "tower, white/red, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "952", + "_y": "902" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOPSHPT1", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "976", + "_y": "902" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPT2", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "999", + "_y": "902" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPT3", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1022", + "_y": "902" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPT4", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1045", + "_y": "902" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPT5", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1068", + "_y": "902" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHWHTCCHBLKDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPT6", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1091", + "_y": "902" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHWHTCCHBLKDCHREDECHCOR", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPT7", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1114", + "_y": "902" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHWHTCCHBLKDCHREDECHCOR", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPT8", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1137", + "_y": "902" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPU1", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1160", + "_y": "902" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHGRN", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHP78", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1185", + "_y": "902" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOWERS97", + "description": "tower, black/yellow/black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1212", + "_y": "902" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLKECHYLWFCHGRNGCHGRF", + "definition": "R", + "_RCID": "342" + }, + { + "name": "BOYPIL59", + "description": "pillar buoy,special purpose-y,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1236", + "_y": "902" + }, + "_width": "18", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHCOR", + "definition": "R", + "_RCID": "43" + }, + { + "name": "BOYSUP66", + "description": "super buoy, red, white, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "12", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1264", + "_y": "902" + }, + "_width": "25", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "50" + }, + { + "name": "TOPSHP68", + "description": "beacon top mark, white-green square board, diagonal", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1299", + "_y": "902" + }, + "_width": "17", + "_height": "16" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOWERS98", + "description": "tower, red/white, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1326", + "_y": "902" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS99", + "description": "tower, red/white, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1350", + "_y": "902" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLK", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS59", + "description": "tower, red, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1374", + "_y": "902" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHBRN", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS58", + "description": "tower, white/red, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1398", + "_y": "902" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBRNCCHWHTDCHREDECHBLK", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS57", + "description": "tower, black/grey, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1422", + "_y": "902" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHGRNECHREDFCHRED", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS56", + "description": "tower, red/white, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1446", + "_y": "902" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHCOR", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS55", + "description": "tower, black/yellow/black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHBLKDCHYLWECHYLWFCHGRNGCHGRF", + "definition": "R", + "_RCID": "342" + }, + { + "name": "BCNTOW74", + "description": "beacon tower, grg, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "34", + "_y": "946" + }, + "_width": "15", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRN", + "definition": "R", + "_RCID": "24" + }, + { + "name": "TOWERS72", + "description": "tower, black/yellow/black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "59", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHWHTECHREDFCHGRN", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS76", + "description": "tower, white/green, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "83", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDRESBL", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS75", + "description": "tower, white/green, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "107", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHBLKDCHCOR", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS74", + "description": "tower, white/green, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "131", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHCOR", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS64", + "description": "tower, yellow, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "155", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHCOR", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS54", + "description": "tower, white/red, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "179", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHWHTCCHCORDCHREDECHBLK", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOPSHQ15", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "203", + "_y": "946" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHQ16", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "31" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "226", + "_y": "946" + }, + "_width": "13", + "_height": "34" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOWERS73", + "description": "tower, black/yellow/black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "249", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLKECHREDFCHGRN", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOPSHPI3", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "273", + "_y": "946" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHYLW", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOPSHPU2", + "description": "beacon top mark, red boarded square board, vertical", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "298", + "_y": "946" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "TOWERS53", + "description": "tower, red/white, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "323", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS65", + "description": "tower, yellow, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "347", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHGRD", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS67", + "description": "tower, black/yellow/black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "371", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHWHTECHYLWFCHGRN", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS66", + "description": "tower, black/yellow/black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "395", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHWHTECHGRDFCHGRN", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS52", + "description": "tower, red/white, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "419", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHT", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS51", + "description": "tower, black/yellow/black, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "443", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHBLKDCHWHTECHYLWFCHGRN", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS50", + "description": "tower, white/red, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "467", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHREDCCHWHTDCHREDECHBLK", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS88", + "description": "tower, black/white, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "491", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHBLK", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS49", + "description": "tower, white/red, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "515", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHWHTDCHRED", + "definition": "R", + "_RCID": "342" + }, + { + "name": "TOWERS48", + "description": "tower, red/white, full-chart and simplified", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "539", + "_y": "946" + }, + "_width": "14", + "_height": "26" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHT", + "definition": "R", + "_RCID": "342" + }, + { + "name": "WRECKS07", + "description": "line above WRECKS with QUASOU=7", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "16", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "563", + "_y": "946" + }, + "_width": "29", + "_height": "1" + }, + "color-ref": "ACHBLK", + "definition": "R", + "_RCID": "77" + }, + { + "name": "TOPMAR92", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "30" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "602", + "_y": "946" + }, + "_width": "17", + "_height": "33" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHGRN", + "definition": "R", + "_RCID": "1" + }, + { + "name": "TOPSHPD5", + "description": "beacon top mark, red/white/red boarded round board", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7", + "_y": "26" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "688", + "_y": "946" + }, + "_width": "15", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHRED", + "definition": "R", + "_RCID": "36" + }, + { + "name": "BCNSTK82", + "description": "minor, stake or pole beacon, red/green, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "712", + "_y": "946" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHREDDCHWHTECHGRN", + "definition": "R", + "_RCID": "23" + }, + { + "name": "BCNSTK83", + "description": "minor, stake or pole beacon, green/red, full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "730", + "_y": "946" + }, + "_width": "10", + "_height": "18" + }, + "color-ref": "ADEPMDBCHBLKCCHGRNDCHWHTECHRED", + "definition": "R", + "_RCID": "23" + }, + { + "name": "BOYSPH78", + "description": "spherical buoy,red-white,full-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "11" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "746", + "_y": "946" + }, + "_width": "19", + "_height": "15" + }, + "color-ref": "ADEPMDBCHBLKCCHWHT", + "definition": "R", + "_RCID": "45" + }, + { + "name": "LIGHTS82", + "description": "floodlight", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "24", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "329", + "_y": "175" + }, + "_width": "18", + "_height": "10" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "146", + "_y": "1928" + }, + "origin": { + "_x": "30", + "_y": "1742" + }, + "HPGL": "SPA;SW2;PU146,1928;CI116;SPA;SW2;PU301,2031;PD514,2039;SPA;SW2;PU270,1817;PD555,1742;SPA;SW2;PU319,1923;PD614,1893;", + "_width": "584", + "_height": "302" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "1399" + }, + { + "name": "TSSRON51", + "description": "traffic roundabout", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "13", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "763", + "_y": "307" + }, + "_width": "27", + "_height": "27" + }, + "color-ref": "ATRFCF", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "448", + "_y": "741" + }, + "origin": { + "_x": "1", + "_y": "284" + }, + "HPGL": "SPA;SW2;PU1,793;PD27,884;PD66,980;PD123,1057;PD212,1124;PD315,1180;PD430,1199;PD522,1194;PD620,1165;PD721,1112;PD800,1031;PD862,925;PD896,812;PD896,688;PD862,560;PD798,452;PD704,373;PD591,313;PD464,294;PD320,313;PD217,364;PD128,424;PD298,594;PD1,594;PD1,284;PD133,424;", + "_width": "895", + "_height": "915" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3412" + }, + { + "name": "DIRBOY01", + "description": "direction of buoyage", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-74", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "10", + "_y": "121" + }, + "_width": "38", + "_height": "25" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "785", + "_y": "2800" + }, + "origin": { + "_x": "785", + "_y": "781" + }, + "HPGL": "SPA;SW1;PU478,983;PD179,983;PD783,381;PD1381,983;PD1079,983;PD1079,1182;PD478,1182;PD478,983;SPA;SW3;PU280,507;CI152;SPA;SW3;PU1291,507;CI149;", + "_width": "1312", + "_height": "827" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3500" + }, + { + "name": "DIRBOYA1", + "description": "direction and color of buoyage for approaching harbour in IALA region A (red to port)", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-74", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "58", + "_y": "121" + }, + "_width": "38", + "_height": "25" + }, + "color-ref": "ACHMGDBCHREDCCHGRN", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "785", + "_y": "2800" + }, + "origin": { + "_x": "785", + "_y": "781" + }, + "HPGL": "SPA;SW1;PU478,983;PD179,983;PD783,381;PD1381,983;PD1079,983;PD1079,1182;PD478,1182;PD478,983;SPB;SW3;PU280,507;CI152;SPC;SW3;PU1291,507;CI149;", + "_width": "1312", + "_height": "827" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3133" + }, + { + "name": "DIRBOYB1", + "description": "direction and color of buoyage for approaching harbour in IALA region B (green to port)", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "-74", + "_y": "12" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "106", + "_y": "121" + }, + "_width": "38", + "_height": "25" + }, + "color-ref": "ACHMGDBCHGRNCCHRED", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "785", + "_y": "2800" + }, + "origin": { + "_x": "785", + "_y": "781" + }, + "HPGL": "SPA;SW1;PU478,983;PD179,983;PD783,381;PD1381,983;PD1079,983;PD1079,1182;PD478,1182;PD478,983;SPB;SW3;PU280,507;CI152;SPC;SW3;PU1291,507;CI149;", + "_width": "1312", + "_height": "827" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3132" + }, + { + "name": "TSSLPT51", + "description": "traffic direction in a one way lane of a traffic separation scheme", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "734", + "_y": "307" + }, + "_width": "19", + "_height": "40" + }, + "color-ref": "TTRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "2250", + "_y": "2250" + }, + "HPGL": "SPT;ST3;PU1950,1950;PM0;PD2250,1500,2550,1950,2400,1950,2400,2850,2100,2850,2100,1950,1950,1950;PM2;FP;SW1;ST0;PU2100,2850;PD2100,1950;PD1950,1950;PD2250,1500;PD2550,1950;PD2400,1950;PD2400,2850;PD2100,2850;", + "_width": "600", + "_height": "1350" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "1630" + }, + { + "name": "DWRUTE51", + "description": "reciprocal traffic directions in a two-way part of a deep-water route", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "395", + "_y": "121" + }, + "_width": "19", + "_height": "44" + }, + "color-ref": "ATRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "2250", + "_y": "2250" + }, + "HPGL": "SPA;ST3;PU2096,1950;PM0;PD1944,1950;PD2245,1500;PD2553,1950;PD2401,1950;PD2401,2546;PD2563,2546;PD2252,2999;PD1947,2546;PD2096,2546;PD2096,1950;PM2;FP;SPA;SW1;PU2096,1950;PD1944,1950;PD2245,1500;PD2553,1950;PD2401,1950;PD2401,2546;PD2563,2546;PD2252,2999;PD1947,2546;PD2096,2546;PD2096,1950;", + "_width": "619", + "_height": "1499" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3501" + }, + { + "name": "TSLDEF51", + "description": "one way lane of a traffic separation scheme, with the direction not defined in the data", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "17", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "649", + "_y": "307" + }, + "_width": "36", + "_height": "40" + }, + "color-ref": "ATRFCDCCHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "2250", + "_y": "2250" + }, + "HPGL": "SPA;SW1;ST3;PU1950,1950;PM0;PD2250,1500;PD2550,1950;PD2400,1950;PD2400,2850;PD2100,2850;PD2100,1950;PD1950,1950;PM2;FP;SPA;SW1;PU2100,2850;PD2100,1950;PD1950,1950;PD2250,1500;PD2550,1950;PD2400,1950;PD2400,2850;PD2100,2850;SPC;SW1;PU1647,2232;PD1660,2204;PD1673,2179;PD1690,2162;PD1707,2145;PD1733,2136;PD1756,2138;PD1786,2147;PD1814,2153;PD1837,2187;PD1855,2206;PD1867,2228;PD1867,2253;PD1855,2277;PD1842,2298;PD1822,2322;PD1799,2347;PD1778,2373;PD1765,2392;PD1754,2409;PD1752,2431;PD1752,2454;PD1752,2471;PD1754,2493;PD1754,2495;SPC;SW2;PU1733,2579;PD1786,2579;SPC;SW1;PU2636,2232;PD2649,2204;PD2662,2179;PD2679,2162;PD2696,2145;PD2722,2136;PD2745,2138;PD2775,2147;PD2803,2153;PD2826,2187;PD2844,2206;PD2856,2228;PD2856,2253;PD2844,2277;PD2831,2298;PD2811,2322;PD2788,2347;PD2767,2373;PD2754,2392;PD2743,2409;PD2741,2431;PD2741,2454;PD2741,2471;PD2743,2493;PD2743,2495;SPC;SW2;PU2722,2579;PD2775,2579;", + "_width": "1209", + "_height": "1350" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3411" + }, + { + "name": "FAIRWY51", + "description": "fairway with one-way traffic in direction indicated", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "657", + "_y": "121" + }, + "_width": "19", + "_height": "40" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "2250", + "_y": "2250" + }, + "HPGL": "SPA;SW1;PU2100,2850;PD2100,1950;PD1950,1950;PD2250,1500;PD2550,1950;PD2400,1950;PD2400,2850;PD2100,2850;", + "_width": "600", + "_height": "1350" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3184" + }, + { + "name": "FAIRWY52", + "description": "fairway with two-way traffic", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "686", + "_y": "121" + }, + "_width": "18", + "_height": "40" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "2250", + "_y": "2250" + }, + "HPGL": "SPA;SW1;PU2403,2397;PD2549,2397;PD2251,2850;PD1953,2397;PD2102,2397;SPA;SW1;PU2097,2396;PD2097,1949;PD1948,1949;PD2250,1499;PD2544,1949;PD2399,1949;PD2399,2396;", + "_width": "601", + "_height": "1351" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3185" + }, + { + "name": "RCTLPT52", + "description": "recommended traffic direction between parts of a traffic separation scheme, or for ships not needing a deep water route", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "295", + "_y": "239" + }, + "_width": "18", + "_height": "41" + }, + "color-ref": "ATRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2257", + "_y": "2077" + }, + "origin": { + "_x": "2257", + "_y": "2077" + }, + "HPGL": "SPA;SW3;PU2134,1545;PD2257,1383;PD2380,1545;SPA;SW3;PU2043,1661;PD1960,1777;PD2108,1777;SPA;SW3;PU2394,1773;PD2557,1773;PD2463,1650;SPA;SW3;PU2104,2585;PD2104,2773;PD2408,2773;PD2408,2588;SPA;SW3;PU2104,2435;PD2104,2278;SPA;SW3;PU2104,1937;PD2104,2087;SPA;SW3;PU2423,1929;PD2423,2075;SPA;SW3;PU2419,2270;PD2419,2422;", + "_width": "597", + "_height": "1390" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "2098" + }, + { + "name": "RDOCAL02", + "description": "radio calling-in point for traffic in one direction only", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "323", + "_y": "239" + }, + "_width": "14", + "_height": "22" + }, + "color-ref": "ATRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "750", + "_y": "750" + }, + "HPGL": "SPA;SW2;PU750,750;CI218;SPA;SW2;PU580,589;PD752,231;PD923,589;", + "_width": "436", + "_height": "737" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "2099" + }, + { + "name": "RDOCAL03", + "description": "radio calling-in point for traffic in both directions", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "347", + "_y": "239" + }, + "_width": "14", + "_height": "31" + }, + "color-ref": "ATRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "750", + "_y": "750" + }, + "HPGL": "SPA;SW2;PU750,750;CI218;SPA;SW2;PU580,589;PD752,231;PD923,589;SPA;SW2;PU920,914;PD742,1268;PD580,911;", + "_width": "436", + "_height": "1037" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3099" + }, + { + "name": "RECDEF51", + "description": "recommended track as an area, direction not defined in data", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "27", + "_y": "7" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "399", + "_y": "239" + }, + "_width": "50", + "_height": "14" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2470", + "_y": "1413" + }, + "origin": { + "_x": "2470", + "_y": "1413" + }, + "HPGL": "SPA;SW1;PU1596,1415;PD1921,1415;SPA;SW1;PU3002,1415;PD3327,1415;SPA;SW1;PU2358,1275;PD2371,1247;PD2384,1222;PD2401,1205;PD2418,1188;PD2444,1179;PD2467,1181;PD2497,1190;PD2525,1196;PD2548,1230;PD2566,1249;PD2578,1271;PD2578,1296;PD2566,1320;PD2553,1341;PD2533,1365;PD2510,1390;PD2489,1416;PD2476,1435;PD2465,1452;PD2463,1474;PD2463,1497;PD2463,1514;PD2465,1536;PD2465,1538;SPA;SW2;PU2444,1622;PD2497,1622;SPA;SW1;PU2254,1570;PD2049,1415;PD2254,1260;SPA;SW1;PU2660,1566;PD2865,1411;PD2660,1256;", + "_width": "1731", + "_height": "443" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3340" + }, + { + "name": "RECTRC55", + "description": "recommended two-way track as an area, not based on fixed marks", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "24" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "459", + "_y": "239" + }, + "_width": "10", + "_height": "50" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2461", + "_y": "1413" + }, + "origin": { + "_x": "2461", + "_y": "1413" + }, + "HPGL": "SPA;SW1;PU2461,2279;PD2461,1954;SPA;SW1;PU2463,1577;PD2463,1253;SPA;SW1;PU2462,876;PD2461,551;SPA;SW1;PU2615,1576;PD2462,1781;PD2308,1578;SPA;SW1;PU2618,1253;PD2462,1048;PD2308,1253;", + "_width": "310", + "_height": "1728" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3341" + }, + { + "name": "RECTRC56", + "description": "recommended two-way track as an area, based on fixed marks", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "22" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "479", + "_y": "239" + }, + "_width": "10", + "_height": "44" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2377", + "_y": "1410" + }, + "origin": { + "_x": "2377", + "_y": "1410" + }, + "HPGL": "SPA;SW1;PU2534,1570;PD2379,1774;PD2225,1570;SPA;SW1;PU2535,1246;PD2380,1041;PD2225,1246;SPA;SW1;PU2378,665;PD2378,2151;", + "_width": "310", + "_height": "1486" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3342" + }, + { + "name": "RECTRC57", + "description": "recommended one-way track as an area, not based on fixed marks", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "14" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "499", + "_y": "239" + }, + "_width": "10", + "_height": "30" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2137", + "_y": "1415" + }, + "origin": { + "_x": "2137", + "_y": "1415" + }, + "HPGL": "SPA;SW1;PU2135,1945;PD2136,1621;SPA;SW1;PU2135,1245;PD2135,920;SPA;SW1;PU2289,1621;PD2135,1418;PD1981,1621;", + "_width": "308", + "_height": "1025" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3343" + }, + { + "name": "RECTRC58", + "description": "recommended one-way track as an area, based on fixed marks", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "18" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "519", + "_y": "239" + }, + "_width": "10", + "_height": "36" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2011", + "_y": "1416" + }, + "origin": { + "_x": "2011", + "_y": "1416" + }, + "HPGL": "SPA;SW1;PU2163,1499;PD2008,1294;PD1854,1499;SPA;SW1;PU2007,795;PD2007,2001;", + "_width": "309", + "_height": "1206" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3344" + }, + { + "name": "RTLDEF51", + "description": "recommended route between parts of a traffic separation scheme, or for ships not needing a deep water route, with the direction not specified in the data", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "18", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "771", + "_y": "239" + }, + "_width": "35", + "_height": "41" + }, + "color-ref": "ATRFCDICHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2257", + "_y": "2077" + }, + "origin": { + "_x": "2257", + "_y": "2077" + }, + "HPGL": "SPA;SW2;PU2134,1545;PD2257,1383;PD2380,1545;SPA;SW2;PU2043,1661;PD1960,1777;PD2108,1777;SPA;SW2;PU2394,1773;PD2557,1773;PD2463,1650;SPA;SW2;PU2104,2585;PD2104,2773;PD2408,2773;PD2408,2588;SPA;SW2;PU2104,2435;PD2104,2278;SPA;SW2;PU2104,1937;PD2104,2087;SPA;SW2;PU2423,1929;PD2423,2075;SPA;SW2;PU2419,2270;PD2419,2422;SPI;SW1;PU1639,2104;PD1652,2076;PD1665,2051;PD1682,2034;PD1699,2017;PD1725,2008;PD1748,2010;PD1778,2019;PD1806,2025;PD1829,2059;PD1847,2078;PD1859,2100;PD1859,2125;PD1847,2149;PD1834,2170;PD1814,2194;PD1791,2219;PD1770,2245;PD1757,2264;PD1746,2281;PD1744,2303;PD1744,2326;PD1744,2343;PD1746,2365;PD1746,2367;SPI;SW2;PU1725,2451;PD1778,2451;SPI;SW1;PU2596,2102;PD2609,2074;PD2622,2049;PD2639,2032;PD2656,2015;PD2682,2006;PD2705,2008;PD2735,2017;PD2763,2023;PD2786,2057;PD2804,2076;PD2816,2098;PD2816,2123;PD2804,2147;PD2791,2168;PD2771,2192;PD2748,2217;PD2727,2243;PD2714,2262;PD2703,2279;PD2701,2301;PD2701,2324;PD2701,2341;PD2703,2363;PD2703,2365;SPI;SW2;PU2682,2449;PD2735,2449;", + "_width": "1177", + "_height": "1390" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3409" + }, + { + "name": "TIDCUR01", + "description": "predicted tidal stream or current direction", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "5", + "_y": "18" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1079", + "_y": "239" + }, + "_width": "13", + "_height": "44" + }, + "color-ref": "ANINFO", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1636", + "_y": "2287" + }, + "origin": { + "_x": "1636", + "_y": "2287" + }, + "HPGL": "SPA;SW1;PU1442,2172;PD1638,1972;PD1840,2175;SPA;SW1;PU1438,2474;PD1638,2275;PD1840,2474;SPA;SW1;PU1638,1683;PD1638,1879;SPA;SW1;PU1638,1976;PD1638,2168;SPA;SW1;PU1638,2275;PD1638,2477;SPA;SW1;PU1435,1866;PD1638,1667;PD1843,1876;SPA;SW1;PU1637,2952;PD1638,3152;SPA;SW1;PU1637,2619;PD1638,2819;", + "_width": "408", + "_height": "1485" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "2262" + }, + { + "name": "TIDCUR02", + "description": "actual tidal stream or current direction", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "6", + "_y": "18" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1102", + "_y": "239" + }, + "_width": "13", + "_height": "36" + }, + "color-ref": "fNINFO", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2250" + }, + "origin": { + "_x": "2250", + "_y": "2250" + }, + "HPGL": "SPf;SW1;PU2343,1650;PD2343,1650;PU2250,1650;PD2250,2850;PU2250,1650;PD2043,1846;PU2250,1650;PD2446,1846;PU2250,2146;PD2043,2343;PU2250,2146;PD2446,2343;PU2250,1884;PD2043,2090;PU2250,1893;PD2446,2100;", + "_width": "403", + "_height": "1200" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "1591" + }, + { + "name": "TWRDEF51", + "description": "two way route of a traffic separation scheme, with the direction not defined in the data", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "20", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "800", + "_y": "307" + }, + "_width": "40", + "_height": "41" + }, + "color-ref": "ATRFCDICHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2257", + "_y": "2077" + }, + "origin": { + "_x": "2257", + "_y": "2077" + }, + "HPGL": "SPA;SW2;PU2134,1545;PD2257,1383;PD2380,1545;SPA;SW2;PU2043,1661;PD1960,1777;PD2108,1777;SPA;SW2;PU2394,1773;PD2557,1773;PD2463,1650;SPA;SW2;PU2105,1965;PD2105,2178;SPA;SW2;PU2398,1959;PD2398,2170;SPA;SW2;PU2137,2616;PD2260,2786;PD2383,2616;SPA;SW2;PU2105,2373;PD1946,2373;PD2040,2493;SPA;SW2;PU2401,2373;PD2550,2373;PD2466,2504;SPI;SW1;PU1568,1942;PD1581,1914;PD1594,1889;PD1611,1872;PD1628,1855;PD1654,1846;PD1677,1848;PD1707,1857;PD1735,1863;PD1758,1897;PD1776,1916;PD1788,1938;PD1788,1963;PD1776,1987;PD1763,2008;PD1743,2032;PD1720,2057;PD1699,2083;PD1686,2102;PD1675,2119;PD1673,2141;PD1673,2164;PD1673,2181;PD1675,2203;PD1675,2205;SPI;SW2;PU1654,2289;PD1707,2289;SPI;SW1;PU2709,1939;PD2722,1911;PD2735,1886;PD2752,1869;PD2769,1852;PD2795,1843;PD2818,1845;PD2848,1854;PD2876,1860;PD2899,1894;PD2917,1913;PD2929,1935;PD2929,1960;PD2917,1984;PD2904,2005;PD2884,2029;PD2861,2054;PD2840,2080;PD2827,2099;PD2816,2116;PD2814,2138;PD2814,2161;PD2814,2178;PD2816,2200;PD2816,2202;SPI;SW2;PU2795,2286;PD2848,2286;", + "_width": "1361", + "_height": "1403" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3413" + }, + { + "name": "TWRTPT52", + "description": "reciprocal traffic directions in a two-way route of a traffic separation scheme", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "9", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "850", + "_y": "307" + }, + "_width": "19", + "_height": "41" + }, + "color-ref": "ATRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2257", + "_y": "2077" + }, + "origin": { + "_x": "2257", + "_y": "2077" + }, + "HPGL": "SPA;SW2;PU2134,1545;PD2257,1383;PD2380,1545;SPA;SW2;PU2043,1661;PD1960,1777;PD2108,1777;SPA;SW2;PU2394,1773;PD2557,1773;PD2463,1650;SPA;SW2;PU2105,1965;PD2105,2178;SPA;SW2;PU2398,1959;PD2398,2170;SPA;SW2;PU2137,2616;PD2260,2786;PD2383,2616;SPA;SW2;PU2105,2373;PD1946,2373;PD2040,2493;SPA;SW2;PU2401,2373;PD2550,2373;PD2466,2504;", + "_width": "611", + "_height": "1403" + }, + "prefer-bitmap": "no", + "definition": "V", + "_RCID": "2133" + }, + { + "name": "TWRTPT53", + "description": "single traffic direction in a two-way route part of a traffic separation scheme", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "8", + "_y": "20" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "879", + "_y": "307" + }, + "_width": "18", + "_height": "41" + }, + "color-ref": "ATRFCD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2257", + "_y": "2077" + }, + "origin": { + "_x": "2257", + "_y": "2077" + }, + "HPGL": "SPA;SW2;PU2134,1545;PD2257,1383;PD2380,1545;SPA;SW2;PU2043,1661;PD1960,1777;PD2108,1777;SPA;SW2;PU2394,1773;PD2557,1773;PD2463,1650;SPA;SW2;PU2104,2585;PD2104,2773;PD2408,2773;PD2408,2588;SPA;SW2;PU2104,2435;PD2104,2278;SPA;SW2;PU2104,1937;PD2104,2087;SPA;SW2;PU2423,1929;PD2423,2075;SPA;SW2;PU2419,2270;PD2419,2422;", + "_width": "597", + "_height": "1390" + }, + "prefer-bitmap": "no", + "definition": "V", + "_RCID": "3141" + }, + { + "name": "LITDEF11", + "description": "light flare", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "369", + "_y": "358" + }, + "_width": "8", + "_height": "21" + }, + "color-ref": "ICHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "1500", + "_y": "1500" + }, + "origin": { + "_x": "1500", + "_y": "1500" + }, + "HPGL": "SPI;ST2;PU1500,1500;PM0;PD1375,937,1375,912,1381,875,1400,843,1418,825,1450,800,1493,800,1531,800,1556,806,1593,831;PD1606,868,1612,900,1612,931,1500,1500;PM2;FP;SPI;SW1;PU1500,1500;PD1375,925;PD1375,887;PD1387,850;PD1406,831;PD1437,806;PD1475,800;PD1500,800;PD1531,800;PD1562,812;PD1587,837;PD1606,875;PD1612,900;PD1606,956;PD1500,1500;", + "_width": "237", + "_height": "700" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "1395" + }, + { + "name": "CURDEF01", + "description": "current or tidal stream whose direction is not known", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "14", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1050", + "_y": "78" + }, + "_width": "30", + "_height": "27" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "785", + "_y": "810" + }, + "origin": { + "_x": "785", + "_y": "810" + }, + "HPGL": "SPA;SW1;PU685,1257;PD785,1058;PD884,1257;SPA;SW1;PU685,1073;PD785,874;PD884,1073;SPA;SW1;PU785,362;PD785,1270;SPA;SW1;PU684,611;PD786,364;PD886,611;SPA;SW1;PU297,710;PD310,682;PD323,657;PD340,640;PD357,623;PD383,614;PD406,616;PD436,625;PD464,631;PD487,665;PD505,684;PD517,706;PD517,731;PD505,755;PD492,776;PD472,800;PD449,825;PD428,851;PD415,870;PD404,887;PD402,909;PD402,932;PD402,949;PD404,971;PD404,973;SPA;SW2;PU383,1057;PD436,1057;SPA;SW1;PU1086,704;PD1099,676;PD1112,651;PD1129,634;PD1146,617;PD1172,608;PD1195,610;PD1225,619;PD1253,625;PD1276,659;PD1294,678;PD1306,700;PD1306,725;PD1294,749;PD1281,770;PD1261,794;PD1238,819;PD1217,845;PD1204,864;PD1193,881;PD1191,903;PD1191,926;PD1191,943;PD1193,965;PD1193,967;SPA;SW2;PU1172,1051;PD1225,1051;", + "_width": "1009", + "_height": "908" + }, + "prefer-bitmap": "no", + "definition": "V", + "_RCID": "3431" + }, + { + "name": "CURENT01", + "description": "non-tidal current", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "3", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "1090", + "_y": "78" + }, + "_width": "7", + "_height": "27" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "785", + "_y": "810" + }, + "origin": { + "_x": "785", + "_y": "810" + }, + "HPGL": "SPA;SW1;PU685,1257;PD785,1058;PD884,1257;SPA;SW1;PU685,1073;PD785,874;PD884,1073;SPA;SW1;PU785,362;PD785,1270;SPA;SW1;PU684,611;PD786,364;PD886,611;", + "_width": "202", + "_height": "908" + }, + "prefer-bitmap": "no", + "definition": "V", + "_RCID": "3128" + }, + { + "name": "EBBSTR01", + "description": "ebb stream, rate at spring tides", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "424", + "_y": "121" + }, + "_width": "7", + "_height": "26" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "785", + "_y": "883" + }, + "origin": { + "_x": "785", + "_y": "883" + }, + "HPGL": "SPA;SW1;PU684,611;PD786,364;PD886,611;SPA;SW1;PU785,366;PD785,1248;", + "_width": "202", + "_height": "884" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3361" + }, + { + "name": "FLDSTR01", + "description": "flood stream, rate at spring tides", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2", + "_y": "13" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "754", + "_y": "121" + }, + "_width": "7", + "_height": "27" + }, + "color-ref": "ACHGRD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "785", + "_y": "810" + }, + "origin": { + "_x": "785", + "_y": "810" + }, + "HPGL": "SPA;SW1;PU785,362;PD785,1277;SPA;SW1;PU684,611;PD786,364;PD886,611;SPA;SW1;PU787,894;PD886,1099;SPA;SW1;PU787,1079;PD886,1277;SPA;SW1;PU785,1103;PD785,1161;", + "_width": "202", + "_height": "915" + }, + "prefer-bitmap": "no", + "definition": "V", + "_RCID": "3360" + }, + { + "name": "RCLDEF01", + "description": "radio calling-in point whose direction is not known", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "18", + "_y": "15" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "249", + "_y": "239" + }, + "_width": "36", + "_height": "31" + }, + "color-ref": "ACHMGD", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "751", + "_y": "748" + }, + "origin": { + "_x": "751", + "_y": "748" + }, + "HPGL": "SPA;SW1;PU144,651;PD157,623;PD170,598;PD187,581;PD204,564;PD230,555;PD253,557;PD283,566;PD311,572;PD334,606;PD352,625;PD364,647;PD364,672;PD352,696;PD339,717;PD319,741;PD296,766;PD275,792;PD262,811;PD251,828;PD249,850;PD249,873;PD249,890;PD251,912;PD251,914;SPA;SW2;PU230,998;PD283,998;SPA;SW1;PU1133,651;PD1146,623;PD1159,598;PD1176,581;PD1193,564;PD1219,555;PD1242,557;PD1272,566;PD1300,572;PD1323,606;PD1341,625;PD1353,647;PD1353,672;PD1341,696;PD1328,717;PD1308,741;PD1285,766;PD1264,792;PD1251,811;PD1240,828;PD1238,850;PD1238,873;PD1238,890;PD1240,912;PD1240,914;SPA;SW2;PU1219,998;PD1272,998;SPA;SW2;PU750,750;CI218;SPA;SW2;PU580,589;PD752,231;PD923,589;SPA;SW2;PU920,914;PD742,1268;PD580,911;", + "_width": "1209", + "_height": "1037" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "3430" + }, + { + "name": "LIGHTS14", + "description": "light flare, magenta", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "21" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "349", + "_y": "358" + }, + "_width": "10", + "_height": "24" + }, + "color-ref": "PCHMGD^CHBLK", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "2250", + "_y": "2220" + }, + "origin": { + "_x": "2250", + "_y": "2220" + }, + "HPGL": "SPP;ST2;PU2250,2220;PM0;PD2130,1657,2130,1635,2130,1597,2145,1560,2167,1545,2197,1522,2242,1515,2280,1522,2310,1530;PD2340,1552,2355,1590,2362,1620,2362,1650,2250,2220;PM2;FP;SP^;SW1;PU2385,1605;PD2377,1642;PD2250,2302;SPP;PU2250,2220;PD2122,1642;PD2130,1605;PD2137,1575;PD2160,1552;PD2190,1522;PD2227,1515;PD2250,1515;PD2280,1522;PD2317,1537;PD2340,1560;PD2355,1590;PD2362,1620;PD2355,1672;PD2250,2220;SP^;PU2250,2302;PD2100,1627;PD2122,1560;PD2182,1507;PD2250,1492;PD2310,1515;PD2347,1537;PD2377,1597;", + "_width": "285", + "_height": "810" + }, + "definition": "V", + "prefer-bitmap": "no", + "_RCID": "1396" + }, + { + "name": "SOUNDSA1", + "definition": "V", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "730", + "_y": "750" + }, + "HPGL": "SPZ;SW1;PU525,970;PD730,970;", + "_width": "205", + "_height": "1" + }, + "description": "symbol for drying height, used for shallow soundings, less than or equal to safety depth", + "color-ref": "ZSNDG2", + "_RCID": "1586" + }, + { + "name": "SOUNDGB1", + "definition": "V", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "750", + "_y": "750" + }, + "HPGL": "SPY;SW1;PU340,928;PD340,1059;PD971,1059;PD971,928;", + "_width": "631", + "_height": "131" + }, + "description": "symbol for swept sounding, used for deep soundings greater than safety depth", + "color-ref": "YSNDG1", + "_RCID": "1524" + }, + { + "name": "SOUNDGC2", + "definition": "V", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7350", + "_y": "1546" + }, + "origin": { + "_x": "7350", + "_y": "1546" + }, + "HPGL": "SPA;SW1;PU7350,1546;CI427;", + "_width": "854", + "_height": "854" + }, + "description": "sounding of low accuracy", + "color-ref": "ASNDG1", + "_RCID": "3422" + }, + { + "name": "SOUNDSB1", + "definition": "V", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "750", + "_y": "750" + }, + "origin": { + "_x": "750", + "_y": "750" + }, + "HPGL": "SPZ;SW1;PU340,928;PD340,1059;PD971,1059;PD971,928;", + "_width": "631", + "_height": "131" + }, + "description": "symbol for swept sounding, used for shallow soundings, less than or equal to safety depth", + "color-ref": "ZSNDG2", + "_RCID": "1587" + }, + { + "name": "SOUNDSC2", + "definition": "V", + "vector": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "7350", + "_y": "1546" + }, + "origin": { + "_x": "7350", + "_y": "1546" + }, + "HPGL": "SPA;SW1;PU7350,1546;CI427;", + "_width": "854", + "_height": "854" + }, + "description": "sounding of low accuracy", + "color-ref": "ASNDG1", + "_RCID": "3423" + }, + { + "name": "TOPMAR90", + "description": "topmark for beacons, Pricken point down, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "35", + "_y": "239" + }, + "_width": "10", + "_height": "10" + }, + "definition": "R", + "_RCID": "2230" + }, + { + "name": "TOPMAR93", + "description": "topmark for beacons, Pricken point up, paper-chart", + "bitmap": { + "distance": { + "_min": "0", + "_max": "0" + }, + "pivot": { + "_x": "4", + "_y": "27" + }, + "origin": { + "_x": "0", + "_y": "0" + }, + "graphics-location": { + "_x": "55", + "_y": "239" + }, + "_width": "10", + "_height": "10" + }, + "definition": "R", + "_RCID": "2131" + } + ] + } + } + } \ No newline at end of file diff --git a/src/assets/s57/rastersymbols-day.png b/src/assets/s57/rastersymbols-day.png new file mode 100644 index 00000000..30af9686 Binary files /dev/null and b/src/assets/s57/rastersymbols-day.png differ