hmghmghmgm
This commit is contained in:
BIN
0.jpg
BIN
0.jpg
Binary file not shown.
|
Before Width: | Height: | Size: 164 KiB After Width: | Height: | Size: 130 KiB |
BIN
1.jpg
BIN
1.jpg
Binary file not shown.
|
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 6.0 KiB |
4
接口.py
4
接口.py
@@ -5,10 +5,12 @@ from 本地google import Acb
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
|
||||
@app.route("/acb", methods=["POST"])
|
||||
def handle_acb():
|
||||
try:
|
||||
# 获取 JSON 数据
|
||||
|
||||
data = request.get_json(force=True)
|
||||
if not data:
|
||||
return jsonify({"status": "error", "message": "请求体为空或格式错误"}), 400
|
||||
@@ -17,7 +19,7 @@ def handle_acb():
|
||||
acb_instance = Acb(a=data)
|
||||
result = acb_instance.action()
|
||||
|
||||
return jsonify(result)
|
||||
return jsonify({"status": "true", "message": "注入成功"}), 200
|
||||
|
||||
except Exception as e:
|
||||
logger.exception("处理请求时出错")
|
||||
|
||||
202
本地google.py
202
本地google.py
@@ -72,6 +72,85 @@ class Acb:
|
||||
tl = max_loc
|
||||
return tl[0]
|
||||
|
||||
def add_car(self, tab):
|
||||
tab.ele('x:(//span[normalize-space(text()) = "新增车主车辆"])[last()]', timeout=10).click()
|
||||
time.sleep(1)
|
||||
|
||||
tab.ele('x:(//input[@labelname="VIN"])[last()]').input(self.a["VIN码"], clear=True)
|
||||
time.sleep(1)
|
||||
if self.a.get("换表里程", ''):
|
||||
tab.ele('x:(//input[@labelname="换表里程"])[last()]').input(self.a["换表里程"], clear=True)
|
||||
time.sleep(1)
|
||||
|
||||
if self.a.get("车牌号", ''):
|
||||
tab.ele(
|
||||
'x://*[@id="app"]/div[3]/div/div[2]/div/div[2]/section/form/div/div/div[5]/div/div/div/input').input(
|
||||
self.a["车牌号"], clear=True)
|
||||
time.sleep(1)
|
||||
|
||||
if self.a.get("累计换表里程", ''):
|
||||
tab.ele('x:(//input[@labelname="累计换表里程"])[last()]').input(self.a["累计换表里程"], clear=True)
|
||||
time.sleep(1)
|
||||
|
||||
if self.a.get("发动机编号", ''):
|
||||
tab.ele('x:(//input[@labelname="发动机编号"])[last()]').input(self.a["发动机编号"], clear=True)
|
||||
time.sleep(1)
|
||||
|
||||
if self.a.get("电机号", ''):
|
||||
tab.ele('x:(//input[@labelname="电机号"])[last()]').input(self.a["电机号"], clear=True)
|
||||
time.sleep(1)
|
||||
|
||||
if self.a.get("动力类型", ''):
|
||||
tab.ele('x:(//div[@labelname="动力类型"])[last()]').click()
|
||||
time.sleep(1)
|
||||
tab.ele(f'x:(//span[normalize-space(text()) = "{self.a["c"]}"])[last()]', timeout=10).click()
|
||||
time.sleep(1)
|
||||
|
||||
if self.a.get("是否本公司购车", ''):
|
||||
tab.ele('x:(//div[@labelname="是否本公司购车"])[last()]').click()
|
||||
time.sleep(1)
|
||||
tab.ele(f'x:(//span[normalize-space(text()) = "{self.a["是否本公司购车"]}"])[last()]', timeout=10).click()
|
||||
time.sleep(1)
|
||||
|
||||
if self.a.get("开始日期", ''):
|
||||
tab.ele('x:(//input[@placeholder="开始日期"])[last()]').input(self.a["开始日期"], clear=True)
|
||||
time.sleep(1)
|
||||
if self.a.get("结束日期", ''):
|
||||
tab.ele('x:(//input[@placeholder="结束日期"])[last()]').input(self.a["结束日期"] + "\n", clear=True)
|
||||
time.sleep(1)
|
||||
|
||||
if self.a.get("销售顾问", ''):
|
||||
tab.ele('x:(//input[@labelname="销售顾问"])[last()]').input(self.a["销售顾问"], clear=True)
|
||||
time.sleep(1)
|
||||
|
||||
if self.a.get("车主手机号", ''):
|
||||
tab.ele(
|
||||
'x://*[@id="app"]/div[3]/div/div[2]/div/div[4]/section/form/div/div/div[1]/div/div/div/div[1]/input').input(
|
||||
self.a["车主手机号"], clear=True)
|
||||
time.sleep(1)
|
||||
|
||||
if self.a.get("车主名称", ''):
|
||||
tab.ele('x:(//input[@labelname="车主名称"])[last()]').input(self.a["车主名称"], clear=True)
|
||||
time.sleep(1)
|
||||
|
||||
if self.a.get("车主性质", ''):
|
||||
tab.ele('x:(//div[@labelname="车主性质"])[last()]').click()
|
||||
time.sleep(1)
|
||||
tab.ele(f'x:(//span[normalize-space(text()) = "{self.a["车主性质"]}"])[last()]', timeout=10).click()
|
||||
time.sleep(1)
|
||||
|
||||
if self.a.get("性别", ''):
|
||||
tab.ele('x:(//div[@labelname="性别"])[last()]').click()
|
||||
time.sleep(1)
|
||||
tab.ele(f'x:(//span[normalize-space(text()) = "{self.a["性别"]}"])[last()]', timeout=10).click()
|
||||
time.sleep(1)
|
||||
|
||||
if self.a.get("地址", ''):
|
||||
tab.ele('x:(//input[@labelname="地址"])[last()]').input(self.a["地址"], clear=True)
|
||||
time.sleep(1)
|
||||
|
||||
tab.ele(f'x:(//span[normalize-space(text()) = "提交"])[last()]', timeout=10).click()
|
||||
|
||||
def action(self):
|
||||
# 接管浏览器
|
||||
if self.take_over_browser():
|
||||
@@ -113,20 +192,31 @@ class Acb:
|
||||
tab.actions.release()
|
||||
|
||||
# 查询
|
||||
time.sleep(5)
|
||||
tab.get(
|
||||
url="https://bcp.dongfeng-honda.com/#/dop/dop/partsStorage/serviceReception/customerReception")
|
||||
|
||||
time.sleep(3)
|
||||
tab.ele('x://span[text()="新建"]').click()
|
||||
time.sleep(1)
|
||||
|
||||
tab.ele('x:(//input[@labelname="VIN码"])[last()]').input("LVHCU8610S5010882")
|
||||
tab.ele('x:(//input[@labelname="VIN码"])[last()]').input(self.a["VIN码"])
|
||||
time.sleep(1)
|
||||
tab.ele('x:(//span[text()="查询"])[last()]').click()
|
||||
time.sleep(1)
|
||||
xx_ele = tab.ele('x:(//span[normalize-space(text()) = "选择"])[last()]', timeout=10)
|
||||
time.sleep(5)
|
||||
xx_ele = tab.ele('x:(//span[normalize-space(text()) = "选择"])[last()]', timeout=5)
|
||||
if xx_ele:
|
||||
xx_ele.click()
|
||||
time.sleep(3)
|
||||
else:
|
||||
self.add_car(tab=tab)
|
||||
logger.error("车辆不存在!!!")
|
||||
return
|
||||
|
||||
xx_ele = tab.ele('x:(//span[normalize-space(text()) = "继续添加"])[last()]', timeout=10)
|
||||
if xx_ele:
|
||||
xx_ele.click()
|
||||
|
||||
if self.a.get("工单类型", ''):
|
||||
time.sleep(1)
|
||||
tab.ele('x:(//div[@labelname="工单类型"])[last()]').click()
|
||||
@@ -247,48 +337,66 @@ class Acb:
|
||||
wxxm_ele = tab.ele(f'x://*[@id="MicroAppMain"]/div/div[1]/div[7]/div[3]/table/tbody/tr[{_ + 1}]')
|
||||
time.sleep(1)
|
||||
wxxm_ele.ele('x:./td[8]/div/div/input').input(data["数量"], clear=True)
|
||||
# wxxm_ele.ele('x:./td[10]/div/div/div/input').click()
|
||||
# tab.ele(f'x:(//span[normalize-space(text()) = "{data["工时单价"]}"])[last()]').click()
|
||||
|
||||
# if __name__ == '__main__':
|
||||
# a = {
|
||||
# "工单类型": "保修",
|
||||
# "VIN码": "LVHCU8610S5010882",
|
||||
# "维修类型": "PDI",
|
||||
# "二级维修类型": "检查",
|
||||
# "进厂行驶里程": 154546,
|
||||
# "出厂行驶里程": 1578164,
|
||||
# "预计交车时间": "2025-11-05 15:35",
|
||||
# "送修保险公司": "太平财险",
|
||||
# "报案号": "r5hrhjththtth",
|
||||
# "是否全钣喷": "是",
|
||||
# "三日电访时间": "上午",
|
||||
# "项目": [
|
||||
# {
|
||||
# "项目类型": "工时",
|
||||
# "维修项目/零部件名称": "更换手变速箱油",
|
||||
# "数量/工时": 4.5,
|
||||
# "工时单价": 80,
|
||||
# "车型分组代码": "FA1",
|
||||
# },
|
||||
# {
|
||||
# "项目类型": "工时",
|
||||
# "维修项目/零部件名称": "燃油滤清器-更换",
|
||||
# "数量/工时": 4.5,
|
||||
# "工时单价": 80,
|
||||
# "车型分组代码": "QTCX",
|
||||
# },
|
||||
# {
|
||||
# "项目类型": "材料",
|
||||
# "维修项目/零部件名称": "后装饰件卡扣",
|
||||
# "数量/工时": 4.5,
|
||||
# "工时单价": 80,
|
||||
# "车型分组代码": "QTCX",
|
||||
# "零部件代码": "91561-TA5-A11",
|
||||
# }
|
||||
# ]
|
||||
# }
|
||||
#
|
||||
# Acb(
|
||||
# a=a,
|
||||
# ).action()
|
||||
tab.ele('x:(//span[normalize-space(text()) = "保存"])[last()]').click()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
a = {
|
||||
"工单类型": "保修",
|
||||
"VIN码": "LVHCU8610S5010882",
|
||||
"维修类型": "PDI",
|
||||
"二级维修类型": "检查",
|
||||
"进厂行驶里程": 154546,
|
||||
"出厂行驶里程": 1578164,
|
||||
"预计交车时间": "2025-11-05 15:35",
|
||||
"送修保险公司": "太平财险",
|
||||
"报案号": "r5hrhjththtth",
|
||||
"是否全钣喷": "是",
|
||||
"三日电访时间": "上午",
|
||||
|
||||
"换表里程": "上午",
|
||||
"车牌号": "上午",
|
||||
"累计换表里程": "上午",
|
||||
"发动机编号": "上午",
|
||||
"电机号": "上午",
|
||||
"动力类型": "上午",
|
||||
"是否本公司购车": "上午",
|
||||
"开始日期": "上午",
|
||||
"结束日期": "上午",
|
||||
"销售顾问": "上午",
|
||||
"车主手机号": "上午",
|
||||
"车主名称": "上午",
|
||||
"车主性质": "上午",
|
||||
"性别": "上午",
|
||||
"地址": "上午",
|
||||
|
||||
"项目": [
|
||||
{
|
||||
"项目类型": "工时",
|
||||
"维修项目/零部件名称": "更换手变速箱油",
|
||||
"数量/工时": 4.5,
|
||||
"工时单价": 80,
|
||||
"车型分组代码": "FA1",
|
||||
},
|
||||
{
|
||||
"项目类型": "工时",
|
||||
"维修项目/零部件名称": "燃油滤清器-更换",
|
||||
"数量/工时": 4.5,
|
||||
"工时单价": 80,
|
||||
"车型分组代码": "QTCX",
|
||||
},
|
||||
{
|
||||
"项目类型": "材料",
|
||||
"维修项目/零部件名称": "后装饰件卡扣",
|
||||
"数量/工时": 4.5,
|
||||
"工时单价": 80,
|
||||
"车型分组代码": "QTCX",
|
||||
"零部件代码": "91561-TA5-A11",
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Acb(
|
||||
a=a,
|
||||
).action()
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
[{"description":"treehash per file","signed_content":{"payload":"eyJjb250ZW50X2hhc2hlcyI6W3siYmxvY2tfc2l6ZSI6NDA5NiwiZGlnZXN0Ijoic2hhMjU2IiwiZmlsZXMiOlt7InBhdGgiOiJoZXVyaXN0aWNfcmVnZXhlcy5iaW5hcnlwYiIsInJvb3RfaGFzaCI6Im9ROWwxLURWWndMVzhJaFF5TDdwdlZHdkZfUy1CUmtBX3l1SXlTRi1RbDgifSx7InBhdGgiOiJtYW5pZmVzdC5qc29uIiwicm9vdF9oYXNoIjoibGFLd2RJdXU1d2RBX3kxZHA0LVl0YUtaVUZZdm1KV1I4TEMxdnhNMVM0VSJ9XSwiZm9ybWF0IjoidHJlZWhhc2giLCJoYXNoX2Jsb2NrX3NpemUiOjQwOTZ9XSwiaXRlbV9pZCI6Imhhamlnb3BiYmpoZ2hiZmltZ2tmbXBlbmZrY2xtb2hrIiwiaXRlbV92ZXJzaW9uIjoiNCIsInByb3RvY29sX3ZlcnNpb24iOjF9","signatures":[{"header":{"kid":"publisher"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"mqnzWWPXdMmUXubyqBppOqxAY921JfSOK_NcvIfwW7mkskMg4BQz9pzkrCPEJkJVcG_XUzkx1ByskF-ZC03s0RRaghvq-xYyFIOeL8g1A6wge9NuIZiD_KGIFmjieufISG8gijhKXINUgo6aKiGVQXWlMIRluSkGYmcTDeGW87JI1CkybIDjk3BOyKewFQiPDoafqe0BtW6fW8904q-C4xrrQHyCbmOjqhmO4VIusYh3J_LA4so-B3O-nVC30XaISnRKYPDTQzsTkz_eJq9LJcPL5RORZUrRaiDLMINSJaOUtne_6CT-6tlEuaZdLpeL9oIIsAc6taHZsz8yJvHhaVnjQsXL6eJrBufupTRY5i_Q0ir_aAsiBIu5xcOirAeMknUhxmFCGW5h7xEdp-FBL2d4ukbSDhlv2qrhPzd0TjNshQoXBaZSvLVjv9sC4RSF4vwva8j9O81ZfmFyyyzBs_mYsM0cMrrRETTXg_KrYiF-CSYBM3cZQWFyJ-w_-G0kRiryB0tG9AYkDAo2DcPuHAO7pRibl7CwM9mxsD4SFjiN_dlPUfMHBUGhgPZofVb2c7nY7ztndNKPzNKwYOZLrhj8G6-TQgJL7QplhG761mrkUrZOGzAIBu8i4HN9SqfFIClGNjLYdmXruTveYMQV0RwO--7HT4Dvd2OEwa5shsw"},{"header":{"kid":"webstore"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"CG6KXxg_Mpqgw7XcrysRHH5F6HAql4JmenqcSzsnyja8z2d_cW6IfuHAmBQ78gE8HGIa4RUC3JQn08MN5zH2PlLfo4Lnr6NOyQGatRN7PZyK6gzaIMhK_0-CVEHR-A2mP9JpT9ksmxcURiKpAK44fTqod2KpzJMILYEFnB11MsZSEVYMYWQqT1mq4gRqo0uBne6paqZXKxLXIorweRX2KYPMYX9tHFt8CugLW5LmKPbReIJ4XJaLhLxRCHimnKtqx4r1_y7xPfitVCHIAfM5QVY6hv3xubPN2_bIPMeI6k2IlCZAH2tRptGgm9a80KlDpNQxMd9Eqi_z246ltVL2iA"}]}}]
|
||||
@@ -0,0 +1,3 @@
|
||||
|
||||
<EFBFBD>
|
||||
<EFBFBD>(?:US\$|USD|\$)\s*\d{1,3}(?:[.,]\d{3})*(?:[.,]\d{2})?(?:\s*)(?:USD|US\$|\$)?|(?:USD|US\$|\$)?\s*\d{1,3}(?:[.,]\d{3})*(?:[.,]\d{2})?\s*(?:USD|US\$|\$)<12>^(?:\s*)(Due now \(USD\)|(Estimated )?(?:Order Total|Total:?)|TOTAL CHARGED TODAY \*|Final Total Price:|Flight total|grand total:?|Order Total(?: \(USD\))?:?|Price|Total(?:(?: \(USD\))?| Due| for Stay| Price| to be paid:| to pay|:)?|(Your )?(?:Payment Today|total(\s)price|Total:)|Show Order Summary:|Reservation Deposit Amount Due|Payment Due Now|Your Price|Total Due Now|Amount to pay|Total amount due|You pay today|Order Summary|TOTAL PAYMENT DUE|Payable Amount)(?:\s*)$
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"manifest_version": 2,
|
||||
"name": "Amount Extraction Heuristic Regexes",
|
||||
"version": "4"
|
||||
}
|
||||
10
本田/user_data/AutofillStates/2025.6.13.84507/AD
Normal file
10
本田/user_data/AutofillStates/2025.6.13.84507/AD
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
AD
|
||||
canilloparròquia de canillo
|
||||
encampparròquia d'encamp&
|
||||
|
||||
la massanaparròquia de la massana
|
||||
ordinoparròquia d'ordino<
|
||||
#parròquia de sant julià de lòriasant julià de lòria1
|
||||
andorra la vellaparròquia d'andorra la vella3
|
||||
escaldesengordanyparròquia d'escaldesengordany
|
||||
10
本田/user_data/AutofillStates/2025.6.13.84507/AE
Normal file
10
本田/user_data/AutofillStates/2025.6.13.84507/AE
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
AE
|
||||
|
||||
عجمانajmanE
|
||||
|
||||
أبو ظبي abu dhabiأبو ظَبيإمارة أبو ظبي$
|
||||
إمارة دبيّdubaiدبي5
|
||||
إمارة الفجيرةfujairahالفجيرةE
|
||||
إمارة رأس الخيمةras al khaimahرأس الخيمةQ
|
||||
إمارة الشارقةsharjahإمارة الشارقةّالشارقةo
|
||||
44
本田/user_data/AutofillStates/2025.6.13.84507/AF
Normal file
44
本田/user_data/AutofillStates/2025.6.13.84507/AF
Normal file
@@ -0,0 +1,44 @@
|
||||
|
||||
AF5
|
||||
بلخbalkhبلخ ولايتولایت بلخH
|
||||
بامیانbamyanباميان ولايتولایت بامیانI
|
||||
بادغیسbadghisبادغيس ولايتولایت بادغیسL
|
||||
بدخشان
|
||||
badakhshanبدخشان ولايتولایت بدخشانC
|
||||
|
||||
بغلانbaghlanبغلان ولايتولایت بغلانc
|
||||
دایکندیdaykundiدايکندي ولايتدایکنډيولایت دایکندی;
|
||||
فراهfarahفراه ولايتولایت فراهH
|
||||
فاریابfaryabفارياب ولايتولایت فاریاب<
|
||||
غزنيghazniغزني ولايتولایت غزنی4
|
||||
غورghorغور ولايتولایت غورC
|
||||
|
||||
هلمندhelmandهلمند ولايتولایت هلمند;
|
||||
هراتheratهرات ولايتولایت هراتI
|
||||
جوزجانjowzjanجوزجان ولايتولایت جوزجان
|
||||
کابلkabulM
|
||||
ولایت قندهارkandaharقندهارقندھارکندهارH
|
||||
ولایت کاپیساkapisaکاپيساکاپيسا ولايت@
|
||||
كندزkunduzولایت کندوزکندوز ولايتH
|
||||
خوستkhostخوست ولايتخوستولایت خوست2
|
||||
ولایت کنرkunar کنرکونړC
|
||||
|
||||
لغمانlaghmanلغمان ولايتولایت لغمانG
|
||||
|
||||
لوگَرlogarلوګرلوګر ولايتولایت لوگرd
|
||||
ننګرهار nangarharد ننګرهار ولايتننگرهارولایت ننگرهارH
|
||||
نیمروزnimruzنيمروز ولايتولایت نیمروزP
|
||||
نورستانnuristanنورستان ولايتولایت نورستانJ
|
||||
ولایت پنجشیرpanjshirپنجشیرپنجشېر ولايتB
|
||||
ولایت پروانparwan
|
||||
پروانپروان ولايت7
|
||||
ولایت پکتیاpaktia
|
||||
پکتيا
|
||||
پکتیاI
|
||||
ولایت پکتیکاpaktikaپکتيکا ولايتپکتیکاJ
|
||||
سمنگانsamanganسمنګان ولايتولایت سمنگانD
|
||||
سر پلsarsare polسرپل ولايتولایت سرپل<
|
||||
تخارtakharتخار ولايتولایت تخار=
|
||||
ولایت اروزگانoruzganروزګان ولايتF
|
||||
ميدان وردگwardakوردکوردګولایت وردک;
|
||||
زابلzabulزابل ولايتولایت زابل
|
||||
13
本田/user_data/AutofillStates/2025.6.13.84507/AG
Normal file
13
本田/user_data/AutofillStates/2025.6.13.84507/AG
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
AG#
|
||||
saint georgesaint george parish
|
||||
|
||||
saint johnsaint john parish
|
||||
|
||||
saint marysaint mary parish
|
||||
|
||||
saint paulsaint paul parish!
|
||||
saint petersaint peter parish#
|
||||
saint philipsaint philip parish
|
||||
barbuda
|
||||
redonda
|
||||
14
本田/user_data/AutofillStates/2025.6.13.84507/AL
Normal file
14
本田/user_data/AutofillStates/2025.6.13.84507/AL
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
AL(
|
||||
beratitberat countyqarku i beratit.
|
||||
durrësitdurrës countyqarku i durrësit.
|
||||
elbasanitelbasan countyqarku i elbasanit*
|
||||
fierfier countyfiertqarku i fieritI
|
||||
|
||||
gjirokastrësgjirokastërgjirokastër countyqarku i gjirokastrës5
|
||||
korçëkorçë countykorçësqarku i korçës!
|
||||
qarku i kukësit
|
||||
kukës county
|
||||
qarku i lezhës
|
||||
lezhë county
|
||||
qarku i dibrës
|
||||
15
本田/user_data/AutofillStates/2025.6.13.84507/AM
Normal file
15
本田/user_data/AutofillStates/2025.6.13.84507/AM
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
AMH
|
||||
արագածոտնaragatsotn provinceարագածոտնի մարզ8
|
||||
արարատararat provinceարարատի մարզ=
|
||||
արմավիրarmavir provinceարմավիրի մարզ#
|
||||
երեւանyerevan
|
||||
երևանQ
|
||||
գեղարքունիքgegharkunik province!գեղարքունիքի մարզ8
|
||||
կոտայքkotayk provinceկոտայքի մարզ.
|
||||
լոռի
|
||||
lori provinceլոռու մարզ4
|
||||
|
||||
շիրակshirak provinceշիրակի մարզ<
|
||||
սյունիքsyunik provinceսյունիքի մարզ8
|
||||
տավուշtavush provinceտավուշի մարզG
|
||||
21
本田/user_data/AutofillStates/2025.6.13.84507/AO
Normal file
21
本田/user_data/AutofillStates/2025.6.13.84507/AO
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
AO
|
||||
bengobengo province
|
||||
benguelabenguela province
|
||||
bié
|
||||
bié province
|
||||
cabindacabinda province(
|
||||
|
||||
cuandocubangocuando cubango province
|
||||
cunenecunene province1
|
||||
cuanzanortecuanza norte provincekwanzanorte+
|
||||
cuanzasulcuanza sul province kwanzasul
|
||||
huambohuambo province
|
||||
huílahuila province/
|
||||
lunda nortelunda norte province
|
||||
lundanorte
|
||||
lundasullunda sul province
|
||||
luandaluanda province
|
||||
malanjemalanje province
|
||||
moxicomoxico province&
|
||||
moçâmedesnamibenamibe province
|
||||
29
本田/user_data/AutofillStates/2025.6.13.84507/AR
Normal file
29
本田/user_data/AutofillStates/2025.6.13.84507/AR
Normal file
@@ -0,0 +1,29 @@
|
||||
|
||||
AR+
|
||||
provincia de saltasaltasalta province@
|
||||
buenos airesbuenos aires provinceprovincia de buenos aires_
|
||||
buenos airescabacapital federal ciudad autónoma de buenos airesciudad de buenos aires4
|
||||
provincia de san luissan luissan luis province=
|
||||
entre ríosentre ríos provinceprovincia de entre ríos4
|
||||
la riojala rioja provinceprovincia de la riojaU
|
||||
provincia de santiago del esterosantiago del esterosantiago del estero province,
|
||||
chacochaco provinceprovincia del chaco4
|
||||
provincia de san juansan juansan juan province#
|
||||
catamarcaprovincia de catamarca4
|
||||
la pampala pampa provinceprovincia de la pampa1
|
||||
mendozamendoza provinceprovincia de mendoza4
|
||||
misionesmisiones provinceprovincia de misiones1
|
||||
formosaformosa provinceprovincia de formosa5
|
||||
neuquénneuquén provinceprovincia del neuquén:
|
||||
provincia de río negro
|
||||
río negrorío negro province4
|
||||
provincia de santa fesanta fesanta fe province4
|
||||
provincia de tucumántucumántucumán province/
|
||||
chubutchubut provinceprovincia del chubutL
|
||||
provincia de tierra del fuegotierra del fuegotierra del fuego province:
|
||||
|
||||
corrientescorrientes provinceprovincia de corrientes4
|
||||
córdobacórdoba provinceprovincia de córdoba+
|
||||
jujuyjujuy provinceprovincia de jujuy:
|
||||
provincia de santa cruz
|
||||
santa cruzsanta cruz province
|
||||
7
本田/user_data/AutofillStates/2025.6.13.84507/AS
Normal file
7
本田/user_data/AutofillStates/2025.6.13.84507/AS
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
AS
|
||||
manu'amanu'a district
|
||||
easterneastern district
|
||||
rose island
|
||||
westernwestern district
|
||||
|
||||
14
本田/user_data/AutofillStates/2025.6.13.84507/AT
Normal file
14
本田/user_data/AutofillStates/2025.6.13.84507/AT
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
AT
|
||||
|
||||
burgenland
|
||||
kärnten carinthia"
|
||||
niederösterreich
|
||||
lower austria-
|
||||
oberösterroberösterreich
|
||||
upper austria
|
||||
|
||||
land salzburgsalzburg
|
||||
|
||||
steiermarkstyria
|
||||
tiroltyrol
|
||||
12
本田/user_data/AutofillStates/2025.6.13.84507/AU
Normal file
12
本田/user_data/AutofillStates/2025.6.13.84507/AU
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
AU
|
||||
jervis bay territoryjbt#
|
||||
australian capital territoryact
|
||||
new south walesnsw
|
||||
northern territorynt
|
||||
|
||||
queenslandqld
|
||||
south australiasa
|
||||
tasmaniatas
|
||||
victoriavic
|
||||
western australiawa
|
||||
5
本田/user_data/AutofillStates/2025.6.13.84507/AX
Normal file
5
本田/user_data/AutofillStates/2025.6.13.84507/AX
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
AX&
|
||||
mariehamns stadmariehamn subregion!
|
||||
ålands skärgårdarchipelago
|
||||
ålands landsbygdcountryside
|
||||
4
本田/user_data/AutofillStates/2025.6.13.84507/AZ
Normal file
4
本田/user_data/AutofillStates/2025.6.13.84507/AZ
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
AZM
|
||||
|
||||
naxçıvannakhchivan autonomous republicnaxçıvan muxtar respublikası
|
||||
5
本田/user_data/AutofillStates/2025.6.13.84507/BA
Normal file
5
本田/user_data/AutofillStates/2025.6.13.84507/BA
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
BA<12>
|
||||
federacija bosne i hercegovine$federation of bosnia and herzegovina9федерација босне и херцеговине?
|
||||
brčko distriktbrčko districtбрчко дистриктS
|
||||
republika srpskaрепублика српскaрепублика српска
|
||||
15
本田/user_data/AutofillStates/2025.6.13.84507/BB
Normal file
15
本田/user_data/AutofillStates/2025.6.13.84507/BB
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
BB%
|
||||
|
||||
christ churchchrist church parish#
|
||||
saint andrewsaint andrew parish#
|
||||
saint georgesaint george parish!
|
||||
saint jamessaint james parish
|
||||
|
||||
saint johnsaint john parish#
|
||||
saint josephsaint joseph parish
|
||||
|
||||
saint lucy%
|
||||
|
||||
saint michaelsaint michael parish!
|
||||
saint petersaint peter parish#
|
||||
10
本田/user_data/AutofillStates/2025.6.13.84507/BD
Normal file
10
本田/user_data/AutofillStates/2025.6.13.84507/BD
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
BD6
|
||||
"বরিশাল বিভাগbarisal division_
|
||||
+চট্টগ্রাম বিভাগchittagong divisionচট্রগ্রাম.
|
||||
ঢাকা বিভাগdhaka division2
|
||||
খুলনা বিভাগkhulna divisionQ
|
||||
রাজশাহীrajshahi division%রাজশাহী বিভাগD
|
||||
রংপুরrangpur divisionরংপুর বিভাগ2
|
||||
সিলেট বিভাগsylhet divisionB
|
||||
+ময়মনসিংহ বিভাগmymensingh division
|
||||
6
本田/user_data/AutofillStates/2025.6.13.84507/BE
Normal file
6
本田/user_data/AutofillStates/2025.6.13.84507/BE
Normal file
@@ -0,0 +1,6 @@
|
||||
|
||||
BE\
|
||||
bruxellesbrusselbrusselsbrussels hoofdstedelijk gewestrégion de bruxellescapitale%
|
||||
|
||||
vlaams gewestflanders
|
||||
vlaanderen&
|
||||
18
本田/user_data/AutofillStates/2025.6.13.84507/BF
Normal file
18
本田/user_data/AutofillStates/2025.6.13.84507/BF
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
BF-
|
||||
boucle du mouhounboucle du mouhoun region
|
||||
cascadescascades region
|
||||
centre
|
||||
centre region)
|
||||
|
||||
centre est centreestcentreest region,
|
||||
centre nord
|
||||
centrenordcentrenord region9
|
||||
centreouestcentreouest regionrégion du centreouest
|
||||
centresudcentresud region
|
||||
est
|
||||
est region#
|
||||
hautsbassinshautsbassins region
|
||||
nordnord region8
|
||||
plateau centralplateaucentralplateaucentral region
|
||||
sahelsahel region
|
||||
37
本田/user_data/AutofillStates/2025.6.13.84507/BG
Normal file
37
本田/user_data/AutofillStates/2025.6.13.84507/BG
Normal file
@@ -0,0 +1,37 @@
|
||||
|
||||
BGS
|
||||
благоевградblagoevgrad province#област благоевград1
|
||||
бургасburgasобласт бургас,
|
||||
|
||||
варнаvarnaобласт варна`
|
||||
велико търновоveliko tarnovo province(област велико търново,
|
||||
|
||||
видинvidinобласт видин-
|
||||
|
||||
врацаvratsaобласт враца6
|
||||
габровоgabrovoобласт габрово;
|
||||
добричdobrich provinceобласт добричE
|
||||
кърджалиkardzhali provinceобласт кърджалиJ
|
||||
кюстендилkyustendil provinceобласт кюстендил-
|
||||
|
||||
ловечlovechобласт ловеч?
|
||||
монтанаmontana provinceобласт монтанаA
|
||||
област пазарджик
|
||||
pazardzhikпазарджик1
|
||||
област перникpernikперник:
|
||||
област плевенpleven provinceплевен?
|
||||
област пловдивplovdiv provinceпловдив6
|
||||
област разградrazgradразград'
|
||||
област русеruseрусе;
|
||||
област силистраsilistraсилистра
|
||||
сливенsliven province2
|
||||
област смолянsmoljanсмолянB
|
||||
област софияsofia city provinceсофияградH
|
||||
софийска областsofia provinceсофия областM
|
||||
$област стара загораstara zagoraстара загораK
|
||||
област търговищеtargovishte provinceтърговище?
|
||||
област хасковоhaskovo provinceхасково%
|
||||
област шумен
|
||||
шумен-
|
||||
област ямболjambol
|
||||
ямбол
|
||||
6
本田/user_data/AutofillStates/2025.6.13.84507/BH
Normal file
6
本田/user_data/AutofillStates/2025.6.13.84507/BH
Normal file
@@ -0,0 +1,6 @@
|
||||
|
||||
BH2
|
||||
محافظة العاصمةcapital governorateG
|
||||
!المحافظة الجنوبيةsouthern governorateجنوبية1
|
||||
محافظة المحرقmuharraq governorateK
|
||||
الشماليةnorthern governorate!المحافظة الشمالية
|
||||
20
本田/user_data/AutofillStates/2025.6.13.84507/BI
Normal file
20
本田/user_data/AutofillStates/2025.6.13.84507/BI
Normal file
@@ -0,0 +1,20 @@
|
||||
|
||||
BI
|
||||
province de rumongerumonge
|
||||
bubanzaprovince de bubanza.
|
||||
bujumbura ruralprovince de bujumbura ruralO
|
||||
bujumbura mairieiprovense ya bujumbura mairieprovince de bujumbura mairie
|
||||
bururiprovince de bururi
|
||||
cankuzoprovince de cankuzo
|
||||
cibitokeprovince de cibitoke
|
||||
gitegaprovince de gitega
|
||||
kirundoprovince de kirundo
|
||||
karuziprovince de karuzi
|
||||
kayanzaprovince de kayanza
|
||||
makambaprovince de makamba
|
||||
muramvyaprovince de muramvya
|
||||
mwaroprovince de mwaro
|
||||
muyingaprovince de muyinga
|
||||
ngoziprovince de ngozi
|
||||
province de rutanarutana
|
||||
province de ruyigiruyigi
|
||||
15
本田/user_data/AutofillStates/2025.6.13.84507/BJ
Normal file
15
本田/user_data/AutofillStates/2025.6.13.84507/BJ
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
BJ&
|
||||
atacoraatakoraatakora department
|
||||
aliborialibori department#
|
||||
|
||||
atlantiqueatlantique department
|
||||
borgouborgou department:
|
||||
collinescollines departmentdépartement des collines
|
||||
dongadonga department#
|
||||
couffokouffokouffo department9
|
||||
département du littorallittorallittoral department
|
||||
monomono department
|
||||
ouéméouémé department6
|
||||
département du plateauplateauplateau department
|
||||
zouzou department
|
||||
13
本田/user_data/AutofillStates/2025.6.13.84507/BM
Normal file
13
本田/user_data/AutofillStates/2025.6.13.84507/BM
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
BM
|
||||
pembrokepembroke parish0
|
||||
saint george'sst george's parish
|
||||
stgeorge's
|
||||
hamiltonhamilton parish
|
||||
warwickwarwick parish'
|
||||
smith's parishsmiths
|
||||
smiths parish!
|
||||
southamptonsouthampton parish
|
||||
|
||||
devonshiredevonshire parish
|
||||
sandys
|
||||
6
本田/user_data/AutofillStates/2025.6.13.84507/BN
Normal file
6
本田/user_data/AutofillStates/2025.6.13.84507/BN
Normal file
@@ -0,0 +1,6 @@
|
||||
|
||||
BN(
|
||||
belaitbelait district
|
||||
daerah belaitL
|
||||
bruneimuarabruneimuara districtdaerah brunei muaradaerah bruneimuara1
|
||||
daerah temburong temburongtemburong district(
|
||||
14
本田/user_data/AutofillStates/2025.6.13.84507/BO
Normal file
14
本田/user_data/AutofillStates/2025.6.13.84507/BO
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
BO.
|
||||
benibeni departmentdepartamento del beni?
|
||||
|
||||
cochabambacochabamba departmentdepartamento de cochabambae
|
||||
|
||||
chuquisacachuquisaca department$departamento autónomo de chuquisacadepartamento de chuquisacaU
|
||||
departamento autónomo de la pazdepartamento de la pazla pazla paz departmenth
|
||||
departamento autónomo de pandodepartamento de pandogobernación de pandopandopando departmentg
|
||||
departamento autónomo de orurodepartamento de orurogobernacón de oruroorurooruro departmentq
|
||||
!departamento autónomo de potosídepartamento de potosígobernación de potosípotosi departmentpotosíe
|
||||
$departamento autónomo de santa cruzdepartamento de santa cruz
|
||||
santa cruzsanta cruz departmentU
|
||||
departamento de tarija departemento autónomo de tarijatarijatarija department
|
||||
5
本田/user_data/AutofillStates/2025.6.13.84507/BQ
Normal file
5
本田/user_data/AutofillStates/2025.6.13.84507/BQ
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
BQ
|
||||
bonaireboneiru
|
||||
saba
|
||||
sint eustatius
|
||||
31
本田/user_data/AutofillStates/2025.6.13.84507/BR
Normal file
31
本田/user_data/AutofillStates/2025.6.13.84507/BR
Normal file
@@ -0,0 +1,31 @@
|
||||
|
||||
BR
|
||||
acreac
|
||||
state of acre
|
||||
alagoasalstate of alagoas!
|
||||
amazonasamstate of amazonas
|
||||
amapáapstate of amapá"
|
||||
bahiababaíastate of bahia
|
||||
cearáce(
|
||||
distrito federaldffederal district?
|
||||
espirito santoesespírito santostate of espírito santo
|
||||
goiásgostate of goiás#
|
||||
maranhãomastate of maranhão0
|
||||
minasmgminas geraisstate of minas gerais5
|
||||
mato grosso do sulmsstate of mato grosso do sul'
|
||||
mato grossomtstate of mato grosso
|
||||
parápastate of pará!
|
||||
paraíbapbstate of paraíba%
|
||||
|
||||
pernambucopestate of pernambuco
|
||||
piauípistate of piauí
|
||||
paranáprstate of paranáA
|
||||
baixada fluminenserjrio de janeirostate of rio de janeiro7
|
||||
rio grande do norternstate of rio grande do norte#
|
||||
rondôniarostate of rondônia
|
||||
roraimarrstate of roraima3
|
||||
rio grande do sulrsstate of rio grande do sul-
|
||||
santa catarinascstate of santa catarina
|
||||
sergipesestate of sergipe%
|
||||
|
||||
são paulospstate of são paulo#
|
||||
35
本田/user_data/AutofillStates/2025.6.13.84507/BS
Normal file
35
本田/user_data/AutofillStates/2025.6.13.84507/BS
Normal file
@@ -0,0 +1,35 @@
|
||||
|
||||
BS
|
||||
new providence
|
||||
acklins
|
||||
biminibimini and cat cay
|
||||
black point
|
||||
|
||||
berry islands
|
||||
central eleuthera
|
||||
|
||||
cat island
|
||||
crooked island and long cay
|
||||
|
||||
central abaco
|
||||
central andros
|
||||
east grand bahama
|
||||
exuma
|
||||
city of freeportfreeport
|
||||
grand cay
|
||||
harbour island
|
||||
hope town
|
||||
inagua
|
||||
long island
|
||||
mangrove cay
|
||||
mayaguana
|
||||
abacomoore's island
|
||||
north eleuthera
|
||||
north abaco
|
||||
north andros
|
||||
rum cay
|
||||
|
||||
ragged island
|
||||
south andros
|
||||
south eleuthera
|
||||
south abaco
|
||||
24
本田/user_data/AutofillStates/2025.6.13.84507/BT
Normal file
24
本田/user_data/AutofillStates/2025.6.13.84507/BT
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
BT>
|
||||
paro
|
||||
paro district'སྤ་རོ་རྫོང་ཁགH
|
||||
chhukhachukhachukha district$ཆུ་ཁ་རྫོང་ཁག
|
||||
hahaaP
|
||||
samchisamtsesamtse district-བསམ་རྩེ་རྫོང་ཁགf
|
||||
thimphuthimphu districtthimpu*ཐིམ་ཕུ་རྫོང་ཁགཐིམ་ཕུགP
|
||||
chirangtsirangtsirang district*རྩི་རང་རྫོང་ཁགT
|
||||
dagadaganadagana district3དར་དཀར་ནང་རྫོང་ཁགJ
|
||||
punakhapunakha district-སྤུ་ན་ཁ་རྫོང་ཁགt
|
||||
wangdue phodrangwangdue phodrang districtEདབང་འདུས་ཕོ་བྲང་རྫོང་ཁགJ
|
||||
sarpangsarpang district-གསར་སྤང་རྫོང་ཁགU
|
||||
tongsatrongsatrongsa district0ཀྲོང་གསར་རྫོང་ཁགI
|
||||
bumthangbumthang district*བུམ་ཐང་རྫོང་ཁགR
|
||||
zhemgangzhemgang district3གཞམས་སྒང་རྫོང་ཁག་a
|
||||
tashigang
|
||||
trashigangtrashigang district3བཀྲིས་སྒང་རྫོང་ཁགH
|
||||
mongarmongar district-མོང་སྒར་རྫོང་ཁགu
|
||||
|
||||
pemagatselpemagatshelpemagatshel districtpremagalshel6པདྨ་དགའ་ཚལ་རྫོང་ཁག%
|
||||
lhuntselhuntse districtlhuntshi}
|
||||
samdrup jongkharsamdrup jongkhar districtNབསམ་གྲུབ་ལྗོངས་མཁར་རྫོང་ཁག
|
||||
gasa
|
||||
21
本田/user_data/AutofillStates/2025.6.13.84507/BW
Normal file
21
本田/user_data/AutofillStates/2025.6.13.84507/BW
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
BW
|
||||
francistown city
|
||||
selibe phikwe town
|
||||
lobatse town
|
||||
jwaneng town
|
||||
chobe district
|
||||
|
||||
gaborone city
|
||||
sowa town>
|
||||
centralcentral districtkgaolo ya legarengwati district+
|
||||
ghanzighanzi districtkgaolo ya ghanziD
|
||||
kgalagadikgalagadi district#kgalagadi le dikgaolo tse di mabapi
|
||||
kgatlengkgatleng district
|
||||
kwenengkweneng district+
|
||||
|
||||
north east northeastnortheast district
|
||||
|
||||
north westnorthwest district+
|
||||
|
||||
south east southeastsoutheast district8
|
||||
8
本田/user_data/AutofillStates/2025.6.13.84507/BY
Normal file
8
本田/user_data/AutofillStates/2025.6.13.84507/BY
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
BYT
|
||||
!брэсцкая вобласцьbrest region!брестская областьZ
|
||||
%гомельская вобласцьgomel region#гомельская область<12>
|
||||
)гарадзенская вобласць
|
||||
hrodna region'гродзенская вобласць%гродненская область`
|
||||
'магілёўская вобласцьmogilev region%могилёвская областьN
|
||||
мінская вобласцьminsk regionминская областьX
|
||||
8
本田/user_data/AutofillStates/2025.6.13.84507/BZ
Normal file
8
本田/user_data/AutofillStates/2025.6.13.84507/BZ
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
BZ
|
||||
belizebelize district
|
||||
cayo
|
||||
cayo district
|
||||
corozalcorozal district#
|
||||
orange walkorange walk district#
|
||||
stann creekstann creek district
|
||||
15
本田/user_data/AutofillStates/2025.6.13.84507/CA
Normal file
15
本田/user_data/AutofillStates/2025.6.13.84507/CA
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
CA
|
||||
albertaab
|
||||
british columbiabc
|
||||
manitobamanmb%
|
||||
|
||||
new brunswicknbnouveaubrunswick7
|
||||
labradornlnewfoundlandnewfoundland and labrador
|
||||
nova scotians
|
||||
northwest territoriesnt
|
||||
nunavutnu
|
||||
ontonontario
|
||||
peipeprince edward island
|
||||
québecqcquebec
|
||||
saskatchewansk
|
||||
3
本田/user_data/AutofillStates/2025.6.13.84507/CC
Normal file
3
本田/user_data/AutofillStates/2025.6.13.84507/CC
Normal file
@@ -0,0 +1,3 @@
|
||||
|
||||
CC(
|
||||
shire of cocos islandsshire of cocos
|
||||
32
本田/user_data/AutofillStates/2025.6.13.84507/CD
Normal file
32
本田/user_data/AutofillStates/2025.6.13.84507/CD
Normal file
@@ -0,0 +1,32 @@
|
||||
|
||||
CD
|
||||
kwilu
|
||||
sankuru
|
||||
kasaïkasai
|
||||
|
||||
tanganyika-
|
||||
kasaicentralkasaï central
|
||||
kasaïcentral
|
||||
tshopo
|
||||
hautkatanga
|
||||
lualaba
|
||||
kwango
|
||||
hautuele
|
||||
hautuélé
|
||||
ituri
|
||||
tshuapa
|
||||
maindombe
|
||||
sudubangi
|
||||
|
||||
hautlomami
|
||||
mongala
|
||||
lomami
|
||||
basuele
|
||||
|
||||
nordubangi'
|
||||
bascongo
|
||||
kongo centralkongocentral-
|
||||
province de l'équateurequator équateur@
|
||||
|
||||
kasaiorientalkasai orientalkasaï orientalkasaïoriental
|
||||
kinshasalipopo
|
||||
22
本田/user_data/AutofillStates/2025.6.13.84507/CF
Normal file
22
本田/user_data/AutofillStates/2025.6.13.84507/CF
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
CF
|
||||
ouham
|
||||
baminguibangoran<
|
||||
archidiocèse de banguibanguikötä gbätä tî bangî
|
||||
|
||||
bassekotto
|
||||
|
||||
hautekotto
|
||||
|
||||
hautmbomou1
|
||||
mamberekadeimambérékadéimambérékadéï(
|
||||
nanagrebizinanagribizinanagrébizi
|
||||
kemokémo
|
||||
lobaye
|
||||
mbomouO
|
||||
ombella m'poko
|
||||
ombellam'poko.sêse tî kömändâkötä tî ömbëläpökö<
|
||||
|
||||
nanamambéré+sêse tî kömändâkötä tî nanämambere
|
||||
ouham pendéouhampendé
|
||||
sanghambaresanghambaéré
|
||||
16
本田/user_data/AutofillStates/2025.6.13.84507/CG
Normal file
16
本田/user_data/AutofillStates/2025.6.13.84507/CG
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
CG
|
||||
bouenza
|
||||
pool
|
||||
sangha
|
||||
|
||||
plateaux
|
||||
cuvetteouest&
|
||||
pointenoirepointe noire pwantenwa
|
||||
lékoumoulekoumou
|
||||
kouiloukuilu
|
||||
|
||||
likouala
|
||||
cuvette
|
||||
niari
|
||||
brazzaville
|
||||
33
本田/user_data/AutofillStates/2025.6.13.84507/CH
Normal file
33
本田/user_data/AutofillStates/2025.6.13.84507/CH
Normal file
@@ -0,0 +1,33 @@
|
||||
|
||||
CH
|
||||
aargauag
|
||||
kanton aargau9
|
||||
appenzell innerrhodenaikanton appenzell innerrhoden;
|
||||
appenzell ausserrhodenarkanton appenzell ausserrhoden'
|
||||
bernbecanton of bernkanton bern=
|
||||
basel (kanton)blbasellandschaftkanton basellandschaft>
|
||||
|
||||
basel (stadt)bs
|
||||
basel city
|
||||
baselstadtkanton baselstadta
|
||||
freiburgfrcanton de fribourgcanton friburgofribourgfriburgfriburgokanton freiburg
|
||||
genèvegegeneva
|
||||
glarusgl
|
||||
kanton glarus.
|
||||
graubündengrgrisonskanton graubünden
|
||||
canton du jurajujura$
|
||||
|
||||
kanton luzernlulucerneluzern&
|
||||
canton de neuchâtelne
|
||||
neuchâtel!
|
||||
nidwaldennwkanton nidwalden
|
||||
kanton obwaldenowobwalden2
|
||||
kanton sankt gallensgsankt gallen st gallen'
|
||||
kanton schaffhausenshschaffhausen!
|
||||
kanton solothurnso solothurn
|
||||
|
||||
kanton schwyzszschwyz
|
||||
kanton thurgautgthurgau
|
||||
|
||||
canton ticinotiticino
|
||||
|
||||
18
本田/user_data/AutofillStates/2025.6.13.84507/CI
Normal file
18
本田/user_data/AutofillStates/2025.6.13.84507/CI
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
CI:
|
||||
district autonome d'abidjanabidjan autonomous districtX
|
||||
bassassandrabassassandra districtdistrict du bassassandrarégion du bassassandra4
|
||||
comoecomoécomoé districtdistrict du comoéC
|
||||
denguele
|
||||
denguélédenguélé districtdistrict du denguéléH
|
||||
district du gôhdjiboua
|
||||
gohdjibouagôhdjibouagôhdjiboua district:
|
||||
district des lacslacs
|
||||
lacs districtrégion des lacsF
|
||||
district des laguneslaguneslagunes districtrégion des lagunesX
|
||||
18 montagnesdistrict des montagnesdixhuit montagnes montagnesmontagnes districtd
|
||||
district du sassandramarahouésassandramarahouesassandramarahouésassandramarahoué districtF
|
||||
district des savanesrégion des savanessavanessavanes districtf
|
||||
!district de la vallée du bandamavalle du bandamavallée du bandamavallée du bandama district-
|
||||
district du worobaworobaworoba districtH
|
||||
!district autonome du yamoussoukroyamoussoukroyamoussoukro district-
|
||||
29
本田/user_data/AutofillStates/2025.6.13.84507/CL
Normal file
29
本田/user_data/AutofillStates/2025.6.13.84507/CL
Normal file
@@ -0,0 +1,29 @@
|
||||
|
||||
CL<12>
|
||||
|
||||
11 región,aisén del general carlos ibáñez del campoaysén,aysén del general carlos ibáñez del campo4región aisén del general carlos ibáñez del campo7región de aysén del general carlos ibáñez del campo
|
||||
xi región7xi región aisén del general carlos ibáñez del campoW
|
||||
2 regiónantofagasta
|
||||
ii regiónii región de antofagastaregión de antofagastal
|
||||
15 regionarica y parinacotaregión de arica y parinacota
|
||||
xv región xv región de arica y parinacotat
|
||||
9 región araucania
|
||||
araucanía
|
||||
ix regiónix región de la araucanía
|
||||
la araucaníaregión de la araucaníaM
|
||||
3 regiónatacamaiii regióniii región de atacamaregión de atacama<12>
|
||||
8 regiónbio biobiobío bío bíoregión del biobíoregión del bío bíoregión del bíobíoviii regiónviii región del bío bíoN
|
||||
4 regióncoquimbo
|
||||
iv regióniv región de coquimboregión de coquimbo<12>
|
||||
6 región%libertador general bernardo o'higgins'libertador general bernardo o’higgins o'higginsregión de o’higgins3región del libertador general bernardo o’higgins
|
||||
vi región6vi región del libertador general bernardo o’higginsP
|
||||
|
||||
10 región los lagosregión de los lagos x regiónx región de los lagosT
|
||||
|
||||
14 región los ríosregión de los ríosxiv regiónxiv región de los ríos<12>
|
||||
|
||||
12 región!magallanes and chilean antarctica%magallanes y de la antártica chilena"magallanes y la antártica chilena0región de magallanes y de la antártica chilena-región de magallanes y la antártica chilenaxii región1xii región de magallanes y la antártica chilenaI
|
||||
7 regiónmauleregión del maulevii regiónvii región del maule0
|
||||
provincia de ñubleregión de ñubleñuble<12>
|
||||
metropolitana de santiagoregión metropolitana!región metropolitana de santiagorm$rm región metropolitana de santiagosantiago metropolitan regionO
|
||||
1 región i regióni región de tarapacáregión de tarapacá tarapacáU
|
||||
12
本田/user_data/AutofillStates/2025.6.13.84507/CM
Normal file
12
本田/user_data/AutofillStates/2025.6.13.84507/CM
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
CM:
|
||||
adamawaadamaouaadamawa regionrégion de l'adamaouaG
|
||||
centralcentre
|
||||
centre regionprovince du centrerégion du centre~
|
||||
|
||||
extreme northextreme nordextrêmenord far northfar north regionfarnorthrégion de l'extrêmenordrégion du nord=
|
||||
easteast regionestprovince de l'estrégion de l'estJ
|
||||
littoraldépartement du littorallittoral regionrégion du littoral>
|
||||
northnordnorth regionprovince du nordrégion du nord>
|
||||
northwest nordouestnorthwest regionrégion du nordouestC
|
||||
westouestprovince de l'ouestrégion de l'ouestwest region;
|
||||
33
本田/user_data/AutofillStates/2025.6.13.84507/CN
Normal file
33
本田/user_data/AutofillStates/2025.6.13.84507/CN
Normal file
@@ -0,0 +1,33 @@
|
||||
|
||||
CN
|
||||
北京beijing 北京市
|
||||
天津tianjin 天津市
|
||||
冀hebei河北 河北省
|
||||
山西shanxi 山西省/
|
||||
内蒙古inner mongolia内蒙古自治区
|
||||
辽宁liaoning 辽宁省
|
||||
吉林jilin 吉林省'
|
||||
黑龙江heilongjiang黑龙江省
|
||||
上海shanghai 上海市!
|
||||
江苏jiangsu 江苏省苏
|
||||
浙江zhejiang 浙江省
|
||||
安徽anhui 安徽省
|
||||
福建fujian 福建省闽!
|
||||
江西jiangxi 江西省赣"
|
||||
山东shandong 山东省鲁
|
||||
河南henan 河南省豫
|
||||
湖北hubei 湖北省鄂
|
||||
湖南hunan 湖南省湘'
|
||||
广东guangdong province 广东省3
|
||||
广西guangxi广西壮族自治区 广西省
|
||||
海南hainan 海南省
|
||||
重庆 chongqing 重庆市&
|
||||
四川sichuan 四川省川蜀&
|
||||
贵guizhou贵州 贵州省黔
|
||||
云南yunnan 云南省滇%
|
||||
藏tibet西藏西藏自治区
|
||||
陕西shaanxi 陕西省$
|
||||
甘gansu甘肃 甘肃省陇
|
||||
青海qinghai 青海省-
|
||||
宁ningxia宁夏宁夏回族自治区1
|
||||
新xinjiang新疆新疆维吾尔自治区
|
||||
42
本田/user_data/AutofillStates/2025.6.13.84507/CO
Normal file
42
本田/user_data/AutofillStates/2025.6.13.84507/CO
Normal file
@@ -0,0 +1,42 @@
|
||||
|
||||
CO
|
||||
|
||||
amazonas
|
||||
antioquia
|
||||
arauca
|
||||
|
||||
atlántico atlantico
|
||||
bolívarbolivar
|
||||
boyacáboyaca
|
||||
caldas
|
||||
caquetácaqueta
|
||||
|
||||
casanare
|
||||
cauca
|
||||
cesar
|
||||
chocóchoco
|
||||
córdobacordoba
|
||||
cundinamarcaL
|
||||
bogotábogota
|
||||
bogotá dcdistrito capitaldistrito capital de bogotá
|
||||
guainíaguainia
|
||||
|
||||
guaviare
|
||||
huila
|
||||
|
||||
la guajira
|
||||
magdalena
|
||||
meta
|
||||
nariñonarino%
|
||||
norte de santandernorth santander
|
||||
|
||||
putumayo
|
||||
quindíoquindio
|
||||
risaralda
|
||||
santanderU
|
||||
archipiélago de san andréssan andres and providenciasan andrés y providencia
|
||||
sucre
|
||||
tolima
|
||||
valle del cauca
|
||||
vaupésvaupes
|
||||
vichada
|
||||
11
本田/user_data/AutofillStates/2025.6.13.84507/CR
Normal file
11
本田/user_data/AutofillStates/2025.6.13.84507/CR
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
CR4
|
||||
alajuelaalajuela provinceprovincia de alajuela1
|
||||
cartagocartago provinceprovincia de cartago:
|
||||
|
||||
guanacasteguanacaste provinceprovincia de guanacaste1
|
||||
herediaheredia provinceprovincia de heredia5
|
||||
limonlimónlimón provinceprovincia de limón:
|
||||
provincia de puntarenas
|
||||
puntarenaspuntarenas province7
|
||||
provincia de san josé san josésan josé province
|
||||
20
本田/user_data/AutofillStates/2025.6.13.84507/CU
Normal file
20
本田/user_data/AutofillStates/2025.6.13.84507/CU
Normal file
@@ -0,0 +1,20 @@
|
||||
|
||||
CU<
|
||||
pinar del río
|
||||
pinar del rioprovincia de pinar del río7
|
||||
|
||||
ciudad habanahavana la habanaprovincia la habana!
|
||||
matanzasprovincia de matanzas'
|
||||
provincia de villa claravilla clara;
|
||||
|
||||
cienfuegosprovincia cienfuegosprovincia de cienfuegosB
|
||||
provincia de sancti spíritussancti spiritussancti spíritus?
|
||||
ciego de ávilaciego de avilaprovincia de ciego de ávila-
|
||||
camagüeycamagueyprovincia de camagüey#
|
||||
las tunasprovincia de las tunas*
|
||||
holguínholguinprovincia de holguín
|
||||
granmaprovincia de granma1
|
||||
provincia de santiago de cubasantiago de cuba3
|
||||
guantánamo
|
||||
guantanamoprovincia de guantánamo4
|
||||
artemisaartemisa provinceprovincia de artemisa#
|
||||
28
本田/user_data/AutofillStates/2025.6.13.84507/CV
Normal file
28
本田/user_data/AutofillStates/2025.6.13.84507/CV
Normal file
@@ -0,0 +1,28 @@
|
||||
|
||||
CV
|
||||
brava
|
||||
boa vista
|
||||
santa catarina
|
||||
santa catarina do fogo
|
||||
|
||||
santa cruz
|
||||
maio
|
||||
mosteiros
|
||||
paulpaúl
|
||||
|
||||
porto novo
|
||||
praia
|
||||
|
||||
ribeira brava
|
||||
ribeira grande
|
||||
ribeira grande de santiago
|
||||
|
||||
são domingos
|
||||
são filipe
|
||||
sao filipe
|
||||
sal
|
||||
são miguel
|
||||
são lourenço dos órgãos
|
||||
são salvador do mundo
|
||||
são vicente
|
||||
|
||||
3
本田/user_data/AutofillStates/2025.6.13.84507/CX
Normal file
3
本田/user_data/AutofillStates/2025.6.13.84507/CX
Normal file
@@ -0,0 +1,3 @@
|
||||
|
||||
CX
|
||||
shire of christmas island
|
||||
9
本田/user_data/AutofillStates/2025.6.13.84507/CY
Normal file
9
本田/user_data/AutofillStates/2025.6.13.84507/CY
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
CYZ
|
||||
!επαρχία λευκωσίαςlefkoşalefkoşa kazasınicosiaλευκωσία#
|
||||
λεμεσόςlimasollimassolT
|
||||
επαρχία λάρνακαςlarnacalarnakalarnaka kazasıλάρνακα.
|
||||
αμμόχωστος famagustagazimağusaJ
|
||||
επαρχία πάφουbafbaf kazasıgazibafpaphos
|
||||
πάφος
|
||||
κερύνειαgirne
|
||||
16
本田/user_data/AutofillStates/2025.6.13.84507/CZ
Normal file
16
本田/user_data/AutofillStates/2025.6.13.84507/CZ
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
CZ
|
||||
hlavní město prahaprague.
|
||||
středočeský krajcentral bohemian region)
|
||||
jihočeský krajsouth bohemian region
|
||||
plzeňský kraj
|
||||
plzeň region(
|
||||
karlovarský krajkarlovy vary region)
|
||||
ústecký krajústí nad labem region!
|
||||
liberecký krajliberec region2
|
||||
královéhradecký krajhradec králové region$
|
||||
pardubický krajpardubice region"
|
||||
kraj vysočinavysočina region+
|
||||
jihomoravský krajsouth moravian region!
|
||||
olomoucký krajolomouc region
|
||||
zlínský krajzlín region0
|
||||
19
本田/user_data/AutofillStates/2025.6.13.84507/DE
Normal file
19
本田/user_data/AutofillStates/2025.6.13.84507/DE
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
DE
|
||||
brandenburgbb
|
||||
berlinbe
|
||||
badenwürttembergbw
|
||||
bayernbybavaria%
|
||||
bremenhbfreie hansestadt bremen
|
||||
hessenhe
|
||||
hamburghh
|
||||
mecklenburgvorpommernmv"
|
||||
|
||||
niedersachsenndslower saxony0
|
||||
nordrheinwestfalennrwnorth rhinewestphalia)
|
||||
rheinlandpfalzrprhinelandpalatinate
|
||||
schleswigholsteinsh
|
||||
saarlandsl
|
||||
sachsensnsaxony!
|
||||
|
||||
sachsenanhaltsasaxonyanhalt
|
||||
11
本田/user_data/AutofillStates/2025.6.13.84507/DJ
Normal file
11
本田/user_data/AutofillStates/2025.6.13.84507/DJ
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
DJ5
|
||||
أرتاartarégion d'artaإقليم عرتاO
|
||||
إقليم على صبيح
|
||||
ali sabiehrégion d'ali sabiehعلي صبيح<
|
||||
إقليم دخيلdikhilrégion de dikhil
|
||||
دِخيل
|
||||
جيبوتيdjibouti;
|
||||
|
||||
أوبوكobockrégion d'obockإقليم أوبوخ_
|
||||
إقليم تاجورةrégion de tadjourah tadjourahإقليم تجرةتادجورا
|
||||
10
本田/user_data/AutofillStates/2025.6.13.84507/DK
Normal file
10
本田/user_data/AutofillStates/2025.6.13.84507/DK
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
DK
|
||||
christiansø
|
||||
ertholmene7
|
||||
nordjyllandnorth denmark regionregion nordjylland9
|
||||
midtjyllandcentral denmark regionregion midtjylland;
|
||||
region syddanmarkregion of southern denmark
|
||||
syddanmark<
|
||||
hovedstadencapital region of denmarkregion hovedstaden-
|
||||
region sjællandregion zealand sjælland
|
||||
16
本田/user_data/AutofillStates/2025.6.13.84507/DM
Normal file
16
本田/user_data/AutofillStates/2025.6.13.84507/DM
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
DM#
|
||||
saint andrewsaint andrew parish!
|
||||
saint davidsaint david parish#
|
||||
saint georgesaint george parish
|
||||
|
||||
saint johnsaint john parish#
|
||||
saint josephsaint joseph parish
|
||||
|
||||
saint lukesaint luke parish
|
||||
|
||||
saint marksaint mark parish%
|
||||
|
||||
saint patricksaint patrick parish
|
||||
|
||||
saint paulsaint paul parish!
|
||||
36
本田/user_data/AutofillStates/2025.6.13.84507/DO
Normal file
36
本田/user_data/AutofillStates/2025.6.13.84507/DO
Normal file
@@ -0,0 +1,36 @@
|
||||
|
||||
DO
|
||||
distrito nacional
|
||||
azua
|
||||
azua province,
|
||||
bahorucobaorucobaoruco provinceneiba
|
||||
barahonabarahona province
|
||||
dajabóndajabón province+
|
||||
duarteduarte provinceduarte provinciaA
|
||||
elias piñaelías piñaelías piña province
|
||||
la estrelleta
|
||||
el seiboel seibo province
|
||||
espaillatespaillat province'
|
||||
|
||||
independenciaindependencia province'
|
||||
|
||||
la altagraciala altagracia province
|
||||
la romanala romana province
|
||||
la vegala vega province=
|
||||
maría trinidad sánchez!maría trinidad sánchez province2
|
||||
monte cristimonte cristi provincemontecristi!
|
||||
|
||||
pedernalespedernales province
|
||||
peraviaperavia province%
|
||||
puerto platapuerto plata province6
|
||||
hermanas mirabalhermanas mirabal provincesalcedo
|
||||
samanásamaná province)
|
||||
san cristóbalsan cristóbal province
|
||||
san juansan juan provinceM
|
||||
san pedro de macorissan pedro de macoríssan pedro de macorís province/
|
||||
sánchez ramírezsánchez ramírez province
|
||||
santiagosantiago province3
|
||||
santiago rodríguezsantiago rodríguez province
|
||||
valverdevalverde province+
|
||||
monseñor nouelmonseñor nouel province#
|
||||
monte platamonte plata province!
|
||||
69
本田/user_data/AutofillStates/2025.6.13.84507/DZ
Normal file
69
本田/user_data/AutofillStates/2025.6.13.84507/DZ
Normal file
@@ -0,0 +1,69 @@
|
||||
|
||||
DZC
|
||||
|
||||
أدرارadrar provincewilaya d'adrarولاية أدرار\
|
||||
شلفchlefchlef provincewilaya de chlefولاية الشلولاية الشلفR
|
||||
الأغواطlaghouat provincewilaya de laghouatولاية الأغواطy
|
||||
أم البواقيoum el bouaghi province
|
||||
oum elbouaghiwilaya d'oum el bouaghiولاية أم البواقي8
|
||||
ولاية باتنةbatna provincewilaya de batna\
|
||||
|
||||
بجايةbéjaïabéjaïa provincevgayetwilaya de béjaïaولاية بجايةW
|
||||
|
||||
بسكرةbiskra provincewilaya de biskraبِسكرةولاية بسكرةM
|
||||
بشارbécharbéchar provincewilaya de bécharولاية بشارS
|
||||
البليدةblidablida provincewilaya de blidaولاية البليدةv
|
||||
البويرةbouirabouïrabouïra provincetuvirettwilaya de bouira
|
||||
بويرةولاية البويرةp
|
||||
تمنراستwilaya de tamanghassettamanrasset provincewilaya de tamanrassetولاية تمنراست^
|
||||
تبسةtébessatébessa provincewilaya de tébessaتيبيساولاية تبسةg
|
||||
تلمسانtlemcentlemcen provincewilaya de tlemcenتلِمسِانولاية تلمسانF
|
||||
|
||||
تيارتtiaret provincewilaya de tiaretولاية تيارت<12>
|
||||
تيزي أوزو
|
||||
tizi ouzoutizi ouzou province tiziouzouwilaya de tizi ouzouتيزي وزوولاية تيزي وزو
|
||||
الجزائرalgeralgiers provincewilaya d'algerالجزائر العاصمة
|
||||
دزايرولاية الجزائرJ
|
||||
الجلفةdjelfa provincewilaya de djelfaولاية الجلفة@
|
||||
جيجلjijel provincewilaya de jijelولاية جيجلJ
|
||||
سطيفsétifsétif provincewilaya de sétifولاية سطيفL
|
||||
صيداsaïdasaïda provincewilaya de saïdaولاية سعيدة[
|
||||
سكيكدةskikda provincewilaya de skikdaسكيكدةولاية سكيكدة<12>
|
||||
سيدي بلعباسsidi bel abbessidi bel abbès province
|
||||
sidibelabbèswilaya de sidi bel abbèsسيدي بلعباس ولاية سيدي بلعباسA
|
||||
ولاية عنابةannabaannaba provincewilaya d'annabaN
|
||||
|
||||
قالمةguelmaguelma provincewilaya de guelmaولاية قالمة<12>
|
||||
القسطنطينيةconstantineconstantine provincewilaya de constantineقسنطينةولاية قسنطينةd
|
||||
المديةmédéamédéa provincewilaya de médéa
|
||||
ميدياولاية المديةy
|
||||
مستغانم
|
||||
mostaganemmostaganem provincewilaya de mostaganemمُستَغنِمولاية مستغانمe
|
||||
المسيلةm'silam'sila provincewilaya de m'sila
|
||||
مسيلةولاية المسيلة`
|
||||
|
||||
معسكرmascaramascara provincewilaya de mascara
|
||||
معسكرولاية معسكر\
|
||||
|
||||
ورجلةouarglaouargla provincewilaya d'ouargla
|
||||
ورقلةولاية ورقلة^
|
||||
ولاية وهرانoran
|
||||
oran provincewahren
|
||||
wilaya d'oran
|
||||
وهران
|
||||
وهرانd
|
||||
|
||||
البيضel bayadh provinceelbayadhwilaya d'el bayadh
|
||||
البيضولاية البيضT
|
||||
|
||||
اليزيillizi provincewilaya d'illizi
|
||||
اليزيولاية إليزي<12>
|
||||
برج بوعريريجbordj bou arréridjbordj bou arréridj provincebordjbouarreridjwilaya de bordj bou arreridjبرج بوعريريج"ولاية برج بوعريريجy
|
||||
بومرداس
|
||||
boumerdèsboumerdès provincewilaya de boumerdèsبومِردِاسولاية بومرداسf
|
||||
الطارفel taref provinceeltarefwilaya d'el tarfالطارفولاية الطارفq
|
||||
|
||||
تندوفtindouf provincewilaya de tindouf
|
||||
تندوفولاية تندوفولاية تندوفm
|
||||
تسمسيلتtissemsilt provincewilaya de tissemsiltتيسمسيلتولاية تيسمسيلتd
|
||||
العويضel oued provinceelouedwilaya d'el ouedالواديولاية الواديe
|
||||
31
本田/user_data/AutofillStates/2025.6.13.84507/EC
Normal file
31
本田/user_data/AutofillStates/2025.6.13.84507/EC
Normal file
@@ -0,0 +1,31 @@
|
||||
|
||||
EC
|
||||
azuayprovincia de azuay*
|
||||
bolívarbolivarprovincia de bolívar
|
||||
carchiprovincia de carchi!
|
||||
orellanaprovincia de orellana9
|
||||
cantón esmeraldas
|
||||
esmeraldasprovincia de esmeraldas
|
||||
cañarprovincia de cañar
|
||||
guayasprovincia del guayas%
|
||||
|
||||
chimborazoprovincia de chimborazo!
|
||||
imbaburaprovincia de imbabura
|
||||
lojaprovincia de loja
|
||||
manabíprovincia de manabí
|
||||
napoprovincia de napo
|
||||
el oroprovincia de el oro#
|
||||
pichinchaprovincia de pichincha-
|
||||
los ríoslos riosprovincia de los ríos?
|
||||
morona santiagomoronasantiagoprovincia de morona santiagoo
|
||||
,provincia de santo domingo de los tsáchilassanto domingo de los tsachilassanto domingo de los tsáchilas'
|
||||
provincia de santa elenasanta elena%
|
||||
provincia de tungurahua
|
||||
tungurahua0
|
||||
provincia de sucumbíos sucumbios
|
||||
sucumbíosL
|
||||
|
||||
galápagosgalápagos provinceislas galápagosprovincia de galápagos!
|
||||
cotopaxiprovincia de cotopaxi
|
||||
pastazaprovincia de pastazaB
|
||||
provincia de zamora chinchipezamora chinchipezamorachinchipe
|
||||
17
本田/user_data/AutofillStates/2025.6.13.84507/EE
Normal file
17
本田/user_data/AutofillStates/2025.6.13.84507/EE
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
EE
|
||||
|
||||
harju maakondharju county
|
||||
hiiu maakondhiiu county2
|
||||
idaviru maakondidaviru countyi̇dаvirumаа!
|
||||
jõgeva maakondjõgeva county
|
||||
järva maakond
|
||||
järva county!
|
||||
lääne maakondlääne county)
|
||||
lääneviru maakondlääneviru county
|
||||
põlva maakond
|
||||
põlva county
|
||||
pärnu maakond
|
||||
pärnu county
|
||||
|
||||
rapla maakondrapla county
|
||||
35
本田/user_data/AutofillStates/2025.6.13.84507/EG
Normal file
35
本田/user_data/AutofillStates/2025.6.13.84507/EG
Normal file
@@ -0,0 +1,35 @@
|
||||
|
||||
EG}
|
||||
الأسكندريةalexandria governorateالإسكندريةالاسكندرية!محافظة الإسكندريةD
|
||||
|
||||
أسوانaswan governorate
|
||||
اسوانمحافظة أسوان9
|
||||
|
||||
أسيوطassiut governorateمحافظة أسيوطT
|
||||
البحر الأحمرred sea governorate$محافظة البحر الأحمرB
|
||||
البحيرةbeheira governorateمحافظة البحيرةW
|
||||
بنى سويفbeni suef governorateبني سويفمحافظة بني سويفC
|
||||
القاهرةcairo governorateمحافظة القاهرةG
|
||||
الدقهليةdakahlia governorateمحافظة الدقهلية;
|
||||
|
||||
دمياطdamietta governorateمحافظة دمياط=
|
||||
الفيومfaiyum governorateمحافظة الفيومB
|
||||
الغربيةgharbia governorateمحافظة الغربية;
|
||||
الجيزةgiza governorateمحافظة الجيزةS
|
||||
الإسماعيليةismailia governorate#محافظة الإسماعيليةP
|
||||
جنوب سيناءsouth sinai governorate محافظة جنوب سيناءM
|
||||
القليوبيةalqalyubia governorateمحافظة القليوبيةN
|
||||
كفر الشيخkafr elsheikh governorateمحافظة كفر الشيخ/
|
||||
قناqena governorateمحافظة قناJ
|
||||
الأقصرluxor governorateالاقصرمحافظة الأقصر<
|
||||
المنياminya governorateمحافظة المنياF
|
||||
المنوفيةmenofia governorateمحافظة المنوفية@
|
||||
محافظة مطروحmarsa matrouh governorate
|
||||
مطروحD
|
||||
بورسعيدport said governorateمحافظة بورسعيد8
|
||||
|
||||
سوهاجsohag governorateمحافظة سوهاجD
|
||||
الشرقيةalsharqia governorateمحافظة الشرقيةP
|
||||
شمال سيناءnorth sinai governorate محافظة شمال سيناء;
|
||||
السويسsuez governorateمحافظة السويس_
|
||||
الوادي الجديدthe new valley governorate&محافظة الوادي الجديد
|
||||
5
本田/user_data/AutofillStates/2025.6.13.84507/EH
Normal file
5
本田/user_data/AutofillStates/2025.6.13.84507/EH
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
EH<12>
|
||||
)الداخلة وادي الذهبoued eddahablagouirarío de orola güera-جهة وادي الذهب الڭويرة-
|
||||
guelmimes semaraكلميم السمارةa
|
||||
laâyouneboujdoursakia el hamra>جهة العيون بوجدور الساقية الحمراء
|
||||
11
本田/user_data/AutofillStates/2025.6.13.84507/ER
Normal file
11
本田/user_data/AutofillStates/2025.6.13.84507/ER
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
ERN
|
||||
أنسيباansebaإقليم أنسبا
|
||||
عنسباዞባ ዓንሰባ<12>
|
||||
1إقليم البحر الأحمر الجنوبيsouthern red sea جنوب البحر الأحمر"ديبوباوي كيه باهري'ዞባ ደቡባዊ ቀይሕ ባሕሪ7
|
||||
الجنوبيةdebub
|
||||
ديبوبዞባ ደቡብG
|
||||
جاش بركا
|
||||
gash barkaقاش بركاዞባ ጋሽ ባርካZ
|
||||
المركزيةmaekelالمنطقة المركزيةمأكلዞባ ማእከል
|
||||
سيمناوي كيه باهريnorthern red sea شمال البحر الأحمر'ዞባ ሰሜናዊ ቀይሕ ባሕሪ
|
||||
22
本田/user_data/AutofillStates/2025.6.13.84507/ES
Normal file
22
本田/user_data/AutofillStates/2025.6.13.84507/ES
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
ES
|
||||
|
||||
andalucíaan andalusia
|
||||
aragónararagon&
|
||||
asturiasasprincipado de asturias
|
||||
cantabriacb&
|
||||
ceutaceciudad autónoma de ceuta)
|
||||
castilla y leónclcastile and león=
|
||||
castilla la manchacmcastilela manchacastillala mancha.
|
||||
canariascncanary islandsislas canarias
|
||||
catalunyact catalonia
|
||||
extremaduraex
|
||||
galiciagagaliza)
|
||||
|
||||
illes balearsibpmbalearic islands)
|
||||
región de murciamcregion of murcia.
|
||||
comunidad de madridmdcommunity of madrid*
|
||||
ciudad autónoma de melillamlmelilla2
|
||||
comunidad foral de navarrancnavarranavarre,
|
||||
euskadipvbasque country
|
||||
euskal herria
|
||||
13
本田/user_data/AutofillStates/2025.6.13.84507/ET
Normal file
13
本田/user_data/AutofillStates/2025.6.13.84507/ET
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
ET>
|
||||
አዲስ አበባaddis ababaአዲስ አበባ ፡፡#
|
||||
አፋርafarአፋር ፡፡
|
||||
አማራamharaP
|
||||
ቤኒሻንጉል ጉሙዝ።benishangulgumuzቤንሻንጉልጉምዝ
|
||||
ድሬዳዋ dire dawa
|
||||
ጋምቤላgambella5
|
||||
ሀሪሪ።harariሐረሪ ሕዝብ ክልል*
|
||||
ኦሮሚያoromiaኦሮሚያን።<12>
|
||||
0የደቡብ ብሔሮች ፣ ብሔረሰቦችsnnpr+southern nations, nationalities and peoplesCደቡብ ብሔሮች ብሔረሰቦችና ሕዝቦች ክልል(
|
||||
ሶማሌsomaliሶማሌ ክልል'
|
||||
ትግራይtigrayትግራይ።
|
||||
26
本田/user_data/AutofillStates/2025.6.13.84507/FI
Normal file
26
本田/user_data/AutofillStates/2025.6.13.84507/FI
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
FIG
|
||||
|
||||
eteläkarjalaeteläkarjalan maakunta
|
||||
south kareliasödra karelenU
|
||||
eteläpohjanmaaeteläpohjanmaan maakuntasouth ostrobothniasödra österbotten>
|
||||
|
||||
eteläsavoeteläsavon maakunta
|
||||
south savosödra savolax&
|
||||
kainuukainuun maakunta
|
||||
kajanalandN
|
||||
|
||||
kantahämeegentliga tavastlandegentligatavastlandkantahämeen maakuntaX
|
||||
keskipohjanmaacentral ostrobothniakeskipohjanmaan maakuntamellersta österbottenF
|
||||
keskisuomen maakuntacentral finland
|
||||
keskisuomimellersta finland2
|
||||
kymenlaaksokymenlaakson maakuntakymmenedalen*
|
||||
lapin maakuntalaplandlappilappland+
|
||||
pirkanmaa birkalandpirkanmaan maakunta<
|
||||
pohjanmaaostrobothniapohjanmaan maakuntaösterbottenH
|
||||
pohjoiskarjala
|
||||
norra karelen
|
||||
north kareliapohjoiskarjalan maakuntaV
|
||||
pohjoispohjanmaanorra österbottennorth ostrobothniapohjoispohjanmaan maakunta?
|
||||
pohjoissavo
|
||||
norra savolax
|
||||
6
本田/user_data/AutofillStates/2025.6.13.84507/FJ
Normal file
6
本田/user_data/AutofillStates/2025.6.13.84507/FJ
Normal file
@@ -0,0 +1,6 @@
|
||||
|
||||
FJ
|
||||
central division
|
||||
easterneastern division
|
||||
northernnorthern division
|
||||
western division
|
||||
6
本田/user_data/AutofillStates/2025.6.13.84507/FM
Normal file
6
本田/user_data/AutofillStates/2025.6.13.84507/FM
Normal file
@@ -0,0 +1,6 @@
|
||||
|
||||
FM
|
||||
kosrae
|
||||
pohnpei
|
||||
pohnpei state
|
||||
chuukchuuk state
|
||||
11
本田/user_data/AutofillStates/2025.6.13.84507/FO
Normal file
11
本田/user_data/AutofillStates/2025.6.13.84507/FO
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
FO
|
||||
sandoyarsandoy
|
||||
|
||||
eysturoyareysturoy
|
||||
|
||||
vága kommunavágavágar
|
||||
|
||||
streymoyarstreymoy
|
||||
|
||||
suðuroyarsuduroy
|
||||
15
本田/user_data/AutofillStates/2025.6.13.84507/FR
Normal file
15
本田/user_data/AutofillStates/2025.6.13.84507/FR
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
FR
|
||||
auvergnerhônealpes
|
||||
bourgognefranchecomté
|
||||
bretagnebrittany
|
||||
corsecorsica
|
||||
centreval de loire
|
||||
grand est
|
||||
|
||||
hautsdefrance
|
||||
îledefranceidf
|
||||
nouvelleaquitaine
|
||||
normandienormandy
|
||||
occitanie
|
||||
provencealpescôte d'azur
|
||||
14
本田/user_data/AutofillStates/2025.6.13.84507/GA
Normal file
14
本田/user_data/AutofillStates/2025.6.13.84507/GA
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
GA
|
||||
|
||||
estuaire
|
||||
|
||||
hautogoouehautogooué
|
||||
moyenogoouémoyenogooue
|
||||
n'gouniéngouniengounié
|
||||
nyanga
|
||||
ogooueivindo
|
||||
ogoouéivindo
|
||||
|
||||
ogooueloloogoouélolo!
|
||||
ogoouémaritimeogoouemaritime
|
||||
8
本田/user_data/AutofillStates/2025.6.13.84507/GB
Normal file
8
本田/user_data/AutofillStates/2025.6.13.84507/GB
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
GB<12>
|
||||
_περιοχές κυρίαρχων βάσεων ακρωτηρίου και δεκέλειαςakrotiri and dhekeliaağrotur ve dikelya
|
||||
england
|
||||
northern ireland
|
||||
|
||||
scotland
|
||||
walescymru
|
||||
11
本田/user_data/AutofillStates/2025.6.13.84507/GD
Normal file
11
本田/user_data/AutofillStates/2025.6.13.84507/GD
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
GD#
|
||||
saint andrewsaint andrew parish!
|
||||
saint davidsaint david parish#
|
||||
saint georgesaint george parish
|
||||
|
||||
saint johnsaint john parish
|
||||
|
||||
saint marksaint mark parish
|
||||
|
||||
saint patrick!
|
||||
14
本田/user_data/AutofillStates/2025.6.13.84507/GE
Normal file
14
本田/user_data/AutofillStates/2025.6.13.84507/GE
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
GE
|
||||
აფხაზეთიabkhaziaYაფხაზეთის ავტონომური რესპუბლიკაn
|
||||
აჭარაadjaraSაჭარის ავტონომიური რესპუბლიკა<
|
||||
გურიაguria"გურიის მხარეJ
|
||||
იმერეთიimereti(იმერეთის მხარეD
|
||||
კახეთიkakheti%კახეთის მხარეi
|
||||
"ქვემო ქართლიkvemo kartli5ქვემო ქართლის მხარე}
|
||||
*მცხეთამთიანეთიmtskhetamtianeti=მცხეთამთიანეთის მხარეr
|
||||
Nრაჭალეჩხუმი და ქვემო სვანეთი rachalechkhumi and lower svaneti~
|
||||
*სამცხეჯავახეთიsamtskhejavakheti=სამცხეჯავახეთის მხარეc
|
||||
შიდა ქართლიshida kartli2შიდა ქართლის მხარე<12>
|
||||
=სამეგრელოზემო სვანეთიsamegrelozemo svanetiPსამეგრელოზემო სვანეთის მხარე
|
||||
თბილისიtbilisi
|
||||
5
本田/user_data/AutofillStates/2025.6.13.84507/GF
Normal file
5
本田/user_data/AutofillStates/2025.6.13.84507/GF
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
GFT
|
||||
arrondissement 9731arrondissement de cayennearrondissement of cayennecayenne<12>
|
||||
arrondissement 9732#arrondissement de stlaurentdumaroni&arrondissement of saintlaurentdumaroni#arrondissement of stlaurentdumaronisaint laurent du maronisaintlaurentdumaroniN
|
||||
arrondissement de saintgeorgesarrondissement of saintgeorgessaintgeorges
|
||||
16
本田/user_data/AutofillStates/2025.6.13.84507/GG
Normal file
16
本田/user_data/AutofillStates/2025.6.13.84507/GG
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
GG(
|
||||
|
||||
saint sampsonsaintsamson
|
||||
st sampson
|
||||
valele valle
|
||||
|
||||
saint savioursaintsauveurI
|
||||
saint petersaint pierre du boissaintpierreduboisst pierre du bois
|
||||
|
||||
torteval&
|
||||
saint martinsaintmartin st martin#
|
||||
saint peter portsaintpierreport
|
||||
sarksercq
|
||||
alderneyaurigny3
|
||||
saint andrewsaintandrédelapommeraye st andrew%
|
||||
21
本田/user_data/AutofillStates/2025.6.13.84507/GH
Normal file
21
本田/user_data/AutofillStates/2025.6.13.84507/GH
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
GH
|
||||
bono region
|
||||
northern east region
|
||||
|
||||
oti region
|
||||
ahafo region
|
||||
savannah region
|
||||
western north region
|
||||
bono east region%
|
||||
|
||||
greater accragreater accra region
|
||||
ashantiashanti region
|
||||
centralcentral region
|
||||
easterneastern region
|
||||
northernnorthern region
|
||||
voltavolta region
|
||||
|
||||
upper eastupper east region
|
||||
|
||||
upper westupper west region
|
||||
9
本田/user_data/AutofillStates/2025.6.13.84507/GL
Normal file
9
本田/user_data/AutofillStates/2025.6.13.84507/GL
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
GL
|
||||
|
||||
qeqertalik
|
||||
avannaata3
|
||||
kujalleqkujalleq kommunekujalleq municipality0
|
||||
qeqqataqeqqata kommuneqeqqata municipality9
|
||||
sermersooq kommune
|
||||
sermersooqsermersooq municipality
|
||||
11
本田/user_data/AutofillStates/2025.6.13.84507/GM
Normal file
11
本田/user_data/AutofillStates/2025.6.13.84507/GM
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
GM
|
||||
mansa konko
|
||||
janjanbureh
|
||||
banjul
|
||||
basse
|
||||
|
||||
kanifing
|
||||
brikama
|
||||
kerewan
|
||||
kuntaur
|
||||
10
本田/user_data/AutofillStates/2025.6.13.84507/GN
Normal file
10
本田/user_data/AutofillStates/2025.6.13.84507/GN
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
GN
|
||||
bokérégion de boké
|
||||
conakryrégion de conakry
|
||||
kindiarégion de kindia
|
||||
région de faranahfaranah
|
||||
kankanrégion de kankan
|
||||
labérégion de labé
|
||||
mamourégion de mamou'
|
||||
région de nzérékorénzérékoré
|
||||
5
本田/user_data/AutofillStates/2025.6.13.84507/GP
Normal file
5
本田/user_data/AutofillStates/2025.6.13.84507/GP
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
GP?
|
||||
arrondissement 9711arrondissement de basseterre
|
||||
basseterreR
|
||||
arrondissement 9712arrondissement de pointeàpitregrandeterre
|
||||
13
本田/user_data/AutofillStates/2025.6.13.84507/GQ
Normal file
13
本田/user_data/AutofillStates/2025.6.13.84507/GQ
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
GQ
|
||||
|
||||
annobónU
|
||||
bioko norte
|
||||
bioko nordbioko norte province
|
||||
biokonorteprovincia de bioko norteL
|
||||
bioko sur bioko sudbioko sur provincebiokosurprovincia de bioko surB
|
||||
|
||||
centro surcentro sur province centrosurprovincia centro sur:
|
||||
kientemkiéntemkiéntem provinceprovincia kiéntemD
|
||||
litorallitoral provinceprovince du littoralprovincia litoral1
|
||||
welenzasprovincia welenzaswelenzas province
|
||||
11
本田/user_data/AutofillStates/2025.6.13.84507/GR
Normal file
11
本田/user_data/AutofillStates/2025.6.13.84507/GR
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
GR<12>
|
||||
Nαποκεντρωμένη διοίκηση μακεδονίας θράκης4decentralized administration of macedonia and thracemakedonia thrakiμακεδονία θράκη<12>
|
||||
]αποκεντρωμένη διοίκηση θεσσαλίας στερεάς ελλάδας;decentralized administration of thessaly and central greecethessalia sterea ellada*θεσσαλία στερεά ελλάδα<12>
|
||||
.ήπειρος δυτική μακεδονία<decentralized administration of epirus and western macedoniaipeiros dytiki makedoniaipiros ditiki makedonia_αποκεντρωμένη διοίκηση ηπείρου δυτικής μακεδονίας+
|
||||
άγιο όρος agio orosmount athosz
|
||||
:αποκεντρωμένη διοίκηση αττικήςattiki&decentralized administration of atticaαττική<12>
|
||||
wαποκεντρωμένη διοίκηση πελοποννήσου, δυτικής ελλάδας και ιονίουJdecentralized administration of peloponnese, western greece and the ionian$peloponnisos dytiki ellada kai ionio#peloponnisos dytiki ellada ke ionioDπελοπόννησος δυτική ελλάδα και ιόνιο<12>
|
||||
αιγαίοaigaio*decentralized administration of the aegeanegeo:αποκεντρωμένη διοίκηση αιγαίουt
|
||||
8αποκεντρωμένη διοίκηση κρήτης%decentralized administration of cretekriti
|
||||
κρήτη
|
||||
29
本田/user_data/AutofillStates/2025.6.13.84507/GT
Normal file
29
本田/user_data/AutofillStates/2025.6.13.84507/GT
Normal file
@@ -0,0 +1,29 @@
|
||||
|
||||
GT'
|
||||
alta verapazalta verapaz department'
|
||||
baja verapazbaja verapaz department)
|
||||
|
||||
chimaltenangochimaltenango department#
|
||||
|
||||
chiquimulachiquimula department<
|
||||
departamento de escuintla escuintlaescuintla department!
|
||||
guatemalaguatemala department)
|
||||
|
||||
huehuetenangohuehuetenango department
|
||||
izabalizabal department
|
||||
jalapajalapa department
|
||||
jutiapajutiapa department
|
||||
peténpetén department%
|
||||
el progresoel progreso department)
|
||||
|
||||
el quichéquichéquiché department+
|
||||
quetzaltenangoquetzaltenango department#
|
||||
|
||||
retalhuleuretalhuleu department)
|
||||
|
||||
sacatepéquezsacatepéquez department#
|
||||
|
||||
san marcossan marcos department
|
||||
sololásololá department#
|
||||
|
||||
santa rosasanta rosa department+
|
||||
11
本田/user_data/AutofillStates/2025.6.13.84507/GW
Normal file
11
本田/user_data/AutofillStates/2025.6.13.84507/GW
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
GW
|
||||
bafatábafata
|
||||
bolama
|
||||
biombo
|
||||
bissau
|
||||
cacheu
|
||||
gabugabú
|
||||
oio
|
||||
quinara
|
||||
tombali
|
||||
12
本田/user_data/AutofillStates/2025.6.13.84507/GY
Normal file
12
本田/user_data/AutofillStates/2025.6.13.84507/GY
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
GY
|
||||
barimawaini
|
||||
cuyunimazaruni
|
||||
demeraramahaica
|
||||
east berbicecorentyne
|
||||
essequibo islandswest demerara
|
||||
mahaicaberbice
|
||||
pomeroonsupenaam
|
||||
potarosiparuni
|
||||
upper demeraraberbice
|
||||
upper takutuupper essequibo
|
||||
5
本田/user_data/AutofillStates/2025.6.13.84507/HK
Normal file
5
本田/user_data/AutofillStates/2025.6.13.84507/HK
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
HK
|
||||
new territories新界B
|
||||
hong konghong kong islandhongkong港島香港 香港島
|
||||
kowloon九龍
|
||||
22
本田/user_data/AutofillStates/2025.6.13.84507/HN
Normal file
22
本田/user_data/AutofillStates/2025.6.13.84507/HN
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
HN?
|
||||
|
||||
atlántidaatlántida departmentdepartamento de atlántida<
|
||||
cholutecacholuteca departmentdepartamento de choluteca3
|
||||
colóncolón departmentdepartamento de colón<
|
||||
comayaguacomayagua departmentdepartamento de comayagua3
|
||||
copáncopán departmentdepartamento de copán6
|
||||
cortéscortés departmentdepartamento de cortésB
|
||||
departamento de el paraísoel paraísoel paraíso departmentW
|
||||
"departamento de francisco morazánfrancisco morazánfrancisco morazán departmentK
|
||||
departamento de gracias a diosgracias a diosgracias a dios department?
|
||||
islas de la bahiabay islands departmentislas de la bahía<
|
||||
departamento de intibucá intibucáintibucá department6
|
||||
departamento de lempiralempiralempira department3
|
||||
departamento de la pazla pazla paz department?
|
||||
departamento de ocotepeque
|
||||
ocotepequeocotepeque department6
|
||||
departamento de olanchoolanchoolancho departmentK
|
||||
departamento de santa bárbarasanta bárbarasanta bárbara department0
|
||||
departamento de vallevallevalle department-
|
||||
departamento de yoroyoroyoro department
|
||||
23
本田/user_data/AutofillStates/2025.6.13.84507/HR
Normal file
23
本田/user_data/AutofillStates/2025.6.13.84507/HR
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
HR&
|
||||
zagrebačka županija
|
||||
zagreb county4
|
||||
krapinskozagorska županijakrapinazagorje county6
|
||||
sisačkomoslavačka županijasisakmoslavina county(
|
||||
karlovačka županijakarlovac county*
|
||||
varaždinska županijavaraždin county@
|
||||
"koprivničkokriževačka županijakoprivnicakriževci county:
|
||||
bjelovarskobilogorska županijabjelovarbilogora county:
|
||||
primorskogoranska županijaprimorjegorski kotar county*
|
||||
ličkosenjska županijalikasenj county=
|
||||
virovitičkopodravska županijaviroviticapodravina county6
|
||||
požeškoslavonska županijapožegaslavonia county0
|
||||
brodskoposavska županijabrodposavina county"
|
||||
zadarska županijazadar county3
|
||||
osječkobaranjska županijaosijekbaranja county1
|
||||
šibenskokninska županijašibenikknin county5
|
||||
vukovarskosrijemska županijavukovarsrijem county5
|
||||
splitskodalmatinska županijasplitdalmatia county#
|
||||
istarska županija
|
||||
istria county;
|
||||
dubrovačkoneretvanska županijadubrovnikneretva county*
|
||||
14
本田/user_data/AutofillStates/2025.6.13.84507/HT
Normal file
14
本田/user_data/AutofillStates/2025.6.13.84507/HT
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
HT.
|
||||
|
||||
artiboniteartibonite department latibonit5
|
||||
centrecentre departmentprovince du centresant-
|
||||
|
||||
grand'ansegrand'anse departmentgrandans
|
||||
nordnord departmentnò?
|
||||
département du nordestnordestnordest departmentnòdès
|
||||
nippesnipnippes departmentF
|
||||
département du nordouest nordouestnordouest departmentnòdwès8
|
||||
departement de l'ouestlwèsouestouest department+
|
||||
province du sudsidsudsud department;
|
||||
département du sudestsidèssudestsudest department
|
||||
26
本田/user_data/AutofillStates/2025.6.13.84507/HU
Normal file
26
本田/user_data/AutofillStates/2025.6.13.84507/HU
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
HU
|
||||
baranya
|
||||
baranya megye(
|
||||
békésbékés county
|
||||
békés megye
|
||||
bácskiskunbácskiskun megye
|
||||
|
||||
budapest2
|
||||
borsodabaújzemplénborsodabaújzemplén megye
|
||||
csongrádcsongrád megye
|
||||
fejérfejér megye#
|
||||
győrmosonsoprongyormosonsopron
|
||||
hajdúbiharhajdúbihar megye"
|
||||
hevesheves countyheves megye0
|
||||
jásznagykunszolnokjásznagykunszolnok megye,
|
||||
komáromesztergomkomáromesztergom megye!
|
||||
nógrád megyenógrád county
|
||||
pestpest county
|
||||
pest megye%
|
||||
somogy
|
||||
somogy countysomogy megye4
|
||||
szabolcsszatmárberegszabolcsszatmárbereg megye"
|
||||
tolnatolna countytolna megye
|
||||
vas
|
||||
vas county vas megye
|
||||
41
本田/user_data/AutofillStates/2025.6.13.84507/ID
Normal file
41
本田/user_data/AutofillStates/2025.6.13.84507/ID
Normal file
@@ -0,0 +1,41 @@
|
||||
|
||||
IDt
|
||||
acehdaerah istimewa acehnanggroe aceh darussalamnanggroe acéh darussalam!provinsi nanggroe aceh darussalam
|
||||
bali
|
||||
provinsi balir
|
||||
kepulauan bangka belitungbangka belitung islandskapuloan bangka belitung"provinsi kepulauan bangka belitung
|
||||
bengkuluprovinsi bengkulu
|
||||
bantenprovinsi banten
|
||||
gorontaloprovinsi gorontalo
|
||||
jambiprovinsi jambi8
|
||||
|
||||
jawa barat
|
||||
jawa kulonprovinsi jawa barat west java$
|
||||
|
||||
jawa timur east javajawa wétan<12>
|
||||
dki jakartadaerah khusus ibukota jakartajakartajakarta raya&provinsi daerah khusus ibukota jakartaprovinsi dki jakarta
|
||||
jawa tengahcentral javaP
|
||||
kalimantan baratkalimantan kulonprovinsi kalimantan baratwest kalimantanQ
|
||||
kalimantan timureast kalimantankalimantan wétanprovinsi kalimantan timur-
|
||||
kepulauan riau
|
||||
kapuloan riauriau islandsU
|
||||
kalimantan selatankalimantan kidulprovinsi kalimantan selatansouth kalimantanC
|
||||
kalimantan tengahcentral kalimantanprovinsi kalimantan tengah7
|
||||
kalimantan utarakalimantan kalérnorth kalimantan
|
||||
lampungprovinsi lampung
|
||||
maluku+
|
||||
maluku utara
|
||||
maluku kalérnorth maluku>
|
||||
nusa tenggara baratnusa tenggara kulonwest nusa tenggara?
|
||||
nusa tenggara timureast nusa tenggaranusa tenggara wétan
|
||||
papua&
|
||||
papua baratpapua kulon
|
||||
west papua
|
||||
|
||||
provinsi riauriauJ
|
||||
provinsi sulawesi utaranorth sulawesisulawesi kalérsulawesi utaraF
|
||||
provinsi sumatera baratsumatera barat
|
||||
sumatra kulonwest sumatraD
|
||||
provinsi sulawesi tenggarasouth east sulawesisulawesi tenggaraf
|
||||
provinsi sulawesi selatansouth sulawesisouth sulawesi provincesulawesi kidulsulawesi selatanH
|
||||
provinsi sulawesi baratsulawesi baratsulawesi kulon
|
||||
36
本田/user_data/AutofillStates/2025.6.13.84507/IE
Normal file
36
本田/user_data/AutofillStates/2025.6.13.84507/IE
Normal file
@@ -0,0 +1,36 @@
|
||||
|
||||
IE@
|
||||
clarecean clárco clarecontae an chláircounty clareD
|
||||
cavancn
|
||||
an cabhánco cavancontae an chabháincounty cavan;
|
||||
co corkcocontae chorcaícorcaighcorkcounty corkH
|
||||
carlowcwceatharlach co carlowcontae cheatharlach
|
||||
county carlowU
|
||||
co dublindbaile átha cliathcontae bhaile átha cliath
|
||||
county dublindublinO
|
||||
|
||||
co donegaldlcontae dhún na ngallcounty donegaldonegal
|
||||
dún na ngallD
|
||||
co galwaygcontae na gaillimhe
|
||||
county galwaygaillimhgalwayC
|
||||
|
||||
co kildare cill daracontae chill daracounty kildarekildareP
|
||||
co kilkennycill chainnighcontae chill chainnighcounty kilkennykilkenny?
|
||||
co kerrykyciarraícontae chiarraícounty kerrykerryN
|
||||
co longfordldan longfortcontae an longfoirtcounty longfordlongford4
|
||||
co louthlh
|
||||
contae lúcounty louthlouthlúH
|
||||
co limericklkcontae luimnighcounty limericklimerick luimneachD
|
||||
|
||||
co leitrimlmcontae liatromacounty leitrimleitrimliatroim2
|
||||
co laoisls
|
||||
contae laoisecounty laoislaois;
|
||||
co meathmhan mhí
|
||||
contae na mícounty meathmeathO
|
||||
co monaghanmncontae mhuineacháincounty monaghanmonaghanmuineachán<
|
||||
co mayomocontae mhaigh eocounty mayomaigh eomayoJ
|
||||
co offalyoycontae uíbh fhailí
|
||||
county offalyoffalyuibh fhailíP
|
||||
co roscommonrncontae ros comáincounty roscommonros comáin roscommon>
|
||||
co sligosocontae shligighcounty sligosligeachsligoY
|
||||
co tipperarytacontae thiobraid áranncounty tipperarytiobraid árann tipperaryS
|
||||
15
本田/user_data/AutofillStates/2025.6.13.84507/IL
Normal file
15
本田/user_data/AutofillStates/2025.6.13.84507/IL
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
IL<12>
|
||||
judea and samariajudea and samaria areajudea and samaria districtיהודה ושומרון"מחוז יהודה ושומרון%الضـّفـّة الغربيـّةيهودا والسامرة<12>
|
||||
hadaromsouthsouth districtsouthern district
|
||||
הדרוםמחוז הדרוםالمنطقة الجنوبية
|
||||
جنوبيمحوز هدرومn
|
||||
haifahaifa districtחיפהחפהמחוז חיפהحيفامحوز حيفامنطقة حيفاy
|
||||
jerusalemjerusalem districtyerushalayimירושליםמחוז ירושלים
|
||||
القدسمنطقة القدس<12>
|
||||
centercenter districtcentral districthamerkaz
|
||||
המרכזמחוז המרכזالمنطقة الوسطىمحوز هامركازهامركاز<12>
|
||||
tel avivtel aviv districtמחוז תל אביב
|
||||
תל אביב
|
||||
تل أبيبمحوز تل ابيبمنطقة تل أبيب<12>
|
||||
northnorth districtnorthern district
|
||||
29
本田/user_data/AutofillStates/2025.6.13.84507/IM
Normal file
29
本田/user_data/AutofillStates/2025.6.13.84507/IM
Normal file
@@ -0,0 +1,29 @@
|
||||
|
||||
IM
|
||||
|
||||
castletown
|
||||
bride
|
||||
lonan
|
||||
jurby
|
||||
rushen
|
||||
|
||||
maughold
|
||||
santon
|
||||
andreas
|
||||
german
|
||||
patrick
|
||||
|
||||
ballaugh
|
||||
arbory
|
||||
laxey
|
||||
malew
|
||||
michael
|
||||
peel
|
||||
lezayre
|
||||
marown
|
||||
port st mary
|
||||
ramsey
|
||||
douglas
|
||||
onchan
|
||||
port erin
|
||||
braddan
|
||||
42
本田/user_data/AutofillStates/2025.6.13.84507/IN
Normal file
42
本田/user_data/AutofillStates/2025.6.13.84507/IN
Normal file
@@ -0,0 +1,42 @@
|
||||
|
||||
IN<12>
|
||||
|
||||
andaman and nicobar islandsan+انڈمان اور نکوبار جزائر1انڈمان اینڈ نکوبار آئرلینڈ انڈمان تٔ نِکوبار'جزائر انڈمان و نکوبارKअंदमान ॲण्ड निकोबार आयलँड्सNअण्डमान और निकोबार द्वीपसमूहHअण्डमाननिकोबारद्वीपसमूहः`আন্দামান অ্যান্ড নিকোবর আইল্যান্ডসQআন্দামান এণ্ড নিকোবৰ আইলেণ্ডছHਅੰਡਮਾਨ ਐਂਡ ਨਿਕੋਬਾਰ ਆਇਲੈਂਡਸBਅੰਡੇਮਾਨ ਅਤੇ ਨਿਕੋਬਾਰ ਟਾਪੂQઅંદમાન ઍન્ડ નિકોબાર આયલેન્ડ્સTଆଣ୍ଡାମାନ ଆଣ୍ଡ ନିକୋବର ଆଇଲ୍ୟାଣ୍ଡZஅந்தமான் அண்ட் நிகோபார் ஐலண்ட்ஸ்Tఅందమాన్ అండ్ నికోబార్ ఐలాండ్స్Zಅಂಡಮಾನ್ ಅಂಡ್ ನಿಕೋಬಾರ್ ಐಲ್ಯಾಂಡ್ಸ್Tആൻഡമാൻ ആൻഡ് നിക്കോബാർ ഐലൻ്റ്സ്;
|
||||
andhra pradeshap%ఆంధ్ర ప్రదేశ్<12>
|
||||
arunachal pradesharاروناچل پردیش(अरुणाचल प्रदेश<अरुणाचलप्रदेशराज्यम्(অরুণাচল প্রদেশ(অৰুণাচল প্ৰদেশ(અરુણાચલ પ્રદેશ(ଅରୁଣାଚଳ ପ୍ରଦେଶ4அருணாசலப் பிரதேசம்1அருணாச்சல பிரதேஷ்.అరుణాచల్ ప్రదేశ్(ಅರುಣಾಚಲ ಪ್ರದೇಶ+അരുണാചൽ പ്രദേശ്
|
||||
assamas অসম
|
||||
biharbrबिहार/
|
||||
chhattisgarhcgछत्तीसगढ़<12>
|
||||
|
||||
chandigarhchچنڈی گڑھचंडीगढचंडीगढ़চণ্ডীগড়ਚੰਡੀਗੜ੍ਹચંડીગઢଚଣ୍ଡୀଗଡ଼சண்டிகர்చండీగఢ్ಚಂಡೀಗಢചണ്ഡീഗഢ്<12>
|
||||
(dadra and nagar haveli and daman and diudh3دادرا و نگر حویلی و دمن و دیوDددراندرا نگر حویلی اینڈ دامن اینڈ دیوRदादरा और नगर हवेली और दमन और दीवdदादरा ॲण्ड नगर हवेली ॲण्ड दमन ॲण्ड दीव<1A>দাদ্রা অ্যান্ড নগর হাভেলি অ্যান্ড দমন অ্যান্ড দিউgদাদৰা এণ্ড নগৰ হাভেলী এণ্ড দমন এণ্ড দিউ[ਦਾਦਰਾ ਅਤੇ ਨਗਰ ਹਵੇਲੀ ਅਤੇ ਦਮਨ ਅਤੇ ਦੀਉ[ਦਾਦਰਾ ਐਂਡ ਨਗਰ ਹਵੇਲੀ ਐਂਡ ਦਮਨ ਐਂਡ ਦੀਵdદાદરા ઍન્ડ નગર હવેલી ઍન્ડ દમણ ઍન્ડ દીવjଦାଦ୍ରା ଆଣ୍ଡ ନଗର ହବେଳୀ ଆଣ୍ଡ ଡାମନ ଆଣ୍ଡ ଡିଉfதாத்ரா & நகர் ஹவேலி மற்றும் தாமன் & தியூvதாத்ரா அண்ட் நகர் ஹவேலி அண்ட் தமன் அண்ட் தீவvదాద్రా అండ్ నగర్ హవేలీ అండ్ డామన్ అండ్ డయ్యూjದಾದ್ರ ಅಂಡ್ ನಗರ ಹವೇಲಿ ಅಂಡ್ ದಮನ್ ಅಂಡ್ ದಿಯುmദാദ്രാ ആൻഡ് നഗർ ഹവേലി ആൻഡ് ദാമൻ ആൻഡ് ദീയു
|
||||
delhidlदिल्ली
|
||||
goaga!
|
||||
gujaratgjગુજરાત=
|
||||
himachal pradeshhp%हिमाचल प्रदेश$
|
||||
haryanahrहरियाणा#
|
||||
jharkhandjhझारखंड
|
||||
jammu and kashmirjk&
|
||||
karnatakakaಕರ್ನಾಟಕ
|
||||
keralaklകേരള<12>
|
||||
ladakhlaلداخलद्दाखলাডাখলাদাখਲੱਦਾਖલદ્દાખଲଦାଖலடாக்లద్దాక్ಲಡಾಖ್ലഡാഖ്1
|
||||
lakshadweepldലക്ഷദ്വീപ്1
|
||||
maharashtramhमहाराष्ट्र<12>
|
||||
meghalayamlمیگھالیہناگالینڈमेघालय'मेघालयराज्यम्মেঘালয়ਮੇਘਾਲਿਆમેઘાલયମେଘାଳୟமேகாலயாమేఘాలయಮೇಘಾಲಯമേഘാലയ
|
||||
manipurmn5
|
||||
madhya pradeshmpमध्य प्रदेश
|
||||
mizorammz<12>
|
||||
nagalandnlمیگھالیہناگالینڈनागालैंड0नागालैण्डराज्यम्নাগালেণ্ড!নাগাল্যান্ডਨਾਗਾਲੈਂਡનાગાલૈંડନାଗାଲାଣ୍ଡநாகாலாந்துనాగాలాండ్!ನಾಗಾಲ್ಯಾಂಡ್നാഗാലാൻഡ്(
|
||||
odishaodorissaଓଡ଼ିଶା
|
||||
punjabpbਪੰਜਾਬ0
|
||||
|
||||
puducherrypyபுதுச்சேரி)
|
||||
rajasthanrjराजस्थान#
|
||||
sikkimskसिक्किम&
|
||||
telanganatsతెలంగాణ.
|
||||
|
||||
tamil nadutnதமிழ் நாடு'
|
||||
tripuratrত্রিপুরা7
|
||||
|
||||
uttar pradeshup"उत्तर प्रदेश.
|
||||
uttarakhandukउत्तराखंडb
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user