mailwoman 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dockerignore +19 -0
- package/.editorconfig +19 -0
- package/.husky/pre-commit +2 -0
- package/.prettierignore +29 -0
- package/.vscode/extensions.json +18 -0
- package/.vscode/settings.json +132 -0
- package/Dockerfile +17 -0
- package/LICENSE.md +675 -0
- package/README.md +208 -0
- package/bin/cli.ts +54 -0
- package/classification/AdjacentClassification.test.ts +17 -0
- package/classification/AdjacentClassification.ts +13 -0
- package/classification/AlphaClassification.test.ts +17 -0
- package/classification/AlphaClassification.ts +13 -0
- package/classification/AlphaNumericClassification.test.ts +17 -0
- package/classification/AlphaNumericClassification.ts +13 -0
- package/classification/AreaClassification.test.ts +17 -0
- package/classification/AreaClassification.ts +13 -0
- package/classification/ChainClassification.test.ts +17 -0
- package/classification/ChainClassification.ts +13 -0
- package/classification/Classification.test.ts +17 -0
- package/classification/Classification.ts +107 -0
- package/classification/CountryClassification.test.ts +17 -0
- package/classification/CountryClassification.ts +18 -0
- package/classification/DependencyClassification.test.ts +17 -0
- package/classification/DependencyClassification.ts +14 -0
- package/classification/DirectionalClassification.test.ts +17 -0
- package/classification/DirectionalClassification.ts +13 -0
- package/classification/EndTokenClassification.test.ts +17 -0
- package/classification/EndTokenClassification.ts +13 -0
- package/classification/EndTokenSingleCharacterClassification.test.ts +17 -0
- package/classification/EndTokenSingleCharacterClassification.ts +13 -0
- package/classification/GivenNameClassification.test.ts +17 -0
- package/classification/GivenNameClassification.ts +13 -0
- package/classification/HouseNumberClassification.test.ts +17 -0
- package/classification/HouseNumberClassification.ts +14 -0
- package/classification/IntersectionClassification.test.ts +17 -0
- package/classification/IntersectionClassification.ts +13 -0
- package/classification/LevelClassification.ts +14 -0
- package/classification/LevelTypeClassification.ts +12 -0
- package/classification/LocalityClassification.test.ts +17 -0
- package/classification/LocalityClassification.ts +14 -0
- package/classification/MiddleInitialClassification.test.ts +17 -0
- package/classification/MiddleInitialClassification.ts +13 -0
- package/classification/MultiStreetClassification.test.ts +17 -0
- package/classification/MultiStreetClassification.ts +14 -0
- package/classification/NumericClassification.test.ts +17 -0
- package/classification/NumericClassification.ts +13 -0
- package/classification/OrdinalClassification.test.ts +17 -0
- package/classification/OrdinalClassification.ts +13 -0
- package/classification/PersonClassification.test.ts +17 -0
- package/classification/PersonClassification.ts +13 -0
- package/classification/PersonalSuffixClassification.test.ts +17 -0
- package/classification/PersonalSuffixClassification.ts +13 -0
- package/classification/PersonalTitleClassification.test.ts +17 -0
- package/classification/PersonalTitleClassification.ts +13 -0
- package/classification/PlaceClassification.test.ts +17 -0
- package/classification/PlaceClassification.ts +13 -0
- package/classification/PostcodeClassification.test.ts +17 -0
- package/classification/PostcodeClassification.ts +14 -0
- package/classification/PunctuationClassification.test.ts +17 -0
- package/classification/PunctuationClassification.ts +13 -0
- package/classification/RegionClassification.test.ts +17 -0
- package/classification/RegionClassification.ts +14 -0
- package/classification/RoadTypeClassification.test.ts +16 -0
- package/classification/RoadTypeClassification.ts +13 -0
- package/classification/StartTokenClassification.test.ts +17 -0
- package/classification/StartTokenClassification.ts +13 -0
- package/classification/StopWordClassification.test.ts +17 -0
- package/classification/StopWordClassification.ts +13 -0
- package/classification/StreetClassification.test.ts +17 -0
- package/classification/StreetClassification.ts +14 -0
- package/classification/StreetNameClassification.test.ts +16 -0
- package/classification/StreetNameClassification.ts +13 -0
- package/classification/StreetPrefixClassification.test.ts +17 -0
- package/classification/StreetPrefixClassification.ts +13 -0
- package/classification/StreetProperNameClassification.test.ts +17 -0
- package/classification/StreetProperNameClassification.ts +13 -0
- package/classification/StreetSuffixClassification.test.ts +17 -0
- package/classification/StreetSuffixClassification.ts +13 -0
- package/classification/SurnameClassification.test.ts +17 -0
- package/classification/SurnameClassification.ts +13 -0
- package/classification/ToponymClassification.test.ts +17 -0
- package/classification/ToponymClassification.ts +13 -0
- package/classification/UnitClassification.test.ts +17 -0
- package/classification/UnitClassification.ts +12 -0
- package/classification/UnitTypeClassification.test.ts +17 -0
- package/classification/UnitTypeClassification.ts +12 -0
- package/classification/VenueClassification.test.ts +17 -0
- package/classification/VenueClassification.ts +14 -0
- package/classification/index.ts +47 -0
- package/classification/types.ts +100 -0
- package/classifier/AdjacencyClassifier.ts +54 -0
- package/classifier/AlphaNumericClassifier.test.ts +100 -0
- package/classifier/AlphaNumericClassifier.ts +28 -0
- package/classifier/CentralEuropeanStreetNameClassifier.test.ts +68 -0
- package/classifier/CentralEuropeanStreetNameClassifier.ts +60 -0
- package/classifier/ChainClassifier.test.ts +23 -0
- package/classifier/ChainClassifier.ts +32 -0
- package/classifier/CompositeClassifier.test.ts +79 -0
- package/classifier/CompositeClassifier.ts +192 -0
- package/classifier/CompoundStreetClassifier.test.ts +57 -0
- package/classifier/CompoundStreetClassifier.ts +59 -0
- package/classifier/DirectionalClassifier.test.ts +190 -0
- package/classifier/DirectionalClassifier.ts +47 -0
- package/classifier/GivenNameClassifier.test.ts +32 -0
- package/classifier/GivenNameClassifier.ts +40 -0
- package/classifier/HouseNumberClassifier.test.ts +164 -0
- package/classifier/HouseNumberClassifier.ts +56 -0
- package/classifier/IntersectionClassifier.ts +47 -0
- package/classifier/LevelClassifier.ts +48 -0
- package/classifier/LevelTypeClassifier.test.ts +22 -0
- package/classifier/LevelTypeClassifier.ts +32 -0
- package/classifier/LevelTypeLevelClassifier.ts +71 -0
- package/classifier/MiddleInitialClassifier.test.ts +29 -0
- package/classifier/MiddleInitialClassifier.ts +25 -0
- package/classifier/OrdinalClassifier.test.ts +44 -0
- package/classifier/OrdinalClassifier.ts +34 -0
- package/classifier/PersonClassifier.test.ts +40 -0
- package/classifier/PersonClassifier.ts +38 -0
- package/classifier/PersonalSuffixClassifier.test.ts +32 -0
- package/classifier/PersonalSuffixClassifier.ts +36 -0
- package/classifier/PersonalTitleClassifier.test.ts +32 -0
- package/classifier/PersonalTitleClassifier.ts +44 -0
- package/classifier/PlaceClassifier.test.ts +32 -0
- package/classifier/PlaceClassifier.ts +46 -0
- package/classifier/PostcodeClassifier.test.ts +86 -0
- package/classifier/PostcodeClassifier.ts +86 -0
- package/classifier/RoadTypeClassifier.test.ts +37 -0
- package/classifier/RoadTypeClassifier.ts +43 -0
- package/classifier/StopWordClassifier.test.ts +32 -0
- package/classifier/StopWordClassifier.ts +44 -0
- package/classifier/StreetPrefixClassifier.test.ts +37 -0
- package/classifier/StreetPrefixClassifier.ts +58 -0
- package/classifier/StreetProperNameClassifier.test.ts +30 -0
- package/classifier/StreetProperNameClassifier.ts +38 -0
- package/classifier/StreetSuffixClassifier.test.ts +63 -0
- package/classifier/StreetSuffixClassifier.ts +77 -0
- package/classifier/SurnameClassifier.test.ts +30 -0
- package/classifier/SurnameClassifier.ts +41 -0
- package/classifier/TokenPositionClassifier.test.ts +95 -0
- package/classifier/TokenPositionClassifier.ts +57 -0
- package/classifier/ToponymClassifier.test.ts +36 -0
- package/classifier/ToponymClassifier.ts +39 -0
- package/classifier/UnitClassifier.test.ts +93 -0
- package/classifier/UnitClassifier.ts +67 -0
- package/classifier/UnitTypeClassifier.test.ts +22 -0
- package/classifier/UnitTypeClassifier.ts +32 -0
- package/classifier/UnitTypeUnitClassifier.test.ts +49 -0
- package/classifier/UnitTypeUnitClassifier.ts +71 -0
- package/classifier/WhosOnFirstClassifier.test.ts +38 -0
- package/classifier/WhosOnFirstClassifier.ts +190 -0
- package/classifier/index.ts +38 -0
- package/classifier/scheme/intersection.ts +125 -0
- package/classifier/scheme/person.ts +117 -0
- package/classifier/scheme/street.ts +409 -0
- package/classifier/scheme/street_name.ts +86 -0
- package/classifier/scheme/venue.ts +206 -0
- package/classifier/super/BaseClassifier.ts +39 -0
- package/classifier/super/PhraseClassifier.ts +37 -0
- package/classifier/super/SectionClassifier.ts +42 -0
- package/classifier/super/WordClassifier.ts +31 -0
- package/classifier/super/index.ts +10 -0
- package/debug/DebugOutputBuilder.ts +219 -0
- package/docker-compose.yml +8 -0
- package/docs/api.png +0 -0
- package/docs/cli.png +0 -0
- package/docs/demo.png +0 -0
- package/eslint.config.mjs +32 -0
- package/index.ts +10 -0
- package/out/bin/cli.js +41 -0
- package/package.json +130 -0
- package/parser/AddressParser.ts +162 -0
- package/parser/Parser.ts +125 -0
- package/parser/index.ts +9 -0
- package/parser/utils.ts +94 -0
- package/resources/chromium-i18n/ssl-address/AC.json +8 -0
- package/resources/chromium-i18n/ssl-address/AD.json +16 -0
- package/resources/chromium-i18n/ssl-address/AE.json +15 -0
- package/resources/chromium-i18n/ssl-address/AF.json +8 -0
- package/resources/chromium-i18n/ssl-address/AG.json +1 -0
- package/resources/chromium-i18n/ssl-address/AI.json +8 -0
- package/resources/chromium-i18n/ssl-address/AL.json +8 -0
- package/resources/chromium-i18n/ssl-address/AM.json +16 -0
- package/resources/chromium-i18n/ssl-address/AO.json +1 -0
- package/resources/chromium-i18n/ssl-address/AQ.json +1 -0
- package/resources/chromium-i18n/ssl-address/AR.json +16 -0
- package/resources/chromium-i18n/ssl-address/AS.json +13 -0
- package/resources/chromium-i18n/ssl-address/AT.json +10 -0
- package/resources/chromium-i18n/ssl-address/AU.json +20 -0
- package/resources/chromium-i18n/ssl-address/AW.json +1 -0
- package/resources/chromium-i18n/ssl-address/AX.json +11 -0
- package/resources/chromium-i18n/ssl-address/AZ.json +9 -0
- package/resources/chromium-i18n/ssl-address/BA.json +8 -0
- package/resources/chromium-i18n/ssl-address/BB.json +9 -0
- package/resources/chromium-i18n/ssl-address/BD.json +9 -0
- package/resources/chromium-i18n/ssl-address/BE.json +10 -0
- package/resources/chromium-i18n/ssl-address/BF.json +6 -0
- package/resources/chromium-i18n/ssl-address/BG.json +9 -0
- package/resources/chromium-i18n/ssl-address/BH.json +8 -0
- package/resources/chromium-i18n/ssl-address/BI.json +1 -0
- package/resources/chromium-i18n/ssl-address/BJ.json +1 -0
- package/resources/chromium-i18n/ssl-address/BL.json +11 -0
- package/resources/chromium-i18n/ssl-address/BM.json +9 -0
- package/resources/chromium-i18n/ssl-address/BN.json +9 -0
- package/resources/chromium-i18n/ssl-address/BO.json +1 -0
- package/resources/chromium-i18n/ssl-address/BQ.json +1 -0
- package/resources/chromium-i18n/ssl-address/BR.json +21 -0
- package/resources/chromium-i18n/ssl-address/BS.json +12 -0
- package/resources/chromium-i18n/ssl-address/BT.json +9 -0
- package/resources/chromium-i18n/ssl-address/BV.json +1 -0
- package/resources/chromium-i18n/ssl-address/BW.json +1 -0
- package/resources/chromium-i18n/ssl-address/BY.json +9 -0
- package/resources/chromium-i18n/ssl-address/BZ.json +1 -0
- package/resources/chromium-i18n/ssl-address/CA.json +17 -0
- package/resources/chromium-i18n/ssl-address/CC.json +9 -0
- package/resources/chromium-i18n/ssl-address/CD.json +1 -0
- package/resources/chromium-i18n/ssl-address/CF.json +1 -0
- package/resources/chromium-i18n/ssl-address/CG.json +1 -0
- package/resources/chromium-i18n/ssl-address/CH.json +12 -0
- package/resources/chromium-i18n/ssl-address/CI.json +6 -0
- package/resources/chromium-i18n/ssl-address/CK.json +1 -0
- package/resources/chromium-i18n/ssl-address/CL.json +15 -0
- package/resources/chromium-i18n/ssl-address/CM.json +1 -0
- package/resources/chromium-i18n/ssl-address/CN.json +22 -0
- package/resources/chromium-i18n/ssl-address/CO.json +11 -0
- package/resources/chromium-i18n/ssl-address/CR.json +10 -0
- package/resources/chromium-i18n/ssl-address/CU.json +12 -0
- package/resources/chromium-i18n/ssl-address/CV.json +13 -0
- package/resources/chromium-i18n/ssl-address/CW.json +1 -0
- package/resources/chromium-i18n/ssl-address/CX.json +9 -0
- package/resources/chromium-i18n/ssl-address/CY.json +8 -0
- package/resources/chromium-i18n/ssl-address/CZ.json +10 -0
- package/resources/chromium-i18n/ssl-address/DE.json +10 -0
- package/resources/chromium-i18n/ssl-address/DJ.json +1 -0
- package/resources/chromium-i18n/ssl-address/DK.json +10 -0
- package/resources/chromium-i18n/ssl-address/DM.json +1 -0
- package/resources/chromium-i18n/ssl-address/DO.json +9 -0
- package/resources/chromium-i18n/ssl-address/DZ.json +8 -0
- package/resources/chromium-i18n/ssl-address/EC.json +10 -0
- package/resources/chromium-i18n/ssl-address/EE.json +9 -0
- package/resources/chromium-i18n/ssl-address/EG.json +16 -0
- package/resources/chromium-i18n/ssl-address/EH.json +8 -0
- package/resources/chromium-i18n/ssl-address/ER.json +1 -0
- package/resources/chromium-i18n/ssl-address/ES.json +16 -0
- package/resources/chromium-i18n/ssl-address/ET.json +8 -0
- package/resources/chromium-i18n/ssl-address/FI.json +11 -0
- package/resources/chromium-i18n/ssl-address/FJ.json +1 -0
- package/resources/chromium-i18n/ssl-address/FK.json +10 -0
- package/resources/chromium-i18n/ssl-address/FM.json +13 -0
- package/resources/chromium-i18n/ssl-address/FO.json +10 -0
- package/resources/chromium-i18n/ssl-address/FR.json +11 -0
- package/resources/chromium-i18n/ssl-address/GA.json +1 -0
- package/resources/chromium-i18n/ssl-address/GB.json +12 -0
- package/resources/chromium-i18n/ssl-address/GD.json +1 -0
- package/resources/chromium-i18n/ssl-address/GE.json +9 -0
- package/resources/chromium-i18n/ssl-address/GF.json +11 -0
- package/resources/chromium-i18n/ssl-address/GG.json +11 -0
- package/resources/chromium-i18n/ssl-address/GH.json +1 -0
- package/resources/chromium-i18n/ssl-address/GI.json +9 -0
- package/resources/chromium-i18n/ssl-address/GL.json +9 -0
- package/resources/chromium-i18n/ssl-address/GM.json +1 -0
- package/resources/chromium-i18n/ssl-address/GN.json +8 -0
- package/resources/chromium-i18n/ssl-address/GP.json +11 -0
- package/resources/chromium-i18n/ssl-address/GQ.json +1 -0
- package/resources/chromium-i18n/ssl-address/GR.json +10 -0
- package/resources/chromium-i18n/ssl-address/GS.json +10 -0
- package/resources/chromium-i18n/ssl-address/GT.json +8 -0
- package/resources/chromium-i18n/ssl-address/GU.json +12 -0
- package/resources/chromium-i18n/ssl-address/GW.json +8 -0
- package/resources/chromium-i18n/ssl-address/GY.json +1 -0
- package/resources/chromium-i18n/ssl-address/HK.json +16 -0
- package/resources/chromium-i18n/ssl-address/HM.json +9 -0
- package/resources/chromium-i18n/ssl-address/HN.json +9 -0
- package/resources/chromium-i18n/ssl-address/HR.json +10 -0
- package/resources/chromium-i18n/ssl-address/HT.json +9 -0
- package/resources/chromium-i18n/ssl-address/HU.json +11 -0
- package/resources/chromium-i18n/ssl-address/ID.json +13 -0
- package/resources/chromium-i18n/ssl-address/IE.json +16 -0
- package/resources/chromium-i18n/ssl-address/IL.json +9 -0
- package/resources/chromium-i18n/ssl-address/IM.json +11 -0
- package/resources/chromium-i18n/ssl-address/IN.json +18 -0
- package/resources/chromium-i18n/ssl-address/IO.json +10 -0
- package/resources/chromium-i18n/ssl-address/IQ.json +10 -0
- package/resources/chromium-i18n/ssl-address/IR.json +14 -0
- package/resources/chromium-i18n/ssl-address/IS.json +9 -0
- package/resources/chromium-i18n/ssl-address/IT.json +17 -0
- package/resources/chromium-i18n/ssl-address/JE.json +11 -0
- package/resources/chromium-i18n/ssl-address/JM.json +12 -0
- package/resources/chromium-i18n/ssl-address/JO.json +8 -0
- package/resources/chromium-i18n/ssl-address/JP.json +19 -0
- package/resources/chromium-i18n/ssl-address/KE.json +8 -0
- package/resources/chromium-i18n/ssl-address/KG.json +8 -0
- package/resources/chromium-i18n/ssl-address/KH.json +8 -0
- package/resources/chromium-i18n/ssl-address/KI.json +8 -0
- package/resources/chromium-i18n/ssl-address/KM.json +1 -0
- package/resources/chromium-i18n/ssl-address/KN.json +12 -0
- package/resources/chromium-i18n/ssl-address/KP.json +12 -0
- package/resources/chromium-i18n/ssl-address/KR.json +23 -0
- package/resources/chromium-i18n/ssl-address/KW.json +8 -0
- package/resources/chromium-i18n/ssl-address/KY.json +14 -0
- package/resources/chromium-i18n/ssl-address/KZ.json +8 -0
- package/resources/chromium-i18n/ssl-address/LA.json +8 -0
- package/resources/chromium-i18n/ssl-address/LB.json +8 -0
- package/resources/chromium-i18n/ssl-address/LC.json +1 -0
- package/resources/chromium-i18n/ssl-address/LI.json +11 -0
- package/resources/chromium-i18n/ssl-address/LK.json +9 -0
- package/resources/chromium-i18n/ssl-address/LR.json +8 -0
- package/resources/chromium-i18n/ssl-address/LS.json +8 -0
- package/resources/chromium-i18n/ssl-address/LT.json +10 -0
- package/resources/chromium-i18n/ssl-address/LU.json +11 -0
- package/resources/chromium-i18n/ssl-address/LV.json +9 -0
- package/resources/chromium-i18n/ssl-address/LY.json +1 -0
- package/resources/chromium-i18n/ssl-address/MA.json +8 -0
- package/resources/chromium-i18n/ssl-address/MC.json +9 -0
- package/resources/chromium-i18n/ssl-address/MD.json +9 -0
- package/resources/chromium-i18n/ssl-address/ME.json +8 -0
- package/resources/chromium-i18n/ssl-address/MF.json +11 -0
- package/resources/chromium-i18n/ssl-address/MG.json +8 -0
- package/resources/chromium-i18n/ssl-address/MH.json +13 -0
- package/resources/chromium-i18n/ssl-address/MK.json +8 -0
- package/resources/chromium-i18n/ssl-address/ML.json +1 -0
- package/resources/chromium-i18n/ssl-address/MM.json +8 -0
- package/resources/chromium-i18n/ssl-address/MN.json +9 -0
- package/resources/chromium-i18n/ssl-address/MO.json +8 -0
- package/resources/chromium-i18n/ssl-address/MP.json +13 -0
- package/resources/chromium-i18n/ssl-address/MQ.json +11 -0
- package/resources/chromium-i18n/ssl-address/MR.json +1 -0
- package/resources/chromium-i18n/ssl-address/MS.json +1 -0
- package/resources/chromium-i18n/ssl-address/MT.json +10 -0
- package/resources/chromium-i18n/ssl-address/MU.json +9 -0
- package/resources/chromium-i18n/ssl-address/MV.json +9 -0
- package/resources/chromium-i18n/ssl-address/MW.json +1 -0
- package/resources/chromium-i18n/ssl-address/MX.json +20 -0
- package/resources/chromium-i18n/ssl-address/MY.json +19 -0
- package/resources/chromium-i18n/ssl-address/MZ.json +12 -0
- package/resources/chromium-i18n/ssl-address/NA.json +1 -0
- package/resources/chromium-i18n/ssl-address/NC.json +11 -0
- package/resources/chromium-i18n/ssl-address/NE.json +8 -0
- package/resources/chromium-i18n/ssl-address/NF.json +9 -0
- package/resources/chromium-i18n/ssl-address/NG.json +15 -0
- package/resources/chromium-i18n/ssl-address/NI.json +16 -0
- package/resources/chromium-i18n/ssl-address/NL.json +10 -0
- package/resources/chromium-i18n/ssl-address/NO.json +11 -0
- package/resources/chromium-i18n/ssl-address/NP.json +9 -0
- package/resources/chromium-i18n/ssl-address/NR.json +12 -0
- package/resources/chromium-i18n/ssl-address/NU.json +1 -0
- package/resources/chromium-i18n/ssl-address/NZ.json +10 -0
- package/resources/chromium-i18n/ssl-address/OM.json +8 -0
- package/resources/chromium-i18n/ssl-address/PA.json +7 -0
- package/resources/chromium-i18n/ssl-address/PE.json +14 -0
- package/resources/chromium-i18n/ssl-address/PF.json +11 -0
- package/resources/chromium-i18n/ssl-address/PG.json +9 -0
- package/resources/chromium-i18n/ssl-address/PH.json +15 -0
- package/resources/chromium-i18n/ssl-address/PK.json +9 -0
- package/resources/chromium-i18n/ssl-address/PL.json +10 -0
- package/resources/chromium-i18n/ssl-address/PM.json +10 -0
- package/resources/chromium-i18n/ssl-address/PN.json +10 -0
- package/resources/chromium-i18n/ssl-address/PR.json +13 -0
- package/resources/chromium-i18n/ssl-address/PS.json +1 -0
- package/resources/chromium-i18n/ssl-address/PT.json +10 -0
- package/resources/chromium-i18n/ssl-address/PW.json +13 -0
- package/resources/chromium-i18n/ssl-address/PY.json +8 -0
- package/resources/chromium-i18n/ssl-address/QA.json +1 -0
- package/resources/chromium-i18n/ssl-address/RE.json +11 -0
- package/resources/chromium-i18n/ssl-address/RO.json +10 -0
- package/resources/chromium-i18n/ssl-address/RS.json +9 -0
- package/resources/chromium-i18n/ssl-address/RU.json +20 -0
- package/resources/chromium-i18n/ssl-address/RW.json +1 -0
- package/resources/chromium-i18n/ssl-address/SA.json +8 -0
- package/resources/chromium-i18n/ssl-address/SB.json +1 -0
- package/resources/chromium-i18n/ssl-address/SC.json +8 -0
- package/resources/chromium-i18n/ssl-address/SD.json +9 -0
- package/resources/chromium-i18n/ssl-address/SE.json +12 -0
- package/resources/chromium-i18n/ssl-address/SG.json +10 -0
- package/resources/chromium-i18n/ssl-address/SH.json +10 -0
- package/resources/chromium-i18n/ssl-address/SI.json +9 -0
- package/resources/chromium-i18n/ssl-address/SJ.json +11 -0
- package/resources/chromium-i18n/ssl-address/SK.json +10 -0
- package/resources/chromium-i18n/ssl-address/SL.json +1 -0
- package/resources/chromium-i18n/ssl-address/SM.json +10 -0
- package/resources/chromium-i18n/ssl-address/SN.json +8 -0
- package/resources/chromium-i18n/ssl-address/SO.json +15 -0
- package/resources/chromium-i18n/ssl-address/SR.json +11 -0
- package/resources/chromium-i18n/ssl-address/SS.json +1 -0
- package/resources/chromium-i18n/ssl-address/ST.json +1 -0
- package/resources/chromium-i18n/ssl-address/SV.json +17 -0
- package/resources/chromium-i18n/ssl-address/SX.json +1 -0
- package/resources/chromium-i18n/ssl-address/SY.json +6 -0
- package/resources/chromium-i18n/ssl-address/SZ.json +10 -0
- package/resources/chromium-i18n/ssl-address/TA.json +8 -0
- package/resources/chromium-i18n/ssl-address/TC.json +10 -0
- package/resources/chromium-i18n/ssl-address/TD.json +1 -0
- package/resources/chromium-i18n/ssl-address/TF.json +1 -0
- package/resources/chromium-i18n/ssl-address/TG.json +1 -0
- package/resources/chromium-i18n/ssl-address/TH.json +16 -0
- package/resources/chromium-i18n/ssl-address/TJ.json +8 -0
- package/resources/chromium-i18n/ssl-address/TK.json +1 -0
- package/resources/chromium-i18n/ssl-address/TL.json +1 -0
- package/resources/chromium-i18n/ssl-address/TM.json +8 -0
- package/resources/chromium-i18n/ssl-address/TN.json +9 -0
- package/resources/chromium-i18n/ssl-address/TO.json +1 -0
- package/resources/chromium-i18n/ssl-address/TR.json +16 -0
- package/resources/chromium-i18n/ssl-address/TT.json +1 -0
- package/resources/chromium-i18n/ssl-address/TV.json +12 -0
- package/resources/chromium-i18n/ssl-address/TW.json +20 -0
- package/resources/chromium-i18n/ssl-address/TZ.json +8 -0
- package/resources/chromium-i18n/ssl-address/UA.json +19 -0
- package/resources/chromium-i18n/ssl-address/UG.json +1 -0
- package/resources/chromium-i18n/ssl-address/UM.json +13 -0
- package/resources/chromium-i18n/ssl-address/US.json +20 -0
- package/resources/chromium-i18n/ssl-address/UY.json +15 -0
- package/resources/chromium-i18n/ssl-address/UZ.json +10 -0
- package/resources/chromium-i18n/ssl-address/VA.json +8 -0
- package/resources/chromium-i18n/ssl-address/VC.json +9 -0
- package/resources/chromium-i18n/ssl-address/VE.json +16 -0
- package/resources/chromium-i18n/ssl-address/VG.json +9 -0
- package/resources/chromium-i18n/ssl-address/VI.json +13 -0
- package/resources/chromium-i18n/ssl-address/VN.json +15 -0
- package/resources/chromium-i18n/ssl-address/VU.json +1 -0
- package/resources/chromium-i18n/ssl-address/WF.json +10 -0
- package/resources/chromium-i18n/ssl-address/WS.json +1 -0
- package/resources/chromium-i18n/ssl-address/XK.json +8 -0
- package/resources/chromium-i18n/ssl-address/YE.json +1 -0
- package/resources/chromium-i18n/ssl-address/YT.json +10 -0
- package/resources/chromium-i18n/ssl-address/ZA.json +10 -0
- package/resources/chromium-i18n/ssl-address/ZM.json +8 -0
- package/resources/chromium-i18n/ssl-address/ZW.json +1 -0
- package/resources/chromium-i18n/ssl-address-download.sh +15 -0
- package/resources/chromium-i18n/ssl-address.json +2468 -0
- package/resources/custom/custom.ts +12 -0
- package/resources/helper.ts +151 -0
- package/resources/libpostal/dictionaries/README.md +88 -0
- package/resources/libpostal/dictionaries/af/ambiguous_expansions.txt +8 -0
- package/resources/libpostal/dictionaries/af/concatenated_suffixes_inseparable.txt +1 -0
- package/resources/libpostal/dictionaries/af/concatenated_suffixes_separable.txt +14 -0
- package/resources/libpostal/dictionaries/af/directionals.txt +12 -0
- package/resources/libpostal/dictionaries/af/personal_titles.txt +23 -0
- package/resources/libpostal/dictionaries/af/place_names.txt +2 -0
- package/resources/libpostal/dictionaries/af/qualifiers.txt +4 -0
- package/resources/libpostal/dictionaries/af/stopwords.txt +38 -0
- package/resources/libpostal/dictionaries/af/street_types.txt +21 -0
- package/resources/libpostal/dictionaries/all/ambiguous_expansions.txt +1 -0
- package/resources/libpostal/dictionaries/all/chains.txt +504 -0
- package/resources/libpostal/dictionaries/all/given_names.txt +12715 -0
- package/resources/libpostal/dictionaries/all/people.txt +5 -0
- package/resources/libpostal/dictionaries/all/surnames.txt +49375 -0
- package/resources/libpostal/dictionaries/ar/personal_titles.txt +4 -0
- package/resources/libpostal/dictionaries/ar/place_names.txt +1 -0
- package/resources/libpostal/dictionaries/ar/street_types.txt +11 -0
- package/resources/libpostal/dictionaries/ast/ambiguous_expansions.txt +1 -0
- package/resources/libpostal/dictionaries/ast/personal_titles.txt +1 -0
- package/resources/libpostal/dictionaries/ast/street_types.txt +3 -0
- package/resources/libpostal/dictionaries/az/building_types.txt +1 -0
- package/resources/libpostal/dictionaries/az/directionals.txt +8 -0
- package/resources/libpostal/dictionaries/az/personal_titles.txt +3 -0
- package/resources/libpostal/dictionaries/az/place_names.txt +1 -0
- package/resources/libpostal/dictionaries/az/street_types.txt +18 -0
- package/resources/libpostal/dictionaries/be/ambiguous_expansions.txt +8 -0
- package/resources/libpostal/dictionaries/be/building_types.txt +2 -0
- package/resources/libpostal/dictionaries/be/chains.txt +8 -0
- package/resources/libpostal/dictionaries/be/directionals.txt +25 -0
- package/resources/libpostal/dictionaries/be/house_numbers.txt +2 -0
- package/resources/libpostal/dictionaries/be/personal_titles.txt +6 -0
- package/resources/libpostal/dictionaries/be/qualifiers.txt +20 -0
- package/resources/libpostal/dictionaries/be/street_types.txt +28 -0
- package/resources/libpostal/dictionaries/be/unit_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/bg/ambiguous_expansions.txt +2 -0
- package/resources/libpostal/dictionaries/bg/cross_streets.txt +10 -0
- package/resources/libpostal/dictionaries/bg/directionals.txt +8 -0
- package/resources/libpostal/dictionaries/bg/entrances.txt +2 -0
- package/resources/libpostal/dictionaries/bg/level_types_numbered.txt +6 -0
- package/resources/libpostal/dictionaries/bg/level_types_standalone.txt +4 -0
- package/resources/libpostal/dictionaries/bg/near.txt +20 -0
- package/resources/libpostal/dictionaries/bg/number.txt +2 -0
- package/resources/libpostal/dictionaries/bg/personal_titles.txt +14 -0
- package/resources/libpostal/dictionaries/bg/place_names.txt +6 -0
- package/resources/libpostal/dictionaries/bg/post_office.txt +2 -0
- package/resources/libpostal/dictionaries/bg/qualifiers.txt +10 -0
- package/resources/libpostal/dictionaries/bg/staircases.txt +2 -0
- package/resources/libpostal/dictionaries/bg/street_types.txt +6 -0
- package/resources/libpostal/dictionaries/bg/unit_directions.txt +4 -0
- package/resources/libpostal/dictionaries/bg/unit_types_numbered.txt +6 -0
- package/resources/libpostal/dictionaries/br/personal_titles.txt +3 -0
- package/resources/libpostal/dictionaries/br/place_names.txt +3 -0
- package/resources/libpostal/dictionaries/br/qualifiers.txt +1 -0
- package/resources/libpostal/dictionaries/br/stopwords.txt +4 -0
- package/resources/libpostal/dictionaries/br/street_types.txt +40 -0
- package/resources/libpostal/dictionaries/bs/ambiguous_expansions.txt +5 -0
- package/resources/libpostal/dictionaries/bs/building_types.txt +1 -0
- package/resources/libpostal/dictionaries/bs/cross_streets.txt +6 -0
- package/resources/libpostal/dictionaries/bs/directionals.txt +4 -0
- package/resources/libpostal/dictionaries/bs/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/bs/level_types_basement.txt +1 -0
- package/resources/libpostal/dictionaries/bs/level_types_mezzanine.txt +1 -0
- package/resources/libpostal/dictionaries/bs/level_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/bs/level_types_standalone.txt +2 -0
- package/resources/libpostal/dictionaries/bs/near.txt +5 -0
- package/resources/libpostal/dictionaries/bs/no_number.txt +1 -0
- package/resources/libpostal/dictionaries/bs/number.txt +1 -0
- package/resources/libpostal/dictionaries/bs/personal_titles.txt +8 -0
- package/resources/libpostal/dictionaries/bs/place_names.txt +9 -0
- package/resources/libpostal/dictionaries/bs/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/bs/qualifiers.txt +2 -0
- package/resources/libpostal/dictionaries/bs/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/bs/stopwords.txt +2 -0
- package/resources/libpostal/dictionaries/bs/street_types.txt +12 -0
- package/resources/libpostal/dictionaries/bs/unit_directions.txt +2 -0
- package/resources/libpostal/dictionaries/bs/unit_types_numbered.txt +4 -0
- package/resources/libpostal/dictionaries/ca/ambiguous_expansions.txt +9 -0
- package/resources/libpostal/dictionaries/ca/cross_streets.txt +8 -0
- package/resources/libpostal/dictionaries/ca/directionals.txt +9 -0
- package/resources/libpostal/dictionaries/ca/elisions.txt +1 -0
- package/resources/libpostal/dictionaries/ca/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/ca/given_names.txt +1 -0
- package/resources/libpostal/dictionaries/ca/level_types_basement.txt +1 -0
- package/resources/libpostal/dictionaries/ca/level_types_mezzanine.txt +1 -0
- package/resources/libpostal/dictionaries/ca/level_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/ca/level_types_standalone.txt +5 -0
- package/resources/libpostal/dictionaries/ca/level_types_sub_basement.txt +1 -0
- package/resources/libpostal/dictionaries/ca/near.txt +12 -0
- package/resources/libpostal/dictionaries/ca/no_number.txt +1 -0
- package/resources/libpostal/dictionaries/ca/number.txt +1 -0
- package/resources/libpostal/dictionaries/ca/personal_titles.txt +10 -0
- package/resources/libpostal/dictionaries/ca/place_names.txt +133 -0
- package/resources/libpostal/dictionaries/ca/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/ca/postcodes.txt +1 -0
- package/resources/libpostal/dictionaries/ca/qualifiers.txt +8 -0
- package/resources/libpostal/dictionaries/ca/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/ca/stopwords.txt +31 -0
- package/resources/libpostal/dictionaries/ca/street_types.txt +28 -0
- package/resources/libpostal/dictionaries/ca/synonyms.txt +14 -0
- package/resources/libpostal/dictionaries/ca/unit_directions.txt +2 -0
- package/resources/libpostal/dictionaries/ca/unit_types_numbered.txt +10 -0
- package/resources/libpostal/dictionaries/cs/ambiguous_expansions.txt +6 -0
- package/resources/libpostal/dictionaries/cs/chains.txt +1 -0
- package/resources/libpostal/dictionaries/cs/cross_streets.txt +9 -0
- package/resources/libpostal/dictionaries/cs/directionals.txt +4 -0
- package/resources/libpostal/dictionaries/cs/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/cs/house_numbers.txt +1 -0
- package/resources/libpostal/dictionaries/cs/level_types_basement.txt +1 -0
- package/resources/libpostal/dictionaries/cs/level_types_numbered.txt +3 -0
- package/resources/libpostal/dictionaries/cs/level_types_standalone.txt +1 -0
- package/resources/libpostal/dictionaries/cs/near.txt +12 -0
- package/resources/libpostal/dictionaries/cs/number.txt +1 -0
- package/resources/libpostal/dictionaries/cs/personal_titles.txt +2 -0
- package/resources/libpostal/dictionaries/cs/place_names.txt +47 -0
- package/resources/libpostal/dictionaries/cs/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/cs/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/cs/stopwords.txt +1 -0
- package/resources/libpostal/dictionaries/cs/street_types.txt +6 -0
- package/resources/libpostal/dictionaries/cs/unit_directions.txt +2 -0
- package/resources/libpostal/dictionaries/cs/unit_types_numbered.txt +3 -0
- package/resources/libpostal/dictionaries/cy/building_types.txt +5 -0
- package/resources/libpostal/dictionaries/cy/directionals.txt +4 -0
- package/resources/libpostal/dictionaries/cy/personal_titles.txt +2 -0
- package/resources/libpostal/dictionaries/cy/place_names.txt +22 -0
- package/resources/libpostal/dictionaries/cy/qualifiers.txt +2 -0
- package/resources/libpostal/dictionaries/cy/stopwords.txt +3 -0
- package/resources/libpostal/dictionaries/cy/street_types.txt +22 -0
- package/resources/libpostal/dictionaries/da/academic_degrees.txt +1 -0
- package/resources/libpostal/dictionaries/da/ambiguous_expansions.txt +7 -0
- package/resources/libpostal/dictionaries/da/building_types.txt +3 -0
- package/resources/libpostal/dictionaries/da/concatenated_suffixes_inseparable.txt +21 -0
- package/resources/libpostal/dictionaries/da/concatenated_suffixes_separable.txt +9 -0
- package/resources/libpostal/dictionaries/da/cross_streets.txt +5 -0
- package/resources/libpostal/dictionaries/da/directionals.txt +13 -0
- package/resources/libpostal/dictionaries/da/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/da/level_types_basement.txt +1 -0
- package/resources/libpostal/dictionaries/da/level_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/da/level_types_standalone.txt +2 -0
- package/resources/libpostal/dictionaries/da/near.txt +14 -0
- package/resources/libpostal/dictionaries/da/number.txt +1 -0
- package/resources/libpostal/dictionaries/da/personal_titles.txt +1 -0
- package/resources/libpostal/dictionaries/da/place_names.txt +7 -0
- package/resources/libpostal/dictionaries/da/post_office.txt +2 -0
- package/resources/libpostal/dictionaries/da/staircases.txt +2 -0
- package/resources/libpostal/dictionaries/da/stopwords.txt +1 -0
- package/resources/libpostal/dictionaries/da/street_types.txt +38 -0
- package/resources/libpostal/dictionaries/da/synonyms.txt +2 -0
- package/resources/libpostal/dictionaries/da/unit_directions.txt +3 -0
- package/resources/libpostal/dictionaries/da/unit_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/de/academic_degrees.txt +5 -0
- package/resources/libpostal/dictionaries/de/ambiguous_expansions.txt +18 -0
- package/resources/libpostal/dictionaries/de/chains.txt +11 -0
- package/resources/libpostal/dictionaries/de/company_types.txt +8 -0
- package/resources/libpostal/dictionaries/de/concatenated_prefixes_separable.txt +17 -0
- package/resources/libpostal/dictionaries/de/concatenated_suffixes_inseparable.txt +5 -0
- package/resources/libpostal/dictionaries/de/concatenated_suffixes_separable.txt +16 -0
- package/resources/libpostal/dictionaries/de/cross_streets.txt +5 -0
- package/resources/libpostal/dictionaries/de/directionals.txt +41 -0
- package/resources/libpostal/dictionaries/de/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/de/house_numbers.txt +1 -0
- package/resources/libpostal/dictionaries/de/level_types_basement.txt +1 -0
- package/resources/libpostal/dictionaries/de/level_types_numbered.txt +3 -0
- package/resources/libpostal/dictionaries/de/level_types_standalone.txt +4 -0
- package/resources/libpostal/dictionaries/de/near.txt +16 -0
- package/resources/libpostal/dictionaries/de/number.txt +1 -0
- package/resources/libpostal/dictionaries/de/personal_suffixes.txt +2 -0
- package/resources/libpostal/dictionaries/de/personal_titles.txt +18 -0
- package/resources/libpostal/dictionaries/de/place_names.txt +123 -0
- package/resources/libpostal/dictionaries/de/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/de/qualifiers.txt +3 -0
- package/resources/libpostal/dictionaries/de/staircases.txt +2 -0
- package/resources/libpostal/dictionaries/de/stopwords.txt +39 -0
- package/resources/libpostal/dictionaries/de/street_types.txt +36 -0
- package/resources/libpostal/dictionaries/de/synonyms.txt +16 -0
- package/resources/libpostal/dictionaries/de/toponyms.txt +28 -0
- package/resources/libpostal/dictionaries/de/unit_directions.txt +2 -0
- package/resources/libpostal/dictionaries/de/unit_types_numbered.txt +7 -0
- package/resources/libpostal/dictionaries/el/ambiguous_expansions.txt +1 -0
- package/resources/libpostal/dictionaries/el/building_types.txt +2 -0
- package/resources/libpostal/dictionaries/el/entrances.txt +2 -0
- package/resources/libpostal/dictionaries/el/given_names.txt +6 -0
- package/resources/libpostal/dictionaries/el/level_types_basement.txt +2 -0
- package/resources/libpostal/dictionaries/el/level_types_mezzanine.txt +2 -0
- package/resources/libpostal/dictionaries/el/level_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/el/level_types_standalone.txt +2 -0
- package/resources/libpostal/dictionaries/el/personal_titles.txt +12 -0
- package/resources/libpostal/dictionaries/el/place_names.txt +18 -0
- package/resources/libpostal/dictionaries/el/post_office.txt +2 -0
- package/resources/libpostal/dictionaries/el/postcodes.txt +2 -0
- package/resources/libpostal/dictionaries/el/qualifiers.txt +6 -0
- package/resources/libpostal/dictionaries/el/staircases.txt +2 -0
- package/resources/libpostal/dictionaries/el/street_types.txt +6 -0
- package/resources/libpostal/dictionaries/el/synonyms.txt +41 -0
- package/resources/libpostal/dictionaries/el/toponyms.txt +3 -0
- package/resources/libpostal/dictionaries/el/unit_types_numbered.txt +6 -0
- package/resources/libpostal/dictionaries/en/academic_degrees.txt +27 -0
- package/resources/libpostal/dictionaries/en/ambiguous_expansions.txt +178 -0
- package/resources/libpostal/dictionaries/en/building_types.txt +19 -0
- package/resources/libpostal/dictionaries/en/chains.txt +6 -0
- package/resources/libpostal/dictionaries/en/company_types.txt +61 -0
- package/resources/libpostal/dictionaries/en/cross_streets.txt +9 -0
- package/resources/libpostal/dictionaries/en/directionals.txt +20 -0
- package/resources/libpostal/dictionaries/en/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/en/given_names.txt +2 -0
- package/resources/libpostal/dictionaries/en/level_types_basement.txt +1 -0
- package/resources/libpostal/dictionaries/en/level_types_mezzanine.txt +5 -0
- package/resources/libpostal/dictionaries/en/level_types_numbered.txt +4 -0
- package/resources/libpostal/dictionaries/en/level_types_standalone.txt +12 -0
- package/resources/libpostal/dictionaries/en/level_types_sub_basement.txt +1 -0
- package/resources/libpostal/dictionaries/en/near.txt +7 -0
- package/resources/libpostal/dictionaries/en/no_number.txt +1 -0
- package/resources/libpostal/dictionaries/en/nulls.txt +2 -0
- package/resources/libpostal/dictionaries/en/number.txt +1 -0
- package/resources/libpostal/dictionaries/en/personal_suffixes.txt +2 -0
- package/resources/libpostal/dictionaries/en/personal_titles.txt +80 -0
- package/resources/libpostal/dictionaries/en/place_names.txt +315 -0
- package/resources/libpostal/dictionaries/en/post_office.txt +16 -0
- package/resources/libpostal/dictionaries/en/qualifiers.txt +5 -0
- package/resources/libpostal/dictionaries/en/staircases.txt +3 -0
- package/resources/libpostal/dictionaries/en/stopwords.txt +14 -0
- package/resources/libpostal/dictionaries/en/street_names.txt +358 -0
- package/resources/libpostal/dictionaries/en/street_types.txt +410 -0
- package/resources/libpostal/dictionaries/en/synonyms.txt +53 -0
- package/resources/libpostal/dictionaries/en/toponyms.txt +80 -0
- package/resources/libpostal/dictionaries/en/unit_directions.txt +4 -0
- package/resources/libpostal/dictionaries/en/unit_types_numbered.txt +69 -0
- package/resources/libpostal/dictionaries/en/unit_types_standalone.txt +16 -0
- package/resources/libpostal/dictionaries/es/academic_degrees.txt +2 -0
- package/resources/libpostal/dictionaries/es/ambiguous_expansions.txt +45 -0
- package/resources/libpostal/dictionaries/es/building_types.txt +15 -0
- package/resources/libpostal/dictionaries/es/company_types.txt +49 -0
- package/resources/libpostal/dictionaries/es/cross_streets.txt +9 -0
- package/resources/libpostal/dictionaries/es/directionals.txt +13 -0
- package/resources/libpostal/dictionaries/es/entrances.txt +3 -0
- package/resources/libpostal/dictionaries/es/given_names.txt +3 -0
- package/resources/libpostal/dictionaries/es/house_numbers.txt +2 -0
- package/resources/libpostal/dictionaries/es/level_types_basement.txt +1 -0
- package/resources/libpostal/dictionaries/es/level_types_mezzanine.txt +1 -0
- package/resources/libpostal/dictionaries/es/level_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/es/level_types_standalone.txt +7 -0
- package/resources/libpostal/dictionaries/es/level_types_sub_basement.txt +1 -0
- package/resources/libpostal/dictionaries/es/near.txt +10 -0
- package/resources/libpostal/dictionaries/es/no_number.txt +1 -0
- package/resources/libpostal/dictionaries/es/number.txt +1 -0
- package/resources/libpostal/dictionaries/es/personal_suffixes.txt +1 -0
- package/resources/libpostal/dictionaries/es/personal_titles.txt +132 -0
- package/resources/libpostal/dictionaries/es/place_names.txt +234 -0
- package/resources/libpostal/dictionaries/es/post_office.txt +4 -0
- package/resources/libpostal/dictionaries/es/postcodes.txt +1 -0
- package/resources/libpostal/dictionaries/es/qualifiers.txt +34 -0
- package/resources/libpostal/dictionaries/es/staircases.txt +2 -0
- package/resources/libpostal/dictionaries/es/stopwords.txt +29 -0
- package/resources/libpostal/dictionaries/es/street_types.txt +109 -0
- package/resources/libpostal/dictionaries/es/surnames.txt +6 -0
- package/resources/libpostal/dictionaries/es/synonyms.txt +58 -0
- package/resources/libpostal/dictionaries/es/toponyms.txt +39 -0
- package/resources/libpostal/dictionaries/es/unit_directions.txt +4 -0
- package/resources/libpostal/dictionaries/es/unit_types_numbered.txt +15 -0
- package/resources/libpostal/dictionaries/es/unit_types_standalone.txt +5 -0
- package/resources/libpostal/dictionaries/et/ambiguous_expansions.txt +5 -0
- package/resources/libpostal/dictionaries/et/building_types.txt +3 -0
- package/resources/libpostal/dictionaries/et/company_types.txt +10 -0
- package/resources/libpostal/dictionaries/et/cross_streets.txt +4 -0
- package/resources/libpostal/dictionaries/et/directionals.txt +9 -0
- package/resources/libpostal/dictionaries/et/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/et/level_types_basement.txt +2 -0
- package/resources/libpostal/dictionaries/et/level_types_numbered.txt +1 -0
- package/resources/libpostal/dictionaries/et/near.txt +4 -0
- package/resources/libpostal/dictionaries/et/number.txt +1 -0
- package/resources/libpostal/dictionaries/et/personal_titles.txt +13 -0
- package/resources/libpostal/dictionaries/et/place_names.txt +39 -0
- package/resources/libpostal/dictionaries/et/post_office.txt +2 -0
- package/resources/libpostal/dictionaries/et/qualifiers.txt +6 -0
- package/resources/libpostal/dictionaries/et/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/et/stopwords.txt +1 -0
- package/resources/libpostal/dictionaries/et/street_types.txt +10 -0
- package/resources/libpostal/dictionaries/et/toponyms.txt +1 -0
- package/resources/libpostal/dictionaries/et/unit_directions.txt +4 -0
- package/resources/libpostal/dictionaries/et/unit_types_numbered.txt +3 -0
- package/resources/libpostal/dictionaries/eu/ambiguous_expansions.txt +2 -0
- package/resources/libpostal/dictionaries/eu/cross_streets.txt +4 -0
- package/resources/libpostal/dictionaries/eu/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/eu/level_types_numbered.txt +1 -0
- package/resources/libpostal/dictionaries/eu/level_types_standalone.txt +2 -0
- package/resources/libpostal/dictionaries/eu/near.txt +5 -0
- package/resources/libpostal/dictionaries/eu/no_number.txt +1 -0
- package/resources/libpostal/dictionaries/eu/place_names.txt +63 -0
- package/resources/libpostal/dictionaries/eu/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/eu/postcodes.txt +1 -0
- package/resources/libpostal/dictionaries/eu/qualifiers.txt +2 -0
- package/resources/libpostal/dictionaries/eu/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/eu/stopwords.txt +1 -0
- package/resources/libpostal/dictionaries/eu/street_types.txt +18 -0
- package/resources/libpostal/dictionaries/eu/unit_directions.txt +3 -0
- package/resources/libpostal/dictionaries/eu/unit_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/fa/personal_titles.txt +6 -0
- package/resources/libpostal/dictionaries/fa/place_names.txt +3 -0
- package/resources/libpostal/dictionaries/fa/street_types.txt +7 -0
- package/resources/libpostal/dictionaries/fi/ambiguous_expansions.txt +5 -0
- package/resources/libpostal/dictionaries/fi/building_types.txt +3 -0
- package/resources/libpostal/dictionaries/fi/chains.txt +1 -0
- package/resources/libpostal/dictionaries/fi/concatenated_suffixes_separable.txt +20 -0
- package/resources/libpostal/dictionaries/fi/cross_streets.txt +3 -0
- package/resources/libpostal/dictionaries/fi/directionals.txt +4 -0
- package/resources/libpostal/dictionaries/fi/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/fi/level_types_numbered.txt +1 -0
- package/resources/libpostal/dictionaries/fi/near.txt +5 -0
- package/resources/libpostal/dictionaries/fi/number.txt +1 -0
- package/resources/libpostal/dictionaries/fi/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/fi/qualifiers.txt +2 -0
- package/resources/libpostal/dictionaries/fi/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/fi/stopwords.txt +1 -0
- package/resources/libpostal/dictionaries/fi/street_types.txt +20 -0
- package/resources/libpostal/dictionaries/fi/synonyms.txt +1 -0
- package/resources/libpostal/dictionaries/fi/unit_directions.txt +4 -0
- package/resources/libpostal/dictionaries/fi/unit_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/fil/street_types.txt +3 -0
- package/resources/libpostal/dictionaries/fr/ambiguous_expansions.txt +25 -0
- package/resources/libpostal/dictionaries/fr/building_types.txt +4 -0
- package/resources/libpostal/dictionaries/fr/chains.txt +2 -0
- package/resources/libpostal/dictionaries/fr/company_types.txt +40 -0
- package/resources/libpostal/dictionaries/fr/cross_streets.txt +5 -0
- package/resources/libpostal/dictionaries/fr/directionals.txt +12 -0
- package/resources/libpostal/dictionaries/fr/elisions.txt +9 -0
- package/resources/libpostal/dictionaries/fr/entrances.txt +2 -0
- package/resources/libpostal/dictionaries/fr/level_types_basement.txt +1 -0
- package/resources/libpostal/dictionaries/fr/level_types_mezzanine.txt +1 -0
- package/resources/libpostal/dictionaries/fr/level_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/fr/level_types_standalone.txt +8 -0
- package/resources/libpostal/dictionaries/fr/level_types_sub_basement.txt +1 -0
- package/resources/libpostal/dictionaries/fr/near.txt +20 -0
- package/resources/libpostal/dictionaries/fr/no_number.txt +1 -0
- package/resources/libpostal/dictionaries/fr/number.txt +1 -0
- package/resources/libpostal/dictionaries/fr/people.txt +1 -0
- package/resources/libpostal/dictionaries/fr/personal_titles.txt +57 -0
- package/resources/libpostal/dictionaries/fr/place_names.txt +147 -0
- package/resources/libpostal/dictionaries/fr/post_office.txt +3 -0
- package/resources/libpostal/dictionaries/fr/qualifiers.txt +19 -0
- package/resources/libpostal/dictionaries/fr/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/fr/stopwords.txt +28 -0
- package/resources/libpostal/dictionaries/fr/street_types.txt +165 -0
- package/resources/libpostal/dictionaries/fr/synonyms.txt +14 -0
- package/resources/libpostal/dictionaries/fr/toponyms.txt +13 -0
- package/resources/libpostal/dictionaries/fr/unit_directions.txt +4 -0
- package/resources/libpostal/dictionaries/fr/unit_types_numbered.txt +10 -0
- package/resources/libpostal/dictionaries/ga/building_types.txt +16 -0
- package/resources/libpostal/dictionaries/ga/level_types_standalone.txt +1 -0
- package/resources/libpostal/dictionaries/ga/personal_titles.txt +1 -0
- package/resources/libpostal/dictionaries/ga/place_names.txt +10 -0
- package/resources/libpostal/dictionaries/ga/street_types.txt +95 -0
- package/resources/libpostal/dictionaries/ga/unit_types_numbered.txt +1 -0
- package/resources/libpostal/dictionaries/gd/building_types.txt +8 -0
- package/resources/libpostal/dictionaries/gd/directionals.txt +6 -0
- package/resources/libpostal/dictionaries/gd/place_names.txt +7 -0
- package/resources/libpostal/dictionaries/gd/qualifiers.txt +1 -0
- package/resources/libpostal/dictionaries/gd/stopwords.txt +2 -0
- package/resources/libpostal/dictionaries/gd/street_types.txt +52 -0
- package/resources/libpostal/dictionaries/gl/ambiguous_expansions.txt +6 -0
- package/resources/libpostal/dictionaries/gl/directionals.txt +8 -0
- package/resources/libpostal/dictionaries/gl/personal_titles.txt +2 -0
- package/resources/libpostal/dictionaries/gl/stopwords.txt +39 -0
- package/resources/libpostal/dictionaries/gl/street_types.txt +26 -0
- package/resources/libpostal/dictionaries/gl/unit_directions.txt +2 -0
- package/resources/libpostal/dictionaries/gsw/ambiguous_expansions.txt +1 -0
- package/resources/libpostal/dictionaries/gsw/concatenated_suffixes_separable.txt +8 -0
- package/resources/libpostal/dictionaries/gsw/street_types.txt +8 -0
- package/resources/libpostal/dictionaries/he/entrances.txt +2 -0
- package/resources/libpostal/dictionaries/he/level_types_basement.txt +2 -0
- package/resources/libpostal/dictionaries/he/level_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/he/level_types_standalone.txt +2 -0
- package/resources/libpostal/dictionaries/he/personal_titles.txt +2 -0
- package/resources/libpostal/dictionaries/he/post_office.txt +2 -0
- package/resources/libpostal/dictionaries/he/street_types.txt +8 -0
- package/resources/libpostal/dictionaries/he/unit_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/hi/street_types.txt +3 -0
- package/resources/libpostal/dictionaries/hr/ambiguous_expansions.txt +6 -0
- package/resources/libpostal/dictionaries/hr/building_types.txt +1 -0
- package/resources/libpostal/dictionaries/hr/cross_streets.txt +6 -0
- package/resources/libpostal/dictionaries/hr/directionals.txt +4 -0
- package/resources/libpostal/dictionaries/hr/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/hr/level_types_basement.txt +1 -0
- package/resources/libpostal/dictionaries/hr/level_types_mezzanine.txt +1 -0
- package/resources/libpostal/dictionaries/hr/level_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/hr/level_types_standalone.txt +2 -0
- package/resources/libpostal/dictionaries/hr/near.txt +5 -0
- package/resources/libpostal/dictionaries/hr/no_number.txt +1 -0
- package/resources/libpostal/dictionaries/hr/personal_titles.txt +6 -0
- package/resources/libpostal/dictionaries/hr/place_names.txt +18 -0
- package/resources/libpostal/dictionaries/hr/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/hr/qualifiers.txt +1 -0
- package/resources/libpostal/dictionaries/hr/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/hr/stopwords.txt +1 -0
- package/resources/libpostal/dictionaries/hr/street_types.txt +12 -0
- package/resources/libpostal/dictionaries/hr/unit_directions.txt +2 -0
- package/resources/libpostal/dictionaries/hr/unit_types_numbered.txt +4 -0
- package/resources/libpostal/dictionaries/hu/ambiguous_expansions.txt +6 -0
- package/resources/libpostal/dictionaries/hu/cross_streets.txt +5 -0
- package/resources/libpostal/dictionaries/hu/directionals.txt +8 -0
- package/resources/libpostal/dictionaries/hu/level_types_basement.txt +4 -0
- package/resources/libpostal/dictionaries/hu/level_types_mezzanine.txt +2 -0
- package/resources/libpostal/dictionaries/hu/level_types_numbered.txt +1 -0
- package/resources/libpostal/dictionaries/hu/level_types_standalone.txt +1 -0
- package/resources/libpostal/dictionaries/hu/near.txt +3 -0
- package/resources/libpostal/dictionaries/hu/number.txt +1 -0
- package/resources/libpostal/dictionaries/hu/personal_titles.txt +1 -0
- package/resources/libpostal/dictionaries/hu/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/hu/stopwords.txt +4 -0
- package/resources/libpostal/dictionaries/hu/street_types.txt +21 -0
- package/resources/libpostal/dictionaries/hu/unit_directions.txt +2 -0
- package/resources/libpostal/dictionaries/hu/unit_types_numbered.txt +3 -0
- package/resources/libpostal/dictionaries/id/academic_degrees.txt +78 -0
- package/resources/libpostal/dictionaries/id/ambiguous_expansions.txt +64 -0
- package/resources/libpostal/dictionaries/id/building_types.txt +7 -0
- package/resources/libpostal/dictionaries/id/chains.txt +5 -0
- package/resources/libpostal/dictionaries/id/company_types.txt +15 -0
- package/resources/libpostal/dictionaries/id/cross_streets.txt +6 -0
- package/resources/libpostal/dictionaries/id/directionals.txt +9 -0
- package/resources/libpostal/dictionaries/id/entrances.txt +3 -0
- package/resources/libpostal/dictionaries/id/level_types_numbered.txt +1 -0
- package/resources/libpostal/dictionaries/id/level_types_standalone.txt +3 -0
- package/resources/libpostal/dictionaries/id/near.txt +3 -0
- package/resources/libpostal/dictionaries/id/number.txt +1 -0
- package/resources/libpostal/dictionaries/id/personal_titles.txt +34 -0
- package/resources/libpostal/dictionaries/id/place_names.txt +145 -0
- package/resources/libpostal/dictionaries/id/qualifiers.txt +13 -0
- package/resources/libpostal/dictionaries/id/stopwords.txt +9 -0
- package/resources/libpostal/dictionaries/id/street_types.txt +7 -0
- package/resources/libpostal/dictionaries/id/synonyms.txt +22 -0
- package/resources/libpostal/dictionaries/id/toponyms.txt +34 -0
- package/resources/libpostal/dictionaries/id/unit_directions.txt +4 -0
- package/resources/libpostal/dictionaries/id/unit_types_numbered.txt +16 -0
- package/resources/libpostal/dictionaries/id/unit_types_standalone.txt +9 -0
- package/resources/libpostal/dictionaries/is/ambiguous_expansions.txt +6 -0
- package/resources/libpostal/dictionaries/is/concatenated_suffixes_inseparable.txt +29 -0
- package/resources/libpostal/dictionaries/is/cross_streets.txt +4 -0
- package/resources/libpostal/dictionaries/is/directionals.txt +4 -0
- package/resources/libpostal/dictionaries/is/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/is/level_types_basement.txt +1 -0
- package/resources/libpostal/dictionaries/is/level_types_numbered.txt +1 -0
- package/resources/libpostal/dictionaries/is/level_types_standalone.txt +1 -0
- package/resources/libpostal/dictionaries/is/near.txt +6 -0
- package/resources/libpostal/dictionaries/is/number.txt +1 -0
- package/resources/libpostal/dictionaries/is/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/is/qualifiers.txt +2 -0
- package/resources/libpostal/dictionaries/is/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/is/stopwords.txt +1 -0
- package/resources/libpostal/dictionaries/is/street_types.txt +29 -0
- package/resources/libpostal/dictionaries/is/unit_directions.txt +2 -0
- package/resources/libpostal/dictionaries/is/unit_types_numbered.txt +1 -0
- package/resources/libpostal/dictionaries/it/academic_degrees.txt +1 -0
- package/resources/libpostal/dictionaries/it/ambiguous_expansions.txt +8 -0
- package/resources/libpostal/dictionaries/it/building_types.txt +5 -0
- package/resources/libpostal/dictionaries/it/chains.txt +5 -0
- package/resources/libpostal/dictionaries/it/company_types.txt +16 -0
- package/resources/libpostal/dictionaries/it/cross_streets.txt +7 -0
- package/resources/libpostal/dictionaries/it/directionals.txt +11 -0
- package/resources/libpostal/dictionaries/it/elisions.txt +4 -0
- package/resources/libpostal/dictionaries/it/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/it/level_types_basement.txt +2 -0
- package/resources/libpostal/dictionaries/it/level_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/it/level_types_standalone.txt +2 -0
- package/resources/libpostal/dictionaries/it/near.txt +10 -0
- package/resources/libpostal/dictionaries/it/no_number.txt +2 -0
- package/resources/libpostal/dictionaries/it/number.txt +1 -0
- package/resources/libpostal/dictionaries/it/personal_titles.txt +72 -0
- package/resources/libpostal/dictionaries/it/place_names.txt +203 -0
- package/resources/libpostal/dictionaries/it/post_office.txt +2 -0
- package/resources/libpostal/dictionaries/it/qualifiers.txt +16 -0
- package/resources/libpostal/dictionaries/it/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/it/stopwords.txt +47 -0
- package/resources/libpostal/dictionaries/it/street_types.txt +151 -0
- package/resources/libpostal/dictionaries/it/synonyms.txt +115 -0
- package/resources/libpostal/dictionaries/it/toponyms.txt +110 -0
- package/resources/libpostal/dictionaries/it/unit_types_numbered.txt +9 -0
- package/resources/libpostal/dictionaries/ja/ambiguous_expansions.txt +5 -0
- package/resources/libpostal/dictionaries/ja/building_types.txt +6 -0
- package/resources/libpostal/dictionaries/ja/chains.txt +27 -0
- package/resources/libpostal/dictionaries/ja/directionals.txt +16 -0
- package/resources/libpostal/dictionaries/ja/level_types_numbered.txt +3 -0
- package/resources/libpostal/dictionaries/ja/number.txt +2 -0
- package/resources/libpostal/dictionaries/ja/place_names.txt +16 -0
- package/resources/libpostal/dictionaries/ja/post_office.txt +2 -0
- package/resources/libpostal/dictionaries/ja/postcodes.txt +2 -0
- package/resources/libpostal/dictionaries/ja/qualifiers.txt +38 -0
- package/resources/libpostal/dictionaries/ja/street_types.txt +67 -0
- package/resources/libpostal/dictionaries/ka/ambiguous_expansions.txt +2 -0
- package/resources/libpostal/dictionaries/ka/personal_titles.txt +4 -0
- package/resources/libpostal/dictionaries/ka/place_names.txt +7 -0
- package/resources/libpostal/dictionaries/ka/stopwords.txt +1 -0
- package/resources/libpostal/dictionaries/ka/street_types.txt +12 -0
- package/resources/libpostal/dictionaries/ko/directionals.txt +31 -0
- package/resources/libpostal/dictionaries/ko/level_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/ko/number.txt +3 -0
- package/resources/libpostal/dictionaries/ko/post_office.txt +2 -0
- package/resources/libpostal/dictionaries/ko/postcodes.txt +2 -0
- package/resources/libpostal/dictionaries/ko/qualifiers.txt +6 -0
- package/resources/libpostal/dictionaries/ko/street_types.txt +8 -0
- package/resources/libpostal/dictionaries/lb/concatenated_suffixes_separable.txt +3 -0
- package/resources/libpostal/dictionaries/lb/street_types.txt +3 -0
- package/resources/libpostal/dictionaries/lt/ambiguous_expansions.txt +6 -0
- package/resources/libpostal/dictionaries/lt/building_types.txt +1 -0
- package/resources/libpostal/dictionaries/lt/cross_streets.txt +4 -0
- package/resources/libpostal/dictionaries/lt/directionals.txt +4 -0
- package/resources/libpostal/dictionaries/lt/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/lt/level_types_basement.txt +2 -0
- package/resources/libpostal/dictionaries/lt/level_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/lt/level_types_standalone.txt +1 -0
- package/resources/libpostal/dictionaries/lt/number.txt +1 -0
- package/resources/libpostal/dictionaries/lt/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/lt/qualifiers.txt +5 -0
- package/resources/libpostal/dictionaries/lt/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/lt/stopwords.txt +1 -0
- package/resources/libpostal/dictionaries/lt/street_types.txt +7 -0
- package/resources/libpostal/dictionaries/lt/unit_directions.txt +2 -0
- package/resources/libpostal/dictionaries/lt/unit_types_numbered.txt +3 -0
- package/resources/libpostal/dictionaries/lv/ambiguous_expansions.txt +6 -0
- package/resources/libpostal/dictionaries/lv/cross_streets.txt +5 -0
- package/resources/libpostal/dictionaries/lv/directionals.txt +4 -0
- package/resources/libpostal/dictionaries/lv/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/lv/level_types_basement.txt +2 -0
- package/resources/libpostal/dictionaries/lv/level_types_numbered.txt +1 -0
- package/resources/libpostal/dictionaries/lv/level_types_standalone.txt +1 -0
- package/resources/libpostal/dictionaries/lv/number.txt +1 -0
- package/resources/libpostal/dictionaries/lv/place_names.txt +2 -0
- package/resources/libpostal/dictionaries/lv/staircases.txt +2 -0
- package/resources/libpostal/dictionaries/lv/stopwords.txt +1 -0
- package/resources/libpostal/dictionaries/lv/street_types.txt +5 -0
- package/resources/libpostal/dictionaries/lv/unit_directions.txt +2 -0
- package/resources/libpostal/dictionaries/lv/unit_types_numbered.txt +3 -0
- package/resources/libpostal/dictionaries/ms/ambiguous_expansions.txt +1 -0
- package/resources/libpostal/dictionaries/ms/building_types.txt +10 -0
- package/resources/libpostal/dictionaries/ms/company_types.txt +8 -0
- package/resources/libpostal/dictionaries/ms/directionals.txt +9 -0
- package/resources/libpostal/dictionaries/ms/given_names.txt +3 -0
- package/resources/libpostal/dictionaries/ms/level_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/ms/personal_titles.txt +92 -0
- package/resources/libpostal/dictionaries/ms/place_names.txt +145 -0
- package/resources/libpostal/dictionaries/ms/post_office.txt +3 -0
- package/resources/libpostal/dictionaries/ms/qualifiers.txt +6 -0
- package/resources/libpostal/dictionaries/ms/stopwords.txt +1 -0
- package/resources/libpostal/dictionaries/ms/street_types.txt +35 -0
- package/resources/libpostal/dictionaries/ms/synonyms.txt +27 -0
- package/resources/libpostal/dictionaries/mt/ambiguous_expansions.txt +1 -0
- package/resources/libpostal/dictionaries/mt/number.txt +1 -0
- package/resources/libpostal/dictionaries/mt/personal_titles.txt +6 -0
- package/resources/libpostal/dictionaries/mt/place_names.txt +1 -0
- package/resources/libpostal/dictionaries/mt/stopwords.txt +5 -0
- package/resources/libpostal/dictionaries/mt/street_types.txt +6 -0
- package/resources/libpostal/dictionaries/nb/ambiguous_expansions.txt +11 -0
- package/resources/libpostal/dictionaries/nb/building_types.txt +3 -0
- package/resources/libpostal/dictionaries/nb/concatenated_suffixes_inseparable.txt +13 -0
- package/resources/libpostal/dictionaries/nb/concatenated_suffixes_separable.txt +6 -0
- package/resources/libpostal/dictionaries/nb/cross_streets.txt +5 -0
- package/resources/libpostal/dictionaries/nb/directionals.txt +13 -0
- package/resources/libpostal/dictionaries/nb/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/nb/level_types_numbered.txt +5 -0
- package/resources/libpostal/dictionaries/nb/near.txt +7 -0
- package/resources/libpostal/dictionaries/nb/number.txt +1 -0
- package/resources/libpostal/dictionaries/nb/personal_titles.txt +1 -0
- package/resources/libpostal/dictionaries/nb/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/nb/staircases.txt +2 -0
- package/resources/libpostal/dictionaries/nb/stopwords.txt +34 -0
- package/resources/libpostal/dictionaries/nb/street_types.txt +20 -0
- package/resources/libpostal/dictionaries/nb/unit_directions.txt +2 -0
- package/resources/libpostal/dictionaries/nb/unit_types_numbered.txt +1 -0
- package/resources/libpostal/dictionaries/nl/ambiguous_expansions.txt +10 -0
- package/resources/libpostal/dictionaries/nl/building_types.txt +1 -0
- package/resources/libpostal/dictionaries/nl/chains.txt +1 -0
- package/resources/libpostal/dictionaries/nl/concatenated_suffixes_inseparable.txt +3 -0
- package/resources/libpostal/dictionaries/nl/concatenated_suffixes_separable.txt +13 -0
- package/resources/libpostal/dictionaries/nl/cross_streets.txt +4 -0
- package/resources/libpostal/dictionaries/nl/directionals.txt +20 -0
- package/resources/libpostal/dictionaries/nl/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/nl/level_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/nl/level_types_standalone.txt +5 -0
- package/resources/libpostal/dictionaries/nl/near.txt +7 -0
- package/resources/libpostal/dictionaries/nl/number.txt +1 -0
- package/resources/libpostal/dictionaries/nl/personal_titles.txt +32 -0
- package/resources/libpostal/dictionaries/nl/place_names.txt +81 -0
- package/resources/libpostal/dictionaries/nl/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/nl/qualifiers.txt +4 -0
- package/resources/libpostal/dictionaries/nl/staircases.txt +2 -0
- package/resources/libpostal/dictionaries/nl/stopwords.txt +38 -0
- package/resources/libpostal/dictionaries/nl/street_types.txt +22 -0
- package/resources/libpostal/dictionaries/nl/synonyms.txt +2 -0
- package/resources/libpostal/dictionaries/nl/unit_directions.txt +2 -0
- package/resources/libpostal/dictionaries/nl/unit_types_numbered.txt +3 -0
- package/resources/libpostal/dictionaries/oc/elisions.txt +1 -0
- package/resources/libpostal/dictionaries/oc/stopwords.txt +14 -0
- package/resources/libpostal/dictionaries/oc/street_types.txt +5 -0
- package/resources/libpostal/dictionaries/pap/personal_titles.txt +2 -0
- package/resources/libpostal/dictionaries/pap/street_types.txt +2 -0
- package/resources/libpostal/dictionaries/pl/academic_degrees.txt +2 -0
- package/resources/libpostal/dictionaries/pl/ambiguous_expansions.txt +9 -0
- package/resources/libpostal/dictionaries/pl/building_types.txt +1 -0
- package/resources/libpostal/dictionaries/pl/chains.txt +3 -0
- package/resources/libpostal/dictionaries/pl/company_types.txt +4 -0
- package/resources/libpostal/dictionaries/pl/cross_streets.txt +6 -0
- package/resources/libpostal/dictionaries/pl/directionals.txt +8 -0
- package/resources/libpostal/dictionaries/pl/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/pl/house_numbers.txt +1 -0
- package/resources/libpostal/dictionaries/pl/level_types_basement.txt +1 -0
- package/resources/libpostal/dictionaries/pl/level_types_numbered.txt +1 -0
- package/resources/libpostal/dictionaries/pl/level_types_standalone.txt +1 -0
- package/resources/libpostal/dictionaries/pl/near.txt +11 -0
- package/resources/libpostal/dictionaries/pl/number.txt +1 -0
- package/resources/libpostal/dictionaries/pl/personal_suffixes.txt +2 -0
- package/resources/libpostal/dictionaries/pl/personal_titles.txt +54 -0
- package/resources/libpostal/dictionaries/pl/place_names.txt +31 -0
- package/resources/libpostal/dictionaries/pl/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/pl/qualifiers.txt +9 -0
- package/resources/libpostal/dictionaries/pl/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/pl/stopwords.txt +3 -0
- package/resources/libpostal/dictionaries/pl/street_types.txt +12 -0
- package/resources/libpostal/dictionaries/pl/synonyms.txt +19 -0
- package/resources/libpostal/dictionaries/pl/toponyms.txt +1 -0
- package/resources/libpostal/dictionaries/pl/unit_directions.txt +2 -0
- package/resources/libpostal/dictionaries/pl/unit_types_numbered.txt +2 -0
- package/resources/libpostal/dictionaries/pt/ambiguous_expansions.txt +12 -0
- package/resources/libpostal/dictionaries/pt/building_types.txt +7 -0
- package/resources/libpostal/dictionaries/pt/company_types.txt +31 -0
- package/resources/libpostal/dictionaries/pt/cross_streets.txt +8 -0
- package/resources/libpostal/dictionaries/pt/directionals.txt +8 -0
- package/resources/libpostal/dictionaries/pt/elisions.txt +1 -0
- package/resources/libpostal/dictionaries/pt/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/pt/level_types_basement.txt +1 -0
- package/resources/libpostal/dictionaries/pt/level_types_mezzanine.txt +1 -0
- package/resources/libpostal/dictionaries/pt/level_types_numbered.txt +3 -0
- package/resources/libpostal/dictionaries/pt/level_types_standalone.txt +5 -0
- package/resources/libpostal/dictionaries/pt/level_types_sub_basement.txt +1 -0
- package/resources/libpostal/dictionaries/pt/near.txt +13 -0
- package/resources/libpostal/dictionaries/pt/no_number.txt +1 -0
- package/resources/libpostal/dictionaries/pt/number.txt +1 -0
- package/resources/libpostal/dictionaries/pt/personal_suffixes.txt +3 -0
- package/resources/libpostal/dictionaries/pt/personal_titles.txt +101 -0
- package/resources/libpostal/dictionaries/pt/place_names.txt +52 -0
- package/resources/libpostal/dictionaries/pt/post_office.txt +2 -0
- package/resources/libpostal/dictionaries/pt/postcodes.txt +2 -0
- package/resources/libpostal/dictionaries/pt/qualifiers.txt +8 -0
- package/resources/libpostal/dictionaries/pt/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/pt/stopwords.txt +35 -0
- package/resources/libpostal/dictionaries/pt/street_types.txt +53 -0
- package/resources/libpostal/dictionaries/pt/synonyms.txt +21 -0
- package/resources/libpostal/dictionaries/pt/toponyms.txt +28 -0
- package/resources/libpostal/dictionaries/pt/unit_directions.txt +4 -0
- package/resources/libpostal/dictionaries/pt/unit_types_numbered.txt +10 -0
- package/resources/libpostal/dictionaries/pt/unit_types_standalone.txt +1 -0
- package/resources/libpostal/dictionaries/ro/ambiguous_expansions.txt +5 -0
- package/resources/libpostal/dictionaries/ro/cross_streets.txt +5 -0
- package/resources/libpostal/dictionaries/ro/directionals.txt +4 -0
- package/resources/libpostal/dictionaries/ro/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/ro/level_types_numbered.txt +1 -0
- package/resources/libpostal/dictionaries/ro/level_types_standalone.txt +1 -0
- package/resources/libpostal/dictionaries/ro/near.txt +7 -0
- package/resources/libpostal/dictionaries/ro/no_number.txt +1 -0
- package/resources/libpostal/dictionaries/ro/number.txt +1 -0
- package/resources/libpostal/dictionaries/ro/personal_titles.txt +14 -0
- package/resources/libpostal/dictionaries/ro/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/ro/qualifiers.txt +1 -0
- package/resources/libpostal/dictionaries/ro/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/ro/stopwords.txt +2 -0
- package/resources/libpostal/dictionaries/ro/street_types.txt +13 -0
- package/resources/libpostal/dictionaries/ro/unit_types_numbered.txt +4 -0
- package/resources/libpostal/dictionaries/ru/ambiguous_expansions.txt +18 -0
- package/resources/libpostal/dictionaries/ru/building_types.txt +2 -0
- package/resources/libpostal/dictionaries/ru/chains.txt +42 -0
- package/resources/libpostal/dictionaries/ru/company_types.txt +9 -0
- package/resources/libpostal/dictionaries/ru/cross_streets.txt +11 -0
- package/resources/libpostal/dictionaries/ru/directionals.txt +16 -0
- package/resources/libpostal/dictionaries/ru/entrances.txt +2 -0
- package/resources/libpostal/dictionaries/ru/house_numbers.txt +2 -0
- package/resources/libpostal/dictionaries/ru/level_types_basement.txt +4 -0
- package/resources/libpostal/dictionaries/ru/level_types_numbered.txt +4 -0
- package/resources/libpostal/dictionaries/ru/level_types_standalone.txt +4 -0
- package/resources/libpostal/dictionaries/ru/near.txt +26 -0
- package/resources/libpostal/dictionaries/ru/no_number.txt +1 -0
- package/resources/libpostal/dictionaries/ru/number.txt +2 -0
- package/resources/libpostal/dictionaries/ru/personal_titles.txt +6 -0
- package/resources/libpostal/dictionaries/ru/place_names.txt +160 -0
- package/resources/libpostal/dictionaries/ru/post_office.txt +2 -0
- package/resources/libpostal/dictionaries/ru/qualifiers.txt +31 -0
- package/resources/libpostal/dictionaries/ru/staircases.txt +2 -0
- package/resources/libpostal/dictionaries/ru/stopwords.txt +1 -0
- package/resources/libpostal/dictionaries/ru/street_types.txt +28 -0
- package/resources/libpostal/dictionaries/ru/unit_directions.txt +4 -0
- package/resources/libpostal/dictionaries/ru/unit_types_numbered.txt +10 -0
- package/resources/libpostal/dictionaries/si/place_names.txt +8 -0
- package/resources/libpostal/dictionaries/si/qualifiers.txt +4 -0
- package/resources/libpostal/dictionaries/si/street_types.txt +2 -0
- package/resources/libpostal/dictionaries/sk/ambiguous_expansions.txt +6 -0
- package/resources/libpostal/dictionaries/sk/cross_streets.txt +8 -0
- package/resources/libpostal/dictionaries/sk/directionals.txt +21 -0
- package/resources/libpostal/dictionaries/sk/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/sk/house_numbers.txt +1 -0
- package/resources/libpostal/dictionaries/sk/level_types_basement.txt +1 -0
- package/resources/libpostal/dictionaries/sk/level_types_numbered.txt +4 -0
- package/resources/libpostal/dictionaries/sk/level_types_standalone.txt +1 -0
- package/resources/libpostal/dictionaries/sk/near.txt +13 -0
- package/resources/libpostal/dictionaries/sk/number.txt +1 -0
- package/resources/libpostal/dictionaries/sk/personal_titles.txt +16 -0
- package/resources/libpostal/dictionaries/sk/place_names.txt +28 -0
- package/resources/libpostal/dictionaries/sk/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/sk/qualifiers.txt +3 -0
- package/resources/libpostal/dictionaries/sk/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/sk/stopwords.txt +29 -0
- package/resources/libpostal/dictionaries/sk/street_types.txt +20 -0
- package/resources/libpostal/dictionaries/sk/toponyms.txt +1 -0
- package/resources/libpostal/dictionaries/sk/unit_directions.txt +2 -0
- package/resources/libpostal/dictionaries/sk/unit_types_numbered.txt +3 -0
- package/resources/libpostal/dictionaries/sl/ambiguous_expansions.txt +6 -0
- package/resources/libpostal/dictionaries/sl/chains.txt +1 -0
- package/resources/libpostal/dictionaries/sl/cross_streets.txt +5 -0
- package/resources/libpostal/dictionaries/sl/directionals.txt +4 -0
- package/resources/libpostal/dictionaries/sl/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/sl/level_types_basement.txt +1 -0
- package/resources/libpostal/dictionaries/sl/level_types_numbered.txt +1 -0
- package/resources/libpostal/dictionaries/sl/level_types_standalone.txt +2 -0
- package/resources/libpostal/dictionaries/sl/near.txt +7 -0
- package/resources/libpostal/dictionaries/sl/no_number.txt +1 -0
- package/resources/libpostal/dictionaries/sl/number.txt +1 -0
- package/resources/libpostal/dictionaries/sl/personal_titles.txt +3 -0
- package/resources/libpostal/dictionaries/sl/place_names.txt +1 -0
- package/resources/libpostal/dictionaries/sl/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/sl/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/sl/stopwords.txt +7 -0
- package/resources/libpostal/dictionaries/sl/street_types.txt +4 -0
- package/resources/libpostal/dictionaries/sl/synonyms.txt +13 -0
- package/resources/libpostal/dictionaries/sl/unit_directions.txt +2 -0
- package/resources/libpostal/dictionaries/sl/unit_types_numbered.txt +3 -0
- package/resources/libpostal/dictionaries/sr/ambiguous_expansions.txt +9 -0
- package/resources/libpostal/dictionaries/sr/cross_streets.txt +10 -0
- package/resources/libpostal/dictionaries/sr/directionals.txt +8 -0
- package/resources/libpostal/dictionaries/sr/entrances.txt +2 -0
- package/resources/libpostal/dictionaries/sr/level_types_basement.txt +2 -0
- package/resources/libpostal/dictionaries/sr/level_types_numbered.txt +6 -0
- package/resources/libpostal/dictionaries/sr/level_types_standalone.txt +4 -0
- package/resources/libpostal/dictionaries/sr/number.txt +2 -0
- package/resources/libpostal/dictionaries/sr/personal_titles.txt +14 -0
- package/resources/libpostal/dictionaries/sr/place_names.txt +12 -0
- package/resources/libpostal/dictionaries/sr/post_office.txt +6 -0
- package/resources/libpostal/dictionaries/sr/staircases.txt +2 -0
- package/resources/libpostal/dictionaries/sr/stopwords.txt +2 -0
- package/resources/libpostal/dictionaries/sr/street_types.txt +17 -0
- package/resources/libpostal/dictionaries/sr/unit_directions.txt +4 -0
- package/resources/libpostal/dictionaries/sr/unit_types_numbered.txt +8 -0
- package/resources/libpostal/dictionaries/sv/ambiguous_expansions.txt +9 -0
- package/resources/libpostal/dictionaries/sv/company_types.txt +4 -0
- package/resources/libpostal/dictionaries/sv/concatenated_suffixes_inseparable.txt +5 -0
- package/resources/libpostal/dictionaries/sv/concatenated_suffixes_separable.txt +8 -0
- package/resources/libpostal/dictionaries/sv/cross_streets.txt +5 -0
- package/resources/libpostal/dictionaries/sv/directionals.txt +8 -0
- package/resources/libpostal/dictionaries/sv/entrances.txt +2 -0
- package/resources/libpostal/dictionaries/sv/level_types_numbered.txt +7 -0
- package/resources/libpostal/dictionaries/sv/level_types_standalone.txt +5 -0
- package/resources/libpostal/dictionaries/sv/near.txt +11 -0
- package/resources/libpostal/dictionaries/sv/number.txt +1 -0
- package/resources/libpostal/dictionaries/sv/personal_titles.txt +3 -0
- package/resources/libpostal/dictionaries/sv/post_office.txt +2 -0
- package/resources/libpostal/dictionaries/sv/staircases.txt +3 -0
- package/resources/libpostal/dictionaries/sv/stopwords.txt +25 -0
- package/resources/libpostal/dictionaries/sv/street_types.txt +13 -0
- package/resources/libpostal/dictionaries/sv/synonyms.txt +4 -0
- package/resources/libpostal/dictionaries/sv/unit_directions.txt +4 -0
- package/resources/libpostal/dictionaries/sv/unit_types_numbered.txt +5 -0
- package/resources/libpostal/dictionaries/th/chains.txt +2 -0
- package/resources/libpostal/dictionaries/th/street_types.txt +10 -0
- package/resources/libpostal/dictionaries/tr/ambiguous_expansions.txt +5 -0
- package/resources/libpostal/dictionaries/tr/chains.txt +1 -0
- package/resources/libpostal/dictionaries/tr/cross_streets.txt +4 -0
- package/resources/libpostal/dictionaries/tr/directionals.txt +4 -0
- package/resources/libpostal/dictionaries/tr/entrances.txt +1 -0
- package/resources/libpostal/dictionaries/tr/level_types_basement.txt +1 -0
- package/resources/libpostal/dictionaries/tr/level_types_mezzanine.txt +1 -0
- package/resources/libpostal/dictionaries/tr/level_types_numbered.txt +1 -0
- package/resources/libpostal/dictionaries/tr/level_types_standalone.txt +1 -0
- package/resources/libpostal/dictionaries/tr/number.txt +2 -0
- package/resources/libpostal/dictionaries/tr/personal_titles.txt +4 -0
- package/resources/libpostal/dictionaries/tr/place_names.txt +2 -0
- package/resources/libpostal/dictionaries/tr/post_office.txt +1 -0
- package/resources/libpostal/dictionaries/tr/qualifiers.txt +5 -0
- package/resources/libpostal/dictionaries/tr/staircases.txt +1 -0
- package/resources/libpostal/dictionaries/tr/stopwords.txt +1 -0
- package/resources/libpostal/dictionaries/tr/street_types.txt +10 -0
- package/resources/libpostal/dictionaries/tr/unit_directions.txt +2 -0
- package/resources/libpostal/dictionaries/tr/unit_types_numbered.txt +4 -0
- package/resources/libpostal/dictionaries/uk/ambiguous_expansions.txt +8 -0
- package/resources/libpostal/dictionaries/uk/chains.txt +7 -0
- package/resources/libpostal/dictionaries/uk/cross_streets.txt +10 -0
- package/resources/libpostal/dictionaries/uk/directionals.txt +8 -0
- package/resources/libpostal/dictionaries/uk/entrances.txt +2 -0
- package/resources/libpostal/dictionaries/uk/house_numbers.txt +4 -0
- package/resources/libpostal/dictionaries/uk/level_types_basement.txt +4 -0
- package/resources/libpostal/dictionaries/uk/level_types_numbered.txt +4 -0
- package/resources/libpostal/dictionaries/uk/level_types_standalone.txt +4 -0
- package/resources/libpostal/dictionaries/uk/near.txt +24 -0
- package/resources/libpostal/dictionaries/uk/number.txt +2 -0
- package/resources/libpostal/dictionaries/uk/personal_titles.txt +9 -0
- package/resources/libpostal/dictionaries/uk/place_names.txt +161 -0
- package/resources/libpostal/dictionaries/uk/post_office.txt +2 -0
- package/resources/libpostal/dictionaries/uk/qualifiers.txt +8 -0
- package/resources/libpostal/dictionaries/uk/staircases.txt +2 -0
- package/resources/libpostal/dictionaries/uk/stopwords.txt +2 -0
- package/resources/libpostal/dictionaries/uk/street_types.txt +26 -0
- package/resources/libpostal/dictionaries/uk/unit_directions.txt +4 -0
- package/resources/libpostal/dictionaries/uk/unit_types_numbered.txt +10 -0
- package/resources/libpostal/dictionaries/ur/street_types.txt +7 -0
- package/resources/libpostal/dictionaries/vi/ambiguous_expansions.txt +3 -0
- package/resources/libpostal/dictionaries/vi/personal_titles.txt +1 -0
- package/resources/libpostal/dictionaries/vi/place_names.txt +29 -0
- package/resources/libpostal/dictionaries/vi/qualifiers.txt +5 -0
- package/resources/libpostal/dictionaries/vi/street_types.txt +10 -0
- package/resources/libpostal/dictionaries/zh/building_types.txt +2 -0
- package/resources/libpostal/dictionaries/zh/chains.txt +2 -0
- package/resources/libpostal/dictionaries/zh/directionals.txt +20 -0
- package/resources/libpostal/dictionaries/zh/level_types_numbered.txt +5 -0
- package/resources/libpostal/dictionaries/zh/number.txt +3 -0
- package/resources/libpostal/dictionaries/zh/place_names.txt +2 -0
- package/resources/libpostal/dictionaries/zh/post_office.txt +3 -0
- package/resources/libpostal/dictionaries/zh/postcodes.txt +3 -0
- package/resources/libpostal/dictionaries/zh/qualifiers.txt +19 -0
- package/resources/libpostal/dictionaries/zh/stopwords.txt +2 -0
- package/resources/libpostal/dictionaries/zh/street_types.txt +30 -0
- package/resources/libpostal/dictionaries/zh/unit_types_numbered.txt +2 -0
- package/resources/libpostal/libpostal.test.ts +325 -0
- package/resources/libpostal/libpostal.ts +106 -0
- package/resources/libpostal/resources-download.sh +8 -0
- package/resources/pelias/dictionaries/libpostal/af/personal_titles.txt +2 -0
- package/resources/pelias/dictionaries/libpostal/all/surnames.txt +1 -0
- package/resources/pelias/dictionaries/libpostal/de/concatenated_suffixes_separable.txt +3 -0
- package/resources/pelias/dictionaries/libpostal/de/place_names.txt +1 -0
- package/resources/pelias/dictionaries/libpostal/de/street_types.txt +2 -0
- package/resources/pelias/dictionaries/libpostal/en/place_names.txt +7 -0
- package/resources/pelias/dictionaries/libpostal/en/road_types.txt +18 -0
- package/resources/pelias/dictionaries/libpostal/en/street_names.txt +2 -0
- package/resources/pelias/dictionaries/libpostal/en/street_types.txt +16 -0
- package/resources/pelias/dictionaries/libpostal/en/unit_types_numbered.txt +3 -0
- package/resources/pelias/dictionaries/libpostal/es/street_types.txt +2 -0
- package/resources/pelias/dictionaries/libpostal/fr/personal_titles.txt +4 -0
- package/resources/pelias/dictionaries/libpostal/fr/street_types.txt +5 -0
- package/resources/pelias/dictionaries/libpostal/it/street_types.txt +2 -0
- package/resources/pelias/dictionaries/libpostal/ko/street_types.txt +1 -0
- package/resources/pelias/dictionaries/libpostal/nb/concatenated_suffixes_inseparable.txt +40 -0
- package/resources/pelias/dictionaries/libpostal/nb/directionals.txt +8 -0
- package/resources/pelias/dictionaries/libpostal/nb/street_types.txt +36 -0
- package/resources/pelias/dictionaries/libpostal/nl/concatenated_suffixes_inseparable.txt +1 -0
- package/resources/pelias/dictionaries/libpostal/nl/concatenated_suffixes_separable.txt +8 -0
- package/resources/pelias/dictionaries/libpostal/nl/directionals.txt +4 -0
- package/resources/pelias/dictionaries/libpostal/nl/personal_suffixes.txt +4 -0
- package/resources/pelias/dictionaries/libpostal/nl/personal_titles.txt +43 -0
- package/resources/pelias/dictionaries/libpostal/pl/place_names.txt +1 -0
- package/resources/pelias/dictionaries/libpostal/pl/synonyms.txt +1 -0
- package/resources/pelias/dictionaries/libpostal/sv/concatenated_suffixes_separable.txt +1 -0
- package/resources/pelias/dictionaries/whosonfirst/locality/name:eng_x_preferred.txt +81 -0
- package/resources/pelias/dictionaries/whosonfirst/locality/name:fra_x_preferred.txt +2 -0
- package/resources/pelias/dictionaries/whosonfirst/region/name:eng_x_preferred.txt +2 -0
- package/resources/pelias/pelias.ts +12 -0
- package/resources/whosonfirst/dictionaries/country/name:eng_x_preferred.txt +220 -0
- package/resources/whosonfirst/dictionaries/country/wof:country.txt +215 -0
- package/resources/whosonfirst/dictionaries/country/wof:country_alpha3.txt +216 -0
- package/resources/whosonfirst/dictionaries/dependency/name:eng_x_preferred.txt +42 -0
- package/resources/whosonfirst/dictionaries/dependency/wof:shortcode.txt +34 -0
- package/resources/whosonfirst/dictionaries/locality/name:eng_x_preferred.txt +261365 -0
- package/resources/whosonfirst/dictionaries/locality/name:fra_x_preferred.txt +77631 -0
- package/resources/whosonfirst/dictionaries/region/abrv:eng_x_preferred.txt +441 -0
- package/resources/whosonfirst/dictionaries/region/name:eng_x_preferred.txt +4517 -0
- package/resources/whosonfirst/dictionaries/region/wof:shortcode.txt +839 -0
- package/resources/whosonfirst/generate.ts +135 -0
- package/resources/whosonfirst/placetypes.ts +47 -0
- package/resources/whosonfirst/whosonfirst.ts +79 -0
- package/sdk/repo.ts +66 -0
- package/sdk/test/utils/index.ts +42 -0
- package/server/index.ts +111 -0
- package/server/routes/parse.ts +62 -0
- package/server/static/index.html +279 -0
- package/server/types/locals.d.ts +19 -0
- package/solver/ExclusiveCartesianSolver.ts +74 -0
- package/solver/HouseNumberPositionPenalty.ts +80 -0
- package/solver/InvalidSolutionFilter.ts +34 -0
- package/solver/LeadingAreaDeclassifier.ts +41 -0
- package/solver/MultiStreetSolver.ts +142 -0
- package/solver/MustNotFollowFilter.test.ts +38 -0
- package/solver/MustNotFollowFilter.ts +39 -0
- package/solver/MustNotPreceedFilter.test.ts +38 -0
- package/solver/MustNotPreceedFilter.ts +39 -0
- package/solver/OrphanedLevelTypeDeclassifier.ts +30 -0
- package/solver/OrphanedUnitTypeDeclassifier.test.ts +70 -0
- package/solver/OrphanedUnitTypeDeclassifier.ts +32 -0
- package/solver/PostcodePositionPenalty.ts +49 -0
- package/solver/Solution.test.ts +46 -0
- package/solver/Solution.ts +151 -0
- package/solver/SolutionPair.ts +27 -0
- package/solver/SubsetFilter.test.ts +72 -0
- package/solver/SubsetFilter.ts +33 -0
- package/solver/TokenDistanceFilter.ts +38 -0
- package/solver/super/BaseSolver.ts +13 -0
- package/solver/super/HashMapSolver.ts +91 -0
- package/test/functional/address.aus.test.ts +57 -0
- package/test/functional/address.bra.test.ts +16 -0
- package/test/functional/address.cze.test.ts +88 -0
- package/test/functional/address.deu.test.ts +64 -0
- package/test/functional/address.esp.test.ts +14 -0
- package/test/functional/address.fra.test.ts +89 -0
- package/test/functional/address.gbr.test.ts +19 -0
- package/test/functional/address.hrv.test.ts +9 -0
- package/test/functional/address.ind.test.ts +15 -0
- package/test/functional/address.nld.test.ts +79 -0
- package/test/functional/address.nor.test.ts +25 -0
- package/test/functional/address.nzd.test.ts +63 -0
- package/test/functional/address.pol.test.ts +23 -0
- package/test/functional/address.prt.test.ts +47 -0
- package/test/functional/address.rom.test.ts +25 -0
- package/test/functional/address.svk.test.ts +14 -0
- package/test/functional/address.swe.test.ts +18 -0
- package/test/functional/address.usa.test.ts +284 -0
- package/test/functional/addressit.aus.test.ts +62 -0
- package/test/functional/addressit.usa.test.ts +117 -0
- package/test/functional/compound_street.test.ts +16 -0
- package/test/functional/functional.test.ts +80 -0
- package/test/functional/intersection.test.ts +410 -0
- package/test/functional/libpostal.test.ts +15 -0
- package/test/functional/place.fra.test.ts +107 -0
- package/test/functional/transit.test.ts +11 -0
- package/test/functional/venue.usa.test.ts +26 -0
- package/test/openaddresses.ts +136 -0
- package/tokenization/FST.test.ts +275 -0
- package/tokenization/FST.ts +163 -0
- package/tokenization/Graph.test.ts +182 -0
- package/tokenization/Graph.ts +96 -0
- package/tokenization/Span.test.ts +320 -0
- package/tokenization/Span.ts +172 -0
- package/tokenization/Tokenizer.test.ts +156 -0
- package/tokenization/Tokenizer.ts +83 -0
- package/tokenization/index.ts +11 -0
- package/tokenization/normalizer.test.ts +61 -0
- package/tokenization/normalizer.ts +38 -0
- package/tokenization/permutate.test.ts +368 -0
- package/tokenization/permutate.ts +97 -0
- package/tokenization/split.test.ts +84 -0
- package/tokenization/split.ts +54 -0
- package/tokenization/split_funcs.ts +45 -0
- package/tokenization/split_funcs_test.ts +38 -0
- package/tsconfig.json +11 -0
|
@@ -0,0 +1,2468 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"zipex": "ASCN 1ZZ",
|
|
4
|
+
"key": "AC",
|
|
5
|
+
"name": "ASCENSION ISLAND",
|
|
6
|
+
"fmt": "%N%n%O%n%A%n%C%n%Z",
|
|
7
|
+
"zip": "ASCN 1ZZ",
|
|
8
|
+
"id": "data/AC"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"zipex": "AD100,AD501,AD700",
|
|
12
|
+
"sub_isoids": "07~02~03~08~04~05~06",
|
|
13
|
+
"key": "AD",
|
|
14
|
+
"name": "ANDORRA",
|
|
15
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
16
|
+
"sub_names": "Andorra la Vella~Canillo~Encamp~Escaldes-Engordany~La Massana~Ordino~Sant Julià de Lòria",
|
|
17
|
+
"sub_zipexs": "AD500~AD100~AD200~AD700~AD400~AD300~AD600",
|
|
18
|
+
"lang": "ca",
|
|
19
|
+
"zip": "AD[1-7]0\\d",
|
|
20
|
+
"sub_keys": "Parròquia d'Andorra la Vella~Canillo~Encamp~Escaldes-Engordany~La Massana~Ordino~Sant Julià de Lòria",
|
|
21
|
+
"languages": "ca",
|
|
22
|
+
"posturl": "http://www.correos.es/comun/CodigosPostales/1010_s-CodPostal.asp?Provincia=",
|
|
23
|
+
"sub_zips": "AD50[01]~AD10[01]~AD20[01]~AD70[01]~AD40[01]~AD30[01]~AD60[01]",
|
|
24
|
+
"id": "data/AD"
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
{
|
|
28
|
+
"sub_lnames": "Abu Dhabi~Sharjah~Fujairah~Umm Al Quwain~Dubai~Ras al Khaimah~Ajman",
|
|
29
|
+
"lfmt": "%N%n%O%n%A%n%S",
|
|
30
|
+
"require": "AS",
|
|
31
|
+
"key": "AE",
|
|
32
|
+
"name": "UNITED ARAB EMIRATES",
|
|
33
|
+
"fmt": "%N%n%O%n%A%n%S",
|
|
34
|
+
"lang": "ar",
|
|
35
|
+
"sub_isoids": "AZ~SH~FU~UQ~DU~RK~AJ",
|
|
36
|
+
"sub_names": "أبو ظبي~الشارقة~الفجيرة~ام القيوين~دبي~رأس الخيمة~عجمان",
|
|
37
|
+
"sub_keys": "أبو ظبي~إمارة الشارقةّ~الفجيرة~ام القيوين~إمارة دبيّ~إمارة رأس الخيمة~عجمان",
|
|
38
|
+
"languages": "ar",
|
|
39
|
+
"state_name_type": "emirate",
|
|
40
|
+
"id": "data/AE"
|
|
41
|
+
},
|
|
42
|
+
|
|
43
|
+
{
|
|
44
|
+
"zipex": "1001,2601,3801",
|
|
45
|
+
"key": "AF",
|
|
46
|
+
"name": "AFGHANISTAN",
|
|
47
|
+
"fmt": "%N%n%O%n%A%n%C%n%Z",
|
|
48
|
+
"zip": "\\d{4}",
|
|
49
|
+
"id": "data/AF"
|
|
50
|
+
},
|
|
51
|
+
|
|
52
|
+
{
|
|
53
|
+
"key": "AG",
|
|
54
|
+
"name": "ANTIGUA AND BARBUDA",
|
|
55
|
+
"require": "A",
|
|
56
|
+
"id": "data/AG"
|
|
57
|
+
},
|
|
58
|
+
|
|
59
|
+
{
|
|
60
|
+
"zipex": "2640",
|
|
61
|
+
"key": "AI",
|
|
62
|
+
"name": "ANGUILLA",
|
|
63
|
+
"fmt": "%N%n%O%n%A%n%C%n%Z",
|
|
64
|
+
"zip": "(?:AI-)?2640",
|
|
65
|
+
"id": "data/AI"
|
|
66
|
+
},
|
|
67
|
+
|
|
68
|
+
{
|
|
69
|
+
"zipex": "1001,1017,3501",
|
|
70
|
+
"key": "AL",
|
|
71
|
+
"name": "ALBANIA",
|
|
72
|
+
"fmt": "%N%n%O%n%A%n%Z%n%C",
|
|
73
|
+
"zip": "\\d{4}",
|
|
74
|
+
"id": "data/AL"
|
|
75
|
+
},
|
|
76
|
+
|
|
77
|
+
{
|
|
78
|
+
"sub_lnames": "Aragatsotn~Ararat~Armavir~Gegharkunik~Yerevan~Lori~Kotayk~Shirak~Syunik~Vayots Dzor~Tavush",
|
|
79
|
+
"lfmt": "%N%n%O%n%A%n%Z%n%C%n%S",
|
|
80
|
+
"zipex": "375010,0002,0010",
|
|
81
|
+
"sub_isoids": "AG~AR~AV~GR~ER~LO~KT~SH~SU~VD~TV",
|
|
82
|
+
"key": "AM",
|
|
83
|
+
"name": "ARMENIA",
|
|
84
|
+
"fmt": "%N%n%O%n%A%n%Z%n%C%n%S",
|
|
85
|
+
"sub_zipexs": "0201,0514~0601,0823~0901,1149~1201,1626~0000,0099~1701,2117~2201,2506~2601,3126~3201,3519~3601,3810~3901,4216",
|
|
86
|
+
"lang": "hy",
|
|
87
|
+
"zip": "(?:37)?\\d{4}",
|
|
88
|
+
"sub_keys": "Արագածոտն~Արարատ~Արմավիր~Գեղարքունիք~Երևան~Լոռի~Կոտայք~Շիրակ~Սյունիք~Վայոց ձոր~Տավուշ",
|
|
89
|
+
"languages": "hy",
|
|
90
|
+
"sub_zips": "0[2-5]~0[6-8]~09|1[01]~1[2-6]~00~1[7-9]|2[01]~2[2-5]~2[6-9]|3[01]~3[2-5]~3[6-8]~39|4[0-2]",
|
|
91
|
+
"id": "data/AM"
|
|
92
|
+
},
|
|
93
|
+
|
|
94
|
+
{ "key": "AO", "name": "ANGOLA", "id": "data/AO" },
|
|
95
|
+
|
|
96
|
+
{ "key": "AQ", "name": "ANTARCTICA", "id": "data/AQ" },
|
|
97
|
+
|
|
98
|
+
{
|
|
99
|
+
"zipex": "C1070AAM,C1000WAM,B1000TBU,X5187XAB",
|
|
100
|
+
"sub_isoids": "B~K~H~U~C~X~W~E~P~Y~L~F~M~N~Q~R~A~J~D~Z~S~G~V~T",
|
|
101
|
+
"key": "AR",
|
|
102
|
+
"name": "ARGENTINA",
|
|
103
|
+
"fmt": "%N%n%O%n%A%n%Z %C%n%S",
|
|
104
|
+
"sub_names": "Buenos Aires~Catamarca~Chaco~Chubut~Ciudad Autónoma de Buenos Aires~Córdoba~Corrientes~Entre Ríos~Formosa~Jujuy~La Pampa~La Rioja~Mendoza~Misiones~Neuquén~Río Negro~Salta~San Juan~San Luis~Santa Cruz~Santa Fe~Santiago del Estero~Tierra del Fuego~Tucumán",
|
|
105
|
+
"posturl": "http://www.correoargentino.com.ar/formularios/cpa",
|
|
106
|
+
"lang": "es",
|
|
107
|
+
"zip": "((?:[A-HJ-NP-Z])?\\d{4})([A-Z]{3})?",
|
|
108
|
+
"sub_keys": "Buenos Aires~Catamarca~Chaco~Chubut~Ciudad Autónoma de Buenos Aires~Córdoba~Corrientes~Entre Ríos~Formosa~Jujuy~La Pampa~La Rioja~Mendoza~Misiones~Neuquén~Río Negro~Salta~San Juan~San Luis~Santa Cruz~Santa Fe~Santiago del Estero~Tierra del Fuego~Tucumán",
|
|
109
|
+
"languages": "es",
|
|
110
|
+
"upper": "ACZ",
|
|
111
|
+
"sub_zips": "B?[1-36-8]~K?[45]~H?3~U?[89]~C?1~X?[235-8]~W?3~E?[1-3]~P?[37]~Y?4~L?[3568]~F?5~M?[56]~N?3~Q?[38]~R?[89]~A?[34]~J?5~D?[4-6]~Z?[89]~S?[2368]~G?[2-5]~V?9~T?[45]",
|
|
112
|
+
"id": "data/AR"
|
|
113
|
+
},
|
|
114
|
+
|
|
115
|
+
{
|
|
116
|
+
"zipex": "96799",
|
|
117
|
+
"key": "AS",
|
|
118
|
+
"name": "AMERICAN SAMOA",
|
|
119
|
+
"fmt": "%N%n%O%n%A%n%C %S %Z",
|
|
120
|
+
"zip_name_type": "zip",
|
|
121
|
+
"posturl": "http://zip4.usps.com/zip4/welcome.jsp",
|
|
122
|
+
"require": "ACSZ",
|
|
123
|
+
"state_name_type": "state",
|
|
124
|
+
"zip": "(96799)(?:[ \\-](\\d{4}))?",
|
|
125
|
+
"upper": "ACNOS",
|
|
126
|
+
"id": "data/AS"
|
|
127
|
+
},
|
|
128
|
+
|
|
129
|
+
{
|
|
130
|
+
"zipex": "1010,3741",
|
|
131
|
+
"key": "AT",
|
|
132
|
+
"name": "AUSTRIA",
|
|
133
|
+
"fmt": "%O%n%N%n%A%n%Z %C",
|
|
134
|
+
"require": "ACZ",
|
|
135
|
+
"zip": "\\d{4}",
|
|
136
|
+
"posturl": "http://www.post.at/post_subsite_postleitzahlfinder.php",
|
|
137
|
+
"id": "data/AT"
|
|
138
|
+
},
|
|
139
|
+
|
|
140
|
+
{
|
|
141
|
+
"zipex": "2060,3171,6430,4000,4006,3001",
|
|
142
|
+
"require": "ACSZ",
|
|
143
|
+
"key": "AU",
|
|
144
|
+
"name": "AUSTRALIA",
|
|
145
|
+
"fmt": "%O%n%N%n%A%n%C %S %Z",
|
|
146
|
+
"state_name_type": "state",
|
|
147
|
+
"sub_names": "Australian Capital Territory~New South Wales~Northern Territory~Queensland~South Australia~Tasmania~Victoria~Western Australia",
|
|
148
|
+
"posturl": "http://www1.auspost.com.au/postcodes/",
|
|
149
|
+
"locality_name_type": "suburb",
|
|
150
|
+
"lang": "en",
|
|
151
|
+
"sub_isoids": "ACT~NSW~NT~QLD~SA~TAS~VIC~WA",
|
|
152
|
+
"sub_zipexs": "0200,2540,2618,2999~1000,2888,3585,3707~0800,0999~4000,9999~5000~7000,7999~3000,8000~6000,0872",
|
|
153
|
+
"zip": "\\d{4}",
|
|
154
|
+
"sub_keys": "ACT~NSW~NT~QLD~SA~TAS~VIC~WA",
|
|
155
|
+
"languages": "en",
|
|
156
|
+
"upper": "CS",
|
|
157
|
+
"sub_zips": "29|2540|260|261[0-8]|02|2620~1|2[0-57-8]|26[2-9]|261[189]|3500|358[56]|3644|3707~0[89]~[49]~5|0872~7~[38]~6|0872",
|
|
158
|
+
"id": "data/AU"
|
|
159
|
+
},
|
|
160
|
+
|
|
161
|
+
{ "key": "AW", "name": "ARUBA", "id": "data/AW" },
|
|
162
|
+
|
|
163
|
+
{
|
|
164
|
+
"zipex": "22150,22550,22240,22710,22270,22730,22430",
|
|
165
|
+
"postprefix": "AX-",
|
|
166
|
+
"key": "AX",
|
|
167
|
+
"name": "FINLAND",
|
|
168
|
+
"fmt": "%O%n%N%n%A%nAX-%Z %C%nÅLAND",
|
|
169
|
+
"require": "ACZ",
|
|
170
|
+
"zip": "22\\d{3}",
|
|
171
|
+
"posturl": "http://www.posten.ax/department.con?iPage=123",
|
|
172
|
+
"id": "data/AX"
|
|
173
|
+
},
|
|
174
|
+
|
|
175
|
+
{
|
|
176
|
+
"zipex": "1000",
|
|
177
|
+
"key": "AZ",
|
|
178
|
+
"name": "AZERBAIJAN",
|
|
179
|
+
"fmt": "%N%n%O%n%A%nAZ %Z %C",
|
|
180
|
+
"postprefix": "AZ ",
|
|
181
|
+
"zip": "\\d{4}",
|
|
182
|
+
"id": "data/AZ"
|
|
183
|
+
},
|
|
184
|
+
|
|
185
|
+
{
|
|
186
|
+
"zipex": "71000",
|
|
187
|
+
"key": "BA",
|
|
188
|
+
"name": "BOSNIA AND HERZEGOVINA",
|
|
189
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
190
|
+
"zip": "\\d{5}",
|
|
191
|
+
"id": "data/BA"
|
|
192
|
+
},
|
|
193
|
+
|
|
194
|
+
{
|
|
195
|
+
"zipex": "BB23026,BB22025",
|
|
196
|
+
"key": "BB",
|
|
197
|
+
"name": "BARBADOS",
|
|
198
|
+
"fmt": "%N%n%O%n%A%n%C, %S %Z",
|
|
199
|
+
"zip": "BB\\d{5}",
|
|
200
|
+
"state_name_type": "parish",
|
|
201
|
+
"id": "data/BB"
|
|
202
|
+
},
|
|
203
|
+
|
|
204
|
+
{
|
|
205
|
+
"zipex": "1340,1000",
|
|
206
|
+
"key": "BD",
|
|
207
|
+
"name": "BANGLADESH",
|
|
208
|
+
"fmt": "%N%n%O%n%A%n%C - %Z",
|
|
209
|
+
"zip": "\\d{4}",
|
|
210
|
+
"posturl": "http://www.bangladeshpost.gov.bd/PostCode.asp",
|
|
211
|
+
"id": "data/BD"
|
|
212
|
+
},
|
|
213
|
+
|
|
214
|
+
{
|
|
215
|
+
"zipex": "4000,1000",
|
|
216
|
+
"key": "BE",
|
|
217
|
+
"name": "BELGIUM",
|
|
218
|
+
"fmt": "%O%n%N%n%A%n%Z %C",
|
|
219
|
+
"require": "ACZ",
|
|
220
|
+
"zip": "\\d{4}",
|
|
221
|
+
"posturl": "http://www.post.be/site/nl/residential/customerservice/search/postal_codes.html",
|
|
222
|
+
"id": "data/BE"
|
|
223
|
+
},
|
|
224
|
+
|
|
225
|
+
{
|
|
226
|
+
"key": "BF",
|
|
227
|
+
"name": "BURKINA FASO",
|
|
228
|
+
"fmt": "%N%n%O%n%A%n%C %X",
|
|
229
|
+
"id": "data/BF"
|
|
230
|
+
},
|
|
231
|
+
|
|
232
|
+
{
|
|
233
|
+
"zipex": "1000,1700",
|
|
234
|
+
"key": "BG",
|
|
235
|
+
"name": "BULGARIA (REP.)",
|
|
236
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
237
|
+
"zip": "\\d{4}",
|
|
238
|
+
"posturl": "http://www.bgpost.bg/?cid=5",
|
|
239
|
+
"id": "data/BG"
|
|
240
|
+
},
|
|
241
|
+
|
|
242
|
+
{
|
|
243
|
+
"zipex": "317",
|
|
244
|
+
"key": "BH",
|
|
245
|
+
"name": "BAHRAIN",
|
|
246
|
+
"fmt": "%N%n%O%n%A%n%C %Z",
|
|
247
|
+
"zip": "(?:\\d|1[0-2])\\d{2}",
|
|
248
|
+
"id": "data/BH"
|
|
249
|
+
},
|
|
250
|
+
|
|
251
|
+
{ "key": "BI", "name": "BURUNDI", "id": "data/BI" },
|
|
252
|
+
|
|
253
|
+
{ "key": "BJ", "name": "BENIN", "upper": "AC", "id": "data/BJ" },
|
|
254
|
+
|
|
255
|
+
{
|
|
256
|
+
"zipex": "97100",
|
|
257
|
+
"key": "BL",
|
|
258
|
+
"name": "SAINT BARTHELEMY",
|
|
259
|
+
"fmt": "%O%n%N%n%A%n%Z %C %X",
|
|
260
|
+
"posturl": "http://www.laposte.fr/Particulier/Utiliser-nos-outils-pratiques/Outils-et-documents/Trouvez-un-code-postal",
|
|
261
|
+
"require": "ACZ",
|
|
262
|
+
"zip": "9[78][01]\\d{2}",
|
|
263
|
+
"upper": "ACX",
|
|
264
|
+
"id": "data/BL"
|
|
265
|
+
},
|
|
266
|
+
|
|
267
|
+
{
|
|
268
|
+
"zipex": "FL 07,HM GX,HM 12",
|
|
269
|
+
"key": "BM",
|
|
270
|
+
"name": "BERMUDA",
|
|
271
|
+
"fmt": "%N%n%O%n%A%n%C %Z",
|
|
272
|
+
"zip": "[A-Z]{2} ?[A-Z0-9]{2}",
|
|
273
|
+
"posturl": "http://www.landvaluation.bm/",
|
|
274
|
+
"id": "data/BM"
|
|
275
|
+
},
|
|
276
|
+
|
|
277
|
+
{
|
|
278
|
+
"zipex": "BT2328,KA1131,BA1511",
|
|
279
|
+
"key": "BN",
|
|
280
|
+
"name": "BRUNEI DARUSSALAM",
|
|
281
|
+
"fmt": "%N%n%O%n%A%n%C %Z",
|
|
282
|
+
"zip": "[A-Z]{2} ?\\d{4}",
|
|
283
|
+
"posturl": "http://www.post.gov.bn/SitePages/postcodes.aspx",
|
|
284
|
+
"id": "data/BN"
|
|
285
|
+
},
|
|
286
|
+
|
|
287
|
+
{ "key": "BO", "name": "BOLIVIA", "upper": "AC", "id": "data/BO" },
|
|
288
|
+
|
|
289
|
+
{ "key": "BQ", "name": "BONAIRE, SINT EUSTATIUS, AND SABA", "id": "data/BQ" },
|
|
290
|
+
|
|
291
|
+
{
|
|
292
|
+
"zipex": "40301-110,70002-900",
|
|
293
|
+
"require": "ASCZ",
|
|
294
|
+
"key": "BR",
|
|
295
|
+
"name": "BRAZIL",
|
|
296
|
+
"sublocality_name_type": "neighborhood",
|
|
297
|
+
"fmt": "%O%n%N%n%A%n%D%n%C-%S%n%Z",
|
|
298
|
+
"state_name_type": "state",
|
|
299
|
+
"sub_names": "Acre~Alagoas~Amapá~Amazonas~Bahia~Ceará~Distrito Federal~Espírito Santo~Goiás~Maranhão~Mato Grosso~Mato Grosso do Sul~Minas Gerais~Pará~Paraíba~Paraná~Pernambuco~Piauí~Rio de Janeiro~Rio Grande do Norte~Rio Grande do Sul~Rondônia~Roraima~Santa Catarina~São Paulo~Sergipe~Tocantins",
|
|
300
|
+
"posturl": "http://www.buscacep.correios.com.br/",
|
|
301
|
+
"lang": "pt",
|
|
302
|
+
"sub_isoids": "AC~AL~AP~AM~BA~CE~DF~ES~GO~MA~MT~MS~MG~PA~PB~PR~PE~PI~RJ~RN~RS~RO~RR~SC~SP~SE~TO",
|
|
303
|
+
"sub_mores": "true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true",
|
|
304
|
+
"sub_zipexs": "69900-000,69999-999~57000-000,57999-999~68900-000,68999-999~69000-000,69400-123~40000-000,48999-999~60000-000,63999-999~70000-000,73500-123~29000-000,29999-999~72800-000,73700-123~65000-000,65999-999~78000-000,78899-999~79000-000,79999-999~30000-000,39999-999~66000-000,68899-999~58000-000,58999-999~80000-000,87999-999~50000-000,56999-999~64000-000,64999-999~20000-000,28999-999~59000-000,59999-999~90000-000,99999-999~76800-000,78900-000,78999-999~69300-000,69399-999~88000-000,89999-999~01000-000,13000-123~49000-000,49999-999~77000-000,77999-999",
|
|
305
|
+
"zip": "\\d{5}-?\\d{3}",
|
|
306
|
+
"sub_keys": "AC~AL~AP~AM~BA~CE~DF~ES~GO~MA~MT~MS~MG~PA~PB~PR~PE~PI~RJ~RN~RS~RO~RR~SC~SP~SE~TO",
|
|
307
|
+
"languages": "pt",
|
|
308
|
+
"upper": "CS",
|
|
309
|
+
"sub_zips": "699~57~689~69[0-24-8]~4[0-8]~6[0-3]~7[0-1]|72[0-7]|73[0-6]~29~72[89]|73[7-9]|7[4-6]~65~78[0-8]~79~3~6[6-7]|68[0-8]~58~8[0-7]~5[0-6]~64~2[0-8]~59~9~76[89]|789~693~8[89]~[01][1-9]~49~77",
|
|
310
|
+
"id": "data/BR"
|
|
311
|
+
},
|
|
312
|
+
|
|
313
|
+
{
|
|
314
|
+
"sub_isoids": "~AK~~BY~BI~CI~~~EX~~HI~IN~LI~MG~~RI~RC~SS~SW",
|
|
315
|
+
"key": "BS",
|
|
316
|
+
"name": "BAHAMAS",
|
|
317
|
+
"fmt": "%N%n%O%n%A%n%C, %S",
|
|
318
|
+
"lang": "en",
|
|
319
|
+
"sub_names": "Abaco Islands~Acklins~Andros Island~Berry Islands~Bimini~Cat Island~Crooked Island~Eleuthera~Exuma and Cays~Grand Bahama~Harbour Island~Inagua~Long Island~Mayaguana~New Providence~Ragged Island~Rum Cay~San Salvador~Spanish Wells",
|
|
320
|
+
"sub_keys": "Abaco~Acklins~Andros~Berry Islands~Bimini~Cat Island~Crooked Island~Eleuthera~Exuma~Grand Bahama~Harbour Island~Inagua~Long Island~Mayaguana~N.P.~Ragged Island~Rum Cay~San Salvador~Spanish Wells",
|
|
321
|
+
"languages": "en",
|
|
322
|
+
"state_name_type": "island",
|
|
323
|
+
"id": "data/BS"
|
|
324
|
+
},
|
|
325
|
+
|
|
326
|
+
{
|
|
327
|
+
"zipex": "11001,31101,35003",
|
|
328
|
+
"key": "BT",
|
|
329
|
+
"name": "BHUTAN",
|
|
330
|
+
"fmt": "%N%n%O%n%A%n%C %Z",
|
|
331
|
+
"zip": "\\d{5}",
|
|
332
|
+
"posturl": "http://www.bhutanpost.bt/postcodes/",
|
|
333
|
+
"id": "data/BT"
|
|
334
|
+
},
|
|
335
|
+
|
|
336
|
+
{ "key": "BV", "name": "BOUVET ISLAND", "id": "data/BV" },
|
|
337
|
+
|
|
338
|
+
{ "key": "BW", "name": "BOTSWANA", "id": "data/BW" },
|
|
339
|
+
|
|
340
|
+
{
|
|
341
|
+
"zipex": "223016,225860,220050",
|
|
342
|
+
"key": "BY",
|
|
343
|
+
"name": "BELARUS",
|
|
344
|
+
"fmt": "%S%n%Z %C%n%A%n%O%n%N",
|
|
345
|
+
"zip": "\\d{6}",
|
|
346
|
+
"posturl": "http://ex.belpost.by/addressbook/",
|
|
347
|
+
"id": "data/BY"
|
|
348
|
+
},
|
|
349
|
+
|
|
350
|
+
{ "key": "BZ", "name": "BELIZE", "id": "data/BZ" },
|
|
351
|
+
|
|
352
|
+
{
|
|
353
|
+
"zipex": "H3Z 2Y7,V8X 3X4,T0L 1K0,T0H 1A0,K1A 0B1",
|
|
354
|
+
"require": "ACSZ",
|
|
355
|
+
"key": "CA",
|
|
356
|
+
"name": "CANADA",
|
|
357
|
+
"fmt": "%N%n%O%n%A%n%C %S %Z",
|
|
358
|
+
"sub_names": "Alberta~British Columbia~Manitoba~New Brunswick~Newfoundland and Labrador~Northwest Territories~Nova Scotia~Nunavut~Ontario~Prince Edward Island~Quebec~Saskatchewan~Yukon",
|
|
359
|
+
"posturl": "https://www.canadapost.ca/cpo/mc/personal/postalcode/fpc.jsf",
|
|
360
|
+
"lang": "en",
|
|
361
|
+
"sub_isoids": "AB~BC~MB~NB~NL~NT~NS~NU~ON~PE~QC~SK~YT",
|
|
362
|
+
"zip": "[ABCEGHJKLMNPRSTVXY]\\d[ABCEGHJ-NPRSTV-Z] ?\\d[ABCEGHJ-NPRSTV-Z]\\d",
|
|
363
|
+
"sub_keys": "AB~BC~MB~NB~NL~NT~NS~NU~ON~PE~QC~SK~YT",
|
|
364
|
+
"languages": "en~fr",
|
|
365
|
+
"upper": "ACNOSZ",
|
|
366
|
+
"sub_zips": "T~V~R~E~A~X0E|X0G|X1A~B~X0A|X0B|X0C~K|L|M|N|P~C~G|H|J|K1A~S|R8A~Y",
|
|
367
|
+
"id": "data/CA"
|
|
368
|
+
},
|
|
369
|
+
|
|
370
|
+
{
|
|
371
|
+
"zipex": "6799",
|
|
372
|
+
"key": "CC",
|
|
373
|
+
"name": "COCOS (KEELING) ISLANDS",
|
|
374
|
+
"fmt": "%O%n%N%n%A%n%C %S %Z",
|
|
375
|
+
"zip": "6799",
|
|
376
|
+
"upper": "CS",
|
|
377
|
+
"id": "data/CC"
|
|
378
|
+
},
|
|
379
|
+
|
|
380
|
+
{ "key": "CD", "name": "CONGO (DEM. REP.)", "id": "data/CD" },
|
|
381
|
+
|
|
382
|
+
{ "key": "CF", "name": "CENTRAL AFRICAN REPUBLIC", "id": "data/CF" },
|
|
383
|
+
|
|
384
|
+
{ "key": "CG", "name": "CONGO (REP.)", "id": "data/CG" },
|
|
385
|
+
|
|
386
|
+
{
|
|
387
|
+
"zipex": "2544,1211,1556,3030",
|
|
388
|
+
"postprefix": "CH-",
|
|
389
|
+
"key": "CH",
|
|
390
|
+
"name": "SWITZERLAND",
|
|
391
|
+
"fmt": "%O%n%N%n%A%nCH-%Z %C",
|
|
392
|
+
"posturl": "http://www.post.ch/db/owa/pv_plz_pack/pr_main",
|
|
393
|
+
"require": "ACZ",
|
|
394
|
+
"zip": "\\d{4}",
|
|
395
|
+
"upper": "",
|
|
396
|
+
"id": "data/CH"
|
|
397
|
+
},
|
|
398
|
+
|
|
399
|
+
{
|
|
400
|
+
"key": "CI",
|
|
401
|
+
"name": "COTE D'IVOIRE",
|
|
402
|
+
"fmt": "%N%n%O%n%X %A %C %X",
|
|
403
|
+
"id": "data/CI"
|
|
404
|
+
},
|
|
405
|
+
|
|
406
|
+
{ "key": "CK", "name": "COOK ISLANDS", "id": "data/CK" },
|
|
407
|
+
|
|
408
|
+
{
|
|
409
|
+
"zipex": "8340457,8720019,1230000,8329100",
|
|
410
|
+
"sub_isoids": "AN~AR~AP~AT~AI~BI~CO~LI~LL~LR~MA~ML~RM~TA~VS",
|
|
411
|
+
"key": "CL",
|
|
412
|
+
"name": "CHILE",
|
|
413
|
+
"fmt": "%N%n%O%n%A%n%Z %C%n%S",
|
|
414
|
+
"sub_names": "Antofagasta~Araucanía~Arica y Parinacota~Atacama~Aysén del General Carlos Ibáñez del Campo~Biobío~Coquimbo~Libertador General Bernardo O'Higgins~Los Lagos~Los Ríos~Magallanes y de la Antártica Chilena~Maule~Metropolitana de Santiago~Tarapacá~Valparaíso",
|
|
415
|
+
"lang": "es",
|
|
416
|
+
"sub_mores": "true~true~true~true~true~true~true~true~true~true~true~true~true~true~true",
|
|
417
|
+
"zip": "\\d{7}",
|
|
418
|
+
"sub_keys": "Antofagasta~Araucanía~Arica y Parinacota~Atacama~Aysén~Biobío~Coquimbo~O'Higgins~Los Lagos~Los Ríos~Magallanes~Maule~Región Metropolitana~Tarapacá~Valparaíso",
|
|
419
|
+
"languages": "es",
|
|
420
|
+
"posturl": "http://www.correos.cl/SitePages/home.aspx",
|
|
421
|
+
"id": "data/CL"
|
|
422
|
+
},
|
|
423
|
+
|
|
424
|
+
{ "key": "CM", "name": "CAMEROON", "id": "data/CM" },
|
|
425
|
+
|
|
426
|
+
{
|
|
427
|
+
"sub_lnames": "Anhui Sheng~Macau~Beijing Shi~Chongqing Shi~Fujian Sheng~Gansu Sheng~Guangdong Sheng~Guangxi Zhuangzuzizhiqu~Guizhou Sheng~Hainan Sheng~Hebei Sheng~Henan Sheng~Heilongjiang Sheng~Hubei Sheng~Hunan Sheng~Jilin Sheng~Jiangsu Sheng~Jiangxi Sheng~Liaoning Sheng~Neimenggu Zizhiqu~Ningxia Huizuzizhiqu~Qinghai Sheng~Shandong Sheng~Shanxi Sheng~Shaanxi Sheng~Shanghai Shi~Sichuan Sheng~Taiwan~Tianjin Shi~Xizang Zizhiqu~Hong Kong~Xinjiang Weiwuerzizhiqu~Yunnan Sheng~Zhejiang Sheng",
|
|
428
|
+
"lfmt": "%N%n%O%n%A%n%D%n%C%n%S, %Z",
|
|
429
|
+
"zipex": "266033,317204,100096,100808",
|
|
430
|
+
"require": "ACSZ",
|
|
431
|
+
"key": "CN",
|
|
432
|
+
"name": "CHINA",
|
|
433
|
+
"sublocality_name_type": "district",
|
|
434
|
+
"fmt": "%Z%n%S%C%D%n%A%n%O%n%N",
|
|
435
|
+
"sub_names": "安徽省~澳门~北京市~重庆市~福建省~甘肃省~广东省~广西~贵州省~海南省~河北省~河南省~黑龙江省~湖北省~湖南省~吉林省~江苏省~江西省~辽宁省~内蒙古~宁夏~青海省~山东省~山西省~陕西省~上海市~四川省~台湾~天津市~西藏~香港~新疆~云南省~浙江省",
|
|
436
|
+
"posturl": "http://www.ems.com.cn/serviceguide/you_bian_cha_xun.html",
|
|
437
|
+
"sub_xrequires": "~A~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ACS~~~",
|
|
438
|
+
"lang": "zh",
|
|
439
|
+
"sub_isoids": "34~92~11~50~35~62~44~45~52~46~13~41~23~42~43~22~32~36~21~15~64~63~37~14~61~31~51~71~12~54~91~65~53~33",
|
|
440
|
+
"sub_mores": "true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true",
|
|
441
|
+
"zip": "\\d{6}",
|
|
442
|
+
"sub_keys": "安徽省~澳门~北京市~重庆市~福建省~甘肃省~广东省~广西壮族自治区~贵州省~海南省~河北省~河南省~黑龙江省~湖北省~湖南省~吉林省~江苏省~江西省~辽宁省~内蒙古自治区~宁夏回族自治区~青海省~山东省~山西省~陕西省~上海市~四川省~台湾~天津市~西藏自治区~香港~新疆维吾尔自治区~云南省~浙江省",
|
|
443
|
+
"languages": "zh",
|
|
444
|
+
"upper": "S",
|
|
445
|
+
"sub_xzips": "~999078~~~~~~~~~~~~~~~~~~~~~~~~~~\\d{3}(\\d{2})?~~~999077~~~",
|
|
446
|
+
"id": "data/CN"
|
|
447
|
+
},
|
|
448
|
+
|
|
449
|
+
{
|
|
450
|
+
"zipex": "111221,130001,760011",
|
|
451
|
+
"key": "CO",
|
|
452
|
+
"name": "COLOMBIA",
|
|
453
|
+
"fmt": "%N%n%O%n%A%n%C, %S, %Z",
|
|
454
|
+
"state_name_type": "department",
|
|
455
|
+
"require": "AS",
|
|
456
|
+
"zip": "\\d{6}",
|
|
457
|
+
"posturl": "http://www.codigopostal.gov.co/",
|
|
458
|
+
"id": "data/CO"
|
|
459
|
+
},
|
|
460
|
+
|
|
461
|
+
{
|
|
462
|
+
"zipex": "1000,2010,1001",
|
|
463
|
+
"key": "CR",
|
|
464
|
+
"name": "COSTA RICA",
|
|
465
|
+
"fmt": "%N%n%O%n%A%n%S, %C%n%Z",
|
|
466
|
+
"require": "ACS",
|
|
467
|
+
"zip": "\\d{4,5}|\\d{3}-\\d{4}",
|
|
468
|
+
"posturl": "https://www.correos.go.cr/nosotros/codigopostal/busqueda.html",
|
|
469
|
+
"id": "data/CR"
|
|
470
|
+
},
|
|
471
|
+
|
|
472
|
+
{
|
|
473
|
+
"zipex": "10700",
|
|
474
|
+
"sub_isoids": "15~09~08~06~12~14~11~99~03~10~04~16~01~07~13~05",
|
|
475
|
+
"key": "CU",
|
|
476
|
+
"name": "CUBA",
|
|
477
|
+
"fmt": "%N%n%O%n%A%n%C %S%n%Z",
|
|
478
|
+
"lang": "es",
|
|
479
|
+
"zip": "\\d{5}",
|
|
480
|
+
"sub_keys": "Artemisa~Camagüey~Ciego de Ávila~Cienfuegos~Granma~Guantánamo~Holguín~Isla de la Juventud~La Habana~Las Tunas~Matanzas~Mayabeque~Pinar del Río~Sancti Spíritus~Santiago de Cuba~Villa Clara",
|
|
481
|
+
"languages": "es",
|
|
482
|
+
"id": "data/CU"
|
|
483
|
+
},
|
|
484
|
+
|
|
485
|
+
{
|
|
486
|
+
"zipex": "7600",
|
|
487
|
+
"sub_isoids": "BV~BR~~MA~SL~~~~SV",
|
|
488
|
+
"key": "CV",
|
|
489
|
+
"name": "CAPE VERDE",
|
|
490
|
+
"fmt": "%N%n%O%n%A%n%Z %C%n%S",
|
|
491
|
+
"lang": "pt",
|
|
492
|
+
"zip": "\\d{4}",
|
|
493
|
+
"sub_keys": "Boa Vista~Brava~Fogo~Maio~Sal~Santiago~Santo Antão~São Nicolau~São Vicente",
|
|
494
|
+
"languages": "pt",
|
|
495
|
+
"state_name_type": "island",
|
|
496
|
+
"id": "data/CV"
|
|
497
|
+
},
|
|
498
|
+
|
|
499
|
+
{ "key": "CW", "name": "CURACAO", "id": "data/CW" },
|
|
500
|
+
|
|
501
|
+
{
|
|
502
|
+
"zipex": "6798",
|
|
503
|
+
"key": "CX",
|
|
504
|
+
"name": "CHRISTMAS ISLAND",
|
|
505
|
+
"fmt": "%O%n%N%n%A%n%C %S %Z",
|
|
506
|
+
"zip": "6798",
|
|
507
|
+
"upper": "CS",
|
|
508
|
+
"id": "data/CX"
|
|
509
|
+
},
|
|
510
|
+
|
|
511
|
+
{
|
|
512
|
+
"zipex": "2008,3304,1900",
|
|
513
|
+
"key": "CY",
|
|
514
|
+
"name": "CYPRUS",
|
|
515
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
516
|
+
"zip": "\\d{4}",
|
|
517
|
+
"id": "data/CY"
|
|
518
|
+
},
|
|
519
|
+
|
|
520
|
+
{
|
|
521
|
+
"zipex": "100 00,251 66,530 87,110 00,225 99",
|
|
522
|
+
"key": "CZ",
|
|
523
|
+
"name": "CZECH REP.",
|
|
524
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
525
|
+
"require": "ACZ",
|
|
526
|
+
"zip": "\\d{3} ?\\d{2}",
|
|
527
|
+
"posturl": "http://psc.ceskaposta.cz/CleanForm.action",
|
|
528
|
+
"id": "data/CZ"
|
|
529
|
+
},
|
|
530
|
+
|
|
531
|
+
{
|
|
532
|
+
"zipex": "26133,53225",
|
|
533
|
+
"key": "DE",
|
|
534
|
+
"name": "GERMANY",
|
|
535
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
536
|
+
"require": "ACZ",
|
|
537
|
+
"zip": "\\d{5}",
|
|
538
|
+
"posturl": "http://www.postdirekt.de/plzserver/",
|
|
539
|
+
"id": "data/DE"
|
|
540
|
+
},
|
|
541
|
+
|
|
542
|
+
{ "key": "DJ", "name": "DJIBOUTI", "id": "data/DJ" },
|
|
543
|
+
|
|
544
|
+
{
|
|
545
|
+
"zipex": "8660,1566",
|
|
546
|
+
"key": "DK",
|
|
547
|
+
"name": "DENMARK",
|
|
548
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
549
|
+
"require": "ACZ",
|
|
550
|
+
"zip": "\\d{4}",
|
|
551
|
+
"posturl": "http://www.postdanmark.dk/da/Privat/Kundeservice/postnummerkort/Sider/Find-postnummer.aspx",
|
|
552
|
+
"id": "data/DK"
|
|
553
|
+
},
|
|
554
|
+
|
|
555
|
+
{ "key": "DM", "name": "DOMINICA", "id": "data/DM" },
|
|
556
|
+
|
|
557
|
+
{
|
|
558
|
+
"zipex": "11903,10101",
|
|
559
|
+
"key": "DO",
|
|
560
|
+
"name": "DOMINICAN REP.",
|
|
561
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
562
|
+
"zip": "\\d{5}",
|
|
563
|
+
"posturl": "http://inposdom.gob.do/codigo-postal/",
|
|
564
|
+
"id": "data/DO"
|
|
565
|
+
},
|
|
566
|
+
|
|
567
|
+
{
|
|
568
|
+
"zipex": "40304,16027",
|
|
569
|
+
"key": "DZ",
|
|
570
|
+
"name": "ALGERIA",
|
|
571
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
572
|
+
"zip": "\\d{5}",
|
|
573
|
+
"id": "data/DZ"
|
|
574
|
+
},
|
|
575
|
+
|
|
576
|
+
{
|
|
577
|
+
"zipex": "090105,092301",
|
|
578
|
+
"key": "EC",
|
|
579
|
+
"name": "ECUADOR",
|
|
580
|
+
"fmt": "%N%n%O%n%A%n%Z%n%C",
|
|
581
|
+
"posturl": "http://www.codigopostal.gob.ec/",
|
|
582
|
+
"zip": "\\d{6}",
|
|
583
|
+
"upper": "CZ",
|
|
584
|
+
"id": "data/EC"
|
|
585
|
+
},
|
|
586
|
+
|
|
587
|
+
{
|
|
588
|
+
"zipex": "69501,11212",
|
|
589
|
+
"key": "EE",
|
|
590
|
+
"name": "ESTONIA",
|
|
591
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
592
|
+
"zip": "\\d{5}",
|
|
593
|
+
"posturl": "https://www.omniva.ee/era/sihtnumbrite_otsing",
|
|
594
|
+
"id": "data/EE"
|
|
595
|
+
},
|
|
596
|
+
|
|
597
|
+
{
|
|
598
|
+
"sub_lnames": "Aswan Governorate~Asyut Governorate~Alexandria Governorate~Ismailia Governorate~Luxor Governorate~Red Sea Governorate~El Beheira Governorate~Giza Governorate~Dakahlia Governorate~Suez Governorate~Ash Sharqia Governorate~Gharbia Governorate~Faiyum Governorate~Cairo Governorate~Qalyubia Governorate~Menofia Governorate~Menia Governorate~New Valley Governorate~Beni Suef Governorate~Port Said Governorate~South Sinai Governorate~Damietta Governorate~Sohag Governorate~North Sinai Governorate~Qena Governorate~Kafr El Sheikh Governorate~Matrouh Governorate",
|
|
599
|
+
"lfmt": "%N%n%O%n%A%n%C%n%S%n%Z",
|
|
600
|
+
"zipex": "12411,11599",
|
|
601
|
+
"sub_isoids": "ASN~AST~ALX~IS~LX~BA~BH~GZ~DK~SUZ~SHR~GH~FYM~C~KB~MNF~MN~WAD~BNS~PTS~JS~DT~SHG~SIN~KN~KFS~MT",
|
|
602
|
+
"key": "EG",
|
|
603
|
+
"name": "EGYPT",
|
|
604
|
+
"fmt": "%N%n%O%n%A%n%C%n%S%n%Z",
|
|
605
|
+
"sub_zipexs": "81000~71000~21000,23000~41000~85000~84000~22000~12000~35000~43000~44000~31000~63000~11000~13000~32000~61000~72000~62000~42000~46000~34000~82000~45000~83000~33000~51000",
|
|
606
|
+
"lang": "ar",
|
|
607
|
+
"zip": "\\d{5}",
|
|
608
|
+
"sub_keys": "أسوان~أسيوط~الإسكندرية~الإسماعيلية~الأقصر~البحر الأحمر~البحيرة~الجيزة~الدقهلية~السويس~الشرقية~الغربية~الفيوم~القاهرة~القليوبية~المنوفية~المنيا~الوادي الجديد~بني سويف~بورسعيد~جنوب سيناء~دمياط~سوهاج~شمال سيناء~قنا~كفر الشيخ~مطروح",
|
|
609
|
+
"languages": "ar",
|
|
610
|
+
"sub_zips": "81~71~2[13]~41~85~84~22~12~35~43~44~31~63~11~13~32~61~72~62~42~46~34~82~45~83~33~51",
|
|
611
|
+
"id": "data/EG"
|
|
612
|
+
},
|
|
613
|
+
|
|
614
|
+
{
|
|
615
|
+
"zipex": "70000,72000",
|
|
616
|
+
"key": "EH",
|
|
617
|
+
"name": "WESTERN SAHARA",
|
|
618
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
619
|
+
"zip": "\\d{5}",
|
|
620
|
+
"id": "data/EH"
|
|
621
|
+
},
|
|
622
|
+
|
|
623
|
+
{ "key": "ER", "name": "ERITREA", "id": "data/ER" },
|
|
624
|
+
|
|
625
|
+
{
|
|
626
|
+
"zipex": "28039,28300,28070",
|
|
627
|
+
"require": "ACSZ",
|
|
628
|
+
"key": "ES",
|
|
629
|
+
"name": "SPAIN",
|
|
630
|
+
"fmt": "%N%n%O%n%A%n%Z %C %S",
|
|
631
|
+
"sub_names": "Álava~Albacete~Alicante~Almería~Asturias~Ávila~Badajoz~Barcelona~Burgos~Cáceres~Cádiz~Cantabria~Castellón~Ceuta~Ciudad Real~Córdoba~Cuenca~Girona~Granada~Guadalajara~Guipúzcoa~Huelva~Huesca~Islas Baleares~Jaén~La Coruña~La Rioja~Las Palmas~León~Lérida~Lugo~Madrid~Málaga~Melilla~Murcia~Navarra~Ourense~Palencia~Pontevedra~Salamanca~Santa Cruz de Tenerife~Segovia~Sevilla~Soria~Tarragona~Teruel~Toledo~Valencia~Valladolid~Vizcaya~Zamora~Zaragoza",
|
|
632
|
+
"posturl": "http://www.correos.es/contenido/13-MenuRec2/04-MenuRec24/1010_s-CodPostal.asp",
|
|
633
|
+
"lang": "es",
|
|
634
|
+
"zip": "\\d{5}",
|
|
635
|
+
"sub_keys": "VI~AB~A~AL~O~AV~BA~B~BU~CC~CA~S~CS~CE~CR~CO~CU~GI~GR~GU~SS~H~HU~PM~J~C~LO~GC~LE~L~LU~M~MA~ML~MU~NA~OR~P~PO~SA~TF~SG~SE~SO~T~TE~TO~V~VA~BI~ZA~Z",
|
|
636
|
+
"languages": "es~ca~gl~eu",
|
|
637
|
+
"upper": "CS",
|
|
638
|
+
"sub_zips": "01~02~03~04~33~05~06~08~09~10~11~39~12~51~13~14~16~17~18~19~20~21~22~07~23~15~26~35~24~25~27~28~29~52~30~31~32~34~36~37~38~40~41~42~43~44~45~46~47~48~49~50",
|
|
639
|
+
"id": "data/ES"
|
|
640
|
+
},
|
|
641
|
+
|
|
642
|
+
{
|
|
643
|
+
"zipex": "1000",
|
|
644
|
+
"key": "ET",
|
|
645
|
+
"name": "ETHIOPIA",
|
|
646
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
647
|
+
"zip": "\\d{4}",
|
|
648
|
+
"id": "data/ET"
|
|
649
|
+
},
|
|
650
|
+
|
|
651
|
+
{
|
|
652
|
+
"zipex": "00550,00011",
|
|
653
|
+
"postprefix": "FI-",
|
|
654
|
+
"key": "FI",
|
|
655
|
+
"name": "FINLAND",
|
|
656
|
+
"fmt": "%O%n%N%n%A%nFI-%Z %C",
|
|
657
|
+
"require": "ACZ",
|
|
658
|
+
"zip": "\\d{5}",
|
|
659
|
+
"posturl": "http://www.verkkoposti.com/e3/postinumeroluettelo",
|
|
660
|
+
"id": "data/FI"
|
|
661
|
+
},
|
|
662
|
+
|
|
663
|
+
{ "key": "FJ", "name": "FIJI", "id": "data/FJ" },
|
|
664
|
+
|
|
665
|
+
{
|
|
666
|
+
"zipex": "FIQQ 1ZZ",
|
|
667
|
+
"key": "FK",
|
|
668
|
+
"name": "FALKLAND ISLANDS (MALVINAS)",
|
|
669
|
+
"fmt": "%N%n%O%n%A%n%C%n%Z",
|
|
670
|
+
"require": "ACZ",
|
|
671
|
+
"zip": "FIQQ 1ZZ",
|
|
672
|
+
"upper": "CZ",
|
|
673
|
+
"id": "data/FK"
|
|
674
|
+
},
|
|
675
|
+
|
|
676
|
+
{
|
|
677
|
+
"zipex": "96941,96944",
|
|
678
|
+
"key": "FM",
|
|
679
|
+
"name": "MICRONESIA (Federated State of)",
|
|
680
|
+
"fmt": "%N%n%O%n%A%n%C %S %Z",
|
|
681
|
+
"zip_name_type": "zip",
|
|
682
|
+
"posturl": "http://zip4.usps.com/zip4/welcome.jsp",
|
|
683
|
+
"require": "ACSZ",
|
|
684
|
+
"state_name_type": "state",
|
|
685
|
+
"zip": "(9694[1-4])(?:[ \\-](\\d{4}))?",
|
|
686
|
+
"upper": "ACNOS",
|
|
687
|
+
"id": "data/FM"
|
|
688
|
+
},
|
|
689
|
+
|
|
690
|
+
{
|
|
691
|
+
"zipex": "100",
|
|
692
|
+
"key": "FO",
|
|
693
|
+
"name": "FAROE ISLANDS",
|
|
694
|
+
"fmt": "%N%n%O%n%A%nFO%Z %C",
|
|
695
|
+
"postprefix": "FO",
|
|
696
|
+
"zip": "\\d{3}",
|
|
697
|
+
"posturl": "http://www.postur.fo/",
|
|
698
|
+
"id": "data/FO"
|
|
699
|
+
},
|
|
700
|
+
|
|
701
|
+
{
|
|
702
|
+
"zipex": "33380,34092,33506",
|
|
703
|
+
"key": "FR",
|
|
704
|
+
"name": "FRANCE",
|
|
705
|
+
"fmt": "%O%n%N%n%A%n%Z %C %X",
|
|
706
|
+
"posturl": "http://www.laposte.fr/Particulier/Utiliser-nos-outils-pratiques/Outils-et-documents/Trouvez-un-code-postal",
|
|
707
|
+
"require": "ACZ",
|
|
708
|
+
"zip": "\\d{2} ?\\d{3}",
|
|
709
|
+
"upper": "CX",
|
|
710
|
+
"id": "data/FR"
|
|
711
|
+
},
|
|
712
|
+
|
|
713
|
+
{ "key": "GA", "name": "GABON", "id": "data/GA" },
|
|
714
|
+
|
|
715
|
+
{
|
|
716
|
+
"zipex": "EC1Y 8SY,GIR 0AA,M2 5BQ,M34 4AB,CR0 2YR,DN16 9AA,W1A 4ZZ,EC1A 1HQ,OX14 4PG,BS18 8HF,NR25 7HG,RH6 0NP,BH23 6AA,B6 5BA,SO23 9AP,PO1 3AX,BFPO 61",
|
|
717
|
+
"key": "GB",
|
|
718
|
+
"name": "UNITED KINGDOM",
|
|
719
|
+
"fmt": "%N%n%O%n%A%n%C%n%Z",
|
|
720
|
+
"locality_name_type": "post_town",
|
|
721
|
+
"posturl": "http://www.royalmail.com/postcode-finder",
|
|
722
|
+
"require": "ACZ",
|
|
723
|
+
"zip": "GIR ?0AA|(?:(?:AB|AL|B|BA|BB|BD|BF|BH|BL|BN|BR|BS|BT|BX|CA|CB|CF|CH|CM|CO|CR|CT|CV|CW|DA|DD|DE|DG|DH|DL|DN|DT|DY|E|EC|EH|EN|EX|FK|FY|G|GL|GY|GU|HA|HD|HG|HP|HR|HS|HU|HX|IG|IM|IP|IV|JE|KA|KT|KW|KY|L|LA|LD|LE|LL|LN|LS|LU|M|ME|MK|ML|N|NE|NG|NN|NP|NR|NW|OL|OX|PA|PE|PH|PL|PO|PR|RG|RH|RM|S|SA|SE|SG|SK|SL|SM|SN|SO|SP|SR|SS|ST|SW|SY|TA|TD|TF|TN|TQ|TR|TS|TW|UB|W|WA|WC|WD|WF|WN|WR|WS|WV|YO|ZE)(?:\\d[\\dA-Z]? ?\\d[ABD-HJLN-UW-Z]{2}))|BFPO ?\\d{1,4}",
|
|
724
|
+
"upper": "CZ",
|
|
725
|
+
"id": "data/GB"
|
|
726
|
+
},
|
|
727
|
+
|
|
728
|
+
{ "key": "GD", "name": "GRENADA (WEST INDIES)", "id": "data/GD" },
|
|
729
|
+
|
|
730
|
+
{
|
|
731
|
+
"zipex": "0101",
|
|
732
|
+
"key": "GE",
|
|
733
|
+
"name": "GEORGIA",
|
|
734
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
735
|
+
"zip": "\\d{4}",
|
|
736
|
+
"posturl": "http://www.georgianpost.ge/index.php?page=10",
|
|
737
|
+
"id": "data/GE"
|
|
738
|
+
},
|
|
739
|
+
|
|
740
|
+
{
|
|
741
|
+
"zipex": "97300",
|
|
742
|
+
"key": "GF",
|
|
743
|
+
"name": "FRENCH GUIANA",
|
|
744
|
+
"fmt": "%O%n%N%n%A%n%Z %C %X",
|
|
745
|
+
"posturl": "http://www.laposte.fr/Particulier/Utiliser-nos-outils-pratiques/Outils-et-documents/Trouvez-un-code-postal",
|
|
746
|
+
"require": "ACZ",
|
|
747
|
+
"zip": "9[78]3\\d{2}",
|
|
748
|
+
"upper": "ACX",
|
|
749
|
+
"id": "data/GF"
|
|
750
|
+
},
|
|
751
|
+
|
|
752
|
+
{
|
|
753
|
+
"zipex": "GY1 1AA,GY2 2BT",
|
|
754
|
+
"key": "GG",
|
|
755
|
+
"name": "CHANNEL ISLANDS",
|
|
756
|
+
"fmt": "%N%n%O%n%A%n%C%nGUERNSEY%n%Z",
|
|
757
|
+
"posturl": "http://www.guernseypost.com/postcode_finder/",
|
|
758
|
+
"require": "ACZ",
|
|
759
|
+
"zip": "GY\\d[\\dA-Z]? ?\\d[ABD-HJLN-UW-Z]{2}",
|
|
760
|
+
"upper": "CZ",
|
|
761
|
+
"id": "data/GG"
|
|
762
|
+
},
|
|
763
|
+
|
|
764
|
+
{ "key": "GH", "name": "GHANA", "id": "data/GH" },
|
|
765
|
+
|
|
766
|
+
{
|
|
767
|
+
"zipex": "GX11 1AA",
|
|
768
|
+
"key": "GI",
|
|
769
|
+
"name": "GIBRALTAR",
|
|
770
|
+
"fmt": "%N%n%O%n%A%nGIBRALTAR%n%Z",
|
|
771
|
+
"require": "A",
|
|
772
|
+
"zip": "GX11 1AA",
|
|
773
|
+
"id": "data/GI"
|
|
774
|
+
},
|
|
775
|
+
|
|
776
|
+
{
|
|
777
|
+
"zipex": "3900,3950,3911",
|
|
778
|
+
"key": "GL",
|
|
779
|
+
"name": "GREENLAND",
|
|
780
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
781
|
+
"require": "ACZ",
|
|
782
|
+
"zip": "39\\d{2}",
|
|
783
|
+
"id": "data/GL"
|
|
784
|
+
},
|
|
785
|
+
|
|
786
|
+
{ "key": "GM", "name": "GAMBIA", "id": "data/GM" },
|
|
787
|
+
|
|
788
|
+
{
|
|
789
|
+
"zipex": "001,200,100",
|
|
790
|
+
"key": "GN",
|
|
791
|
+
"name": "GUINEA",
|
|
792
|
+
"fmt": "%N%n%O%n%Z %A %C",
|
|
793
|
+
"zip": "\\d{3}",
|
|
794
|
+
"id": "data/GN"
|
|
795
|
+
},
|
|
796
|
+
|
|
797
|
+
{
|
|
798
|
+
"zipex": "97100",
|
|
799
|
+
"key": "GP",
|
|
800
|
+
"name": "GUADELOUPE",
|
|
801
|
+
"fmt": "%O%n%N%n%A%n%Z %C %X",
|
|
802
|
+
"posturl": "http://www.laposte.fr/Particulier/Utiliser-nos-outils-pratiques/Outils-et-documents/Trouvez-un-code-postal",
|
|
803
|
+
"require": "ACZ",
|
|
804
|
+
"zip": "9[78][01]\\d{2}",
|
|
805
|
+
"upper": "ACX",
|
|
806
|
+
"id": "data/GP"
|
|
807
|
+
},
|
|
808
|
+
|
|
809
|
+
{ "key": "GQ", "name": "EQUATORIAL GUINEA", "id": "data/GQ" },
|
|
810
|
+
|
|
811
|
+
{
|
|
812
|
+
"zipex": "151 24,151 10,101 88",
|
|
813
|
+
"key": "GR",
|
|
814
|
+
"name": "GREECE",
|
|
815
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
816
|
+
"require": "ACZ",
|
|
817
|
+
"zip": "\\d{3} ?\\d{2}",
|
|
818
|
+
"posturl": "http://www.elta.gr/findapostcode.aspx",
|
|
819
|
+
"id": "data/GR"
|
|
820
|
+
},
|
|
821
|
+
|
|
822
|
+
{
|
|
823
|
+
"zipex": "SIQQ 1ZZ",
|
|
824
|
+
"key": "GS",
|
|
825
|
+
"name": "SOUTH GEORGIA",
|
|
826
|
+
"fmt": "%N%n%O%n%A%n%n%C%n%Z",
|
|
827
|
+
"require": "ACZ",
|
|
828
|
+
"zip": "SIQQ 1ZZ",
|
|
829
|
+
"upper": "CZ",
|
|
830
|
+
"id": "data/GS"
|
|
831
|
+
},
|
|
832
|
+
|
|
833
|
+
{
|
|
834
|
+
"zipex": "09001,01501",
|
|
835
|
+
"key": "GT",
|
|
836
|
+
"name": "GUATEMALA",
|
|
837
|
+
"fmt": "%N%n%O%n%A%n%Z- %C",
|
|
838
|
+
"zip": "\\d{5}",
|
|
839
|
+
"id": "data/GT"
|
|
840
|
+
},
|
|
841
|
+
|
|
842
|
+
{
|
|
843
|
+
"zipex": "96910,96931",
|
|
844
|
+
"key": "GU",
|
|
845
|
+
"name": "GUAM",
|
|
846
|
+
"fmt": "%N%n%O%n%A%n%C %Z",
|
|
847
|
+
"zip_name_type": "zip",
|
|
848
|
+
"posturl": "http://zip4.usps.com/zip4/welcome.jsp",
|
|
849
|
+
"require": "ACZ",
|
|
850
|
+
"zip": "(969(?:[12]\\d|3[12]))(?:[ \\-](\\d{4}))?",
|
|
851
|
+
"upper": "ACNO",
|
|
852
|
+
"id": "data/GU"
|
|
853
|
+
},
|
|
854
|
+
|
|
855
|
+
{
|
|
856
|
+
"zipex": "1000,1011",
|
|
857
|
+
"key": "GW",
|
|
858
|
+
"name": "GUINEA-BISSAU",
|
|
859
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
860
|
+
"zip": "\\d{4}",
|
|
861
|
+
"id": "data/GW"
|
|
862
|
+
},
|
|
863
|
+
|
|
864
|
+
{ "key": "GY", "name": "GUYANA", "id": "data/GY" },
|
|
865
|
+
|
|
866
|
+
{
|
|
867
|
+
"lfmt": "%N%n%O%n%A%n%C%n%S",
|
|
868
|
+
"require": "AS",
|
|
869
|
+
"key": "HK",
|
|
870
|
+
"name": "HONG KONG",
|
|
871
|
+
"fmt": "%S%n%C%n%A%n%O%n%N",
|
|
872
|
+
"state_name_type": "area",
|
|
873
|
+
"sub_names": "九龍~香港島~新界",
|
|
874
|
+
"lang": "zh-Hant",
|
|
875
|
+
"sub_mores": "true~true~true",
|
|
876
|
+
"locality_name_type": "district",
|
|
877
|
+
"sub_keys": "Kowloon~Hong Kong Island~New Territories",
|
|
878
|
+
"languages": "zh-Hant~en",
|
|
879
|
+
"upper": "S",
|
|
880
|
+
"id": "data/HK"
|
|
881
|
+
},
|
|
882
|
+
|
|
883
|
+
{
|
|
884
|
+
"zipex": "7050",
|
|
885
|
+
"key": "HM",
|
|
886
|
+
"name": "HEARD AND MCDONALD ISLANDS",
|
|
887
|
+
"fmt": "%O%n%N%n%A%n%C %S %Z",
|
|
888
|
+
"zip": "\\d{4}",
|
|
889
|
+
"upper": "CS",
|
|
890
|
+
"id": "data/HM"
|
|
891
|
+
},
|
|
892
|
+
|
|
893
|
+
{
|
|
894
|
+
"zipex": "31301",
|
|
895
|
+
"key": "HN",
|
|
896
|
+
"name": "HONDURAS",
|
|
897
|
+
"fmt": "%N%n%O%n%A%n%C, %S%n%Z",
|
|
898
|
+
"require": "ACS",
|
|
899
|
+
"zip": "\\d{5}",
|
|
900
|
+
"id": "data/HN"
|
|
901
|
+
},
|
|
902
|
+
|
|
903
|
+
{
|
|
904
|
+
"zipex": "10000,21001,10002",
|
|
905
|
+
"key": "HR",
|
|
906
|
+
"name": "CROATIA",
|
|
907
|
+
"fmt": "%N%n%O%n%A%nHR-%Z %C",
|
|
908
|
+
"postprefix": "HR-",
|
|
909
|
+
"zip": "\\d{5}",
|
|
910
|
+
"posturl": "http://www.posta.hr/default.aspx?pretpum",
|
|
911
|
+
"id": "data/HR"
|
|
912
|
+
},
|
|
913
|
+
|
|
914
|
+
{
|
|
915
|
+
"zipex": "6120,5310,6110,8510",
|
|
916
|
+
"key": "HT",
|
|
917
|
+
"name": "HAITI",
|
|
918
|
+
"fmt": "%N%n%O%n%A%nHT%Z %C",
|
|
919
|
+
"postprefix": "HT",
|
|
920
|
+
"zip": "\\d{4}",
|
|
921
|
+
"id": "data/HT"
|
|
922
|
+
},
|
|
923
|
+
|
|
924
|
+
{
|
|
925
|
+
"zipex": "1037,2380,1540",
|
|
926
|
+
"key": "HU",
|
|
927
|
+
"name": "HUNGARY (Rep.)",
|
|
928
|
+
"fmt": "%N%n%O%n%C%n%A%n%Z",
|
|
929
|
+
"posturl": "http://posta.hu/ugyfelszolgalat/iranyitoszam_kereso",
|
|
930
|
+
"require": "ACZ",
|
|
931
|
+
"zip": "\\d{4}",
|
|
932
|
+
"upper": "ACNO",
|
|
933
|
+
"id": "data/HU"
|
|
934
|
+
},
|
|
935
|
+
|
|
936
|
+
{
|
|
937
|
+
"zipex": "40115",
|
|
938
|
+
"require": "AS",
|
|
939
|
+
"key": "ID",
|
|
940
|
+
"name": "INDONESIA",
|
|
941
|
+
"fmt": "%N%n%O%n%A%n%C%n%S %Z",
|
|
942
|
+
"lang": "id",
|
|
943
|
+
"sub_isoids": "AC~BA~BT~BE~YO~JK~GO~JA~JB~JT~JI~KB~KS~KT~KI~KU~BB~KR~LA~MA~MU~NB~NT~PA~PB~RI~SR~SN~ST~SG~SA~SB~SS~SU",
|
|
944
|
+
"zip": "\\d{5}",
|
|
945
|
+
"sub_keys": "Aceh~Bali~Banten~Bengkulu~Daerah Istimewa Yogyakarta~DKI Jakarta~Gorontalo~Jambi~Jawa Barat~Jawa Tengah~Jawa Timur~Kalimantan Barat~Kalimantan Selatan~Kalimantan Tengah~Kalimantan Timur~Kalimantan Utara~Kepulauan Bangka Belitung~Kepulauan Riau~Lampung~Maluku~Maluku Utara~Nusa Tenggara Barat~Nusa Tenggara Timur~Papua~Papua Barat~Riau~Sulawesi Barat~Sulawesi Selatan~Sulawesi Tengah~Sulawesi Tenggara~Sulawesi Utara~Sumatera Barat~Sumatera Selatan~Sumatera Utara",
|
|
946
|
+
"languages": "id",
|
|
947
|
+
"id": "data/ID"
|
|
948
|
+
},
|
|
949
|
+
|
|
950
|
+
{
|
|
951
|
+
"zipex": "A65 F4E2",
|
|
952
|
+
"sub_isoids": "CW~CN~CE~C~DL~D~G~KY~KE~KK~LS~LM~LK~LD~LH~MO~MH~MN~OY~RN~SO~TA~WD~WH~WX~WW",
|
|
953
|
+
"key": "IE",
|
|
954
|
+
"name": "IRELAND",
|
|
955
|
+
"sublocality_name_type": "townland",
|
|
956
|
+
"fmt": "%N%n%O%n%A%n%D%n%C%n%S %Z",
|
|
957
|
+
"zip_name_type": "eircode",
|
|
958
|
+
"lang": "en",
|
|
959
|
+
"state_name_type": "county",
|
|
960
|
+
"zip": "[\\dA-Z]{3} ?[\\dA-Z]{4}",
|
|
961
|
+
"sub_keys": "Co. Carlow~Co. Cavan~Co. Clare~Co. Cork~Co. Donegal~Co. Dublin~Co. Galway~Co. Kerry~Co. Kildare~Co. Kilkenny~Co. Laois~Co. Leitrim~Co. Limerick~Co. Longford~Co. Louth~Co. Mayo~Co. Meath~Co. Monaghan~Co. Offaly~Co. Roscommon~Co. Sligo~Co. Tipperary~Co. Waterford~Co. Westmeath~Co. Wexford~Co. Wicklow",
|
|
962
|
+
"languages": "en",
|
|
963
|
+
"posturl": "https://finder.eircode.ie",
|
|
964
|
+
"id": "data/IE"
|
|
965
|
+
},
|
|
966
|
+
|
|
967
|
+
{
|
|
968
|
+
"zipex": "9614303",
|
|
969
|
+
"key": "IL",
|
|
970
|
+
"name": "ISRAEL",
|
|
971
|
+
"fmt": "%N%n%O%n%A%n%C %Z",
|
|
972
|
+
"zip": "\\d{5}(?:\\d{2})?",
|
|
973
|
+
"posturl": "http://www.israelpost.co.il/zipcode.nsf/demozip?openform",
|
|
974
|
+
"id": "data/IL"
|
|
975
|
+
},
|
|
976
|
+
|
|
977
|
+
{
|
|
978
|
+
"zipex": "IM2 1AA,IM99 1PS",
|
|
979
|
+
"key": "IM",
|
|
980
|
+
"name": "ISLE OF MAN",
|
|
981
|
+
"fmt": "%N%n%O%n%A%n%C%n%Z",
|
|
982
|
+
"posturl": "https://www.iompost.com/tools-forms/postcode-finder/",
|
|
983
|
+
"require": "ACZ",
|
|
984
|
+
"zip": "IM\\d[\\dA-Z]? ?\\d[ABD-HJLN-UW-Z]{2}",
|
|
985
|
+
"upper": "CZ",
|
|
986
|
+
"id": "data/IM"
|
|
987
|
+
},
|
|
988
|
+
|
|
989
|
+
{
|
|
990
|
+
"zipex": "110034,110001",
|
|
991
|
+
"require": "ACSZ",
|
|
992
|
+
"key": "IN",
|
|
993
|
+
"name": "INDIA",
|
|
994
|
+
"fmt": "%N%n%O%n%A%n%C %Z%n%S",
|
|
995
|
+
"zip_name_type": "pin",
|
|
996
|
+
"sub_names": "Andaman & Nicobar~Andhra Pradesh~Arunachal Pradesh~Assam~Bihar~Chandigarh~Chhattisgarh~Dadra & Nagar Haveli~Daman & Diu~Delhi~Goa~Gujarat~Haryana~Himachal Pradesh~Jammu & Kashmir~Jharkhand~Karnataka~Kerala~Lakshadweep~Madhya Pradesh~Maharashtra~Manipur~Meghalaya~Mizoram~Nagaland~Odisha~Puducherry~Punjab~Rajasthan~Sikkim~Tamil Nadu~Telangana~Tripura~Uttar Pradesh~Uttarakhand~West Bengal",
|
|
997
|
+
"lang": "en",
|
|
998
|
+
"sub_isoids": "AN~AP~AR~AS~BR~CH~CT~DN~DD~DL~GA~GJ~HR~HP~JK~JH~KA~KL~LD~MP~MH~MN~ML~MZ~NL~OR~PY~PB~RJ~SK~TN~TG~TR~UP~UT~WB",
|
|
999
|
+
"state_name_type": "state",
|
|
1000
|
+
"zip": "\\d{6}",
|
|
1001
|
+
"sub_keys": "Andaman and Nicobar Islands~Andhra Pradesh~Arunachal Pradesh~Assam~Bihar~Chandigarh~Chhattisgarh~Dadra and Nagar Haveli~Daman and Diu~Delhi~Goa~Gujarat~Haryana~Himachal Pradesh~Jammu and Kashmir~Jharkhand~Karnataka~Kerala~Lakshadweep~Madhya Pradesh~Maharashtra~Manipur~Meghalaya~Mizoram~Nagaland~Odisha~Puducherry~Punjab~Rajasthan~Sikkim~Tamil Nadu~Telangana~Tripura~Uttar Pradesh~Uttarakhand~West Bengal",
|
|
1002
|
+
"languages": "en~hi",
|
|
1003
|
+
"posturl": "https://www.indiapost.gov.in/vas/pages/FindPinCode.aspx",
|
|
1004
|
+
"sub_zips": "744~5[0-3]~79[0-2]~78~8[0-5]~16|1440[3-9]~49~396~396~11~403~3[6-9]~1[23]~17~1[89]~81[4-9]|82|83[0-5]~5[4-9]|53[7-9]~6[7-9]|6010|607008|777~682~4[5-8]|490~4[0-4]~79[56]~79[34]~796~79[78]~7[5-7]~60[579]~1[456]~3[0-4]~737|750~6[0-6]|536~5[0-3]~799~2[0-35-8]|24[0-7]|26[12]~24[46-9]|254|26[23]~7[0-4]",
|
|
1005
|
+
"id": "data/IN"
|
|
1006
|
+
},
|
|
1007
|
+
|
|
1008
|
+
{
|
|
1009
|
+
"zipex": "BBND 1ZZ",
|
|
1010
|
+
"key": "IO",
|
|
1011
|
+
"name": "BRITISH INDIAN OCEAN TERRITORY",
|
|
1012
|
+
"fmt": "%N%n%O%n%A%n%C%n%Z",
|
|
1013
|
+
"require": "ACZ",
|
|
1014
|
+
"zip": "BBND 1ZZ",
|
|
1015
|
+
"upper": "CZ",
|
|
1016
|
+
"id": "data/IO"
|
|
1017
|
+
},
|
|
1018
|
+
|
|
1019
|
+
{
|
|
1020
|
+
"zipex": "31001",
|
|
1021
|
+
"key": "IQ",
|
|
1022
|
+
"name": "IRAQ",
|
|
1023
|
+
"fmt": "%O%n%N%n%A%n%C, %S%n%Z",
|
|
1024
|
+
"require": "ACS",
|
|
1025
|
+
"zip": "\\d{5}",
|
|
1026
|
+
"upper": "CS",
|
|
1027
|
+
"id": "data/IQ"
|
|
1028
|
+
},
|
|
1029
|
+
|
|
1030
|
+
{
|
|
1031
|
+
"sub_lnames": "East Azerbaijan Province~West Azerbaijan Province~Ardabil Province~Isfahan Province~Alborz Province~Ilam Province~Bushehr Province~Tehran Province~Chaharmahal and Bakhtiari Province~South Khorasan Province~Razavi Khorasan Province~North Khorasan Province~Khuzestan Province~Zanjan Province~Semnan Province~Sistan and Baluchestan Province~Fars Province~Qazvin Province~Qom Province~Kurdistan Province~Kerman Province~Kermanshah Province~Kohgiluyeh and Boyer-Ahmad Province~Golestan Province~Gilan Province~Lorestan Province~Mazandaran Province~Markazi Province~Hormozgan Province~Hamadan Province~Yazd Province",
|
|
1032
|
+
"zipex": "11936-12345",
|
|
1033
|
+
"sub_isoids": "01~02~03~04~32~05~06~07~08~29~30~31~10~11~12~13~14~28~26~16~15~17~18~27~19~20~21~22~23~24~25",
|
|
1034
|
+
"key": "IR",
|
|
1035
|
+
"name": "IRAN",
|
|
1036
|
+
"sublocality_name_type": "neighborhood",
|
|
1037
|
+
"fmt": "%O%n%N%n%S%n%C, %D%n%A%n%Z",
|
|
1038
|
+
"lang": "fa",
|
|
1039
|
+
"zip": "\\d{5}-?\\d{5}",
|
|
1040
|
+
"sub_keys": "استان آذربایجان شرقی~استان آذربایجان غربی~استان اردبیل~استان اصفهان~استان البرز~استان ایلام~استان بوشهر~استان تهران~استان چهارمحال و بختیاری~استان خراسان جنوبی~استان خراسان رضوی~استان خراسان شمالی~استان خوزستان~استان زنجان~استان سمنان~استان سیستان و بلوچستان~استان فارس~استان قزوین~استان قم~استان کردستان~استان کرمان~استان کرمانشاه~استان کهگیلویه و بویراحمد~استان گلستان~استان گیلان~استان لرستان~استان مازندران~استان مرکزی~استان هرمزگان~استان همدان~استان یزد",
|
|
1041
|
+
"languages": "fa",
|
|
1042
|
+
"id": "data/IR"
|
|
1043
|
+
},
|
|
1044
|
+
|
|
1045
|
+
{
|
|
1046
|
+
"zipex": "320,121,220,110",
|
|
1047
|
+
"key": "IS",
|
|
1048
|
+
"name": "ICELAND",
|
|
1049
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
1050
|
+
"zip": "\\d{3}",
|
|
1051
|
+
"posturl": "http://www.postur.is/einstaklingar/posthus/postnumer/",
|
|
1052
|
+
"id": "data/IS"
|
|
1053
|
+
},
|
|
1054
|
+
|
|
1055
|
+
{
|
|
1056
|
+
"zipex": "00144,47037,39049",
|
|
1057
|
+
"require": "ACSZ",
|
|
1058
|
+
"key": "IT",
|
|
1059
|
+
"name": "ITALY",
|
|
1060
|
+
"fmt": "%N%n%O%n%A%n%Z %C %S",
|
|
1061
|
+
"sub_names": "Agrigento~Alessandria~Ancona~Aosta~Arezzo~Ascoli Piceno~Asti~Avellino~Bari~Barletta-Andria-Trani~Belluno~Benevento~Bergamo~Biella~Bologna~Bolzano~Brescia~Brindisi~Cagliari~Caltanissetta~Campobasso~Carbonia-Iglesias~Caserta~Catania~Catanzaro~Chieti~Como~Cosenza~Cremona~Crotone~Cuneo~Enna~Fermo~Ferrara~Firenze~Foggia~Forlì-Cesena~Frosinone~Genova~Gorizia~Grosseto~Imperia~Isernia~L'Aquila~La Spezia~Latina~Lecce~Lecco~Livorno~Lodi~Lucca~Macerata~Mantova~Massa-Carrara~Matera~Medio Campidano~Messina~Milano~Modena~Monza e Brianza~Napoli~Novara~Nuoro~Ogliastra~Olbia-Tempio~Oristano~Padova~Palermo~Parma~Pavia~Perugia~Pesaro e Urbino~Pescara~Piacenza~Pisa~Pistoia~Pordenone~Potenza~Prato~Ragusa~Ravenna~Reggio Calabria~Reggio Emilia~Rieti~Rimini~Roma~Rovigo~Salerno~Sassari~Savona~Siena~Siracusa~Sondrio~Taranto~Teramo~Terni~Torino~Trapani~Trento~Treviso~Trieste~Udine~Varese~Venezia~Verbano-Cusio-Ossola~Vercelli~Verona~Vibo Valentia~Vicenza~Viterbo",
|
|
1062
|
+
"posturl": "http://www.poste.it/online/cercacap/",
|
|
1063
|
+
"lang": "it",
|
|
1064
|
+
"sub_isoids": "AG~AL~AN~AO~AR~AP~AT~AV~BA~BT~BL~BN~BG~BI~BO~BZ~BS~BR~CA~CL~CB~CI~CE~CT~CZ~CH~CO~CS~CR~KR~CN~EN~FM~FE~FI~FG~FC~FR~GE~GO~GR~IM~IS~AQ~SP~LT~LE~LC~LI~LO~LU~MC~MN~MS~MT~VS~ME~MI~MO~MB~NA~NO~NU~OG~OT~OR~PD~PA~PR~PV~PG~PU~PE~PC~PI~PT~PN~PZ~PO~RG~RA~RC~RE~RI~RN~RM~RO~SA~SS~SV~SI~SR~SO~TA~TE~TR~TO~TP~TN~TV~TS~UD~VA~VE~VB~VC~VR~VV~VI~VT",
|
|
1065
|
+
"zip": "\\d{5}",
|
|
1066
|
+
"sub_keys": "AG~AL~AN~AO~AR~AP~AT~AV~BA~BT~BL~BN~BG~BI~BO~BZ~BS~BR~CA~CL~CB~CI~CE~CT~CZ~CH~CO~CS~CR~KR~CN~EN~FM~FE~FI~FG~FC~FR~GE~GO~GR~IM~IS~AQ~SP~LT~LE~LC~LI~LO~LU~MC~MN~MS~MT~VS~ME~MI~MO~MB~NA~NO~NU~OG~OT~OR~PD~PA~PR~PV~PG~PU~PE~PC~PI~PT~PN~PZ~PO~RG~RA~RC~RE~RI~RN~RM~RO~SA~SS~SV~SI~SR~SO~TA~TE~TR~TO~TP~TN~TV~TS~UD~VA~VE~VB~VC~VR~VV~VI~VT",
|
|
1067
|
+
"languages": "it",
|
|
1068
|
+
"upper": "CS",
|
|
1069
|
+
"sub_zips": "92~15~60~11~52~63~14~83~70~76[01]~32~82~24~13[89]~40~39~25~72~0912[1-9]|0913[0-4]|0901[0289]|0902[03468]|0903[0234]|0904|0803[035]|08043~93~860[1-4]|86100~0901[013-7]~81~95~88[01]~66~22~87~26[01]~88[89]~12|18025~94~638|63900~44~50~71~47[015]~03~16~34[01]7~58~18~860[7-9]|86170~67~19~04~73~23[89]~57~26[89]~55~62~46~54~75~0902[012579]|0903[015-9]|09040~98~20~41~208|20900~80~28[01]~080[1-3]|08100~08037|0804[024-9]~08020|0702|0703[08]~090[7-9]|09170|0801[039]|0803[04]~35~90~43~27~06~61~65~29~56~51~330[7-9]|33170~85~59~97~48~89[01]~42~02~47[89]~00~45~84~070[14]|0703[0-79]|07100~17|12071~53~96~23[01]~74~64~05~10~91~38~31~3401|341[0-689]|34062~330[1-5]|33100~21~30~28[89]~13[01]~37~89[89]~36~01",
|
|
1070
|
+
"id": "data/IT"
|
|
1071
|
+
},
|
|
1072
|
+
|
|
1073
|
+
{
|
|
1074
|
+
"zipex": "JE1 1AA,JE2 2BT",
|
|
1075
|
+
"key": "JE",
|
|
1076
|
+
"name": "CHANNEL ISLANDS",
|
|
1077
|
+
"fmt": "%N%n%O%n%A%n%C%nJERSEY%n%Z",
|
|
1078
|
+
"posturl": "http://www.jerseypost.com/tools/postcode-address-finder/",
|
|
1079
|
+
"require": "ACZ",
|
|
1080
|
+
"zip": "JE\\d[\\dA-Z]? ?\\d[ABD-HJLN-UW-Z]{2}",
|
|
1081
|
+
"upper": "CZ",
|
|
1082
|
+
"id": "data/JE"
|
|
1083
|
+
},
|
|
1084
|
+
|
|
1085
|
+
{
|
|
1086
|
+
"lang": "en",
|
|
1087
|
+
"name": "JAMAICA",
|
|
1088
|
+
"fmt": "%N%n%O%n%A%n%C%n%S %X",
|
|
1089
|
+
"state_name_type": "parish",
|
|
1090
|
+
"id": "data/JM",
|
|
1091
|
+
"languages": "en",
|
|
1092
|
+
"sub_keys": "Clarendon~Hanover~Kingston~Manchester~Portland~St. Andrew~St. Ann~St. Catherine~St. Elizabeth~St. James~St. Mary~St. Thomas~Trelawny~Westmoreland",
|
|
1093
|
+
"key": "JM",
|
|
1094
|
+
"sub_isoids": "13~09~01~12~04~02~06~14~11~08~05~03~07~10",
|
|
1095
|
+
"require": "ACS"
|
|
1096
|
+
},
|
|
1097
|
+
|
|
1098
|
+
{
|
|
1099
|
+
"zipex": "11937,11190",
|
|
1100
|
+
"key": "JO",
|
|
1101
|
+
"name": "JORDAN",
|
|
1102
|
+
"fmt": "%N%n%O%n%A%n%C %Z",
|
|
1103
|
+
"zip": "\\d{5}",
|
|
1104
|
+
"id": "data/JO"
|
|
1105
|
+
},
|
|
1106
|
+
|
|
1107
|
+
{
|
|
1108
|
+
"sub_lnames": "Hokkaido~Aomori~Iwate~Miyagi~Akita~Yamagata~Fukushima~Ibaraki~Tochigi~Gunma~Saitama~Chiba~Tokyo~Kanagawa~Niigata~Toyama~Ishikawa~Fukui~Yamanashi~Nagano~Gifu~Shizuoka~Aichi~Mie~Shiga~Kyoto~Osaka~Hyogo~Nara~Wakayama~Tottori~Shimane~Okayama~Hiroshima~Yamaguchi~Tokushima~Kagawa~Ehime~Kochi~Fukuoka~Saga~Nagasaki~Kumamoto~Oita~Miyazaki~Kagoshima~Okinawa",
|
|
1109
|
+
"lfmt": "%N%n%O%n%A, %S%n%Z",
|
|
1110
|
+
"zipex": "154-0023,350-1106,951-8073,112-0001,208-0032,231-0012",
|
|
1111
|
+
"require": "ASZ",
|
|
1112
|
+
"key": "JP",
|
|
1113
|
+
"name": "JAPAN",
|
|
1114
|
+
"fmt": "〒%Z%n%S%n%A%n%O%n%N",
|
|
1115
|
+
"state_name_type": "prefecture",
|
|
1116
|
+
"posturl": "http://www.post.japanpost.jp/zipcode/",
|
|
1117
|
+
"lang": "ja",
|
|
1118
|
+
"sub_isoids": "01~02~03~04~05~06~07~08~09~10~11~12~13~14~15~16~17~18~19~20~21~22~23~24~25~26~27~28~29~30~31~32~33~34~35~36~37~38~39~40~41~42~43~44~45~46~47",
|
|
1119
|
+
"zip": "\\d{3}-?\\d{4}",
|
|
1120
|
+
"sub_keys": "北海道~青森県~岩手県~宮城県~秋田県~山形県~福島県~茨城県~栃木県~群馬県~埼玉県~千葉県~東京都~神奈川県~新潟県~富山県~石川県~福井県~山梨県~長野県~岐阜県~静岡県~愛知県~三重県~滋賀県~京都府~大阪府~兵庫県~奈良県~和歌山県~鳥取県~島根県~岡山県~広島県~山口県~徳島県~香川県~愛媛県~高知県~福岡県~佐賀県~長崎県~熊本県~大分県~宮崎県~鹿児島県~沖縄県",
|
|
1121
|
+
"languages": "ja",
|
|
1122
|
+
"upper": "S",
|
|
1123
|
+
"sub_zips": "0[4-9]|00[1-7]~03|018~02~98~01~99~9[67]~3[01]~32|311|349~37|38[49]~3[3-6]~2[6-9]~1[0-8]|19[0-8]|20~2[1-5]|199~9[45]|389~93~92|939~91|922~40~3[89]|949~50~4[1-9]~4[4-9]|431~51|498|647~52~6[0-2]|520~5[3-9]|618|630~6[5-7]|563~63|64[78]~64|519~68~69|68[45]~7[01]~7[23]~7[45]~77~76~79~78~8[0-3]|871~84~85|81[17]|848~86~87|839~88~89~90",
|
|
1124
|
+
"id": "data/JP"
|
|
1125
|
+
},
|
|
1126
|
+
|
|
1127
|
+
{
|
|
1128
|
+
"zipex": "20100,00100",
|
|
1129
|
+
"key": "KE",
|
|
1130
|
+
"name": "KENYA",
|
|
1131
|
+
"fmt": "%N%n%O%n%A%n%C%n%Z",
|
|
1132
|
+
"zip": "\\d{5}",
|
|
1133
|
+
"id": "data/KE"
|
|
1134
|
+
},
|
|
1135
|
+
|
|
1136
|
+
{
|
|
1137
|
+
"zipex": "720001",
|
|
1138
|
+
"key": "KG",
|
|
1139
|
+
"name": "KYRGYZSTAN",
|
|
1140
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
1141
|
+
"zip": "\\d{6}",
|
|
1142
|
+
"id": "data/KG"
|
|
1143
|
+
},
|
|
1144
|
+
|
|
1145
|
+
{
|
|
1146
|
+
"zipex": "12203,14206,12000",
|
|
1147
|
+
"key": "KH",
|
|
1148
|
+
"name": "CAMBODIA",
|
|
1149
|
+
"fmt": "%N%n%O%n%A%n%C %Z",
|
|
1150
|
+
"zip": "\\d{5}",
|
|
1151
|
+
"id": "data/KH"
|
|
1152
|
+
},
|
|
1153
|
+
|
|
1154
|
+
{
|
|
1155
|
+
"key": "KI",
|
|
1156
|
+
"name": "KIRIBATI",
|
|
1157
|
+
"fmt": "%N%n%O%n%A%n%S%n%C",
|
|
1158
|
+
"upper": "ACNOS",
|
|
1159
|
+
"state_name_type": "island",
|
|
1160
|
+
"id": "data/KI"
|
|
1161
|
+
},
|
|
1162
|
+
|
|
1163
|
+
{ "key": "KM", "name": "COMOROS", "upper": "AC", "id": "data/KM" },
|
|
1164
|
+
|
|
1165
|
+
{
|
|
1166
|
+
"require": "ACS",
|
|
1167
|
+
"key": "KN",
|
|
1168
|
+
"name": "SAINT KITTS AND NEVIS",
|
|
1169
|
+
"fmt": "%N%n%O%n%A%n%C, %S",
|
|
1170
|
+
"lang": "en",
|
|
1171
|
+
"sub_isoids": "N~K",
|
|
1172
|
+
"sub_keys": "Nevis~St. Kitts",
|
|
1173
|
+
"languages": "en",
|
|
1174
|
+
"state_name_type": "island",
|
|
1175
|
+
"id": "data/KN"
|
|
1176
|
+
},
|
|
1177
|
+
|
|
1178
|
+
{
|
|
1179
|
+
"lang": "ko",
|
|
1180
|
+
"sub_lnames": "Kangwon~Rason~Ryanggang~Chagang~South Pyongan~North Pyongan~Pyongyang~South Hamgyong~North Hamgyong~South Hwanghae~North Hwanghae",
|
|
1181
|
+
"name": "NORTH KOREA",
|
|
1182
|
+
"fmt": "%Z%n%S%n%C%n%A%n%O%n%N",
|
|
1183
|
+
"languages": "ko",
|
|
1184
|
+
"lfmt": "%N%n%O%n%A%n%C%n%S, %Z",
|
|
1185
|
+
"sub_keys": "강원도~라선 특별시~량강도~자강도~평안 남도~평안 북도~평양 직할시~함경 남도~함경 북도~황해남도~황해북도",
|
|
1186
|
+
"key": "KP",
|
|
1187
|
+
"sub_isoids": "07~13~10~04~02~03~01~08~09~05~06",
|
|
1188
|
+
"id": "data/KP"
|
|
1189
|
+
},
|
|
1190
|
+
|
|
1191
|
+
{
|
|
1192
|
+
"sub_lnames": "Gangwon-do~Gyeonggi-do~Gyeongsangnam-do~Gyeongsangbuk-do~Gwangju~Daegu~Daejeon~Busan~Seoul~Sejong~Ulsan~Incheon~Jeollanam-do~Jeollabuk-do~Jeju-do~Chungcheongnam-do~Chungcheongbuk-do",
|
|
1193
|
+
"lfmt": "%N%n%O%n%A%n%D%n%C%n%S%n%Z",
|
|
1194
|
+
"zipex": "03051",
|
|
1195
|
+
"require": "ACSZ",
|
|
1196
|
+
"key": "KR",
|
|
1197
|
+
"name": "SOUTH KOREA",
|
|
1198
|
+
"sublocality_name_type": "district",
|
|
1199
|
+
"fmt": "%S %C%D%n%A%n%O%n%N%n%Z",
|
|
1200
|
+
"state_name_type": "do_si",
|
|
1201
|
+
"sub_names": "강원~경기~경남~경북~광주~대구~대전~부산~서울~세종~울산~인천~전남~전북~제주~충남~충북",
|
|
1202
|
+
"posturl": "http://www.epost.go.kr/search/zipcode/search5.jsp",
|
|
1203
|
+
"lang": "ko",
|
|
1204
|
+
"sub_isoids": "42~41~48~47~29~27~30~26~11~50~31~28~46~45~49~44~43",
|
|
1205
|
+
"sub_mores": "true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true",
|
|
1206
|
+
"sub_zipexs": "25627~12410~53286~38540~62394~42456~34316~46706~06321~30065~44782~23024~59222~56445~63563~32832~28006",
|
|
1207
|
+
"zip": "\\d{5}",
|
|
1208
|
+
"sub_keys": "강원도~경기도~경상남도~경상북도~광주광역시~대구광역시~대전광역시~부산광역시~서울특별시~세종특별자치시~울산광역시~인천광역시~전라남도~전라북도~제주특별자치도~충청남도~충청북도",
|
|
1209
|
+
"languages": "ko",
|
|
1210
|
+
"upper": "Z",
|
|
1211
|
+
"sub_zips": "2[456]\\d{2}~1[0-8]\\d{2}~5[0-3]\\d{2}~(?:3[6-9]|40)\\d{2}~6[12]\\d{2}~4[12]\\d{2}~3[45]\\d{2}~4[6-9]\\d{2}~0[1-8]\\d{2}~30[01]\\d~4[45]\\d{2}~2[1-3]\\d{2}~5[7-9]\\d{2}~5[4-6]\\d{2}~63[0-356]\\d~3[1-3]\\d{2}~2[789]\\d{2}",
|
|
1212
|
+
"id": "data/KR"
|
|
1213
|
+
},
|
|
1214
|
+
|
|
1215
|
+
{
|
|
1216
|
+
"zipex": "54541,54551,54404,13009",
|
|
1217
|
+
"key": "KW",
|
|
1218
|
+
"name": "KUWAIT",
|
|
1219
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
1220
|
+
"zip": "\\d{5}",
|
|
1221
|
+
"id": "data/KW"
|
|
1222
|
+
},
|
|
1223
|
+
|
|
1224
|
+
{
|
|
1225
|
+
"zipex": "KY1-1100,KY1-1702,KY2-2101",
|
|
1226
|
+
"require": "AS",
|
|
1227
|
+
"key": "KY",
|
|
1228
|
+
"name": "CAYMAN ISLANDS",
|
|
1229
|
+
"fmt": "%N%n%O%n%A%n%S %Z",
|
|
1230
|
+
"state_name_type": "island",
|
|
1231
|
+
"lang": "en",
|
|
1232
|
+
"zip": "KY\\d-\\d{4}",
|
|
1233
|
+
"sub_keys": "Cayman Brac~Grand Cayman~Little Cayman",
|
|
1234
|
+
"languages": "en",
|
|
1235
|
+
"posturl": "http://www.caymanpost.gov.ky/",
|
|
1236
|
+
"id": "data/KY"
|
|
1237
|
+
},
|
|
1238
|
+
|
|
1239
|
+
{
|
|
1240
|
+
"zipex": "040900,050012",
|
|
1241
|
+
"key": "KZ",
|
|
1242
|
+
"name": "KAZAKHSTAN",
|
|
1243
|
+
"fmt": "%Z%n%S%n%C%n%A%n%O%n%N",
|
|
1244
|
+
"zip": "\\d{6}",
|
|
1245
|
+
"id": "data/KZ"
|
|
1246
|
+
},
|
|
1247
|
+
|
|
1248
|
+
{
|
|
1249
|
+
"zipex": "01160,01000",
|
|
1250
|
+
"key": "LA",
|
|
1251
|
+
"name": "LAO (PEOPLE'S DEM. REP.)",
|
|
1252
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
1253
|
+
"zip": "\\d{5}",
|
|
1254
|
+
"id": "data/LA"
|
|
1255
|
+
},
|
|
1256
|
+
|
|
1257
|
+
{
|
|
1258
|
+
"zipex": "2038 3054,1107 2810,1000",
|
|
1259
|
+
"key": "LB",
|
|
1260
|
+
"name": "LEBANON",
|
|
1261
|
+
"fmt": "%N%n%O%n%A%n%C %Z",
|
|
1262
|
+
"zip": "(?:\\d{4})(?: ?(?:\\d{4}))?",
|
|
1263
|
+
"id": "data/LB"
|
|
1264
|
+
},
|
|
1265
|
+
|
|
1266
|
+
{ "key": "LC", "name": "SAINT LUCIA", "id": "data/LC" },
|
|
1267
|
+
|
|
1268
|
+
{
|
|
1269
|
+
"zipex": "9496,9491,9490,9485",
|
|
1270
|
+
"postprefix": "FL-",
|
|
1271
|
+
"key": "LI",
|
|
1272
|
+
"name": "LIECHTENSTEIN",
|
|
1273
|
+
"fmt": "%O%n%N%n%A%nFL-%Z %C",
|
|
1274
|
+
"require": "ACZ",
|
|
1275
|
+
"zip": "948[5-9]|949[0-8]",
|
|
1276
|
+
"posturl": "http://www.post.ch/db/owa/pv_plz_pack/pr_main",
|
|
1277
|
+
"id": "data/LI"
|
|
1278
|
+
},
|
|
1279
|
+
|
|
1280
|
+
{
|
|
1281
|
+
"zipex": "20000,00100",
|
|
1282
|
+
"key": "LK",
|
|
1283
|
+
"name": "SRI LANKA",
|
|
1284
|
+
"fmt": "%N%n%O%n%A%n%C%n%Z",
|
|
1285
|
+
"zip": "\\d{5}",
|
|
1286
|
+
"posturl": "http://www.slpost.gov.lk/",
|
|
1287
|
+
"id": "data/LK"
|
|
1288
|
+
},
|
|
1289
|
+
|
|
1290
|
+
{
|
|
1291
|
+
"zipex": "1000",
|
|
1292
|
+
"key": "LR",
|
|
1293
|
+
"name": "LIBERIA",
|
|
1294
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
1295
|
+
"zip": "\\d{4}",
|
|
1296
|
+
"id": "data/LR"
|
|
1297
|
+
},
|
|
1298
|
+
|
|
1299
|
+
{
|
|
1300
|
+
"zipex": "100",
|
|
1301
|
+
"key": "LS",
|
|
1302
|
+
"name": "LESOTHO",
|
|
1303
|
+
"fmt": "%N%n%O%n%A%n%C %Z",
|
|
1304
|
+
"zip": "\\d{3}",
|
|
1305
|
+
"id": "data/LS"
|
|
1306
|
+
},
|
|
1307
|
+
|
|
1308
|
+
{
|
|
1309
|
+
"zipex": "04340,03500",
|
|
1310
|
+
"key": "LT",
|
|
1311
|
+
"name": "LITHUANIA",
|
|
1312
|
+
"fmt": "%O%n%N%n%A%nLT-%Z %C",
|
|
1313
|
+
"postprefix": "LT-",
|
|
1314
|
+
"zip": "\\d{5}",
|
|
1315
|
+
"posturl": "http://www.post.lt/lt/?id=316",
|
|
1316
|
+
"id": "data/LT"
|
|
1317
|
+
},
|
|
1318
|
+
|
|
1319
|
+
{
|
|
1320
|
+
"zipex": "4750,2998",
|
|
1321
|
+
"postprefix": "L-",
|
|
1322
|
+
"key": "LU",
|
|
1323
|
+
"name": "LUXEMBOURG",
|
|
1324
|
+
"fmt": "%O%n%N%n%A%nL-%Z %C",
|
|
1325
|
+
"require": "ACZ",
|
|
1326
|
+
"zip": "\\d{4}",
|
|
1327
|
+
"posturl": "https://www.post.lu/fr/grandes-entreprises/solutions-postales/rechercher-un-code-postal",
|
|
1328
|
+
"id": "data/LU"
|
|
1329
|
+
},
|
|
1330
|
+
|
|
1331
|
+
{
|
|
1332
|
+
"zipex": "LV-1073,LV-1000",
|
|
1333
|
+
"key": "LV",
|
|
1334
|
+
"name": "LATVIA",
|
|
1335
|
+
"fmt": "%N%n%O%n%A%n%C, %Z",
|
|
1336
|
+
"zip": "LV-\\d{4}",
|
|
1337
|
+
"posturl": "http://www.pasts.lv/lv/uzzinas/nodalas/",
|
|
1338
|
+
"id": "data/LV"
|
|
1339
|
+
},
|
|
1340
|
+
|
|
1341
|
+
{ "key": "LY", "name": "LIBYA", "id": "data/LY" },
|
|
1342
|
+
|
|
1343
|
+
{
|
|
1344
|
+
"zipex": "53000,10000,20050,16052",
|
|
1345
|
+
"key": "MA",
|
|
1346
|
+
"name": "MOROCCO",
|
|
1347
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
1348
|
+
"zip": "\\d{5}",
|
|
1349
|
+
"id": "data/MA"
|
|
1350
|
+
},
|
|
1351
|
+
|
|
1352
|
+
{
|
|
1353
|
+
"zipex": "98000,98020,98011,98001",
|
|
1354
|
+
"key": "MC",
|
|
1355
|
+
"name": "MONACO",
|
|
1356
|
+
"fmt": "%N%n%O%n%A%nMC-%Z %C %X",
|
|
1357
|
+
"postprefix": "MC-",
|
|
1358
|
+
"zip": "980\\d{2}",
|
|
1359
|
+
"id": "data/MC"
|
|
1360
|
+
},
|
|
1361
|
+
|
|
1362
|
+
{
|
|
1363
|
+
"zipex": "2012,2019",
|
|
1364
|
+
"key": "MD",
|
|
1365
|
+
"name": "Rep. MOLDOVA",
|
|
1366
|
+
"fmt": "%N%n%O%n%A%nMD-%Z %C",
|
|
1367
|
+
"postprefix": "MD-",
|
|
1368
|
+
"zip": "\\d{4}",
|
|
1369
|
+
"id": "data/MD"
|
|
1370
|
+
},
|
|
1371
|
+
|
|
1372
|
+
{
|
|
1373
|
+
"zipex": "81257,81258,81217,84314,85366",
|
|
1374
|
+
"key": "ME",
|
|
1375
|
+
"name": "MONTENEGRO",
|
|
1376
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
1377
|
+
"zip": "8\\d{4}",
|
|
1378
|
+
"id": "data/ME"
|
|
1379
|
+
},
|
|
1380
|
+
|
|
1381
|
+
{
|
|
1382
|
+
"zipex": "97100",
|
|
1383
|
+
"key": "MF",
|
|
1384
|
+
"name": "SAINT MARTIN",
|
|
1385
|
+
"fmt": "%O%n%N%n%A%n%Z %C %X",
|
|
1386
|
+
"posturl": "http://www.laposte.fr/Particulier/Utiliser-nos-outils-pratiques/Outils-et-documents/Trouvez-un-code-postal",
|
|
1387
|
+
"require": "ACZ",
|
|
1388
|
+
"zip": "9[78][01]\\d{2}",
|
|
1389
|
+
"upper": "ACX",
|
|
1390
|
+
"id": "data/MF"
|
|
1391
|
+
},
|
|
1392
|
+
|
|
1393
|
+
{
|
|
1394
|
+
"zipex": "501,101",
|
|
1395
|
+
"key": "MG",
|
|
1396
|
+
"name": "MADAGASCAR",
|
|
1397
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
1398
|
+
"zip": "\\d{3}",
|
|
1399
|
+
"id": "data/MG"
|
|
1400
|
+
},
|
|
1401
|
+
|
|
1402
|
+
{
|
|
1403
|
+
"zipex": "96960,96970",
|
|
1404
|
+
"key": "MH",
|
|
1405
|
+
"name": "MARSHALL ISLANDS",
|
|
1406
|
+
"fmt": "%N%n%O%n%A%n%C %S %Z",
|
|
1407
|
+
"zip_name_type": "zip",
|
|
1408
|
+
"posturl": "http://zip4.usps.com/zip4/welcome.jsp",
|
|
1409
|
+
"require": "ACSZ",
|
|
1410
|
+
"state_name_type": "state",
|
|
1411
|
+
"zip": "(969[67]\\d)(?:[ \\-](\\d{4}))?",
|
|
1412
|
+
"upper": "ACNOS",
|
|
1413
|
+
"id": "data/MH"
|
|
1414
|
+
},
|
|
1415
|
+
|
|
1416
|
+
{
|
|
1417
|
+
"zipex": "1314,1321,1443,1062",
|
|
1418
|
+
"key": "MK",
|
|
1419
|
+
"name": "MACEDONIA",
|
|
1420
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
1421
|
+
"zip": "\\d{4}",
|
|
1422
|
+
"id": "data/MK"
|
|
1423
|
+
},
|
|
1424
|
+
|
|
1425
|
+
{ "key": "ML", "name": "MALI", "id": "data/ML" },
|
|
1426
|
+
|
|
1427
|
+
{
|
|
1428
|
+
"zipex": "11181",
|
|
1429
|
+
"key": "MM",
|
|
1430
|
+
"name": "MYANMAR",
|
|
1431
|
+
"fmt": "%N%n%O%n%A%n%C, %Z",
|
|
1432
|
+
"zip": "\\d{5}",
|
|
1433
|
+
"id": "data/MM"
|
|
1434
|
+
},
|
|
1435
|
+
|
|
1436
|
+
{
|
|
1437
|
+
"zipex": "65030,65270",
|
|
1438
|
+
"key": "MN",
|
|
1439
|
+
"name": "MONGOLIA",
|
|
1440
|
+
"fmt": "%N%n%O%n%A%n%C%n%S %Z",
|
|
1441
|
+
"zip": "\\d{5}",
|
|
1442
|
+
"posturl": "http://www.zipcode.mn/",
|
|
1443
|
+
"id": "data/MN"
|
|
1444
|
+
},
|
|
1445
|
+
|
|
1446
|
+
{
|
|
1447
|
+
"lfmt": "%N%n%O%n%A",
|
|
1448
|
+
"key": "MO",
|
|
1449
|
+
"name": "MACAO",
|
|
1450
|
+
"fmt": "%A%n%O%n%N",
|
|
1451
|
+
"require": "A",
|
|
1452
|
+
"id": "data/MO"
|
|
1453
|
+
},
|
|
1454
|
+
|
|
1455
|
+
{
|
|
1456
|
+
"zipex": "96950,96951,96952",
|
|
1457
|
+
"key": "MP",
|
|
1458
|
+
"name": "NORTHERN MARIANA ISLANDS",
|
|
1459
|
+
"fmt": "%N%n%O%n%A%n%C %S %Z",
|
|
1460
|
+
"zip_name_type": "zip",
|
|
1461
|
+
"posturl": "http://zip4.usps.com/zip4/welcome.jsp",
|
|
1462
|
+
"require": "ACSZ",
|
|
1463
|
+
"state_name_type": "state",
|
|
1464
|
+
"zip": "(9695[012])(?:[ \\-](\\d{4}))?",
|
|
1465
|
+
"upper": "ACNOS",
|
|
1466
|
+
"id": "data/MP"
|
|
1467
|
+
},
|
|
1468
|
+
|
|
1469
|
+
{
|
|
1470
|
+
"zipex": "97220",
|
|
1471
|
+
"key": "MQ",
|
|
1472
|
+
"name": "MARTINIQUE",
|
|
1473
|
+
"fmt": "%O%n%N%n%A%n%Z %C %X",
|
|
1474
|
+
"posturl": "http://www.laposte.fr/Particulier/Utiliser-nos-outils-pratiques/Outils-et-documents/Trouvez-un-code-postal",
|
|
1475
|
+
"require": "ACZ",
|
|
1476
|
+
"zip": "9[78]2\\d{2}",
|
|
1477
|
+
"upper": "ACX",
|
|
1478
|
+
"id": "data/MQ"
|
|
1479
|
+
},
|
|
1480
|
+
|
|
1481
|
+
{ "key": "MR", "name": "MAURITANIA", "upper": "AC", "id": "data/MR" },
|
|
1482
|
+
|
|
1483
|
+
{ "key": "MS", "name": "MONTSERRAT", "id": "data/MS" },
|
|
1484
|
+
|
|
1485
|
+
{
|
|
1486
|
+
"zipex": "NXR 01,ZTN 05,GPO 01,BZN 1130,SPB 6031,VCT 1753",
|
|
1487
|
+
"key": "MT",
|
|
1488
|
+
"name": "MALTA",
|
|
1489
|
+
"fmt": "%N%n%O%n%A%n%C %Z",
|
|
1490
|
+
"posturl": "http://postcodes.maltapost.com/",
|
|
1491
|
+
"zip": "[A-Z]{3} ?\\d{2,4}",
|
|
1492
|
+
"upper": "CZ",
|
|
1493
|
+
"id": "data/MT"
|
|
1494
|
+
},
|
|
1495
|
+
|
|
1496
|
+
{
|
|
1497
|
+
"zipex": "42602",
|
|
1498
|
+
"key": "MU",
|
|
1499
|
+
"name": "MAURITIUS",
|
|
1500
|
+
"fmt": "%N%n%O%n%A%n%Z%n%C",
|
|
1501
|
+
"zip": "\\d{3}(?:\\d{2}|[A-Z]{2}\\d{3})",
|
|
1502
|
+
"upper": "CZ",
|
|
1503
|
+
"id": "data/MU"
|
|
1504
|
+
},
|
|
1505
|
+
|
|
1506
|
+
{
|
|
1507
|
+
"zipex": "20026",
|
|
1508
|
+
"key": "MV",
|
|
1509
|
+
"name": "MALDIVES",
|
|
1510
|
+
"fmt": "%N%n%O%n%A%n%C %Z",
|
|
1511
|
+
"zip": "\\d{5}",
|
|
1512
|
+
"posturl": "http://www.maldivespost.com/?lid=10",
|
|
1513
|
+
"id": "data/MV"
|
|
1514
|
+
},
|
|
1515
|
+
|
|
1516
|
+
{
|
|
1517
|
+
"key": "MW",
|
|
1518
|
+
"name": "MALAWI",
|
|
1519
|
+
"fmt": "%N%n%O%n%A%n%C %X",
|
|
1520
|
+
"id": "data/MW"
|
|
1521
|
+
},
|
|
1522
|
+
|
|
1523
|
+
{
|
|
1524
|
+
"zipex": "02860,77520,06082",
|
|
1525
|
+
"require": "ACZ",
|
|
1526
|
+
"key": "MX",
|
|
1527
|
+
"name": "MEXICO",
|
|
1528
|
+
"sublocality_name_type": "neighborhood",
|
|
1529
|
+
"fmt": "%N%n%O%n%A%n%D%n%Z %C, %S",
|
|
1530
|
+
"state_name_type": "state",
|
|
1531
|
+
"sub_names": "Aguascalientes~Baja California~Baja California Sur~Campeche~Chiapas~Chihuahua~Ciudad de México~Coahuila de Zaragoza~Colima~Durango~Estado de México~Guanajuato~Guerrero~Hidalgo~Jalisco~Michoacán~Morelos~Nayarit~Nuevo León~Oaxaca~Puebla~Querétaro~Quintana Roo~San Luis Potosí~Sinaloa~Sonora~Tabasco~Tamaulipas~Tlaxcala~Veracruz~Yucatán~Zacatecas",
|
|
1532
|
+
"posturl": "http://www.correosdemexico.gob.mx/ServiciosLinea/Paginas/ccpostales.aspx",
|
|
1533
|
+
"lang": "es",
|
|
1534
|
+
"sub_isoids": "AGU~BCN~BCS~CAM~CHP~CHH~CMX~COA~COL~DUR~MEX~GUA~GRO~HID~JAL~MIC~MOR~NAY~NLE~OAX~PUE~QUE~ROO~SLP~SIN~SON~TAB~TAM~TLA~VER~YUC~ZAC",
|
|
1535
|
+
"sub_zipexs": "20000,20999~21000,22999~23000,23999~24000,24999~29000,30999~31000,33999~00000,16999~25000,27999~28000,28999~34000,35999~50000,57999~36000,38999~39000,41999~42000,43999~44000,49999~58000,61999~62000,62999~63000,63999~64000,67999~68000,71999~72000,75999~76000,76999~77000,77999~78000,79999~80000,82999~83000,85999~86000,86999~87000,89999~90000,90999~91000,96999~97000,97999~98000,99999",
|
|
1536
|
+
"zip": "\\d{5}",
|
|
1537
|
+
"sub_keys": "Ags.~B.C.~B.C.S.~Camp.~Chis.~Chih.~CDMX~Coah.~Col.~Dgo.~Méx.~Gto.~Gro.~Hgo.~Jal.~Mich.~Mor.~Nay.~N.L.~Oax.~Pue.~Qro.~Q.R.~S.L.P.~Sin.~Son.~Tab.~Tamps.~Tlax.~Ver.~Yuc.~Zac.",
|
|
1538
|
+
"languages": "es",
|
|
1539
|
+
"upper": "CSZ",
|
|
1540
|
+
"sub_zips": "20~2[12]~23~24~29|30~3[1-3]~0|1[0-6]~2[5-7]~28~3[45]~5[0-7]~3[6-8]~39|4[01]~4[23]~4[4-9]~5[89]|6[01]~62~63~6[4-7]~6[89]|7[01]~7[2-5]~76~77~7[89]~8[0-2]~8[3-5]~86~8[7-9]~90~9[1-6]~97~9[89]",
|
|
1541
|
+
"id": "data/MX"
|
|
1542
|
+
},
|
|
1543
|
+
|
|
1544
|
+
{
|
|
1545
|
+
"lang": "ms",
|
|
1546
|
+
"upper": "CS",
|
|
1547
|
+
"sub_zipexs": "79000,86999~05000,09999,34950~15000,18599~50000,60000~87000,87999~75000,78399~70000,73599~25000,28999,39000,49000,69000~30000,36899,39000~01000,02799~10000,14999~62000,62999~88000,91999~93000,98999~40000,48999,63000,68199~20000,24999",
|
|
1548
|
+
"zipex": "43000,50754,88990,50670",
|
|
1549
|
+
"name": "MALAYSIA",
|
|
1550
|
+
"zip": "\\d{5}",
|
|
1551
|
+
"sublocality_name_type": "village_township",
|
|
1552
|
+
"fmt": "%N%n%O%n%A%n%D%n%Z %C%n%S",
|
|
1553
|
+
"state_name_type": "state",
|
|
1554
|
+
"id": "data/MY",
|
|
1555
|
+
"languages": "ms",
|
|
1556
|
+
"sub_keys": "Johor~Kedah~Kelantan~Kuala Lumpur~Labuan~Melaka~Negeri Sembilan~Pahang~Perak~Perlis~Pulau Pinang~Putrajaya~Sabah~Sarawak~Selangor~Terengganu",
|
|
1557
|
+
"key": "MY",
|
|
1558
|
+
"sub_isoids": "01~02~03~14~15~04~05~06~08~09~07~16~12~13~10~11",
|
|
1559
|
+
"posturl": "http://www.pos.com.my",
|
|
1560
|
+
"require": "ACZ",
|
|
1561
|
+
"sub_zips": "79|8[0-6]~0[5-9]|34950~1[5-9]~5|60~87~7[5-8]~7[0-4]~2[5-8]|[346]9~3[0-6]|39000~0[12]~1[0-4]~62~8[89]|9[01]~9[3-8]~4[0-8]|6[3-8]~2[0-4]"
|
|
1562
|
+
},
|
|
1563
|
+
|
|
1564
|
+
{
|
|
1565
|
+
"zipex": "1102,1119,3212",
|
|
1566
|
+
"sub_isoids": "P~MPM~G~I~B~L~N~A~S~T~Q",
|
|
1567
|
+
"key": "MZ",
|
|
1568
|
+
"name": "MOZAMBIQUE",
|
|
1569
|
+
"fmt": "%N%n%O%n%A%n%Z %C%S",
|
|
1570
|
+
"lang": "pt",
|
|
1571
|
+
"zip": "\\d{4}",
|
|
1572
|
+
"sub_keys": "Cabo Delgado~Cidade de Maputo~Gaza~Inhambane~Manica~Maputo~Nampula~Niassa~Sofala~Tete~Zambezia",
|
|
1573
|
+
"languages": "pt",
|
|
1574
|
+
"id": "data/MZ"
|
|
1575
|
+
},
|
|
1576
|
+
|
|
1577
|
+
{ "key": "NA", "name": "NAMIBIA", "id": "data/NA" },
|
|
1578
|
+
|
|
1579
|
+
{
|
|
1580
|
+
"zipex": "98814,98800,98810",
|
|
1581
|
+
"key": "NC",
|
|
1582
|
+
"name": "NEW CALEDONIA",
|
|
1583
|
+
"fmt": "%O%n%N%n%A%n%Z %C %X",
|
|
1584
|
+
"posturl": "http://poste.opt.nc/index.php?option=com_content&view=article&id=80&Itemid=131",
|
|
1585
|
+
"require": "ACZ",
|
|
1586
|
+
"zip": "988\\d{2}",
|
|
1587
|
+
"upper": "ACX",
|
|
1588
|
+
"id": "data/NC"
|
|
1589
|
+
},
|
|
1590
|
+
|
|
1591
|
+
{
|
|
1592
|
+
"zipex": "8001",
|
|
1593
|
+
"key": "NE",
|
|
1594
|
+
"name": "NIGER",
|
|
1595
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
1596
|
+
"zip": "\\d{4}",
|
|
1597
|
+
"id": "data/NE"
|
|
1598
|
+
},
|
|
1599
|
+
|
|
1600
|
+
{
|
|
1601
|
+
"zipex": "2899",
|
|
1602
|
+
"key": "NF",
|
|
1603
|
+
"name": "NORFOLK ISLAND",
|
|
1604
|
+
"fmt": "%O%n%N%n%A%n%C %S %Z",
|
|
1605
|
+
"zip": "2899",
|
|
1606
|
+
"upper": "CS",
|
|
1607
|
+
"id": "data/NF"
|
|
1608
|
+
},
|
|
1609
|
+
|
|
1610
|
+
{
|
|
1611
|
+
"zipex": "930283,300001,931104",
|
|
1612
|
+
"sub_isoids": "AB~AD~AK~AN~BA~BY~BE~BO~CR~DE~EB~ED~EK~EN~FC~GO~IM~JI~KD~KN~KT~KE~KO~KW~LA~NA~NI~OG~ON~OS~OY~PL~RI~SO~TA~YO~ZA",
|
|
1613
|
+
"key": "NG",
|
|
1614
|
+
"name": "NIGERIA",
|
|
1615
|
+
"fmt": "%N%n%O%n%A%n%D%n%C %Z%n%S",
|
|
1616
|
+
"state_name_type": "state",
|
|
1617
|
+
"posturl": "http://www.nigeriapostcodes.com/",
|
|
1618
|
+
"lang": "en",
|
|
1619
|
+
"zip": "\\d{6}",
|
|
1620
|
+
"sub_keys": "Abia~Adamawa~Akwa Ibom~Anambra~Bauchi~Bayelsa~Benue~Borno~Cross River~Delta~Ebonyi~Edo~Ekiti~Enugu~Federal Capital Territory~Gombe~Imo~Jigawa~Kaduna~Kano~Katsina~Kebbi~Kogi~Kwara~Lagos~Nasarawa~Niger~Ogun State~Ondo~Osun~Oyo~Plateau~Rivers~Sokoto~Taraba~Yobe~Zamfara",
|
|
1621
|
+
"languages": "en",
|
|
1622
|
+
"upper": "CS",
|
|
1623
|
+
"id": "data/NG"
|
|
1624
|
+
},
|
|
1625
|
+
|
|
1626
|
+
{
|
|
1627
|
+
"zipex": "52000",
|
|
1628
|
+
"sub_isoids": "BO~CA~CI~CO~ES~GR~JI~LE~MD~MN~MS~MT~NS~AN~AS~SJ~RI",
|
|
1629
|
+
"key": "NI",
|
|
1630
|
+
"name": "NICARAGUA",
|
|
1631
|
+
"fmt": "%N%n%O%n%A%n%Z%n%C, %S",
|
|
1632
|
+
"state_name_type": "department",
|
|
1633
|
+
"posturl": "http://www.correos.gob.ni/index.php/codigo-postal-2",
|
|
1634
|
+
"lang": "es",
|
|
1635
|
+
"zip": "\\d{5}",
|
|
1636
|
+
"sub_keys": "Boaco~Carazo~Chinandega~Chontales~Esteli~Granada~Jinotega~Leon~Madriz~Managua~Masaya~Matagalpa~Nueva Segovia~Raan~Raas~Rio San Juan~Rivas",
|
|
1637
|
+
"languages": "es",
|
|
1638
|
+
"upper": "CS",
|
|
1639
|
+
"sub_zips": "5[12]~4[56]~2[5-7]~5[56]~3[12]~4[34]~6[56]~2[12]~3[45]~1[0-6]~4[12]~6[1-3]~3[7-9]~7[12]~8[1-3]~9[12]~4[78]",
|
|
1640
|
+
"id": "data/NI"
|
|
1641
|
+
},
|
|
1642
|
+
|
|
1643
|
+
{
|
|
1644
|
+
"zipex": "1234 AB,2490 AA",
|
|
1645
|
+
"key": "NL",
|
|
1646
|
+
"name": "NETHERLANDS",
|
|
1647
|
+
"fmt": "%O%n%N%n%A%n%Z %C",
|
|
1648
|
+
"require": "ACZ",
|
|
1649
|
+
"zip": "\\d{4} ?[A-Z]{2}",
|
|
1650
|
+
"posturl": "http://www.postnl.nl/voorthuis/",
|
|
1651
|
+
"id": "data/NL"
|
|
1652
|
+
},
|
|
1653
|
+
|
|
1654
|
+
{
|
|
1655
|
+
"zipex": "0025,0107,6631",
|
|
1656
|
+
"key": "NO",
|
|
1657
|
+
"name": "NORWAY",
|
|
1658
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
1659
|
+
"locality_name_type": "post_town",
|
|
1660
|
+
"require": "ACZ",
|
|
1661
|
+
"zip": "\\d{4}",
|
|
1662
|
+
"posturl": "http://adressesok.posten.no/nb/postal_codes/search",
|
|
1663
|
+
"id": "data/NO"
|
|
1664
|
+
},
|
|
1665
|
+
|
|
1666
|
+
{
|
|
1667
|
+
"zipex": "44601",
|
|
1668
|
+
"key": "NP",
|
|
1669
|
+
"name": "NEPAL",
|
|
1670
|
+
"fmt": "%N%n%O%n%A%n%C %Z",
|
|
1671
|
+
"zip": "\\d{5}",
|
|
1672
|
+
"posturl": "http://www.gpo.gov.np/Home/Postalcode",
|
|
1673
|
+
"id": "data/NP"
|
|
1674
|
+
},
|
|
1675
|
+
|
|
1676
|
+
{
|
|
1677
|
+
"require": "AS",
|
|
1678
|
+
"key": "NR",
|
|
1679
|
+
"name": "NAURU CENTRAL PACIFIC",
|
|
1680
|
+
"fmt": "%N%n%O%n%A%n%S",
|
|
1681
|
+
"lang": "en",
|
|
1682
|
+
"sub_isoids": "01~02~03~04~05~06~07~08~09~10~11~12~13~14",
|
|
1683
|
+
"sub_keys": "Aiwo District~Anabar District~Anetan District~Anibare District~Baiti District~Boe District~Buada District~Denigomodu District~Ewa District~Ijuw District~Meneng District~Nibok District~Uaboe District~Yaren District",
|
|
1684
|
+
"languages": "en",
|
|
1685
|
+
"state_name_type": "district",
|
|
1686
|
+
"id": "data/NR"
|
|
1687
|
+
},
|
|
1688
|
+
|
|
1689
|
+
{ "key": "NU", "name": "NIUE", "id": "data/NU" },
|
|
1690
|
+
|
|
1691
|
+
{
|
|
1692
|
+
"zipex": "6001,6015,6332,8252,1030",
|
|
1693
|
+
"key": "NZ",
|
|
1694
|
+
"name": "NEW ZEALAND",
|
|
1695
|
+
"fmt": "%N%n%O%n%A%n%D%n%C %Z",
|
|
1696
|
+
"require": "ACZ",
|
|
1697
|
+
"zip": "\\d{4}",
|
|
1698
|
+
"posturl": "http://www.nzpost.co.nz/Cultures/en-NZ/OnlineTools/PostCodeFinder/",
|
|
1699
|
+
"id": "data/NZ"
|
|
1700
|
+
},
|
|
1701
|
+
|
|
1702
|
+
{
|
|
1703
|
+
"zipex": "133,112,111",
|
|
1704
|
+
"key": "OM",
|
|
1705
|
+
"name": "OMAN",
|
|
1706
|
+
"fmt": "%N%n%O%n%A%n%Z%n%C",
|
|
1707
|
+
"zip": "(?:PC )?\\d{3}",
|
|
1708
|
+
"id": "data/OM"
|
|
1709
|
+
},
|
|
1710
|
+
|
|
1711
|
+
{
|
|
1712
|
+
"key": "PA",
|
|
1713
|
+
"name": "PANAMA (REP.)",
|
|
1714
|
+
"upper": "CS",
|
|
1715
|
+
"fmt": "%N%n%O%n%A%n%C%n%S",
|
|
1716
|
+
"id": "data/PA"
|
|
1717
|
+
},
|
|
1718
|
+
|
|
1719
|
+
{
|
|
1720
|
+
"zipex": "LIMA 23,LIMA 42,CALLAO 2,02001",
|
|
1721
|
+
"sub_isoids": "AMA~ANC~APU~ARE~AYA~CAJ~CAL~CUS~LIM~HUV~HUC~ICA~JUN~LAL~LAM~LOR~MDD~MOQ~LMA~PAS~PIU~PUN~SAM~TAC~TUM~UCA",
|
|
1722
|
+
"key": "PE",
|
|
1723
|
+
"name": "PERU",
|
|
1724
|
+
"fmt": "%N%n%O%n%A%n%C %Z%n%S",
|
|
1725
|
+
"locality_name_type": "district",
|
|
1726
|
+
"lang": "es",
|
|
1727
|
+
"zip": "(?:LIMA \\d{1,2}|CALLAO 0?\\d)|[0-2]\\d{4}",
|
|
1728
|
+
"sub_keys": "Amazonas~Áncash~Apurímac~Arequipa~Ayacucho~Cajamarca~Callao~Cuzco~Gobierno Regional de Lima~Huancavelica~Huánuco~Ica~Junín~La Libertad~Lambayeque~Loreto~Madre de Dios~Moquegua~Municipalidad Metropolitana de Lima~Pasco~Piura~Puno~San Martín~Tacna~Tumbes~Ucayali",
|
|
1729
|
+
"languages": "es",
|
|
1730
|
+
"posturl": "http://www.serpost.com.pe/cpostal/codigo",
|
|
1731
|
+
"id": "data/PE"
|
|
1732
|
+
},
|
|
1733
|
+
|
|
1734
|
+
{
|
|
1735
|
+
"zipex": "98709",
|
|
1736
|
+
"key": "PF",
|
|
1737
|
+
"name": "FRENCH POLYNESIA",
|
|
1738
|
+
"fmt": "%N%n%O%n%A%n%Z %C %S",
|
|
1739
|
+
"state_name_type": "island",
|
|
1740
|
+
"require": "ACSZ",
|
|
1741
|
+
"zip": "987\\d{2}",
|
|
1742
|
+
"upper": "CS",
|
|
1743
|
+
"id": "data/PF"
|
|
1744
|
+
},
|
|
1745
|
+
|
|
1746
|
+
{
|
|
1747
|
+
"zipex": "111",
|
|
1748
|
+
"key": "PG",
|
|
1749
|
+
"name": "PAPUA NEW GUINEA",
|
|
1750
|
+
"fmt": "%N%n%O%n%A%n%C %Z %S",
|
|
1751
|
+
"require": "ACS",
|
|
1752
|
+
"zip": "\\d{3}",
|
|
1753
|
+
"id": "data/PG"
|
|
1754
|
+
},
|
|
1755
|
+
|
|
1756
|
+
{
|
|
1757
|
+
"zipex": "1008,1050,1135,1207,2000,1000",
|
|
1758
|
+
"sub_isoids": "ABR~AGN~AGS~AKL~ALB~ANT~APA~AUR~BAS~BAN~BTN~BTG~BEN~BIL~BOH~BUK~BUL~CAG~CAN~CAS~CAM~CAP~CAT~CAV~CEB~COM~NCO~DAV~DAS~DVO~DAO~DIN~EAS~GUI~IFU~ILN~ILS~ILI~ISA~KAL~LUN~LAG~LAN~LAS~LEY~MAG~MAD~MAS~00~MDC~MDR~MSC~MSR~MOU~NEC~NER~NSA~NUE~NUV~PLW~PAM~PAN~QUE~QUI~RIZ~ROM~WSA~SAR~SIG~SOR~SCO~SLE~SUK~SLU~SUN~SUR~TAR~TAW~ZMB~ZAN~ZAS~ZSI",
|
|
1759
|
+
"key": "PH",
|
|
1760
|
+
"name": "PHILIPPINES",
|
|
1761
|
+
"fmt": "%N%n%O%n%A%n%D, %C%n%Z %S",
|
|
1762
|
+
"sub_zipexs": "2800,2826~8600,8611~8500,8513~5600,5616~4500,4517~5700,5717~3800,3806,3808~3200,3207~7300,7306~2100,2114~3900,3905~4200,4234~2600,2615~6543,6550~6300,6337~8700,8723~3000,3024~3500,3528~4600,4612~4400,4436~9100,9104~5800,5816~4800,4810~4100,4126~6000,6053~8800,8810~9400,9417~8100,8120~8000,8010~8015,8013~8200,8210~8426,8412~6800,6822~5044,5046~3600,3610~2900,2922~2700,2733~5000,5043~3300,3336~3807,3809,3814~2500,2520~4000,4033~9200,9223~9300,9321,9700,9716~6500,6542~9600,9619~4900,4905~5400,5421~~5100,5111~5200,5214~7200,7215~9000,9025~2616,2625~6100,6132~6200,6224~6400,6423~3100,3133~3700,3714~5300,5322~2000,2022~2400,2447~4300,4342~3400,3405~1850,1990~5500,5516~6700,6725~8015~6225,6230~4700,4715~9500,9513~6600,6613~9800,9811~7400,7416~8400,8425~8300,8319~2300,2318~7500,7509~2200,2213~7100,7124~7000,7043~7000,7043",
|
|
1763
|
+
"lang": "en",
|
|
1764
|
+
"zip": "\\d{4}",
|
|
1765
|
+
"sub_keys": "Abra~Agusan del Norte~Agusan del Sur~Aklan~Albay~Antique~Apayao~Aurora~Basilan~Bataan~Batanes~Batangas~Benguet~Biliran~Bohol~Bukidnon~Bulacan~Cagayan~Camarines Norte~Camarines Sur~Camiguin~Capiz~Catanduanes~Cavite~Cebu~Compostela Valley~Cotabato~Davao del Norte~Davao del Sur~Davao Occidental~Davao Oriental~Dinagat Islands~Eastern Samar~Guimaras~Ifugao~Ilocos Norte~Ilocos Sur~Iloilo~Isabela~Kalinga~La Union~Laguna~Lanao del Norte~Lanao del Sur~Leyte~Maguindanao~Marinduque~Masbate~Metro Manila~Mindoro Occidental~Mindoro Oriental~Misamis Occidental~Misamis Oriental~Mountain Province~Negros Occidental~Negros Oriental~Northern Samar~Nueva Ecija~Nueva Vizcaya~Palawan~Pampanga~Pangasinan~Quezon Province~Quirino~Rizal~Romblon~Samar~Sarangani~Siquijor~Sorsogon~South Cotabato~Southern Leyte~Sultan Kudarat~Sulu~Surigao del Norte~Surigao del Sur~Tarlac~Tawi-Tawi~Zambales~Zamboanga del Norte~Zamboanga del Sur~Zamboanga Sibuguey",
|
|
1766
|
+
"languages": "en",
|
|
1767
|
+
"posturl": "http://www.philpost.gov.ph/",
|
|
1768
|
+
"sub_zips": "28[0-2]~86[01]~85[01]~56[01]~45[01]~57[01]~380[0-68]~320~730~21[01]~390~42[0-3]~26(0|1[0-5])~65(4[3-9]|5)~63[0-3]~87[0-2]~30[0-2]~35[0-2]~46[01]~44[0-3]~910~58[01]~48[01]~41[0-2]~60[0-5]~88[01]~94[01]~81[0-2]~80[01]~801[1-5]~82[01]~84[12]~68[0-2]~504[4-6]~36[01]~29[0-2]~27[0-3]~50([0-3]|4[0-3])~33[0-3]~38(0[79]|1[0-4])~25[0-2]~40[0-3]~92[0-2]~9(3[0-2]|7[01])~65([0-3]|4[0-2])~96[01]~490~54[0-2]~~51[01]~52[01]~72[01]~90[0-2]~26(1[6-9]|2[0-5])~61[0-3]~62[0-2]~64[0-2]~31[0-3]~37[01]~53[0-2]~20[0-2]~24[0-4]~43[0-4]~340~1[89]~55[01]~67[0-2]~8015~62(2[5-9]|30)~47[01]~95[01]~66[10]~98[01]~74[01]~84[0-2]~83[01]~23[01]~750~22[01]~71[0-2]~70[0-4]~70[0-4]",
|
|
1769
|
+
"id": "data/PH"
|
|
1770
|
+
},
|
|
1771
|
+
|
|
1772
|
+
{
|
|
1773
|
+
"zipex": "44000",
|
|
1774
|
+
"key": "PK",
|
|
1775
|
+
"name": "PAKISTAN",
|
|
1776
|
+
"fmt": "%N%n%O%n%A%n%C-%Z",
|
|
1777
|
+
"zip": "\\d{5}",
|
|
1778
|
+
"posturl": "http://www.pakpost.gov.pk/postcode.php",
|
|
1779
|
+
"id": "data/PK"
|
|
1780
|
+
},
|
|
1781
|
+
|
|
1782
|
+
{
|
|
1783
|
+
"zipex": "00-950,05-470,48-300,32-015,00-940",
|
|
1784
|
+
"key": "PL",
|
|
1785
|
+
"name": "POLAND",
|
|
1786
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
1787
|
+
"require": "ACZ",
|
|
1788
|
+
"zip": "\\d{2}-\\d{3}",
|
|
1789
|
+
"posturl": "http://kody.poczta-polska.pl/",
|
|
1790
|
+
"id": "data/PL"
|
|
1791
|
+
},
|
|
1792
|
+
|
|
1793
|
+
{
|
|
1794
|
+
"zipex": "97500",
|
|
1795
|
+
"key": "PM",
|
|
1796
|
+
"name": "ST. PIERRE AND MIQUELON",
|
|
1797
|
+
"fmt": "%O%n%N%n%A%n%Z %C %X",
|
|
1798
|
+
"require": "ACZ",
|
|
1799
|
+
"zip": "9[78]5\\d{2}",
|
|
1800
|
+
"upper": "ACX",
|
|
1801
|
+
"id": "data/PM"
|
|
1802
|
+
},
|
|
1803
|
+
|
|
1804
|
+
{
|
|
1805
|
+
"zipex": "PCRN 1ZZ",
|
|
1806
|
+
"key": "PN",
|
|
1807
|
+
"name": "PITCAIRN",
|
|
1808
|
+
"fmt": "%N%n%O%n%A%n%C%n%Z",
|
|
1809
|
+
"require": "ACZ",
|
|
1810
|
+
"zip": "PCRN 1ZZ",
|
|
1811
|
+
"upper": "CZ",
|
|
1812
|
+
"id": "data/PN"
|
|
1813
|
+
},
|
|
1814
|
+
|
|
1815
|
+
{
|
|
1816
|
+
"zipex": "00930",
|
|
1817
|
+
"postprefix": "PR ",
|
|
1818
|
+
"key": "PR",
|
|
1819
|
+
"name": "PUERTO RICO",
|
|
1820
|
+
"fmt": "%N%n%O%n%A%n%C PR %Z",
|
|
1821
|
+
"zip_name_type": "zip",
|
|
1822
|
+
"posturl": "http://zip4.usps.com/zip4/welcome.jsp",
|
|
1823
|
+
"require": "ACZ",
|
|
1824
|
+
"zip": "(00[679]\\d{2})(?:[ \\-](\\d{4}))?",
|
|
1825
|
+
"upper": "ACNO",
|
|
1826
|
+
"id": "data/PR"
|
|
1827
|
+
},
|
|
1828
|
+
|
|
1829
|
+
{ "key": "PS", "name": "PALESTINIAN TERRITORY", "id": "data/PS" },
|
|
1830
|
+
|
|
1831
|
+
{
|
|
1832
|
+
"zipex": "2725-079,1250-096,1201-950,2860-571,1208-148",
|
|
1833
|
+
"key": "PT",
|
|
1834
|
+
"name": "PORTUGAL",
|
|
1835
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
1836
|
+
"require": "ACZ",
|
|
1837
|
+
"zip": "\\d{4}-\\d{3}",
|
|
1838
|
+
"posturl": "http://www.ctt.pt/feapl_2/app/open/tools.jspx?tool=1",
|
|
1839
|
+
"id": "data/PT"
|
|
1840
|
+
},
|
|
1841
|
+
|
|
1842
|
+
{
|
|
1843
|
+
"zipex": "96940",
|
|
1844
|
+
"key": "PW",
|
|
1845
|
+
"name": "PALAU",
|
|
1846
|
+
"fmt": "%N%n%O%n%A%n%C %S %Z",
|
|
1847
|
+
"zip_name_type": "zip",
|
|
1848
|
+
"posturl": "http://zip4.usps.com/zip4/welcome.jsp",
|
|
1849
|
+
"require": "ACSZ",
|
|
1850
|
+
"state_name_type": "state",
|
|
1851
|
+
"zip": "(969(?:39|40))(?:[ \\-](\\d{4}))?",
|
|
1852
|
+
"upper": "ACNOS",
|
|
1853
|
+
"id": "data/PW"
|
|
1854
|
+
},
|
|
1855
|
+
|
|
1856
|
+
{
|
|
1857
|
+
"zipex": "1536,1538,1209",
|
|
1858
|
+
"key": "PY",
|
|
1859
|
+
"name": "PARAGUAY",
|
|
1860
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
1861
|
+
"zip": "\\d{4}",
|
|
1862
|
+
"id": "data/PY"
|
|
1863
|
+
},
|
|
1864
|
+
|
|
1865
|
+
{ "key": "QA", "name": "QATAR", "upper": "AC", "id": "data/QA" },
|
|
1866
|
+
|
|
1867
|
+
{
|
|
1868
|
+
"zipex": "97400",
|
|
1869
|
+
"key": "RE",
|
|
1870
|
+
"name": "REUNION",
|
|
1871
|
+
"fmt": "%O%n%N%n%A%n%Z %C %X",
|
|
1872
|
+
"posturl": "http://www.laposte.fr/Particulier/Utiliser-nos-outils-pratiques/Outils-et-documents/Trouvez-un-code-postal",
|
|
1873
|
+
"require": "ACZ",
|
|
1874
|
+
"zip": "9[78]4\\d{2}",
|
|
1875
|
+
"upper": "ACX",
|
|
1876
|
+
"id": "data/RE"
|
|
1877
|
+
},
|
|
1878
|
+
|
|
1879
|
+
{
|
|
1880
|
+
"zipex": "060274,061357,200716",
|
|
1881
|
+
"key": "RO",
|
|
1882
|
+
"name": "ROMANIA",
|
|
1883
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
1884
|
+
"posturl": "http://www.posta-romana.ro/zip_codes",
|
|
1885
|
+
"zip": "\\d{6}",
|
|
1886
|
+
"upper": "AC",
|
|
1887
|
+
"id": "data/RO"
|
|
1888
|
+
},
|
|
1889
|
+
|
|
1890
|
+
{
|
|
1891
|
+
"zipex": "106314",
|
|
1892
|
+
"key": "RS",
|
|
1893
|
+
"name": "REPUBLIC OF SERBIA",
|
|
1894
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
1895
|
+
"zip": "\\d{5,6}",
|
|
1896
|
+
"posturl": "http://www.posta.rs/struktura/lat/aplikacije/pronadji/nadji-postu.asp",
|
|
1897
|
+
"id": "data/RS"
|
|
1898
|
+
},
|
|
1899
|
+
|
|
1900
|
+
{
|
|
1901
|
+
"sub_lnames": "Altayskiy kray~Amurskaya oblast'~Arkhangelskaya oblast'~Astrakhanskaya oblast'~Belgorodskaya oblast'~Bryanskaya oblast'~Vladimirskaya oblast'~Volgogradskaya oblast'~Vologodskaya oblast'~Voronezhskaya oblast'~Evreyskaya avtonomnaya oblast'~Zabaykalskiy kray~Ivanovskaya oblast'~Irkutskaya oblast'~Kabardino-Balkarskaya Republits~Kaliningradskaya oblast'~Kaluzhskaya oblast'~Kamchatskiy kray~Karachaevo-Cherkesskaya Republits~Kemerovskaya oblast'~Kirovskaya oblast'~Kostromskaya oblast'~Krasnodarskiy kray~Krasnoyarskiy kray~Kurganskaya oblast'~Kurskaya oblast'~Leningradskaya oblast'~Lipetskaya oblast'~Magadanskaya oblast'~Moskva~Moskovskaya oblast'~Murmanskaya oblast'~Nenetskiy~Nizhegorodskaya oblast'~Novgorodskaya oblast'~Novosibirskaya oblast'~Omskaya oblast'~Orenburgskaya oblast'~Orlovskaya oblast'~Penzenskaya oblast'~Permskiy kray~Primorskiy kray~Pskovskaya oblast'~Respublika Adygeya~Altay Republits~Bashkortostan Republits~Buryatiya Republits~Dagestan Republits~Ingushetiya Republits~Respublika Kalmykiya~Kareliya Republits~Komi Republits~Respublika Krym~Respublika Mariy El~Respublika Mordoviya~Sakha (Yakutiya) Republits~Respublika Severnaya Osetiya-Alaniya~Respublika Tatarstan~Tyva Republits~Respublika Udmurtiya~Khakasiya Republits~Rostovskaya oblast'~Ryazanskaya oblast'~Samarskaya oblast'~Sankt-Peterburg~Saratovskaya oblast'~Sakhalinskaya oblast'~Sverdlovskaya oblast'~Sevastopol'~Smolenskaya oblast'~Stavropolskiy kray~Tambovskaya oblast'~Tverskaya oblast'~Tomskaya oblast'~Tulskaya oblast'~Tyumenskaya oblast'~Ulyanovskaya oblast'~Khabarovskiy kray~Khanty-Mansiyskiy avtonomnyy okrug~Chelyabinskaya oblast'~Chechenskaya Republits~Chuvashia~Chukotskiy~Yamalo-Nenetskiy~Yaroslavskaya oblast'",
|
|
1902
|
+
"lfmt": "%N%n%O%n%A%n%C%n%S%n%Z",
|
|
1903
|
+
"zipex": "247112,103375,188300",
|
|
1904
|
+
"require": "ACSZ",
|
|
1905
|
+
"key": "RU",
|
|
1906
|
+
"name": "RUSSIAN FEDERATION",
|
|
1907
|
+
"fmt": "%N%n%O%n%A%n%C%n%S%n%Z",
|
|
1908
|
+
"state_name_type": "oblast",
|
|
1909
|
+
"sub_names": "Алтайский край~Амурская область~Архангельская область~Астраханская область~Белгородская область~Брянская область~Владимирская область~Волгоградская область~Вологодская область~Воронежская область~Еврейская автономная область~Забайкальский край~Ивановская область~Иркутская область~Кабардино-Балкарская Республика~Калининградская область~Калужская область~Камчатский край~Карачаево-Черкесская Республика~Кемеровская область~Кировская область~Костромская область~Краснодарский край~Красноярский край~Курганская область~Курская область~Ленинградская область~Липецкая область~Магаданская область~Москва~Московская область~Мурманская область~Ненецкий автономный округ~Нижегородская область~Новгородская область~Новосибирская область~Омская область~Оренбургская область~Орловская область~Пензенская область~Пермский край~Приморский край~Псковская область~Республика Адыгея~Республика Алтай~Республика Башкортостан~Республика Бурятия~Республика Дагестан~Республика Ингушетия~Республика Калмыкия~Республика Карелия~Республика Коми~Республика Крым~Республика Марий Эл~Республика Мордовия~Республика Саха (Якутия)~Республика Северная Осетия-Алания~Республика Татарстан~Республика Тыва~Республика Удмуртия~Республика Хакасия~Ростовская область~Рязанская область~Самарская область~Санкт-Петербург~Саратовская область~Сахалинская область~Свердловская область~Севастополь~Смоленская область~Ставропольский край~Тамбовская область~Тверская область~Томская область~Тульская область~Тюменская область~Ульяновская область~Хабаровский край~Ханты-Мансийский автономный округ~Челябинская область~Чеченская Республика~Чувашская Республика~Чукотский автономный округ~Ямало-Ненецкий автономный округ~Ярославская область",
|
|
1910
|
+
"posturl": "http://info.russianpost.ru/servlet/department",
|
|
1911
|
+
"lang": "ru",
|
|
1912
|
+
"sub_isoids": "ALT~AMU~ARK~AST~BEL~BRY~VLA~VGG~VLG~VOR~YEV~ZAB~IVA~IRK~KB~KGD~KLU~KAM~KC~KEM~KIR~KOS~KDA~KYA~KGN~KRS~LEN~LIP~MAG~MOW~MOS~MUR~NEN~NIZ~NGR~NVS~OMS~ORE~ORL~PNZ~PER~PRI~PSK~AD~AL~BA~BU~DA~IN~KL~KR~KO~~ME~MO~SA~SE~TA~TY~UD~KK~ROS~RYA~SAM~SPE~SAR~SAK~SVE~~SMO~STA~TAM~TVE~TOM~TUL~TYU~ULY~KHA~KHM~CHE~CE~CU~CHU~YAN~YAR",
|
|
1913
|
+
"zip": "\\d{6}",
|
|
1914
|
+
"sub_keys": "Алтайский край~Амурская область~Архангельская область~Астраханская область~Белгородская область~Брянская область~Владимирская область~Волгоградская область~Вологодская область~Воронежская область~Еврейская автономная область~Забайкальский край~Ивановская область~Иркутская область~Кабардино-Балкарская Республика~Калининградская область~Калужская область~Камчатский край~Карачаево-Черкесская Республика~Кемеровская область~Кировская область~Костромская область~Краснодарский край~Красноярский край~Курганская область~Курская область~Ленинградская область~Липецкая область~Магаданская область~Москва~Московская область~Мурманская область~Ненецкий автономный округ~Нижегородская область~Новгородская область~Новосибирская область~Омская область~Оренбургская область~Орловская область~Пензенская область~Пермский край~Приморский край~Псковская область~Республика Адыгея~Республика Алтай~Республика Башкортостан~Республика Бурятия~Республика Дагестан~Республика Ингушетия~Республика Калмыкия~Республика Карелия~Республика Коми~Автономна Республіка Крим~Республика Марий Эл~Республика Мордовия~Республика Саха (Якутия)~Республика Северная Осетия-Алания~Республика Татарстан~Республика Тыва~Республика Удмуртия~Республика Хакасия~Ростовская область~Рязанская область~Самарская область~Санкт-Петербург~Саратовская область~Сахалинская область~Свердловская область~Севастополь~Смоленская область~Ставропольский край~Тамбовская область~Тверская область~Томская область~Тульская область~Тюменская область~Ульяновская область~Хабаровский край~Ханты-Мансийский автономный округ~Челябинская область~Чеченская Республика~Чувашская Республика~Чукотский автономный округ~Ямало-Ненецкий автономный округ~Ярославская область",
|
|
1915
|
+
"languages": "ru",
|
|
1916
|
+
"upper": "AC",
|
|
1917
|
+
"sub_zips": "65[6-9]~67[56]~16[3-5]~41[4-6]~30[89]~24[1-3]~60[0-2]~40[0-4]~16[0-2]~39[4-7]~679~6(?:7[2-4]|87)~15[3-5]~66[4-9]~36[01]~23[6-8]~24[89]~68[348]~369~65[0-4]~61[0-3]~15[67]~35[0-4]~6(?:6[0-3]|4[78])~64[01]~30[5-7]~18[78]~39[89]~68[56]~1(?:0[1-9]|1|2|3[0-5]|4[0-4])~14[0-4]~18[34]~166~60[3-7]~17[3-5]~63[0-3]~64[4-6]~46[0-2]~30[23]~44[0-2]~61[4-9]~69[0-2]~18[0-2]~385~649~45[0-3]~67[01]~36[78]~386~35[89]~18[56]~16[7-9]~29[5-8]~42[45]~43[01]~67[78]~36[23]~42[0-3]~66[78]~42[67]~655~34[4-7]~39[01]~44[3-6]~19~41[0-3]~69[34]~62[0-4]~299~21[4-6]~35[5-7]~39[23]~17[0-2]~63[4-6]~30[01]~62[5-7]~43[23]~68[0-2]~628~45[4-7]~36[4-6]~42[89]~689~629~15[0-2]",
|
|
1918
|
+
"id": "data/RU"
|
|
1919
|
+
},
|
|
1920
|
+
|
|
1921
|
+
{ "key": "RW", "name": "RWANDA", "upper": "AC", "id": "data/RW" },
|
|
1922
|
+
|
|
1923
|
+
{
|
|
1924
|
+
"zipex": "11564,11187,11142",
|
|
1925
|
+
"key": "SA",
|
|
1926
|
+
"name": "SAUDI ARABIA",
|
|
1927
|
+
"fmt": "%N%n%O%n%A%n%C %Z",
|
|
1928
|
+
"zip": "\\d{5}",
|
|
1929
|
+
"id": "data/SA"
|
|
1930
|
+
},
|
|
1931
|
+
|
|
1932
|
+
{ "key": "SB", "name": "SOLOMON ISLANDS", "id": "data/SB" },
|
|
1933
|
+
|
|
1934
|
+
{
|
|
1935
|
+
"key": "SC",
|
|
1936
|
+
"name": "SEYCHELLES",
|
|
1937
|
+
"fmt": "%N%n%O%n%A%n%C%n%S",
|
|
1938
|
+
"upper": "S",
|
|
1939
|
+
"state_name_type": "island",
|
|
1940
|
+
"id": "data/SC"
|
|
1941
|
+
},
|
|
1942
|
+
|
|
1943
|
+
{
|
|
1944
|
+
"zipex": "11042,11113",
|
|
1945
|
+
"key": "SD",
|
|
1946
|
+
"name": "SUDAN",
|
|
1947
|
+
"fmt": "%N%n%O%n%A%n%C%n%Z",
|
|
1948
|
+
"zip": "\\d{5}",
|
|
1949
|
+
"locality_name_type": "district",
|
|
1950
|
+
"id": "data/SD"
|
|
1951
|
+
},
|
|
1952
|
+
|
|
1953
|
+
{
|
|
1954
|
+
"zipex": "11455,12345,10500",
|
|
1955
|
+
"postprefix": "SE-",
|
|
1956
|
+
"key": "SE",
|
|
1957
|
+
"name": "SWEDEN",
|
|
1958
|
+
"fmt": "%O%n%N%n%A%nSE-%Z %C",
|
|
1959
|
+
"locality_name_type": "post_town",
|
|
1960
|
+
"require": "ACZ",
|
|
1961
|
+
"zip": "\\d{3} ?\\d{2}",
|
|
1962
|
+
"posturl": "http://www.posten.se/sv/Kundservice/Sidor/Sok-postnummer-resultat.aspx",
|
|
1963
|
+
"id": "data/SE"
|
|
1964
|
+
},
|
|
1965
|
+
|
|
1966
|
+
{
|
|
1967
|
+
"zipex": "546080,308125,408600",
|
|
1968
|
+
"key": "SG",
|
|
1969
|
+
"name": "REP. OF SINGAPORE",
|
|
1970
|
+
"fmt": "%N%n%O%n%A%nSINGAPORE %Z",
|
|
1971
|
+
"require": "AZ",
|
|
1972
|
+
"zip": "\\d{6}",
|
|
1973
|
+
"posturl": "https://www.singpost.com/find-postal-code",
|
|
1974
|
+
"id": "data/SG"
|
|
1975
|
+
},
|
|
1976
|
+
|
|
1977
|
+
{
|
|
1978
|
+
"zipex": "STHL 1ZZ",
|
|
1979
|
+
"key": "SH",
|
|
1980
|
+
"name": "SAINT HELENA",
|
|
1981
|
+
"fmt": "%N%n%O%n%A%n%C%n%Z",
|
|
1982
|
+
"require": "ACZ",
|
|
1983
|
+
"zip": "(?:ASCN|STHL) 1ZZ",
|
|
1984
|
+
"upper": "CZ",
|
|
1985
|
+
"id": "data/SH"
|
|
1986
|
+
},
|
|
1987
|
+
|
|
1988
|
+
{
|
|
1989
|
+
"zipex": "4000,1001,2500",
|
|
1990
|
+
"key": "SI",
|
|
1991
|
+
"name": "SLOVENIA",
|
|
1992
|
+
"fmt": "%N%n%O%n%A%nSI-%Z %C",
|
|
1993
|
+
"postprefix": "SI-",
|
|
1994
|
+
"zip": "\\d{4}",
|
|
1995
|
+
"id": "data/SI"
|
|
1996
|
+
},
|
|
1997
|
+
|
|
1998
|
+
{
|
|
1999
|
+
"zipex": "9170",
|
|
2000
|
+
"key": "SJ",
|
|
2001
|
+
"name": "SVALBARD AND JAN MAYEN ISLANDS",
|
|
2002
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
2003
|
+
"locality_name_type": "post_town",
|
|
2004
|
+
"require": "ACZ",
|
|
2005
|
+
"zip": "\\d{4}",
|
|
2006
|
+
"posturl": "http://epab.posten.no/",
|
|
2007
|
+
"id": "data/SJ"
|
|
2008
|
+
},
|
|
2009
|
+
|
|
2010
|
+
{
|
|
2011
|
+
"zipex": "010 01,023 14,972 48,921 01,975 99",
|
|
2012
|
+
"key": "SK",
|
|
2013
|
+
"name": "SLOVAKIA",
|
|
2014
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
2015
|
+
"require": "ACZ",
|
|
2016
|
+
"zip": "\\d{3} ?\\d{2}",
|
|
2017
|
+
"posturl": "http://psc.posta.sk",
|
|
2018
|
+
"id": "data/SK"
|
|
2019
|
+
},
|
|
2020
|
+
|
|
2021
|
+
{ "key": "SL", "name": "SIERRA LEONE", "id": "data/SL" },
|
|
2022
|
+
|
|
2023
|
+
{
|
|
2024
|
+
"zipex": "47890,47891,47895,47899",
|
|
2025
|
+
"key": "SM",
|
|
2026
|
+
"name": "SAN MARINO",
|
|
2027
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
2028
|
+
"require": "AZ",
|
|
2029
|
+
"zip": "4789\\d",
|
|
2030
|
+
"posturl": "http://www.poste.it/online/cercacap/",
|
|
2031
|
+
"id": "data/SM"
|
|
2032
|
+
},
|
|
2033
|
+
|
|
2034
|
+
{
|
|
2035
|
+
"zipex": "12500,46024,16556,10000",
|
|
2036
|
+
"key": "SN",
|
|
2037
|
+
"name": "SENEGAL",
|
|
2038
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
2039
|
+
"zip": "\\d{5}",
|
|
2040
|
+
"id": "data/SN"
|
|
2041
|
+
},
|
|
2042
|
+
|
|
2043
|
+
{
|
|
2044
|
+
"zipex": "JH 09010,AD 11010",
|
|
2045
|
+
"require": "ACS",
|
|
2046
|
+
"key": "SO",
|
|
2047
|
+
"name": "SOMALIA",
|
|
2048
|
+
"fmt": "%N%n%O%n%A%n%C, %S %Z",
|
|
2049
|
+
"sub_names": "Awdal~Bakool~Banaadir~Bari~Bay~Galguduud~Gedo~Hiiraan~Jubbada Dhexe~Jubbada Hoose~Mudug~Nugaal~Sanaag~Shabeellaha Dhexe~Shabeellaha Hoose~Sool~Togdheer~Woqooyi Galbeed",
|
|
2050
|
+
"lang": "so",
|
|
2051
|
+
"sub_isoids": "AW~BK~BN~BR~BY~GA~GE~HI~JD~JH~MU~NU~SA~SD~SH~SO~TO~WO",
|
|
2052
|
+
"zip": "[A-Z]{2} ?\\d{5}",
|
|
2053
|
+
"sub_keys": "AD~BK~BN~BR~BY~GG~GD~HR~JD~JH~MD~NG~SG~SD~SH~SL~TG~WG",
|
|
2054
|
+
"languages": "so",
|
|
2055
|
+
"upper": "ACS",
|
|
2056
|
+
"id": "data/SO"
|
|
2057
|
+
},
|
|
2058
|
+
|
|
2059
|
+
{
|
|
2060
|
+
"sub_isoids": "BR~CM~CR~MA~NI~PR~PM~SA~SI~WA",
|
|
2061
|
+
"key": "SR",
|
|
2062
|
+
"name": "SURINAME",
|
|
2063
|
+
"fmt": "%N%n%O%n%A%n%C%n%S",
|
|
2064
|
+
"lang": "nl",
|
|
2065
|
+
"sub_keys": "Brokopondo~Commewijne~Coronie~Marowijne~Nickerie~Para~Paramaribo~Saramacca~Sipaliwini~Wanica",
|
|
2066
|
+
"languages": "nl",
|
|
2067
|
+
"upper": "AS",
|
|
2068
|
+
"id": "data/SR"
|
|
2069
|
+
},
|
|
2070
|
+
|
|
2071
|
+
{ "key": "ST", "name": "SAO TOME AND PRINCIPE", "id": "data/ST" },
|
|
2072
|
+
|
|
2073
|
+
{
|
|
2074
|
+
"zipex": "CP 1101",
|
|
2075
|
+
"require": "ACS",
|
|
2076
|
+
"key": "SV",
|
|
2077
|
+
"name": "EL SALVADOR",
|
|
2078
|
+
"fmt": "%N%n%O%n%A%n%Z-%C%n%S",
|
|
2079
|
+
"sub_names": "Ahuachapán~Cabañas~Chalatenango~Cuscatlán~La Libertad~La Paz~La Unión~Morazán~San Miguel~San Salvador~San Vicente~Santa Ana~Sonsonate~Usulután",
|
|
2080
|
+
"sub_zipexs": "CP 2101~CP 1201~CP 1301~CP 1401~CP 1501~CP 1601~CP 3101~CP 3201~CP 3301~CP 1101~CP 1701~CP 2201~CP 2301~CP 3401",
|
|
2081
|
+
"lang": "es",
|
|
2082
|
+
"sub_isoids": "AH~CA~CH~CU~LI~PA~UN~MO~SM~SS~SV~SA~SO~US",
|
|
2083
|
+
"zip": "CP [1-3][1-7][0-2]\\d",
|
|
2084
|
+
"sub_keys": "Ahuachapan~Cabanas~Calatenango~Cuscatlan~La Libertad~La Paz~La Union~Morazan~San Miguel~San Salvador~San Vicente~Santa Ana~Sonsonate~Usulutan",
|
|
2085
|
+
"languages": "es",
|
|
2086
|
+
"upper": "CSZ",
|
|
2087
|
+
"sub_zips": "CP 21~CP 12~CP 13~CP 14~CP 15~CP 16~CP 31~CP 32~CP 33~CP 11~CP 17~CP 22~CP 23~CP 34",
|
|
2088
|
+
"id": "data/SV"
|
|
2089
|
+
},
|
|
2090
|
+
|
|
2091
|
+
{ "key": "SX", "name": "SINT MAARTEN", "id": "data/SX" },
|
|
2092
|
+
|
|
2093
|
+
{
|
|
2094
|
+
"locality_name_type": "district",
|
|
2095
|
+
"id": "data/SY",
|
|
2096
|
+
"key": "SY",
|
|
2097
|
+
"name": "SYRIA"
|
|
2098
|
+
},
|
|
2099
|
+
|
|
2100
|
+
{
|
|
2101
|
+
"zipex": "H100",
|
|
2102
|
+
"key": "SZ",
|
|
2103
|
+
"name": "SWAZILAND",
|
|
2104
|
+
"fmt": "%N%n%O%n%A%n%C%n%Z",
|
|
2105
|
+
"posturl": "http://www.sptc.co.sz/swazipost/codes/index.php",
|
|
2106
|
+
"zip": "[HLMS]\\d{3}",
|
|
2107
|
+
"upper": "ACZ",
|
|
2108
|
+
"id": "data/SZ"
|
|
2109
|
+
},
|
|
2110
|
+
|
|
2111
|
+
{
|
|
2112
|
+
"zipex": "TDCU 1ZZ",
|
|
2113
|
+
"key": "TA",
|
|
2114
|
+
"name": "TRISTAN DA CUNHA",
|
|
2115
|
+
"fmt": "%N%n%O%n%A%n%C%n%Z",
|
|
2116
|
+
"zip": "TDCU 1ZZ",
|
|
2117
|
+
"id": "data/TA"
|
|
2118
|
+
},
|
|
2119
|
+
|
|
2120
|
+
{
|
|
2121
|
+
"zipex": "TKCA 1ZZ",
|
|
2122
|
+
"key": "TC",
|
|
2123
|
+
"name": "TURKS AND CAICOS ISLANDS",
|
|
2124
|
+
"fmt": "%N%n%O%n%A%n%C%n%Z",
|
|
2125
|
+
"require": "ACZ",
|
|
2126
|
+
"zip": "TKCA 1ZZ",
|
|
2127
|
+
"upper": "CZ",
|
|
2128
|
+
"id": "data/TC"
|
|
2129
|
+
},
|
|
2130
|
+
|
|
2131
|
+
{ "key": "TD", "name": "CHAD", "id": "data/TD" },
|
|
2132
|
+
|
|
2133
|
+
{ "key": "TF", "name": "FRENCH SOUTHERN TERRITORIES", "id": "data/TF" },
|
|
2134
|
+
|
|
2135
|
+
{ "key": "TG", "name": "TOGO", "id": "data/TG" },
|
|
2136
|
+
|
|
2137
|
+
{
|
|
2138
|
+
"sub_lnames": "Krabi~Bangkok~Kanchanaburi~Kalasin~Kamphaeng Phet~Khon Kaen~Bueng Kan~Chanthaburi~Chachoengsao~Chon Buri~Chai Nat~Chaiyaphum~Chumpon~Chiang Rai~Chiang Mai~Trang~Trat~Tak~Nakhon Nayok~Nakhon Pathom~Nakhon Phanom~Nakhon Ratchasima~Nakhon Si Thammarat~Nakhon Sawan~Nonthaburi~Narathiwat~Nan~Buri Ram~Pathum Thani~Prachuap Khiri Khan~Prachin Buri~Pattani~Phra Nakhon Si Ayutthaya~Phayao~Phang Nga~Phattalung~Phichit~Phitsanulok~Phetchaburi~Phetchabun~Phrae~Phuket~Maha Sarakham~Mukdahan~Mae Hong Son~Yasothon~Yala~Roi Et~Ranong~Rayong~Ratchaburi~Lop Buri~Lampang~Lamphun~Loei~Si Sa Ket~Sakon Nakhon~Songkhla~Satun~Samut Prakan~Samut Songkhram~Samut Sakhon~Sa Kaeo~Saraburi~Sing Buri~Sukhothai~Suphanburi~Surat Thani~Surin~Nong Khai~Nong Bua Lam Phu~Ang Thong~Amnat Charoen~Udon Thani~Uttaradit~Uthai Thani~Ubon Ratchathani",
|
|
2139
|
+
"lfmt": "%N%n%O%n%A%n%D, %C%n%S %Z",
|
|
2140
|
+
"zipex": "10150,10210",
|
|
2141
|
+
"sub_isoids": "81~10~71~46~62~40~38~22~24~20~18~36~86~57~50~92~23~63~26~73~48~30~80~60~12~96~55~31~13~77~25~94~14~56~82~93~66~65~76~67~54~83~44~49~58~35~95~45~85~21~70~16~52~51~42~33~47~90~91~11~75~74~27~19~17~64~72~84~32~43~39~15~37~41~53~61~34",
|
|
2142
|
+
"key": "TH",
|
|
2143
|
+
"name": "THAILAND",
|
|
2144
|
+
"fmt": "%N%n%O%n%A%n%D %C%n%S %Z",
|
|
2145
|
+
"lang": "th",
|
|
2146
|
+
"zip": "\\d{5}",
|
|
2147
|
+
"sub_keys": "กระบี่~กรุงเทพมหานคร~กาญจนบุรี~กาฬสินธุ์~กำแพงเพชร~ขอนแก่น~จังหวัด บึงกาฬ~จันทบุรี~ฉะเชิงเทรา~ชลบุรี~ชัยนาท~ชัยภูมิ~ชุมพร~เชียงราย~เชียงใหม่~ตรัง~ตราด~ตาก~นครนายก~นครปฐม~นครพนม~นครราชสีมา~นครศรีธรรมราช~นครสวรรค์~นนทบุรี~นราธิวาส~น่าน~บุรีรัมย์~ปทุมธานี~ประจวบคีรีขันธ์~ปราจีนบุรี~ปัตตานี~พระนครศรีอยุธยา~พะเยา~พังงา~พัทลุง~พิจิตร~พิษณุโลก~เพชรบุรี~เพชรบูรณ์~แพร่~ภูเก็ต~มหาสารคาม~มุกดาหาร~แม่ฮ่องสอน~ยโสธร~ยะลา~ร้อยเอ็ด~ระนอง~ระยอง~ราชบุรี~ลพบุรี~ลำปาง~ลำพูน~เลย~ศรีสะเกษ~สกลนคร~สงขลา~สตูล~สมุทรปราการ~สมุทรสงคราม~สมุทรสาคร~สระแก้ว~สระบุรี~สิงห์บุรี~สุโขทัย~สุพรรณบุรี~สุราษฎร์ธานี~สุรินทร์~หนองคาย~หนองบัวลำภู~อ่างทอง~อำนาจเจริญ~อุดรธานี~อุตรดิตถ์~อุทัยธานี~อุบลราชธานี",
|
|
2148
|
+
"languages": "th",
|
|
2149
|
+
"upper": "S",
|
|
2150
|
+
"sub_zips": "81~10~71~46~62~40~~22~24~20~17~36~86~57~50~92~23~63~26~73~48~30~80~60~11~96~55~31~12~77~25~94~13~56~82~93~66~65~76~67~54~83~44~49~58~35~95~45~85~21~70~15~52~51~42~33~47~90~91~10~75~74~27~18~16~64~72~84~32~43~39~14~37~41~53~61~34",
|
|
2151
|
+
"id": "data/TH"
|
|
2152
|
+
},
|
|
2153
|
+
|
|
2154
|
+
{
|
|
2155
|
+
"zipex": "735450,734025",
|
|
2156
|
+
"key": "TJ",
|
|
2157
|
+
"name": "TAJIKISTAN",
|
|
2158
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
2159
|
+
"zip": "\\d{6}",
|
|
2160
|
+
"id": "data/TJ"
|
|
2161
|
+
},
|
|
2162
|
+
|
|
2163
|
+
{ "key": "TK", "name": "TOKELAU", "id": "data/TK" },
|
|
2164
|
+
|
|
2165
|
+
{ "key": "TL", "name": "TIMOR-LESTE", "id": "data/TL" },
|
|
2166
|
+
|
|
2167
|
+
{
|
|
2168
|
+
"zipex": "744000",
|
|
2169
|
+
"key": "TM",
|
|
2170
|
+
"name": "TURKMENISTAN",
|
|
2171
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
2172
|
+
"zip": "\\d{6}",
|
|
2173
|
+
"id": "data/TM"
|
|
2174
|
+
},
|
|
2175
|
+
|
|
2176
|
+
{
|
|
2177
|
+
"zipex": "1002,8129,3100,1030",
|
|
2178
|
+
"key": "TN",
|
|
2179
|
+
"name": "TUNISIA",
|
|
2180
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
2181
|
+
"zip": "\\d{4}",
|
|
2182
|
+
"posturl": "http://www.poste.tn/codes.php",
|
|
2183
|
+
"id": "data/TN"
|
|
2184
|
+
},
|
|
2185
|
+
|
|
2186
|
+
{ "key": "TO", "name": "TONGA", "id": "data/TO" },
|
|
2187
|
+
|
|
2188
|
+
{
|
|
2189
|
+
"zipex": "01960,06101",
|
|
2190
|
+
"require": "ACZ",
|
|
2191
|
+
"key": "TR",
|
|
2192
|
+
"name": "TURKEY",
|
|
2193
|
+
"fmt": "%N%n%O%n%A%n%Z %C/%S",
|
|
2194
|
+
"locality_name_type": "district",
|
|
2195
|
+
"lang": "tr",
|
|
2196
|
+
"sub_isoids": "01~02~03~04~68~05~06~07~75~08~09~10~74~72~69~11~12~13~14~15~16~17~18~19~20~21~81~22~23~24~25~26~27~28~29~30~31~76~32~34~35~46~78~70~36~37~38~71~39~40~79~41~42~43~44~45~47~33~48~49~50~51~52~80~53~54~55~56~57~58~63~73~59~60~61~62~64~65~77~66~67",
|
|
2197
|
+
"zip": "\\d{5}",
|
|
2198
|
+
"sub_keys": "Adana~Adıyaman~Afyon~Ağrı~Aksaray~Amasya~Ankara~Antalya~Ardahan~Artvin~Aydın~Balıkesir~Bartın~Batman~Bayburt~Bilecik~Bingöl~Bitlis~Bolu~Burdur~Bursa~Çanakkale~Çankırı~Çorum~Denizli~Diyarbakır~Düzce~Edirne~Elazığ~Erzincan~Erzurum~Eskişehir~Gaziantep~Giresun~Gümüşhane~Hakkari~Hatay~Iğdır~Isparta~İstanbul~İzmir~Kahramanmaraş~Karabük~Karaman~Kars~Kastamonu~Kayseri~Kırıkkale~Kırklareli~Kırşehir~Kilis~Kocaeli~Konya~Kütahya~Malatya~Manisa~Mardin~Mersin~Muğla~Muş~Nevşehir~Niğde~Ordu~Osmaniye~Rize~Sakarya~Samsun~Siirt~Sinop~Sivas~Şanlıurfa~Şırnak~Tekirdağ~Tokat~Trabzon~Tunceli~Uşak~Van~Yalova~Yozgat~Zonguldak",
|
|
2199
|
+
"languages": "tr",
|
|
2200
|
+
"posturl": "http://postakodu.ptt.gov.tr/",
|
|
2201
|
+
"sub_zips": "01~02~03~04~68~05~06~07~75~08~09~10~74~72~69~11~12~13~14~15~16~17~18~19~20~21~81~22~23~24~25~26~27~28~29~30~31~76~32~34~35~46~78~70~36~37~38~71~39~40~79~41~42~43~44~45~47~33~48~49~50~51~52~80~53~54~55~56~57~58~63~73~59~60~61~62~64~65~77~66~67",
|
|
2202
|
+
"id": "data/TR"
|
|
2203
|
+
},
|
|
2204
|
+
|
|
2205
|
+
{ "key": "TT", "name": "TRINIDAD AND TOBAGO", "id": "data/TT" },
|
|
2206
|
+
|
|
2207
|
+
{
|
|
2208
|
+
"sub_isoids": "FUN~NMG~NMA~~NIT~NUI~NKF~NKL~VAI",
|
|
2209
|
+
"key": "TV",
|
|
2210
|
+
"name": "TUVALU",
|
|
2211
|
+
"fmt": "%N%n%O%n%A%n%C%n%S",
|
|
2212
|
+
"state_name_type": "island",
|
|
2213
|
+
"lang": "tyv",
|
|
2214
|
+
"sub_keys": "Funafuti~Nanumanga~Nanumea~Niulakita~Niutao~Nui~Nukufetau~Nukulaelae~Vaitupu",
|
|
2215
|
+
"languages": "tyv",
|
|
2216
|
+
"upper": "ACS",
|
|
2217
|
+
"id": "data/TV"
|
|
2218
|
+
},
|
|
2219
|
+
|
|
2220
|
+
{
|
|
2221
|
+
"sub_lnames": "Taichung City~Taipei City~Taitung County~Tainan City~Yilan County~Hualien County~Kinmen County~Nantou County~Pingtung County~Miaoli County~Taoyuan City~Kaohsiung City~Keelung City~Lienchiang County~Yunlin County~New Taipei City~Hsinchu City~Hsinchu County~Chiayi City~Chiayi County~Changhua County~Penghu County",
|
|
2222
|
+
"lfmt": "%N%n%O%n%A%n%C, %S %Z",
|
|
2223
|
+
"zipex": "104,106,10603,40867",
|
|
2224
|
+
"require": "ACSZ",
|
|
2225
|
+
"key": "TW",
|
|
2226
|
+
"name": "TAIWAN",
|
|
2227
|
+
"fmt": "%Z%n%S%C%n%A%n%O%n%N",
|
|
2228
|
+
"state_name_type": "county",
|
|
2229
|
+
"sub_zipexs": "400,408,411,439~100,119~950,966~700,745~260,272~970,983~890,896~540,558~900,947~350,369~320,338~800,815,817,852~200,206~209,212~630,655~207,208,220,253~~302,315~~602,625~500,530~880,885",
|
|
2230
|
+
"lang": "zh-Hant",
|
|
2231
|
+
"sub_isoids": "TXG~TPE~TTT~TNN~ILA~HUA~~NAN~PIF~MIA~TAO~KHH~KEE~~YUN~NWT~HSZ~HSQ~CYI~CYQ~CHA~PEN",
|
|
2232
|
+
"sub_mores": "true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true~true",
|
|
2233
|
+
"zip": "\\d{3}(?:\\d{2})?",
|
|
2234
|
+
"sub_keys": "台中市~台北市~台東縣~台南市~宜蘭縣~花蓮縣~金門縣~南投縣~屏東縣~苗栗縣~桃園市~高雄市~基隆市~連江縣~雲林縣~新北市~新竹市~新竹縣~嘉義市~嘉義縣~彰化縣~澎湖縣",
|
|
2235
|
+
"languages": "zh-Hant",
|
|
2236
|
+
"posturl": "http://www.post.gov.tw/post/internet/f_searchzone/index.jsp?ID=190102",
|
|
2237
|
+
"sub_zips": "4[0-3]~1[01]~9[56]~7[0-4]~2[67]~9[78]~89~5[45]~9[0-4]~3[56]~3[23]~8[02-5]|81[1-579]~20[0-6]~209|21[012]~6[3-5]~20[78]|2[2345]~300~30[2-8]|31~600~60[1-9]|6[12]~5[0123]~88",
|
|
2238
|
+
"id": "data/TW"
|
|
2239
|
+
},
|
|
2240
|
+
|
|
2241
|
+
{
|
|
2242
|
+
"zipex": "6090,34413",
|
|
2243
|
+
"key": "TZ",
|
|
2244
|
+
"name": "TANZANIA (UNITED REP.)",
|
|
2245
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
2246
|
+
"zip": "\\d{4,5}",
|
|
2247
|
+
"id": "data/TZ"
|
|
2248
|
+
},
|
|
2249
|
+
|
|
2250
|
+
{
|
|
2251
|
+
"sub_lnames": "Crimea~Vinnyts'ka oblast~Volyns'ka oblast~Dnipropetrovsk oblast~Donetsk oblast~Zhytomyrs'ka oblast~Zakarpats'ka oblast~Zaporiz'ka oblast~Ivano-Frankivs'ka oblast~Kyiv city~Kiev oblast~Kirovohrads'ka oblast~Luhans'ka oblast~Lviv oblast~Mykolaivs'ka oblast~Odessa oblast~Poltavs'ka oblast~Rivnens'ka oblast~Sevastopol' city~Sums'ka oblast~Ternopil's'ka oblast~Kharkiv oblast~Khersons'ka oblast~Khmel'nyts'ka oblast~Cherkas'ka oblast~Chernivets'ka oblast~Chernihivs'ka oblast",
|
|
2252
|
+
"lfmt": "%N%n%O%n%A%n%C%n%S%n%Z",
|
|
2253
|
+
"zipex": "15432,01055,01001",
|
|
2254
|
+
"require": "ACSZ",
|
|
2255
|
+
"key": "UA",
|
|
2256
|
+
"name": "UKRAINE",
|
|
2257
|
+
"fmt": "%N%n%O%n%A%n%C%n%S%n%Z",
|
|
2258
|
+
"state_name_type": "oblast",
|
|
2259
|
+
"sub_names": "Автономна Республіка Крим~Вінницька область~Волинська область~Дніпропетровська область~Донецька область~Житомирська область~Закарпатська область~Запорізька область~Івано-Франківська область~Київ~Київська область~Кіровоградська область~Луганська область~Львівська область~Миколаївська область~Одеська область~Полтавська область~Рівненська область~Севастополь~Сумська область~Тернопільська область~Харківська область~Херсонська область~Хмельницька область~Черкаська область~Чернівецька область~Чернігівська область",
|
|
2260
|
+
"lang": "uk",
|
|
2261
|
+
"sub_isoids": "43~05~07~12~14~18~21~23~26~30~32~35~09~46~48~51~53~56~40~59~61~63~65~68~71~77~74",
|
|
2262
|
+
"zip": "\\d{5}",
|
|
2263
|
+
"sub_keys": "Автономна Республіка Крим~Вінницька область~Волинська область~Дніпропетровська область~Донецька область~Житомирська область~Закарпатська область~Запорізька область~Івано-Франківська область~місто Київ~Київська область~Кіровоградська область~Луганська область~Львівська область~Миколаївська область~Одеська область~Полтавська область~Рівненська область~місто Севастополь~Сумська область~Тернопільська область~Харківська область~Херсонська область~Хмельницька область~Черкаська область~Чернівецька область~Чернігівська область",
|
|
2264
|
+
"languages": "uk",
|
|
2265
|
+
"posturl": "http://services.ukrposhta.com/postindex_new/",
|
|
2266
|
+
"sub_zips": "9[5-8]~2[1-4]~4[3-5]~49|5[0-3]~8[3-7]~1[0-3]~8[89]|90~69|7[0-2]~7[6-8]~0[1-6]~0[7-9]~2[5-8]~9[1-4]~79|8[0-2]~5[4-7]~6[5-8]~3[6-9]~3[3-5]~99~4[0-2]~4[6-8]~6[1-4]~7[3-5]~29|3[0-2]~1[89]|20~5[89]|60~1[4-7]",
|
|
2267
|
+
"id": "data/UA"
|
|
2268
|
+
},
|
|
2269
|
+
|
|
2270
|
+
{ "key": "UG", "name": "UGANDA", "id": "data/UG" },
|
|
2271
|
+
|
|
2272
|
+
{
|
|
2273
|
+
"zipex": "96898",
|
|
2274
|
+
"key": "UM",
|
|
2275
|
+
"name": "UNITED STATES MINOR OUTLYING ISLANDS",
|
|
2276
|
+
"fmt": "%N%n%O%n%A%n%C %S %Z",
|
|
2277
|
+
"zip_name_type": "zip",
|
|
2278
|
+
"posturl": "http://zip4.usps.com/zip4/welcome.jsp",
|
|
2279
|
+
"require": "ACS",
|
|
2280
|
+
"state_name_type": "state",
|
|
2281
|
+
"zip": "96898",
|
|
2282
|
+
"upper": "ACNOS",
|
|
2283
|
+
"id": "data/UM"
|
|
2284
|
+
},
|
|
2285
|
+
|
|
2286
|
+
{
|
|
2287
|
+
"zipex": "95014,22162-1010",
|
|
2288
|
+
"require": "ACSZ",
|
|
2289
|
+
"posturl": "https://tools.usps.com/go/ZipLookupAction!input.action",
|
|
2290
|
+
"key": "US",
|
|
2291
|
+
"name": "UNITED STATES",
|
|
2292
|
+
"fmt": "%N%n%O%n%A%n%C, %S %Z",
|
|
2293
|
+
"zip_name_type": "zip",
|
|
2294
|
+
"sub_names": "Alabama~Alaska~American Samoa~Arizona~Arkansas~Armed Forces (AA)~Armed Forces (AE)~Armed Forces (AP)~California~Colorado~Connecticut~Delaware~District of Columbia~Florida~Georgia~Guam~Hawaii~Idaho~Illinois~Indiana~Iowa~Kansas~Kentucky~Louisiana~Maine~Marshall Islands~Maryland~Massachusetts~Michigan~Micronesia~Minnesota~Mississippi~Missouri~Montana~Nebraska~Nevada~New Hampshire~New Jersey~New Mexico~New York~North Carolina~North Dakota~Northern Mariana Islands~Ohio~Oklahoma~Oregon~Palau~Pennsylvania~Puerto Rico~Rhode Island~South Carolina~South Dakota~Tennessee~Texas~Utah~Vermont~Virgin Islands~Virginia~Washington~West Virginia~Wisconsin~Wyoming",
|
|
2295
|
+
"sub_zipexs": "35000,36999~99500,99999~96799~85000,86999~71600,72999~34000,34099~09000,09999~96200,96699~90000,96199~80000,81999~06000,06999~19700,19999~20000,56999~32000,34999~30000,39901~96910,96932~96700,96899~83200,83999~60000,62999~46000,47999~50000,52999~66000,67999~40000,42799~70000,71599~03900,04999~96960,96979~20600,21999~01000,05544~48000,49999~96941,96944~55000,56799~38600,39799~63000,65999~59000,59999~68000,69999~88900,89999~03000,03899~07000,08999~87000,88499~10000,00544~27000,28999~58000,58999~96950,96952~43000,45999~73000,74999~97000,97999~96940~15000,19699~00600,00999~02800,02999~29000,29999~57000,57999~37000,38599~75000,73344~84000,84999~05000,05999~00800,00899~20100,24699~98000,99499~24700,26999~53000,54999~82000,83414",
|
|
2296
|
+
"lang": "en",
|
|
2297
|
+
"sub_isoids": "AL~AK~~AZ~AR~~~~CA~CO~CT~DE~DC~FL~GA~~HI~ID~IL~IN~IA~KS~KY~LA~ME~~MD~MA~MI~~MN~MS~MO~MT~NE~NV~NH~NJ~NM~NY~NC~ND~~OH~OK~OR~~PA~~RI~SC~SD~TN~TX~UT~VT~~VA~WA~WV~WI~WY",
|
|
2298
|
+
"state_name_type": "state",
|
|
2299
|
+
"zip": "(\\d{5})(?:[ \\-](\\d{4}))?",
|
|
2300
|
+
"sub_keys": "AL~AK~AS~AZ~AR~AA~AE~AP~CA~CO~CT~DE~DC~FL~GA~GU~HI~ID~IL~IN~IA~KS~KY~LA~ME~MH~MD~MA~MI~FM~MN~MS~MO~MT~NE~NV~NH~NJ~NM~NY~NC~ND~MP~OH~OK~OR~PW~PA~PR~RI~SC~SD~TN~TX~UT~VT~VI~VA~WA~WV~WI~WY",
|
|
2301
|
+
"languages": "en",
|
|
2302
|
+
"upper": "CS",
|
|
2303
|
+
"sub_zips": "3[56]~99[5-9]~96799~8[56]~71[6-9]|72~340~09~96[2-6]~9[0-5]|96[01]~8[01]~06~19[7-9]~20[02-5]|569~3[23]|34[1-9]~3[01]|398|39901~969([1-2]\\d|3[12])~967[0-8]|9679[0-8]|968~83[2-9]~6[0-2]~4[67]~5[0-2]~6[67]~4[01]|42[0-7]~70|71[0-5]~039|04~969[67]~20[6-9]|21~01|02[0-7]|05501|05544~4[89]~9694[1-4]~55|56[0-7]~38[6-9]|39[0-7]~6[3-5]~59~6[89]~889|89~03[0-8]~0[78]~87|88[0-4]~1[0-4]|06390|00501|00544~2[78]~58~9695[0-2]~4[3-5]~7[34]~97~969(39|40)~1[5-8]|19[0-6]~00[679]~02[89]~29~57~37|38[0-5]~7[5-9]|885|73301|73344~84~05~008~201|2[23]|24[0-6]~98|99[0-4]~24[7-9]|2[56]~5[34]~82|83[01]|83414",
|
|
2304
|
+
"id": "data/US"
|
|
2305
|
+
},
|
|
2306
|
+
|
|
2307
|
+
{
|
|
2308
|
+
"zipex": "11600",
|
|
2309
|
+
"sub_isoids": "AR~CA~CL~CO~DU~FS~FD~LA~MA~MO~PA~RN~RV~RO~SA~SJ~SO~TA~TT",
|
|
2310
|
+
"key": "UY",
|
|
2311
|
+
"name": "URUGUAY",
|
|
2312
|
+
"fmt": "%N%n%O%n%A%n%Z %C %S",
|
|
2313
|
+
"posturl": "http://www.correo.com.uy/index.asp?codPag=codPost&switchMapa=codPost",
|
|
2314
|
+
"lang": "es",
|
|
2315
|
+
"zip": "\\d{5}",
|
|
2316
|
+
"sub_keys": "Artigas~Canelones~Cerro Largo~Colonia~Durazno~Flores~Florida~Lavalleja~Maldonado~Montevideo~Paysandú~Río Negro~Rivera~Rocha~Salto~San José~Soriano~Tacuarembó~Treinta y Tres",
|
|
2317
|
+
"languages": "es",
|
|
2318
|
+
"upper": "CS",
|
|
2319
|
+
"sub_zips": "55~9[01]|1[456]~37~70|75204~97~85~94|9060|97005~30~20~1|91600~60~65|60002~40~27~50~80~75|70003~45~33|30203|30204|30302|37007",
|
|
2320
|
+
"id": "data/UY"
|
|
2321
|
+
},
|
|
2322
|
+
|
|
2323
|
+
{
|
|
2324
|
+
"zipex": "702100,700000",
|
|
2325
|
+
"key": "UZ",
|
|
2326
|
+
"name": "UZBEKISTAN",
|
|
2327
|
+
"fmt": "%N%n%O%n%A%n%Z %C%n%S",
|
|
2328
|
+
"posturl": "http://www.pochta.uz/ru/uslugi/indexsearch.html",
|
|
2329
|
+
"zip": "\\d{6}",
|
|
2330
|
+
"upper": "CS",
|
|
2331
|
+
"id": "data/UZ"
|
|
2332
|
+
},
|
|
2333
|
+
|
|
2334
|
+
{
|
|
2335
|
+
"zipex": "00120",
|
|
2336
|
+
"key": "VA",
|
|
2337
|
+
"name": "VATICAN",
|
|
2338
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
2339
|
+
"zip": "00120",
|
|
2340
|
+
"id": "data/VA"
|
|
2341
|
+
},
|
|
2342
|
+
|
|
2343
|
+
{
|
|
2344
|
+
"zipex": "VC0100,VC0110,VC0400",
|
|
2345
|
+
"key": "VC",
|
|
2346
|
+
"name": "SAINT VINCENT AND THE GRENADINES (ANTILLES)",
|
|
2347
|
+
"fmt": "%N%n%O%n%A%n%C %Z",
|
|
2348
|
+
"zip": "VC\\d{4}",
|
|
2349
|
+
"posturl": "http://www.svgpost.gov.vc/?option=com_content&view=article&id=3&Itemid=16",
|
|
2350
|
+
"id": "data/VC"
|
|
2351
|
+
},
|
|
2352
|
+
|
|
2353
|
+
{
|
|
2354
|
+
"zipex": "1010,3001,8011,1020",
|
|
2355
|
+
"require": "ACS",
|
|
2356
|
+
"key": "VE",
|
|
2357
|
+
"name": "VENEZUELA",
|
|
2358
|
+
"fmt": "%N%n%O%n%A%n%C %Z, %S",
|
|
2359
|
+
"state_name_type": "state",
|
|
2360
|
+
"posturl": "http://www.ipostel.gob.ve/index.php/oficinas-postales",
|
|
2361
|
+
"lang": "es",
|
|
2362
|
+
"sub_isoids": "Z~B~C~D~E~F~G~H~Y~W~A~I~J~K~L~M~N~O~P~R~S~T~X~U~V",
|
|
2363
|
+
"zip": "\\d{4}",
|
|
2364
|
+
"sub_keys": "Amazonas~Anzoátegui~Apure~Aragua~Barinas~Bolívar~Carabobo~Cojedes~Delta Amacuro~Dependencias Federales~Distrito Federal~Falcón~Guárico~Lara~Mérida~Miranda~Monagas~Nueva Esparta~Portuguesa~Sucre~Táchira~Trujillo~Vargas~Yaracuy~Zulia",
|
|
2365
|
+
"languages": "es",
|
|
2366
|
+
"upper": "CS",
|
|
2367
|
+
"id": "data/VE"
|
|
2368
|
+
},
|
|
2369
|
+
|
|
2370
|
+
{
|
|
2371
|
+
"zipex": "VG1110,VG1150,VG1160",
|
|
2372
|
+
"key": "VG",
|
|
2373
|
+
"name": "VIRGIN ISLANDS (BRITISH)",
|
|
2374
|
+
"fmt": "%N%n%O%n%A%n%C%n%Z",
|
|
2375
|
+
"require": "A",
|
|
2376
|
+
"zip": "VG\\d{4}",
|
|
2377
|
+
"id": "data/VG"
|
|
2378
|
+
},
|
|
2379
|
+
|
|
2380
|
+
{
|
|
2381
|
+
"zipex": "00802-1222,00850-9802",
|
|
2382
|
+
"key": "VI",
|
|
2383
|
+
"name": "VIRGIN ISLANDS (U.S.)",
|
|
2384
|
+
"fmt": "%N%n%O%n%A%n%C %S %Z",
|
|
2385
|
+
"zip_name_type": "zip",
|
|
2386
|
+
"posturl": "http://zip4.usps.com/zip4/welcome.jsp",
|
|
2387
|
+
"require": "ACSZ",
|
|
2388
|
+
"state_name_type": "state",
|
|
2389
|
+
"zip": "(008(?:(?:[0-4]\\d)|(?:5[01])))(?:[ \\-](\\d{4}))?",
|
|
2390
|
+
"upper": "ACNOS",
|
|
2391
|
+
"id": "data/VI"
|
|
2392
|
+
},
|
|
2393
|
+
|
|
2394
|
+
{
|
|
2395
|
+
"sub_lnames": "An Giang Province~Ba Ria-Vung Tau Province~Bac Lieu Province~Bac Giang Province~Bac Kan Province~Bac Ninh Province~Ben Tre Province~Binh Duong Province~Binh Dinh Province~Binh Phuoc Province~Binh Thuan Province~Ca Mau Province~Cao Bang Province~Can Tho City~Da Nang City~Dak Lak Province~Dak Nong Province~Dien Bien Province~Dong Nai Province~Dong Thap Province~Gia Lai Province~Ha Giang Province~Ha Nam Province~Hanoi City~Ha Tinh Province~Hai Duong Province~Haiphong City~Hau Giang Province~Hoa Binh Province~Hung Yen Province~Khanh Hoa Province~Kien Giang Province~Kon Tum Province~Lai Chau Province~Lang Song Province~Lao Cai Province~Lam Dong Province~Long An Province~Nam Dinh Province~Nghe An Province~Ninh Binh Province~Ninh Thuan Province~Phu Tho Province~Phu Yen Province~Quang Binh Province~Quang Nam Province~Quang Ngai Province~Quang Ninh Province~Quang Tri Province~Soc Trang Province~Son La Province~Tay Ninh Province~Thai Binh Province~Thai Nguyen Province~Thanh Hoa Province~Ho Chi Minh City~Thua Thien-Hue Province~Tien Giang Province~Tra Vinh Province~Tuyen Quang Province~Vinh Long Province~Vinh Phuc Province~Yen Bai Province",
|
|
2396
|
+
"lfmt": "%N%n%O%n%A%n%C%n%S %Z",
|
|
2397
|
+
"zipex": "70010,55999",
|
|
2398
|
+
"sub_isoids": "44~43~55~54~53~56~50~57~31~58~40~59~04~CT~DN~33~72~71~39~45~30~03~63~HN~23~61~HP~73~14~66~34~47~28~01~09~02~35~41~67~22~18~36~68~32~24~27~29~13~25~52~05~37~20~69~21~SG~26~46~51~07~49~70~06",
|
|
2399
|
+
"key": "VN",
|
|
2400
|
+
"name": "VIET NAM",
|
|
2401
|
+
"fmt": "%N%n%O%n%A%n%C%n%S %Z",
|
|
2402
|
+
"lang": "vi",
|
|
2403
|
+
"zip": "\\d{5}\\d?",
|
|
2404
|
+
"sub_keys": "An Giang~Bà Rịa–Vũng Tàu~Bạc Liêu~Bắc Giang~Bắc Kạn~Bắc Ninh~Bến Tre~Bình Dương~Bình Định~Bình Phước~Bình Thuận~Cà Mau~Cao Bằng~Cần Thơ~Đà Nẵng~Đắk Lắk~Đăk Nông~Điện Biên~Đồng Nai~Đồng Tháp~Gia Lai~Hà Giang~Hà Nam~Hà Nội~Hà Tĩnh~Hải Dương~Hải Phòng~Hậu Giang~Hòa Bình~Hưng Yên~Khánh Hòa~Kiên Giang~Kon Tum~Lai Châu~Lạng Sơn~Lào Cai~Lâm Đồng~Long An~Nam Định~Nghệ An~Ninh Bình~Ninh Thuận~Phú Thọ~Phú Yên~Quảng Bình~Quảng Nam~Quảng Ngãi~Quảng Ninh~Quảng Trị~Sóc Trăng~Sơn La~Tây Ninh~Thái Bình~Thái Nguyên~Thanh Hóa~Thành phố Hồ Chí Minh~Thừa Thiên–Huế~Tiền Giang~Trà Vinh~Tuyên Quang~Vĩnh Long~Vĩnh Phúc~Yên Bái",
|
|
2405
|
+
"languages": "vi",
|
|
2406
|
+
"posturl": "http://postcode.vnpost.vn/services/search.aspx",
|
|
2407
|
+
"id": "data/VN"
|
|
2408
|
+
},
|
|
2409
|
+
|
|
2410
|
+
{ "key": "VU", "name": "VANUATU", "id": "data/VU" },
|
|
2411
|
+
|
|
2412
|
+
{
|
|
2413
|
+
"zipex": "98600",
|
|
2414
|
+
"key": "WF",
|
|
2415
|
+
"name": "WALLIS AND FUTUNA ISLANDS",
|
|
2416
|
+
"fmt": "%O%n%N%n%A%n%Z %C %X",
|
|
2417
|
+
"require": "ACZ",
|
|
2418
|
+
"zip": "986\\d{2}",
|
|
2419
|
+
"upper": "ACX",
|
|
2420
|
+
"id": "data/WF"
|
|
2421
|
+
},
|
|
2422
|
+
|
|
2423
|
+
{ "key": "WS", "name": "SAMOA", "id": "data/WS" },
|
|
2424
|
+
|
|
2425
|
+
{
|
|
2426
|
+
"zipex": "10000",
|
|
2427
|
+
"key": "XK",
|
|
2428
|
+
"name": "KOSOVO",
|
|
2429
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
2430
|
+
"zip": "[1-7]\\d{4}",
|
|
2431
|
+
"id": "data/XK"
|
|
2432
|
+
},
|
|
2433
|
+
|
|
2434
|
+
{ "key": "YE", "name": "YEMEN", "id": "data/YE" },
|
|
2435
|
+
|
|
2436
|
+
{
|
|
2437
|
+
"zipex": "97600",
|
|
2438
|
+
"key": "YT",
|
|
2439
|
+
"name": "MAYOTTE",
|
|
2440
|
+
"fmt": "%O%n%N%n%A%n%Z %C %X",
|
|
2441
|
+
"require": "ACZ",
|
|
2442
|
+
"zip": "976\\d{2}",
|
|
2443
|
+
"upper": "ACX",
|
|
2444
|
+
"id": "data/YT"
|
|
2445
|
+
},
|
|
2446
|
+
|
|
2447
|
+
{
|
|
2448
|
+
"zipex": "0083,1451,0001",
|
|
2449
|
+
"key": "ZA",
|
|
2450
|
+
"name": "SOUTH AFRICA",
|
|
2451
|
+
"fmt": "%N%n%O%n%A%n%D%n%C%n%Z",
|
|
2452
|
+
"require": "ACZ",
|
|
2453
|
+
"zip": "\\d{4}",
|
|
2454
|
+
"posturl": "https://www.postoffice.co.za/Questions/postalcode.html",
|
|
2455
|
+
"id": "data/ZA"
|
|
2456
|
+
},
|
|
2457
|
+
|
|
2458
|
+
{
|
|
2459
|
+
"zipex": "50100,50101",
|
|
2460
|
+
"key": "ZM",
|
|
2461
|
+
"name": "ZAMBIA",
|
|
2462
|
+
"fmt": "%N%n%O%n%A%n%Z %C",
|
|
2463
|
+
"zip": "\\d{5}",
|
|
2464
|
+
"id": "data/ZM"
|
|
2465
|
+
},
|
|
2466
|
+
|
|
2467
|
+
{ "key": "ZW", "name": "ZIMBABWE", "id": "data/ZW" }
|
|
2468
|
+
]
|