WME Validator Localization for Kentucky

This script localizes WME Validator for Kentucky, USA. You also need main package (WME Validator) installed.

当前为 2016-01-01 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name WME Validator Localization for Kentucky
  3. // @namespace https://greasyfork.org/en/users/9555
  4. // @version 1.2.9486
  5. // @author xanderb
  6. // @description This script localizes WME Validator for Kentucky, USA. You also need main package (WME Validator) installed.
  7. // @match https://editor-beta.waze.com/*editor/*
  8. // @match https://www.waze.com/*editor/*
  9. // @grant none
  10. // @run-at document-start
  11. // @icon data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAALiMAAC4jAXilP3YAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAABK1JREFUWEftln1M1HUcx08xEVQej4fu4XfH8QMMtAtLLcJRyd1BwD1wPJ4EaYioJZh4xx0HeIRNmLL1j6atAZZzy9VfbuiWrtncLP9prVW60dMyjnBLXdqqrfX6Xd/YmLoVc6s/7rO993n8fj7v7/f3/R6oohKVqPxvZdpZuWDKarGCPtAPnhCpOZLrCS0TpmpN63BsZnWgJMXRPZBs9w1p3D31aqffJtL/XGZa6heGny0rCtusbgZbwmW21djFxHJEyaxkuAKrUh3dwRSHr47BuxnoRXsh8F1ilfc3cp/g+0X5nTJtr0gMl9skxZ5paVjAIPNUaemBqdIN19BfgYvgCzANBiARp9RCbDn+IHjreFntKwZ71xjDTqqd3UcZ+Ha6y2/D70lz+QchMwzBd/Dr010BWVk/R5Td0XBgylJ6gobj6FZIZYp0RMJWi0RuDGKXpyyW58mvhczj+L/gH2fNOfTZq2Xl/b3j56t2nbrSu3tichiMgGapMaSBwBiE1oiW8xOIVkLkEno7A1+44q7rPNvZ2+47dbmYQfauicmtoATEZ1QHEtJcgeY9pydjZU8oDgKjSVXeW8SNot38hDuhZscj4PAPVuuWqzabg1N0hCvKzTMe92JRpuI+lHP8x4QbEU5gJfEuLmisCM1fpqvtiyAjMzyHV7NEhGdFVxOM5dtf5E50POjuMUh1fZmrWvbFy42hGIi8xD3RidL7L7yOFIa/ywmMQmBTit3XxM79fIb9utpes762N+PRtuGjovz+ysrmfQt5DQFIZIjQrPD99byEpqyGfjM1eSI8V2BcCHOLcP+1GOr6sv/+xpqaYBw/Tnd8njnCsTzMwHHwpsI+ye4LghGRvqtwvOshmi/cewp9PqLvZuHeXTiSBH61btO0lOJGMMQlUeNvwt7GIBtaQSXooKmV+uvYu6hpQBdlVvc8gA4qO0bXKDYbK+TZ/Zzq7C5mzQA9ZbQvzelPZF0uNTsjBDCaKLxJ8piykMuyHP9zBruInQEniX8Ahol/SsPNxD4s2npwEf6XxJ2RHnbvJfQIuUEGuLH3YH8LkQD6AvoZiN/gHiyh9gSxoQgBjPdodIHgeexRFu5Ef0aTJlhryf1E7EliE+hO9Bm0cjLF5H7kOalp/A2xIfTv7FDzV1/v+8SOUBPmwqlZdxAcIvYUdX+wkXwV7zMO5xZBB2ij+BpFryuFvNsYYv3AybNZrDSHvYaa2zTMpuY1hpzjifkVkhDegf5VWxNMgJzyIxTi0yxl3XX8teS+J7YfnGbdx5Hd49RTcIPCeJgnYd+kUZD4q+gXOTZDpBAh1kHzpegd1GaQX4/dCqlYtPLOTehtEOtj4GNimbKOP9G+WvQWYIOIcjE3RpLKRQGzv0gklFP4mli+QZIekvT6OuAGbTqddrtep3sOuEBTbk5OnCRJG7GfJl9oNBi0rPFoNZp2fKtOq32Z/Ab8ivQSjx5SqyF3BLyxrv3Avf8ecBox/KMRQ7MVpqwsicY6WZbXYeuyTSY5y2gswC7Iy8srMBqNZvAIsWXUZxLPoz4BcmnEjDmynCxnZyfz0uL55iu4LynKDFPD3tTIsKhEJSr/rahUfwKIveLz8v1S/QAAAABJRU5ErkJggg==
  12. // ==/UserScript==
  13. //
  14. /*
  15. var KYVLVersion = "1.2.9481";
  16. var KYVLUpdateMessage = "yes";
  17. var KYVLVersionUpdateNotes = "KY Validator Localization has been updated to " + KYVLVersion;
  18. KYVLVersionUpdateNotes = KYVLVersionUpdateNotes + "\n" + "Please let me know if there are any issues or if you have any suggestions for new checks - xanderb";
  19. if (KYVLUpdateMessage === "yes") {
  20. //alert the user for version updates
  21. if (localStorage.getItem('URCommentVersion') === KYVLVersion) {
  22. urcToConsole("Version - " + KYVLVersion);
  23. } else {
  24. alert(KYVLVersionUpdateNotes);
  25. localStorage.setItem('KYVLVersion', KYVLVersion);
  26. }
  27. }
  28. */
  29. /*
  30. See Settings->About->Available checks for complete list of checks and their params.
  31. Examples:
  32. Enable #170 "Lowercase street name" but allow lowercase "exit" and "to":
  33. "170.enabled": true,
  34. "170.params": {
  35. "regexp": "/^((exit|to) )?[a-z]/",
  36. "},
  37. Enable #130 "Custom check" to find a dot in street names, but allow dots at Ramps:
  38. "130.enabled": true,
  39. "130.params": {
  40. "titleEN": "Street name with a dot",
  41. "problemEN": "There is a dot in the street name (excluding Ramps)",
  42. "solutionEN": "Expand the abbreviation or remove the dot",
  43. "template": "${type}:${street}",
  44. "regexp": "D/^[^4][0-9]?:.*\\./",
  45. },
  46. *Note: use D at the beginning of RegExp to enable debugging on JS console.
  47. *Note: do not forget to escape backslashes in strings, i.e. use "\\" instead of "\".
  48. */
  49.  
  50. window.WME_Validator_United_States = {
  51. ".country": "United States",
  52. ".codeISO": "US",
  53. ".author": "xanderb",
  54. ".updated": "2015-12-31",
  55. ".link": "TODO: ",
  56. "128.enabled": true,
  57. "128.params": {
  58. "titleEN": "Testing Name Suffixes",
  59. "problemEN": "Street suffix does not follow abbreviation rules",
  60. "solutionEN": "Rename the suffix Such as Road to Rd Please let me know about false positives",
  61. "template": "${street}",
  62. "regexp": "!/(Unknown Name| A(cres?|ly|nx|ve|r(c|tery))| B(ch|end|l?vd|lf|ridge|roadway|nd|yp(ass)?|r(a(e|nch|ook))?|ks?|tm|(ike|us)way|yu)| C(t|lb?|hase|mns?|o(rs|rner)|ONN|p|r(es|se|st|eek)?|ir|swy|tr|u(rv|toff)|v|yn)| D(am|l|ell|r)| E(ast|dgeway|n(d|t)|xit|sts?|splanade|x(t|py))| F(or(d|ks?)|wy|all|l[st]|t)| G(r|ln|rv|r(ee)?n|dns?|ate|twy)| H(br|ills?|ollows?|ts|wy|ospital)| I(l|nlt)| Jcts?| K(eys?|nls?)| L(ocks?|dg|in[ke]|f|gts?|ndg|[np])|oop| M(all|dw|eadows|nr|anors|t(wy|ns?)?|w|ile|ohr|ews|sn)| N(eck|orth)| O(aks|ne|rch|val|pas)| P(a(rk|ss|th)|ike|r(om|ts?)|de|l(ns|z)?|k(e|s)?|kwys?|ointe?)| R([id]|each|ow|i(se|v)|amp|ailroad|nch|R|ailway|pds|idge|u(n(way)?|e)|te)| S(h(ls?|rs?)|kwy|mt|outh|p(ur|ngs|ring)|u(permarket|bdivision)|t(a|n|rut)|[qt]s?)| T(er|hwy|rce|pk|unnel|urn|r(l|fy)|ra(k|il|in))| U(pas|ns|ppr)| V((ie)?ws?|ista|l(ys?|gs?)|dct|st)| W(alk|ays?|ls?|est|oods|ynde?)| X(ing|rd)|^$)( [SNEW]{1,2})?$|^([SNEW]{1,2} )?(Old )?(Broadway|MBTA|Railroad|Amtrak|I-|IN-|IA-|KY?-|US-|LA?-|M[DNSO]?-|N[VJYCD]?-|S[CDRH]?-|RI?-|TN-|V[AT]-|W(V|IS)-|C[RH]-|Runway|Place |Access |Avenue of |Circle of |State |County |The |to |(Left )?E(xit( to:)?|ntry) )/",
  63. },
  64. "128.solutionLink": "W:Abbreviations_and_acronyms/USA",
  65. "129.enabled": true,
  66. "129.params": {
  67. "titleEN": "Incorrect Highway Name",
  68. "problemEN": "Highway names is invalid",
  69. "solutionEN": "Rename the Street or Alt Street to the current standard",
  70. "template": "${state}:${street}#${altStreet[#]}",
  71. "regexp": "/Kentucky:.*(Ky Hwy |State Hwy |I- |Ky-|SR-|SH-|State Rd |KY=|State Rte |^Rte |KY-0|U\.?[Ss]\.? [Hh](WY|wy|ighway))/"
  72. },
  73. "129.solutionLink": "W:Kentucky",
  74. "130.enabled": true,
  75. "130.params": {
  76. "titleEN": "Wrong Pkwy Name",
  77. "problemEN": "Bluegrass, Western KY, and Cumberland Pkwy need to be written correctly for shields",
  78. "solutionEN": "Change them to Bluegrass Pkwy, Western KY Pkwy, and Cumberland Pkwy",
  79. "template": "${street}#${altStreet[#]}",
  80. "regexp": "/(Blue Grass|Western Kentucky|Louie B Nunn-Cumberland) Pkwy+( [SNEW])?/"
  81. },
  82. "130.solutionLink": "W:Best_map_editing_practice#Parking_Lots",
  83. "131.enabled": true,
  84. "131.params": {
  85. "titleEN": "Not Kentucky",
  86. "problem": "The segment is assigned to another state",
  87. "solutionEN": "Make sure you are editing in KY and change it",
  88. "template": "${state}",
  89. "regexp": "!/Kentucky/"
  90. },
  91. "131.solutionLink": "W:Creating_and_editing_road_segments#Address_Properties",
  92. "132.enabled": true,
  93. "132.params": {
  94. "titleEN": "Wrong name for City or County street",
  95. "problemEN": "CS and Cs are not read correctly by TTS or County Hwy Name is wrong",
  96. "solutionEN": "Check sources and change the street's name",
  97. "template": "${state}:${street}#${altStreet[#]}",
  98. "regexp": "/Kentucky:.*(Cs-|CS-|County Hwy |County Rd |Cr-|Co Rd |CH-|Ch-|Co Rte )/"
  99. },
  100. "132.solutionLink": "W:Kentucky#State_Highway_Renaming",
  101. "133.enabled": true,
  102. "133.params": {
  103. "titleEN": "Invalid city name",
  104. "problemEN": "The city name is not an incorporated city in Kentucky",
  105. "solutionEN": "Correct the city name or remove it",
  106. "template": "${city}",
  107. "regexp": "!/.*(^$|Adairville|^Albany$|Alexandria|Allen|Allensville|Anchorage|Arlington|Ashland|Auburn|Audubon Park|Augusta|Bancroft|Barbourmeade|Barbourville|Bardstown|Bardwell|Barlow|Beattyville|Beaver Dam|Bedford|Beechwood Village|Bellefonte|Bellemeade|Bellevue|Bellewood|Benham|Benton|Berea|Berry|Blackey|Blaine|Blandville|Bloomfield|Blue Ridge Manor|Bonnieville|Booneville|Bowling Green|Bradfordsville|Brandenburg|Bremen|Briarwood|Brodhead|Broeck Pointe|Bromley|Brooksville|Brownsboro Farm|Brownsboro Village|Brownsville|Buckhorn|Buckner|Burgin|Burkesville|Burlington|Burnside|Butler|Cadiz|Calhoun|California|Calvert City|Camargo|Cambridge|Campbellsburg|Campbellsville|Campton|Caneyville|Carlisle|Carrollton|Carrsville|Catlettsburg|Cave City|Centertown|Central City|Clarkson|^Clay$|Clay City|Clinton|Cloverport|Coal Run Village|Cold Spring|Coldstream|Columbia|Columbus|Concord|Corbin|Corinth|Corydon|Covington|Crab Orchard|Creekside|Crescent Springs|Crestview|Crestview Hills|Crestwood|Crittenden|Crofton|Crossgate|Cumberland|Cynthiana|Danville|Dawson Springs|Dayton|Dixon|Douglass Hills|Dover|Drakesboro|Druid Hills|Dry Ridge|Earlington|Eddyville|Edgewood|Edmonton|Ekron|Elizabethtown|Elkhorn City|Elkton|Elsmere|Eminence|Erlanger|Eubank|Evarts|Ewing|Fairfield|Fairview|Falmouth|Ferguson|Fincastle|Flatwoods|Fleming-Neon|Flemingsburg|Florence|Fordsville|Forest Hills|Fort Campbell|Fort Knox|Fort Mitchell|Fort Thomas|Fort Wright|Fountain Run|Fox Chase|Frankfort|Franklin|Fredonia|Frenchburg|Frost|Fulton|Gamaliel|Garrison|Georgetown|Germantown|Ghent|Glasgow|Glencoe|Glenview|Glenview Hills|Glenview Manor|Goose Creek|Goshen|Grand Rivers|Gratz|Graymoor-Devondale|Grayson|Green Spring|Greensburg|Greenup|Greenville|Guthrie|Hanson|Hardin|Hardinsburg|Harlan|Harrodsburg|Hartford|Hawesville|Hazard|Hazel|Hebron( Estates)?|Henderson|Hendron|Heritage Creek|Hickman|Hickory Hill|Highland Heights|Hills and Dales|Hillview|Hindman|Hodgenville|Hollow Creek|Hollyvilla|Hopkinsville|Horse Cave|Houston Acres|Hunters Hollow|Hurstbourne|Hurstbourne Acres|Hustonville|Hyden|Independence|Indian Hills|Inez|Irvine|Irvington|Island|Jackson|Jamestown|Jeffersontown|Jeffersonville|Jenkins|Junction City|Keene|Kenton Vale|Kevil|Kingsley|Kuttawa|La Center|LaFayette|La Grange|Lakeside Park|Lakeview Heights|Lancaster|Langdon Place|Lawrenceburg|Lebanon|Lebanon Junction|Leitchfield|Lewisburg|Lewisport|Lexington|Liberty|Lincolnshire|Livermore|Livingston|London|Loretto|Louisa|Louisville|Loyall|Ludlow|Lynch|Lyndon|Lynnview|Mackville|Madisonville|Manchester|Manor Creek|Marion|Martin|Maryhill Estates|Mayfield|Maysville|McHenry|McKee|Meadow Vale|Meadowbrook Farm|Meadowview Estates|Melbourne|Mentor|Middlesboro|Middletown|Midway|Millersburg|Milton|Mockingbird Valley|Monterey|Monticello|Moorland|Morehead|Morganfield|Morgantown|Mortons Gap|Mount Olivet|Mount Sterling|Mount Vernon|Mount Washington|Muldraugh|Munfordville|Murray|Murray Hill|Nebo|New Castle|New Haven|New Hope|Newport|Nicholasville|Norbourne Estates|North Middletown|Northfield|Nortonville|Norwood|Oak Grove|Oakland|Old Brownsboro Place|Olive Hill|Orchard Grass Hills|Owensboro|Owenton|Owingsville|Paducah|Paintsville|Paris|Park City|Park Hills|Parkway Village|Pembroke|Perryville|Pewee Valley|Pikeville|Pineville|Pioneer Village|Pippa Passes|Plantation|Pleasureville|Plum Springs|Poplar Hills|Powderly|Prestonsburg|Prestonville|Princeton|Prospect|Providence|Raceland|Radcliff|Ravenna|Raywick|Richlawn|Richmond|River Bluff|Riverwood|Robards|Rochester|Rockport|Rolling Fields|Rolling Hills|Russell|Russell Springs|Russellville|Ryland Heights|Sacramento|Sadieville|St. Charles|St. Mary|St. Matthews|St. Regis Park|Salem|Salt Lick|Salyersville|Sanders|Sandy Hook|Sardis|Science Hill|Scottsville|Sebree|Seneca Gardens|Sharpsburg|Shawnee|Shelbyville|Shepherdsville|Shively|Silver Grove|Simpsonville|Slaughters|Smithfield|Smithland|Smiths Grove|Somerset|Sonora|South Carrollton|South Park View|South Shore|Southgate|Sparta|Spring Mill|Spring Valley|Springfield|Stamping Ground|Stanford|Stanton|Strathmoor Manor|Strathmoor Village|Sturgis|Sycamore|Taylor Mill|Taylorsville|Ten Broeck|Thornhill|Tompkinsville|Trenton|Union|Uniontown|Upton|Vanceburg|Versailles|Vicco|Villa Hills|Vine Grove|Wallins Creek|Walton|Warfield|Warsaw|Water Valley|Watterson Park|Waverly|Wayland|Wellington|West Buechel|West Liberty|West Point|Westwood|Wheatcroft|Wheelwright|White Plains|Whitesburg|Whitesville|Wickliffe|Wilder|Wildwood|Williamsburg|Williamstown|Willisburg|Wilmore|Winchester|Windy Hills|Wingo|Woodburn|Woodbury|Woodland Hills|Woodlawn|Woodlawn Park|Worthington|Worthington Hills|Worthville|Wurtland)/"
  108. },
  109. "133.solutionLink": "http://www.sos.ky.gov/admin/land/cities/Pages/default.aspx",
  110. "134.enabled": true,
  111. "134.severity": "warning",
  112. "134.params": {
  113. "titleEN": "Alley not PLR",
  114. "problemEN": "Alleys should be set to the PLR Road Type",
  115. "solutionEN": "Change Road Type",
  116. "template": "${street}:${typeRank}",
  117. "regexp": "/.*(Alley| Aly):[^7]/"
  118. },
  119. "134.solutionLink": "W:Road_types/USA#Parking_Lot_Road",
  120. "135.enabled": false,
  121. "135.params": {
  122. "titleEN": "Check Lock Level",
  123. "problemEN": "Minimum Lock Level in Kentucky follows 54321 standard",
  124. "solutionEN": "Make sure it isn't unlocked for someone at a lower rank to work on and lock it",
  125. "template": "${typeRank}:${lock}",
  126. "regexp": "!/^(15:[4-6]|14:[4-6]|13:[3-6]|12:[2-6]|11:[2-6]|10:[1-6]|2:[2-6]|[1,3-9]:[1-6])$/"
  127. },
  128. "135.solutionLink": "W:Kentucky",
  129. "136.enabled": true,
  130. "136.params": {
  131. "titleEN": "Wrong road type",
  132. "problemEN": "All US Highways should be at least Major Highway (except BUS, SPUR, LOOP)",
  133. "solutionEN": "Change the road type to Major Highway",
  134. "template": "${typeRank}:#${street}@#${altStreet[@#]}@",
  135. "regexp": "/^[1-9][^245]?:.*#(US Hwy |US-)[0-9]+( ALT| BYP| CONN| TRUCK| Scenic| [NSWE])*@/i"
  136. },
  137. "136.solutionLink": "W:Road_types/USA#Major_Highway",
  138. "138.enabled": true,
  139. "138.params": {
  140. "titleEN": "Bad TTS Street name",
  141. "problemEN": "Streets that start with St and Dr result in TTS reading Street or Drive",
  142. "solutionEN": "Add a period after Jr, St, Dr, or Rev where required",
  143. "template": "${street}#${altStreet[#]}",
  144. "regexp": "/((^| )(St|Dr)(\.$)?(?! ((CONN|Ext|Spur|[NEWS][EW]?)\\b|\/|\\())|(Jr|Rev)) /"
  145. },
  146. "138.solutionLink": "W:Abbreviations_and_acronyms/USA#Standard_suffix_abbreviations",
  147. "139.enabled": true,
  148. "139.params": {
  149. "titleEN": "Improper Cardinal Usage",
  150. "problemEN": "This name contains a cardinal direction (NEWS) which does not match wiki guidelines.",
  151. "solutionEN": "If this cardinal should be spoken as a direction by TTS, make sure it has space on either side of it. \n\ If this cardinal should be spoken by TTS as a letter, follow it with a period. \n\ All cardinals should be capitalized.",
  152. "template": "${street} ${altStreet[#]}",
  153. "regexp": "/(^| )([NEWS]?[news][NEWS]?|[\"']?([NnSs][EeWw]?|[EeWw])['\":-]|[\"']([NnSs][EeWw]?|[EeWw])['\":-]?)(\\b|\\d| |$)/"
  154. },
  155. "139.solutionLink": "W:Abbreviations_and_acronyms/USA#Standard_suffix_abbreviations",
  156. //Freeway lock
  157. "150.enabled": true,
  158. "150.params": {
  159. // {number} minimum lock level
  160. "n": 5,
  161. },
  162. //Major Highway lock
  163. "151.enabled": true,
  164. "151.params": {
  165. // {number} minimum lock level
  166. "n": 4,
  167. },
  168. //Minor Highway lock
  169. "152.enabled": true,
  170. "152.params": {
  171. // {number} minimum lock level
  172. "n": 3,
  173. },
  174. //Ramp lock
  175. "153.enabled": true,
  176. "153.params": {
  177. // {number} minimum lock level
  178. "n": 2,
  179. },
  180. //Primary Street lock
  181. "154.enabled": true,
  182. "154.params": {
  183. // {number} minimum lock level
  184. "n": 2,
  185. },
  186. //Default US checks
  187. "24.enabled": !0,
  188. "25.enabled": !0,
  189. "27.enabled": !0,
  190. "34.enabled": !0,
  191. "35.enabled": !0,
  192. "38.enabled": !0,
  193. "39.enabled": !0,
  194. "43.enabled": !0,
  195. "48.enabled": !0,
  196. "78.enabled": !0,
  197. "87.enabled": !0,
  198. "90.enabled": !0,
  199. "106.enabled": !0,
  200. "107.enabled": !0,
  201. "108.enabled": !0,
  202. "109.enabled": !0,
  203. "112.enabled": !1,
  204. "118.enabled": !0,
  205. "116.enabled": !0,
  206. "119.enabled": !0,
  207. "120.enabled": !0,
  208. "121.enabled": !0,
  209. "172.enabled": !0,
  210. "173.enabled": !0,
  211. "190.enabled": !0,
  212. "192.enabled": !0,
  213. "170.enabled": !0,
  214. "170.params": {
  215. "regexp": "/^(?!(to) [^a-z])((S|N|W|E) )?[a-z]/"
  216. },
  217. "171.enabled": true,
  218. "171.solutionLink": "W:Abbreviations_and_acronyms/USA#Standard_suffix_abbreviations",
  219. "171.params": {
  220. "regexp": "/((?!(\\bPhila|\\bPenna|.(\\bWash|\\bCmdr|\\bProf|\\bPres)|..(\\bAdm|\\bSte|\\bCpl|\\bMaj|\\bSgt|\\bRe[vc]|\\bR\\.R|\\bGov|\\bGen|\\bHon|\\bCpl)|...(\\bSt|\\b[JSD]r|\\bLt|\\bFt)|...(#| )[NEWSR])).{5}\\.|((?!(hila|enna|(\\bWash|\\bCmdr|\\bProf|\\bPres)|.(\\bAdm|\\bSte|\\bCpl|\\bMaj|\\bSgt|\\bRe[vc]|\\bR\\.R|\\bGov|\\bGen|\\bHon|\\bCpl)|..(\\bSt|\\b[JSD]r|\\bLt|\\bFt)|..(#| )[NEWSR])).{4}|(\\bhila|\\benna))\\.|((?!(ila|nna|(ash|mdr|rof|res)|(\\bAdm|\\bSte|\\bCpl|\\bMaj|\\bSgt|\\bRe[vc]|\\bR\\.R|\\bGov|\\bGen|\\bHon|\\bCpl)|.(\\bSt|\\b[JSD]r|\\bLt|\\bFt)|.(#| )[NEWSR])).{3}|\\b(ila|nna|ash|mdr|rof|res))\\.|((?!(la|na|(sh|dr|of|es)|(dm|te|pl|aj|gt|e[vc]|\\.R|ov|en|on|pl)|(\\bSt|\\b[JSD]r|\\bLt|\\bFt)|(#| )[NEWSR])).{2}|\\b(la|na|sh|dr|of|es|dm|te|pl|aj|gt|e[vc]|\\.R|ov|en|on|pl))\\.|(#|^)[^NEWSR]?\\.)|(((?!\\b(D|O|L)).|#|^)\'(?![sl]\\b)|(#|^)\'s|(?!\\b(In|Na)t).{3}\'l|(#|^).{0,2}\'l)|(Dr|St)\\.(#|$)|,|;|\\\\|((?!\\.( |#|$|R))\\..|(?!\\.( .|#.|$|R\\.))\\..{2}|\\.R(#|$|\\.R))|[Ee]x(p|w)y\\b|\\b[Ee]x[dn]\\b|Tunl\\b|Long Is\\b|Brg\\b/",
  221. "problemEN": "The street name has incorrect abbreviation, or character",
  222. "solutionEN": "Check upper/lower case, a space before/after the abbreviation and the accordance with the abbreviation table. Remove any comma (,), backslash (\\), or semicolon (;)"
  223. },
  224. };