{ "layers": [ { "currentVersion": 11.1, "cimVersion": "3.1.0", "id": 0, "name": "Tax Parcel Lines (Label Only)", "type": "Feature Layer", "description": "", "geometryType": "esriGeometryPolyline", "sourceSpatialReference": { "wkid": 102738, "latestWkid": 2276, "xyTolerance": 0.003280833333333333, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -123407700, "falseY": -86123500, "xyUnits": 3048.0060960121928, "falseZ": -100000, "zUnits": 10000, "falseM": 0, "mUnits": 1 }, "copyrightText": "", "parentLayer": null, "subLayers": [], "minScale": 0, "maxScale": 0, "referenceScale": 0.0, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSLS", "style": "esriSLSDashDot", "color": [ 204, 237, 255, 0 ], "width": 0.4 } }, "scaleSymbols": true, "transparency": 0, "labelingInfo": [ { "labelExpressionInfo": { "expression": "// Change the settings portion to configure direction format, color, rounding and abbreviations\n// This is an Arcade expression\n\n// SETTINGS\nvar ShowDistance = true; //set as 'true' to show distance\nvar ShowDirection = true; //set as 'true' to show direction\nvar DirectionType = 1; // 1 = Quadrant Bearing; 2 = North Azimuth; 3 = South Azimuth\nvar ShowRadius = true; //set as 'true' to show radius\nvar ShowCurveParameter = true; //set as 'true' to show a curve parameter\nvar ShowCOGOType = true; //set as 'true' to show prefixes and postfixes defined below for each cogo line label\nvar COGOType_Entered = ['', ''] //Change prefix and postfix for Entered courses\nvar COGOType_Computed = ['±', ''] //Change prefix and postfix for Computed courses\nvar COGOType_FromGeom = ['<', '>'] //Change for prefix and postfix From Geometry courses. The < is a special character to represent the left angle bracket\nvar CurveParameter = \"ArcLength\"; //set as 'ArcLength' or 'Chord' or 'Angle' for central angle. Case sensitive!\nvar ErrorString = \"COGO ERROR\"; //set to display invalid COGO combinations\nvar RadiusAbbr = 'R='; //radius abbreviation\nvar Radius2Abbr = 'R2='; //radius2 abbreviation for spiral curves\nvar ArclengthAbrr = 'L='; //arclength abbreviation\nvar ChordAbbr = 'C='; //chord abbreviation\nvar AngleAbbr = 'A='; //central Angle abbreviation\nvar DistUnitRounding = 2; //number of decimal places for distance units: distance, radius, arclength & chord\nvar NumberFormat = \"#,###.00\" //number format. In this example: thousands separator with padding of 2 zeros \nvar directionColor = \"blue='255'\"; //direction color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar distanceColor = \"black='255'\"; //distance color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar radiusColor = \"blue='255'\"; //radius color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar curveParamColor = \"black='255'\"; //curve parameter color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar partialCOGOColor = \"magenta='255'\"; //partial COGO color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar invalidCOGOColor = \"red='255'\"; //invalid COGO color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar fontNameSize = \"\"; //font type and size\n\n// VARIABLES\nvar cogo_direction = $feature.Direction;\nvar cogo_distance = $feature.Distance;\nvar cogo_radius = $feature.Radius;\nvar cogo_arclength = $feature.Arclength;\nvar cogo_radius2 = $feature.Radius2\nvar cogotype = $feature.COGOType\nif (HasKey($feature, \"labelPosition\")){\n var labelPosition = $feature.labelPosition\n}\nelse {\n var labelPosition = 1\n}\nvar binaryDictionary; //binary dictionary to check COGO combinations\nvar checksum = 0; //initialize checksum\nvar validValuesArray; //array of valid values for COGO combinations\nvar partialValuesArray; //array of partial values for COGO\nvar directionStr = \"\"; //direction string using for label\nvar distanceStr = \"\"; //distance string using for label\nvar radiusStr = \"\"; //radius string using for label\nvar radius2Str = \"\"; //radius2 string using for labeling spiral curves\nvar curveStr = \"\"; //curve parameter string using for label\nvar prefixPostfix = ['', ''] //Used for prefix and postfix of COGO Type\nvar angleRad; //curve angle in radians\nvar COGOValidity; //COGO combinations validity. can be valid, partial or invalid.\n\nif (IsEmpty(cogo_direction) && IsEmpty(cogo_distance) && IsEmpty(cogo_radius) && IsEmpty(cogo_radius2) && IsEmpty(cogo_arclength)){\n return \"\"\n}\n\nfunction NorthAzimuth2Quadbearing(azimuth){\n return ConvertDirection(azimuth, {directionType:'North', angleType: 'Degrees'}, {directionType:'Quadrant', angleType: 'DMS', outputType: 'text', format: 'pd[°]mm[\\']ss[\"]b'})\n}\n\nfunction DMS_North(azimuth){\n return ConvertDirection(azimuth, {directionType:'North', angleType: 'Degrees'}, {directionType:'North', angleType: 'DMS', outputType: 'text', format: 'd[°]mm[\\']ss[\"]'})\n}\n\nfunction DMS_South(azimuth){\n return ConvertDirection(azimuth, {directionType:'North', angleType: 'Degrees'}, {directionType:'South', angleType: 'DMS', outputType: 'text', format: 'd[°]mm[\\']ss[\"]'})\n}\n\nfunction IsValidCOGO(cogo_direction, cogo_distance, cogo_radius, cogo_arclength, cogo_radius2) {\n binaryDictionary= Dictionary('dir', 1, 'dist',2, 'rad',4, 'arc',8, 'rad2',16)\n if (!IsEmpty(cogo_direction)) {checksum+=binaryDictionary.dir}\n if (!IsEmpty(cogo_distance)) {checksum+=binaryDictionary.dist}\n if (!IsEmpty(cogo_radius)) {checksum+=binaryDictionary.rad}\n if (!IsEmpty(cogo_arclength)) {checksum+=binaryDictionary.arc}\n if (!IsEmpty(cogo_radius2)) {checksum+=binaryDictionary.rad2}\n \n validValuesArray=[0,3,13,29]; //array of valid combinations: '0' for nothing, ... '13' for direction & radius & arclength ...\n partialValuesArray=[1,2,4,5,8,9,12,16,17,20,21,24,25,27,28]; //array of partial combinations: '1' for only direction, '2' for only distance, '4' for only radius...\n //Invalid Values = [6,7,10,11,14,15,18,19,22,23,26,30,31]\n\n\n if (IndexOf(validValuesArray,checksum)>-1) { // a negative value is returned if checksum value is not in the a valid combination array\n return \"valid\";\n }\n if (IndexOf(partialValuesArray,checksum)>-1){\n return \"partial\"; \n }\n return \"invalid\";\n}\n\nfunction COGOTypePrefixPostfix(cogotypeValue){\n if (ShowCOGOType){\n if (cogotypeValue == 1) { //Entered\n return COGOType_Entered\n }\n else if(cogotypeValue == 2) { //From Geometry\n return COGOType_FromGeom\n }\n else if(cogotypeValue == 3) { //Computed\n return COGOType_Computed\n }\n else { //If not set or invalid value\n return ['', '']\n }\n }\n else{\n return(['', ''])\n }\n}\n\nCOGOValidity = IsValidCOGO(cogo_direction, cogo_distance, cogo_radius, cogo_arclength, cogo_radius2);\nif ( COGOValidity == \"invalid\") { //if invalid COGO return error string\n return \"\" + fontNameSize + ErrorString + \"<\/FNT><\/CLR><\/BOL>\"; \n}\n\nelse if (COGOValidity == \"partial\") { //if a partial COGO change colors\n distanceColor = partialCOGOColor;\n directionColor = partialCOGOColor;\n radiusColor = partialCOGOColor;\n curveParamColor = partialCOGOColor;\n}\n\n// Direction string\nif (ShowDirection) {\n if (IsEmpty(cogo_direction)==false) {\n if (DirectionType == 1) { //using quadrant bearing format\n directionStr = NorthAzimuth2Quadbearing(cogo_direction);\n }\n else if (DirectionType == 2) { //using north azimuth format\n directionStr = DMS_North(cogo_direction);\n }\n else if (DirectionType == 3) { //using south azimuth format\n directionStr = DMS_South(cogo_direction);\n }\n }\n}\n\n// Distance string\nif (ShowDistance) {\n if (IsEmpty(cogo_distance)==false) {\n distanceStr = text(round(cogo_distance,DistUnitRounding), NumberFormat);\n }\n}\n\n//Radius String\nif (ShowRadius) {\n if (!IsEmpty(cogo_radius)) { //it can be a curve or a spiral\n if (IsEmpty(cogo_radius2)) { //if radius2 is empty this is a curve\n radiusStr = RadiusAbbr + \" \" + text(round(cogo_radius, DistUnitRounding), NumberFormat);\n }\n else { // it is a spiral\n radiusStr = RadiusAbbr + \" \" + text(round(cogo_radius, DistUnitRounding),NumberFormat);\n radius2Str = Radius2Abbr + \" \" + text(round(cogo_radius2, DistUnitRounding),NumberFormat);\n if (cogo_radius == 0) { //substitute to infinity sign\n radiusStr = RadiusAbbr + \" ∞ \";\n }\n if (cogo_radius2 == 0) { //substitute to infinity sign\n radius2Str = Radius2Abbr + \" ∞ \";\n }\n } \n \n }\n}\n\n// Curve Parameter\nif (ShowCurveParameter) {\n if (!IsEmpty(cogo_arclength)) {\n if (CurveParameter == 'ArcLength') {\n curveStr = text(round(cogo_arclength, DistUnitRounding), NumberFormat); //return Arc length\n }\n angleRad = cogo_arclength/(abs(cogo_radius)) //calculate angle in radians\n if (CurveParameter == 'Angle') {\n curveStr = DMS_North(angleRad * 180 / pi); // convert radian to degrees and show as DMS\n }\n if (CurveParameter == 'Chord') {\n curveStr = text(round((2 * abs(cogo_radius) * Sin(angleRad/2)),DistUnitRounding), NumberFormat); //calculate chord length\n } \n }\n}\n\n//Determine type of curve displayed\nvar CurveTypePrefix = \"\"\nif (!IsEmpty(curveStr)){\n if (CurveParameter == 'ArcLength'){\n CurveTypePrefix = ArclengthAbrr\n }\n else if (CurveParameter == 'Angle'){\n CurveTypePrefix = AngleAbbr\n }\n else if (CurveParameter == 'Chord'){\n CurveTypePrefix = ChordAbbr\n }\n}\n\nvar isStraightLine = IsEmpty(radiusStr) && IsEmpty(radius2Str) && IsEmpty(curveStr)\n\n// Assemble label string\n\n//Get prefix and postfix if either distance or curve is not empty. NOTE If both aren't empty it's invalid COGO\nif (!IsEmpty(distanceStr) || !IsEmpty(curveStr)){\n prefixPostfix = COGOTypePrefixPostfix(cogotype)\n}\n\nvar sharedLabelBuffer = \"\"\nif (labelPosition == 3) {\n sharedLabelBuffer = \" \\n\"\n}\n\n//Straight lines\nif (isStraightLine){\n if (!IsEmpty(directionStr) && !IsEmpty(distanceStr)){ //If Direction and Distance are both NOT Empty\n return fontNameSize + \"\" + directionStr + \"<\/CLR>\" + \"\\n\" +\n \"\" + prefixPostfix[0] + distanceStr + prefixPostfix[1] + \"<\/CLR><\/FNT>\";\n }\n else if (IsEmpty(directionStr)){ //If Direction is empty\n return fontNameSize + sharedLabelBuffer + \"\" +\n prefixPostfix[0] + distanceStr + prefixPostfix[1] + \"<\/CLR><\/FNT>\";\n }\n else{ //If Distance is empty\n return fontNameSize + sharedLabelBuffer + \"\" + directionStr + \"<\/CLR><\/FNT>\";\n }\n}\n\n//Curves\n//If one or both radii and the curve string are NOT empty show the full curve\nif ((!IsEmpty(radiusStr) || !IsEmpty(radius2Str)) && !IsEmpty(curveStr)){\n return fontNameSize + \"\" + radiusStr + \"<\/CLR>\" + \" \" +\n \"\" + radius2Str + \"<\/CLR>\" + \"\\n\" +\n \"\" + CurveTypePrefix + ' ' +\n prefixPostfix[0] + curveStr + prefixPostfix[1] + \"<\/CLR><\/FNT>\";\n}\n//If the curve is empty\nelse if (IsEmpty(curveStr)){\n return fontNameSize + sharedLabelBuffer + \"\" + radiusStr + \"<\/CLR>\" + \" \" +\n \"\" + radius2Str + \"<\/CLR><\/FNT>\"\n}\n//If both radius are empty\nelse{\n return fontNameSize + sharedLabelBuffer + \"\" + CurveTypePrefix + ' ' +\n prefixPostfix[0] + curveStr + prefixPostfix[1] + \"<\/CLR><\/FNT>\";\n}\n\n", "title": "Custom" }, "labelPlacement": "esriServerLinePlacementAboveAlong", "textLayout": "straight", "deconflictionStrategy": "dynamic", "allowOverrun": true, "repeatLabel": false, "lineConnection": "minimizeLabels", "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "where": "LabelPosition = 1", "useCodedValues": true, "maxScale": 0, "minScale": 5000, "name": "COGO Right", "priority": 14, "symbol": { "type": "esriTS", "color": [ 0, 0, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "left", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": [ 255, 255, 255, 255 ], "haloSize": 1, "font": { "family": "Segoe UI", "size": 10, "style": "normal", "weight": "normal", "decoration": "none" } } }, { "labelExpressionInfo": { "expression": "// Change the settings portion to configure direction format, color, rounding and abbreviations\n// This is an Arcade expression\n\n// SETTINGS\nvar ShowDistance = true; //set as 'true' to show distance\nvar ShowDirection = true; //set as 'true' to show direction\nvar DirectionType = 1; // 1 = Quadrant Bearing; 2 = North Azimuth; 3 = South Azimuth\nvar ShowRadius = true; //set as 'true' to show radius\nvar ShowCurveParameter = true; //set as 'true' to show a curve parameter\nvar ShowCOGOType = true; //set as 'true' to show prefixes and postfixes defined below for each cogo line label\nvar COGOType_Entered = ['', ''] //Change prefix and postfix for Entered courses\nvar COGOType_Computed = ['±', ''] //Change prefix and postfix for Computed courses\nvar COGOType_FromGeom = ['<', '>'] //Change for prefix and postfix From Geometry courses. The < is a special character to represent the left angle bracket\nvar CurveParameter = \"ArcLength\"; //set as 'ArcLength' or 'Chord' or 'Angle' for central angle. Case sensitive!\nvar ErrorString = \"COGO ERROR\"; //set to display invalid COGO combinations\nvar RadiusAbbr = 'R='; //radius abbreviation\nvar Radius2Abbr = 'R2='; //radius2 abbreviation for spiral curves\nvar ArclengthAbrr = 'L='; //arclength abbreviation\nvar ChordAbbr = 'C='; //chord abbreviation\nvar AngleAbbr = 'A='; //central Angle abbreviation\nvar DistUnitRounding = 2; //number of decimal places for distance units: distance, radius, arclength & chord\nvar NumberFormat = \"#,###.00\" //number format. In this example: thousands separator with padding of 2 zeros \nvar directionColor = \"blue='255'\"; //direction color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar distanceColor = \"black='255'\"; //distance color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar radiusColor = \"blue='255'\"; //radius color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar curveParamColor = \"black='255'\"; //curve parameter color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar partialCOGOColor = \"magenta='255'\"; //partial COGO color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar invalidCOGOColor = \"red='255'\"; //invalid COGO color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar fontNameSize = \"\"; //font type and size\n\n// VARIABLES\nvar cogo_direction = $feature.Direction;\nvar cogo_distance = $feature.Distance;\nvar cogo_radius = $feature.Radius;\nvar cogo_arclength = $feature.Arclength;\nvar cogo_radius2 = $feature.Radius2\nvar cogotype = $feature.COGOType\nif (HasKey($feature, \"labelPosition\")){\n var labelPosition = $feature.labelPosition\n}\nelse {\n var labelPosition = 1\n}\nvar binaryDictionary; //binary dictionary to check COGO combinations\nvar checksum = 0; //initialize checksum\nvar validValuesArray; //array of valid values for COGO combinations\nvar partialValuesArray; //array of partial values for COGO\nvar directionStr = \"\"; //direction string using for label\nvar distanceStr = \"\"; //distance string using for label\nvar radiusStr = \"\"; //radius string using for label\nvar radius2Str = \"\"; //radius2 string using for labeling spiral curves\nvar curveStr = \"\"; //curve parameter string using for label\nvar prefixPostfix = ['', ''] //Used for prefix and postfix of COGO Type\nvar angleRad; //curve angle in radians\nvar COGOValidity; //COGO combinations validity. can be valid, partial or invalid.\n\nif (IsEmpty(cogo_direction) && IsEmpty(cogo_distance) && IsEmpty(cogo_radius) && IsEmpty(cogo_radius2) && IsEmpty(cogo_arclength)){\n return \"\"\n}\n\nfunction NorthAzimuth2Quadbearing(azimuth){\n return ConvertDirection(azimuth, {directionType:'North', angleType: 'Degrees'}, {directionType:'Quadrant', angleType: 'DMS', outputType: 'text', format: 'pd[°]mm[\\']ss[\"]b'})\n}\n\nfunction DMS_North(azimuth){\n return ConvertDirection(azimuth, {directionType:'North', angleType: 'Degrees'}, {directionType:'North', angleType: 'DMS', outputType: 'text', format: 'd[°]mm[\\']ss[\"]'})\n}\n\nfunction DMS_South(azimuth){\n return ConvertDirection(azimuth, {directionType:'North', angleType: 'Degrees'}, {directionType:'South', angleType: 'DMS', outputType: 'text', format: 'd[°]mm[\\']ss[\"]'})\n}\n\nfunction IsValidCOGO(cogo_direction, cogo_distance, cogo_radius, cogo_arclength, cogo_radius2) {\n binaryDictionary= Dictionary('dir', 1, 'dist',2, 'rad',4, 'arc',8, 'rad2',16)\n if (!IsEmpty(cogo_direction)) {checksum+=binaryDictionary.dir}\n if (!IsEmpty(cogo_distance)) {checksum+=binaryDictionary.dist}\n if (!IsEmpty(cogo_radius)) {checksum+=binaryDictionary.rad}\n if (!IsEmpty(cogo_arclength)) {checksum+=binaryDictionary.arc}\n if (!IsEmpty(cogo_radius2)) {checksum+=binaryDictionary.rad2}\n \n validValuesArray=[0,3,13,29]; //array of valid combinations: '0' for nothing, ... '13' for direction & radius & arclength ...\n partialValuesArray=[1,2,4,5,8,9,12,16,17,20,21,24,25,27,28]; //array of partial combinations: '1' for only direction, '2' for only distance, '4' for only radius...\n //Invalid Values = [6,7,10,11,14,15,18,19,22,23,26,30,31]\n\n\n if (IndexOf(validValuesArray,checksum)>-1) { // a negative value is returned if checksum value is not in the a valid combination array\n return \"valid\";\n }\n if (IndexOf(partialValuesArray,checksum)>-1){\n return \"partial\"; \n }\n return \"invalid\";\n}\n\nfunction COGOTypePrefixPostfix(cogotypeValue){\n if (ShowCOGOType){\n if (cogotypeValue == 1) { //Entered\n return COGOType_Entered\n }\n else if(cogotypeValue == 2) { //From Geometry\n return COGOType_FromGeom\n }\n else if(cogotypeValue == 3) { //Computed\n return COGOType_Computed\n }\n else { //If not set or invalid value\n return ['', '']\n }\n }\n else{\n return(['', ''])\n }\n}\n\nCOGOValidity = IsValidCOGO(cogo_direction, cogo_distance, cogo_radius, cogo_arclength, cogo_radius2);\nif ( COGOValidity == \"invalid\") { //if invalid COGO return error string\n return \"\" + fontNameSize + ErrorString + \"<\/FNT><\/CLR><\/BOL>\"; \n}\n\nelse if (COGOValidity == \"partial\") { //if a partial COGO change colors\n distanceColor = partialCOGOColor;\n directionColor = partialCOGOColor;\n radiusColor = partialCOGOColor;\n curveParamColor = partialCOGOColor;\n}\n\n// Direction string\nif (ShowDirection) {\n if (IsEmpty(cogo_direction)==false) {\n if (DirectionType == 1) { //using quadrant bearing format\n directionStr = NorthAzimuth2Quadbearing(cogo_direction);\n }\n else if (DirectionType == 2) { //using north azimuth format\n directionStr = DMS_North(cogo_direction);\n }\n else if (DirectionType == 3) { //using south azimuth format\n directionStr = DMS_South(cogo_direction);\n }\n }\n}\n\n// Distance string\nif (ShowDistance) {\n if (IsEmpty(cogo_distance)==false) {\n distanceStr = text(round(cogo_distance,DistUnitRounding), NumberFormat);\n }\n}\n\n//Radius String\nif (ShowRadius) {\n if (!IsEmpty(cogo_radius)) { //it can be a curve or a spiral\n if (IsEmpty(cogo_radius2)) { //if radius2 is empty this is a curve\n radiusStr = RadiusAbbr + \" \" + text(round(cogo_radius, DistUnitRounding), NumberFormat);\n }\n else { // it is a spiral\n radiusStr = RadiusAbbr + \" \" + text(round(cogo_radius, DistUnitRounding),NumberFormat);\n radius2Str = Radius2Abbr + \" \" + text(round(cogo_radius2, DistUnitRounding),NumberFormat);\n if (cogo_radius == 0) { //substitute to infinity sign\n radiusStr = RadiusAbbr + \" ∞ \";\n }\n if (cogo_radius2 == 0) { //substitute to infinity sign\n radius2Str = Radius2Abbr + \" ∞ \";\n }\n } \n \n }\n}\n\n// Curve Parameter\nif (ShowCurveParameter) {\n if (!IsEmpty(cogo_arclength)) {\n if (CurveParameter == 'ArcLength') {\n curveStr = text(round(cogo_arclength, DistUnitRounding), NumberFormat); //return Arc length\n }\n angleRad = cogo_arclength/(abs(cogo_radius)) //calculate angle in radians\n if (CurveParameter == 'Angle') {\n curveStr = DMS_North(angleRad * 180 / pi); // convert radian to degrees and show as DMS\n }\n if (CurveParameter == 'Chord') {\n curveStr = text(round((2 * abs(cogo_radius) * Sin(angleRad/2)),DistUnitRounding), NumberFormat); //calculate chord length\n } \n }\n}\n\n//Determine type of curve displayed\nvar CurveTypePrefix = \"\"\nif (!IsEmpty(curveStr)){\n if (CurveParameter == 'ArcLength'){\n CurveTypePrefix = ArclengthAbrr\n }\n else if (CurveParameter == 'Angle'){\n CurveTypePrefix = AngleAbbr\n }\n else if (CurveParameter == 'Chord'){\n CurveTypePrefix = ChordAbbr\n }\n}\n\nvar isStraightLine = IsEmpty(radiusStr) && IsEmpty(radius2Str) && IsEmpty(curveStr)\n\n// Assemble label string\n\n//Get prefix and postfix if either distance or curve is not empty. NOTE If both aren't empty it's invalid COGO\nif (!IsEmpty(distanceStr) || !IsEmpty(curveStr)){\n prefixPostfix = COGOTypePrefixPostfix(cogotype)\n}\n\nvar sharedLabelBuffer = \"\"\nif (labelPosition == 3) {\n sharedLabelBuffer = \" \\n\"\n}\n\n//Straight lines\nif (isStraightLine){\n if (!IsEmpty(directionStr) && !IsEmpty(distanceStr)){ //If Direction and Distance are both NOT Empty\n return fontNameSize + \"\" + directionStr + \"<\/CLR>\" + \"\\n\" +\n \"\" + prefixPostfix[0] + distanceStr + prefixPostfix[1] + \"<\/CLR><\/FNT>\";\n }\n else if (IsEmpty(directionStr)){ //If Direction is empty\n return fontNameSize + sharedLabelBuffer + \"\" +\n prefixPostfix[0] + distanceStr + prefixPostfix[1] + \"<\/CLR><\/FNT>\";\n }\n else{ //If Distance is empty\n return fontNameSize + sharedLabelBuffer + \"\" + directionStr + \"<\/CLR><\/FNT>\";\n }\n}\n\n//Curves\n//If one or both radii and the curve string are NOT empty show the full curve\nif ((!IsEmpty(radiusStr) || !IsEmpty(radius2Str)) && !IsEmpty(curveStr)){\n return fontNameSize + \"\" + radiusStr + \"<\/CLR>\" + \" \" +\n \"\" + radius2Str + \"<\/CLR>\" + \"\\n\" +\n \"\" + CurveTypePrefix + ' ' +\n prefixPostfix[0] + curveStr + prefixPostfix[1] + \"<\/CLR><\/FNT>\";\n}\n//If the curve is empty\nelse if (IsEmpty(curveStr)){\n return fontNameSize + sharedLabelBuffer + \"\" + radiusStr + \"<\/CLR>\" + \" \" +\n \"\" + radius2Str + \"<\/CLR><\/FNT>\"\n}\n//If both radius are empty\nelse{\n return fontNameSize + sharedLabelBuffer + \"\" + CurveTypePrefix + ' ' +\n prefixPostfix[0] + curveStr + prefixPostfix[1] + \"<\/CLR><\/FNT>\";\n}\n", "title": "Custom" }, "labelPlacement": "esriServerLinePlacementAboveAlong", "textLayout": "straight", "deconflictionStrategy": "dynamic", "allowOverrun": true, "repeatLabel": false, "lineConnection": "minimizeLabels", "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "where": "LabelPosition = 2", "useCodedValues": true, "maxScale": 0, "minScale": 5000, "name": "COGO Left", "priority": 13, "symbol": { "type": "esriTS", "color": [ 0, 0, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "left", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": [ 255, 255, 255, 255 ], "haloSize": 1, "font": { "family": "Segoe UI", "size": 10, "style": "normal", "weight": "normal", "decoration": "none" } } } ] }, "defaultVisibility": true, "extent": { "xmin": 3113764.9483618885, "ymin": 7186732.038939565, "xmax": 3323057.8736072183, "ymax": 7284664.318468317, "spatialReference": { "wkid": 102738, "latestWkid": 2276, "xyTolerance": 0.003280833333333333, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -123407700, "falseY": -86123500, "xyUnits": 3048.0060960121928, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "hasAttachments": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "displayField": "created_user", "typeIdField": null, "subtypeFieldName": null, "subtypeField": null, "defaultSubtypeCode": null, "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null }, { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "SHAPE", "domain": null }, { "name": "GlobalID", "type": "esriFieldTypeGlobalID", "alias": "GlobalID", "length": 38, "domain": null }, { "name": "CreatedByRecord", "type": "esriFieldTypeGUID", "alias": "Created By Record", "length": 38, "domain": null }, { "name": "RetiredByRecord", "type": "esriFieldTypeGUID", "alias": "Retired By Record", "length": 38, "domain": null }, { "name": "ParentLineID", "type": "esriFieldTypeGUID", "alias": "Parent Line ID", "length": 38, "domain": null }, { "name": "Direction", "type": "esriFieldTypeDouble", "alias": "Direction", "domain": null }, { "name": "Distance", "type": "esriFieldTypeDouble", "alias": "Distance", "domain": null }, { "name": "Radius", "type": "esriFieldTypeDouble", "alias": "Radius", "domain": null }, { "name": "ArcLength", "type": "esriFieldTypeDouble", "alias": "Arc Length", "domain": null }, { "name": "Radius2", "type": "esriFieldTypeDouble", "alias": "Radius2", "domain": null }, { "name": "COGOType", "type": "esriFieldTypeInteger", "alias": "COGO Type", "domain": { "type": "codedValue", "name": "PF_COGOType", "description": "Parcel Fabric COGO Type", "codedValues": [ { "name": "Entered", "code": 1 }, { "name": "From Geometry", "code": 2 }, { "name": "Computed", "code": 3 } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } }, { "name": "IsCOGOGround", "type": "esriFieldTypeInteger", "alias": "Is COGO Ground", "domain": { "type": "codedValue", "name": "PF_YesNo", "description": "Parcel Fabric Yes No", "codedValues": [ { "name": "No", "code": 0 }, { "name": "Yes", "code": 1 } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } }, { "name": "Rotation", "type": "esriFieldTypeDouble", "alias": "Rotation", "domain": null }, { "name": "Scale", "type": "esriFieldTypeDouble", "alias": "Scale", "domain": null }, { "name": "DirectionAccuracy", "type": "esriFieldTypeDouble", "alias": "Direction Accuracy", "domain": null }, { "name": "DistanceAccuracy", "type": "esriFieldTypeDouble", "alias": "Distance Accuracy", "domain": null }, { "name": "LabelPosition", "type": "esriFieldTypeInteger", "alias": "Label Position", "domain": { "type": "codedValue", "name": "PF_LabelPosition", "description": "Indicates if the label position is to the left or right of the parcel line or is centered over the parcel line", "codedValues": [ { "name": "Right", "code": 1 }, { "name": "Left", "code": 2 }, { "name": "Centered", "code": 3 } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "Created By", "length": 255, "domain": null }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "Created Date", "length": 8, "domain": null }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "Modified By", "length": 255, "domain": null }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "Modified Date", "length": 8, "domain": null }, { "name": "VALIDATIONSTATUS", "type": "esriFieldTypeSmallInteger", "alias": "Validation status", "domain": { "type": "codedValue", "name": "Validation Status", "description": "The current record's validation status.", "codedValues": [ { "name": "No calculation required, no validation required, no error", "code": 0 }, { "name": "No calculation required, no validation required, has error(s)", "code": 1 }, { "name": "No calculation required, validation required, no error", "code": 2 }, { "name": "No calculation required, validation required, has error(s)", "code": 3 }, { "name": "Calculation required, no validation required, no error", "code": 4 }, { "name": "Calculation required, no validation required, has error(s)", "code": 5 }, { "name": "Calculation required, validation required, no error", "code": 6 }, { "name": "Calculation required, validation required, has error(s)", "code": 7 } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } }, { "name": "Shape.STLength()", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "SHAPE" }, "indexes": [ { "name": "R71_pk", "fields": "OBJECTID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "UUID_71", "fields": "GlobalID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "S56_idx", "fields": "Shape", "isAscending": true, "isUnique": true, "description": "" } ], "subtypes": [], "relationships": [], "canModifyLayer": true, "canScaleSymbols": false, "hasLabels": true, "capabilities": "Map,Query,Data", "maxRecordCount": 2000, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "hasZ": true, "supportedQueryFormats": "JSON, geoJSON, PBF", "isDataVersioned": false, "ownershipBasedAccessControlForFeatures": {"allowOthersToQuery": true}, "useStandardizedQueries": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "advancedQueryCapabilities": { "useStandardizedQueries": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsPagination": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsTrueCurve": true, "supportsQueryWithDatumTransformation": true, "supportsReturningQueryExtent": true, "supportsQueryWithDistance": true, "supportsSqlExpression": true, "supportsTimeRelation": true, "supportsSqlFormat": false, "supportsQueryAnalytic": true }, "supportsDatumTransformation": true, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": false, "supportsPercentileAnalytic": true }, "dateFieldsTimeReference": null, "preferredTimeReference": null, "datesInUnknownTimezone": false, "hasGeometryProperties": true, "geometryProperties": { "shapeLengthFieldName": "Shape.STLength()", "units": "esriFeet", "mapUnits": {"uwkid": 9003} }, "hasMetadata": true, "isDataArchived": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsCoordinatesQuantization": true, "supportsDynamicLegends": true, "serviceItemId": "ba33a8a54ace4ddd8ebbabfa39d6f1f0" }, { "currentVersion": 11.1, "cimVersion": "3.1.0", "id": 1, "name": "Lots", "type": "Feature Layer", "description": "", "geometryType": "esriGeometryPolygon", "sourceSpatialReference": { "wkid": 102738, "latestWkid": 2276, "xyTolerance": 0.003280833333333333, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -123407700, "falseY": -86123500, "xyUnits": 3048.0060960121928, "falseZ": -100000, "zUnits": 10000, "falseM": 0, "mUnits": 1 }, "copyrightText": "", "parentLayer": null, "subLayers": [], "minScale": 50000, "maxScale": 0, "referenceScale": 0.0, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 130, 130, 130, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSDash", "color": [ 0, 0, 0, 255 ], "width": 1 } } }, "scaleSymbols": true, "transparency": 0, "labelingInfo": [ { "labelExpressionInfo": { "expression": "\"Lot\" + textformatting.Newline + $feature.LotNum", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": true, "deconflictionStrategy": "dynamic", "repeatLabel": false, "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "useCodedValues": true, "maxScale": 0, "minScale": 2500, "name": "Lots", "priority": 10, "symbol": { "type": "esriTS", "color": [ 0, 0, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "left", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": [ 255, 255, 255, 255 ], "haloSize": 1, "font": { "family": "Segoe UI Semibold", "size": 8, "style": "normal", "weight": "normal", "decoration": "none" } } } ] }, "defaultVisibility": false, "extent": { "xmin": 3145485.560117379, "ymin": 7188628.958374068, "xmax": 3327942.080374226, "ymax": 7262853.507759318, "spatialReference": { "wkid": 102738, "latestWkid": 2276, "xyTolerance": 0.003280833333333333, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -123407700, "falseY": -86123500, "xyUnits": 3048.0060960121928, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "hasAttachments": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "displayField": "NBHDName", "typeIdField": null, "subtypeFieldName": null, "subtypeField": null, "defaultSubtypeCode": null, "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null }, { "name": "GlobalID", "type": "esriFieldTypeGlobalID", "alias": "GlobalID", "length": 38, "domain": null }, { "name": "LotNum", "type": "esriFieldTypeString", "alias": "Lot Number", "length": 255, "domain": null }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "Created By", "length": 255, "domain": null }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "Created Date", "length": 8, "domain": null }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "Modified By", "length": 255, "domain": null }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "Modified Date", "length": 8, "domain": null }, { "name": "VALIDATIONSTATUS", "type": "esriFieldTypeSmallInteger", "alias": "Validation status", "domain": { "type": "codedValue", "name": "Validation Status", "description": "The current record's validation status.", "codedValues": [ { "name": "No calculation required, no validation required, no error", "code": 0 }, { "name": "No calculation required, no validation required, has error(s)", "code": 1 }, { "name": "No calculation required, validation required, no error", "code": 2 }, { "name": "No calculation required, validation required, has error(s)", "code": 3 }, { "name": "Calculation required, no validation required, no error", "code": 4 }, { "name": "Calculation required, no validation required, has error(s)", "code": 5 }, { "name": "Calculation required, validation required, no error", "code": 6 }, { "name": "Calculation required, validation required, has error(s)", "code": 7 } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } }, { "name": "BlockNum", "type": "esriFieldTypeString", "alias": "Block Number", "length": 25, "domain": null }, { "name": "NBHDName", "type": "esriFieldTypeString", "alias": "Neighborhood Name", "length": 150, "domain": null }, { "name": "NGHBRNUM", "type": "esriFieldTypeString", "alias": "Neighborhood Number", "length": 254, "domain": null }, { "name": "HRName", "type": "esriFieldTypeString", "alias": "Headright Name", "length": 254, "domain": null }, { "name": "AbstractNu", "type": "esriFieldTypeString", "alias": "Abstract Number", "length": 25, "domain": null }, { "name": "Comment", "type": "esriFieldTypeString", "alias": "Comment", "length": 254, "domain": null }, { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "SHAPE", "domain": null }, { "name": "Shape.STArea()", "type": "esriFieldTypeDouble", "alias": "Shape.STArea()", "domain": null }, { "name": "Shape.STLength()", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "SHAPE" }, "indexes": [ { "name": "R42_pk", "fields": "OBJECTID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "UUID_42", "fields": "GlobalID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "S28_idx", "fields": "Shape", "isAscending": true, "isUnique": true, "description": "" } ], "subtypes": [], "relationships": [], "canModifyLayer": true, "canScaleSymbols": false, "hasLabels": true, "capabilities": "Map,Query,Data", "maxRecordCount": 2000, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "hasZ": true, "supportedQueryFormats": "JSON, geoJSON, PBF", "isDataVersioned": false, "ownershipBasedAccessControlForFeatures": {"allowOthersToQuery": true}, "useStandardizedQueries": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "advancedQueryCapabilities": { "useStandardizedQueries": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsPagination": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsTrueCurve": true, "supportsQueryWithDatumTransformation": true, "supportsReturningQueryExtent": true, "supportsQueryWithDistance": true, "supportsSqlExpression": true, "supportsTimeRelation": true, "supportsSqlFormat": false, "supportsQueryAnalytic": true }, "supportsDatumTransformation": true, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": false, "supportsPercentileAnalytic": true }, "dateFieldsTimeReference": null, "preferredTimeReference": null, "datesInUnknownTimezone": false, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape.STArea()", "shapeLengthFieldName": "Shape.STLength()", "units": "esriFeet", "mapUnits": {"uwkid": 9003} }, "hasMetadata": true, "isDataArchived": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsCoordinatesQuantization": true, "supportsDynamicLegends": true, "serviceItemId": "ba33a8a54ace4ddd8ebbabfa39d6f1f0" }, { "currentVersion": 11.1, "cimVersion": "3.1.0", "id": 2, "name": "Blocks", "type": "Feature Layer", "description": "", "geometryType": "esriGeometryPolygon", "sourceSpatialReference": { "wkid": 102738, "latestWkid": 2276, "xyTolerance": 0.003280833333333333, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -123407700, "falseY": -86123500, "xyUnits": 3048.0060960121928, "falseZ": -100000, "zUnits": 10000, "falseM": 0, "mUnits": 1 }, "copyrightText": "", "parentLayer": null, "subLayers": [], "minScale": 24000, "maxScale": 0, "referenceScale": 0.0, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 130, 130, 130, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 0 ], "width": 1 } } }, "scaleSymbols": true, "transparency": 0, "labelingInfo": [ { "labelExpressionInfo": { "expression": "$feature.BlockNum", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": true, "deconflictionStrategy": "dynamic", "repeatLabel": false, "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "useCodedValues": true, "maxScale": 0, "minScale": 10000, "name": "Blocks", "priority": 15, "symbol": { "type": "esriTS", "color": [ 168, 0, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "left", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": [ 255, 255, 255, 255 ], "haloSize": 1, "font": { "family": "Segoe UI", "size": 12, "style": "normal", "weight": "bold", "decoration": "none" } } } ] }, "defaultVisibility": false, "extent": { "xmin": 3145046.626940131, "ymin": 7188864.247929722, "xmax": 3328209.9007047266, "ymax": 7261796.184086561, "spatialReference": { "wkid": 102738, "latestWkid": 2276, "xyTolerance": 0.003280833333333333, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -123407700, "falseY": -86123500, "xyUnits": 3048.0060960121928, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "hasAttachments": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "displayField": "SubName", "typeIdField": null, "subtypeFieldName": null, "subtypeField": null, "defaultSubtypeCode": null, "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null }, { "name": "GlobalID", "type": "esriFieldTypeGlobalID", "alias": "GlobalID", "length": 38, "domain": null }, { "name": "BlockNum", "type": "esriFieldTypeString", "alias": "BlockNum", "length": 255, "domain": null }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "Created By", "length": 255, "domain": null }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "Created Date", "length": 8, "domain": null }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "Modified By", "length": 255, "domain": null }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "Modified Date", "length": 8, "domain": null }, { "name": "VALIDATIONSTATUS", "type": "esriFieldTypeSmallInteger", "alias": "Validation status", "domain": { "type": "codedValue", "name": "Validation Status", "description": "The current record's validation status.", "codedValues": [ { "name": "No calculation required, no validation required, no error", "code": 0 }, { "name": "No calculation required, no validation required, has error(s)", "code": 1 }, { "name": "No calculation required, validation required, no error", "code": 2 }, { "name": "No calculation required, validation required, has error(s)", "code": 3 }, { "name": "Calculation required, no validation required, no error", "code": 4 }, { "name": "Calculation required, no validation required, has error(s)", "code": 5 }, { "name": "Calculation required, validation required, no error", "code": 6 }, { "name": "Calculation required, validation required, has error(s)", "code": 7 } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } }, { "name": "SubName", "type": "esriFieldTypeString", "alias": "SubName", "length": 150, "domain": null }, { "name": "NbrhdNum", "type": "esriFieldTypeString", "alias": "NbrhdNum", "length": 254, "domain": null }, { "name": "HRName", "type": "esriFieldTypeString", "alias": "HRName", "length": 254, "domain": null }, { "name": "AbstractNu", "type": "esriFieldTypeString", "alias": "AbstractNu", "length": 25, "domain": null }, { "name": "Comment", "type": "esriFieldTypeString", "alias": "Comment", "length": 254, "domain": null }, { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "SHAPE", "domain": null }, { "name": "Shape.STArea()", "type": "esriFieldTypeDouble", "alias": "Shape.STArea()", "domain": null }, { "name": "Shape.STLength()", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "SHAPE" }, "indexes": [ { "name": "R41_pk", "fields": "OBJECTID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "UUID_41", "fields": "GlobalID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "S27_idx", "fields": "Shape", "isAscending": true, "isUnique": true, "description": "" } ], "subtypes": [], "relationships": [], "canModifyLayer": true, "canScaleSymbols": false, "hasLabels": true, "capabilities": "Map,Query,Data", "maxRecordCount": 2000, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "hasZ": true, "supportedQueryFormats": "JSON, geoJSON, PBF", "isDataVersioned": false, "ownershipBasedAccessControlForFeatures": {"allowOthersToQuery": true}, "useStandardizedQueries": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "advancedQueryCapabilities": { "useStandardizedQueries": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsPagination": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsTrueCurve": true, "supportsQueryWithDatumTransformation": true, "supportsReturningQueryExtent": true, "supportsQueryWithDistance": true, "supportsSqlExpression": true, "supportsTimeRelation": true, "supportsSqlFormat": false, "supportsQueryAnalytic": true }, "supportsDatumTransformation": true, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": false, "supportsPercentileAnalytic": true }, "dateFieldsTimeReference": null, "preferredTimeReference": null, "datesInUnknownTimezone": false, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape.STArea()", "shapeLengthFieldName": "Shape.STLength()", "units": "esriFeet", "mapUnits": {"uwkid": 9003} }, "hasMetadata": true, "isDataArchived": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsCoordinatesQuantization": true, "supportsDynamicLegends": true, "serviceItemId": "ba33a8a54ace4ddd8ebbabfa39d6f1f0" }, { "currentVersion": 11.1, "cimVersion": "3.1.0", "id": 3, "name": "Tax Parcels", "type": "Feature Layer", "description": "", "geometryType": "esriGeometryPolygon", "sourceSpatialReference": { "wkid": 102738, "latestWkid": 2276, "xyTolerance": 0.003280833333333333, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -123407700, "falseY": -86123500, "xyUnits": 3048.0060960121928, "falseZ": -100000, "zUnits": 10000, "falseM": 0, "mUnits": 1 }, "copyrightText": "", "parentLayer": null, "subLayers": [], "minScale": 87172, "maxScale": 0, "referenceScale": 0.0, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 0, 0, 0, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 255, 255, 0, 255 ], "width": 1.75 } } }, "scaleSymbols": true, "transparency": 0, "labelingInfo": [ { "labelExpressionInfo": { "expression": " $feature.OWNERNAME1 + textformatting.NewLine + $feature.PARCELID", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": true, "deconflictionStrategy": "dynamic", "repeatLabel": false, "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "useCodedValues": true, "maxScale": 0, "minScale": 5000, "name": "Small Parcels", "priority": 1, "symbol": { "type": "esriTS", "color": [ 115, 0, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "left", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": [ 255, 255, 255, 255 ], "haloSize": 1, "font": { "family": "Segoe UI", "size": 8, "style": "normal", "weight": "normal", "decoration": "none" } } }, { "labelExpressionInfo": { "expression": "// thresholds\nvar minAcres = 10.0;\nvar maxAcres = 500.0;\n\n// use the existing acres field\nvar polyAcres = $feature.CalculatedArea; // <-- replace ACRES with your field name\n\n// label only if between thresholds\nif (polyAcres >= minAcres && polyAcres <= maxAcres) {\n return $feature.OWNERNAME1 + textformatting.newline + $feature.PARCELID; // replace with your label field\n}\nreturn null;\n", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": true, "deconflictionStrategy": "dynamic", "repeatLabel": false, "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "useCodedValues": true, "maxScale": 5001, "minScale": 24999, "name": "Medium Parcels", "priority": -1, "symbol": { "type": "esriTS", "color": [ 115, 0, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "left", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": [ 255, 255, 255, 255 ], "haloSize": 1, "font": { "family": "Segoe UI", "size": 10, "style": "normal", "weight": "normal", "decoration": "none" } } } ] }, "defaultVisibility": true, "extent": { "xmin": 3109830.2065594643, "ymin": 7158474.319536477, "xmax": 3330284.317487642, "ymax": 7324085.909900561, "spatialReference": { "wkid": 102738, "latestWkid": 2276, "xyTolerance": 0.003280833333333333, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -123407700, "falseY": -86123500, "xyUnits": 3048.0060960121928, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "hasAttachments": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "displayField": "OWNERNAME1", "typeIdField": null, "subtypeFieldName": null, "subtypeField": null, "defaultSubtypeCode": null, "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null }, { "name": "GlobalID", "type": "esriFieldTypeGlobalID", "alias": "GlobalID", "length": 38, "domain": null }, { "name": "PARCELID", "type": "esriFieldTypeString", "alias": "Parcel Identification Number", "length": 255, "domain": null }, { "name": "CalculatedArea", "type": "esriFieldTypeDouble", "alias": "Calculated Area", "domain": null }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "Created By", "length": 255, "domain": null }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "Created Date", "length": 8, "domain": null }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "Modified By", "length": 255, "domain": null }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "Modified Date", "length": 8, "domain": null }, { "name": "VALIDATIONSTATUS", "type": "esriFieldTypeSmallInteger", "alias": "Validation status", "domain": { "type": "codedValue", "name": "Validation Status", "description": "The current record's validation status.", "codedValues": [ { "name": "No calculation required, no validation required, no error", "code": 0 }, { "name": "No calculation required, no validation required, has error(s)", "code": 1 }, { "name": "No calculation required, validation required, no error", "code": 2 }, { "name": "No calculation required, validation required, has error(s)", "code": 3 }, { "name": "Calculation required, no validation required, no error", "code": 4 }, { "name": "Calculation required, no validation required, has error(s)", "code": 5 }, { "name": "Calculation required, validation required, no error", "code": 6 }, { "name": "Calculation required, validation required, has error(s)", "code": 7 } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } }, { "name": "PROPKEY", "type": "esriFieldTypeString", "alias": "Property Key Code", "length": 20, "domain": null }, { "name": "NGHBRNUM", "type": "esriFieldTypeString", "alias": "Neighborhood Number", "length": 20, "domain": null }, { "name": "SCHOOL", "type": "esriFieldTypeString", "alias": "School Code", "length": 10, "domain": null }, { "name": "CITY", "type": "esriFieldTypeString", "alias": "City Code", "length": 10, "domain": null }, { "name": "COLLEGE", "type": "esriFieldTypeString", "alias": "College Code", "length": 10, "domain": null }, { "name": "ESD", "type": "esriFieldTypeString", "alias": "ESD", "length": 10, "domain": null }, { "name": "COUNTY", "type": "esriFieldTypeString", "alias": "County Code", "length": 10, "domain": null }, { "name": "APPRDATE", "type": "esriFieldTypeString", "alias": "Appraised Date", "length": 10, "domain": null }, { "name": "APPRID", "type": "esriFieldTypeString", "alias": "Appraiser ID", "length": 10, "domain": null }, { "name": "LEGAL1", "type": "esriFieldTypeString", "alias": "Legal Desc 1", "length": 255, "domain": null }, { "name": "LEGAL2", "type": "esriFieldTypeString", "alias": "Legal Desc 2", "length": 255, "domain": null }, { "name": "LEGAL3", "type": "esriFieldTypeString", "alias": "Legal Desc 3", "length": 255, "domain": null }, { "name": "LEGAL4", "type": "esriFieldTypeString", "alias": "Legal Desc 4", "length": 255, "domain": null }, { "name": "LEGAL5", "type": "esriFieldTypeString", "alias": "Legal Desc 5", "length": 255, "domain": null }, { "name": "LEGAL6", "type": "esriFieldTypeString", "alias": "Legal Desc 6", "length": 255, "domain": null }, { "name": "SITUSADDR", "type": "esriFieldTypeString", "alias": "Situs Address", "length": 255, "domain": null }, { "name": "SITUSCITY", "type": "esriFieldTypeString", "alias": "Situs City", "length": 255, "domain": null }, { "name": "SITUSSTATE", "type": "esriFieldTypeString", "alias": "Situs State", "length": 255, "domain": null }, { "name": "SITUSZIPCODE", "type": "esriFieldTypeString", "alias": "Situs Zipcode", "length": 255, "domain": null }, { "name": "OWNERNAME1", "type": "esriFieldTypeString", "alias": "Owner Name 1", "length": 255, "domain": null }, { "name": "OWNERNAME2", "type": "esriFieldTypeString", "alias": "Owner Name 2", "length": 255, "domain": null }, { "name": "ADDRESS1", "type": "esriFieldTypeString", "alias": "Mailing Address 1", "length": 255, "domain": null }, { "name": "ADDRESS2", "type": "esriFieldTypeString", "alias": "Mailing Address 2", "length": 255, "domain": null }, { "name": "ADDRESS3", "type": "esriFieldTypeString", "alias": "Mailing Address 3", "length": 255, "domain": null }, { "name": "CITY01", "type": "esriFieldTypeString", "alias": "Mailing City", "length": 255, "domain": null }, { "name": "STATE", "type": "esriFieldTypeString", "alias": "Mailing State", "length": 255, "domain": null }, { "name": "ZIPCODE", "type": "esriFieldTypeString", "alias": "Mailing Zip", "length": 255, "domain": null }, { "name": "USAGECODE", "type": "esriFieldTypeString", "alias": "Usuage Code", "length": 20, "domain": null }, { "name": "LANDMRKT", "type": "esriFieldTypeDouble", "alias": "Land Value", "domain": null }, { "name": "IMPSMRKT", "type": "esriFieldTypeDouble", "alias": "Improvements", "domain": null }, { "name": "TOTALMRKT", "type": "esriFieldTypeDouble", "alias": "Total Market Value", "domain": null }, { "name": "APPRAISED", "type": "esriFieldTypeDouble", "alias": "Appraised", "domain": null }, { "name": "TAXYEAR", "type": "esriFieldTypeDouble", "alias": "Tax Year", "domain": null }, { "name": "SQFOOT", "type": "esriFieldTypeString", "alias": "Square Footage", "length": 20, "domain": null }, { "name": "YRBUILT", "type": "esriFieldTypeString", "alias": "Year Built", "length": 10, "domain": null }, { "name": "COUNTRY", "type": "esriFieldTypeString", "alias": "Country", "length": 50, "domain": null }, { "name": "FLOORNUM", "type": "esriFieldTypeSmallInteger", "alias": "Floor Number", "domain": null }, { "name": "TAP", "type": "esriFieldTypeDouble", "alias": "Total Acres Priced", "domain": null }, { "name": "SALESPRICE", "type": "esriFieldTypeDouble", "alias": "Last Sales Price", "domain": null }, { "name": "PRODUCTIVITY", "type": "esriFieldTypeDouble", "alias": "Productivity Value", "domain": null }, { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "SHAPE", "domain": null }, { "name": "ACREAGE", "type": "esriFieldTypeDouble", "alias": "ACREAGE", "domain": null }, { "name": "Shape.STArea()", "type": "esriFieldTypeDouble", "alias": "Shape.STArea()", "domain": null }, { "name": "Shape.STLength()", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "SHAPE" }, "indexes": [ { "name": "R44_pk", "fields": "OBJECTID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "UUID_44", "fields": "GlobalID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "S30_idx", "fields": "Shape", "isAscending": true, "isUnique": true, "description": "" } ], "subtypes": [], "relationships": [], "canModifyLayer": true, "canScaleSymbols": false, "hasLabels": true, "capabilities": "Map,Query,Data", "maxRecordCount": 2000, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "hasZ": true, "supportedQueryFormats": "JSON, geoJSON, PBF", "isDataVersioned": false, "ownershipBasedAccessControlForFeatures": {"allowOthersToQuery": true}, "useStandardizedQueries": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "advancedQueryCapabilities": { "useStandardizedQueries": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsPagination": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsTrueCurve": true, "supportsQueryWithDatumTransformation": true, "supportsReturningQueryExtent": true, "supportsQueryWithDistance": true, "supportsSqlExpression": true, "supportsTimeRelation": true, "supportsSqlFormat": false, "supportsQueryAnalytic": true }, "supportsDatumTransformation": true, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": false, "supportsPercentileAnalytic": true }, "dateFieldsTimeReference": null, "preferredTimeReference": null, "datesInUnknownTimezone": false, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape.STArea()", "shapeLengthFieldName": "Shape.STLength()", "units": "esriFeet", "mapUnits": {"uwkid": 9003} }, "hasMetadata": true, "isDataArchived": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsCoordinatesQuantization": true, "supportsDynamicLegends": true, "serviceItemId": "ba33a8a54ace4ddd8ebbabfa39d6f1f0" }, { "currentVersion": 11.1, "cimVersion": "3.1.0", "id": 4, "name": "Subdivisions", "type": "Feature Layer", "description": "", "geometryType": "esriGeometryPolygon", "sourceSpatialReference": { "wkid": 102738, "latestWkid": 2276, "xyTolerance": 0.003280833333333333, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -123407700, "falseY": -86123500, "xyUnits": 3048.0060960121928, "falseZ": -100000, "zUnits": 10000, "falseM": 0, "mUnits": 1 }, "copyrightText": "", "parentLayer": null, "subLayers": [], "minScale": 87172, "maxScale": 0, "referenceScale": 0.0, "drawingInfo": { "renderer": { "type": "uniqueValue", "field1": "SUBNAME", "defaultSymbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 130, 130, 130, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "defaultLabel": "", "uniqueValueInfos": [ { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "1840 Estates Subd", "label": "1840 Estates Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "1st Addn Lakeside Country Club", "label": "1st Addn Lakeside Country Club" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "1st Texarkana Industrial Subd", "label": "1st Texarkana Industrial Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "2nd Addn Lakeside Country Club", "label": "2nd Addn Lakeside Country Club" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "7th Street Village", "label": "7th Street Village" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "A L Woodards Addn ", "label": "A L Woodards Addn " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "A N Hayes Subd", "label": "A N Hayes Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "A P M Addn", "label": "A P M Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "AA Self Storage Sub", "label": "AA Self Storage Sub" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "ATFAB Subd", "label": "ATFAB Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Aaron Addn", "label": "Aaron Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Aaron Subd Phase 1", "label": "Aaron Subd Phase 1" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Abbington Glen", "label": "Abbington Glen" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Adams Subd", "label": "Adams Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Akin Acres", "label": "Akin Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Akin Acres 2nd", "label": "Akin Acres 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Akin Oak Estates", "label": "Akin Oak Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Akin Oak Estates Phase Three", "label": "Akin Oak Estates Phase Three" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Akin Oak Estates Phase Two", "label": "Akin Oak Estates Phase Two" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Akin Ridge", "label": "Akin Ridge" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Al's Quick Stop Addn", "label": "Al's Quick Stop Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Alamo Heights", "label": "Alamo Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Alford Terrace ", "label": "Alford Terrace " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Alford Terrace 2nd", "label": "Alford Terrace 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Alhambra", "label": "Alhambra" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Allen Addn", "label": "Allen Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Alumax 1st Addn", "label": "Alumax 1st Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ames Acres", "label": "Ames Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Anderson Addn", "label": "Anderson Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Angel Subd", "label": "Angel Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Annadale Acres 1st", "label": "Annadale Acres 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Annadale Acres 2nd", "label": "Annadale Acres 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Arbor Meadows", "label": "Arbor Meadows" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Arklatex Realty Subd", "label": "Arklatex Realty Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Arnold Lane Subd", "label": "Arnold Lane Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ashlee Park", "label": "Ashlee Park" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Austin Street Subd", "label": "Austin Street Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Autrey's First Addn", "label": "Autrey's First Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Avondale Addn", "label": "Avondale Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "BT Estes Addn", "label": "BT Estes Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Baer & Ward Addn", "label": "Baer & Ward Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Baldwins Addition", "label": "Baldwins Addition" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ball & Smith Addn", "label": "Ball & Smith Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Barber Addn", "label": "Barber Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Barkman Bend Subd", "label": "Barkman Bend Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Barkman Creek Trace", "label": "Barkman Creek Trace" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Barthels Subd", "label": "Barthels Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Beaver Lake Estates", "label": "Beaver Lake Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Beaver Lake Estates II", "label": "Beaver Lake Estates II" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Beckenridge Subd", "label": "Beckenridge Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bel-Air 2nd ", "label": "Bel-Air 2nd " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bel-Air Subd", "label": "Bel-Air Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bell Heights", "label": "Bell Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bell View Addition", "label": "Bell View Addition" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Belmont Subd", "label": "Belmont Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Beltex 2nd", "label": "Beltex 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Beltex1st", "label": "Beltex1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ben Collins Addn", "label": "Ben Collins Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bent Tree Lake Estates II", "label": "Bent Tree Lake Estates II" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Berbig Addn", "label": "Berbig Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Beverly Heights", "label": "Beverly Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Beverly Heights 1st", "label": "Beverly Heights 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Beverly Heights 2nd", "label": "Beverly Heights 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bickleys Addn", "label": "Bickleys Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bill Crumpton's Subd #1", "label": "Bill Crumpton's Subd #1" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bill Crumpton's Subd #2", "label": "Bill Crumpton's Subd #2" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bingham Park ", "label": "Bingham Park " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Birdwell-Davis Addn", "label": "Birdwell-Davis Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bloodworth Subd", "label": "Bloodworth Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bloxham Addn", "label": "Bloxham Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Blue Bonnett Hills", "label": "Blue Bonnett Hills" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bob Phillips 2nd", "label": "Bob Phillips 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bob Phillips Sunshine Acres", "label": "Bob Phillips Sunshine Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Boston Second Sub", "label": "Boston Second Sub" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Boston Subd", "label": "Boston Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Boston or Glass Addn", "label": "Boston or Glass Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Boyette-Shilling Addn", "label": "Boyette-Shilling Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brad Brewington Estates ", "label": "Brad Brewington Estates " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brad Brewington Estates 2nd", "label": "Brad Brewington Estates 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brad Brewington Estates 3rd", "label": "Brad Brewington Estates 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brad Brewington Estates 4th", "label": "Brad Brewington Estates 4th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bradford Place", "label": "Bradford Place" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brashaers 1st Addn", "label": "Brashaers 1st Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brileys Sub", "label": "Brileys Sub" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bringle Lake Sub", "label": "Bringle Lake Sub" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bringles Addn", "label": "Bringles Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brinlee Industrial Addn", "label": "Brinlee Industrial Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brintwoods Addn", "label": "Brintwoods Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brookhaven Addition", "label": "Brookhaven Addition" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brookwood Acres", "label": "Brookwood Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brookwood Est", "label": "Brookwood Est" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brookwood Est 2nd", "label": "Brookwood Est 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brown & Meadows 1st", "label": "Brown & Meadows 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brown & Meadows 2nd", "label": "Brown & Meadows 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brown Subd", "label": "Brown Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brownwood 2nd", "label": "Brownwood 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brownwood 3rd", "label": "Brownwood 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bryant & Brown 1st ", "label": "Bryant & Brown 1st " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Bryant & Brown Subd", "label": "Bryant & Brown Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Buchanan Ave Addn", "label": "Buchanan Ave Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Burleson's 1st ", "label": "Burleson's 1st " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Butler Addn", "label": "Butler Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Byrds Addn", "label": "Byrds Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "C C Texarkana Addn", "label": "C C Texarkana Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "C E Huchabees Garden ", "label": "C E Huchabees Garden " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "C K Rachel Subd", "label": "C K Rachel Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "C L Reed Subd", "label": "C L Reed Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "C T Ware Subd", "label": "C T Ware Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "CA Hamners 1st", "label": "CA Hamners 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "CJ's 1st Addn", "label": "CJ's 1st Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "CVS Texarkana Addn", "label": "CVS Texarkana Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Caldera North", "label": "Caldera North" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Camino Smith", "label": "Camino Smith" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Campbell Addn", "label": "Campbell Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Candace Subd", "label": "Candace Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cannon Addn", "label": "Cannon Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cardinal Estates Subd", "label": "Cardinal Estates Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Carmichael Hill", "label": "Carmichael Hill" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Carmichaels Hollywood", "label": "Carmichaels Hollywood" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Carpenters Addition", "label": "Carpenters Addition" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Carrie D Hart 1st", "label": "Carrie D Hart 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Carrie D Harts 2nd", "label": "Carrie D Harts 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Carter Lane 2nd Sub", "label": "Carter Lane 2nd Sub" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Carter Lane Sub", "label": "Carter Lane Sub" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Carver Acres", "label": "Carver Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Carver Terrace ", "label": "Carver Terrace " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cascades Addn", "label": "Cascades Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Casey's Wake Village", "label": "Casey's Wake Village" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cave Wave Carwash", "label": "Cave Wave Carwash" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cedar Cottages Addn", "label": "Cedar Cottages Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cedar Creek Estates", "label": "Cedar Creek Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cerratos 2nd Addn", "label": "Cerratos 2nd Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cerratos Addn", "label": "Cerratos Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Chadicks Addn", "label": "Chadicks Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Champion Addn", "label": "Champion Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Charter Subd", "label": "Charter Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Chartwell Subd", "label": "Chartwell Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Chester Field", "label": "Chester Field" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Chrisuts Glenwood Subd", "label": "Chrisuts Glenwood Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cinemark Addn", "label": "Cinemark Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "City Improvement Co Annex", "label": "City Improvement Co Annex" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "City Improvement Co West Side ", "label": "City Improvement Co West Side " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "City Improvement Co West Side 2nd", "label": "City Improvement Co West Side 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "City/Triggs Addn", "label": "City/Triggs Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "City/Triggs Addn Blks 1-100", "label": "City/Triggs Addn Blks 1-100" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Clara Lane Subd", "label": "Clara Lane Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Classic Auto Park ", "label": "Classic Auto Park " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Classic Auto Park East", "label": "Classic Auto Park East" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Classic Auto Park East Second", "label": "Classic Auto Park East Second" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Clear Creek Estates 2nd", "label": "Clear Creek Estates 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Clear Creek Estates 3rd", "label": "Clear Creek Estates 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Clear Creek Estates 4th", "label": "Clear Creek Estates 4th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Clear Creek Estates 5th", "label": "Clear Creek Estates 5th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Clear Creek Estates 6th", "label": "Clear Creek Estates 6th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Clear Creek Estates 7th", "label": "Clear Creek Estates 7th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Clear Creek Estates1st", "label": "Clear Creek Estates1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Clearview Estates", "label": "Clearview Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Clearwater Creek Addn", "label": "Clearwater Creek Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Connor Heights", "label": "Connor Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Convention Center Addn", "label": "Convention Center Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Conways Ghio Park", "label": "Conways Ghio Park" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cookman Hill Addn", "label": "Cookman Hill Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cooper Lane Estates", "label": "Cooper Lane Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cooper Lane Estates II", "label": "Cooper Lane Estates II" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cooper Lane Estates III", "label": "Cooper Lane Estates III" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cooper Lane Estates IV", "label": "Cooper Lane Estates IV" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cornerstone", "label": "Cornerstone" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Coronado", "label": "Coronado" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cotton Belt Round House", "label": "Cotton Belt Round House" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Country Oak Subd", "label": "Country Oak Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Country Village Estates", "label": "Country Village Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Covington Park", "label": "Covington Park" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cowett Addn", "label": "Cowett Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cowhorn Plaza ", "label": "Cowhorn Plaza " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cowhorn Plaza II", "label": "Cowhorn Plaza II" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cox-Whyte Subd", "label": "Cox-Whyte Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Crestview", "label": "Crestview" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Crestview 2nd", "label": "Crestview 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Crestview Est", "label": "Crestview Est" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Crestwood Addn", "label": "Crestwood Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Crestwood Addn Phase I", "label": "Crestwood Addn Phase I" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Crestwood Addn Phase II", "label": "Crestwood Addn Phase II" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Crestwood Addn Phase III", "label": "Crestwood Addn Phase III" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Crockett Addn", "label": "Crockett Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cross Point Addn", "label": "Cross Point Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Crow Acres", "label": "Crow Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Crumpton Drive Subd", "label": "Crumpton Drive Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Culangs 2nd", "label": "Culangs 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cummings Acres First", "label": "Cummings Acres First" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Curtis Subd", "label": "Curtis Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cypress Cove", "label": "Cypress Cove" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "D A Williams Subd", "label": "D A Williams Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "D P Porters 2nd Addn", "label": "D P Porters 2nd Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "D P Porters Addn", "label": "D P Porters Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Dalgarns Subd", "label": "Dalgarns Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Danridge Heights", "label": "Danridge Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "DeKalb Industrial Park", "label": "DeKalb Industrial Park" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "DeLoach & Mabry", "label": "DeLoach & Mabry" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Deaton Place", "label": "Deaton Place" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Deerfield 2nd", "label": "Deerfield 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Deerfield 3rd", "label": "Deerfield 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Deerfield 5th", "label": "Deerfield 5th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Deerfield Subd", "label": "Deerfield Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Defense City", "label": "Defense City" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Defense City/Turtle Creek Estates I", "label": "Defense City/Turtle Creek Estates I" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Depot Gate (Whaley)", "label": "Depot Gate (Whaley)" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Dogwood Lake Estates 1st", "label": "Dogwood Lake Estates 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Dogwood Lake Estates 2nd", "label": "Dogwood Lake Estates 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Dogwood Lake Estates 3rd", "label": "Dogwood Lake Estates 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Dogwood Place Subd", "label": "Dogwood Place Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Double R Subd", "label": "Double R Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Dryer & Elllott ", "label": "Dryer & Elllott " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Duke West Subd", "label": "Duke West Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Dunbar Addition", "label": "Dunbar Addition" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Dunn 1st", "label": "Dunn 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "E H Poteet Subd", "label": "E H Poteet Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "EA Dryers 1st", "label": "EA Dryers 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "EA Dryers 2nd ", "label": "EA Dryers 2nd " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "EW Johnson Addn", "label": "EW Johnson Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Easley Addn", "label": "Easley Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "East Hooks Courts", "label": "East Hooks Courts" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Echo Hills Estates", "label": "Echo Hills Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Echo Hills Estates 2nd", "label": "Echo Hills Estates 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Echo Hills Estates Third Addn", "label": "Echo Hills Estates Third Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Edgebrook Addn", "label": "Edgebrook Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Edwards Addn", "label": "Edwards Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Elder Subd", "label": "Elder Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Elkay 2nd Revised", "label": "Elkay 2nd Revised" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Elkay 4th", "label": "Elkay 4th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Elkay Subd", "label": "Elkay Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Elliott Acres", "label": "Elliott Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ellis Addn", "label": "Ellis Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Elm Creek Addition", "label": "Elm Creek Addition" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Enclave at Holly Creek", "label": "Enclave at Holly Creek" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Estes & Heilbron", "label": "Estes & Heilbron" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Estes & Tilson", "label": "Estes & Tilson" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Estes Addn", "label": "Estes Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Eubanks 1st Addn", "label": "Eubanks 1st Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Euclid Heights ", "label": "Euclid Heights " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Eylau Acres Subd", "label": "Eylau Acres Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Eylau Woods Subd", "label": "Eylau Woods Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "F W McGees Addn", "label": "F W McGees Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Factory Heights", "label": "Factory Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Falvey Industrial", "label": "Falvey Industrial" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Falvey Industrial 2nd", "label": "Falvey Industrial 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Falveys Subd", "label": "Falveys Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Family Dollar Addn", "label": "Family Dollar Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Farr Oaks", "label": "Farr Oaks" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Feinberg Heights ", "label": "Feinberg Heights " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Feinbergs 2nd", "label": "Feinbergs 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Field Plaza", "label": "Field Plaza" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Fields Addn", "label": "Fields Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "First Bank & Trust Subd", "label": "First Bank & Trust Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Flower Acres", "label": "Flower Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Flower Acres 2nd", "label": "Flower Acres 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Flowers Bakery Addn", "label": "Flowers Bakery Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ford Subd #1", "label": "Ford Subd #1" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ford Subd #2", "label": "Ford Subd #2" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ford Subd #3", "label": "Ford Subd #3" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Forest Estates", "label": "Forest Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Forest Lake Commercial #1", "label": "Forest Lake Commercial #1" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Forest Lake Estates", "label": "Forest Lake Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Forest Ridge Homes", "label": "Forest Ridge Homes" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Forrest Grove ", "label": "Forrest Grove " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Four Sisters Addn", "label": "Four Sisters Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Franklin Drive Subd", "label": "Franklin Drive Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Franklin Heights", "label": "Franklin Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Freudiger Estates", "label": "Freudiger Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Front Street Addition", "label": "Front Street Addition" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Frost & Mahone Subd", "label": "Frost & Mahone Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "GBH Subd", "label": "GBH Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Gainey Investment Subd", "label": "Gainey Investment Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Galleria Oaks #1", "label": "Galleria Oaks #1" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Galleria Oaks #2", "label": "Galleria Oaks #2" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Galleria Oaks #3", "label": "Galleria Oaks #3" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Garrett Estates", "label": "Garrett Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Gasby Subd", "label": "Gasby Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ghio-Fish Blvd Addn", "label": "Ghio-Fish Blvd Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ghios Addn", "label": "Ghios Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ghios Subd", "label": "Ghios Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Gibbs Subd", "label": "Gibbs Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Gibson Heights", "label": "Gibson Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Gin Place", "label": "Gin Place" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Gladney Subd", "label": "Gladney Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Glen Haven", "label": "Glen Haven" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Glenwood ", "label": "Glenwood " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Glenwood 10th", "label": "Glenwood 10th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Glenwood 2nd", "label": "Glenwood 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Glenwood 3rd", "label": "Glenwood 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Glenwood 4th", "label": "Glenwood 4th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Glenwood 5th", "label": "Glenwood 5th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Glenwood 6th", "label": "Glenwood 6th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Glenwood 7th", "label": "Glenwood 7th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Glenwood 8th", "label": "Glenwood 8th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Glenwood 9th", "label": "Glenwood 9th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Glenwood Commercial", "label": "Glenwood Commercial" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Glenwood Terrace", "label": "Glenwood Terrace" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Golden Chick Addn", "label": "Golden Chick Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Goree Addn", "label": "Goree Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Gramercy Park", "label": "Gramercy Park" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Gramercy Park 2nd", "label": "Gramercy Park 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Grandview ", "label": "Grandview " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Greater Texarkana ", "label": "Greater Texarkana " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Green Garretts Addn", "label": "Green Garretts Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Green Oaks 2nd Addn", "label": "Green Oaks 2nd Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Green Oaks Addn", "label": "Green Oaks Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Green Pines Addn", "label": "Green Pines Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Greenbriar Forest Est", "label": "Greenbriar Forest Est" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Greene Subd", "label": "Greene Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Greenfield ", "label": "Greenfield " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Greenfield 2nd", "label": "Greenfield 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Greenfield 3rd", "label": "Greenfield 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Greenfield 4th", "label": "Greenfield 4th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Greenfield 5th", "label": "Greenfield 5th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Greenfield 6th", "label": "Greenfield 6th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Greenfield 7th", "label": "Greenfield 7th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Greenfield 8th", "label": "Greenfield 8th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Greenfield 9th", "label": "Greenfield 9th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Greenwood Addn", "label": "Greenwood Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Greenwoods Sunny Slope", "label": "Greenwoods Sunny Slope" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Guaranty Company Subd", "label": "Guaranty Company Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Guess Quarters", "label": "Guess Quarters" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Guptons Addn", "label": "Guptons Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Gus Less Addn", "label": "Gus Less Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Guss Orr Subd", "label": "Guss Orr Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "H C Williamson Addn", "label": "H C Williamson Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "H E Rape", "label": "H E Rape" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "H H Middens Subd", "label": "H H Middens Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "H P Stephens 2nd", "label": "H P Stephens 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "H P Stephens 3rd ", "label": "H P Stephens 3rd " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "H P Stevens Addn", "label": "H P Stevens Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "H Wards 1st", "label": "H Wards 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hackleman Addn", "label": "Hackleman Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hadaway Addn", "label": "Hadaway Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hadaway Second Addn", "label": "Hadaway Second Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hagler Lane Subd", "label": "Hagler Lane Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hairston Subd", "label": "Hairston Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hancocks 1st ", "label": "Hancocks 1st " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Harkrider", "label": "Harkrider" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Harmes ", "label": "Harmes " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Harriett Hubbard Heights", "label": "Harriett Hubbard Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Harris Est", "label": "Harris Est" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Harris Heights", "label": "Harris Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Harvey Millers Subd", "label": "Harvey Millers Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hatridge 2nd Addn", "label": "Hatridge 2nd Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hatridge 3rd Addn", "label": "Hatridge 3rd Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hatridge Addn", "label": "Hatridge Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Haven Home", "label": "Haven Home" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Healthcare Express Sub", "label": "Healthcare Express Sub" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Heilbrons 1st", "label": "Heilbrons 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Heilbrons 2nd", "label": "Heilbrons 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Heilbrons 3rd", "label": "Heilbrons 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Heilbrons 5th", "label": "Heilbrons 5th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Heilbrons Subd", "label": "Heilbrons Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hendershott Subd", "label": "Hendershott Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Henrys Subd", "label": "Henrys Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Heritage Lake Estates First ", "label": "Heritage Lake Estates First " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Heritage Manor 2nd Addn", "label": "Heritage Manor 2nd Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Heritage Manor Revised 1st", "label": "Heritage Manor Revised 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hickory Hills Subd", "label": "Hickory Hills Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hickory Oak Place Subd", "label": "Hickory Oak Place Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hidden Acres Addn", "label": "Hidden Acres Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hidden Lake Subd", "label": "Hidden Lake Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hidden Oak Estates", "label": "Hidden Oak Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "High Point North", "label": "High Point North" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Highland Addn", "label": "Highland Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Highland Park ", "label": "Highland Park " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Highland Park Addn", "label": "Highland Park Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hildebrand Subd MP", "label": "Hildebrand Subd MP" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hillside ", "label": "Hillside " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hilltop Estates First Addn", "label": "Hilltop Estates First Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hilltop Estates Second Addn", "label": "Hilltop Estates Second Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hillview ", "label": "Hillview " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Holleys Subd", "label": "Holleys Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Home Acres", "label": "Home Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hooks Subd", "label": "Hooks Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hope Subd", "label": "Hope Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Horton Subd", "label": "Horton Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Howard Heights", "label": "Howard Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Howard Oaks Subd", "label": "Howard Oaks Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Howells 2nd ", "label": "Howells 2nd " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Howells Addn", "label": "Howells Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hudgins", "label": "Hudgins" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hughes & Barkman", "label": "Hughes & Barkman" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hughes 1st", "label": "Hughes 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hughes Subd", "label": "Hughes Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hunters Glen Estates", "label": "Hunters Glen Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Huntington Cove Phase I", "label": "Huntington Cove Phase I" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hyatt Addn", "label": "Hyatt Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Icenhower Subd", "label": "Icenhower Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Independence Acres", "label": "Independence Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Indian Acres", "label": "Indian Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Indian Hills", "label": "Indian Hills" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Indian Hills Replat #1 Subd", "label": "Indian Hills Replat #1 Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "J P Weaver Addn", "label": "J P Weaver Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "J R Guinns Subd", "label": "J R Guinns Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "J T Spears Addn", "label": "J T Spears Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "JB Lee Subd", "label": "JB Lee Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "JR McGee Subd", "label": "JR McGee Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Jake Eldridge 1st", "label": "Jake Eldridge 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Jake Eldridge 2nd", "label": "Jake Eldridge 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Jake Eldridge 3rd", "label": "Jake Eldridge 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "James Cannon Addn", "label": "James Cannon Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "James Frost Addn", "label": "James Frost Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Jameson-Matlock Addn", "label": "Jameson-Matlock Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Jasons Place Addn", "label": "Jasons Place Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Jenson Center East", "label": "Jenson Center East" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Jenson Center West", "label": "Jenson Center West" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Jiffy Addn", "label": "Jiffy Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Jim Yates Subd", "label": "Jim Yates Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Joe Nortons Addn", "label": "Joe Nortons Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Jones & Tyson Addn", "label": "Jones & Tyson Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Joshua Tree 1st Addn", "label": "Joshua Tree 1st Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Junior Addn", "label": "Junior Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Kelly Acres", "label": "Kelly Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Kelly Addn", "label": "Kelly Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ken Oak Subd", "label": "Ken Oak Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Kennedys 1st", "label": "Kennedys 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Kennedys Highway ", "label": "Kennedys Highway " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Kensington Park", "label": "Kensington Park" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Kenwood Park", "label": "Kenwood Park" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Kenwood-Akins Addn", "label": "Kenwood-Akins Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Kia Addn", "label": "Kia Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "King Plaza 1st", "label": "King Plaza 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "King Plaza 2nd", "label": "King Plaza 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Kings Way Subd Phase I", "label": "Kings Way Subd Phase I" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Kings Way Subd Phase II", "label": "Kings Way Subd Phase II" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Kings Way Subd Phase III", "label": "Kings Way Subd Phase III" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Kingsrow Estates", "label": "Kingsrow Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Knight's Meadows", "label": "Knight's Meadows" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Knotty Pine Subd", "label": "Knotty Pine Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Korn Addn", "label": "Korn Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Kosminsky & Litchback ", "label": "Kosminsky & Litchback " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Krestridge", "label": "Krestridge" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Kristi's Mini Mart Addn", "label": "Kristi's Mini Mart Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Krouse 1st ", "label": "Krouse 1st " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Krouse Subd of Payne Lands", "label": "Krouse Subd of Payne Lands" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Kyle Acres", "label": "Kyle Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "LHTI Addn", "label": "LHTI Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lady Bird 1st", "label": "Lady Bird 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lake Drive Plaza Subd", "label": "Lake Drive Plaza Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lakeland Subd", "label": "Lakeland Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lakeridge Estates 1st", "label": "Lakeridge Estates 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lakeshore Acres", "label": "Lakeshore Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lakeside Country Club ", "label": "Lakeside Country Club " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lakeview Addn", "label": "Lakeview Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lakewood ", "label": "Lakewood " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Langford 1st", "label": "Langford 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Langhorn Subd", "label": "Langhorn Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Laniers Oak Hill Place", "label": "Laniers Oak Hill Place" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lavender Lots", "label": "Lavender Lots" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lavender Pasco Addn", "label": "Lavender Pasco Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lavender Pasco Second", "label": "Lavender Pasco Second" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lavender Pasco Third Addn", "label": "Lavender Pasco Third Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Layne Addn", "label": "Layne Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lazy Acres", "label": "Lazy Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Leary Dollar General Addn", "label": "Leary Dollar General Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Leathers Addn", "label": "Leathers Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ledford Subd #1", "label": "Ledford Subd #1" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Leeper-Shady Oaks Subd", "label": "Leeper-Shady Oaks Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lemmon Acres", "label": "Lemmon Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Leopard Plaza Subd", "label": "Leopard Plaza Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Liberty Addn", "label": "Liberty Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Liberty Annex", "label": "Liberty Annex" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Liberty Hill Estates Phase I", "label": "Liberty Hill Estates Phase I" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Life Storage Addn ", "label": "Life Storage Addn " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lillian Addn", "label": "Lillian Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lincoln Addn", "label": "Lincoln Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Links Subd", "label": "Links Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Loden Texas", "label": "Loden Texas" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "London's Bridge @ Wyatt Lane", "label": "London's Bridge @ Wyatt Lane" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lone Star Crossing", "label": "Lone Star Crossing" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lone Star Lake Estates", "label": "Lone Star Lake Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Lone Star Lake Estates Phase II", "label": "Lone Star Lake Estates Phase II" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Looney Addn", "label": "Looney Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Looper Addn", "label": "Looper Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "M Bar Ranch Sub Phase I", "label": "M Bar Ranch Sub Phase I" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "M Bar Ranch Sub Phase II", "label": "M Bar Ranch Sub Phase II" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "M C Wades Southwest Garden", "label": "M C Wades Southwest Garden" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "M P Harrison 2nd Subd", "label": "M P Harrison 2nd Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "M P Harrison Subd", "label": "M P Harrison Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "MC Wades 1st", "label": "MC Wades 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "MMM Industrial Park Subd", "label": "MMM Industrial Park Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Macedonia Addn", "label": "Macedonia Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Main Place II Addn", "label": "Main Place II Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Main Place Subd", "label": "Main Place Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Mallard Pond Addn", "label": "Mallard Pond Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Mankins-Smith-Huddleston Subd", "label": "Mankins-Smith-Huddleston Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Maple Tree Estates Revised", "label": "Maple Tree Estates Revised" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Maple Tree Estates Revised Second Addn", "label": "Maple Tree Estates Revised Second Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Marie J Ellis Subd ", "label": "Marie J Ellis Subd " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Marriott Subd", "label": "Marriott Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Martha S Pace Subd", "label": "Martha S Pace Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Marvel Acres", "label": "Marvel Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Mary E Wills Subd", "label": "Mary E Wills Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Matlock-Carr Addn", "label": "Matlock-Carr Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Maynards 1st Subd", "label": "Maynards 1st Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "McCormick Heights", "label": "McCormick Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "McCullough Sub", "label": "McCullough Sub" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "McKay's First Addn", "label": "McKay's First Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "McKnight Crossing 2nd Addn", "label": "McKnight Crossing 2nd Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "McKnight Crossing 3rd Addn", "label": "McKnight Crossing 3rd Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "McKnight Crossing Subd", "label": "McKnight Crossing Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "McMichael Dogwood Prop", "label": "McMichael Dogwood Prop" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "McMichael Wildwood 2nd ", "label": "McMichael Wildwood 2nd " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "McMichael Wildwood 3rd ", "label": "McMichael Wildwood 3rd " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "McMichael Wildwood East ", "label": "McMichael Wildwood East " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "McMichael Wildwood Subd", "label": "McMichael Wildwood Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "McMillen Addn", "label": "McMillen Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Meadow Brook Heights ", "label": "Meadow Brook Heights " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Meadow Lakes Subd", "label": "Meadow Lakes Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Meadow Subd Phase 1", "label": "Meadow Subd Phase 1" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Meadowbrook ", "label": "Meadowbrook " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Meadowview Addn", "label": "Meadowview Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Medical Plaza Subd", "label": "Medical Plaza Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Mercer Addn", "label": "Mercer Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Merrell Addn", "label": "Merrell Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Merritt Subd", "label": "Merritt Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Meyers Subd", "label": "Meyers Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Midland ", "label": "Midland " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Midsouth Bank Addn ", "label": "Midsouth Bank Addn " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Millers Subd ", "label": "Millers Subd " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Minton Subd", "label": "Minton Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Missildine Subd", "label": "Missildine Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Mooreland Addn", "label": "Mooreland Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Moores Lane Business Park", "label": "Moores Lane Business Park" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Morris Beck Addn", "label": "Morris Beck Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Morris Dunn Addn", "label": "Morris Dunn Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Morrison Subd", "label": "Morrison Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Motz Heights", "label": "Motz Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Moxee Subd", "label": "Moxee Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Munz Addn", "label": "Munz Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Murdock Subd", "label": "Murdock Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Murphys Addn", "label": "Murphys Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Musgrave Subd", "label": "Musgrave Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Mustang Ridge", "label": "Mustang Ridge" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Myrtle Springs Addn", "label": "Myrtle Springs Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Nantze Subd", "label": "Nantze Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Nash Business Park ", "label": "Nash Business Park " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Nash Business Park Phase II", "label": "Nash Business Park Phase II" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Nash Business Park Phase III", "label": "Nash Business Park Phase III" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Nash Business Park Phase IV", "label": "Nash Business Park Phase IV" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Nash Business Park Phase V", "label": "Nash Business Park Phase V" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Nash Heights Acres", "label": "Nash Heights Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Nash Travel Stop", "label": "Nash Travel Stop" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Nash Truck Garden", "label": "Nash Truck Garden" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Neighbors Subd", "label": "Neighbors Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "New Potato Addn", "label": "New Potato Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "New Town Addn", "label": "New Town Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "New Town Heights", "label": "New Town Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Nichols Heights", "label": "Nichols Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Nichols Heights 2nd", "label": "Nichols Heights 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Nick-Lilly Subd", "label": "Nick-Lilly Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "No 1 Ed", "label": "No 1 Ed" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "North Haven", "label": "North Haven" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "North Highland Estates", "label": "North Highland Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "North Highland Estates 2nd", "label": "North Highland Estates 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "North Park", "label": "North Park" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "North Park 2nd", "label": "North Park 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "North Park Estates", "label": "North Park Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "North Park Garden", "label": "North Park Garden" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "North Park Place Subd", "label": "North Park Place Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "North Richland Estates", "label": "North Richland Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "North Robison Courts", "label": "North Robison Courts" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "North Village Estates", "label": "North Village Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Northfork ", "label": "Northfork " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Northfork Creek Addn", "label": "Northfork Creek Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Northridge ", "label": "Northridge " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Northridge Country Est", "label": "Northridge Country Est" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Northview Estates", "label": "Northview Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Northview Estates 2nd", "label": "Northview Estates 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Northwest Estates", "label": "Northwest Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Northwest Estates (WV)", "label": "Northwest Estates (WV)" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Northwood 2nd", "label": "Northwood 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Northwood Presbyterian Addn", "label": "Northwood Presbyterian Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Northwood Revised", "label": "Northwood Revised" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Northwood at Knotty Pine Sub", "label": "Northwood at Knotty Pine Sub" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Norton Copper Ridge Addn", "label": "Norton Copper Ridge Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Norton Copper Ridge II Subd", "label": "Norton Copper Ridge II Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "O W Laniers Subd", "label": "O W Laniers Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "O'Reilly Texarkana #3 Addn", "label": "O'Reilly Texarkana #3 Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Oak Forest Estates", "label": "Oak Forest Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Oak Forest Subd #1", "label": "Oak Forest Subd #1" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Oak Forest Subd #2", "label": "Oak Forest Subd #2" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Oak Forest Subd #3", "label": "Oak Forest Subd #3" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Oak Forest Subd #4", "label": "Oak Forest Subd #4" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Oak Forest Subd #5", "label": "Oak Forest Subd #5" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Oak Grove Place", "label": "Oak Grove Place" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Oak Terrace Subd", "label": "Oak Terrace Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Oaklawn ", "label": "Oaklawn " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Oakridge", "label": "Oakridge" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Oakridge Addn Revised", "label": "Oakridge Addn Revised" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Oakridge Subd #1", "label": "Oakridge Subd #1" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Odia & Mary Subd", "label": "Odia & Mary Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Old Dekalb", "label": "Old Dekalb" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Orange-Summerhill Addn", "label": "Orange-Summerhill Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Orange-Wake Village ", "label": "Orange-Wake Village " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Orin F Rehkopf", "label": "Orin F Rehkopf" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Orr CJD Second Addn", "label": "Orr CJD Second Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "PT Norwood Subd", "label": "PT Norwood Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Palmers Subd", "label": "Palmers Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Paradise Quick Stop #12", "label": "Paradise Quick Stop #12" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Parish Place", "label": "Parish Place" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Park Creek ", "label": "Park Creek " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Park Terrace", "label": "Park Terrace" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Park Terrace 2nd", "label": "Park Terrace 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Park View", "label": "Park View" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Park Villa Estates", "label": "Park Villa Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Parkwood Addn", "label": "Parkwood Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Partridge Subd", "label": "Partridge Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Patriot Estates", "label": "Patriot Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Payne & Delong 1st", "label": "Payne & Delong 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Payne & Delong 2nd", "label": "Payne & Delong 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Payne & Ector", "label": "Payne & Ector" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pebble Creek Subd", "label": "Pebble Creek Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pecan Creek", "label": "Pecan Creek" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pecan Place Subd", "label": "Pecan Place Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pecan Valley Subd", "label": "Pecan Valley Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Persimmon Cove Estates", "label": "Persimmon Cove Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Peter Heights ", "label": "Peter Heights " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pettit Addn", "label": "Pettit Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Phillips Subd", "label": "Phillips Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Phillips Village North", "label": "Phillips Village North" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pine Forest 1st", "label": "Pine Forest 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pine Forest 2nd", "label": "Pine Forest 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pine Forest 3rd", "label": "Pine Forest 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pine Forest 4th", "label": "Pine Forest 4th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pine Forest 5th", "label": "Pine Forest 5th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pine Forest 6th", "label": "Pine Forest 6th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pine Street Addn", "label": "Pine Street Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Piney Hills", "label": "Piney Hills" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Piney Hills 2nd", "label": "Piney Hills 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Planet Addn", "label": "Planet Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Plants Addn", "label": "Plants Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pleasant Acres ", "label": "Pleasant Acres " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pleasant Acres 2nd", "label": "Pleasant Acres 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pleasant Acres 3rd", "label": "Pleasant Acres 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pleasant Grove", "label": "Pleasant Grove" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pleasant Grove Central", "label": "Pleasant Grove Central" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pleasant Grove North", "label": "Pleasant Grove North" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pleasant Grove West 2nd Addn", "label": "Pleasant Grove West 2nd Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pleasant Grove West 3rd Addn", "label": "Pleasant Grove West 3rd Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pleasant Grove West Fifth", "label": "Pleasant Grove West Fifth" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pleasant Grove West Fourth Addn", "label": "Pleasant Grove West Fourth Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pleasant Grove West Subd", "label": "Pleasant Grove West Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pleasant Hills ", "label": "Pleasant Hills " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pleasant Ridge ", "label": "Pleasant Ridge " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Pleasanton Addn", "label": "Pleasanton Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Porter Subd", "label": "Porter Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Powells Subd", "label": "Powells Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Premier Triplexes Subd", "label": "Premier Triplexes Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Proposed Shetland Acres", "label": "Proposed Shetland Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Provident Addn", "label": "Provident Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Quail Hollow Est 1st", "label": "Quail Hollow Est 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Quail Hollow Est 2nd", "label": "Quail Hollow Est 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Quail Hollow Est Proposed", "label": "Quail Hollow Est Proposed" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Quail Hollow Estates III", "label": "Quail Hollow Estates III" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Quail Ridge", "label": "Quail Ridge" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Quailbrook Estates Subd", "label": "Quailbrook Estates Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "R S Beardens Blvd Addn", "label": "R S Beardens Blvd Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "R W Hooks Addn", "label": "R W Hooks Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "R W Johnston Jr's Subd", "label": "R W Johnston Jr's Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "RB Riley Addn", "label": "RB Riley Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "RW Rodgers Addn", "label": "RW Rodgers Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Racetrac Kings Hwy Subd", "label": "Racetrac Kings Hwy Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Racetrac State Line Subd", "label": "Racetrac State Line Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Raney Addn", "label": "Raney Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rateliff Subd", "label": "Rateliff Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Red Cut Heights", "label": "Red Cut Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Red Lick Ranch", "label": "Red Lick Ranch" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Red Springs Subd", "label": "Red Springs Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Redbridge Subd", "label": "Redbridge Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Redbridge Subd Phase II", "label": "Redbridge Subd Phase II" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Redwater Commercial Park", "label": "Redwater Commercial Park" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Redwater West Addition", "label": "Redwater West Addition" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Reed Hill Estates 1st", "label": "Reed Hill Estates 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Reeds Subd", "label": "Reeds Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Remington Addn", "label": "Remington Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Renaissance Subd", "label": "Renaissance Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Revised Saddlebrook Estates", "label": "Revised Saddlebrook Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richill", "label": "Richill" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond Acres", "label": "Richmond Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond Dev 2nd Subd ", "label": "Richmond Dev 2nd Subd " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond Dev Subd ", "label": "Richmond Dev Subd " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond Dev Subd 3rd", "label": "Richmond Dev Subd 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond Dev Subd 4th", "label": "Richmond Dev Subd 4th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond Dev Subd 5th", "label": "Richmond Dev Subd 5th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond Heights", "label": "Richmond Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond Hills 1st", "label": "Richmond Hills 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond Hills 2nd", "label": "Richmond Hills 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond Hills 3rd", "label": "Richmond Hills 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond Park Subd", "label": "Richmond Park Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond Pines", "label": "Richmond Pines" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond Pines 2nd", "label": "Richmond Pines 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond Pines 3rd", "label": "Richmond Pines 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond Pines 4th", "label": "Richmond Pines 4th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond Place", "label": "Richmond Place" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond West Pavillion", "label": "Richmond West Pavillion" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond-Airline", "label": "Richmond-Airline" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond-Kwik Addn", "label": "Richmond-Kwik Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond-Mc Knight Addn", "label": "Richmond-Mc Knight Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond-Medical Addn", "label": "Richmond-Medical Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond-Moores", "label": "Richmond-Moores" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond-Moores Second", "label": "Richmond-Moores Second" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Richmond-Moores Subd", "label": "Richmond-Moores Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ridgecrest Lake Estates", "label": "Ridgecrest Lake Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ridgewood 1st", "label": "Ridgewood 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Riverbend", "label": "Riverbend" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rivercrest Addn", "label": "Rivercrest Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rochelle 2nd", "label": "Rochelle 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rochelle Addn", "label": "Rochelle Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rochelle Heights", "label": "Rochelle Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rock Creek Addn", "label": "Rock Creek Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rock Creek Estates", "label": "Rock Creek Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rolling Hills", "label": "Rolling Hills" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rolling Hills Subd No 1", "label": "Rolling Hills Subd No 1" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rollingwood ", "label": "Rollingwood " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rose Acres", "label": "Rose Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rose Acres Annex", "label": "Rose Acres Annex" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rose Kennedy", "label": "Rose Kennedy" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rose of Sharon Estates", "label": "Rose of Sharon Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rosehill Ridge Subd", "label": "Rosehill Ridge Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rosewood Hills 1st Addn", "label": "Rosewood Hills 1st Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rosewood Terrace", "label": "Rosewood Terrace" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Roundabout Way Addn #1", "label": "Roundabout Way Addn #1" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Roundabout Way Addn #2", "label": "Roundabout Way Addn #2" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rozzell Subd", "label": "Rozzell Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ruff 1st Addn", "label": "Ruff 1st Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Runnels City ", "label": "Runnels City " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Runnels City 1st ", "label": "Runnels City 1st " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ruston Ridge 2nd Subd", "label": "Ruston Ridge 2nd Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ruston Ridge Subd", "label": "Ruston Ridge Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "SM Lesters Subd", "label": "SM Lesters Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sam Hayes Subd", "label": "Sam Hayes Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sanders Addn", "label": "Sanders Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sandy Ridge Subdivision", "label": "Sandy Ridge Subdivision" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Shannons First Addn", "label": "Shannons First Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Shayla Addn", "label": "Shayla Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Shellwood Addn", "label": "Shellwood Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sherry Ridge Addn", "label": "Sherry Ridge Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sherwood Addn", "label": "Sherwood Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Shilling Estate ", "label": "Shilling Estate " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Shilling Estate 2nd", "label": "Shilling Estate 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Shillings North Addn", "label": "Shillings North Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Shillings Place", "label": "Shillings Place" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Shillings South ", "label": "Shillings South " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Shillings South 2nd ", "label": "Shillings South 2nd " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Shillings South 3rd", "label": "Shillings South 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Shops At Texarkana Addn", "label": "Shops At Texarkana Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sigh Taylor Addn", "label": "Sigh Taylor Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Siloam Pines Subd", "label": "Siloam Pines Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Silver Oaks #2", "label": "Silver Oaks #2" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Silver Oaks 4th", "label": "Silver Oaks 4th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Silver Oaks Addn Revised", "label": "Silver Oaks Addn Revised" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Silver Oaks Third", "label": "Silver Oaks Third" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Silverhill Subd", "label": "Silverhill Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Singing Pines 1st", "label": "Singing Pines 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Singing Pines 2nd ", "label": "Singing Pines 2nd " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Singing Pines 3rd", "label": "Singing Pines 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Singing Pines 4th ", "label": "Singing Pines 4th " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Smith Addn", "label": "Smith Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Smolley & Smith Addn", "label": "Smolley & Smith Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "South Cowhorn Creek Loop Subd", "label": "South Cowhorn Creek Loop Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "South Cowhorn Creek Subd", "label": "South Cowhorn Creek Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "South Texarkana", "label": "South Texarkana" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Southern Charm Estates", "label": "Southern Charm Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Southern Pines", "label": "Southern Pines" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Southern Pines 2nd", "label": "Southern Pines 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Southern Pines 3rd", "label": "Southern Pines 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Southern Pines Addn", "label": "Southern Pines Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Southern Pines Estates 1st", "label": "Southern Pines Estates 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Southfork Addn", "label": "Southfork Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Southpark", "label": "Southpark" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Southwest Addn", "label": "Southwest Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Southwood Estates", "label": "Southwood Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Spanish Villa Estates 1st", "label": "Spanish Villa Estates 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sparkman Est", "label": "Sparkman Est" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sparks Addn", "label": "Sparks Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sparkwood North 1st", "label": "Sparkwood North 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sparkwood North 2nd", "label": "Sparkwood North 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Spencer Addn", "label": "Spencer Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Spring Creek Estates", "label": "Spring Creek Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Springers Subd", "label": "Springers Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Springlake Park Addn", "label": "Springlake Park Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Stanfields Addn", "label": "Stanfields Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Starlite Estates", "label": "Starlite Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sterling Estates", "label": "Sterling Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sterling Estates 2nd", "label": "Sterling Estates 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Stewart Subd", "label": "Stewart Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Stilwells Addn", "label": "Stilwells Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Stinson Addn", "label": "Stinson Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Stonegate Subd", "label": "Stonegate Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Stoneridge \nSubd", "label": "Stoneridge \nSubd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Stoneridge 2nd Subd", "label": "Stoneridge 2nd Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Stones Addn", "label": "Stones Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Stonevale Addn", "label": "Stonevale Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Stuart Estates", "label": "Stuart Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sub Blk A MEP&P A-433", "label": "Sub Blk A MEP&P A-433" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Subd Blks 6-7 Nash Truck Garden", "label": "Subd Blks 6-7 Nash Truck Garden" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sullivan-Wilson Subd", "label": "Sullivan-Wilson Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Summer Heights", "label": "Summer Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Summer Place", "label": "Summer Place" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Summer Ridge 2nd Addn", "label": "Summer Ridge 2nd Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Summer Ridge Addn", "label": "Summer Ridge Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Summerhill Heights", "label": "Summerhill Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Summerhill North", "label": "Summerhill North" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Summerhill Park #3", "label": "Summerhill Park #3" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Summerhill Place", "label": "Summerhill Place" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Summerhill Plaza 1st", "label": "Summerhill Plaza 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Summerhill Plaza 2nd", "label": "Summerhill Plaza 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Summerhill Plaza 3rd", "label": "Summerhill Plaza 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Summerhill Ridge Subd", "label": "Summerhill Ridge Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Summerlane Estates Revised", "label": "Summerlane Estates Revised" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sunrise Acres", "label": "Sunrise Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sunset Acres", "label": "Sunset Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sunset Acres 2nd", "label": "Sunset Acres 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sunset Center Addn", "label": "Sunset Center Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Super 8 Subdivision", "label": "Super 8 Subdivision" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Sussex Downs", "label": "Sussex Downs" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Swing Lab Park Subd", "label": "Swing Lab Park Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "T & P Addn ", "label": "T & P Addn " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "T B Moores Addn", "label": "T B Moores Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "T W Rosborough Subd", "label": "T W Rosborough Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "T&P Addn", "label": "T&P Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "TAC Central No 1 Subd", "label": "TAC Central No 1 Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "TAC Robison Rd Subd", "label": "TAC Robison Rd Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "TXK-1 Minor Plat", "label": "TXK-1 Minor Plat" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "TXK-2 Minor Plat", "label": "TXK-2 Minor Plat" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Tanglewood ", "label": "Tanglewood " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Tanglewood 2nd", "label": "Tanglewood 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Tanglewood 3rd", "label": "Tanglewood 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Tanglewood Commercial 1st", "label": "Tanglewood Commercial 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Taylors Addn", "label": "Taylors Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Terra Bella Addn", "label": "Terra Bella Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Texarkana Pavillion", "label": "Texarkana Pavillion" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Texarkana Shopping Center", "label": "Texarkana Shopping Center" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Texarkana Shopping Center 2nd", "label": "Texarkana Shopping Center 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Texarkana Shopping Center 3rd", "label": "Texarkana Shopping Center 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Texas Bank &Trust Subd", "label": "Texas Bank &Trust Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "The Bradbury By Clayton Phase One", "label": "The Bradbury By Clayton Phase One" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "The Clanton Addn", "label": "The Clanton Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "The Colony", "label": "The Colony" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "The Colony II", "label": "The Colony II" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "The Colony II Replat #1", "label": "The Colony II Replat #1" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "The Colony II Replat #2", "label": "The Colony II Replat #2" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "The Colony II Replat #3", "label": "The Colony II Replat #3" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "The Enclave at North Park", "label": "The Enclave at North Park" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "The Grove at Amesdale", "label": "The Grove at Amesdale" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "The Grove at University", "label": "The Grove at University" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "The Meadow", "label": "The Meadow" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "The Meadowlands", "label": "The Meadowlands" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "The Ozarks", "label": "The Ozarks" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "The Pines", "label": "The Pines" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Tidewell Sub", "label": "Tidewell Sub" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Tidwell-Nash Addn", "label": "Tidwell-Nash Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Tilson & Pitchers 1st", "label": "Tilson & Pitchers 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Tilson & Pitchers 2nd", "label": "Tilson & Pitchers 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Tilson & Pitchrs 3rd", "label": "Tilson & Pitchrs 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Tilson Subd Blk 15 TB Moores", "label": "Tilson Subd Blk 15 TB Moores" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Tilson Subd Blk 3 TB Moores", "label": "Tilson Subd Blk 3 TB Moores" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Tilson Subd J W Johnson", "label": "Tilson Subd J W Johnson" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Tilsons Cotton Belt Addn", "label": "Tilsons Cotton Belt Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Tohill Subd", "label": "Tohill Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Town & Country Estates", "label": "Town & Country Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Town & Country Ests Phase II", "label": "Town & Country Ests Phase II" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Trail Ridge Addn", "label": "Trail Ridge Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Trent Subd", "label": "Trent Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Triad Subd No 1", "label": "Triad Subd No 1" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Trumble Hwy 67 Subd", "label": "Trumble Hwy 67 Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Tuxedo Park", "label": "Tuxedo Park" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Twilight Terrace 1st", "label": "Twilight Terrace 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Twilight Terrace 2nd", "label": "Twilight Terrace 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Twilight Terrace 3rd", "label": "Twilight Terrace 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Twilight Terrace 4th", "label": "Twilight Terrace 4th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Twilight Terrace 5th", "label": "Twilight Terrace 5th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Twilight Terrace 6th ", "label": "Twilight Terrace 6th " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Twin Acres Subd", "label": "Twin Acres Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Twin Creek Estates First", "label": "Twin Creek Estates First" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Twin Oaks ", "label": "Twin Oaks " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Twin Oaks Addn Part II", "label": "Twin Oaks Addn Part II" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Twitty Subd", "label": "Twitty Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Two States", "label": "Two States" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ultra Black Addn", "label": "Ultra Black Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "United-Bilt Home Subd ", "label": "United-Bilt Home Subd " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "University Park Fire Station Subd", "label": "University Park Fire Station Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "University Park Subd", "label": "University Park Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "University Park Three", "label": "University Park Three" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "University Park Two Subd", "label": "University Park Two Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Urban Heights", "label": "Urban Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Vaughans Addn", "label": "Vaughans Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Victoria Park II Subd", "label": "Victoria Park II Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Victoria Park Subd", "label": "Victoria Park Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Victory City", "label": "Victory City" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Victory Heights", "label": "Victory Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Victron Stores Addn", "label": "Victron Stores Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Victron Stores Addn Phase 2", "label": "Victron Stores Addn Phase 2" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Villa Estates 1st", "label": "Villa Estates 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Villa Estates 2nd", "label": "Villa Estates 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village North 10th", "label": "Village North 10th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village North 11th", "label": "Village North 11th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village North 12th", "label": "Village North 12th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village North 13th", "label": "Village North 13th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village North 14th", "label": "Village North 14th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village North 15th", "label": "Village North 15th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village North 1st", "label": "Village North 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village North 2nd", "label": "Village North 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village North 3rd", "label": "Village North 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village North 4th", "label": "Village North 4th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village North 5th", "label": "Village North 5th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village North 6th", "label": "Village North 6th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village North 7th", "label": "Village North 7th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village North 8th", "label": "Village North 8th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village North 9th", "label": "Village North 9th" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village West Addn", "label": "Village West Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "W D Wall Subd", "label": "W D Wall Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wade & Kuhl Blvd", "label": "Wade & Kuhl Blvd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wade & Kuhl Garden ", "label": "Wade & Kuhl Garden " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wade & Smith Addn", "label": "Wade & Smith Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wades Buchanan Addn", "label": "Wades Buchanan Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Waggoner Creek Crossing One", "label": "Waggoner Creek Crossing One" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Waggoner Creek Crossing South", "label": "Waggoner Creek Crossing South" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Waggoner Creek Crossing Three", "label": "Waggoner Creek Crossing Three" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Waggoner Creek Crossing Two", "label": "Waggoner Creek Crossing Two" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Waggoner Creek Crossing West Replat", "label": "Waggoner Creek Crossing West Replat" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Waggoner Creek Plaza", "label": "Waggoner Creek Plaza" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Waggoner Creek West", "label": "Waggoner Creek West" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wagnon Estates Subd", "label": "Wagnon Estates Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wake Forest 1st", "label": "Wake Forest 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wake Forest 2nd", "label": "Wake Forest 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wake Forest 3rd", "label": "Wake Forest 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wake Village ", "label": "Wake Village " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wal-Mart 1st Addn", "label": "Wal-Mart 1st Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wal-Mart 2nd Replat", "label": "Wal-Mart 2nd Replat" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wal-Mart Addition", "label": "Wal-Mart Addition" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wal-Mart Second Addn", "label": "Wal-Mart Second Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wal-Mart Third Addn", "label": "Wal-Mart Third Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Walnut Hill", "label": "Walnut Hill" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Walsh-Carter Master Tract", "label": "Walsh-Carter Master Tract" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Walsh-Carter Master Tract Second", "label": "Walsh-Carter Master Tract Second" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Washington Heights", "label": "Washington Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Waterall Industrial Park", "label": "Waterall Industrial Park" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Watson Subd", "label": "Watson Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Watts Addn", "label": "Watts Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Watts Heights", "label": "Watts Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Watts Terrace", "label": "Watts Terrace" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Watts-Fielden 1st", "label": "Watts-Fielden 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Weatherfords Addn", "label": "Weatherfords Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Webb Revised", "label": "Webb Revised" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Welch's 1st Additon", "label": "Welch's 1st Additon" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Weldon's Sub No 1", "label": "Weldon's Sub No 1" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wellsford Subd", "label": "Wellsford Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "West Beverly", "label": "West Beverly" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "West End ", "label": "West End " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "West Hill", "label": "West Hill" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "West Hill 2nd", "label": "West Hill 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "West Point ", "label": "West Point " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "West Terrace ", "label": "West Terrace " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "West Texarkana ", "label": "West Texarkana " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "West Texarkana Garden", "label": "West Texarkana Garden" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Westbrooks 1st", "label": "Westbrooks 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Westbrooks 2nd", "label": "Westbrooks 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Western Hills", "label": "Western Hills" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Western Hills 2nd", "label": "Western Hills 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Western Hills 3rd", "label": "Western Hills 3rd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Westgate 1st", "label": "Westgate 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Westlawn", "label": "Westlawn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Westline Addn", "label": "Westline Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Westmoreland Place", "label": "Westmoreland Place" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Westridge Addn", "label": "Westridge Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Westwood", "label": "Westwood" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Westwood Addn", "label": "Westwood Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Westwood Estates", "label": "Westwood Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Westwood Place ", "label": "Westwood Place " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Westwood Place 2nd Addn", "label": "Westwood Place 2nd Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Westwood at the Village 1st", "label": "Westwood at the Village 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Westwood at the Village 2nd", "label": "Westwood at the Village 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wevers 1st ", "label": "Wevers 1st " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wevers 2nd ", "label": "Wevers 2nd " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Whatleys 1st", "label": "Whatleys 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wherry Addn", "label": "Wherry Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Whispering Pines 1st", "label": "Whispering Pines 1st" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Whitaker Addn", "label": "Whitaker Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "White Oak Place Subd", "label": "White Oak Place Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Whitmarsh Place", "label": "Whitmarsh Place" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Whittaker Subd", "label": "Whittaker Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wilders Subd", "label": "Wilders Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wildwood Subd", "label": "Wildwood Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Will Smith Subd", "label": "Will Smith Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Williams & Courtney Subd", "label": "Williams & Courtney Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Williams Addition", "label": "Williams Addition" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Williamsburg Estates", "label": "Williamsburg Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wilson Subd", "label": "Wilson Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wilsonian Heights", "label": "Wilsonian Heights" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Windmere Addn", "label": "Windmere Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Windsor Park", "label": "Windsor Park" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Windsor Park 2nd", "label": "Windsor Park 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Winfield Estates MP", "label": "Winfield Estates MP" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Winnwood ", "label": "Winnwood " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Winnwood 2nd", "label": "Winnwood 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Winnwood 3rd ", "label": "Winnwood 3rd " }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 128, 177, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Witt Addn", "label": "Witt Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 253, 180, 98, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wood Acres", "label": "Wood Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 222, 105, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wood Acres 2nd", "label": "Wood Acres 2nd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 205, 229, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Woodland Acres", "label": "Woodland Acres" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 217, 217, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Woodridge Estates", "label": "Woodridge Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 188, 128, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Woods Subd", "label": "Woods Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 204, 235, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Woodstock Estates", "label": "Woodstock Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 237, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Woodstock Subd", "label": "Woodstock Subd" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 141, 211, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Works Dogwood Lake Est #2", "label": "Works Dogwood Lake Est #2" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Works Dogwood Lake Estates MP", "label": "Works Dogwood Lake Estates MP" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 186, 218, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wrightridge Addn", "label": "Wrightridge Addn" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 251, 128, 114, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wyrick Commercial", "label": "Wyrick Commercial" } ], "fieldDelimiter": ",", "authoringInfo": { "colorRamp": { "type": "multipart", "colorRamps": [ { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 142, 212, 200, 255 ], "toColor": [ 142, 212, 200, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 255, 255, 179, 255 ], "toColor": [ 255, 255, 179, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 189, 184, 217, 255 ], "toColor": [ 189, 184, 217, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 250, 126, 112, 255 ], "toColor": [ 250, 126, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 129, 177, 212, 255 ], "toColor": [ 129, 177, 212, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 181, 98, 255 ], "toColor": [ 252, 181, 98, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 179, 222, 104, 255 ], "toColor": [ 179, 222, 104, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 204, 229, 255 ], "toColor": [ 252, 204, 229, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 217, 217, 217, 255 ], "toColor": [ 217, 217, 217, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 188, 128, 189, 255 ], "toColor": [ 188, 128, 189, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 204, 235, 197, 255 ], "toColor": [ 204, 235, 197, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 255, 238, 112, 255 ], "toColor": [ 255, 238, 112, 255 ] } ] } } }, "scaleSymbols": true, "transparency": 45, "labelingInfo": [ { "labelExpressionInfo": { "expression": "$feature.SUBNAME", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": true, "deconflictionStrategy": "dynamic", "repeatLabel": false, "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "useCodedValues": true, "maxScale": 0, "minScale": 7000, "name": "Small Subdivision", "priority": 8, "symbol": { "type": "esriTS", "color": [ 0, 0, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "left", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": [ 255, 255, 255, 255 ], "haloSize": 1, "font": { "family": "Segoe UI Semibold", "size": 10, "style": "italic", "weight": "normal", "decoration": "none" } } }, { "labelExpressionInfo": { "expression": "// Minimum area threshold (in map units of your data)\nvar minSize = 20.0; \n\n// If the polygon\u2019s area is large enough, show the label\nif ($feature.ACRES >= minSize) {\n return $feature.SUBNAME; // Replace NAME with your field\n} else {\n return null; // Suppress label\n}", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": true, "deconflictionStrategy": "dynamic", "repeatLabel": false, "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "useCodedValues": true, "maxScale": 7000, "minScale": 50000, "name": "Large Subdivision", "priority": 4, "symbol": { "type": "esriTS", "color": [ 0, 0, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "left", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": [ 255, 255, 255, 255 ], "haloSize": 1, "font": { "family": "Segoe UI Semibold", "size": 10, "style": "italic", "weight": "normal", "decoration": "none" } } } ] }, "defaultVisibility": true, "extent": { "xmin": 3145046.626940131, "ymin": 7188628.958374068, "xmax": 3328209.9007047266, "ymax": 7264719.153962389, "spatialReference": { "wkid": 102738, "latestWkid": 2276, "xyTolerance": 0.003280833333333333, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -123407700, "falseY": -86123500, "xyUnits": 3048.0060960121928, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "hasAttachments": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "displayField": "SUBNAME", "typeIdField": null, "subtypeFieldName": null, "subtypeField": null, "defaultSubtypeCode": null, "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null }, { "name": "GlobalID", "type": "esriFieldTypeGlobalID", "alias": "GlobalID", "length": 38, "domain": null }, { "name": "SUBNAME", "type": "esriFieldTypeString", "alias": "Subdivision Name", "length": 255, "domain": null }, { "name": "ACRES", "type": "esriFieldTypeDouble", "alias": "ACRES", "domain": null }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "Created By", "length": 255, "domain": null }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "Created Date", "length": 8, "domain": null }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "Modified By", "length": 255, "domain": null }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "Modified Date", "length": 8, "domain": null }, { "name": "VALIDATIONSTATUS", "type": "esriFieldTypeSmallInteger", "alias": "Validation status", "domain": { "type": "codedValue", "name": "Validation Status", "description": "The current record's validation status.", "codedValues": [ { "name": "No calculation required, no validation required, no error", "code": 0 }, { "name": "No calculation required, no validation required, has error(s)", "code": 1 }, { "name": "No calculation required, validation required, no error", "code": 2 }, { "name": "No calculation required, validation required, has error(s)", "code": 3 }, { "name": "Calculation required, no validation required, no error", "code": 4 }, { "name": "Calculation required, no validation required, has error(s)", "code": 5 }, { "name": "Calculation required, validation required, no error", "code": 6 }, { "name": "Calculation required, validation required, has error(s)", "code": 7 } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } }, { "name": "HDRGHT", "type": "esriFieldTypeString", "alias": "Headright", "length": 100, "domain": null }, { "name": "NEIGHBORHOOD", "type": "esriFieldTypeString", "alias": "Neighborhood Number", "length": 50, "domain": null }, { "name": "SCHLDIST", "type": "esriFieldTypeString", "alias": "School District", "length": 100, "domain": null }, { "name": "YearBuilt", "type": "esriFieldTypeString", "alias": "YearBuilt", "length": 25, "domain": null }, { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "SHAPE", "domain": null }, { "name": "Shape.STArea()", "type": "esriFieldTypeDouble", "alias": "Shape.STArea()", "domain": null }, { "name": "Shape.STLength()", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "SHAPE" }, "indexes": [ { "name": "R40_pk", "fields": "OBJECTID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "UUID_40", "fields": "GlobalID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "S26_idx", "fields": "Shape", "isAscending": true, "isUnique": true, "description": "" } ], "subtypes": [], "relationships": [], "canModifyLayer": true, "canScaleSymbols": false, "hasLabels": true, "capabilities": "Map,Query,Data", "maxRecordCount": 2000, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "hasZ": true, "supportedQueryFormats": "JSON, geoJSON, PBF", "isDataVersioned": false, "ownershipBasedAccessControlForFeatures": {"allowOthersToQuery": true}, "useStandardizedQueries": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "advancedQueryCapabilities": { "useStandardizedQueries": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsPagination": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsTrueCurve": true, "supportsQueryWithDatumTransformation": true, "supportsReturningQueryExtent": true, "supportsQueryWithDistance": true, "supportsSqlExpression": true, "supportsTimeRelation": true, "supportsSqlFormat": false, "supportsQueryAnalytic": true }, "supportsDatumTransformation": true, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": false, "supportsPercentileAnalytic": true }, "dateFieldsTimeReference": null, "preferredTimeReference": null, "datesInUnknownTimezone": false, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape.STArea()", "shapeLengthFieldName": "Shape.STLength()", "units": "esriFeet", "mapUnits": {"uwkid": 9003} }, "hasMetadata": true, "isDataArchived": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsCoordinatesQuantization": true, "supportsDynamicLegends": true, "serviceItemId": "ba33a8a54ace4ddd8ebbabfa39d6f1f0" } ], "tables": [] }