From 65e04acb2fc9f70936a8dfd680b3e41ae761319e Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Thu, 4 Apr 2019 08:32:03 -0700 Subject: [PATCH 01/50] Flag features that mention Google in the "source" tag (close #6135) --- data/core.yaml | 9 ++++++ dist/locales/en.json | 13 +++++++++ modules/ui/entity_issues.js | 2 +- modules/validations/incompatible_source.js | 33 ++++++++++++++++++++++ modules/validations/index.js | 1 + 5 files changed, 57 insertions(+), 1 deletion(-) create mode 100644 modules/validations/incompatible_source.js diff --git a/data/core.yaml b/data/core.yaml index 027b8a8c6..5e98b9c13 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -1294,6 +1294,13 @@ en: title: Generic Names message: '{feature} has the generic name "{name}"' tip: "Names should be the actual, on-the-ground names of features." + incompatible_source: + title: Incompatible Data Sources + google: + feature: + message: '{feature} lists Google as a data source' + tip: "Google products are proprietary and must not be used as references." + tip: "Source data must be licensed in a manner compatible with OpenStreetMap." many_deletions: title: Many Deletions points-lines-areas: @@ -1362,6 +1369,8 @@ en: annotation: Removed a generic name. remove_private_info: annotation: Removed private information. + remove_proprietary_data: + title: Remove any proprietary data remove_tag: title: Remove the tag annotation: Removed tag. diff --git a/dist/locales/en.json b/dist/locales/en.json index 1effc790d..62b0a0af5 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -1588,6 +1588,16 @@ "message": "{feature} has the generic name \"{name}\"", "tip": "Names should be the actual, on-the-ground names of features." }, + "incompatible_source": { + "title": "Incompatible Data Sources", + "google": { + "feature": { + "message": "{feature} lists Google as a data source" + }, + "tip": "Google products are proprietary and must not be used as references." + }, + "tip": "Source data must be licensed in a manner compatible with OpenStreetMap." + }, "many_deletions": { "title": "Many Deletions", "points-lines-areas": { @@ -1682,6 +1692,9 @@ "remove_private_info": { "annotation": "Removed private information." }, + "remove_proprietary_data": { + "title": "Remove any proprietary data" + }, "remove_tag": { "title": "Remove the tag", "annotation": "Removed tag." diff --git a/modules/ui/entity_issues.js b/modules/ui/entity_issues.js index ef53ea2e9..b20a84e0d 100644 --- a/modules/ui/entity_issues.js +++ b/modules/ui/entity_issues.js @@ -131,7 +131,7 @@ export function uiEntityIssues(context) { var fixLists = items.selectAll('.issue-fix-list'); var fixes = fixLists.selectAll('.issue-fix-item') - .data(function(d) { return d.fixes; }) + .data(function(d) { return d.fixes ? d.fixes : []; }) .enter() .append('li') .attr('class', function(d) { diff --git a/modules/validations/incompatible_source.js b/modules/validations/incompatible_source.js new file mode 100644 index 000000000..612ac4d5c --- /dev/null +++ b/modules/validations/incompatible_source.js @@ -0,0 +1,33 @@ +import { t } from '../util/locale'; +import { utilDisplayLabel } from '../util'; +import { validationIssue, validationIssueFix } from '../core/validator'; + + +export function validationIncompatibleSource() { + var type = 'incompatible_source'; + + var validation = function(entity, context) { + + if (entity.tags && entity.tags.source && entity.tags.source.toLowerCase().match(/google/)) { + return [new validationIssue({ + type: type, + severity: 'warning', + message: t('issues.incompatible_source.google.feature.message', { + feature: utilDisplayLabel(entity, context), + }), + tooltip: t('issues.incompatible_source.google.tip'), + entities: [entity], + fixes: [ + new validationIssueFix({ + title: t('issues.fix.remove_proprietary_data.title') + }) + ] + })]; + } + return []; + }; + + validation.type = type; + + return validation; +} diff --git a/modules/validations/index.js b/modules/validations/index.js index b38ff0d97..3b462ebeb 100644 --- a/modules/validations/index.js +++ b/modules/validations/index.js @@ -2,6 +2,7 @@ export { validationAlmostJunction } from './almost_junction'; export { validationCrossingWays } from './crossing_ways'; export { validationDisconnectedWay } from './disconnected_way'; export { validationGenericName } from './generic_name'; +export { validationIncompatibleSource } from './incompatible_source'; export { validationManyDeletions } from './many_deletions'; export { validationMaprules } from './maprules'; export { validationMissingRole } from './missing_role'; From 35c7cbd92bd24d21fffcf12494b62f0d8526a2f2 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Thu, 4 Apr 2019 17:34:20 -0700 Subject: [PATCH 02/50] Ensure that undo/redo buttons look disabled when the map is not editable (close #6105) --- modules/ui/tools/undo_redo.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/ui/tools/undo_redo.js b/modules/ui/tools/undo_redo.js index 3e61b8767..51fdcd293 100644 --- a/modules/ui/tools/undo_redo.js +++ b/modules/ui/tools/undo_redo.js @@ -90,7 +90,9 @@ export function uiToolUndoRedo(context) { function update() { buttons .property('disabled', !editable()) - .classed('disabled', function(d) { return !d.annotation(); }) + .classed('disabled', function(d) { + return !editable() || !d.annotation(); + }) .each(function() { var selection = d3_select(this); if (selection.property('tooltipVisible')) { From a054db647213bdcbbc876a36aaee75d01a8e3a4b Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Thu, 4 Apr 2019 17:56:01 -0700 Subject: [PATCH 03/50] Fix issue where hover-highlighting wouldn't disappear upon removing a relation from a member or a member from a relation (close #5612) --- modules/ui/raw_member_editor.js | 6 ++++-- modules/ui/raw_membership_editor.js | 20 ++++++++++---------- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/modules/ui/raw_member_editor.js b/modules/ui/raw_member_editor.js index 69474753f..52dc9f4aa 100644 --- a/modules/ui/raw_member_editor.js +++ b/modules/ui/raw_member_editor.js @@ -69,6 +69,10 @@ export function uiRawMemberEditor(context) { function deleteMember(d) { + + // remove the hover-highlight styling + utilHighlightEntities([d.id], false, context); + context.perform( actionDeleteMember(d.relation.id, d.index), t('operations.delete_member.annotation') @@ -77,8 +81,6 @@ export function uiRawMemberEditor(context) { if (!context.hasEntity(d.relation.id)) { context.enter(modeBrowse(context)); } - - utilHighlightEntities([d.id], false, context); } diff --git a/modules/ui/raw_membership_editor.js b/modules/ui/raw_membership_editor.js index 971337b26..d3b36f3f7 100644 --- a/modules/ui/raw_membership_editor.js +++ b/modules/ui/raw_membership_editor.js @@ -87,6 +87,9 @@ export function uiRawMembershipEditor(context) { this.blur(); // avoid keeping focus on the button if (d === 0) return; // called on newrow (shoudn't happen) + // remove the hover-highlight styling + utilHighlightEntities([d.relation.id], false, context); + context.perform( actionDeleteMember(d.relation.id, d.index), t('operations.delete_member.annotation') @@ -184,16 +187,13 @@ export function uiRawMembershipEditor(context) { .append('li') .attr('class', 'member-row member-row-normal form-field'); - itemsEnter.each(function(d){ - // highlight the relation in the map while hovering on the list item - d3_select(this) - .on('mouseover', function() { - utilHighlightEntities([d.relation.id], true, context); - }) - .on('mouseout', function() { - utilHighlightEntities([d.relation.id], false, context); - }); - }); + // highlight the relation in the map while hovering on the list item + itemsEnter.on('mouseover', function(d) { + utilHighlightEntities([d.relation.id], true, context); + }) + .on('mouseout', function(d) { + utilHighlightEntities([d.relation.id], false, context); + }); var labelEnter = itemsEnter .append('label') From 550a4df435ebcea1773ddcb9fd44d037a77c2852 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Thu, 4 Apr 2019 18:24:05 -0700 Subject: [PATCH 04/50] Prevent stale results when first searching presets --- modules/ui/preset_list.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/modules/ui/preset_list.js b/modules/ui/preset_list.js index 65cb01f2a..e83a0df30 100644 --- a/modules/ui/preset_list.js +++ b/modules/ui/preset_list.js @@ -105,16 +105,21 @@ export function uiPresetList(context) { if (geocoder && entity) { var center = entity.extent(context.graph()).center(); geocoder.countryCode(center, function countryCallback(err, countryCode) { + // get the input value again because it may have changed + var currentValue = search.property('value'); + + if (!currentValue.length) return; + var results; if (!err && countryCode) { countryCode = countryCode.toLowerCase(); - results = presets.search(value, geometry, countryCode); + results = presets.search(currentValue, geometry, countryCode); } else { - results = presets.search(value, geometry); + results = presets.search(currentValue, geometry); } message.text(t('inspector.results', { n: results.collection.length, - search: value + search: currentValue })); list.call(drawList, results); }); From ae8f2c2ad3594a1caf2340553cf66179755c2d3c Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Fri, 5 Apr 2019 08:24:30 -0700 Subject: [PATCH 05/50] Add Diplomatic Office, Embassy, Consulate, and Liaison Office presets (close #6144) Deprecate amenity=embassy --- data/deprecated.json | 4 ++ data/presets.yaml | 35 +++++++++++++++- data/presets/fields.json | 6 +++ data/presets/fields/consulate.json | 5 +++ data/presets/fields/diplomatic.json | 5 +++ data/presets/fields/diplomatic/services.json | 5 +++ data/presets/fields/embassy.json | 5 +++ data/presets/fields/liaison.json | 5 +++ data/presets/fields/target.json | 5 +++ data/presets/presets.json | 6 ++- .../amenity/{embassy.json => _embassy.json} | 1 + data/presets/presets/office/diplomatic.json | 20 +++++++++ .../presets/office/diplomatic/consulate.json | 22 ++++++++++ .../presets/office/diplomatic/embassy.json | 22 ++++++++++ .../presets/office/diplomatic/liaison.json | 22 ++++++++++ data/taginfo.json | 12 +++++- dist/locales/en.json | 42 +++++++++++++++++-- 17 files changed, 215 insertions(+), 7 deletions(-) create mode 100644 data/presets/fields/consulate.json create mode 100644 data/presets/fields/diplomatic.json create mode 100644 data/presets/fields/diplomatic/services.json create mode 100644 data/presets/fields/embassy.json create mode 100644 data/presets/fields/liaison.json create mode 100644 data/presets/fields/target.json rename data/presets/presets/amenity/{embassy.json => _embassy.json} (93%) create mode 100644 data/presets/presets/office/diplomatic.json create mode 100644 data/presets/presets/office/diplomatic/consulate.json create mode 100644 data/presets/presets/office/diplomatic/embassy.json create mode 100644 data/presets/presets/office/diplomatic/liaison.json diff --git a/data/deprecated.json b/data/deprecated.json index 39173c30a..bf1c0162d 100644 --- a/data/deprecated.json +++ b/data/deprecated.json @@ -20,6 +20,10 @@ "old": {"amenity": "community_center"}, "replace": {"amenity": "community_centre"} }, + { + "old": {"amenity": "embassy"}, + "replace": {"office": "diplomatic"} + }, { "old": {"amenity": "ev_charging"}, "replace": {"amenity": "charging_station"} diff --git a/data/presets.yaml b/data/presets.yaml index 0cd38f056..1e4857afd 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -358,6 +358,9 @@ en: construction: # construction=* label: Type + consulate: + # consulate=* + label: Type contact/webcam: # 'contact:webcam=*' label: Webcam URL @@ -510,6 +513,12 @@ en: diet_multi: # 'diet:=*' label: Diet Types + diplomatic: + # diplomatic=* + label: Type + diplomatic/services: + # 'diplomatic:services:=*' + label: Services direction: # direction=* label: Direction (Degrees Clockwise) @@ -632,6 +641,9 @@ en: label: Type # embankment field placeholder placeholder: Default + embassy: + # embassy=* + label: Type emergency: # emergency=* label: Emergency @@ -1003,6 +1015,9 @@ en: label: Levels # levels field placeholder placeholder: '2, 4, 6...' + liaison: + # liaison=* + label: Type lit: # lit=* label: Lit @@ -1938,6 +1953,9 @@ en: 'yes': 'Yes' # takeaway field placeholder placeholder: 'Yes, No, Takeaway Only...' + target: + # target=* + label: Target tidal: # tidal=* label: Tidal @@ -2517,7 +2535,6 @@ en: amenity/embassy: # amenity=embassy name: Embassy - terms: '' amenity/fast_food: # amenity=fast_food name: Fast Food @@ -5439,6 +5456,22 @@ en: name: Coworking Space # 'terms: coworking,office' terms: '' + office/diplomatic: + # office=diplomatic + name: Diplomatic Office + terms: '' + office/diplomatic/consulate: + # 'office=diplomatic, diplomatic=consulate' + name: Consulate + terms: '' + office/diplomatic/embassy: + # 'office=diplomatic, diplomatic=embassy' + name: Embassy + terms: '' + office/diplomatic/liaison: + # 'office=diplomatic, diplomatic=liaison' + name: Liaison Office + terms: '' office/educational_institution: # office=educational_institution name: Educational Institution diff --git a/data/presets/fields.json b/data/presets/fields.json index 2421fe36a..5ee4c0427 100644 --- a/data/presets/fields.json +++ b/data/presets/fields.json @@ -64,6 +64,7 @@ "comment": {"key": "comment", "type": "textarea", "label": "Changeset Comment", "placeholder": "Brief description of your contributions (required)"}, "communication_multi": {"key": "communication:", "type": "multiCombo", "label": "Communication Types"}, "construction": {"key": "construction", "type": "combo", "label": "Type"}, + "consulate": {"key": "consulate", "type": "combo", "label": "Type"}, "contact/webcam": {"key": "contact:webcam", "type": "url", "icon": "website", "label": "Webcam URL", "placeholder": "http://example.com/"}, "content": {"key": "content", "type": "combo", "label": "Content", "options": ["silage", "water", "oil", "fuel", "slurry", "gas", "manure", "sewage"]}, "conveying": {"key": "conveying", "type": "typeCombo", "label": "Movement Direction", "strings": {"options": {"forward": "Forward", "backward": "Backward", "reversible": "Reversible"}}}, @@ -93,6 +94,8 @@ "devices": {"key": "devices", "type": "number", "minValue": 0, "label": "Devices", "placeholder": "1, 2, 3..."}, "diaper": {"key": "diaper", "type": "combo", "label": "Diaper Changing Available", "options": ["yes", "no", "room", "1", "2", "3", "4", "5"]}, "diet_multi": {"key": "diet:", "type": "multiCombo", "label": "Diet Types"}, + "diplomatic": {"key": "diplomatic", "type": "combo", "label": "Type"}, + "diplomatic/services": {"key": "diplomatic:services:", "type": "multiCombo", "label": "Services"}, "direction_cardinal": {"key": "direction", "type": "combo", "label": "Direction", "strings": {"options": {"N": "North", "E": "East", "S": "South", "W": "West", "NE": "Northeast", "SE": "Southeast", "SW": "Southwest", "NW": "Northwest", "NNE": "North-northeast", "ENE": "East-northeast", "ESE": "East-southeast", "SSE": "South-southeast", "SSW": "South-southwest", "WSW": "West-southwest", "WNW": "West-northwest", "NNW": "North-northwest"}}}, "direction_clock": {"key": "direction", "type": "combo", "label": "Direction", "strings": {"options": {"clockwise": "Clockwise", "anticlockwise": "Counterclockwise"}}}, "direction_vertex": {"key": "direction", "type": "combo", "label": "Direction", "strings": {"options": {"forward": "Forward", "backward": "Backward", "both": "Both / All"}}}, @@ -110,6 +113,7 @@ "elevation": {"key": "ele", "type": "number", "icon": "elevation", "universal": true, "label": "Elevation"}, "email": {"key": "email", "type": "email", "placeholder": "example@example.com", "label": "Email"}, "embankment": {"key": "embankment", "type": "typeCombo", "label": "Type", "placeholder": "Default"}, + "embassy": {"key": "embassy", "type": "combo", "label": "Type"}, "emergency": {"key": "emergency", "type": "check", "label": "Emergency"}, "enforcement": {"key": "enforcement", "type": "combo", "label": "Type"}, "entrance": {"key": "entrance", "type": "typeCombo", "label": "Type"}, @@ -192,6 +196,7 @@ "length": {"key": "length", "type": "number", "minValue": 0, "label": "Length (Meters)"}, "level": {"key": "level", "type": "combo", "label": "Level", "universal": true}, "levels": {"key": "building:levels", "type": "number", "minValue": 0, "label": "Levels", "placeholder": "2, 4, 6..."}, + "liaison": {"key": "liaison", "type": "combo", "label": "Type"}, "lit": {"key": "lit", "type": "check", "label": "Lit"}, "location_pool": {"key": "location", "type": "typeCombo", "label": "Location", "strings": {"options": {"outdoor": "Outdoor", "indoor": "Indoor", "roof": "Rooftop"}}}, "location": {"key": "location", "type": "combo", "label": "Location"}, @@ -343,6 +348,7 @@ "switch": {"key": "switch", "type": "combo", "label": "Type", "strings": {"options": {"mechanical": "Mechanical", "circuit_breaker": "Circuit Breaker", "disconnector": "Disconnector", "earthing": "Earthing"}}}, "tactile_paving": {"key": "tactile_paving", "type": "check", "label": "Tactile Paving"}, "takeaway": {"key": "takeaway", "type": "combo", "label": "Takeaway", "placeholder": "Yes, No, Takeaway Only...", "strings": {"options": {"yes": "Yes", "no": "No", "only": "Takeaway Only"}}}, + "target": {"key": "target", "type": "combo", "label": "Target"}, "tidal": {"key": "tidal", "type": "check", "label": "Tidal"}, "to": {"key": "to", "type": "text", "label": "To"}, "toilets/disposal": {"key": "toilets:disposal", "type": "combo", "label": "Disposal", "strings": {"options": {"flush": "Flush", "pitlatrine": "Pit/Latrine", "chemical": "Chemical", "bucket": "Bucket"}}}, diff --git a/data/presets/fields/consulate.json b/data/presets/fields/consulate.json new file mode 100644 index 000000000..1610523dd --- /dev/null +++ b/data/presets/fields/consulate.json @@ -0,0 +1,5 @@ +{ + "key": "consulate", + "type": "combo", + "label": "Type" +} diff --git a/data/presets/fields/diplomatic.json b/data/presets/fields/diplomatic.json new file mode 100644 index 000000000..e83a243bc --- /dev/null +++ b/data/presets/fields/diplomatic.json @@ -0,0 +1,5 @@ +{ + "key": "diplomatic", + "type": "combo", + "label": "Type" +} diff --git a/data/presets/fields/diplomatic/services.json b/data/presets/fields/diplomatic/services.json new file mode 100644 index 000000000..9ca7161d1 --- /dev/null +++ b/data/presets/fields/diplomatic/services.json @@ -0,0 +1,5 @@ +{ + "key": "diplomatic:services:", + "type": "multiCombo", + "label": "Services" +} diff --git a/data/presets/fields/embassy.json b/data/presets/fields/embassy.json new file mode 100644 index 000000000..3fa14fa97 --- /dev/null +++ b/data/presets/fields/embassy.json @@ -0,0 +1,5 @@ +{ + "key": "embassy", + "type": "combo", + "label": "Type" +} diff --git a/data/presets/fields/liaison.json b/data/presets/fields/liaison.json new file mode 100644 index 000000000..b9c0ea3ab --- /dev/null +++ b/data/presets/fields/liaison.json @@ -0,0 +1,5 @@ +{ + "key": "liaison", + "type": "combo", + "label": "Type" +} diff --git a/data/presets/fields/target.json b/data/presets/fields/target.json new file mode 100644 index 000000000..a3975ea62 --- /dev/null +++ b/data/presets/fields/target.json @@ -0,0 +1,5 @@ +{ + "key": "target", + "type": "combo", + "label": "Target" +} diff --git a/data/presets/presets.json b/data/presets/presets.json index c57cd025b..163b4528a 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -45,6 +45,7 @@ "allotments/plot": {"geometry": ["area"], "fields": ["name", "ref"], "tags": {"allotments": "plot"}, "reference": {"key": "allotments", "value": "plot"}, "name": "Community Garden Plot"}, "amenity/bus_station": {"icon": "maki-bus", "fields": ["name", "building_area", "operator", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"amenity": "bus_station"}, "name": "Bus Station / Terminal", "searchable": false, "replacement": "public_transport/station_bus"}, "amenity/coworking_space": {"icon": "maki-commercial", "fields": ["name", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"amenity": "coworking_space"}, "name": "Coworking Space", "searchable": false}, + "amenity/embassy": {"icon": "maki-embassy", "fields": ["name", "country", "address", "building_area"], "moreFields": ["website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "embassy"}, "searchable": false, "name": "Embassy"}, "amenity/ferry_terminal": {"icon": "maki-ferry", "fields": ["name", "network", "operator", "address", "building_area"], "geometry": ["point", "vertex", "area"], "terms": [], "tags": {"amenity": "ferry_terminal"}, "matchScore": 0.95, "name": "Ferry Station / Terminal", "searchable": false, "replacement": "public_transport/station_ferry"}, "amenity/nursing_home": {"icon": "maki-wheelchair", "fields": ["name", "operator", "address", "building_area", "social_facility", "social_facility_for", "opening_hours", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "nursing_home"}, "reference": {"key": "social_facility", "value": "nursing_home"}, "name": "Nursing Home", "searchable": false}, "amenity/recycling": {"icon": "maki-recycling", "fields": ["recycling_type", "recycling_accepts", "collection_times"], "geometry": ["point", "area"], "terms": ["bin", "can", "bottle", "glass", "garbage", "rubbish", "scrap", "trash"], "tags": {"amenity": "recycling"}, "name": "Recycling", "searchable": false}, @@ -93,7 +94,6 @@ "amenity/dojo": {"icon": "maki-pitch", "fields": ["name", "sport", "address", "building_area", "opening_hours"], "moreFields": ["payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["martial arts", "dojang"], "tags": {"amenity": "dojo"}, "name": "Dojo / Martial Arts Academy"}, "amenity/drinking_water": {"icon": "maki-drinking-water", "fields": ["operator", "access_simple", "fee", "wheelchair"], "moreFields": ["lit", "covered"], "geometry": ["point"], "tags": {"amenity": "drinking_water"}, "terms": ["potable water source", "water fountain", "drinking fountain", "bubbler", "water tap"], "name": "Drinking Water"}, "amenity/driving_school": {"icon": "maki-car", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "moreFields": ["payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "driving_school"}, "name": "Driving School"}, - "amenity/embassy": {"icon": "maki-embassy", "fields": ["name", "country", "address", "building_area"], "moreFields": ["website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "embassy"}, "name": "Embassy"}, "amenity/fast_food": {"icon": "maki-fast-food", "fields": ["name", "cuisine", "operator", "address", "building_area", "drive_through"], "moreFields": ["air_conditioning", "opening_hours", "diet_multi", "takeaway", "delivery", "smoking", "capacity", "outdoor_seating", "internet_access", "internet_access/fee", "internet_access/ssid", "payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "fast_food"}, "terms": ["restaurant", "takeaway"], "name": "Fast Food"}, "amenity/fast_food/burger": {"icon": "maki-fast-food", "geometry": ["point", "area"], "terms": ["breakfast", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "fast_food", "cuisine": "burger"}, "reference": {"key": "cuisine", "value": "burger"}, "name": "Burger Fast Food"}, "amenity/fast_food/chicken": {"icon": "fas-drumstick-bite", "geometry": ["point", "area"], "terms": ["breakfast", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "fast_food", "cuisine": "chicken"}, "reference": {"key": "cuisine", "value": "chicken"}, "name": "Chicken Fast Food"}, @@ -722,6 +722,10 @@ "office/charity": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "charity"}, "terms": ["charitable organization"], "name": "Charity Office"}, "office/company": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "company"}, "terms": [], "name": "Corporate Office"}, "office/coworking": {"icon": "maki-suitcase", "fields": ["{office}", "internet_access"], "moreFields": ["internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "terms": ["coworking", "office"], "tags": {"office": "coworking"}, "reference": {"key": "amenity", "value": "coworking_space"}, "name": "Coworking Space"}, + "office/diplomatic": {"icon": "maki-embassy", "fields": ["name", "diplomatic", "country", "target", "diplomatic/services", "{office}"], "geometry": ["point", "area"], "tags": {"office": "diplomatic"}, "terms": [], "name": "Diplomatic Office"}, + "office/diplomatic/consulate": {"icon": "maki-embassy", "fields": ["name", "consulate", "{office/diplomatic}"], "geometry": ["point", "area"], "tags": {"office": "diplomatic", "diplomatic": "consulate"}, "reference": {"key": "diplomatic", "value": "consulate"}, "terms": [], "name": "Consulate"}, + "office/diplomatic/embassy": {"icon": "maki-embassy", "fields": ["name", "embassy", "{office/diplomatic}"], "geometry": ["point", "area"], "tags": {"office": "diplomatic", "diplomatic": "embassy"}, "reference": {"key": "diplomatic", "value": "embassy"}, "terms": [], "name": "Embassy"}, + "office/diplomatic/liaison": {"icon": "maki-embassy", "fields": ["name", "liaison", "{office/diplomatic}"], "geometry": ["point", "area"], "tags": {"office": "diplomatic", "diplomatic": "liaison"}, "reference": {"key": "diplomatic", "value": "liaison"}, "terms": [], "name": "Liaison Office"}, "office/educational_institution": {"icon": "maki-school", "geometry": ["point", "area"], "tags": {"office": "educational_institution"}, "terms": [], "name": "Educational Institution"}, "office/employment_agency": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "employment_agency"}, "terms": ["job"], "name": "Employment Agency"}, "office/energy_supplier": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "energy_supplier"}, "terms": ["electricity", "energy company", "energy utility", "gas utility"], "name": "Energy Supplier Office"}, diff --git a/data/presets/presets/amenity/embassy.json b/data/presets/presets/amenity/_embassy.json similarity index 93% rename from data/presets/presets/amenity/embassy.json rename to data/presets/presets/amenity/_embassy.json index 50da84ef2..74bdfa3f8 100644 --- a/data/presets/presets/amenity/embassy.json +++ b/data/presets/presets/amenity/_embassy.json @@ -20,5 +20,6 @@ "tags": { "amenity": "embassy" }, + "searchable": false, "name": "Embassy" } diff --git a/data/presets/presets/office/diplomatic.json b/data/presets/presets/office/diplomatic.json new file mode 100644 index 000000000..2f57b0ba1 --- /dev/null +++ b/data/presets/presets/office/diplomatic.json @@ -0,0 +1,20 @@ +{ + "icon": "maki-embassy", + "fields": [ + "name", + "diplomatic", + "country", + "target", + "diplomatic/services", + "{office}" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "office": "diplomatic" + }, + "terms": [], + "name": "Diplomatic Office" +} diff --git a/data/presets/presets/office/diplomatic/consulate.json b/data/presets/presets/office/diplomatic/consulate.json new file mode 100644 index 000000000..9038d5206 --- /dev/null +++ b/data/presets/presets/office/diplomatic/consulate.json @@ -0,0 +1,22 @@ +{ + "icon": "maki-embassy", + "fields": [ + "name", + "consulate", + "{office/diplomatic}" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "office": "diplomatic", + "diplomatic": "consulate" + }, + "reference": { + "key": "diplomatic", + "value": "consulate" + }, + "terms": [], + "name": "Consulate" +} diff --git a/data/presets/presets/office/diplomatic/embassy.json b/data/presets/presets/office/diplomatic/embassy.json new file mode 100644 index 000000000..d505c988f --- /dev/null +++ b/data/presets/presets/office/diplomatic/embassy.json @@ -0,0 +1,22 @@ +{ + "icon": "maki-embassy", + "fields": [ + "name", + "embassy", + "{office/diplomatic}" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "office": "diplomatic", + "diplomatic": "embassy" + }, + "reference": { + "key": "diplomatic", + "value": "embassy" + }, + "terms": [], + "name": "Embassy" +} diff --git a/data/presets/presets/office/diplomatic/liaison.json b/data/presets/presets/office/diplomatic/liaison.json new file mode 100644 index 000000000..77bea98f0 --- /dev/null +++ b/data/presets/presets/office/diplomatic/liaison.json @@ -0,0 +1,22 @@ +{ + "icon": "maki-embassy", + "fields": [ + "name", + "liaison", + "{office/diplomatic}" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "office": "diplomatic", + "diplomatic": "liaison" + }, + "reference": { + "key": "diplomatic", + "value": "liaison" + }, + "terms": [], + "name": "Liaison Office" +} diff --git a/data/taginfo.json b/data/taginfo.json index 4799f55ef..c65e8307b 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -48,6 +48,7 @@ {"key": "allotments", "value": "plot", "description": "🄿 Community Garden Plot", "object_types": ["area"]}, {"key": "amenity", "value": "bus_station", "description": "🄿 Bus Station / Terminal (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bus-15.svg?sanitize=true"}, {"key": "amenity", "value": "coworking_space", "description": "🄿 Coworking Space (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/commercial-15.svg?sanitize=true"}, + {"key": "amenity", "value": "embassy", "description": "🄿 Embassy (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/embassy-15.svg?sanitize=true"}, {"key": "amenity", "value": "ferry_terminal", "description": "🄿 Ferry Station / Terminal (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/ferry-15.svg?sanitize=true"}, {"key": "amenity", "value": "nursing_home", "description": "🄿 Nursing Home (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/wheelchair-15.svg?sanitize=true"}, {"key": "amenity", "value": "recycling", "description": "🄿 Recycling (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/recycling-15.svg?sanitize=true"}, @@ -95,7 +96,6 @@ {"key": "amenity", "value": "dojo", "description": "🄿 Dojo / Martial Arts Academy", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"}, {"key": "amenity", "value": "drinking_water", "description": "🄿 Drinking Water", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/drinking-water-15.svg?sanitize=true"}, {"key": "amenity", "value": "driving_school", "description": "🄿 Driving School", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"}, - {"key": "amenity", "value": "embassy", "description": "🄿 Embassy", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/embassy-15.svg?sanitize=true"}, {"key": "amenity", "value": "fast_food", "description": "🄿 Fast Food", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fast-food-15.svg?sanitize=true"}, {"key": "cuisine", "value": "burger", "description": "🄿 Burger Fast Food", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fast-food-15.svg?sanitize=true"}, {"key": "cuisine", "value": "chicken", "description": "🄿 Chicken Fast Food", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-drumstick-bite.svg?sanitize=true"}, @@ -696,6 +696,10 @@ {"key": "office", "value": "charity", "description": "🄿 Charity Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, {"key": "office", "value": "company", "description": "🄿 Corporate Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, {"key": "office", "value": "coworking", "description": "🄿 Coworking Space", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, + {"key": "office", "value": "diplomatic", "description": "🄿 Diplomatic Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/embassy-15.svg?sanitize=true"}, + {"key": "diplomatic", "value": "consulate", "description": "🄿 Consulate", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/embassy-15.svg?sanitize=true"}, + {"key": "diplomatic", "value": "embassy", "description": "🄿 Embassy", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/embassy-15.svg?sanitize=true"}, + {"key": "diplomatic", "value": "liaison", "description": "🄿 Liaison Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/embassy-15.svg?sanitize=true"}, {"key": "office", "value": "educational_institution", "description": "🄿 Educational Institution", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/school-15.svg?sanitize=true"}, {"key": "office", "value": "employment_agency", "description": "🄿 Employment Agency", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, {"key": "office", "value": "energy_supplier", "description": "🄿 Energy Supplier Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, @@ -1168,6 +1172,7 @@ {"key": "comment", "description": "🄵 Changeset Comment"}, {"key": "communication:", "description": "🄵 Communication Types"}, {"key": "construction", "description": "🄵 Type"}, + {"key": "consulate", "description": "🄵 Type"}, {"key": "contact:webcam", "description": "🄵 Webcam URL"}, {"key": "content", "description": "🄵 Content"}, {"key": "conveying", "value": "forward", "description": "🄵 Movement Direction"}, @@ -1223,6 +1228,8 @@ {"key": "devices", "description": "🄵 Devices"}, {"key": "diaper", "description": "🄵 Diaper Changing Available"}, {"key": "diet:", "description": "🄵 Diet Types"}, + {"key": "diplomatic", "description": "🄵 Type"}, + {"key": "diplomatic:services:", "description": "🄵 Services"}, {"key": "direction", "value": "N", "description": "🄵 Direction"}, {"key": "direction", "value": "E", "description": "🄵 Direction"}, {"key": "direction", "value": "S", "description": "🄵 Direction"}, @@ -1262,6 +1269,7 @@ {"key": "ele", "description": "🄵 Elevation"}, {"key": "email", "description": "🄵 Email"}, {"key": "embankment", "description": "🄵 Type, 🄵 Structure"}, + {"key": "embassy", "description": "🄵 Type"}, {"key": "emergency", "description": "🄵 Emergency"}, {"key": "enforcement", "description": "🄵 Type"}, {"key": "except", "description": "🄵 Exceptions"}, @@ -1350,6 +1358,7 @@ {"key": "length", "description": "🄵 Length (Meters)"}, {"key": "level", "description": "🄵 Level"}, {"key": "building:levels", "description": "🄵 Levels"}, + {"key": "liaison", "description": "🄵 Type"}, {"key": "lit", "description": "🄵 Lit"}, {"key": "location", "value": "outdoor", "description": "🄵 Location"}, {"key": "location", "value": "indoor", "description": "🄵 Location"}, @@ -1573,6 +1582,7 @@ {"key": "takeaway", "value": "yes", "description": "🄵 Takeaway"}, {"key": "takeaway", "value": "no", "description": "🄵 Takeaway"}, {"key": "takeaway", "value": "only", "description": "🄵 Takeaway"}, + {"key": "target", "description": "🄵 Target"}, {"key": "tidal", "description": "🄵 Tidal"}, {"key": "to", "description": "🄵 To"}, {"key": "toilets:disposal", "value": "flush", "description": "🄵 Disposal"}, diff --git a/dist/locales/en.json b/dist/locales/en.json index 62b0a0af5..afa923d66 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -2497,6 +2497,9 @@ "construction": { "label": "Type" }, + "consulate": { + "label": "Type" + }, "contact/webcam": { "label": "Webcam URL", "placeholder": "http://example.com/" @@ -2639,6 +2642,12 @@ "diet_multi": { "label": "Diet Types" }, + "diplomatic": { + "label": "Type" + }, + "diplomatic/services": { + "label": "Services" + }, "direction_cardinal": { "label": "Direction", "options": { @@ -2733,6 +2742,9 @@ "label": "Type", "placeholder": "Default" }, + "embassy": { + "label": "Type" + }, "emergency": { "label": "Emergency" }, @@ -3061,6 +3073,9 @@ "label": "Levels", "placeholder": "2, 4, 6..." }, + "liaison": { + "label": "Type" + }, "lit": { "label": "Lit" }, @@ -3814,6 +3829,9 @@ "only": "Takeaway Only" } }, + "target": { + "label": "Target" + }, "tidal": { "label": "Tidal" }, @@ -4207,6 +4225,10 @@ "name": "Coworking Space", "terms": "" }, + "amenity/embassy": { + "name": "Embassy", + "terms": "" + }, "amenity/ferry_terminal": { "name": "Ferry Station / Terminal", "terms": "" @@ -4399,10 +4421,6 @@ "name": "Driving School", "terms": "" }, - "amenity/embassy": { - "name": "Embassy", - "terms": "" - }, "amenity/fast_food": { "name": "Fast Food", "terms": "restaurant,takeaway" @@ -6915,6 +6933,22 @@ "name": "Coworking Space", "terms": "coworking,office" }, + "office/diplomatic": { + "name": "Diplomatic Office", + "terms": "" + }, + "office/diplomatic/consulate": { + "name": "Consulate", + "terms": "" + }, + "office/diplomatic/embassy": { + "name": "Embassy", + "terms": "" + }, + "office/diplomatic/liaison": { + "name": "Liaison Office", + "terms": "" + }, "office/educational_institution": { "name": "Educational Institution", "terms": "" From 17f2c5c0f435b2a85370468388dc8f5b963b68b1 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Fri, 5 Apr 2019 09:40:35 -0700 Subject: [PATCH 06/50] Add Zip Line preset --- data/presets.yaml | 5 ++++ data/presets/presets.json | 1 + data/presets/presets/aerialway/zip_line.json | 28 ++++++++++++++++++++ data/taginfo.json | 3 ++- dist/locales/en.json | 4 +++ modules/osm/tags.js | 2 +- 6 files changed, 41 insertions(+), 2 deletions(-) create mode 100644 data/presets/presets/aerialway/zip_line.json diff --git a/data/presets.yaml b/data/presets.yaml index 1e4857afd..cde25cc83 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -2280,6 +2280,11 @@ en: name: T-bar Lift # 'terms: tbar' terms: '' + aerialway/zip_line: + # aerialway=zip_line + name: Zip Line + # 'terms: aerial runway,canopy,flying fox,foefie slide,gravity propelled aerial ropeslide,Tyrolean traverse,zip wire,zip-line,zipline,zipwire' + terms: '' aeroway: # aeroway=* name: Aeroway diff --git a/data/presets/presets.json b/data/presets/presets.json index 163b4528a..54dc9e132 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -34,6 +34,7 @@ "aerialway/pylon": {"geometry": ["point", "vertex"], "fields": ["ref"], "tags": {"aerialway": "pylon"}, "name": "Aerialway Pylon"}, "aerialway/rope_tow": {"geometry": ["line"], "terms": ["handle tow", "bugel lift"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "rope_tow"}, "name": "Rope Tow Lift"}, "aerialway/t-bar": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "terms": ["tbar"], "tags": {"aerialway": "t-bar"}, "name": "T-bar Lift"}, + "aerialway/zip_line": {"geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/duration", "maxweight", "access_simple"], "terms": ["aerial runway", "canopy", "flying fox", "foefie slide", "gravity propelled aerial ropeslide", "Tyrolean traverse", "zip wire", "zip-line", "zipline", "zipwire"], "tags": {"aerialway": "zip_line"}, "name": "Zip Line"}, "aeroway/aerodrome": {"icon": "maki-airport", "geometry": ["point", "area"], "fields": ["name", "iata", "icao", "operator", "internet_access", "internet_access/fee", "internet_access/ssid"], "terms": ["aerodrome", "aeroway", "airplane", "airport", "jet", "plane"], "tags": {"aeroway": "aerodrome"}, "matchScore": 0.9, "name": "Airport"}, "aeroway/apron": {"icon": "maki-airport", "geometry": ["area"], "terms": ["ramp"], "fields": ["ref", "surface"], "tags": {"aeroway": "apron"}, "name": "Apron"}, "aeroway/gate": {"icon": "maki-airport", "geometry": ["point"], "fields": ["ref_aeroway_gate"], "tags": {"aeroway": "gate"}, "name": "Airport Gate"}, diff --git a/data/presets/presets/aerialway/zip_line.json b/data/presets/presets/aerialway/zip_line.json new file mode 100644 index 000000000..e64b96b43 --- /dev/null +++ b/data/presets/presets/aerialway/zip_line.json @@ -0,0 +1,28 @@ +{ + "geometry": [ + "line" + ], + "fields": [ + "name", + "oneway_yes", + "aerialway/duration", + "maxweight", + "access_simple" + ], + "terms": [ + "aerial runway", + "canopy", + "flying fox", + "foefie slide", + "gravity propelled aerial ropeslide", + "Tyrolean traverse", + "zip wire", + "zip-line", + "zipline", + "zipwire" + ], + "tags": { + "aerialway": "zip_line" + }, + "name": "Zip Line" +} diff --git a/data/taginfo.json b/data/taginfo.json index c65e8307b..09b15eaf9 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -37,6 +37,7 @@ {"key": "aerialway", "value": "pylon", "description": "🄿 Aerialway Pylon", "object_types": ["node"]}, {"key": "aerialway", "value": "rope_tow", "description": "🄿 Rope Tow Lift", "object_types": ["way"]}, {"key": "aerialway", "value": "t-bar", "description": "🄿 T-bar Lift", "object_types": ["way"]}, + {"key": "aerialway", "value": "zip_line", "description": "🄿 Zip Line", "object_types": ["way"]}, {"key": "aeroway", "value": "aerodrome", "description": "🄿 Airport", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airport-15.svg?sanitize=true"}, {"key": "aeroway", "value": "apron", "description": "🄿 Apron", "object_types": ["area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airport-15.svg?sanitize=true"}, {"key": "aeroway", "value": "gate", "description": "🄿 Airport Gate", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airport-15.svg?sanitize=true"}, @@ -48,7 +49,7 @@ {"key": "allotments", "value": "plot", "description": "🄿 Community Garden Plot", "object_types": ["area"]}, {"key": "amenity", "value": "bus_station", "description": "🄿 Bus Station / Terminal (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bus-15.svg?sanitize=true"}, {"key": "amenity", "value": "coworking_space", "description": "🄿 Coworking Space (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/commercial-15.svg?sanitize=true"}, - {"key": "amenity", "value": "embassy", "description": "🄿 Embassy (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/embassy-15.svg?sanitize=true"}, + {"key": "amenity", "value": "embassy", "description": "🄿 Embassy (unsearchable), 🄳 ➜ office=diplomatic", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/embassy-15.svg?sanitize=true"}, {"key": "amenity", "value": "ferry_terminal", "description": "🄿 Ferry Station / Terminal (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/ferry-15.svg?sanitize=true"}, {"key": "amenity", "value": "nursing_home", "description": "🄿 Nursing Home (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/wheelchair-15.svg?sanitize=true"}, {"key": "amenity", "value": "recycling", "description": "🄿 Recycling (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/recycling-15.svg?sanitize=true"}, diff --git a/dist/locales/en.json b/dist/locales/en.json index afa923d66..6141fae8c 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -4181,6 +4181,10 @@ "name": "T-bar Lift", "terms": "tbar" }, + "aerialway/zip_line": { + "name": "Zip Line", + "terms": "aerial runway,canopy,flying fox,foefie slide,gravity propelled aerial ropeslide,Tyrolean traverse,zip wire,zip-line,zipline,zipwire" + }, "aeroway/aerodrome": { "name": "Airport", "terms": "aerodrome,aeroway,airplane,airport,jet,plane" diff --git a/modules/osm/tags.js b/modules/osm/tags.js index 0e08dfa19..5a7c946f2 100644 --- a/modules/osm/tags.js +++ b/modules/osm/tags.js @@ -17,7 +17,7 @@ export var osmOneWayTags = { 'platter': true, 'rope_tow': true, 't-bar': true, - 'zipline': true + 'zip_line': true }, 'highway': { 'motorway': true From f735c8e5115b4b03823502dcead293fdf7ac63cf Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Fri, 5 Apr 2019 09:44:59 -0700 Subject: [PATCH 07/50] Add One Way field to aerialway presets --- data/presets/presets.json | 14 +++++++------- data/presets/presets/aerialway/chair_lift.json | 1 + data/presets/presets/aerialway/drag_lift.json | 1 + data/presets/presets/aerialway/magic_carpet.json | 1 + data/presets/presets/aerialway/mixed_lift.json | 1 + data/presets/presets/aerialway/platter.json | 1 + data/presets/presets/aerialway/rope_tow.json | 1 + data/presets/presets/aerialway/t-bar.json | 1 + 8 files changed, 14 insertions(+), 7 deletions(-) diff --git a/data/presets/presets.json b/data/presets/presets.json index 54dc9e132..2cc58262f 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -24,16 +24,16 @@ "advertising/column": {"icon": "temaki-storage_tank", "fields": ["lit"], "geometry": ["point", "area"], "tags": {"advertising": "column"}, "name": "Advertising Column"}, "aerialway/station": {"icon": "maki-aerialway", "geometry": ["point", "vertex", "area"], "fields": ["aerialway/access", "aerialway/summer/access", "elevation", "building_area"], "tags": {"aerialway": "station"}, "matchScore": 0.95, "name": "Aerialway Station", "searchable": false, "replacement": "public_transport/station_aerialway"}, "aerialway/cable_car": {"geometry": ["line"], "terms": ["tramway", "ropeway"], "fields": ["name", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/heating"], "tags": {"aerialway": "cable_car"}, "name": "Cable Car"}, - "aerialway/chair_lift": {"icon": "temaki-chairlift", "geometry": ["line"], "fields": ["name", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "chair_lift"}, "name": "Chair Lift"}, - "aerialway/drag_lift": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "drag_lift"}, "name": "Drag Lift"}, + "aerialway/chair_lift": {"icon": "temaki-chairlift", "geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "chair_lift"}, "name": "Chair Lift"}, + "aerialway/drag_lift": {"geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "drag_lift"}, "name": "Drag Lift"}, "aerialway/gondola": {"geometry": ["line"], "fields": ["name", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "gondola"}, "name": "Gondola"}, "aerialway/goods": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "goods"}, "name": "Goods Aerialway"}, - "aerialway/magic_carpet": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration", "aerialway/heating"], "tags": {"aerialway": "magic_carpet"}, "name": "Magic Carpet Lift"}, - "aerialway/mixed_lift": {"geometry": ["line"], "fields": ["name", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "mixed_lift"}, "name": "Mixed Lift"}, - "aerialway/platter": {"geometry": ["line"], "terms": ["button lift", "poma lift"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "platter"}, "name": "Platter Lift"}, + "aerialway/magic_carpet": {"geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/capacity", "aerialway/duration", "aerialway/heating"], "tags": {"aerialway": "magic_carpet"}, "name": "Magic Carpet Lift"}, + "aerialway/mixed_lift": {"geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "mixed_lift"}, "name": "Mixed Lift"}, + "aerialway/platter": {"geometry": ["line"], "terms": ["button lift", "poma lift"], "fields": ["name", "oneway_yes", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "platter"}, "name": "Platter Lift"}, "aerialway/pylon": {"geometry": ["point", "vertex"], "fields": ["ref"], "tags": {"aerialway": "pylon"}, "name": "Aerialway Pylon"}, - "aerialway/rope_tow": {"geometry": ["line"], "terms": ["handle tow", "bugel lift"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "rope_tow"}, "name": "Rope Tow Lift"}, - "aerialway/t-bar": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "terms": ["tbar"], "tags": {"aerialway": "t-bar"}, "name": "T-bar Lift"}, + "aerialway/rope_tow": {"geometry": ["line"], "terms": ["handle tow", "bugel lift"], "fields": ["name", "oneway_yes", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "rope_tow"}, "name": "Rope Tow Lift"}, + "aerialway/t-bar": {"geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/capacity", "aerialway/duration"], "terms": ["tbar"], "tags": {"aerialway": "t-bar"}, "name": "T-bar Lift"}, "aerialway/zip_line": {"geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/duration", "maxweight", "access_simple"], "terms": ["aerial runway", "canopy", "flying fox", "foefie slide", "gravity propelled aerial ropeslide", "Tyrolean traverse", "zip wire", "zip-line", "zipline", "zipwire"], "tags": {"aerialway": "zip_line"}, "name": "Zip Line"}, "aeroway/aerodrome": {"icon": "maki-airport", "geometry": ["point", "area"], "fields": ["name", "iata", "icao", "operator", "internet_access", "internet_access/fee", "internet_access/ssid"], "terms": ["aerodrome", "aeroway", "airplane", "airport", "jet", "plane"], "tags": {"aeroway": "aerodrome"}, "matchScore": 0.9, "name": "Airport"}, "aeroway/apron": {"icon": "maki-airport", "geometry": ["area"], "terms": ["ramp"], "fields": ["ref", "surface"], "tags": {"aeroway": "apron"}, "name": "Apron"}, diff --git a/data/presets/presets/aerialway/chair_lift.json b/data/presets/presets/aerialway/chair_lift.json index d24a453a3..ff03df2e2 100644 --- a/data/presets/presets/aerialway/chair_lift.json +++ b/data/presets/presets/aerialway/chair_lift.json @@ -5,6 +5,7 @@ ], "fields": [ "name", + "oneway_yes", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", diff --git a/data/presets/presets/aerialway/drag_lift.json b/data/presets/presets/aerialway/drag_lift.json index 6dc4eca5e..9c10f7f4e 100644 --- a/data/presets/presets/aerialway/drag_lift.json +++ b/data/presets/presets/aerialway/drag_lift.json @@ -4,6 +4,7 @@ ], "fields": [ "name", + "oneway_yes", "aerialway/capacity", "aerialway/duration" ], diff --git a/data/presets/presets/aerialway/magic_carpet.json b/data/presets/presets/aerialway/magic_carpet.json index f7eecd0ca..12e773592 100644 --- a/data/presets/presets/aerialway/magic_carpet.json +++ b/data/presets/presets/aerialway/magic_carpet.json @@ -4,6 +4,7 @@ ], "fields": [ "name", + "oneway_yes", "aerialway/capacity", "aerialway/duration", "aerialway/heating" diff --git a/data/presets/presets/aerialway/mixed_lift.json b/data/presets/presets/aerialway/mixed_lift.json index 2cb5143ed..43554e19d 100644 --- a/data/presets/presets/aerialway/mixed_lift.json +++ b/data/presets/presets/aerialway/mixed_lift.json @@ -4,6 +4,7 @@ ], "fields": [ "name", + "oneway_yes", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", diff --git a/data/presets/presets/aerialway/platter.json b/data/presets/presets/aerialway/platter.json index 3cd9b4f4c..4eb7a4442 100644 --- a/data/presets/presets/aerialway/platter.json +++ b/data/presets/presets/aerialway/platter.json @@ -8,6 +8,7 @@ ], "fields": [ "name", + "oneway_yes", "aerialway/capacity", "aerialway/duration" ], diff --git a/data/presets/presets/aerialway/rope_tow.json b/data/presets/presets/aerialway/rope_tow.json index 61db37a00..a6d4df303 100644 --- a/data/presets/presets/aerialway/rope_tow.json +++ b/data/presets/presets/aerialway/rope_tow.json @@ -8,6 +8,7 @@ ], "fields": [ "name", + "oneway_yes", "aerialway/capacity", "aerialway/duration" ], diff --git a/data/presets/presets/aerialway/t-bar.json b/data/presets/presets/aerialway/t-bar.json index 7852b99b6..8e2ee7249 100644 --- a/data/presets/presets/aerialway/t-bar.json +++ b/data/presets/presets/aerialway/t-bar.json @@ -4,6 +4,7 @@ ], "fields": [ "name", + "oneway_yes", "aerialway/capacity", "aerialway/duration" ], From 8e7b3e304afa1fe30d336643802ed25742fdd2f6 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Fri, 5 Apr 2019 09:47:53 -0700 Subject: [PATCH 08/50] Deprecate aerialway=canopy --- data/deprecated.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/data/deprecated.json b/data/deprecated.json index bf1c0162d..3fa21db97 100644 --- a/data/deprecated.json +++ b/data/deprecated.json @@ -1,5 +1,9 @@ { "dataDeprecated": [ + { + "old": {"aerialway": "canopy"}, + "replace": {"aerialway": "zip_line"} + }, { "old": {"amenity": "advertising"}, "replace": {"advertising": "*"} From 3d9cd5b5bfa2b4be7d228cc62202037d24794849 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Fri, 5 Apr 2019 09:55:14 -0700 Subject: [PATCH 09/50] Fix highway=unsurfaced replacement tags --- data/deprecated.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/deprecated.json b/data/deprecated.json index 3fa21db97..f58b6f4a2 100644 --- a/data/deprecated.json +++ b/data/deprecated.json @@ -245,7 +245,7 @@ }, { "old": {"highway": "unsurfaced"}, - "replace": {"highway": "road", "incline": "unpaved"} + "replace": {"highway": "road", "surface": "unpaved"} }, { "old": {"kerb": "dropped"}, From 195c1376d64ea8e8bfe08fc3bf71261cbc5e1204 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Fri, 5 Apr 2019 09:59:49 -0700 Subject: [PATCH 10/50] Remove oneway tag from some aerialway presets where it would be highly uncommon --- data/presets/presets.json | 8 ++++---- data/presets/presets/aerialway/drag_lift.json | 1 - data/presets/presets/aerialway/magic_carpet.json | 1 - data/presets/presets/aerialway/platter.json | 1 - data/presets/presets/aerialway/t-bar.json | 1 - 5 files changed, 4 insertions(+), 8 deletions(-) diff --git a/data/presets/presets.json b/data/presets/presets.json index 2cc58262f..19f812876 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -25,15 +25,15 @@ "aerialway/station": {"icon": "maki-aerialway", "geometry": ["point", "vertex", "area"], "fields": ["aerialway/access", "aerialway/summer/access", "elevation", "building_area"], "tags": {"aerialway": "station"}, "matchScore": 0.95, "name": "Aerialway Station", "searchable": false, "replacement": "public_transport/station_aerialway"}, "aerialway/cable_car": {"geometry": ["line"], "terms": ["tramway", "ropeway"], "fields": ["name", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/heating"], "tags": {"aerialway": "cable_car"}, "name": "Cable Car"}, "aerialway/chair_lift": {"icon": "temaki-chairlift", "geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "chair_lift"}, "name": "Chair Lift"}, - "aerialway/drag_lift": {"geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "drag_lift"}, "name": "Drag Lift"}, + "aerialway/drag_lift": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "drag_lift"}, "name": "Drag Lift"}, "aerialway/gondola": {"geometry": ["line"], "fields": ["name", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "gondola"}, "name": "Gondola"}, "aerialway/goods": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "goods"}, "name": "Goods Aerialway"}, - "aerialway/magic_carpet": {"geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/capacity", "aerialway/duration", "aerialway/heating"], "tags": {"aerialway": "magic_carpet"}, "name": "Magic Carpet Lift"}, + "aerialway/magic_carpet": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration", "aerialway/heating"], "tags": {"aerialway": "magic_carpet"}, "name": "Magic Carpet Lift"}, "aerialway/mixed_lift": {"geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "mixed_lift"}, "name": "Mixed Lift"}, - "aerialway/platter": {"geometry": ["line"], "terms": ["button lift", "poma lift"], "fields": ["name", "oneway_yes", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "platter"}, "name": "Platter Lift"}, + "aerialway/platter": {"geometry": ["line"], "terms": ["button lift", "poma lift"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "platter"}, "name": "Platter Lift"}, "aerialway/pylon": {"geometry": ["point", "vertex"], "fields": ["ref"], "tags": {"aerialway": "pylon"}, "name": "Aerialway Pylon"}, "aerialway/rope_tow": {"geometry": ["line"], "terms": ["handle tow", "bugel lift"], "fields": ["name", "oneway_yes", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "rope_tow"}, "name": "Rope Tow Lift"}, - "aerialway/t-bar": {"geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/capacity", "aerialway/duration"], "terms": ["tbar"], "tags": {"aerialway": "t-bar"}, "name": "T-bar Lift"}, + "aerialway/t-bar": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "terms": ["tbar"], "tags": {"aerialway": "t-bar"}, "name": "T-bar Lift"}, "aerialway/zip_line": {"geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/duration", "maxweight", "access_simple"], "terms": ["aerial runway", "canopy", "flying fox", "foefie slide", "gravity propelled aerial ropeslide", "Tyrolean traverse", "zip wire", "zip-line", "zipline", "zipwire"], "tags": {"aerialway": "zip_line"}, "name": "Zip Line"}, "aeroway/aerodrome": {"icon": "maki-airport", "geometry": ["point", "area"], "fields": ["name", "iata", "icao", "operator", "internet_access", "internet_access/fee", "internet_access/ssid"], "terms": ["aerodrome", "aeroway", "airplane", "airport", "jet", "plane"], "tags": {"aeroway": "aerodrome"}, "matchScore": 0.9, "name": "Airport"}, "aeroway/apron": {"icon": "maki-airport", "geometry": ["area"], "terms": ["ramp"], "fields": ["ref", "surface"], "tags": {"aeroway": "apron"}, "name": "Apron"}, diff --git a/data/presets/presets/aerialway/drag_lift.json b/data/presets/presets/aerialway/drag_lift.json index 9c10f7f4e..6dc4eca5e 100644 --- a/data/presets/presets/aerialway/drag_lift.json +++ b/data/presets/presets/aerialway/drag_lift.json @@ -4,7 +4,6 @@ ], "fields": [ "name", - "oneway_yes", "aerialway/capacity", "aerialway/duration" ], diff --git a/data/presets/presets/aerialway/magic_carpet.json b/data/presets/presets/aerialway/magic_carpet.json index 12e773592..f7eecd0ca 100644 --- a/data/presets/presets/aerialway/magic_carpet.json +++ b/data/presets/presets/aerialway/magic_carpet.json @@ -4,7 +4,6 @@ ], "fields": [ "name", - "oneway_yes", "aerialway/capacity", "aerialway/duration", "aerialway/heating" diff --git a/data/presets/presets/aerialway/platter.json b/data/presets/presets/aerialway/platter.json index 4eb7a4442..3cd9b4f4c 100644 --- a/data/presets/presets/aerialway/platter.json +++ b/data/presets/presets/aerialway/platter.json @@ -8,7 +8,6 @@ ], "fields": [ "name", - "oneway_yes", "aerialway/capacity", "aerialway/duration" ], diff --git a/data/presets/presets/aerialway/t-bar.json b/data/presets/presets/aerialway/t-bar.json index 8e2ee7249..7852b99b6 100644 --- a/data/presets/presets/aerialway/t-bar.json +++ b/data/presets/presets/aerialway/t-bar.json @@ -4,7 +4,6 @@ ], "fields": [ "name", - "oneway_yes", "aerialway/capacity", "aerialway/duration" ], From 1328054b088ebcaec8aa6a042fb912e4c2eefbeb Mon Sep 17 00:00:00 2001 From: J Guthrie Date: Fri, 5 Apr 2019 18:49:14 +0100 Subject: [PATCH 11/50] Allow for multiple invalid sources --- modules/validations/incompatible_source.js | 44 +++++++++++++--------- 1 file changed, 27 insertions(+), 17 deletions(-) diff --git a/modules/validations/incompatible_source.js b/modules/validations/incompatible_source.js index 612ac4d5c..f2a516bbe 100644 --- a/modules/validations/incompatible_source.js +++ b/modules/validations/incompatible_source.js @@ -6,25 +6,35 @@ import { validationIssue, validationIssueFix } from '../core/validator'; export function validationIncompatibleSource() { var type = 'incompatible_source'; - var validation = function(entity, context) { + var invalidSources = [{id:"google", regex:"google"}]; - if (entity.tags && entity.tags.source && entity.tags.source.toLowerCase().match(/google/)) { - return [new validationIssue({ - type: type, - severity: 'warning', - message: t('issues.incompatible_source.google.feature.message', { - feature: utilDisplayLabel(entity, context), - }), - tooltip: t('issues.incompatible_source.google.tip'), - entities: [entity], - fixes: [ - new validationIssueFix({ - title: t('issues.fix.remove_proprietary_data.title') - }) - ] - })]; + var validation = function(entity, context) { + var issues = []; + + if (entity.tags && entity.tags.source) { + + invalidSources.forEach(function(invalidSource) { + var pattern = new RegExp(invalidSource.regex, "i"); + + if (entity.tags.source.match(pattern)) { + issues.push(new validationIssue({ + type: type, + severity: 'warning', + message: t('issues.incompatible_source.' + invalidSource.id + '.feature.message', { + feature: utilDisplayLabel(entity, context), + }), + tooltip: t('issues.incompatible_source.' + invalidSource.id + '.tip'), + entities: [entity], + fixes: [ + new validationIssueFix({ + title: t('issues.fix.remove_proprietary_data.title') + }) + ] + })); + } + }); } - return []; + return issues; }; validation.type = type; From 6e6ed7fad56df271fb951fe02cdb156c123562a8 Mon Sep 17 00:00:00 2001 From: J Guthrie Date: Fri, 5 Apr 2019 19:01:12 +0100 Subject: [PATCH 12/50] eslint fixes --- modules/validations/incompatible_source.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/validations/incompatible_source.js b/modules/validations/incompatible_source.js index f2a516bbe..c72f5f046 100644 --- a/modules/validations/incompatible_source.js +++ b/modules/validations/incompatible_source.js @@ -6,7 +6,7 @@ import { validationIssue, validationIssueFix } from '../core/validator'; export function validationIncompatibleSource() { var type = 'incompatible_source'; - var invalidSources = [{id:"google", regex:"google"}]; + var invalidSources = [{id:'google', regex:'google'}]; var validation = function(entity, context) { var issues = []; @@ -14,7 +14,7 @@ export function validationIncompatibleSource() { if (entity.tags && entity.tags.source) { invalidSources.forEach(function(invalidSource) { - var pattern = new RegExp(invalidSource.regex, "i"); + var pattern = new RegExp(invalidSource.regex, 'i'); if (entity.tags.source.match(pattern)) { issues.push(new validationIssue({ From 251d27b5f0a0105e0ad1ebedc59cb41f8256df70 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Fri, 5 Apr 2019 12:09:28 -0700 Subject: [PATCH 13/50] Add various tag deprecations --- data/deprecated.json | 96 +++++++++++++++++++++ data/presets/presets.json | 2 +- data/presets/presets/barrier/_entrance.json | 3 +- data/taginfo.json | 28 +++++- 4 files changed, 124 insertions(+), 5 deletions(-) diff --git a/data/deprecated.json b/data/deprecated.json index f58b6f4a2..2fd620fdc 100644 --- a/data/deprecated.json +++ b/data/deprecated.json @@ -24,6 +24,14 @@ "old": {"amenity": "community_center"}, "replace": {"amenity": "community_centre"} }, + { + "old": {"amenity": "dog_bin"}, + "replace": {"amenity": "waste_basket", "waste": "dog_excrement"} + }, + { + "old": {"amenity": "dog_waste_bin"}, + "replace": {"amenity": "waste_basket", "waste": "dog_excrement"} + }, { "old": {"amenity": "embassy"}, "replace": {"office": "diplomatic"} @@ -32,6 +40,10 @@ "old": {"amenity": "ev_charging"}, "replace": {"amenity": "charging_station"} }, + { + "old": {"amenity": "fire_hydrant"}, + "replace": {"emergency": "fire_hydrant"} + }, { "old": {"amenity": "firepit"}, "replace": {"leisure": "firepit"} @@ -44,6 +56,26 @@ "old": {"amenity": "garages"}, "replace": {"landuse": "garages"} }, + { + "old": {"amenity": "gym"}, + "replace": {"leisure": "fitness_centre"} + }, + { + "old": {"amenity": "hotel"}, + "replace": {"tourism": "hotel"} + }, + { + "old": {"amenity": "kiosk"}, + "replace": {"shop": "kiosk"} + }, + { + "old": {"amenity": "nursery"}, + "replace": {"amenity": "kindergarten"} + }, + { + "old": {"amenity": "preschool"}, + "replace": {"amenity": "kindergarten"} + }, { "old": {"amenity": "public_building"}, "replace": {"building": "public"} @@ -76,6 +108,10 @@ "old": {"amenity": "swimming_pool"}, "replace": {"leisure": "swimming_pool"} }, + { + "old": {"amenity": "ticket_booth"}, + "replace": {"shop": "ticket"} + }, { "old": {"amenity": "toilet"}, "replace": {"amenity": "toilets"} @@ -84,6 +120,10 @@ "old": {"amenity": "vending_machine", "vending": "news_papers"}, "replace": {"amenity": "vending_machine", "vending": "newspapers"} }, + { + "old": {"amenity": "winery"}, + "replace": {"craft": "winery"} + }, { "old": {"amenity": "youth_center"}, "replace": {"amenity": "community_centre", "community_centre:for": "juvenile"} @@ -92,6 +132,14 @@ "old": {"amenity": "youth_centre"}, "replace": {"amenity": "community_centre", "community_centre:for": "juvenile"} }, + { + "old": {"barrier": "curb"}, + "replace": {"barrier": "kerb"} + }, + { + "old": {"barrier": "entrance"}, + "replace": {"entrance": "*"} + }, { "old": {"barrier": "wire_fence"}, "replace": {"barrier": "fence", "fence_type": "chain"} @@ -291,6 +339,14 @@ "old": {"leisure": "club"}, "replace": {"club": "*"} }, + { + "old": {"leisure": "video_arcade"}, + "replace": {"leisure": "amusement_arcade"} + }, + { + "old": {"man_made": "cut_line"}, + "replace": {"man_made": "cutline"} + }, { "old": {"man_made": "jetty"}, "replace": {"highway": "footway", "man_made": "pier"} @@ -311,6 +367,10 @@ "old": {"man_made": "well"}, "replace": {"man_made": "water_well"} }, + { + "old": {"man_made": "winery"}, + "replace": {"craft": "winery"} + }, { "old": {"memorial": "plate"}, "replace": {"memorial": "plaque"} @@ -343,10 +403,18 @@ "old": {"postcode": "*"}, "replace": {"addr:postcode": "$1"} }, + { + "old": {"power": "busbar"}, + "replace": {"power": "line", "line": "busbar"} + }, { "old": {"power": "sub_station"}, "replace": {"power": "substation"} }, + { + "old": {"power": "underground_cable"}, + "replace": {"power": "cable", "location": "underground"} + }, { "old": {"power_source": "*"}, "replace": {"generator:source": "$1"} @@ -363,6 +431,18 @@ "old": {"route": "ncn"}, "replace": {"route": "bicycle", "network": "ncn"} }, + { + "old": {"shop": "adult"}, + "replace": {"shop": "erotic"} + }, + { + "old": {"shop": "antique"}, + "replace": {"shop": "antiques"} + }, + { + "old": {"shop": "auto_parts"}, + "replace": {"shop": "car_parts"} + }, { "old": {"shop": "betting"}, "replace": {"shop": "bookmaker"} @@ -371,6 +451,10 @@ "old": {"shop": "boutique"}, "replace": {"shop": "clothes"} }, + { + "old": {"shop": "dive"}, + "replace": {"shop": "scuba_diving"} + }, { "old": {"shop": "fashion"}, "replace": {"shop": "clothes"} @@ -391,6 +475,10 @@ "old": {"shop": "gallery"}, "replace": {"shop": "art"} }, + { + "old": {"shop": "moneylender"}, + "replace": {"shop": "money_lender"} + }, { "old": {"shop": "organic"}, "replace": {"shop": "supermarket", "organic": "only"} @@ -403,6 +491,14 @@ "old": {"shop": "real_estate"}, "replace": {"office": "estate_agent"} }, + { + "old": {"shop": "tickets"}, + "replace": {"shop": "ticket"} + }, + { + "old": {"shop": "winery"}, + "replace": {"craft": "winery"} + }, { "old": {"sloped_curb": "0"}, "replace": {"kerb": "flush"} diff --git a/data/presets/presets.json b/data/presets/presets.json index 19f812876..b5baa02bb 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -243,7 +243,7 @@ "attraction/train": {"icon": "maki-rail", "fields": ["{attraction}", "fee"], "geometry": ["point", "line"], "terms": ["theme park", "rackless train", "road train", "Tschu-Tschu train", "dotto train", "park train"], "tags": {"attraction": "train"}, "name": "Tourist Train"}, "attraction/water_slide": {"icon": "maki-swimming", "fields": ["{attraction}", "height"], "geometry": ["line", "area"], "terms": ["theme park", "aquatic park", "water park", "flumes", "water chutes", "hydroslides"], "tags": {"attraction": "water_slide"}, "name": "Water Slide"}, "barrier": {"icon": "maki-roadblock", "geometry": ["point", "vertex", "line", "area"], "tags": {"barrier": "*"}, "fields": ["barrier"], "name": "Barrier", "matchScore": 0.4}, - "barrier/entrance": {"icon": "maki-entrance-alt1", "geometry": ["vertex"], "tags": {"barrier": "entrance"}, "name": "Entrance", "searchable": false, "replacement": "entrance"}, + "barrier/entrance": {"icon": "maki-entrance-alt1", "geometry": ["vertex"], "tags": {"barrier": "entrance"}, "name": "Entrance", "searchable": false}, "barrier/block": {"icon": "maki-roadblock", "fields": ["access", "material"], "geometry": ["point", "vertex"], "tags": {"barrier": "block"}, "name": "Block"}, "barrier/bollard": {"icon": "maki-roadblock", "fields": ["access", "material"], "geometry": ["point", "vertex", "line"], "tags": {"barrier": "bollard"}, "name": "Bollard"}, "barrier/border_control": {"icon": "maki-roadblock", "fields": ["access", "building_area"], "moreFields": ["address", "website", "phone", "email", "fax"], "geometry": ["vertex", "area"], "tags": {"barrier": "border_control"}, "name": "Border Control"}, diff --git a/data/presets/presets/barrier/_entrance.json b/data/presets/presets/barrier/_entrance.json index 48c10e0a7..a1240a4d9 100644 --- a/data/presets/presets/barrier/_entrance.json +++ b/data/presets/presets/barrier/_entrance.json @@ -7,6 +7,5 @@ "barrier": "entrance" }, "name": "Entrance", - "searchable": false, - "replacement": "entrance" + "searchable": false } diff --git a/data/taginfo.json b/data/taginfo.json index 09b15eaf9..bbdfcd0e7 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -240,7 +240,7 @@ {"key": "attraction", "value": "train", "description": "🄿 Tourist Train", "object_types": ["node", "way"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/rail-15.svg?sanitize=true"}, {"key": "attraction", "value": "water_slide", "description": "🄿 Water Slide", "object_types": ["way", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"}, {"key": "barrier", "description": "🄿 Barrier, 🄵 Type", "object_types": ["node", "way", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"}, - {"key": "barrier", "value": "entrance", "description": "🄿 Entrance (unsearchable)", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/entrance-alt1-15.svg?sanitize=true"}, + {"key": "barrier", "value": "entrance", "description": "🄿 Entrance (unsearchable), 🄳 ➜ entrance=*", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/entrance-alt1-15.svg?sanitize=true"}, {"key": "barrier", "value": "block", "description": "🄿 Block", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"}, {"key": "barrier", "value": "bollard", "description": "🄿 Bollard", "object_types": ["node", "way"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"}, {"key": "barrier", "value": "border_control", "description": "🄿 Border Control", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"}, @@ -1662,23 +1662,35 @@ {"key": "windings:configuration", "value": "open", "description": "🄵 Windings Configuration"}, {"key": "windings:configuration", "value": "scott", "description": "🄵 Windings Configuration"}, {"key": "windings:configuration", "value": "leblanc", "description": "🄵 Windings Configuration"}, + {"key": "aerialway", "value": "canopy", "description": "🄳 ➜ aerialway=zip_line"}, {"key": "amenity", "value": "advertising", "description": "🄳 ➜ advertising=*"}, {"key": "amenity", "value": "artwork", "description": "🄳 ➜ tourism=artwork"}, {"key": "amenity", "value": "car_repair", "description": "🄳 ➜ shop=car_repair"}, {"key": "amenity", "value": "citymap_post", "description": "🄳 ➜ tourism=information"}, {"key": "amenity", "value": "community_center", "description": "🄳 ➜ amenity=community_centre"}, + {"key": "amenity", "value": "dog_bin", "description": "🄳 ➜ amenity=waste_basket + waste=dog_excrement"}, + {"key": "amenity", "value": "dog_waste_bin", "description": "🄳 ➜ amenity=waste_basket + waste=dog_excrement"}, {"key": "amenity", "value": "ev_charging", "description": "🄳 ➜ amenity=charging_station"}, + {"key": "amenity", "value": "fire_hydrant", "description": "🄳 ➜ emergency=fire_hydrant"}, {"key": "amenity", "value": "firepit", "description": "🄳 ➜ leisure=firepit"}, {"key": "amenity", "value": "garage", "description": "🄳 ➜ landuse=garages"}, {"key": "amenity", "value": "garages", "description": "🄳 ➜ landuse=garages"}, + {"key": "amenity", "value": "gym", "description": "🄳 ➜ leisure=fitness_centre"}, + {"key": "amenity", "value": "hotel", "description": "🄳 ➜ tourism=hotel"}, + {"key": "amenity", "value": "kiosk", "description": "🄳 ➜ shop=kiosk"}, + {"key": "amenity", "value": "nursery", "description": "🄳 ➜ amenity=kindergarten"}, + {"key": "amenity", "value": "preschool", "description": "🄳 ➜ amenity=kindergarten"}, {"key": "amenity", "value": "public_building", "description": "🄳 ➜ building=public"}, {"key": "amenity", "value": "real_estate", "description": "🄳 ➜ office=estate_agent"}, {"key": "amenity", "value": "sauna", "description": "🄳 ➜ leisure=sauna"}, {"key": "amenity", "value": "shop", "description": "🄳 ➜ shop=*"}, {"key": "amenity", "value": "sloped_curb", "description": "🄳 ➜ kerb=lowered"}, + {"key": "amenity", "value": "ticket_booth", "description": "🄳 ➜ shop=ticket"}, {"key": "amenity", "value": "toilet", "description": "🄳 ➜ amenity=toilets"}, + {"key": "amenity", "value": "winery", "description": "🄳 ➜ craft=winery"}, {"key": "amenity", "value": "youth_center", "description": "🄳 ➜ amenity=community_centre + community_centre:for=juvenile"}, {"key": "amenity", "value": "youth_centre", "description": "🄳 ➜ amenity=community_centre + community_centre:for=juvenile"}, + {"key": "barrier", "value": "curb", "description": "🄳 ➜ barrier=kerb"}, {"key": "barrier", "value": "wire_fence", "description": "🄳 ➜ barrier=fence + fence_type=chain"}, {"key": "barrier", "value": "wood_fence", "description": "🄳 ➜ barrier=fence + fence_type=wood"}, {"key": "building", "value": "family_house", "description": "🄳 ➜ building=house"}, @@ -1711,7 +1723,7 @@ {"key": "highway", "value": "stile", "description": "🄳 ➜ barrier=stile"}, {"key": "highway", "value": "incline", "description": "🄳 ➜ highway=road + incline=up"}, {"key": "highway", "value": "incline_steep", "description": "🄳 ➜ highway=road + incline=up"}, - {"key": "highway", "value": "unsurfaced", "description": "🄳 ➜ highway=road + incline=unpaved"}, + {"key": "highway", "value": "unsurfaced", "description": "🄳 ➜ highway=road + surface=unpaved"}, {"key": "kerb", "value": "dropped", "description": "🄳 ➜ kerb=lowered"}, {"key": "kerb", "value": "flat", "description": "🄳 ➜ kerb=flush"}, {"key": "landuse", "value": "conservation", "description": "🄳 ➜ boundary=protected_area"}, @@ -1719,11 +1731,14 @@ {"key": "landuse", "value": "wood", "description": "🄳 ➜ natural=wood"}, {"key": "leisure", "value": "beach", "description": "🄳 ➜ natural=beach"}, {"key": "leisure", "value": "club", "description": "🄳 ➜ club=*"}, + {"key": "leisure", "value": "video_arcade", "description": "🄳 ➜ leisure=amusement_arcade"}, + {"key": "man_made", "value": "cut_line", "description": "🄳 ➜ man_made=cutline"}, {"key": "man_made", "value": "jetty", "description": "🄳 ➜ highway=footway + man_made=pier"}, {"key": "man_made", "value": "mdf", "description": "🄳 ➜ telecom=exchange"}, {"key": "man_made", "value": "MDF", "description": "🄳 ➜ telecom=exchange"}, {"key": "man_made", "value": "water_tank", "description": "🄳 ➜ man_made=storage_tank + content=water"}, {"key": "man_made", "value": "well", "description": "🄳 ➜ man_made=water_well"}, + {"key": "man_made", "value": "winery", "description": "🄳 ➜ craft=winery"}, {"key": "memorial", "value": "plate", "description": "🄳 ➜ memorial=plaque"}, {"key": "mining_resource", "description": "🄳 ➜ resource=*"}, {"key": "natural", "value": "marsh", "description": "🄳 ➜ natural=wetland + wetland=marsh"}, @@ -1732,16 +1747,25 @@ {"key": "place_name", "description": "🄳 ➜ name=*"}, {"key": "pole", "value": "transition", "description": "🄳 ➜ location:transition=yes"}, {"key": "postcode", "description": "🄳 ➜ addr:postcode=*"}, + {"key": "power", "value": "busbar", "description": "🄳 ➜ power=line + line=busbar"}, + {"key": "power", "value": "underground_cable", "description": "🄳 ➜ power=cable + location=underground"}, {"key": "power_source", "description": "🄳 ➜ generator:source=*"}, {"key": "power_rating", "description": "🄳 ➜ generator:output=*"}, {"key": "roof:color", "description": "🄳 ➜ roof:colour=*"}, {"key": "route", "value": "ncn", "description": "🄳 ➜ route=bicycle + network=ncn"}, + {"key": "shop", "value": "adult", "description": "🄳 ➜ shop=erotic"}, + {"key": "shop", "value": "antique", "description": "🄳 ➜ shop=antiques"}, + {"key": "shop", "value": "auto_parts", "description": "🄳 ➜ shop=car_parts"}, {"key": "shop", "value": "betting", "description": "🄳 ➜ shop=bookmaker"}, + {"key": "shop", "value": "dive", "description": "🄳 ➜ shop=scuba_diving"}, {"key": "shop", "value": "fish", "description": "🄳 ➜ shop=seafood"}, {"key": "shop", "value": "gallery", "description": "🄳 ➜ shop=art"}, + {"key": "shop", "value": "moneylender", "description": "🄳 ➜ shop=money_lender"}, {"key": "shop", "value": "organic", "description": "🄳 ➜ shop=supermarket + organic=only"}, {"key": "shop", "value": "perfume", "description": "🄳 ➜ shop=perfumery"}, {"key": "shop", "value": "real_estate", "description": "🄳 ➜ office=estate_agent"}, + {"key": "shop", "value": "tickets", "description": "🄳 ➜ shop=ticket"}, + {"key": "shop", "value": "winery", "description": "🄳 ➜ craft=winery"}, {"key": "sloped_curb", "value": "0", "description": "🄳 ➜ kerb=flush"}, {"key": "sloped_curb", "value": "0.00", "description": "🄳 ➜ kerb=flush"}, {"key": "sloped_curb", "value": "0.01", "description": "🄳 ➜ kerb=lowered + kerb:height=1 cm"}, From ebc14dd0dfc2d65821ca3ae8c816d4e8eec643f9 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Fri, 5 Apr 2019 12:30:30 -0700 Subject: [PATCH 14/50] Deprecate craft=glass, shop=baby, and shop=baby_care --- data/deprecated.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/data/deprecated.json b/data/deprecated.json index 2fd620fdc..47084b4df 100644 --- a/data/deprecated.json +++ b/data/deprecated.json @@ -180,6 +180,10 @@ "old": {"color": "*"}, "replace": {"colour": "$1"} }, + { + "old": {"craft": "glass"}, + "replace": {"craft": "glaziery"} + }, { "old": {"crossing": "zebra"}, "replace": {"crossing": "marked"} @@ -443,6 +447,14 @@ "old": {"shop": "auto_parts"}, "replace": {"shop": "car_parts"} }, + { + "old": {"shop": "baby"}, + "replace": {"shop": "baby_goods"} + }, + { + "old": {"shop": "baby_care"}, + "replace": {"shop": "baby_goods"} + }, { "old": {"shop": "betting"}, "replace": {"shop": "bookmaker"} From 6dd9e9ce48f30db97238f5641f13687afa522d09 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Fri, 5 Apr 2019 13:53:57 -0700 Subject: [PATCH 15/50] Add code tests for incompatible_source validation --- test/index.html | 1 + test/spec/validations/incompatible_source.js | 60 ++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 test/spec/validations/incompatible_source.js diff --git a/test/index.html b/test/index.html index 954589083..4cb1e94fa 100644 --- a/test/index.html +++ b/test/index.html @@ -155,6 +155,7 @@ + diff --git a/test/spec/validations/incompatible_source.js b/test/spec/validations/incompatible_source.js new file mode 100644 index 000000000..f8a3e2d90 --- /dev/null +++ b/test/spec/validations/incompatible_source.js @@ -0,0 +1,60 @@ +describe('iD.validations.incompatible_source', function () { + var context; + + beforeEach(function() { + context = iD.coreContext(); + }); + + function createWay(tags) { + var n1 = iD.osmNode({id: 'n-1', loc: [4,4]}); + var n2 = iD.osmNode({id: 'n-2', loc: [4,5]}); + var n3 = iD.osmNode({id: 'n-3', loc: [5,5]}); + var w = iD.osmWay({id: 'w-1', nodes: ['n-1', 'n-2', 'n-3'], tags: tags}); + + context.perform( + iD.actionAddEntity(n1), + iD.actionAddEntity(n2), + iD.actionAddEntity(n3), + iD.actionAddEntity(w) + ); + } + + function validate() { + var validator = iD.validationIncompatibleSource(); + var changes = context.history().changes(); + var entities = changes.modified.concat(changes.created); + var issues = []; + entities.forEach(function(entity) { + issues = issues.concat(validator(entity, context)); + }); + return issues; + } + + it('has no errors on init', function() { + var issues = validate(); + expect(issues).to.have.lengthOf(0); + }); + + it('ignores way with no source tag', function() { + createWay({ amenity: 'cafe', building: 'yes', name: 'Key Largo Café'}); + var issues = validate(); + expect(issues).to.have.lengthOf(0); + }); + + it('ignores way with okay source tag', function() { + createWay({ amenity: 'cafe', building: 'yes', name: 'Key Largo Café', source: 'survey'}); + var issues = validate(); + expect(issues).to.have.lengthOf(0); + }); + + it('flags way with incompatible source tag', function() { + createWay({ amenity: 'cafe', building: 'yes', name: 'Key Largo Café', source: 'Google Maps'}); + var issues = validate(); + expect(issues).to.have.lengthOf(1); + var issue = issues[0]; + expect(issue.type).to.eql('incompatible_source'); + expect(issue.entities).to.have.lengthOf(1); + expect(issue.entities[0].id).to.eql('w-1'); + }); + +}); From 2e693d2c036b36b293d0937dc1820b63cdc7ddac Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sat, 6 Apr 2019 08:32:04 -0700 Subject: [PATCH 16/50] Add derived taginfo data --- data/taginfo.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/data/taginfo.json b/data/taginfo.json index bbdfcd0e7..5582a97a5 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -1700,6 +1700,7 @@ {"key": "building:roof:colour", "description": "🄳 ➜ roof:colour=*"}, {"key": "building:type", "description": "🄳 ➜ building=*"}, {"key": "color", "description": "🄳 ➜ colour=*"}, + {"key": "craft", "value": "glass", "description": "🄳 ➜ craft=glaziery"}, {"key": "cuisine", "value": "gluten-free", "description": "🄳 ➜ diet:gluten_free=yes"}, {"key": "cuisine", "value": "halal", "description": "🄳 ➜ diet:halal=yes"}, {"key": "cuisine", "value": "kosher", "description": "🄳 ➜ diet:kosher=yes"}, @@ -1756,6 +1757,8 @@ {"key": "shop", "value": "adult", "description": "🄳 ➜ shop=erotic"}, {"key": "shop", "value": "antique", "description": "🄳 ➜ shop=antiques"}, {"key": "shop", "value": "auto_parts", "description": "🄳 ➜ shop=car_parts"}, + {"key": "shop", "value": "baby", "description": "🄳 ➜ shop=baby_goods"}, + {"key": "shop", "value": "baby_care", "description": "🄳 ➜ shop=baby_goods"}, {"key": "shop", "value": "betting", "description": "🄳 ➜ shop=bookmaker"}, {"key": "shop", "value": "dive", "description": "🄳 ➜ shop=scuba_diving"}, {"key": "shop", "value": "fish", "description": "🄳 ➜ shop=seafood"}, From b7b1ce3d7fe18d31d3a60025af1f0b7ffd100a55 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sat, 6 Apr 2019 08:36:08 -0700 Subject: [PATCH 17/50] Fix footway icon colors on Chrome --- css/30_highways.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/30_highways.css b/css/30_highways.css index ebd866c43..298ceedbf 100644 --- a/css/30_highways.css +++ b/css/30_highways.css @@ -489,7 +489,7 @@ path.line.stroke.tag-highway_bus_stop, .preset-icon-line path.casing.tag-highway-footway { stroke: #988; } -.preset-icon-line path.stroke.tag-highway-footway:not(.tag-footway-crossing, .tag-man_made-pier, .tag-public_transport-platform) { +.preset-icon-line path.stroke.tag-highway-footway:not(.tag-footway-crossing):not(.tag-man_made-pier):not(.tag-public_transport-platform) { stroke: #fff; } From 9e91b606b9b0d2864dd0c696231e0c312b4dcf62 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sun, 7 Apr 2019 10:20:34 -0700 Subject: [PATCH 18/50] Add Rail Under Construction preset (close #6151) --- css/50_misc.css | 20 ++++++------- data/presets.yaml | 4 +++ data/presets/presets.json | 1 + .../presets/presets/railway/construction.json | 28 +++++++++++++++++++ data/taginfo.json | 1 + dist/locales/en.json | 4 +++ 6 files changed, 48 insertions(+), 10 deletions(-) create mode 100644 data/presets/presets/railway/construction.json diff --git a/css/50_misc.css b/css/50_misc.css index 5e21e5681..127a23fd5 100644 --- a/css/50_misc.css +++ b/css/50_misc.css @@ -373,34 +373,34 @@ path.line.casing.tag-status { color: #fc6c14; fill: #fff; } -path.line.shadow.tag-status.tag-status-construction { +path.line.shadow.tag-highway.tag-status.tag-status-construction { stroke-width: 20; } -path.line.casing.tag-status.tag-status-construction { +path.line.casing.tag-highway.tag-status.tag-status-construction { stroke-width: 10; stroke-linecap: butt; stroke-dasharray: none } -path.line.stroke.tag-status.tag-status-construction { +path.line.stroke.tag-highway.tag-status.tag-status-construction { stroke-width: 8; stroke-linecap: butt; stroke-dasharray: 10, 10; } -path.line.casing.tag-status.tag-status-construction, -.preset-icon-line path.line.stroke.tag-status.tag-status-construction { +path.line.casing.tag-highway.tag-status.tag-status-construction, +.preset-icon-line path.line.stroke.tag-highway.tag-status.tag-status-construction { stroke: #fff; } -path.line.stroke.tag-status.tag-status-construction, -.preset-icon-line path.line.casing.tag-status.tag-status-construction { +path.line.stroke.tag-highway.tag-status.tag-status-construction, +.preset-icon-line path.line.casing.tag-highway.tag-status.tag-status-construction { stroke: #fc6c14; } -.low-zoom path.line.shadow.tag-status.tag-status-construction { +.low-zoom path.line.shadow.tag-highway.tag-status.tag-status-construction { stroke-width: 16; } -.low-zoom path.line.casing.tag-status.tag-status-construction { +.low-zoom path.line.casing.tag-highway.tag-status.tag-status-construction { stroke-width: 7; } -.low-zoom path.line.stroke.tag-status.tag-status-construction { +.low-zoom path.line.stroke.tag-highway.tag-status.tag-status-construction { stroke-width: 5; stroke-dasharray: 8, 8; } diff --git a/data/presets.yaml b/data/presets.yaml index cde25cc83..13a696f1f 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -6063,6 +6063,10 @@ en: name: Buffer Stop # 'terms: stop,halt,buffer' terms: '' + railway/construction: + # railway=construction + name: Rail Under Construction + terms: '' railway/crossing: # railway=crossing name: Railway Crossing (Path) diff --git a/data/presets/presets.json b/data/presets/presets.json index b5baa02bb..1fc7016d0 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -857,6 +857,7 @@ "railway/tram_stop": {"icon": "temaki-tram", "fields": ["name", "network", "operator"], "geometry": ["vertex"], "tags": {"railway": "tram_stop"}, "terms": ["light rail", "streetcar", "tram", "trolley"], "name": "Tram Stopping Position", "searchable": false}, "railway/abandoned": {"icon": "iD-railway-abandoned", "fields": ["name", "structure", "service_rail", "usage_rail"], "moreFields": ["covered"], "geometry": ["line"], "tags": {"railway": "abandoned"}, "terms": [], "name": "Abandoned Railway"}, "railway/buffer_stop": {"icon": "temaki-buffer_stop", "geometry": ["vertex"], "tags": {"railway": "buffer_stop"}, "terms": ["stop", "halt", "buffer"], "name": "Buffer Stop"}, + "railway/construction": {"icon": "iD-railway-rail", "fields": ["name", "opening_date", "check_date", "note", "structure", "gauge", "electrified"], "moreFields": ["covered", "frequency_electrified", "highspeed", "maxspeed", "service_rail", "usage_rail", "voltage_electrified"], "geometry": ["line"], "tags": {"railway": "construction"}, "name": "Rail Under Construction"}, "railway/crossing": {"icon": "temaki-pedestrian", "geometry": ["vertex"], "tags": {"railway": "crossing"}, "terms": ["crossing", "pedestrian crossing", "railroad crossing", "level crossing", "grade crossing", "path through railroad", "train crossing"], "name": "Railway Crossing (Path)"}, "railway/derail": {"icon": "maki-roadblock", "geometry": ["vertex"], "tags": {"railway": "derail"}, "terms": ["derailer"], "name": "Railway Derailer"}, "railway/disused": {"icon": "iD-railway-disused", "fields": ["operator", "structure", "service_rail", "usage_rail"], "moreFields": ["covered"], "geometry": ["line"], "tags": {"railway": "disused"}, "terms": [], "name": "Disused Railway"}, diff --git a/data/presets/presets/railway/construction.json b/data/presets/presets/railway/construction.json new file mode 100644 index 000000000..caeacd747 --- /dev/null +++ b/data/presets/presets/railway/construction.json @@ -0,0 +1,28 @@ +{ + "icon": "iD-railway-rail", + "fields": [ + "name", + "opening_date", + "check_date", + "note", + "structure", + "gauge", + "electrified" + ], + "moreFields": [ + "covered", + "frequency_electrified", + "highspeed", + "maxspeed", + "service_rail", + "usage_rail", + "voltage_electrified" + ], + "geometry": [ + "line" + ], + "tags": { + "railway": "construction" + }, + "name": "Rail Under Construction" +} diff --git a/data/taginfo.json b/data/taginfo.json index 5582a97a5..115e9c62e 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -800,6 +800,7 @@ {"key": "railway", "value": "tram_stop", "description": "🄿 Tram Stopping Position (unsearchable)", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tram.svg?sanitize=true"}, {"key": "railway", "value": "abandoned", "description": "🄿 Abandoned Railway", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-abandoned.svg?sanitize=true"}, {"key": "railway", "value": "buffer_stop", "description": "🄿 Buffer Stop", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/buffer_stop.svg?sanitize=true"}, + {"key": "railway", "value": "construction", "description": "🄿 Rail Under Construction", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-rail.svg?sanitize=true"}, {"key": "railway", "value": "crossing", "description": "🄿 Railway Crossing (Path)", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/pedestrian.svg?sanitize=true"}, {"key": "railway", "value": "derail", "description": "🄿 Railway Derailer", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"}, {"key": "railway", "value": "disused", "description": "🄿 Disused Railway", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-disused.svg?sanitize=true"}, diff --git a/dist/locales/en.json b/dist/locales/en.json index 6141fae8c..71ee644f6 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -7473,6 +7473,10 @@ "name": "Buffer Stop", "terms": "stop,halt,buffer" }, + "railway/construction": { + "name": "Rail Under Construction", + "terms": "" + }, "railway/crossing": { "name": "Railway Crossing (Path)", "terms": "crossing,pedestrian crossing,railroad crossing,level crossing,grade crossing,path through railroad,train crossing" From 11952c8f684828b8a21a96ed707e023c7246a4d9 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sun, 7 Apr 2019 10:28:17 -0700 Subject: [PATCH 19/50] Don't flag traffic_calming=choker or chicane on line features (close #6153) --- data/presets/presets.json | 4 ++-- data/presets/presets/traffic_calming/chicane.json | 1 + data/presets/presets/traffic_calming/choker.json | 1 + data/taginfo.json | 4 ++-- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/data/presets/presets.json b/data/presets/presets.json index 1fc7016d0..bd99f6672 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -1057,8 +1057,8 @@ "tourism/zoo": {"icon": "temaki-zoo", "fields": ["name", "operator", "address", "opening_hours", "fee"], "moreFields": ["payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["animal"], "tags": {"tourism": "zoo"}, "name": "Zoo"}, "traffic_calming": {"icon": "temaki-diamond", "fields": ["traffic_calming", "surface", "direction_vertex"], "geometry": ["vertex", "line", "area"], "tags": {"traffic_calming": "*"}, "terms": ["bump", "hump", "slow", "speed"], "name": "Traffic Calming"}, "traffic_calming/bump": {"icon": "temaki-diamond", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "line"], "terms": ["hump", "speed", "slow"], "tags": {"traffic_calming": "bump"}, "name": "Speed Bump"}, - "traffic_calming/chicane": {"icon": "temaki-diamond", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "area"], "terms": ["driveway link", "speed", "slow"], "tags": {"traffic_calming": "chicane"}, "name": "Traffic Chicane"}, - "traffic_calming/choker": {"icon": "temaki-diamond", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "area"], "terms": ["speed", "slow"], "tags": {"traffic_calming": "choker"}, "name": "Traffic Choker"}, + "traffic_calming/chicane": {"icon": "temaki-diamond", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "line", "area"], "terms": ["driveway link", "speed", "slow"], "tags": {"traffic_calming": "chicane"}, "name": "Traffic Chicane"}, + "traffic_calming/choker": {"icon": "temaki-diamond", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "line", "area"], "terms": ["speed", "slow"], "tags": {"traffic_calming": "choker"}, "name": "Traffic Choker"}, "traffic_calming/cushion": {"icon": "temaki-diamond", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "line"], "terms": ["bump", "hump", "speed", "slow"], "tags": {"traffic_calming": "cushion"}, "name": "Speed Cushion"}, "traffic_calming/dip": {"icon": "temaki-diamond", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "line"], "terms": ["speed", "slow"], "tags": {"traffic_calming": "dip"}, "name": "Dip"}, "traffic_calming/hump": {"icon": "temaki-diamond", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "line"], "terms": ["bump", "speed", "slow"], "tags": {"traffic_calming": "hump"}, "name": "Speed Hump"}, diff --git a/data/presets/presets/traffic_calming/chicane.json b/data/presets/presets/traffic_calming/chicane.json index 6e56f64fe..f51abe55a 100644 --- a/data/presets/presets/traffic_calming/chicane.json +++ b/data/presets/presets/traffic_calming/chicane.json @@ -6,6 +6,7 @@ ], "geometry": [ "vertex", + "line", "area" ], "terms": [ diff --git a/data/presets/presets/traffic_calming/choker.json b/data/presets/presets/traffic_calming/choker.json index 4cad61221..8c6882296 100644 --- a/data/presets/presets/traffic_calming/choker.json +++ b/data/presets/presets/traffic_calming/choker.json @@ -6,6 +6,7 @@ ], "geometry": [ "vertex", + "line", "area" ], "terms": [ diff --git a/data/taginfo.json b/data/taginfo.json index 115e9c62e..3d316dbe7 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -998,8 +998,8 @@ {"key": "tourism", "value": "zoo", "description": "🄿 Zoo", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/zoo.svg?sanitize=true"}, {"key": "traffic_calming", "description": "🄿 Traffic Calming, 🄵 Type", "object_types": ["node", "way", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"}, {"key": "traffic_calming", "value": "bump", "description": "🄿 Speed Bump", "object_types": ["node", "way"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"}, - {"key": "traffic_calming", "value": "chicane", "description": "🄿 Traffic Chicane", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"}, - {"key": "traffic_calming", "value": "choker", "description": "🄿 Traffic Choker", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"}, + {"key": "traffic_calming", "value": "chicane", "description": "🄿 Traffic Chicane", "object_types": ["node", "way", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"}, + {"key": "traffic_calming", "value": "choker", "description": "🄿 Traffic Choker", "object_types": ["node", "way", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"}, {"key": "traffic_calming", "value": "cushion", "description": "🄿 Speed Cushion", "object_types": ["node", "way"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"}, {"key": "traffic_calming", "value": "dip", "description": "🄿 Dip", "object_types": ["node", "way"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"}, {"key": "traffic_calming", "value": "hump", "description": "🄿 Speed Hump", "object_types": ["node", "way"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"}, From 177b2df8d2c831fac67066493696e194aab98ce7 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sun, 7 Apr 2019 11:26:58 -0700 Subject: [PATCH 20/50] Add Underwear Store preset and deprecate shop=underwear and shop=lingerie (close #6152) --- data/deprecated.json | 8 +++++ data/presets.yaml | 5 +++ data/presets/presets.json | 1 + .../presets/shop/clothes/underwear.json | 32 +++++++++++++++++++ data/taginfo.json | 3 ++ dist/locales/en.json | 4 +++ 6 files changed, 53 insertions(+) create mode 100644 data/presets/presets/shop/clothes/underwear.json diff --git a/data/deprecated.json b/data/deprecated.json index 47084b4df..4912519dc 100644 --- a/data/deprecated.json +++ b/data/deprecated.json @@ -487,6 +487,10 @@ "old": {"shop": "gallery"}, "replace": {"shop": "art"} }, + { + "old": {"shop": "lingerie"}, + "replace": {"shop": "clothes", "clothes": "underwear"} + }, { "old": {"shop": "moneylender"}, "replace": {"shop": "money_lender"} @@ -507,6 +511,10 @@ "old": {"shop": "tickets"}, "replace": {"shop": "ticket"} }, + { + "old": {"shop": "underwear"}, + "replace": {"shop": "clothes", "clothes": "underwear"} + }, { "old": {"shop": "winery"}, "replace": {"craft": "winery"} diff --git a/data/presets.yaml b/data/presets.yaml index 13a696f1f..5bc78c952 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -6360,6 +6360,11 @@ en: name: Clothing Store # 'terms: blouses,boutique,bras,clothes,dresses,fashion,pants,shirts,shorts,skirts,slacks,socks,suits,underwear' terms: '' + shop/clothes/underwear: + # 'shop=clothes, clothes=underwear' + name: Underwear Store + # 'terms: boutique,bras,brassieres,briefs,boxers,clothes,fashion,lingerie,panties,slips,socks,stockings,underclothing,underpants' + terms: '' shop/coffee: # shop=coffee name: Coffee Store diff --git a/data/presets/presets.json b/data/presets/presets.json index bd99f6672..206e1c82e 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -921,6 +921,7 @@ "shop/chemist": {"icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "chemist"}, "terms": ["apothecary", "beauty", "drug store", "drugstore", "gift", "hair", "med*", "pharmacy", "prescription", "tooth"], "name": "Drugstore"}, "shop/chocolate": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "chocolate"}, "terms": ["cocoa"], "name": "Chocolate Store"}, "shop/clothes": {"icon": "maki-clothing-store", "fields": ["name", "clothes", "{shop}"], "geometry": ["point", "area"], "tags": {"shop": "clothes"}, "terms": ["blouses", "boutique", "bras", "clothes", "dresses", "fashion", "pants", "shirts", "shorts", "skirts", "slacks", "socks", "suits", "underwear"], "name": "Clothing Store"}, + "shop/clothes/underwear": {"icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "clothes": "underwear"}, "reference": {"key": "clothes", "value": "underwear"}, "terms": ["boutique", "bras", "brassieres", "briefs", "boxers", "clothes", "fashion", "lingerie", "panties", "slips", "socks", "stockings", "underclothing", "underpants"], "name": "Underwear Store"}, "shop/coffee": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "coffee"}, "name": "Coffee Store"}, "shop/computer": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "computer"}, "terms": ["desktop", "laptop", "hardware", "operating system", "software"], "name": "Computer Store"}, "shop/confectionery": {"icon": "maki-confectionery", "geometry": ["point", "area"], "terms": ["sweet"], "tags": {"shop": "confectionery"}, "name": "Candy Store"}, diff --git a/data/presets/presets/shop/clothes/underwear.json b/data/presets/presets/shop/clothes/underwear.json new file mode 100644 index 000000000..016ccb7aa --- /dev/null +++ b/data/presets/presets/shop/clothes/underwear.json @@ -0,0 +1,32 @@ +{ + "icon": "maki-clothing-store", + "geometry": [ + "point", + "area" + ], + "tags": { + "shop": "clothes", + "clothes": "underwear" + }, + "reference": { + "key": "clothes", + "value": "underwear" + }, + "terms": [ + "boutique", + "bras", + "brassieres", + "briefs", + "boxers", + "clothes", + "fashion", + "lingerie", + "panties", + "slips", + "socks", + "stockings", + "underclothing", + "underpants" + ], + "name": "Underwear Store" +} diff --git a/data/taginfo.json b/data/taginfo.json index 3d316dbe7..b1e409fcf 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -863,6 +863,7 @@ {"key": "shop", "value": "chemist", "description": "🄿 Drugstore", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/grocery-15.svg?sanitize=true"}, {"key": "shop", "value": "chocolate", "description": "🄿 Chocolate Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "clothes", "description": "🄿 Clothing Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/clothing-store-15.svg?sanitize=true"}, + {"key": "clothes", "value": "underwear", "description": "🄿 Underwear Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/clothing-store-15.svg?sanitize=true"}, {"key": "shop", "value": "coffee", "description": "🄿 Coffee Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "computer", "description": "🄿 Computer Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "confectionery", "description": "🄿 Candy Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/confectionery-15.svg?sanitize=true"}, @@ -1764,11 +1765,13 @@ {"key": "shop", "value": "dive", "description": "🄳 ➜ shop=scuba_diving"}, {"key": "shop", "value": "fish", "description": "🄳 ➜ shop=seafood"}, {"key": "shop", "value": "gallery", "description": "🄳 ➜ shop=art"}, + {"key": "shop", "value": "lingerie", "description": "🄳 ➜ shop=clothes + clothes=underwear"}, {"key": "shop", "value": "moneylender", "description": "🄳 ➜ shop=money_lender"}, {"key": "shop", "value": "organic", "description": "🄳 ➜ shop=supermarket + organic=only"}, {"key": "shop", "value": "perfume", "description": "🄳 ➜ shop=perfumery"}, {"key": "shop", "value": "real_estate", "description": "🄳 ➜ office=estate_agent"}, {"key": "shop", "value": "tickets", "description": "🄳 ➜ shop=ticket"}, + {"key": "shop", "value": "underwear", "description": "🄳 ➜ shop=clothes + clothes=underwear"}, {"key": "shop", "value": "winery", "description": "🄳 ➜ craft=winery"}, {"key": "sloped_curb", "value": "0", "description": "🄳 ➜ kerb=flush"}, {"key": "sloped_curb", "value": "0.00", "description": "🄳 ➜ kerb=flush"}, diff --git a/dist/locales/en.json b/dist/locales/en.json index 71ee644f6..3df414d58 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -7729,6 +7729,10 @@ "name": "Clothing Store", "terms": "blouses,boutique,bras,clothes,dresses,fashion,pants,shirts,shorts,skirts,slacks,socks,suits,underwear" }, + "shop/clothes/underwear": { + "name": "Underwear Store", + "terms": "boutique,bras,brassieres,briefs,boxers,clothes,fashion,lingerie,panties,slips,socks,stockings,underclothing,underpants" + }, "shop/coffee": { "name": "Coffee Store", "terms": "" From 380a925c26d2d2a7e6379f32135b3cf01e2da089 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sun, 7 Apr 2019 11:29:31 -0700 Subject: [PATCH 21/50] Add more terms for Underwear Store --- data/presets.yaml | 2 +- data/presets/presets.json | 2 +- data/presets/presets/shop/clothes/underwear.json | 7 ++++--- dist/locales/en.json | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/data/presets.yaml b/data/presets.yaml index 5bc78c952..54b801e85 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -6363,7 +6363,7 @@ en: shop/clothes/underwear: # 'shop=clothes, clothes=underwear' name: Underwear Store - # 'terms: boutique,bras,brassieres,briefs,boxers,clothes,fashion,lingerie,panties,slips,socks,stockings,underclothing,underpants' + # 'terms: boutique,bras,brassieres,briefs,boxers,fashion,lingerie,panties,slips,socks,stockings,underclothes,undergarments,underpants,undies' terms: '' shop/coffee: # shop=coffee diff --git a/data/presets/presets.json b/data/presets/presets.json index 206e1c82e..7c55448f2 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -921,7 +921,7 @@ "shop/chemist": {"icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "chemist"}, "terms": ["apothecary", "beauty", "drug store", "drugstore", "gift", "hair", "med*", "pharmacy", "prescription", "tooth"], "name": "Drugstore"}, "shop/chocolate": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "chocolate"}, "terms": ["cocoa"], "name": "Chocolate Store"}, "shop/clothes": {"icon": "maki-clothing-store", "fields": ["name", "clothes", "{shop}"], "geometry": ["point", "area"], "tags": {"shop": "clothes"}, "terms": ["blouses", "boutique", "bras", "clothes", "dresses", "fashion", "pants", "shirts", "shorts", "skirts", "slacks", "socks", "suits", "underwear"], "name": "Clothing Store"}, - "shop/clothes/underwear": {"icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "clothes": "underwear"}, "reference": {"key": "clothes", "value": "underwear"}, "terms": ["boutique", "bras", "brassieres", "briefs", "boxers", "clothes", "fashion", "lingerie", "panties", "slips", "socks", "stockings", "underclothing", "underpants"], "name": "Underwear Store"}, + "shop/clothes/underwear": {"icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "clothes": "underwear"}, "reference": {"key": "clothes", "value": "underwear"}, "terms": ["boutique", "bras", "brassieres", "briefs", "boxers", "fashion", "lingerie", "panties", "slips", "socks", "stockings", "underclothes", "undergarments", "underpants", "undies"], "name": "Underwear Store"}, "shop/coffee": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "coffee"}, "name": "Coffee Store"}, "shop/computer": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "computer"}, "terms": ["desktop", "laptop", "hardware", "operating system", "software"], "name": "Computer Store"}, "shop/confectionery": {"icon": "maki-confectionery", "geometry": ["point", "area"], "terms": ["sweet"], "tags": {"shop": "confectionery"}, "name": "Candy Store"}, diff --git a/data/presets/presets/shop/clothes/underwear.json b/data/presets/presets/shop/clothes/underwear.json index 016ccb7aa..65b1cb55c 100644 --- a/data/presets/presets/shop/clothes/underwear.json +++ b/data/presets/presets/shop/clothes/underwear.json @@ -18,15 +18,16 @@ "brassieres", "briefs", "boxers", - "clothes", "fashion", "lingerie", "panties", "slips", "socks", "stockings", - "underclothing", - "underpants" + "underclothes", + "undergarments", + "underpants", + "undies" ], "name": "Underwear Store" } diff --git a/dist/locales/en.json b/dist/locales/en.json index 3df414d58..6a56cfdf3 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -7731,7 +7731,7 @@ }, "shop/clothes/underwear": { "name": "Underwear Store", - "terms": "boutique,bras,brassieres,briefs,boxers,clothes,fashion,lingerie,panties,slips,socks,stockings,underclothing,underpants" + "terms": "boutique,bras,brassieres,briefs,boxers,fashion,lingerie,panties,slips,socks,stockings,underclothes,undergarments,underpants,undies" }, "shop/coffee": { "name": "Coffee Store", From 4ca76468964a7021bef2b845d2598b9350fc9acc Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sun, 7 Apr 2019 11:42:31 -0700 Subject: [PATCH 22/50] Renamed Rail Under Construction to Railway Under Construction (since Rail has a more specific meaning) --- data/presets.yaml | 4 ++-- data/presets/presets.json | 2 +- data/presets/presets/railway/construction.json | 2 +- data/taginfo.json | 2 +- dist/locales/en.json | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/data/presets.yaml b/data/presets.yaml index 54b801e85..aa9ca140f 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -6065,8 +6065,8 @@ en: terms: '' railway/construction: # railway=construction - name: Rail Under Construction - terms: '' + name: Railway Under Construction + terms: '' railway/crossing: # railway=crossing name: Railway Crossing (Path) diff --git a/data/presets/presets.json b/data/presets/presets.json index 7c55448f2..875ac1acf 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -857,7 +857,7 @@ "railway/tram_stop": {"icon": "temaki-tram", "fields": ["name", "network", "operator"], "geometry": ["vertex"], "tags": {"railway": "tram_stop"}, "terms": ["light rail", "streetcar", "tram", "trolley"], "name": "Tram Stopping Position", "searchable": false}, "railway/abandoned": {"icon": "iD-railway-abandoned", "fields": ["name", "structure", "service_rail", "usage_rail"], "moreFields": ["covered"], "geometry": ["line"], "tags": {"railway": "abandoned"}, "terms": [], "name": "Abandoned Railway"}, "railway/buffer_stop": {"icon": "temaki-buffer_stop", "geometry": ["vertex"], "tags": {"railway": "buffer_stop"}, "terms": ["stop", "halt", "buffer"], "name": "Buffer Stop"}, - "railway/construction": {"icon": "iD-railway-rail", "fields": ["name", "opening_date", "check_date", "note", "structure", "gauge", "electrified"], "moreFields": ["covered", "frequency_electrified", "highspeed", "maxspeed", "service_rail", "usage_rail", "voltage_electrified"], "geometry": ["line"], "tags": {"railway": "construction"}, "name": "Rail Under Construction"}, + "railway/construction": {"icon": "iD-railway-rail", "fields": ["name", "opening_date", "check_date", "note", "structure", "gauge", "electrified"], "moreFields": ["covered", "frequency_electrified", "highspeed", "maxspeed", "service_rail", "usage_rail", "voltage_electrified"], "geometry": ["line"], "tags": {"railway": "construction"}, "name": "Railway Under Construction"}, "railway/crossing": {"icon": "temaki-pedestrian", "geometry": ["vertex"], "tags": {"railway": "crossing"}, "terms": ["crossing", "pedestrian crossing", "railroad crossing", "level crossing", "grade crossing", "path through railroad", "train crossing"], "name": "Railway Crossing (Path)"}, "railway/derail": {"icon": "maki-roadblock", "geometry": ["vertex"], "tags": {"railway": "derail"}, "terms": ["derailer"], "name": "Railway Derailer"}, "railway/disused": {"icon": "iD-railway-disused", "fields": ["operator", "structure", "service_rail", "usage_rail"], "moreFields": ["covered"], "geometry": ["line"], "tags": {"railway": "disused"}, "terms": [], "name": "Disused Railway"}, diff --git a/data/presets/presets/railway/construction.json b/data/presets/presets/railway/construction.json index caeacd747..1dfde6531 100644 --- a/data/presets/presets/railway/construction.json +++ b/data/presets/presets/railway/construction.json @@ -24,5 +24,5 @@ "tags": { "railway": "construction" }, - "name": "Rail Under Construction" + "name": "Railway Under Construction" } diff --git a/data/taginfo.json b/data/taginfo.json index b1e409fcf..216ce832c 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -800,7 +800,7 @@ {"key": "railway", "value": "tram_stop", "description": "🄿 Tram Stopping Position (unsearchable)", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tram.svg?sanitize=true"}, {"key": "railway", "value": "abandoned", "description": "🄿 Abandoned Railway", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-abandoned.svg?sanitize=true"}, {"key": "railway", "value": "buffer_stop", "description": "🄿 Buffer Stop", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/buffer_stop.svg?sanitize=true"}, - {"key": "railway", "value": "construction", "description": "🄿 Rail Under Construction", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-rail.svg?sanitize=true"}, + {"key": "railway", "value": "construction", "description": "🄿 Railway Under Construction", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-rail.svg?sanitize=true"}, {"key": "railway", "value": "crossing", "description": "🄿 Railway Crossing (Path)", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/pedestrian.svg?sanitize=true"}, {"key": "railway", "value": "derail", "description": "🄿 Railway Derailer", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"}, {"key": "railway", "value": "disused", "description": "🄿 Disused Railway", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-disused.svg?sanitize=true"}, diff --git a/dist/locales/en.json b/dist/locales/en.json index 6a56cfdf3..bca627369 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -7474,7 +7474,7 @@ "terms": "stop,halt,buffer" }, "railway/construction": { - "name": "Rail Under Construction", + "name": "Railway Under Construction", "terms": "" }, "railway/crossing": { From b0ba87c8faf100ba59b2ee8139397a13a660a38a Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sun, 7 Apr 2019 11:45:04 -0700 Subject: [PATCH 23/50] Add terms to the Rail preset --- data/presets.yaml | 1 + data/presets/presets.json | 2 +- data/presets/presets/railway/rail.json | 6 +++++- dist/locales/en.json | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/data/presets.yaml b/data/presets.yaml index aa9ca140f..b39b7bef7 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -6124,6 +6124,7 @@ en: railway/rail: # railway=rail name: Rail + # 'terms: rail line,railroad track,train track' terms: '' railway/rail/highspeed: # 'railway=rail, highspeed=yes' diff --git a/data/presets/presets.json b/data/presets/presets.json index 875ac1acf..8f7281aa2 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -868,7 +868,7 @@ "railway/miniature": {"icon": "iD-railway-rail", "fields": ["name", "structure", "gauge", "electrified", "service_rail"], "moreFields": ["covered", "frequency_electrified", "maxspeed", "voltage_electrified"], "geometry": ["line"], "tags": {"railway": "miniature"}, "terms": ["rideable miniature railway", "narrow gauge railway", "minimum gauge railway"], "name": "Miniature Railway"}, "railway/monorail": {"icon": "temaki-monorail", "fields": ["name", "operator", "structure", "electrified", "service_rail", "usage_rail"], "moreFields": ["covered", "frequency_electrified", "maxspeed", "voltage_electrified"], "geometry": ["line"], "tags": {"railway": "monorail"}, "terms": [], "name": "Monorail"}, "railway/narrow_gauge": {"icon": "iD-railway-rail", "fields": ["{railway/rail}"], "moreFields": ["covered", "frequency_electrified", "maxspeed", "voltage_electrified"], "geometry": ["line"], "tags": {"railway": "narrow_gauge"}, "terms": ["narrow gauge railway", "narrow gauge railroad"], "name": "Narrow Gauge Rail"}, - "railway/rail": {"icon": "iD-railway-rail", "fields": ["name", "operator", "structure", "gauge", "electrified", "service_rail", "usage_rail"], "moreFields": ["covered", "frequency_electrified", "highspeed", "maxspeed", "voltage_electrified"], "geometry": ["line"], "tags": {"railway": "rail"}, "terms": [], "name": "Rail"}, + "railway/rail": {"icon": "iD-railway-rail", "fields": ["name", "operator", "structure", "gauge", "electrified", "service_rail", "usage_rail"], "moreFields": ["covered", "frequency_electrified", "highspeed", "maxspeed", "voltage_electrified"], "geometry": ["line"], "tags": {"railway": "rail"}, "terms": ["rail line", "railroad track", "train track"], "name": "Rail"}, "railway/rail/highspeed": {"icon": "iD-railway-rail", "geometry": ["line"], "tags": {"railway": "rail", "highspeed": "yes"}, "reference": {"key": "highspeed"}, "terms": ["bullet train", "fast rail", "high speed rail", "highspeed rail", "HSR"], "name": "High-Speed Rail"}, "railway/signal": {"icon": "temaki-railway_signals", "geometry": ["point", "vertex"], "fields": ["railway/position", "railway/signal/direction", "ref"], "tags": {"railway": "signal"}, "terms": ["signal", "lights"], "name": "Railway Signal"}, "railway/subway_entrance": {"icon": "maki-entrance", "geometry": ["point", "vertex"], "fields": ["name"], "tags": {"railway": "subway_entrance"}, "terms": ["metro", "transit"], "name": "Subway Entrance"}, diff --git a/data/presets/presets/railway/rail.json b/data/presets/presets/railway/rail.json index 719999e89..1b99dfe19 100644 --- a/data/presets/presets/railway/rail.json +++ b/data/presets/presets/railway/rail.json @@ -22,6 +22,10 @@ "tags": { "railway": "rail" }, - "terms": [], + "terms": [ + "rail line", + "railroad track", + "train track" + ], "name": "Rail" } diff --git a/dist/locales/en.json b/dist/locales/en.json index bca627369..1c02fa45c 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -7519,7 +7519,7 @@ }, "railway/rail": { "name": "Rail", - "terms": "" + "terms": "rail line,railroad track,train track" }, "railway/rail/highspeed": { "name": "High-Speed Rail", From 8815b878c5a351f144effbbc3e1fb35fcc580c40 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sun, 7 Apr 2019 12:47:20 -0700 Subject: [PATCH 24/50] Fix issue where selected way could not be disconnected if the connection point occurred more than once in the way (close #6149) --- modules/actions/disconnect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/actions/disconnect.js b/modules/actions/disconnect.js index 62a2162b0..b58ab7d2f 100644 --- a/modules/actions/disconnect.js +++ b/modules/actions/disconnect.js @@ -71,7 +71,7 @@ export function actionDisconnect(nodeId, newNodeId) { action.disabled = function(graph) { var connections = action.connections(graph); - if (connections.length === 0 || (wayIds && wayIds.length !== connections.length)) + if (connections.length === 0) return 'not_connected'; var parentWays = graph.parentWays(graph.entity(nodeId)); From 9d029a37a81ae94194431030aa6622e9921a72e1 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sun, 7 Apr 2019 13:39:51 -0700 Subject: [PATCH 25/50] Delete newly-created untagged relations when deselecting them (close #3812) --- modules/actions/delete_relation.js | 4 ++-- modules/modes/select.js | 20 ++++++++++++++++++-- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/modules/actions/delete_relation.js b/modules/actions/delete_relation.js index c9555587b..935f4e688 100644 --- a/modules/actions/delete_relation.js +++ b/modules/actions/delete_relation.js @@ -3,12 +3,12 @@ import { utilArrayUniq } from '../util'; // https://github.com/openstreetmap/potlatch2/blob/master/net/systemeD/halcyon/connection/actions/DeleteRelationAction.as -export function actionDeleteRelation(relationID) { +export function actionDeleteRelation(relationID, allowUntaggedMembers) { function canDeleteEntity(entity, graph) { return !graph.parentWays(entity).length && !graph.parentRelations(entity).length && - !entity.hasInterestingTags(); + (!entity.hasInterestingTags() && !allowUntaggedMembers); } diff --git a/modules/modes/select.js b/modules/modes/select.js index 117cb7210..c14f78cdc 100644 --- a/modules/modes/select.js +++ b/modules/modes/select.js @@ -5,7 +5,7 @@ import { import { t } from '../util/locale'; -import { actionAddMidpoint } from '../actions'; +import { actionAddMidpoint, actionDeleteRelation } from '../actions'; import { behaviorBreathe, @@ -67,7 +67,7 @@ export function modeSelect(context, selectedIDs) { function singular() { - if (selectedIDs.length === 1) { + if (selectedIDs && selectedIDs.length === 1) { return context.hasEntity(selectedIDs[0]); } } @@ -551,6 +551,22 @@ export function modeSelect(context, selectedIDs) { context.map().on('drawn.select', null); context.ui().sidebar.hide(); context.features().forceVisible([]); + + var entity = singular(); + if (newFeature && + entity && + entity.type === 'relation' && + // no tags + Object.keys(entity.tags).length === 0 && + // no parent relations + context.graph().parentRelations(entity).length === 0 && + // no members or one member with no role + (entity.members.length === 0 || (entity.members.length === 1 && !entity.members[0].role))) { + + // the user added this relation but didn't edit it at all, so just delete it + var deleteAction = actionDeleteRelation(entity.id, true /* don't delete untagged members */); + context.perform(deleteAction, t('operations.delete.annotation.relation')); + } }; From eafd2cec3ec2856942f3362e8a1460b348f862d8 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sun, 7 Apr 2019 14:05:31 -0700 Subject: [PATCH 26/50] Add a tooltip to the plus button in the "All relations" section (re: #3812) --- data/core.yaml | 1 + dist/locales/en.json | 1 + modules/ui/raw_membership_editor.js | 11 ++++++++--- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 5e98b9c13..d7b123749 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -474,6 +474,7 @@ en: all_tags: All tags all_members: All members all_relations: All relations + add_to_relation: Add to a relation new_relation: New relation... choose_relation: Choose a parent relation role: Role diff --git a/dist/locales/en.json b/dist/locales/en.json index 1c02fa45c..b37aeb307 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -584,6 +584,7 @@ "all_tags": "All tags", "all_members": "All members", "all_relations": "All relations", + "add_to_relation": "Add to a relation", "new_relation": "New relation...", "choose_relation": "Choose a parent relation", "role": "Role", diff --git a/modules/ui/raw_membership_editor.js b/modules/ui/raw_membership_editor.js index d3b36f3f7..0d9d1b606 100644 --- a/modules/ui/raw_membership_editor.js +++ b/modules/ui/raw_membership_editor.js @@ -3,7 +3,7 @@ import { select as d3_select } from 'd3-selection'; -import { t } from '../util/locale'; +import { t, textDirection } from '../util/locale'; import { actionAddEntity, @@ -17,6 +17,7 @@ import { osmEntity, osmRelation } from '../osm'; import { services } from '../services'; import { svgIcon } from '../svg'; import { uiCombobox, uiDisclosure } from './index'; +import { tooltip } from '../util/tooltip'; import { utilArrayGroupBy, utilDisplayName, utilNoAuto, utilHighlightEntities } from '../util'; @@ -308,10 +309,14 @@ export function uiRawMembershipEditor(context) { .append('div') .attr('class', 'add-row'); - addRowEnter + var addRelationButton = addRowEnter .append('button') - .attr('class', 'add-relation') + .attr('class', 'add-relation'); + + addRelationButton .call(svgIcon('#iD-icon-plus', 'light')); + addRelationButton + .call(tooltip().title(t('inspector.add_to_relation')).placement(textDirection === 'ltr' ? 'right' : 'left')); addRowEnter .append('div') From 5e4e2ff7eea9b014c3802c90da3a07d467fe7950 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sun, 7 Apr 2019 14:29:05 -0700 Subject: [PATCH 27/50] Fix an issue where stale warning counts would still appear in changeset tags if they had all been resolved (re: #6123) --- modules/ui/commit.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/ui/commit.js b/modules/ui/commit.js index 0a3269cfe..fae3910ea 100644 --- a/modules/ui/commit.js +++ b/modules/ui/commit.js @@ -114,6 +114,11 @@ export function uiCommit(context) { } } + for (var key in tags) { + // remove existing warning counts + if (key.match(/^warnings:/)) delete tags[key]; + } + var warningCountsByType = {}; context.validator().getWarnings().forEach(function(warning) { // deletion count can be derived so don't tag that warning in the changeset From c3653616e6f99f79afd03501c0563c0703a360c3 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sun, 7 Apr 2019 14:49:33 -0700 Subject: [PATCH 28/50] Make modals work better at small screen sizes Flexbox the modal action buttons Replace "col8" CSS class --- css/80_app.css | 14 +++++++++----- modules/ui/curtain.js | 2 +- modules/ui/modal.js | 2 +- modules/ui/restore.js | 11 ++++------- modules/ui/splash.js | 10 +++++----- 5 files changed, 20 insertions(+), 19 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index bfef7c175..122bcb87a 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -227,7 +227,6 @@ table.tags, table.tags td, table.tags th { /* Grid ------------------------------------------------------- */ .col6 { float: left; width: 50.0000%; max-width: 600px; } -.col8 { float: left; width: 66.6666%; } .col12 { float: left; width: 100.0000%; } @@ -4357,6 +4356,9 @@ img.tile-debug { right: 0; margin: auto; z-index: 50; + width: 50%; + min-width: 200px; + max-width: 600px; } .modal .loader { @@ -4422,7 +4424,9 @@ img.tile-debug { .loading-modal { text-align: center; } - +.modal-actions { + display: flex; +} .modal-actions button { font-weight: normal; color: #7092ff; @@ -4430,7 +4434,7 @@ img.tile-debug { border-radius: 0; height: 160px; text-align: center; - display: inline-block; + width: 100%; } .modal-actions button:hover { background-color: #ececec; @@ -5331,8 +5335,8 @@ li.hide + li.version .badge .tooltip .tooltip-arrow { padding: 10px 20px 0 20px; } -[dir='rtl'] .curtain-tooltip .tooltip-inner .button-section button.col8 { - float: right; +.curtain-tooltip .tooltip-inner .button-section button { + width: 66.6666%; } .curtain-tooltip .tooltip-inner .instruction:only-child { diff --git a/modules/ui/curtain.js b/modules/ui/curtain.js index ba671bfdd..370ad419c 100644 --- a/modules/ui/curtain.js +++ b/modules/ui/curtain.js @@ -106,7 +106,7 @@ export function uiCurtain() { if (options.buttonText && options.buttonCallback) { html += '
' + - '
'; + ''; } var classes = 'curtain-tooltip tooltip in ' + (options.tooltipClass || ''); diff --git a/modules/ui/modal.js b/modules/ui/modal.js index 9ffc14ade..877bafbac 100644 --- a/modules/ui/modal.js +++ b/modules/ui/modal.js @@ -41,7 +41,7 @@ export function uiModal(selection, blocking) { var modal = shaded .append('div') - .attr('class', 'modal fillL col6'); + .attr('class', 'modal fillL'); if (!blocking) { shaded.on('click.remove-modal', function() { diff --git a/modules/ui/restore.js b/modules/ui/restore.js index 316842fce..7330e8bf4 100644 --- a/modules/ui/restore.js +++ b/modules/ui/restore.js @@ -11,13 +11,10 @@ export function uiRestore(context) { var modalSelection = uiModal(selection, true); modalSelection.select('.modal') - .attr('class', 'modal fillL col6'); + .attr('class', 'modal fillL'); var introModal = modalSelection.select('.content'); - introModal - .attr('class','cf'); - introModal .append('div') .attr('class', 'modal-section') @@ -32,11 +29,11 @@ export function uiRestore(context) { var buttonWrap = introModal .append('div') - .attr('class', 'modal-actions cf'); + .attr('class', 'modal-actions'); var restore = buttonWrap .append('button') - .attr('class', 'restore col6') + .attr('class', 'restore') .on('click', function() { context.history().restore(); modalSelection.remove(); @@ -54,7 +51,7 @@ export function uiRestore(context) { var reset = buttonWrap .append('button') - .attr('class', 'reset col6') + .attr('class', 'reset') .on('click', function() { context.history().clearSaved(); modalSelection.remove(); diff --git a/modules/ui/splash.js b/modules/ui/splash.js index 91bb05bbe..61fd7cd01 100644 --- a/modules/ui/splash.js +++ b/modules/ui/splash.js @@ -14,7 +14,7 @@ export function uiSplash(context) { var modalSelection = uiModal(selection); modalSelection.select('.modal') - .attr('class', 'modal-splash modal col6'); + .attr('class', 'modal-splash modal'); var introModal = modalSelection.select('.content') .append('div') @@ -22,7 +22,7 @@ export function uiSplash(context) { introModal .append('div') - .attr('class','modal-section cf') + .attr('class','modal-section') .append('h3').text(t('splash.welcome')); introModal @@ -37,11 +37,11 @@ export function uiSplash(context) { var buttonWrap = introModal .append('div') - .attr('class', 'modal-actions cf'); + .attr('class', 'modal-actions'); var walkthrough = buttonWrap .append('button') - .attr('class', 'walkthrough col6') + .attr('class', 'walkthrough') .on('click', function() { context.container().call(uiIntro(context)); modalSelection.close(); @@ -59,7 +59,7 @@ export function uiSplash(context) { var startEditing = buttonWrap .append('button') - .attr('class', 'start-editing col6') + .attr('class', 'start-editing') .on('click', modalSelection.close); startEditing From 8051ed5d82131ed981222546f9c06bc72e16734b Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sun, 7 Apr 2019 15:24:00 -0700 Subject: [PATCH 29/50] Add Trailhead preset --- data/presets.yaml | 5 ++++ data/presets/presets.json | 1 + data/presets/presets/highway/trailhead.json | 28 +++++++++++++++++++++ data/taginfo.json | 1 + dist/locales/en.json | 4 +++ svg/fontawesome/fas-hiking.svg | 1 + 6 files changed, 40 insertions(+) create mode 100644 data/presets/presets/highway/trailhead.json create mode 100644 svg/fontawesome/fas-hiking.svg diff --git a/data/presets.yaml b/data/presets.yaml index b39b7bef7..a865d8973 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -4338,6 +4338,11 @@ en: name: Traffic Signals # 'terms: light,stoplight,traffic light' terms: '' + highway/trailhead: + # highway=trailhead + name: Trailhead + # 'terms: hiking,mile zero,mountain biking,mountaineering,trail endpoint,trail start,staging area,trekking' + terms: '' highway/trunk: # highway=trunk name: Trunk Road diff --git a/data/presets/presets.json b/data/presets/presets.json index 8f7281aa2..1318d70d2 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -481,6 +481,7 @@ "highway/track": {"icon": "fas-truck-monster", "fields": ["name", "tracktype", "surface", "width", "structure", "access", "incline", "smoothness"], "moreFields": ["covered", "flood_prone", "horse_scale", "maxweight_bridge", "mtb/scale", "mtb/scale/uphill", "mtb/scale/imba"], "geometry": ["line"], "tags": {"highway": "track"}, "terms": ["woods road", "forest road", "logging road", "fire road", "farm road", "agricultural road", "ranch road", "carriage road", "primitive", "unmaintained", "rut", "offroad", "4wd", "4x4", "four wheel drive", "atv", "quad", "jeep", "double track", "two track"], "name": "Unmaintained Track Road"}, "highway/traffic_mirror": {"geometry": ["point", "vertex"], "fields": ["direction"], "tags": {"highway": "traffic_mirror"}, "terms": ["blind spot", "convex", "corner", "curved", "roadside", "round", "safety", "sphere", "visibility"], "name": "Traffic Mirror"}, "highway/traffic_signals": {"icon": "temaki-traffic_signals", "geometry": ["vertex"], "tags": {"highway": "traffic_signals"}, "fields": ["traffic_signals", "traffic_signals/direction"], "terms": ["light", "stoplight", "traffic light"], "name": "Traffic Signals"}, + "highway/trailhead": {"icon": "fas-hiking", "fields": ["name", "operator", "elevation", "access_simple", "fee", "opening_hours"], "geometry": ["vertex"], "tags": {"highway": "trailhead"}, "terms": ["hiking", "mile zero", "mountain biking", "mountaineering", "trail endpoint", "trail start", "staging area", "trekking"], "name": "Trailhead"}, "highway/trunk_link": {"icon": "iD-highway-trunk-link", "fields": ["{highway/motorway_link}"], "moreFields": ["{highway/motorway_link}"], "geometry": ["line"], "tags": {"highway": "trunk_link"}, "terms": ["on ramp", "off ramp", "ramp", "road", "street"], "name": "Trunk Link"}, "highway/trunk": {"icon": "iD-highway-trunk", "fields": ["name", "ref_road_number", "oneway", "maxspeed", "lanes", "surface", "structure", "access"], "moreFields": ["covered", "incline", "junction_line", "lit", "maxheight", "minspeed", "maxweight_bridge", "smoothness", "toll"], "geometry": ["line"], "tags": {"highway": "trunk"}, "terms": ["road", "street"], "name": "Trunk Road"}, "highway/turning_circle": {"icon": "maki-circle-stroked", "geometry": ["vertex"], "tags": {"highway": "turning_circle"}, "terms": ["cul-de-sac"], "name": "Turning Circle"}, diff --git a/data/presets/presets/highway/trailhead.json b/data/presets/presets/highway/trailhead.json new file mode 100644 index 000000000..c644a61ff --- /dev/null +++ b/data/presets/presets/highway/trailhead.json @@ -0,0 +1,28 @@ +{ + "icon": "fas-hiking", + "fields": [ + "name", + "operator", + "elevation", + "access_simple", + "fee", + "opening_hours" + ], + "geometry": [ + "vertex" + ], + "tags": { + "highway": "trailhead" + }, + "terms": [ + "hiking", + "mile zero", + "mountain biking", + "mountaineering", + "trail endpoint", + "trail start", + "staging area", + "trekking" + ], + "name": "Trailhead" +} diff --git a/data/taginfo.json b/data/taginfo.json index 216ce832c..050c79ed5 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -461,6 +461,7 @@ {"key": "highway", "value": "track", "description": "🄿 Unmaintained Track Road", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-truck-monster.svg?sanitize=true"}, {"key": "highway", "value": "traffic_mirror", "description": "🄿 Traffic Mirror", "object_types": ["node"]}, {"key": "highway", "value": "traffic_signals", "description": "🄿 Traffic Signals", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/traffic_signals.svg?sanitize=true"}, + {"key": "highway", "value": "trailhead", "description": "🄿 Trailhead", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-hiking.svg?sanitize=true"}, {"key": "highway", "value": "trunk_link", "description": "🄿 Trunk Link", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-trunk-link.svg?sanitize=true"}, {"key": "highway", "value": "trunk", "description": "🄿 Trunk Road", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-trunk.svg?sanitize=true"}, {"key": "highway", "value": "turning_circle", "description": "🄿 Turning Circle", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/circle-stroked-15.svg?sanitize=true"}, diff --git a/dist/locales/en.json b/dist/locales/en.json index b37aeb307..567058b26 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -5970,6 +5970,10 @@ "name": "Traffic Signals", "terms": "light,stoplight,traffic light" }, + "highway/trailhead": { + "name": "Trailhead", + "terms": "hiking,mile zero,mountain biking,mountaineering,trail endpoint,trail start,staging area,trekking" + }, "highway/trunk_link": { "name": "Trunk Link", "terms": "on ramp,off ramp,ramp,road,street" diff --git a/svg/fontawesome/fas-hiking.svg b/svg/fontawesome/fas-hiking.svg new file mode 100644 index 000000000..5b9ac06a7 --- /dev/null +++ b/svg/fontawesome/fas-hiking.svg @@ -0,0 +1 @@ + \ No newline at end of file From 3c515dcaafd4bfa2b29cdfbbe278371166aaeab6 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sun, 7 Apr 2019 16:42:25 -0700 Subject: [PATCH 30/50] Add or update icons for various presets --- data/presets/presets.json | 502 +++++++++--------- data/presets/presets/aerialway/cable_car.json | 1 + data/presets/presets/aerialway/gondola.json | 1 + data/presets/presets/amenity/childcare.json | 2 +- data/presets/presets/amenity/courthouse.json | 2 +- data/presets/presets/amenity/photo_booth.json | 2 +- .../presets/amenity/waste_disposal.json | 2 +- .../craft/photographic_laboratory.json | 2 +- .../presets/healthcare/birthing_center.json | 2 +- .../presets/healthcare/laboratory.json | 2 +- .../presets/healthcare/speech_therapist.json | 2 +- data/presets/presets/leisure/hackerspace.json | 2 +- data/presets/presets/office/architect.json | 2 +- data/presets/presets/shop/baby_goods.json | 2 +- .../presets/shop/bathroom_furnishing.json | 2 +- data/presets/presets/shop/car_parts.json | 2 +- data/presets/presets/shop/computer.json | 2 +- data/presets/presets/shop/convenience.json | 2 +- data/presets/presets/shop/craft.json | 2 +- data/presets/presets/shop/electronics.json | 2 +- data/presets/presets/shop/frame.json | 2 +- data/presets/presets/shop/herbalist.json | 2 +- data/presets/presets/shop/mobile_phone.json | 2 +- data/presets/presets/shop/music.json | 2 +- .../presets/shop/musical_instrument.json | 2 +- data/presets/presets/shop/sports.json | 2 +- data/taginfo.json | 50 +- svg/fontawesome/fas-baby-carriage.svg | 1 + svg/fontawesome/fas-baby.svg | 1 + svg/fontawesome/fas-bath.svg | 1 + svg/fontawesome/fas-camera-retro.svg | 1 + svg/fontawesome/fas-car-battery.svg | 1 + svg/fontawesome/fas-child.svg | 1 + svg/fontawesome/fas-code.svg | 1 + svg/fontawesome/fas-comment.svg | 1 + svg/fontawesome/fas-compact-disc.svg | 1 + svg/fontawesome/fas-drafting-compass.svg | 1 + svg/fontawesome/fas-dumpster.svg | 1 + svg/fontawesome/fas-futbol.svg | 1 + svg/fontawesome/fas-gavel.svg | 1 + svg/fontawesome/fas-guitar.svg | 1 + svg/fontawesome/fas-laptop.svg | 1 + svg/fontawesome/fas-leaf.svg | 1 + svg/fontawesome/fas-mobile-alt.svg | 1 + svg/fontawesome/fas-palette.svg | 1 + svg/fontawesome/fas-person-booth.svg | 1 + svg/fontawesome/fas-plug.svg | 1 + svg/fontawesome/fas-shopping-basket.svg | 1 + svg/fontawesome/fas-tram.svg | 1 + svg/fontawesome/fas-vector-square.svg | 1 + svg/fontawesome/fas-vial.svg | 1 + 51 files changed, 325 insertions(+), 299 deletions(-) create mode 100644 svg/fontawesome/fas-baby-carriage.svg create mode 100644 svg/fontawesome/fas-baby.svg create mode 100644 svg/fontawesome/fas-bath.svg create mode 100644 svg/fontawesome/fas-camera-retro.svg create mode 100644 svg/fontawesome/fas-car-battery.svg create mode 100644 svg/fontawesome/fas-child.svg create mode 100644 svg/fontawesome/fas-code.svg create mode 100644 svg/fontawesome/fas-comment.svg create mode 100644 svg/fontawesome/fas-compact-disc.svg create mode 100644 svg/fontawesome/fas-drafting-compass.svg create mode 100644 svg/fontawesome/fas-dumpster.svg create mode 100644 svg/fontawesome/fas-futbol.svg create mode 100644 svg/fontawesome/fas-gavel.svg create mode 100644 svg/fontawesome/fas-guitar.svg create mode 100644 svg/fontawesome/fas-laptop.svg create mode 100644 svg/fontawesome/fas-leaf.svg create mode 100644 svg/fontawesome/fas-mobile-alt.svg create mode 100644 svg/fontawesome/fas-palette.svg create mode 100644 svg/fontawesome/fas-person-booth.svg create mode 100644 svg/fontawesome/fas-plug.svg create mode 100644 svg/fontawesome/fas-shopping-basket.svg create mode 100644 svg/fontawesome/fas-tram.svg create mode 100644 svg/fontawesome/fas-vector-square.svg create mode 100644 svg/fontawesome/fas-vial.svg diff --git a/data/presets/presets.json b/data/presets/presets.json index 1318d70d2..9f8c56463 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -23,10 +23,10 @@ "advertising/billboard": {"fields": ["direction", "lit"], "geometry": ["point", "vertex", "line"], "tags": {"advertising": "billboard"}, "name": "Billboard"}, "advertising/column": {"icon": "temaki-storage_tank", "fields": ["lit"], "geometry": ["point", "area"], "tags": {"advertising": "column"}, "name": "Advertising Column"}, "aerialway/station": {"icon": "maki-aerialway", "geometry": ["point", "vertex", "area"], "fields": ["aerialway/access", "aerialway/summer/access", "elevation", "building_area"], "tags": {"aerialway": "station"}, "matchScore": 0.95, "name": "Aerialway Station", "searchable": false, "replacement": "public_transport/station_aerialway"}, - "aerialway/cable_car": {"geometry": ["line"], "terms": ["tramway", "ropeway"], "fields": ["name", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/heating"], "tags": {"aerialway": "cable_car"}, "name": "Cable Car"}, + "aerialway/cable_car": {"icon": "fas-tram", "geometry": ["line"], "terms": ["tramway", "ropeway"], "fields": ["name", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/heating"], "tags": {"aerialway": "cable_car"}, "name": "Cable Car"}, "aerialway/chair_lift": {"icon": "temaki-chairlift", "geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "chair_lift"}, "name": "Chair Lift"}, "aerialway/drag_lift": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "drag_lift"}, "name": "Drag Lift"}, - "aerialway/gondola": {"geometry": ["line"], "fields": ["name", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "gondola"}, "name": "Gondola"}, + "aerialway/gondola": {"icon": "maki-aerialway", "geometry": ["line"], "fields": ["name", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "gondola"}, "name": "Gondola"}, "aerialway/goods": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "goods"}, "name": "Goods Aerialway"}, "aerialway/magic_carpet": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration", "aerialway/heating"], "tags": {"aerialway": "magic_carpet"}, "name": "Magic Carpet Lift"}, "aerialway/mixed_lift": {"geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "mixed_lift"}, "name": "Mixed Lift"}, @@ -76,7 +76,7 @@ "amenity/car_wash": {"icon": "temaki-car_wash", "fields": ["address", "building_area", "opening_hours", "payment_multi"], "moreFields": ["website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "car_wash"}, "name": "Car Wash"}, "amenity/casino": {"icon": "maki-casino", "fields": ["name", "operator", "address", "building_area", "opening_hours", "smoking"], "moreFields": ["air_conditioning", "payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["gambling", "roulette", "craps", "poker", "blackjack"], "tags": {"amenity": "casino"}, "name": "Casino"}, "amenity/charging_station": {"icon": "fas-charging-station", "fields": ["name", "operator", "capacity", "fee", "payment_multi"], "geometry": ["point"], "tags": {"amenity": "charging_station"}, "terms": ["EV", "Electric Vehicle", "Supercharger"], "name": "Charging Station"}, - "amenity/childcare": {"icon": "maki-school", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "moreFields": ["payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["daycare", "orphanage", "playgroup"], "tags": {"amenity": "childcare"}, "name": "Nursery/Childcare"}, + "amenity/childcare": {"icon": "fas-child", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "moreFields": ["payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["daycare", "orphanage", "playgroup"], "tags": {"amenity": "childcare"}, "name": "Nursery/Childcare"}, "amenity/cinema": {"icon": "maki-cinema", "fields": ["name", "address", "building_area", "opening_hours", "payment_multi"], "moreFields": ["air_conditioning", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["drive-in", "film", "flick", "movie", "theater", "picture", "show", "screen"], "tags": {"amenity": "cinema"}, "name": "Cinema"}, "amenity/clinic": {"icon": "maki-doctor", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "moreFields": ["air_conditioning", "payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["medical", "urgentcare"], "tags": {"amenity": "clinic"}, "addTags": {"amenity": "clinic", "healthcare": "clinic"}, "removeTags": {"amenity": "clinic", "healthcare": "clinic"}, "reference": {"key": "amenity", "value": "clinic"}, "name": "Clinic"}, "amenity/clinic/abortion": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": [], "tags": {"amenity": "clinic", "healthcare": "clinic", "healthcare:speciality": "abortion"}, "reference": {"key": "amenity", "value": "clinic"}, "name": "Abortion Clinic"}, @@ -87,7 +87,7 @@ "amenity/community_centre": {"icon": "maki-town-hall", "fields": ["name", "operator", "address", "building_area"], "moreFields": ["air_conditioning", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["event", "hall"], "tags": {"amenity": "community_centre"}, "name": "Community Center"}, "amenity/community_centre/lgbtq": {"icon": "maki-town-hall", "geometry": ["point", "area"], "terms": ["lgbtq event", "lgbtq hall", "lgbt event", "lgbt hall", "lgb event", "lgb hall"], "tags": {"amenity": "community_centre", "lgbtq": "primary"}, "name": "LGBTQ+ Community Center"}, "amenity/compressed_air": {"icon": "maki-car", "fields": ["operator", "fee", "payment_multi", "lit"], "geometry": ["point", "area"], "tags": {"amenity": "compressed_air"}, "name": "Compressed Air"}, - "amenity/courthouse": {"icon": "temaki-courthouse", "fields": ["name", "operator", "address", "building_area"], "moreFields": ["website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "courthouse"}, "name": "Courthouse"}, + "amenity/courthouse": {"icon": "fas-gavel", "fields": ["name", "operator", "address", "building_area"], "moreFields": ["website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "courthouse"}, "name": "Courthouse"}, "amenity/crematorium": {"icon": "maki-cemetery", "fields": ["name", "website", "phone", "opening_hours", "wheelchair"], "moreFields": ["address", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["area", "point"], "tags": {"amenity": "crematorium"}, "terms": ["cemetery", "funeral"], "name": "Crematorium"}, "amenity/dentist": {"icon": "maki-dentist", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "moreFields": ["payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["tooth", "teeth"], "tags": {"amenity": "dentist"}, "addTags": {"amenity": "dentist", "healthcare": "dentist"}, "removeTags": {"amenity": "dentist", "healthcare": "dentist"}, "reference": {"key": "amenity", "value": "dentist"}, "name": "Dentist"}, "amenity/dive_centre": {"icon": "maki-swimming", "fields": ["name", "operator", "address", "building_area", "opening_hours", "scuba_diving"], "moreFields": ["payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["diving", "scuba"], "tags": {"amenity": "dive_centre"}, "name": "Dive Center"}, @@ -131,7 +131,7 @@ "amenity/payment_centre": {"icon": "maki-bank", "fields": ["name", "brand", "address", "building_area", "opening_hours", "payment_multi"], "moreFields": ["currency_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["check", "tax pay", "bill pay", "currency", "finance", "cash", "money"], "tags": {"amenity": "payment_centre"}, "name": "Payment Center"}, "amenity/payment_terminal": {"icon": "maki-bank", "fields": ["name", "brand", "address", "opening_hours", "payment_multi"], "moreFields": ["currency_multi", "wheelchair"], "geometry": ["point"], "terms": ["interactive kiosk", "ekiosk", "atm", "bill pay", "tax pay", "phone pay", "finance", "cash", "money transfer", "card"], "tags": {"amenity": "payment_terminal"}, "name": "Payment Terminal"}, "amenity/pharmacy": {"icon": "maki-pharmacy", "fields": ["name", "operator", "address", "building_area", "drive_through", "dispensing"], "moreFields": ["opening_hours", "payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "healthcare": "pharmacy"}, "removeTags": {"amenity": "pharmacy", "healthcare": "pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "terms": ["apothecary", "drug store", "drugstore", "med*", "prescription"], "name": "Pharmacy Counter"}, - "amenity/photo_booth": {"icon": "maki-attraction", "fields": ["name", "operator", "payment_multi", "wheelchair"], "geometry": ["point", "area"], "terms": ["photobooth", "photo", "booth", "kiosk", "camera"], "tags": {"amenity": "photo_booth"}, "name": "Photo Booth"}, + "amenity/photo_booth": {"icon": "fas-person-booth", "fields": ["name", "operator", "payment_multi", "wheelchair"], "geometry": ["point", "area"], "terms": ["photobooth", "photo", "booth", "kiosk", "camera"], "tags": {"amenity": "photo_booth"}, "name": "Photo Booth"}, "amenity/place_of_worship": {"icon": "maki-place-of-worship", "fields": ["name", "religion", "denomination", "address", "building_area", "service_times"], "moreFields": ["air_conditioning", "opening_hours", "internet_access", "internet_access/ssid", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["abbey", "basilica", "bethel", "cathedral", "chancel", "chantry", "chapel", "church", "fold", "house of God", "house of prayer", "house of worship", "minster", "mission", "mosque", "oratory", "parish", "sacellum", "sanctuary", "shrine", "synagogue", "tabernacle", "temple"], "tags": {"amenity": "place_of_worship"}, "name": "Place of Worship"}, "amenity/place_of_worship/buddhist": {"icon": "maki-religious-buddhist", "fields": ["name", "religion", "denomination", "building_area", "address", "service_times"], "geometry": ["point", "area"], "terms": ["stupa", "vihara", "monastery", "temple", "pagoda", "zendo", "dojo"], "tags": {"amenity": "place_of_worship", "religion": "buddhist"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Buddhist Temple"}, "amenity/place_of_worship/christian": {"icon": "maki-religious-christian", "fields": ["name", "religion", "denomination", "building_area", "address", "service_times"], "geometry": ["point", "area"], "terms": ["christian", "abbey", "basilica", "bethel", "cathedral", "chancel", "chantry", "chapel", "fold", "house of God", "house of prayer", "house of worship", "minster", "mission", "oratory", "parish", "sacellum", "sanctuary", "shrine", "tabernacle", "temple"], "tags": {"amenity": "place_of_worship", "religion": "christian"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Christian Church"}, @@ -220,7 +220,7 @@ "amenity/vending_machine/sweets": {"icon": "temaki-vending_machine", "geometry": ["point"], "terms": ["candy", "gum", "chip", "pretzel", "cookie", "cracker"], "tags": {"amenity": "vending_machine", "vending": "sweets"}, "reference": {"key": "vending", "value": "sweets"}, "name": "Snack Vending Machine"}, "amenity/veterinary": {"icon": "temaki-veterinary_care", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "moreFields": ["fee", "payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["pet clinic", "veterinarian", "animal hospital", "pet doctor"], "tags": {"amenity": "veterinary"}, "name": "Veterinary"}, "amenity/waste_basket": {"icon": "maki-waste-basket", "fields": ["collection_times"], "geometry": ["point", "vertex"], "tags": {"amenity": "waste_basket"}, "terms": ["bin", "garbage", "rubbish", "litter", "trash"], "name": "Waste Basket"}, - "amenity/waste_disposal": {"icon": "maki-waste-basket", "fields": ["operator", "collection_times"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "waste_disposal"}, "terms": ["garbage", "rubbish", "litter", "trash"], "name": "Garbage Dumpster"}, + "amenity/waste_disposal": {"icon": "fas-dumpster", "fields": ["operator", "collection_times"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "waste_disposal"}, "terms": ["garbage", "rubbish", "litter", "trash"], "name": "Garbage Dumpster"}, "amenity/waste_transfer_station": {"icon": "maki-waste-basket", "fields": ["name", "operator", "address", "opening_hours", "fee", "payment_multi"], "moreFields": ["website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["dump", "garbage", "recycling", "rubbish", "scrap", "trash"], "tags": {"amenity": "waste_transfer_station"}, "name": "Waste Transfer Station"}, "amenity/waste/dog_excrement": {"icon": "maki-waste-basket", "fields": ["collection_times"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "waste_basket", "waste": "dog_excrement"}, "reference": {"key": "waste", "value": "dog_excrement"}, "terms": ["bin", "garbage", "rubbish", "litter", "trash", "poo", "dog"], "name": "Dog Excrement Bin"}, "amenity/water_point": {"icon": "maki-drinking-water", "fields": ["operator", "fee", "payment_multi"], "geometry": ["area", "vertex", "point"], "tags": {"amenity": "water_point"}, "name": "RV Drinking Water"}, @@ -354,7 +354,7 @@ "craft/metal_construction": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"craft": "metal_construction"}, "name": "Metal Construction"}, "craft/painter": {"icon": "fas-paint-roller", "geometry": ["point", "area"], "tags": {"craft": "painter"}, "name": "Painter"}, "craft/photographer": {"icon": "maki-attraction", "geometry": ["point", "area"], "tags": {"craft": "photographer"}, "name": "Photographer"}, - "craft/photographic_laboratory": {"icon": "maki-attraction", "geometry": ["point", "area"], "terms": ["film"], "tags": {"craft": "photographic_laboratory"}, "name": "Photographic Laboratory"}, + "craft/photographic_laboratory": {"icon": "fas-camera-retro", "geometry": ["point", "area"], "terms": ["film"], "tags": {"craft": "photographic_laboratory"}, "name": "Photographic Laboratory"}, "craft/plasterer": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"craft": "plasterer"}, "name": "Plasterer"}, "craft/plumber": {"icon": "temaki-plumber", "geometry": ["point", "area"], "terms": ["pipe"], "tags": {"craft": "plumber"}, "name": "Plumber"}, "craft/pottery": {"icon": "maki-art-gallery", "geometry": ["point", "area"], "terms": ["ceramic"], "tags": {"craft": "pottery"}, "name": "Pottery"}, @@ -408,10 +408,10 @@ "healthcare/alternative": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["acupuncture", "anthroposophical", "applied kinesiology", "aromatherapy", "ayurveda", "herbalism", "homeopathy", "hydrotherapy", "hypnosis", "naturopathy", "osteopathy", "reflexology", "reiki", "shiatsu", "traditional", "tuina", "unani"], "tags": {"healthcare": "alternative"}, "name": "Alternative Medicine"}, "healthcare/alternative/chiropractic": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["back", "pain", "spine"], "tags": {"healthcare": "alternative", "healthcare:speciality": "chiropractic"}, "name": "Chiropractor"}, "healthcare/audiologist": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["ear", "hearing", "sound"], "tags": {"healthcare": "audiologist"}, "name": "Audiologist"}, - "healthcare/birthing_center": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["baby", "childbirth", "delivery", "labour", "labor", "pregnancy"], "tags": {"healthcare": "birthing_center"}, "name": "Birthing Center"}, + "healthcare/birthing_center": {"icon": "fas-baby", "geometry": ["point", "area"], "terms": ["baby", "childbirth", "delivery", "labour", "labor", "pregnancy"], "tags": {"healthcare": "birthing_center"}, "name": "Birthing Center"}, "healthcare/blood_donation": {"icon": "maki-blood-bank", "fields": ["{healthcare}", "blood_components"], "geometry": ["point", "area"], "terms": ["blood bank", "blood donation", "blood transfusion", "apheresis", "plasmapheresis", "plateletpheresis", "stem cell donation"], "tags": {"healthcare": "blood_donation"}, "name": "Blood Donor Center"}, "healthcare/hospice": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["terminal", "illness"], "tags": {"healthcare": "hospice"}, "name": "Hospice"}, - "healthcare/laboratory": {"icon": "maki-hospital", "fields": ["name", "operator", "website", "ref", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["medical_laboratory", "medical_lab", "blood_check"], "tags": {"healthcare": "laboratory"}, "name": "Medical Laboratory"}, + "healthcare/laboratory": {"icon": "fas-vial", "fields": ["name", "operator", "website", "ref", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["medical_laboratory", "medical_lab", "blood_check"], "tags": {"healthcare": "laboratory"}, "name": "Medical Laboratory"}, "healthcare/midwife": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["baby", "childbirth", "delivery", "labour", "labor", "pregnancy"], "tags": {"healthcare": "midwife"}, "name": "Midwife"}, "healthcare/occupational_therapist": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["therapist", "therapy"], "tags": {"healthcare": "occupational_therapist"}, "name": "Occupational Therapist"}, "healthcare/optometrist": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["eye", "glasses", "lasik", "lenses", "vision"], "tags": {"healthcare": "optometrist"}, "name": "Optometrist"}, @@ -419,7 +419,7 @@ "healthcare/podiatrist": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["foot", "feet", "nails"], "tags": {"healthcare": "podiatrist"}, "name": "Podiatrist"}, "healthcare/psychotherapist": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["anxiety", "counselor", "depression", "mental health", "mind", "suicide", "therapist", "therapy"], "tags": {"healthcare": "psychotherapist"}, "name": "Psychotherapist"}, "healthcare/rehabilitation": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["rehab", "therapist", "therapy"], "tags": {"healthcare": "rehabilitation"}, "name": "Rehabilitation Facility"}, - "healthcare/speech_therapist": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["speech", "therapist", "therapy", "voice"], "tags": {"healthcare": "speech_therapist"}, "name": "Speech Therapist"}, + "healthcare/speech_therapist": {"icon": "fas-comment", "geometry": ["point", "area"], "terms": ["speech", "therapist", "therapy", "voice"], "tags": {"healthcare": "speech_therapist"}, "name": "Speech Therapist"}, "highway/bus_stop": {"icon": "maki-bus", "fields": ["name", "network", "operator", "bench", "shelter"], "geometry": ["point", "vertex"], "tags": {"highway": "bus_stop"}, "matchScore": 0.95, "name": "Bus Stop", "searchable": false, "replacement": "public_transport/platform/bus_point"}, "highway/bridleway": {"fields": ["name", "surface", "width", "structure", "access", "incline", "horse_scale"], "moreFields": ["covered", "dog", "lit", "maxweight_bridge", "smoothness", "wheelchair"], "icon": "maki-horse-riding", "geometry": ["line"], "tags": {"highway": "bridleway"}, "terms": ["bridleway", "equestrian", "horse", "trail"], "name": "Bridle Path"}, "highway/bus_guideway": {"icon": "maki-bus", "fields": ["name", "operator", "oneway", "structure", "covered"], "geometry": ["line"], "tags": {"highway": "bus_guideway"}, "addTags": {"highway": "bus_guideway", "access": "no", "bus": "designated"}, "removeTags": {"highway": "bus_guideway", "access": "no", "bus": "designated"}, "terms": [], "name": "Bus Guideway"}, @@ -585,7 +585,7 @@ "leisure/fitness_station/stairs": {"icon": "maki-pitch", "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "stairs"}, "addTags": {"leisure": "fitness_station", "fitness_station": "stairs", "sport": "fitness"}, "removeTags": {"leisure": "fitness_station", "fitness_station": "stairs", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["exercise", "fitness", "gym", "steps", "trim trail"], "name": "Exercise Stairs"}, "leisure/garden": {"icon": "maki-garden", "fields": ["name", "operator", "access_simple"], "moreFields": ["fee", "payment_multi", "website", "phone", "email", "fax"], "geometry": ["point", "vertex", "area"], "tags": {"leisure": "garden"}, "name": "Garden"}, "leisure/golf_course": {"icon": "maki-golf", "fields": ["name", "operator", "address", "opening_hours"], "moreFields": ["payment_multi", "website", "phone", "email", "fax"], "geometry": ["point", "area"], "terms": ["links"], "tags": {"leisure": "golf_course"}, "name": "Golf Course"}, - "leisure/hackerspace": {"icon": "maki-commercial", "fields": ["name", "address", "building_area", "opening_hours", "website"], "moreFields": ["payment_multi", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "phone", "email", "fax"], "geometry": ["point", "area"], "terms": ["makerspace", "hackspace", "hacklab"], "tags": {"leisure": "hackerspace"}, "name": "Hackerspace"}, + "leisure/hackerspace": {"icon": "fas-code", "fields": ["name", "address", "building_area", "opening_hours", "website"], "moreFields": ["payment_multi", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "phone", "email", "fax"], "geometry": ["point", "area"], "terms": ["makerspace", "hackspace", "hacklab"], "tags": {"leisure": "hackerspace"}, "name": "Hackerspace"}, "leisure/horse_riding": {"icon": "maki-horse-riding", "fields": ["name", "access_simple", "operator", "address", "building"], "moreFields": ["opening_hours", "payment_multi", "website", "phone", "email", "fax"], "geometry": ["point", "area"], "terms": ["equestrian", "stable"], "tags": {"leisure": "horse_riding"}, "name": "Horseback Riding Facility"}, "leisure/ice_rink": {"icon": "fas-skating", "fields": ["name", "seasonal", "sport_ice", "operator", "address", "building"], "moreFields": ["opening_hours", "payment_multi", "website", "phone", "email", "fax"], "geometry": ["point", "area"], "terms": ["hockey", "skating", "curling"], "tags": {"leisure": "ice_rink"}, "name": "Ice Rink"}, "leisure/marina": {"icon": "maki-harbor", "fields": ["name", "operator", "capacity", "fee", "sanitary_dump_station", "power_supply"], "moreFields": ["address", "payment_multi", "internet_access", "internet_access/fee", "internet_access/ssid", "seamark/type", "website", "phone", "email", "fax"], "geometry": ["point", "vertex", "area"], "terms": ["boat"], "tags": {"leisure": "marina"}, "name": "Marina"}, @@ -719,7 +719,7 @@ "office/accountant": {"icon": "temaki-accounting", "geometry": ["point", "area"], "tags": {"office": "accountant"}, "terms": [], "name": "Accountant Office"}, "office/adoption_agency": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "adoption_agency"}, "terms": [], "name": "Adoption Agency"}, "office/advertising_agency": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "advertising_agency"}, "terms": ["ad", "ad agency", "advert agency", "advertising", "marketing"], "name": "Advertising Agency"}, - "office/architect": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "architect"}, "terms": [], "name": "Architect Office"}, + "office/architect": {"icon": "fas-drafting-compass", "geometry": ["point", "area"], "tags": {"office": "architect"}, "terms": [], "name": "Architect Office"}, "office/association": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "association"}, "terms": ["association", "non-profit", "nonprofit", "organization", "society"], "name": "Nonprofit Organization Office"}, "office/charity": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "charity"}, "terms": ["charitable organization"], "name": "Charity Office"}, "office/company": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "company"}, "terms": [], "name": "Corporate Office"}, @@ -897,10 +897,10 @@ "shop/antiques": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "antiques"}, "name": "Antiques Shop"}, "shop/appliance": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["air conditioner", "appliance", "dishwasher", "dryer", "freezer", "fridge", "grill", "kitchen", "oven", "refrigerator", "stove", "washer", "washing machine"], "tags": {"shop": "appliance"}, "name": "Appliance Store"}, "shop/art": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["art*", "exhibit*", "gallery"], "tags": {"shop": "art"}, "name": "Art Store"}, - "shop/baby_goods": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "baby_goods"}, "name": "Baby Goods Store"}, + "shop/baby_goods": {"icon": "fas-baby-carriage", "geometry": ["point", "area"], "tags": {"shop": "baby_goods"}, "name": "Baby Goods Store"}, "shop/bag": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["handbag", "purse"], "tags": {"shop": "bag"}, "name": "Bag/Luggage Store"}, "shop/bakery": {"icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery"}, "terms": ["bread", "cakes", "rolls"], "name": "Bakery"}, - "shop/bathroom_furnishing": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "bathroom_furnishing"}, "name": "Bathroom Furnishing Store"}, + "shop/bathroom_furnishing": {"icon": "fas-bath", "geometry": ["point", "area"], "tags": {"shop": "bathroom_furnishing"}, "name": "Bathroom Furnishing Store"}, "shop/beauty": {"icon": "maki-shop", "fields": ["{shop}", "beauty"], "geometry": ["point", "area"], "terms": ["spa", "salon", "tanning"], "tags": {"shop": "beauty"}, "name": "Beauty Shop"}, "shop/beauty/nails": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["manicure", "pedicure"], "tags": {"shop": "beauty", "beauty": "nails"}, "reference": {"key": "shop", "value": "beauty"}, "name": "Nail Salon"}, "shop/beauty/tanning": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "beauty", "beauty": "tanning"}, "reference": {"key": "leisure", "value": "tanning_salon"}, "name": "Tanning Salon"}, @@ -911,7 +911,7 @@ "shop/books": {"icon": "maki-shop", "fields": ["{shop}", "internet_access"], "moreFields": ["{shop}", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"shop": "books"}, "name": "Book Store"}, "shop/butcher": {"icon": "fas-bacon", "geometry": ["point", "area"], "terms": ["chicken", "beef", "lamb", "meat", "pork"], "tags": {"shop": "butcher"}, "name": "Butcher"}, "shop/candles": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "candles"}, "terms": ["wax"], "name": "Candle Shop"}, - "shop/car_parts": {"icon": "maki-car", "geometry": ["point", "area"], "terms": ["automobile", "automotive"], "tags": {"shop": "car_parts"}, "name": "Car Parts Store"}, + "shop/car_parts": {"icon": "fas-car-battery", "geometry": ["point", "area"], "terms": ["automobile", "automotive"], "tags": {"shop": "car_parts"}, "name": "Car Parts Store"}, "shop/car_repair": {"icon": "maki-car-repair", "fields": ["{shop}", "service/vehicle"], "geometry": ["point", "area"], "terms": ["automobile", "automotive", "garage", "service"], "tags": {"shop": "car_repair"}, "name": "Car Repair Shop"}, "shop/car": {"icon": "maki-car", "fields": ["name", "brand", "{shop}", "second_hand", "service/vehicle"], "geometry": ["point", "area"], "terms": ["automobile", "automotive"], "tags": {"shop": "car"}, "name": "Car Dealership"}, "shop/caravan": {"icon": "temaki-rv_park", "fields": ["name", "brand", "{shop}", "second_hand", "service/vehicle"], "geometry": ["point", "area"], "tags": {"shop": "caravan"}, "terms": ["auto", "camper", "recreational vehicle"], "name": "RV Dealership"}, @@ -924,13 +924,13 @@ "shop/clothes": {"icon": "maki-clothing-store", "fields": ["name", "clothes", "{shop}"], "geometry": ["point", "area"], "tags": {"shop": "clothes"}, "terms": ["blouses", "boutique", "bras", "clothes", "dresses", "fashion", "pants", "shirts", "shorts", "skirts", "slacks", "socks", "suits", "underwear"], "name": "Clothing Store"}, "shop/clothes/underwear": {"icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "clothes": "underwear"}, "reference": {"key": "clothes", "value": "underwear"}, "terms": ["boutique", "bras", "brassieres", "briefs", "boxers", "fashion", "lingerie", "panties", "slips", "socks", "stockings", "underclothes", "undergarments", "underpants", "undies"], "name": "Underwear Store"}, "shop/coffee": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "coffee"}, "name": "Coffee Store"}, - "shop/computer": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "computer"}, "terms": ["desktop", "laptop", "hardware", "operating system", "software"], "name": "Computer Store"}, + "shop/computer": {"icon": "fas-laptop", "geometry": ["point", "area"], "tags": {"shop": "computer"}, "terms": ["desktop", "laptop", "hardware", "operating system", "software"], "name": "Computer Store"}, "shop/confectionery": {"icon": "maki-confectionery", "geometry": ["point", "area"], "terms": ["sweet"], "tags": {"shop": "confectionery"}, "name": "Candy Store"}, - "shop/convenience": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience"}, "name": "Convenience Store"}, + "shop/convenience": {"icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience"}, "name": "Convenience Store"}, "shop/copyshop": {"icon": "fas-print", "geometry": ["point", "area"], "tags": {"shop": "copyshop"}, "terms": ["print", "scan"], "name": "Copy Store"}, "shop/cosmetics": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "cosmetics"}, "terms": ["make-up", "makeup"], "name": "Cosmetics Store"}, "shop/country_store": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "country_store"}, "name": "Country Store"}, - "shop/craft": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "craft"}, "terms": ["art*", "paint*", "frame"], "name": "Arts and Crafts Store"}, + "shop/craft": {"icon": "fas-palette", "geometry": ["point", "area"], "tags": {"shop": "craft"}, "terms": ["art*", "paint*", "frame"], "name": "Arts and Crafts Store"}, "shop/curtain": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["drape*", "window"], "tags": {"shop": "curtain"}, "name": "Curtain Store"}, "shop/dairy": {"icon": "fas-cheese", "geometry": ["point", "area"], "terms": ["milk", "egg", "cheese"], "tags": {"shop": "dairy"}, "name": "Dairy Store"}, "shop/deli": {"icon": "maki-restaurant", "geometry": ["point", "area"], "terms": ["lunch", "meat", "sandwich"], "tags": {"shop": "deli"}, "name": "Deli"}, @@ -938,7 +938,7 @@ "shop/doityourself": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "doityourself"}, "name": "DIY Store"}, "shop/dry_cleaning": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "dry_cleaning"}, "name": "Dry Cleaner"}, "shop/e-cigarette": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "e-cigarette"}, "terms": ["electronic", "vape", "vaping", "vapor"], "name": "E-Cigarette Shop"}, - "shop/electronics": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["appliance", "audio", "blueray", "camera", "computer", "dvd", "home theater", "radio", "speaker", "tv", "video"], "tags": {"shop": "electronics"}, "name": "Electronics Store"}, + "shop/electronics": {"icon": "fas-plug", "geometry": ["point", "area"], "terms": ["appliance", "audio", "blueray", "camera", "computer", "dvd", "home theater", "radio", "speaker", "tv", "video"], "tags": {"shop": "electronics"}, "name": "Electronics Store"}, "shop/erotic": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["sex", "porn"], "tags": {"shop": "erotic"}, "name": "Erotic Store"}, "shop/erotic/lgbtq": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["sex", "porn"], "tags": {"shop": "erotic", "lgbtq": "primary"}, "name": "LGBTQ+ Erotic Store"}, "shop/fabric": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["sew"], "tags": {"shop": "fabric"}, "name": "Fabric Store"}, @@ -946,7 +946,7 @@ "shop/fireplace": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["fireplace", "stove", "masonry heater"], "tags": {"shop": "fireplace"}, "name": "Fireplace Store"}, "shop/fishing": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "fishing"}, "terms": ["bait", "fishing line", "flies", "fly", "lure", "reel", "rod", "tackle"], "name": "Fishing Shop"}, "shop/florist": {"icon": "maki-florist", "geometry": ["point", "area"], "terms": ["flower"], "tags": {"shop": "florist"}, "name": "Florist"}, - "shop/frame": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "frame"}, "terms": ["art*", "paint*", "photo*", "frame"], "name": "Framing Shop"}, + "shop/frame": {"icon": "fas-vector-square", "geometry": ["point", "area"], "tags": {"shop": "frame"}, "terms": ["art*", "paint*", "photo*", "frame"], "name": "Framing Shop"}, "shop/frozen_food": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "frozen_food"}, "name": "Frozen Food"}, "shop/fuel": {"icon": "maki-shop", "fields": ["{shop}", "fuel_multi"], "geometry": ["point", "area"], "tags": {"shop": "fuel"}, "name": "Fuel Shop", "matchScore": 0.5}, "shop/funeral_directors": {"icon": "maki-cemetery", "fields": ["{shop}", "religion", "denomination"], "geometry": ["point", "area"], "terms": ["undertaker", "memorial home"], "tags": {"shop": "funeral_directors"}, "name": "Funeral Home"}, @@ -960,7 +960,7 @@ "shop/hardware": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "hardware"}, "name": "Hardware Store"}, "shop/health_food": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["wholefood", "vitamins", "vegetarian", "vegan"], "tags": {"shop": "health_food"}, "name": "Health Food Shop"}, "shop/hearing_aids": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "hearing_aids"}, "name": "Hearing Aids Store"}, - "shop/herbalist": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "herbalist"}, "name": "Herbalist"}, + "shop/herbalist": {"icon": "fas-leaf", "geometry": ["point", "area"], "tags": {"shop": "herbalist"}, "name": "Herbalist"}, "shop/hifi": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["audio", "hi-fi", "high fidelity", "stereo", "video"], "tags": {"shop": "hifi"}, "name": "Hifi Store"}, "shop/houseware": {"icon": "fas-blender", "geometry": ["point", "area"], "terms": ["home", "household"], "tags": {"shop": "houseware"}, "name": "Houseware Store"}, "shop/hunting": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "hunting"}, "terms": ["arrows", "bows", "bullets", "crossbows", "rifles", "traps"], "name": "Hunting Shop"}, @@ -975,12 +975,12 @@ "shop/mall": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["shopping"], "tags": {"shop": "mall"}, "name": "Mall"}, "shop/massage": {"icon": "temaki-spa", "geometry": ["point", "area"], "tags": {"shop": "massage"}, "name": "Massage Shop"}, "shop/medical_supply": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "medical_supply"}, "name": "Medical Supply Store"}, - "shop/mobile_phone": {"icon": "maki-mobile-phone", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone"}, "name": "Mobile Phone Store"}, + "shop/mobile_phone": {"icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone"}, "name": "Mobile Phone Store"}, "shop/money_lender": {"icon": "maki-bank", "fields": ["{shop}", "currency_multi"], "geometry": ["point", "area"], "tags": {"shop": "money_lender"}, "name": "Money Lender"}, "shop/motorcycle_repair": {"icon": "fas-motorcycle", "fields": ["{shop}", "service/vehicle"], "geometry": ["point", "area"], "terms": ["auto", "bike", "garage", "motorcycle", "repair", "service"], "tags": {"shop": "motorcycle_repair"}, "name": "Motorcycle Repair Shop"}, "shop/motorcycle": {"icon": "fas-motorcycle", "fields": ["name", "brand", "{shop}"], "geometry": ["point", "area"], "terms": ["bike"], "tags": {"shop": "motorcycle"}, "name": "Motorcycle Dealership"}, - "shop/music": {"icon": "maki-music", "geometry": ["point", "area"], "terms": ["tape casettes", "CDs", "compact discs", "vinyl records"], "tags": {"shop": "music"}, "name": "Music Store"}, - "shop/musical_instrument": {"icon": "maki-music", "geometry": ["point", "area"], "terms": ["guitar"], "tags": {"shop": "musical_instrument"}, "name": "Musical Instrument Store"}, + "shop/music": {"icon": "fas-compact-disc", "geometry": ["point", "area"], "terms": ["tape casettes", "CDs", "compact discs", "vinyl records"], "tags": {"shop": "music"}, "name": "Music Store"}, + "shop/musical_instrument": {"icon": "fas-guitar", "geometry": ["point", "area"], "terms": ["guitar"], "tags": {"shop": "musical_instrument"}, "name": "Musical Instrument Store"}, "shop/newsagent": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "newsagent"}, "name": "Newspaper/Magazine Shop"}, "shop/nutrition_supplements": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "nutrition_supplements"}, "name": "Nutrition Supplements Store"}, "shop/optician": {"icon": "maki-optician", "geometry": ["point", "area"], "terms": ["eye", "glasses"], "tags": {"shop": "optician"}, "name": "Optician"}, @@ -1002,7 +1002,7 @@ "shop/second_hand": {"icon": "maki-shop", "fields": ["{shop}", "second_hand"], "geometry": ["point", "area"], "terms": ["secondhand", "second hand", "resale", "thrift", "used"], "tags": {"shop": "second_hand"}, "name": "Consignment/Thrift Store"}, "shop/sewing": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["haberdashery"], "tags": {"shop": "sewing"}, "name": "Sewing Supply Shop"}, "shop/shoes": {"icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes"}, "terms": ["boots", "cleats", "clogs", "heels", "loafers", "oxfords", "sneakers"], "name": "Shoe Store"}, - "shop/sports": {"icon": "maki-shop", "fields": ["name", "operator", "sport", "{shop}"], "geometry": ["point", "area"], "tags": {"shop": "sports"}, "terms": ["athletics"], "name": "Sporting Goods Store"}, + "shop/sports": {"icon": "fas-futbol", "fields": ["name", "operator", "sport", "{shop}"], "geometry": ["point", "area"], "tags": {"shop": "sports"}, "terms": ["athletics"], "name": "Sporting Goods Store"}, "shop/stationery": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["card", "paper"], "tags": {"shop": "stationery"}, "name": "Stationery Store"}, "shop/storage_rental": {"icon": "fas-warehouse", "geometry": ["point", "area"], "tags": {"shop": "storage_rental"}, "terms": ["garages"], "name": "Storage Rental"}, "shop/supermarket": {"icon": "maki-grocery", "moreFields": ["diet_multi", "{shop}"], "geometry": ["point", "area"], "terms": ["grocery", "store", "shop"], "tags": {"shop": "supermarket"}, "name": "Supermarket"}, @@ -2475,11 +2475,11 @@ "shop/alcohol/Бристоль": {"name": "Бристоль", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q59155583"}, "addTags": {"brand": "Бристоль", "brand:wikidata": "Q59155583", "brand:wikipedia": "ru:Бристоль (сеть магазинов)", "name": "Бристоль", "shop": "alcohol"}, "removeTags": {"brand": "Бристоль", "brand:wikidata": "Q59155583", "brand:wikipedia": "ru:Бристоль (сеть магазинов)", "name": "Бристоль", "shop": "alcohol"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/alcohol/Красное & Белое": {"name": "Красное & Белое", "icon": "maki-alcohol-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKrasnoe%26Beloe.%20Logotip.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q24933790"}, "addTags": {"brand": "Красное & Белое", "brand:en": "Red&White", "brand:wikidata": "Q24933790", "brand:wikipedia": "en:Red&White", "name": "Красное & Белое", "name:en": "Red&White", "shop": "alcohol"}, "removeTags": {"brand": "Красное & Белое", "brand:en": "Red&White", "brand:wikidata": "Q24933790", "brand:wikipedia": "en:Red&White", "name": "Красное & Белое", "name:en": "Red&White", "shop": "alcohol"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/alcohol/Лион": {"name": "Лион", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q3241775"}, "addTags": {"brand": "Лион", "brand:wikidata": "Q3241775", "brand:wikipedia": "en:Lion (Australasian company)", "name": "Лион", "shop": "alcohol"}, "removeTags": {"brand": "Лион", "brand:wikidata": "Q3241775", "brand:wikipedia": "en:Lion (Australasian company)", "name": "Лион", "shop": "alcohol"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/baby_goods/Babies R Us": {"name": "Babies R Us", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/babiesrus/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q17232036"}, "addTags": {"brand": "Babies R Us", "brand:wikidata": "Q17232036", "name": "Babies R Us", "shop": "baby_goods"}, "removeTags": {"brand": "Babies R Us", "brand:wikidata": "Q17232036", "name": "Babies R Us", "shop": "baby_goods"}, "matchScore": 2, "suggestion": true}, - "shop/baby_goods/BabyOne": {"name": "BabyOne", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/BabyOne/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q57540408"}, "addTags": {"brand": "BabyOne", "brand:wikidata": "Q57540408", "name": "BabyOne", "shop": "baby_goods"}, "removeTags": {"brand": "BabyOne", "brand:wikidata": "Q57540408", "name": "BabyOne", "shop": "baby_goods"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/baby_goods/Buy Buy Baby": {"name": "Buy Buy Baby", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/buybuyBABY/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q5003352"}, "addTags": {"brand": "Buy Buy Baby", "brand:wikidata": "Q5003352", "brand:wikipedia": "en:Buy Buy Baby", "name": "Buy Buy Baby", "shop": "baby_goods"}, "removeTags": {"brand": "Buy Buy Baby", "brand:wikidata": "Q5003352", "brand:wikipedia": "en:Buy Buy Baby", "name": "Buy Buy Baby", "shop": "baby_goods"}, "matchScore": 2, "suggestion": true}, - "shop/baby_goods/Mothercare": {"name": "Mothercare", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/mothercareuk/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q136738"}, "addTags": {"brand": "Mothercare", "brand:wikidata": "Q136738", "brand:wikipedia": "en:Mothercare", "name": "Mothercare", "shop": "baby_goods"}, "removeTags": {"brand": "Mothercare", "brand:wikidata": "Q136738", "brand:wikipedia": "en:Mothercare", "name": "Mothercare", "shop": "baby_goods"}, "matchScore": 2, "suggestion": true}, - "shop/baby_goods/西松屋": {"name": "西松屋", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q11628761"}, "addTags": {"brand": "西松屋", "brand:en": "Nishimatsuya Chain", "brand:ja": "西松屋", "brand:wikidata": "Q11628761", "brand:wikipedia": "ja:西松屋", "name": "西松屋", "name:en": "Nishimatsuya Chain", "name:ja": "西松屋", "shop": "baby_goods"}, "removeTags": {"brand": "西松屋", "brand:en": "Nishimatsuya Chain", "brand:ja": "西松屋", "brand:wikidata": "Q11628761", "brand:wikipedia": "ja:西松屋", "name": "西松屋", "name:en": "Nishimatsuya Chain", "name:ja": "西松屋", "shop": "baby_goods"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/baby_goods/Babies R Us": {"name": "Babies R Us", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/babiesrus/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q17232036"}, "addTags": {"brand": "Babies R Us", "brand:wikidata": "Q17232036", "name": "Babies R Us", "shop": "baby_goods"}, "removeTags": {"brand": "Babies R Us", "brand:wikidata": "Q17232036", "name": "Babies R Us", "shop": "baby_goods"}, "matchScore": 2, "suggestion": true}, + "shop/baby_goods/BabyOne": {"name": "BabyOne", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/BabyOne/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q57540408"}, "addTags": {"brand": "BabyOne", "brand:wikidata": "Q57540408", "name": "BabyOne", "shop": "baby_goods"}, "removeTags": {"brand": "BabyOne", "brand:wikidata": "Q57540408", "name": "BabyOne", "shop": "baby_goods"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/baby_goods/Buy Buy Baby": {"name": "Buy Buy Baby", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/buybuyBABY/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q5003352"}, "addTags": {"brand": "Buy Buy Baby", "brand:wikidata": "Q5003352", "brand:wikipedia": "en:Buy Buy Baby", "name": "Buy Buy Baby", "shop": "baby_goods"}, "removeTags": {"brand": "Buy Buy Baby", "brand:wikidata": "Q5003352", "brand:wikipedia": "en:Buy Buy Baby", "name": "Buy Buy Baby", "shop": "baby_goods"}, "matchScore": 2, "suggestion": true}, + "shop/baby_goods/Mothercare": {"name": "Mothercare", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/mothercareuk/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q136738"}, "addTags": {"brand": "Mothercare", "brand:wikidata": "Q136738", "brand:wikipedia": "en:Mothercare", "name": "Mothercare", "shop": "baby_goods"}, "removeTags": {"brand": "Mothercare", "brand:wikidata": "Q136738", "brand:wikipedia": "en:Mothercare", "name": "Mothercare", "shop": "baby_goods"}, "matchScore": 2, "suggestion": true}, + "shop/baby_goods/西松屋": {"name": "西松屋", "icon": "fas-baby-carriage", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q11628761"}, "addTags": {"brand": "西松屋", "brand:en": "Nishimatsuya Chain", "brand:ja": "西松屋", "brand:wikidata": "Q11628761", "brand:wikipedia": "ja:西松屋", "name": "西松屋", "name:en": "Nishimatsuya Chain", "name:ja": "西松屋", "shop": "baby_goods"}, "removeTags": {"brand": "西松屋", "brand:en": "Nishimatsuya Chain", "brand:ja": "西松屋", "brand:wikidata": "Q11628761", "brand:wikipedia": "ja:西松屋", "name": "西松屋", "name:en": "Nishimatsuya Chain", "name:ja": "西松屋", "shop": "baby_goods"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/bag/Carpisa": {"name": "Carpisa", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/CarpisaOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q28035409"}, "addTags": {"brand": "Carpisa", "brand:wikidata": "Q28035409", "brand:wikipedia": "en:Carpisa", "name": "Carpisa", "shop": "bag"}, "removeTags": {"brand": "Carpisa", "brand:wikidata": "Q28035409", "brand:wikipedia": "en:Carpisa", "name": "Carpisa", "shop": "bag"}, "matchScore": 2, "suggestion": true}, "shop/bag/Coach": {"name": "Coach", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/coach/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q727697"}, "addTags": {"brand": "Coach", "brand:wikidata": "Q727697", "brand:wikipedia": "en:Coach New York", "name": "Coach", "shop": "bag"}, "removeTags": {"brand": "Coach", "brand:wikidata": "Q727697", "brand:wikipedia": "en:Coach New York", "name": "Coach", "shop": "bag"}, "matchScore": 2, "suggestion": true}, "shop/bag/Kipling": {"name": "Kipling", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/KiplingU.S.A/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q6414641"}, "addTags": {"brand": "Kipling", "brand:wikidata": "Q6414641", "brand:wikipedia": "en:Kipling (brand)", "name": "Kipling", "shop": "bag"}, "removeTags": {"brand": "Kipling", "brand:wikidata": "Q6414641", "brand:wikipedia": "en:Kipling (brand)", "name": "Kipling", "shop": "bag"}, "matchScore": 2, "suggestion": true}, @@ -2592,17 +2592,17 @@ "shop/butcher/Великолукский мясокомбинат": {"name": "Великолукский мясокомбинат", "icon": "fas-bacon", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F%D0%92%D0%B5%D0%BB%D0%B8%D0%BA%D0%BE%D0%BB%D1%83%D0%BA%D1%81%D0%BA%D0%B8%D0%B9%20%D0%BC%D1%8F%D1%81%D0%BE%D0%BA%D0%BE%D0%BC%D0%B1%D0%B8%D0%BD%D0%B0%D1%82.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "butcher", "brand:wikidata": "Q18401767"}, "addTags": {"brand": "Великолукский мясокомбинат", "brand:wikidata": "Q18401767", "brand:wikipedia": "ru:Великолукский мясокомбинат", "name": "Великолукский мясокомбинат", "shop": "butcher"}, "removeTags": {"brand": "Великолукский мясокомбинат", "brand:wikidata": "Q18401767", "brand:wikipedia": "ru:Великолукский мясокомбинат", "name": "Великолукский мясокомбинат", "shop": "butcher"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/butcher/Родинна ковбаска": {"name": "Родинна ковбаска", "icon": "fas-bacon", "geometry": ["point", "area"], "tags": {"shop": "butcher", "brand:wikidata": "Q30969660"}, "addTags": {"brand": "Родинна ковбаска", "brand:en": "Rodynna-kovbaska", "brand:wikidata": "Q30969660", "brand:wikipedia": "uk:ТзОВ «Барком»", "name": "Родинна ковбаска", "name:en": "Rodynna-kovbaska", "shop": "butcher"}, "removeTags": {"brand": "Родинна ковбаска", "brand:en": "Rodynna-kovbaska", "brand:wikidata": "Q30969660", "brand:wikipedia": "uk:ТзОВ «Барком»", "name": "Родинна ковбаска", "name:en": "Rodynna-kovbaska", "shop": "butcher"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, "shop/butcher/肉のハナマサ": {"name": "肉のハナマサ", "icon": "fas-bacon", "geometry": ["point", "area"], "tags": {"shop": "butcher", "brand:wikidata": "Q11326564"}, "addTags": {"brand": "ハナマサ", "brand:en": "Hanamasa", "brand:ja": "ハナマサ", "brand:wikidata": "Q11326564", "brand:wikipedia": "ja:ハナマサ", "butcher": "beef", "name": "肉のハナマサ", "name:en": "Hanamasa Meat", "name:ja": "肉のハナマサ", "shop": "butcher"}, "removeTags": {"brand": "ハナマサ", "brand:en": "Hanamasa", "brand:ja": "ハナマサ", "brand:wikidata": "Q11326564", "brand:wikipedia": "ja:ハナマサ", "butcher": "beef", "name": "肉のハナマサ", "name:en": "Hanamasa Meat", "name:ja": "肉のハナマサ", "shop": "butcher"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Advance Auto Parts": {"name": "Advance Auto Parts", "icon": "maki-car", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20of%20Advance%20Auto%20Parts.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q4686051"}, "addTags": {"brand": "Advance Auto Parts", "brand:wikidata": "Q4686051", "brand:wikipedia": "en:Advance Auto Parts", "name": "Advance Auto Parts", "shop": "car_parts"}, "removeTags": {"brand": "Advance Auto Parts", "brand:wikidata": "Q4686051", "brand:wikipedia": "en:Advance Auto Parts", "name": "Advance Auto Parts", "shop": "car_parts"}, "countryCodes": ["ca", "pr", "us", "vi"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/AutoZone": {"name": "AutoZone", "icon": "maki-car", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20of%20AutoZone.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q4826087"}, "addTags": {"brand": "AutoZone", "brand:wikidata": "Q4826087", "brand:wikipedia": "en:AutoZone", "name": "AutoZone", "shop": "car_parts"}, "removeTags": {"brand": "AutoZone", "brand:wikidata": "Q4826087", "brand:wikipedia": "en:AutoZone", "name": "AutoZone", "shop": "car_parts"}, "countryCodes": ["br", "mx", "us"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Halfords": {"name": "Halfords", "icon": "maki-car", "imageURL": "https://pbs.twimg.com/profile_images/894829428764704768/XprrrJyW_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q3398786"}, "addTags": {"brand": "Halfords", "brand:wikidata": "Q3398786", "brand:wikipedia": "en:Halfords", "name": "Halfords", "service:bicycle:retail": "yes", "shop": "car_parts"}, "removeTags": {"brand": "Halfords", "brand:wikidata": "Q3398786", "brand:wikipedia": "en:Halfords", "name": "Halfords", "service:bicycle:retail": "yes", "shop": "car_parts"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/NAPA Auto Parts": {"name": "NAPA Auto Parts", "icon": "maki-car", "imageURL": "https://pbs.twimg.com/profile_images/877735026703519744/4gppscV7_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q6970842"}, "addTags": {"brand": "NAPA Auto Parts", "brand:wikidata": "Q6970842", "brand:wikipedia": "en:National Automotive Parts Association", "name": "NAPA Auto Parts", "operator": "Genuine Parts Company", "operator:wikidata": "Q5533818", "operator:wikipedia": "en:Genuine Parts Company", "shop": "car_parts"}, "removeTags": {"brand": "NAPA Auto Parts", "brand:wikidata": "Q6970842", "brand:wikipedia": "en:National Automotive Parts Association", "name": "NAPA Auto Parts", "operator": "Genuine Parts Company", "operator:wikidata": "Q5533818", "operator:wikipedia": "en:Genuine Parts Company", "shop": "car_parts"}, "countryCodes": ["ca", "mx", "us"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/O'Reilly Auto Parts": {"name": "O'Reilly Auto Parts", "icon": "maki-car", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q7071951"}, "addTags": {"brand": "O'Reilly Auto Parts", "brand:wikidata": "Q7071951", "brand:wikipedia": "en:O'Reilly Auto Parts", "name": "O'Reilly Auto Parts", "shop": "car_parts"}, "removeTags": {"brand": "O'Reilly Auto Parts", "brand:wikidata": "Q7071951", "brand:wikipedia": "en:O'Reilly Auto Parts", "name": "O'Reilly Auto Parts", "shop": "car_parts"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Repco": {"name": "Repco", "icon": "maki-car", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q173425"}, "addTags": {"brand": "Repco", "brand:wikidata": "Q173425", "brand:wikipedia": "en:Repco", "name": "Repco", "shop": "car_parts"}, "removeTags": {"brand": "Repco", "brand:wikidata": "Q173425", "brand:wikipedia": "en:Repco", "name": "Repco", "shop": "car_parts"}, "countryCodes": ["au", "nz"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Supercheap Auto": {"name": "Supercheap Auto", "icon": "maki-car", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q7643119"}, "addTags": {"brand": "Supercheap Auto", "brand:wikidata": "Q7643119", "brand:wikipedia": "en:Supercheap Auto", "name": "Supercheap Auto", "shop": "car_parts"}, "removeTags": {"brand": "Supercheap Auto", "brand:wikidata": "Q7643119", "brand:wikipedia": "en:Supercheap Auto", "name": "Supercheap Auto", "shop": "car_parts"}, "countryCodes": ["au", "nz"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Автомир": {"name": "Автомир", "icon": "maki-car", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q4056321"}, "addTags": {"brand": "Автомир", "brand:wikidata": "Q4056321", "brand:wikipedia": "ru:Автомир (автодилер)", "name": "Автомир", "shop": "car_parts"}, "removeTags": {"brand": "Автомир", "brand:wikidata": "Q4056321", "brand:wikipedia": "ru:Автомир (автодилер)", "name": "Автомир", "shop": "car_parts"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/イエローハット": {"name": "イエローハット", "icon": "maki-car", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q11285915"}, "addTags": {"brand": "イエローハット", "brand:en": "Yellow Hat", "brand:ja": "イエローハット", "brand:wikidata": "Q11285915", "brand:wikipedia": "ja:イエローハット", "name": "イエローハット", "name:en": "Yellow Hat", "name:ja": "イエローハット", "shop": "car_parts"}, "removeTags": {"brand": "イエローハット", "brand:en": "Yellow Hat", "brand:ja": "イエローハット", "brand:wikidata": "Q11285915", "brand:wikipedia": "ja:イエローハット", "name": "イエローハット", "name:en": "Yellow Hat", "name:ja": "イエローハット", "shop": "car_parts"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/オートバックス": {"name": "オートバックス", "icon": "maki-car", "imageURL": "https://pbs.twimg.com/profile_images/898398595002417154/CgR8Rgjd_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q7886426"}, "addTags": {"brand": "オートバックス", "brand:en": "Autobacs", "brand:ja": "オートバックス", "brand:wikidata": "Q7886426", "brand:wikipedia": "ja:オートバックスセブン", "name": "オートバックス", "name:en": "Autobacs", "name:ja": "オートバックス", "shop": "car_parts"}, "removeTags": {"brand": "オートバックス", "brand:en": "Autobacs", "brand:ja": "オートバックス", "brand:wikidata": "Q7886426", "brand:wikipedia": "ja:オートバックスセブン", "name": "オートバックス", "name:en": "Autobacs", "name:ja": "オートバックス", "shop": "car_parts"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/タイヤ館": {"name": "タイヤ館", "icon": "maki-car", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q11315808"}, "addTags": {"brand": "タイヤ館", "brand:en": "Taiyakan", "brand:ja": "タイヤ館", "brand:wikidata": "Q11315808", "brand:wikipedia": "ja:タイヤ館", "name": "タイヤ館", "name:en": "Taiyakan", "name:ja": "タイヤ館", "shop": "car_parts"}, "removeTags": {"brand": "タイヤ館", "brand:en": "Taiyakan", "brand:ja": "タイヤ館", "brand:wikidata": "Q11315808", "brand:wikipedia": "ja:タイヤ館", "name": "タイヤ館", "name:en": "Taiyakan", "name:ja": "タイヤ館", "shop": "car_parts"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/Advance Auto Parts": {"name": "Advance Auto Parts", "icon": "fas-car-battery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20of%20Advance%20Auto%20Parts.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q4686051"}, "addTags": {"brand": "Advance Auto Parts", "brand:wikidata": "Q4686051", "brand:wikipedia": "en:Advance Auto Parts", "name": "Advance Auto Parts", "shop": "car_parts"}, "removeTags": {"brand": "Advance Auto Parts", "brand:wikidata": "Q4686051", "brand:wikipedia": "en:Advance Auto Parts", "name": "Advance Auto Parts", "shop": "car_parts"}, "countryCodes": ["ca", "pr", "us", "vi"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/AutoZone": {"name": "AutoZone", "icon": "fas-car-battery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20of%20AutoZone.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q4826087"}, "addTags": {"brand": "AutoZone", "brand:wikidata": "Q4826087", "brand:wikipedia": "en:AutoZone", "name": "AutoZone", "shop": "car_parts"}, "removeTags": {"brand": "AutoZone", "brand:wikidata": "Q4826087", "brand:wikipedia": "en:AutoZone", "name": "AutoZone", "shop": "car_parts"}, "countryCodes": ["br", "mx", "us"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/Halfords": {"name": "Halfords", "icon": "fas-car-battery", "imageURL": "https://pbs.twimg.com/profile_images/894829428764704768/XprrrJyW_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q3398786"}, "addTags": {"brand": "Halfords", "brand:wikidata": "Q3398786", "brand:wikipedia": "en:Halfords", "name": "Halfords", "service:bicycle:retail": "yes", "shop": "car_parts"}, "removeTags": {"brand": "Halfords", "brand:wikidata": "Q3398786", "brand:wikipedia": "en:Halfords", "name": "Halfords", "service:bicycle:retail": "yes", "shop": "car_parts"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/NAPA Auto Parts": {"name": "NAPA Auto Parts", "icon": "fas-car-battery", "imageURL": "https://pbs.twimg.com/profile_images/877735026703519744/4gppscV7_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q6970842"}, "addTags": {"brand": "NAPA Auto Parts", "brand:wikidata": "Q6970842", "brand:wikipedia": "en:National Automotive Parts Association", "name": "NAPA Auto Parts", "operator": "Genuine Parts Company", "operator:wikidata": "Q5533818", "operator:wikipedia": "en:Genuine Parts Company", "shop": "car_parts"}, "removeTags": {"brand": "NAPA Auto Parts", "brand:wikidata": "Q6970842", "brand:wikipedia": "en:National Automotive Parts Association", "name": "NAPA Auto Parts", "operator": "Genuine Parts Company", "operator:wikidata": "Q5533818", "operator:wikipedia": "en:Genuine Parts Company", "shop": "car_parts"}, "countryCodes": ["ca", "mx", "us"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/O'Reilly Auto Parts": {"name": "O'Reilly Auto Parts", "icon": "fas-car-battery", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q7071951"}, "addTags": {"brand": "O'Reilly Auto Parts", "brand:wikidata": "Q7071951", "brand:wikipedia": "en:O'Reilly Auto Parts", "name": "O'Reilly Auto Parts", "shop": "car_parts"}, "removeTags": {"brand": "O'Reilly Auto Parts", "brand:wikidata": "Q7071951", "brand:wikipedia": "en:O'Reilly Auto Parts", "name": "O'Reilly Auto Parts", "shop": "car_parts"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/Repco": {"name": "Repco", "icon": "fas-car-battery", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q173425"}, "addTags": {"brand": "Repco", "brand:wikidata": "Q173425", "brand:wikipedia": "en:Repco", "name": "Repco", "shop": "car_parts"}, "removeTags": {"brand": "Repco", "brand:wikidata": "Q173425", "brand:wikipedia": "en:Repco", "name": "Repco", "shop": "car_parts"}, "countryCodes": ["au", "nz"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/Supercheap Auto": {"name": "Supercheap Auto", "icon": "fas-car-battery", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q7643119"}, "addTags": {"brand": "Supercheap Auto", "brand:wikidata": "Q7643119", "brand:wikipedia": "en:Supercheap Auto", "name": "Supercheap Auto", "shop": "car_parts"}, "removeTags": {"brand": "Supercheap Auto", "brand:wikidata": "Q7643119", "brand:wikipedia": "en:Supercheap Auto", "name": "Supercheap Auto", "shop": "car_parts"}, "countryCodes": ["au", "nz"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/Автомир": {"name": "Автомир", "icon": "fas-car-battery", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q4056321"}, "addTags": {"brand": "Автомир", "brand:wikidata": "Q4056321", "brand:wikipedia": "ru:Автомир (автодилер)", "name": "Автомир", "shop": "car_parts"}, "removeTags": {"brand": "Автомир", "brand:wikidata": "Q4056321", "brand:wikipedia": "ru:Автомир (автодилер)", "name": "Автомир", "shop": "car_parts"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/イエローハット": {"name": "イエローハット", "icon": "fas-car-battery", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q11285915"}, "addTags": {"brand": "イエローハット", "brand:en": "Yellow Hat", "brand:ja": "イエローハット", "brand:wikidata": "Q11285915", "brand:wikipedia": "ja:イエローハット", "name": "イエローハット", "name:en": "Yellow Hat", "name:ja": "イエローハット", "shop": "car_parts"}, "removeTags": {"brand": "イエローハット", "brand:en": "Yellow Hat", "brand:ja": "イエローハット", "brand:wikidata": "Q11285915", "brand:wikipedia": "ja:イエローハット", "name": "イエローハット", "name:en": "Yellow Hat", "name:ja": "イエローハット", "shop": "car_parts"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/オートバックス": {"name": "オートバックス", "icon": "fas-car-battery", "imageURL": "https://pbs.twimg.com/profile_images/898398595002417154/CgR8Rgjd_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q7886426"}, "addTags": {"brand": "オートバックス", "brand:en": "Autobacs", "brand:ja": "オートバックス", "brand:wikidata": "Q7886426", "brand:wikipedia": "ja:オートバックスセブン", "name": "オートバックス", "name:en": "Autobacs", "name:ja": "オートバックス", "shop": "car_parts"}, "removeTags": {"brand": "オートバックス", "brand:en": "Autobacs", "brand:ja": "オートバックス", "brand:wikidata": "Q7886426", "brand:wikipedia": "ja:オートバックスセブン", "name": "オートバックス", "name:en": "Autobacs", "name:ja": "オートバックス", "shop": "car_parts"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/タイヤ館": {"name": "タイヤ館", "icon": "fas-car-battery", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q11315808"}, "addTags": {"brand": "タイヤ館", "brand:en": "Taiyakan", "brand:ja": "タイヤ館", "brand:wikidata": "Q11315808", "brand:wikipedia": "ja:タイヤ館", "name": "タイヤ館", "name:en": "Taiyakan", "name:ja": "タイヤ館", "shop": "car_parts"}, "removeTags": {"brand": "タイヤ館", "brand:en": "Taiyakan", "brand:ja": "タイヤ館", "brand:wikidata": "Q11315808", "brand:wikipedia": "ja:タイヤ館", "name": "タイヤ館", "name:en": "Taiyakan", "name:ja": "タイヤ館", "shop": "car_parts"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/car_repair/A.T.U": {"name": "A.T.U", "icon": "maki-car-repair", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAuto-Teile-Unger%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q784721"}, "addTags": {"brand": "A.T.U", "brand:wikidata": "Q784721", "brand:wikipedia": "de:Auto-Teile-Unger", "name": "A.T.U", "shop": "car_repair"}, "removeTags": {"brand": "A.T.U", "brand:wikidata": "Q784721", "brand:wikipedia": "de:Auto-Teile-Unger", "name": "A.T.U", "shop": "car_repair"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, "shop/car_repair/ATS Euromaster": {"name": "ATS Euromaster", "icon": "maki-car-repair", "imageURL": "https://pbs.twimg.com/profile_images/572348690115751936/8zWGjm2u_bigger.jpeg", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q4654920"}, "addTags": {"brand": "ATS Euromaster", "brand:wikidata": "Q4654920", "brand:wikipedia": "en:ATS Euromaster", "name": "ATS Euromaster", "shop": "car_repair"}, "removeTags": {"brand": "ATS Euromaster", "brand:wikidata": "Q4654920", "brand:wikipedia": "en:ATS Euromaster", "name": "ATS Euromaster", "shop": "car_repair"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "shop/car_repair/Bosch Car Service": {"name": "Bosch Car Service", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/BoschGlobal/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q234021"}, "addTags": {"brand": "Bosch Car Service", "brand:wikidata": "Q234021", "brand:wikipedia": "en:Robert Bosch GmbH", "name": "Bosch Car Service", "shop": "car_repair"}, "removeTags": {"brand": "Bosch Car Service", "brand:wikidata": "Q234021", "brand:wikipedia": "en:Robert Bosch GmbH", "name": "Bosch Car Service", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, @@ -2898,7 +2898,7 @@ "shop/clothes/洋服の青山": {"name": "洋服の青山", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/AoyamaOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q11661241"}, "addTags": {"brand": "洋服の青山", "brand:en": "Aoyama Tailor", "brand:ja": "洋服の青山", "brand:wikidata": "Q11661241", "brand:wikipedia": "ja:青山商事", "name": "洋服の青山", "name:en": "Aoyama Tailor", "name:ja": "洋服の青山", "shop": "clothes"}, "removeTags": {"brand": "洋服の青山", "brand:en": "Aoyama Tailor", "brand:ja": "洋服の青山", "brand:wikidata": "Q11661241", "brand:wikipedia": "ja:青山商事", "name": "洋服の青山", "name:en": "Aoyama Tailor", "name:ja": "洋服の青山", "shop": "clothes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/coffee/Nespresso": {"name": "Nespresso", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/nespresso/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "coffee", "brand:wikidata": "Q301301"}, "addTags": {"brand": "Nespresso", "brand:wikidata": "Q301301", "brand:wikipedia": "en:Nespresso", "name": "Nespresso", "shop": "coffee"}, "removeTags": {"brand": "Nespresso", "brand:wikidata": "Q301301", "brand:wikipedia": "en:Nespresso", "name": "Nespresso", "shop": "coffee"}, "matchScore": 2, "suggestion": true}, "shop/coffee/Tchibo": {"name": "Tchibo", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/tchibo.de/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "coffee", "brand:wikidata": "Q564213"}, "addTags": {"brand": "Tchibo", "brand:wikidata": "Q564213", "brand:wikipedia": "de:Tchibo", "name": "Tchibo", "shop": "coffee"}, "removeTags": {"brand": "Tchibo", "brand:wikidata": "Q564213", "brand:wikipedia": "de:Tchibo", "name": "Tchibo", "shop": "coffee"}, "matchScore": 2, "suggestion": true}, - "shop/computer/PC World": {"name": "PC World", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "computer", "brand:wikidata": "Q7118727"}, "addTags": {"brand": "PC World", "brand:wikidata": "Q7118727", "brand:wikipedia": "en:PC World (retailer)", "name": "PC World", "shop": "computer"}, "removeTags": {"brand": "PC World", "brand:wikidata": "Q7118727", "brand:wikipedia": "en:PC World (retailer)", "name": "PC World", "shop": "computer"}, "matchScore": 2, "suggestion": true}, + "shop/computer/PC World": {"name": "PC World", "icon": "fas-laptop", "geometry": ["point", "area"], "tags": {"shop": "computer", "brand:wikidata": "Q7118727"}, "addTags": {"brand": "PC World", "brand:wikidata": "Q7118727", "brand:wikipedia": "en:PC World (retailer)", "name": "PC World", "shop": "computer"}, "removeTags": {"brand": "PC World", "brand:wikidata": "Q7118727", "brand:wikipedia": "en:PC World (retailer)", "name": "PC World", "shop": "computer"}, "matchScore": 2, "suggestion": true}, "shop/confectionery/Adyar Ananda Bhavan": {"name": "Adyar Ananda Bhavan", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/a2b.officialpage/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "confectionery", "brand:wikidata": "Q15178238"}, "addTags": {"brand": "Adyar Ananda Bhavan", "brand:wikidata": "Q15178238", "brand:wikipedia": "en:Adyar Ananda Bhavan", "name": "Adyar Ananda Bhavan", "shop": "confectionery"}, "removeTags": {"brand": "Adyar Ananda Bhavan", "brand:wikidata": "Q15178238", "brand:wikipedia": "en:Adyar Ananda Bhavan", "name": "Adyar Ananda Bhavan", "shop": "confectionery"}, "countryCodes": ["in"], "matchScore": 2, "suggestion": true}, "shop/confectionery/Hemmakvall": {"name": "Hemmakvall", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/hemmakvall/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "confectionery", "brand:wikidata": "Q10521791"}, "addTags": {"brand:wikidata": "Q10521791", "brand:wikipedia": "sv:Hemmakväll", "name": "Hemmakväll", "shop": "confectionery"}, "removeTags": {"brand:wikidata": "Q10521791", "brand:wikipedia": "sv:Hemmakväll", "name": "Hemmakväll", "shop": "confectionery"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, "shop/confectionery/Hussel": {"name": "Hussel", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/HusselConfiserie/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "confectionery", "brand:wikidata": "Q17123688"}, "addTags": {"brand": "Hussel", "brand:wikidata": "Q17123688", "brand:wikipedia": "de:Hussel", "name": "Hussel", "shop": "confectionery"}, "removeTags": {"brand": "Hussel", "brand:wikidata": "Q17123688", "brand:wikipedia": "de:Hussel", "name": "Hussel", "shop": "confectionery"}, "matchScore": 2, "suggestion": true}, @@ -2906,94 +2906,94 @@ "shop/confectionery/Thorntons": {"name": "Thorntons", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/Thorntons.Official/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "confectionery", "brand:wikidata": "Q683102"}, "addTags": {"brand": "Thorntons", "brand:wikidata": "Q683102", "brand:wikipedia": "en:Thorntons", "name": "Thorntons", "shop": "confectionery"}, "removeTags": {"brand": "Thorntons", "brand:wikidata": "Q683102", "brand:wikipedia": "en:Thorntons", "name": "Thorntons", "shop": "confectionery"}, "matchScore": 2, "suggestion": true}, "shop/confectionery/Вацак": {"name": "Вацак", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/Vatsak.KD/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "confectionery", "brand:wikidata": "Q30966576"}, "addTags": {"brand": "Вацак", "brand:wikidata": "Q30966576", "brand:wikipedia": "uk:Кондитерський Дім «Вацак»", "name": "Вацак", "shop": "confectionery"}, "removeTags": {"brand": "Вацак", "brand:wikidata": "Q30966576", "brand:wikipedia": "uk:Кондитерський Дім «Вацак»", "name": "Вацак", "shop": "confectionery"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, "shop/confectionery/シャトレーゼ": {"name": "シャトレーゼ", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/chateraise.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "confectionery", "brand:wikidata": "Q11307696"}, "addTags": {"brand": "シャトレーゼ", "brand:en": "Chateraise", "brand:ja": "シャトレーゼ", "brand:wikidata": "Q11307696", "brand:wikipedia": "ja:シャトレーゼ", "name": "シャトレーゼ", "name:en": "Chateraise", "name:ja": "シャトレーゼ", "shop": "confectionery"}, "removeTags": {"brand": "シャトレーゼ", "brand:en": "Chateraise", "brand:ja": "シャトレーゼ", "brand:wikidata": "Q11307696", "brand:wikipedia": "ja:シャトレーゼ", "name": "シャトレーゼ", "name:en": "Chateraise", "name:ja": "シャトレーゼ", "shop": "confectionery"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/7-Eleven": {"name": "7-Eleven", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/7ElevenMexico/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q259340"}, "addTags": {"brand": "7-Eleven", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "7-Eleven", "shop": "convenience"}, "removeTags": {"brand": "7-Eleven", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "7-Eleven", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/8 à Huit": {"name": "8 à Huit", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2818601"}, "addTags": {"brand": "8 à Huit", "brand:wikidata": "Q2818601", "brand:wikipedia": "en:8 à Huit", "name": "8 à Huit", "shop": "convenience"}, "removeTags": {"brand": "8 à Huit", "brand:wikidata": "Q2818601", "brand:wikipedia": "en:8 à Huit", "name": "8 à Huit", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/99 Speedmart": {"name": "99 Speedmart", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/99speedmart/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q62075061"}, "addTags": {"brand": "99 Speedmart", "brand:wikidata": "Q62075061", "name": "99 Speedmart", "shop": "convenience"}, "removeTags": {"brand": "99 Speedmart", "brand:wikidata": "Q62075061", "name": "99 Speedmart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/ABC (Hawaii)": {"name": "ABC (Hawaii)", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q4650251"}, "addTags": {"brand": "ABC", "brand:wikidata": "Q4650251", "brand:wikipedia": "en:ABC Stores (Hawaii)", "name": "ABC", "shop": "convenience"}, "removeTags": {"brand": "ABC", "brand:wikidata": "Q4650251", "brand:wikipedia": "en:ABC Stores (Hawaii)", "name": "ABC", "shop": "convenience"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Aibė": {"name": "Aibė", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1022952"}, "addTags": {"brand": "Aibė", "brand:wikidata": "Q1022952", "brand:wikipedia": "de:Aibė", "name": "Aibė", "shop": "convenience"}, "removeTags": {"brand": "Aibė", "brand:wikidata": "Q1022952", "brand:wikipedia": "de:Aibė", "name": "Aibė", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Albert Heijn to go": {"name": "Albert Heijn to go", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAlbert%20heijn.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1653985"}, "addTags": {"brand": "Albert Heijn to go", "brand:wikidata": "Q1653985", "brand:wikipedia": "en:Albert Heijn", "name": "Albert Heijn to go", "shop": "convenience"}, "removeTags": {"brand": "Albert Heijn to go", "brand:wikidata": "Q1653985", "brand:wikipedia": "en:Albert Heijn", "name": "Albert Heijn to go", "shop": "convenience"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Alfamidi": {"name": "Alfamidi", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q12471462"}, "addTags": {"brand": "Alfamidi", "brand:wikidata": "Q12471462", "brand:wikipedia": "id:Alfamidi", "name": "Alfamidi", "shop": "convenience"}, "removeTags": {"brand": "Alfamidi", "brand:wikidata": "Q12471462", "brand:wikipedia": "id:Alfamidi", "name": "Alfamidi", "shop": "convenience"}, "countryCodes": ["id"], "matchScore": 2, "suggestion": true}, - "shop/convenience/BP Shop": {"name": "BP Shop", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/bp/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q152057"}, "addTags": {"brand": "BP Shop", "brand:wikidata": "Q152057", "brand:wikipedia": "en:BP", "name": "BP Shop", "shop": "convenience"}, "removeTags": {"brand": "BP Shop", "brand:wikidata": "Q152057", "brand:wikipedia": "en:BP", "name": "BP Shop", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Buc-ee's": {"name": "Buc-ee's", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q4982335"}, "addTags": {"brand": "Buc-ee's", "brand:wikidata": "Q4982335", "brand:wikipedia": "en:Buc-ee's", "name": "Buc-ee's", "shop": "convenience"}, "removeTags": {"brand": "Buc-ee's", "brand:wikidata": "Q4982335", "brand:wikipedia": "en:Buc-ee's", "name": "Buc-ee's", "shop": "convenience"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/convenience/COOP Jednota": {"name": "COOP Jednota", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q41629254"}, "addTags": {"brand": "COOP Jednota", "brand:wikidata": "Q41629254", "brand:wikipedia": "sk:COOP Jednota Slovensko", "name": "COOP Jednota", "shop": "convenience"}, "removeTags": {"brand": "COOP Jednota", "brand:wikidata": "Q41629254", "brand:wikipedia": "sk:COOP Jednota Slovensko", "name": "COOP Jednota", "shop": "convenience"}, "countryCodes": ["cz", "sk"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Circle K": {"name": "Circle K", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCircle%20k%20logo%20detail.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3268010"}, "addTags": {"brand": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "Circle K", "shop": "convenience"}, "removeTags": {"brand": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "Circle K", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Co-op": {"name": "Co-op", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSaskatoon%20Co-op%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5440676"}, "addTags": {"brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op", "shop": "convenience"}, "removeTags": {"brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Coop Pronto": {"name": "Coop Pronto", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1129777"}, "addTags": {"brand": "Coop Pronto", "brand:wikidata": "Q1129777", "brand:wikipedia": "de:Coop Mineraloel", "name": "Coop Pronto", "shop": "convenience"}, "removeTags": {"brand": "Coop Pronto", "brand:wikidata": "Q1129777", "brand:wikipedia": "de:Coop Mineraloel", "name": "Coop Pronto", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Daisy Mart": {"name": "Daisy Mart", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q61994934"}, "addTags": {"brand": "Daisy Mart", "brand:wikidata": "Q61994934", "name": "Daisy Mart", "shop": "convenience"}, "removeTags": {"brand": "Daisy Mart", "brand:wikidata": "Q61994934", "name": "Daisy Mart", "shop": "convenience"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/convenience/FamilyMart": {"name": "FamilyMart", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/880365539968798721/yNVr_BFn_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1191685"}, "addTags": {"brand": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "FamilyMart", "shop": "convenience"}, "removeTags": {"brand": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "FamilyMart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Four Square": {"name": "Four Square", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5475558"}, "addTags": {"brand": "Four Square", "brand:wikidata": "Q5475558", "brand:wikipedia": "en:Four Square (supermarket)", "name": "Four Square", "shop": "convenience"}, "removeTags": {"brand": "Four Square", "brand:wikidata": "Q5475558", "brand:wikipedia": "en:Four Square (supermarket)", "name": "Four Square", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Groszek": {"name": "Groszek", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBrd%C3%B3w%20-%20sklep2.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q9280965"}, "addTags": {"brand": "Groszek", "brand:wikidata": "Q9280965", "brand:wikipedia": "pl:Groszek (sieć sklepów)", "name": "Groszek", "shop": "convenience"}, "removeTags": {"brand": "Groszek", "brand:wikidata": "Q9280965", "brand:wikipedia": "pl:Groszek (sieć sklepów)", "name": "Groszek", "shop": "convenience"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Hasty Market": {"name": "Hasty Market", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q58022603"}, "addTags": {"brand": "Hasty Market", "brand:wikidata": "Q58022603", "name": "Hasty Market", "shop": "convenience"}, "removeTags": {"brand": "Hasty Market", "brand:wikidata": "Q58022603", "name": "Hasty Market", "shop": "convenience"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Intermarché Contact": {"name": "Intermarché Contact", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3153200"}, "addTags": {"brand": "Intermarché Contact", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché Contact", "shop": "convenience"}, "removeTags": {"brand": "Intermarché Contact", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché Contact", "shop": "convenience"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Jacksons": {"name": "Jacksons", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q6117880"}, "addTags": {"brand": "Jacksons", "brand:wikidata": "Q6117880", "brand:wikipedia": "en:Jacksons Stores", "name": "Jacksons", "shop": "convenience"}, "removeTags": {"brand": "Jacksons", "brand:wikidata": "Q6117880", "brand:wikipedia": "en:Jacksons Stores", "name": "Jacksons", "shop": "convenience"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/convenience/K-Market": {"name": "K-Market", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11868562"}, "addTags": {"brand": "K-Market", "brand:wikidata": "Q11868562", "brand:wikipedia": "fi:K-Market", "name": "K-Market", "shop": "convenience"}, "removeTags": {"brand": "K-Market", "brand:wikidata": "Q11868562", "brand:wikipedia": "fi:K-Market", "name": "K-Market", "shop": "convenience"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Kwik Trip": {"name": "Kwik Trip", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q6450420"}, "addTags": {"brand": "Kwik Trip", "brand:wikidata": "Q6450420", "brand:wikipedia": "en:Kwik Trip", "name": "Kwik Trip", "shop": "convenience"}, "removeTags": {"brand": "Kwik Trip", "brand:wikidata": "Q6450420", "brand:wikipedia": "en:Kwik Trip", "name": "Kwik Trip", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Lawson": {"name": "Lawson", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/lawson.fanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1557223"}, "addTags": {"brand": "Lawson", "brand:wikidata": "Q1557223", "brand:wikipedia": "en:Lawson (store)", "name": "Lawson", "shop": "convenience"}, "removeTags": {"brand": "Lawson", "brand:wikidata": "Q1557223", "brand:wikipedia": "en:Lawson (store)", "name": "Lawson", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Lifestyle Express": {"name": "Lifestyle Express", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q61994869"}, "addTags": {"brand": "Lifestyle Express", "brand:wikidata": "Q61994869", "name": "Lifestyle Express", "shop": "convenience"}, "removeTags": {"brand": "Lifestyle Express", "brand:wikidata": "Q61994869", "name": "Lifestyle Express", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Mace": {"name": "Mace", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q17089386"}, "addTags": {"brand": "Mace", "brand:wikidata": "Q17089386", "brand:wikipedia": "en:Mace (shop)", "name": "Mace", "shop": "convenience"}, "removeTags": {"brand": "Mace", "brand:wikidata": "Q17089386", "brand:wikipedia": "en:Mace (shop)", "name": "Mace", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Marathon": {"name": "Marathon", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMarathon%20Oil%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q458363"}, "addTags": {"brand": "Marathon", "brand:wikidata": "Q458363", "brand:wikipedia": "en:Marathon Petroleum", "name": "Marathon", "shop": "convenience"}, "removeTags": {"brand": "Marathon", "brand:wikidata": "Q458363", "brand:wikipedia": "en:Marathon Petroleum", "name": "Marathon", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Małpka Express": {"name": "Małpka Express", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSklep%20Ma%C5%82pka%20Express.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q18431946"}, "addTags": {"brand": "Małpka Express", "brand:wikidata": "Q18431946", "brand:wikipedia": "pl:Małpka Express", "name": "Małpka Express", "shop": "convenience"}, "removeTags": {"brand": "Małpka Express", "brand:wikidata": "Q18431946", "brand:wikipedia": "pl:Małpka Express", "name": "Małpka Express", "shop": "convenience"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/convenience/McColl's": {"name": "McColl's", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16997477"}, "addTags": {"brand": "McColl's", "brand:wikidata": "Q16997477", "brand:wikipedia": "en:McColl's", "name": "McColl's", "shop": "convenience"}, "removeTags": {"brand": "McColl's", "brand:wikidata": "Q16997477", "brand:wikipedia": "en:McColl's", "name": "McColl's", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Migrolino": {"name": "Migrolino", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMlino%20logo%204c%20co.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q56745088"}, "addTags": {"brand": "Migrolino", "brand:wikidata": "Q56745088", "brand:wikipedia": "de:Migrolino", "name": "Migrolino", "shop": "convenience"}, "removeTags": {"brand": "Migrolino", "brand:wikidata": "Q56745088", "brand:wikipedia": "de:Migrolino", "name": "Migrolino", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Ministop": {"name": "Ministop", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMINISTOP%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1038929"}, "addTags": {"brand": "Ministop", "brand:wikidata": "Q1038929", "brand:wikipedia": "en:Ministop", "name": "Ministop", "shop": "convenience"}, "removeTags": {"brand": "Ministop", "brand:wikidata": "Q1038929", "brand:wikipedia": "en:Ministop", "name": "Ministop", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Mobil Mart": {"name": "Mobil Mart", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMobil%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3088656"}, "addTags": {"brand": "Mobil Mart", "brand:wikidata": "Q3088656", "brand:wikipedia": "en:Mobil", "name": "Mobil Mart", "shop": "convenience"}, "removeTags": {"brand": "Mobil Mart", "brand:wikidata": "Q3088656", "brand:wikipedia": "en:Mobil", "name": "Mobil Mart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Nasz Sklep": {"name": "Nasz Sklep", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q62070369"}, "addTags": {"brand": "Nasz Sklep", "brand:wikidata": "Q62070369", "name": "Nasz Sklep", "shop": "convenience"}, "removeTags": {"brand": "Nasz Sklep", "brand:wikidata": "Q62070369", "name": "Nasz Sklep", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Nisa": {"name": "Nisa", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1091320703633248257/cj3S7Oqu_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16999069"}, "addTags": {"brand": "Nisa", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa", "shop": "convenience"}, "removeTags": {"brand": "Nisa", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Nisa Local": {"name": "Nisa Local", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1091320703633248257/cj3S7Oqu_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16999069"}, "addTags": {"brand": "Nisa Local", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa Local", "shop": "convenience"}, "removeTags": {"brand": "Nisa Local", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa Local", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/convenience/OK便利商店": {"name": "OK便利商店", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCircle%20k%20logo%20detail.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3268010"}, "addTags": {"brand": "OK便利商店", "brand:en": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "zh:OK便利店", "name": "OK便利商店", "name:en": "Circle K", "shop": "convenience"}, "removeTags": {"brand": "OK便利商店", "brand:en": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "zh:OK便利店", "name": "OK便利商店", "name:en": "Circle K", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/On the Run": {"name": "On the Run", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16931259"}, "addTags": {"brand": "On the Run", "brand:wikidata": "Q16931259", "brand:wikipedia": "en:On the Run (convenience store)", "name": "On the Run", "shop": "convenience"}, "removeTags": {"brand": "On the Run", "brand:wikidata": "Q16931259", "brand:wikipedia": "en:On the Run (convenience store)", "name": "On the Run", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Oxxo": {"name": "Oxxo", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FOxxo%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1342538"}, "addTags": {"brand": "Oxxo", "brand:wikidata": "Q1342538", "brand:wikipedia": "es:Oxxo", "name": "Oxxo", "shop": "convenience"}, "removeTags": {"brand": "Oxxo", "brand:wikidata": "Q1342538", "brand:wikipedia": "es:Oxxo", "name": "Oxxo", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Petro-Canada": {"name": "Petro-Canada", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPetro%20canada%20logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1208279"}, "addTags": {"brand": "Petro-Canada", "brand:wikidata": "Q1208279", "brand:wikipedia": "en:Petro-Canada", "name": "Petro-Canada", "shop": "convenience"}, "removeTags": {"brand": "Petro-Canada", "brand:wikidata": "Q1208279", "brand:wikipedia": "en:Petro-Canada", "name": "Petro-Canada", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Plaid Pantry": {"name": "Plaid Pantry", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7200591"}, "addTags": {"brand": "Plaid Pantry", "brand:wikidata": "Q7200591", "brand:wikipedia": "en:Plaid Pantry", "name": "Plaid Pantry", "shop": "convenience"}, "removeTags": {"brand": "Plaid Pantry", "brand:wikidata": "Q7200591", "brand:wikipedia": "en:Plaid Pantry", "name": "Plaid Pantry", "shop": "convenience"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Premier": {"name": "Premier", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/552086468839997441/Ok2vWsQl_bigger.jpeg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7240340"}, "addTags": {"brand": "Premier", "brand:wikidata": "Q7240340", "brand:wikipedia": "en:Premier Stores", "name": "Premier", "shop": "convenience"}, "removeTags": {"brand": "Premier", "brand:wikidata": "Q7240340", "brand:wikipedia": "en:Premier Stores", "name": "Premier", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Sainsbury's Local": {"name": "Sainsbury's Local", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q13218434"}, "addTags": {"brand": "Sainsbury's Local", "brand:wikidata": "Q13218434", "brand:wikipedia": "en:Sainsbury's Local", "name": "Sainsbury's Local", "shop": "convenience"}, "removeTags": {"brand": "Sainsbury's Local", "brand:wikidata": "Q13218434", "brand:wikipedia": "en:Sainsbury's Local", "name": "Sainsbury's Local", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Sheetz": {"name": "Sheetz", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7492551"}, "addTags": {"brand": "Sheetz", "brand:wikidata": "Q7492551", "brand:wikipedia": "en:Sheetz", "name": "Sheetz", "shop": "convenience"}, "removeTags": {"brand": "Sheetz", "brand:wikidata": "Q7492551", "brand:wikipedia": "en:Sheetz", "name": "Sheetz", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Shell Select": {"name": "Shell Select", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Shell/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q154950"}, "addTags": {"brand": "Shell Select", "brand:wikidata": "Q154950", "brand:wikipedia": "en:Royal Dutch Shell", "name": "Shell Select", "shop": "convenience"}, "removeTags": {"brand": "Shell Select", "brand:wikidata": "Q154950", "brand:wikipedia": "en:Royal Dutch Shell", "name": "Shell Select", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Siwa": {"name": "Siwa", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11893827"}, "addTags": {"brand": "Siwa", "brand:wikidata": "Q11893827", "name": "Siwa", "shop": "convenience"}, "removeTags": {"brand": "Siwa", "brand:wikidata": "Q11893827", "name": "Siwa", "shop": "convenience"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Spar": {"name": "Spar", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/753867353469886464/aFA06xb-_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q610492"}, "addTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar", "shop": "convenience"}, "removeTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Spar Express": {"name": "Spar Express", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/753867353469886464/aFA06xb-_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q610492"}, "addTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar Express", "shop": "convenience"}, "removeTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar Express", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Speedway": {"name": "Speedway", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7575683"}, "addTags": {"brand": "Speedway", "brand:wikidata": "Q7575683", "brand:wikipedia": "en:Speedway LLC", "name": "Speedway", "shop": "convenience"}, "removeTags": {"brand": "Speedway", "brand:wikidata": "Q7575683", "brand:wikipedia": "en:Speedway LLC", "name": "Speedway", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Społem": {"name": "Społem", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11826043"}, "addTags": {"brand": "Społem", "brand:wikidata": "Q11826043", "brand:wikipedia": "pl:Powszechna Spółdzielnia Spożywców „Społem”", "name": "Społem", "shop": "convenience"}, "removeTags": {"brand": "Społem", "brand:wikidata": "Q11826043", "brand:wikipedia": "pl:Powszechna Spółdzielnia Spożywców „Społem”", "name": "Społem", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Star Mart": {"name": "Star Mart", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q61994857"}, "addTags": {"brand": "Star Mart", "brand:wikidata": "Q61994857", "name": "Star Mart", "shop": "convenience"}, "removeTags": {"brand": "Star Mart", "brand:wikidata": "Q61994857", "name": "Star Mart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Stripes": {"name": "Stripes", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7624135"}, "addTags": {"brand": "Stripes", "brand:wikidata": "Q7624135", "brand:wikipedia": "en:Stripes Convenience Stores", "name": "Stripes", "shop": "convenience"}, "removeTags": {"brand": "Stripes", "brand:wikidata": "Q7624135", "brand:wikipedia": "en:Stripes Convenience Stores", "name": "Stripes", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/The Co-operative Food": {"name": "The Co-operative Food", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1034360565127409665/V4fCWHgw_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3277439"}, "addTags": {"brand": "The Co-operative Food", "brand:wikidata": "Q3277439", "brand:wikipedia": "en:Co-op Food", "name": "The Co-operative Food", "shop": "convenience"}, "removeTags": {"brand": "The Co-operative Food", "brand:wikidata": "Q3277439", "brand:wikipedia": "en:Co-op Food", "name": "The Co-operative Food", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Tiger Mart": {"name": "Tiger Mart", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q57643977"}, "addTags": {"brand": "Tiger Mart", "brand:wikidata": "Q57643977", "name": "Tiger Mart", "shop": "convenience"}, "removeTags": {"brand": "Tiger Mart", "brand:wikidata": "Q57643977", "name": "Tiger Mart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/United Dairy Farmers": {"name": "United Dairy Farmers", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/955843755151564801/JvOosZxX_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7887677"}, "addTags": {"amenity": "ice_cream", "brand": "United Dairy Farmers", "brand:wikidata": "Q7887677", "brand:wikipedia": "en:United Dairy Farmers", "name": "United Dairy Farmers", "shop": "convenience", "short_name": "UDF"}, "removeTags": {"amenity": "ice_cream", "brand": "United Dairy Farmers", "brand:wikidata": "Q7887677", "brand:wikipedia": "en:United Dairy Farmers", "name": "United Dairy Farmers", "shop": "convenience", "short_name": "UDF"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Utile": {"name": "Utile", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2529029"}, "addTags": {"brand": "Utile", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Utile", "shop": "convenience"}, "removeTags": {"brand": "Utile", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Utile", "shop": "convenience"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/convenience/VinMart+": {"name": "VinMart+", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q60245505"}, "addTags": {"brand": "VinMart", "brand:wikidata": "Q60245505", "brand:wikipedia": "vi:VinMart", "name": "VinMart+", "shop": "convenience"}, "removeTags": {"brand": "VinMart", "brand:wikidata": "Q60245505", "brand:wikipedia": "vi:VinMart", "name": "VinMart+", "shop": "convenience"}, "countryCodes": ["vn"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Vival": {"name": "Vival", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7937525"}, "addTags": {"brand": "Vival", "brand:wikidata": "Q7937525", "brand:wikipedia": "en:Vival (shop)", "name": "Vival", "shop": "convenience"}, "removeTags": {"brand": "Vival", "brand:wikidata": "Q7937525", "brand:wikipedia": "en:Vival (shop)", "name": "Vival", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Wawa": {"name": "Wawa", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/wawa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5936320"}, "addTags": {"brand": "Wawa", "brand:wikidata": "Q5936320", "brand:wikipedia": "en:Wawa (company)", "name": "Wawa", "shop": "convenience"}, "removeTags": {"brand": "Wawa", "brand:wikidata": "Q5936320", "brand:wikipedia": "en:Wawa (company)", "name": "Wawa", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Weltladen": {"name": "Weltladen", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1640782"}, "addTags": {"brand": "Weltladen", "brand:wikidata": "Q1640782", "brand:wikipedia": "de:Weltladen", "name": "Weltladen", "shop": "convenience"}, "removeTags": {"brand": "Weltladen", "brand:wikidata": "Q1640782", "brand:wikipedia": "de:Weltladen", "name": "Weltladen", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Woolworths Petrol": {"name": "Woolworths Petrol", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5023980"}, "addTags": {"brand": "Caltex", "brand:wikidata": "Q5023980", "brand:wikipedia": "en:Caltex Woolworths", "name": "Woolworths Petrol", "shop": "convenience"}, "removeTags": {"brand": "Caltex", "brand:wikidata": "Q5023980", "brand:wikipedia": "en:Caltex Woolworths", "name": "Woolworths Petrol", "shop": "convenience"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, - "shop/convenience/abc (Poland)": {"name": "abc (Poland)", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11683985"}, "addTags": {"brand": "abc", "brand:wikidata": "Q11683985", "brand:wikipedia": "pl:abc (sieć handlowa)", "name": "abc", "shop": "convenience"}, "removeTags": {"brand": "abc", "brand:wikidata": "Q11683985", "brand:wikipedia": "pl:abc (sieć handlowa)", "name": "abc", "shop": "convenience"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ampm": {"name": "ampm", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q306960"}, "addTags": {"brand": "ampm", "brand:wikidata": "Q306960", "brand:wikipedia": "en:Ampm", "name": "ampm", "shop": "convenience"}, "removeTags": {"brand": "ampm", "brand:wikidata": "Q306960", "brand:wikipedia": "en:Ampm", "name": "ampm", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/miniピアゴ": {"name": "miniピアゴ", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11188499"}, "addTags": {"brand": "miniピアゴ", "brand:en": "mini Piago", "brand:wikidata": "Q11188499", "brand:wikipedia": "ja:miniピアゴ", "name": "miniピアゴ", "name:en": "mini Piago", "shop": "convenience"}, "removeTags": {"brand": "miniピアゴ", "brand:en": "mini Piago", "brand:wikidata": "Q11188499", "brand:wikipedia": "ja:miniピアゴ", "name": "miniピアゴ", "name:en": "mini Piago", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Żabka": {"name": "Żabka", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2589061"}, "addTags": {"brand": "Żabka", "brand:wikidata": "Q2589061", "brand:wikipedia": "en:Żabka (convenience store)", "name": "Żabka", "shop": "convenience"}, "removeTags": {"brand": "Żabka", "brand:wikidata": "Q2589061", "brand:wikipedia": "en:Żabka (convenience store)", "name": "Żabka", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/ВкусВилл": {"name": "ВкусВилл", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FVkusVill%20textlogo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q57271676"}, "addTags": {"brand": "ВкусВилл", "brand:wikidata": "Q57271676", "brand:wikipedia": "ru:ВкусВилл", "name": "ВкусВилл", "shop": "convenience"}, "removeTags": {"brand": "ВкусВилл", "brand:wikidata": "Q57271676", "brand:wikipedia": "ru:ВкусВилл", "name": "ВкусВилл", "shop": "convenience"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Доброном": {"name": "Доброном", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/996280002529447936/Dg7yPzqo_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2565040"}, "addTags": {"brand": "Доброном", "brand:wikidata": "Q2565040", "brand:wikipedia": "be:Eurotorg", "name": "Доброном", "shop": "convenience"}, "removeTags": {"brand": "Доброном", "brand:wikidata": "Q2565040", "brand:wikipedia": "be:Eurotorg", "name": "Доброном", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Копейка": {"name": "Копейка", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1783878"}, "addTags": {"brand": "Копейка", "brand:en": "Kopeyka", "brand:wikidata": "Q1783878", "brand:wikipedia": "en:Kopeyka (supermarket)", "name": "Копейка", "name:en": "Kopeyka", "shop": "convenience"}, "removeTags": {"brand": "Копейка", "brand:en": "Kopeyka", "brand:wikidata": "Q1783878", "brand:wikipedia": "en:Kopeyka (supermarket)", "name": "Копейка", "name:en": "Kopeyka", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Магнит": {"name": "Магнит", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1098477357390856192/wILY9KdL_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q940518"}, "addTags": {"brand": "Магнит", "brand:en": "Magnit", "brand:wikidata": "Q940518", "brand:wikipedia": "ru:Магнит (сеть магазинов)", "name": "Магнит", "name:en": "Magnit", "shop": "convenience"}, "removeTags": {"brand": "Магнит", "brand:en": "Magnit", "brand:wikidata": "Q940518", "brand:wikipedia": "ru:Магнит (сеть магазинов)", "name": "Магнит", "name:en": "Magnit", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Сельпо": {"name": "Сельпо", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSilpo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q4419434"}, "addTags": {"brand": "Сельпо", "brand:wikidata": "Q4419434", "brand:wikipedia": "ru:Сильпо", "name": "Сельпо", "shop": "convenience"}, "removeTags": {"brand": "Сельпо", "brand:wikidata": "Q4419434", "brand:wikipedia": "ru:Сильпо", "name": "Сельпо", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/アンスリー": {"name": "アンスリー", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q17192555"}, "addTags": {"brand": "アンスリー", "brand:en": "Ansuri", "brand:wikidata": "Q17192555", "brand:wikipedia": "ja:アンスリー", "name": "アンスリー", "name:en": "Ansuri", "shop": "convenience"}, "removeTags": {"brand": "アンスリー", "brand:en": "Ansuri", "brand:wikidata": "Q17192555", "brand:wikipedia": "ja:アンスリー", "name": "アンスリー", "name:en": "Ansuri", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/サンクス": {"name": "サンクス", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/875617750923616257/dCryLWcX_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16141064"}, "addTags": {"brand": "サンクス", "brand:en": "Sunkus", "brand:ja": "サンクス", "brand:wikidata": "Q16141064", "brand:wikipedia": "ja:サークルKサンクス", "name": "サンクス", "name:en": "Sunkus", "name:ja": "サンクス", "shop": "convenience"}, "removeTags": {"brand": "サンクス", "brand:en": "Sunkus", "brand:ja": "サンクス", "brand:wikidata": "Q16141064", "brand:wikipedia": "ja:サークルKサンクス", "name": "サンクス", "name:en": "Sunkus", "name:ja": "サンクス", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/サークルK": {"name": "サークルK", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCircle%20k%20logo%20detail.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3268010"}, "addTags": {"brand": "サークルK", "brand:en": "Circle K", "brand:ja": "サークルK", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "サークルK", "name:en": "Circle K", "name:ja": "サークルK", "shop": "convenience"}, "removeTags": {"brand": "サークルK", "brand:en": "Circle K", "brand:ja": "サークルK", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "サークルK", "name:en": "Circle K", "name:ja": "サークルK", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/スリーエフ": {"name": "スリーエフ", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/875645560073539585/X1oFVQef_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11313419"}, "addTags": {"brand": "スリーエフ", "brand:en": "Three F", "brand:ja": "スリーエフ", "brand:wikidata": "Q11313419", "brand:wikipedia": "ja:スリーエフ", "name": "スリーエフ", "name:en": "Three F", "name:ja": "スリーエフ", "shop": "convenience"}, "removeTags": {"brand": "スリーエフ", "brand:en": "Three F", "brand:ja": "スリーエフ", "brand:wikidata": "Q11313419", "brand:wikipedia": "ja:スリーエフ", "name": "スリーエフ", "name:en": "Three F", "name:ja": "スリーエフ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/セイコーマート": {"name": "セイコーマート", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11314123"}, "addTags": {"brand": "セイコーマート", "brand:en": "Seicomart", "brand:ja": "セイコーマート", "brand:wikidata": "Q11314123", "brand:wikipedia": "ja:セイコーマート", "name": "セイコーマート", "name:en": "Seicomart", "name:ja": "セイコーマート", "shop": "convenience"}, "removeTags": {"brand": "セイコーマート", "brand:en": "Seicomart", "brand:ja": "セイコーマート", "brand:wikidata": "Q11314123", "brand:wikipedia": "ja:セイコーマート", "name": "セイコーマート", "name:en": "Seicomart", "name:ja": "セイコーマート", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/セブン-イレブン": {"name": "セブン-イレブン", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/7ElevenMexico/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q259340"}, "addTags": {"brand": "セブン-イレブン", "brand:en": "7-Eleven", "brand:ja": "セブン-イレブン", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "セブン-イレブン", "name:en": "7-Eleven", "name:ja": "セブン-イレブン", "official_name:en": "Seven-Eleven", "operator": "株式会社セブン&アイ・ホールディングス", "operator:en": "Seven & I Holdings Co., Ltd.", "operator:wikidata": "Q639447", "operator:wikipedia": "en:Seven & I Holdings Co.", "shop": "convenience"}, "removeTags": {"brand": "セブン-イレブン", "brand:en": "7-Eleven", "brand:ja": "セブン-イレブン", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "セブン-イレブン", "name:en": "7-Eleven", "name:ja": "セブン-イレブン", "official_name:en": "Seven-Eleven", "operator": "株式会社セブン&アイ・ホールディングス", "operator:en": "Seven & I Holdings Co., Ltd.", "operator:wikidata": "Q639447", "operator:wikipedia": "en:Seven & I Holdings Co.", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/セーブオン": {"name": "セーブオン", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11314868"}, "addTags": {"brand": "セーブオン", "brand:en": "Save On", "brand:ja": "セーブオン", "brand:wikidata": "Q11314868", "brand:wikipedia": "ja:セーブオン", "name": "セーブオン", "name:en": "Save On", "name:ja": "セーブオン", "shop": "convenience"}, "removeTags": {"brand": "セーブオン", "brand:en": "Save On", "brand:ja": "セーブオン", "brand:wikidata": "Q11314868", "brand:wikipedia": "ja:セーブオン", "name": "セーブオン", "name:en": "Save On", "name:ja": "セーブオン", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/デイリーヤマザキ": {"name": "デイリーヤマザキ", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5209392"}, "addTags": {"brand": "デイリーヤマザキ", "brand:en": "Daily Yamazaki", "brand:ja": "デイリーヤマザキ", "brand:wikidata": "Q5209392", "brand:wikipedia": "en:Daily Yamazaki", "name": "デイリーヤマザキ", "name:en": "Daily Yamazaki", "name:ja": "デイリーヤマザキ", "shop": "convenience"}, "removeTags": {"brand": "デイリーヤマザキ", "brand:en": "Daily Yamazaki", "brand:ja": "デイリーヤマザキ", "brand:wikidata": "Q5209392", "brand:wikipedia": "en:Daily Yamazaki", "name": "デイリーヤマザキ", "name:en": "Daily Yamazaki", "name:ja": "デイリーヤマザキ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ナチュラルローソン": {"name": "ナチュラルローソン", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11323850"}, "addTags": {"brand": "ナチュラルローソン", "brand:en": "NATURAL LAWSON", "brand:wikidata": "Q11323850", "brand:wikipedia": "ja:ナチュラルローソン", "name": "ナチュラルローソン", "name:en": "Natural Lawson", "shop": "convenience"}, "removeTags": {"brand": "ナチュラルローソン", "brand:en": "NATURAL LAWSON", "brand:wikidata": "Q11323850", "brand:wikipedia": "ja:ナチュラルローソン", "name": "ナチュラルローソン", "name:en": "Natural Lawson", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ファミリーマート": {"name": "ファミリーマート", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/880365539968798721/yNVr_BFn_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1191685"}, "addTags": {"brand": "ファミリーマート", "brand:en": "FamilyMart", "brand:ja": "ファミリーマート", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "ファミリーマート", "name:en": "FamilyMart", "name:ja": "ファミリーマート", "shop": "convenience"}, "removeTags": {"brand": "ファミリーマート", "brand:en": "FamilyMart", "brand:ja": "ファミリーマート", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "ファミリーマート", "name:en": "FamilyMart", "name:ja": "ファミリーマート", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ポプラ": {"name": "ポプラ", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/826586791058644992/chXkmxnQ_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7229380"}, "addTags": {"brand": "ポプラ", "brand:en": "Poplar", "brand:ja": "ポプラ", "brand:wikidata": "Q7229380", "brand:wikipedia": "ja:ポプラ (コンビニエンスストア)", "name": "ポプラ", "name:en": "Poplar", "name:ja": "ポプラ", "shop": "convenience"}, "removeTags": {"brand": "ポプラ", "brand:en": "Poplar", "brand:ja": "ポプラ", "brand:wikidata": "Q7229380", "brand:wikipedia": "ja:ポプラ (コンビニエンスストア)", "name": "ポプラ", "name:en": "Poplar", "name:ja": "ポプラ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ミニストップ": {"name": "ミニストップ", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMINISTOP%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1038929"}, "addTags": {"brand": "ミニストップ", "brand:en": "Ministop", "brand:ja": "ミニストップ", "brand:wikidata": "Q1038929", "brand:wikipedia": "ja:ミニストップ", "name": "ミニストップ", "name:en": "Ministop", "name:ja": "ミニストップ", "shop": "convenience"}, "removeTags": {"brand": "ミニストップ", "brand:en": "Ministop", "brand:ja": "ミニストップ", "brand:wikidata": "Q1038929", "brand:wikipedia": "ja:ミニストップ", "name": "ミニストップ", "name:en": "Ministop", "name:ja": "ミニストップ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ヤマザキショップ": {"name": "ヤマザキショップ", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11345131"}, "addTags": {"brand": "ヤマザキショップ", "brand:ja": "ヤマザキショップ", "brand:wikidata": "Q11345131", "brand:wikipedia": "ja:ヤマザキショップ", "name": "ヤマザキショップ", "name:en": "Yamazaki Shop", "name:ja": "ヤマザキショップ", "shop": "convenience"}, "removeTags": {"brand": "ヤマザキショップ", "brand:ja": "ヤマザキショップ", "brand:wikidata": "Q11345131", "brand:wikipedia": "ja:ヤマザキショップ", "name": "ヤマザキショップ", "name:en": "Yamazaki Shop", "name:ja": "ヤマザキショップ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ローソン": {"name": "ローソン", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/lawson.fanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1557223"}, "addTags": {"brand": "ローソン", "brand:en": "LAWSON", "brand:ja": "ローソン", "brand:wikidata": "Q1557223", "brand:wikipedia": "ja:ローソン", "name": "ローソン", "name:en": "Lawson", "name:ja": "ローソン", "shop": "convenience"}, "removeTags": {"brand": "ローソン", "brand:en": "LAWSON", "brand:ja": "ローソン", "brand:wikidata": "Q1557223", "brand:wikipedia": "ja:ローソン", "name": "ローソン", "name:en": "Lawson", "name:ja": "ローソン", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ローソンストア100": {"name": "ローソンストア100", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11350960"}, "addTags": {"brand": "ローソンストア100", "brand:en": "LAWSON STORE 100", "brand:ja": "ローソンストア100", "brand:wikidata": "Q11350960", "brand:wikipedia": "ja:ローソンストア100", "name": "ローソンストア100", "name:en": "Lawson Store 100", "name:ja": "ローソンストア100", "shop": "convenience"}, "removeTags": {"brand": "ローソンストア100", "brand:en": "LAWSON STORE 100", "brand:ja": "ローソンストア100", "brand:wikidata": "Q11350960", "brand:wikipedia": "ja:ローソンストア100", "name": "ローソンストア100", "name:en": "Lawson Store 100", "name:ja": "ローソンストア100", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ローソン・スリーエフ": {"name": "ローソン・スリーエフ", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q24866804"}, "addTags": {"brand": "ローソン・スリーエフ", "brand:en": "LAWSON・Three F", "brand:wikidata": "Q24866804", "brand:wikipedia": "ja:ローソン・スリーエフ", "name": "ローソン・スリーエフ", "name:en": "Lawson・Three F", "operator": "株式会社エル・ティーエフ", "operator:en": "L・TF Co., Ltd.", "shop": "convenience"}, "removeTags": {"brand": "ローソン・スリーエフ", "brand:en": "LAWSON・Three F", "brand:wikidata": "Q24866804", "brand:wikipedia": "ja:ローソン・スリーエフ", "name": "ローソン・スリーエフ", "name:en": "Lawson・Three F", "operator": "株式会社エル・ティーエフ", "operator:en": "L・TF Co., Ltd.", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/全家": {"name": "全家", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/880365539968798721/yNVr_BFn_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1191685"}, "addTags": {"brand": "全家", "brand:en": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "全家", "name:en": "FamilyMart", "shop": "convenience"}, "removeTags": {"brand": "全家", "brand:en": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "全家", "name:en": "FamilyMart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/全家便利商店": {"name": "全家便利商店", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q10891564"}, "addTags": {"brand": "全家便利商店", "brand:wikidata": "Q10891564", "brand:wikipedia": "zh:全家便利商店", "name": "全家便利商店", "shop": "convenience"}, "removeTags": {"brand": "全家便利商店", "brand:wikidata": "Q10891564", "brand:wikipedia": "zh:全家便利商店", "name": "全家便利商店", "shop": "convenience"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, - "shop/convenience/萊爾富": {"name": "萊爾富", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11326216"}, "addTags": {"brand": "萊爾富", "brand:wikidata": "Q11326216", "brand:wikipedia": "zh:萊爾富", "name": "萊爾富", "shop": "convenience"}, "removeTags": {"brand": "萊爾富", "brand:wikidata": "Q11326216", "brand:wikipedia": "zh:萊爾富", "name": "萊爾富", "shop": "convenience"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, - "shop/convenience/세븐일레븐": {"name": "세븐일레븐", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/7ElevenMexico/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q259340"}, "addTags": {"brand": "세븐일레븐", "brand:en": "7-Eleven", "brand:ko": "세븐일레븐", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "세븐일레븐", "name:en": "7-Eleven", "name:ko": "세븐일레븐", "shop": "convenience"}, "removeTags": {"brand": "세븐일레븐", "brand:en": "7-Eleven", "brand:ko": "세븐일레븐", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "세븐일레븐", "name:en": "7-Eleven", "name:ko": "세븐일레븐", "shop": "convenience"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, + "shop/convenience/7-Eleven": {"name": "7-Eleven", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/7ElevenMexico/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q259340"}, "addTags": {"brand": "7-Eleven", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "7-Eleven", "shop": "convenience"}, "removeTags": {"brand": "7-Eleven", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "7-Eleven", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/8 à Huit": {"name": "8 à Huit", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2818601"}, "addTags": {"brand": "8 à Huit", "brand:wikidata": "Q2818601", "brand:wikipedia": "en:8 à Huit", "name": "8 à Huit", "shop": "convenience"}, "removeTags": {"brand": "8 à Huit", "brand:wikidata": "Q2818601", "brand:wikipedia": "en:8 à Huit", "name": "8 à Huit", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/99 Speedmart": {"name": "99 Speedmart", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/99speedmart/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q62075061"}, "addTags": {"brand": "99 Speedmart", "brand:wikidata": "Q62075061", "name": "99 Speedmart", "shop": "convenience"}, "removeTags": {"brand": "99 Speedmart", "brand:wikidata": "Q62075061", "name": "99 Speedmart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/ABC (Hawaii)": {"name": "ABC (Hawaii)", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q4650251"}, "addTags": {"brand": "ABC", "brand:wikidata": "Q4650251", "brand:wikipedia": "en:ABC Stores (Hawaii)", "name": "ABC", "shop": "convenience"}, "removeTags": {"brand": "ABC", "brand:wikidata": "Q4650251", "brand:wikipedia": "en:ABC Stores (Hawaii)", "name": "ABC", "shop": "convenience"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Aibė": {"name": "Aibė", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1022952"}, "addTags": {"brand": "Aibė", "brand:wikidata": "Q1022952", "brand:wikipedia": "de:Aibė", "name": "Aibė", "shop": "convenience"}, "removeTags": {"brand": "Aibė", "brand:wikidata": "Q1022952", "brand:wikipedia": "de:Aibė", "name": "Aibė", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Albert Heijn to go": {"name": "Albert Heijn to go", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAlbert%20heijn.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1653985"}, "addTags": {"brand": "Albert Heijn to go", "brand:wikidata": "Q1653985", "brand:wikipedia": "en:Albert Heijn", "name": "Albert Heijn to go", "shop": "convenience"}, "removeTags": {"brand": "Albert Heijn to go", "brand:wikidata": "Q1653985", "brand:wikipedia": "en:Albert Heijn", "name": "Albert Heijn to go", "shop": "convenience"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Alfamidi": {"name": "Alfamidi", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q12471462"}, "addTags": {"brand": "Alfamidi", "brand:wikidata": "Q12471462", "brand:wikipedia": "id:Alfamidi", "name": "Alfamidi", "shop": "convenience"}, "removeTags": {"brand": "Alfamidi", "brand:wikidata": "Q12471462", "brand:wikipedia": "id:Alfamidi", "name": "Alfamidi", "shop": "convenience"}, "countryCodes": ["id"], "matchScore": 2, "suggestion": true}, + "shop/convenience/BP Shop": {"name": "BP Shop", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/bp/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q152057"}, "addTags": {"brand": "BP Shop", "brand:wikidata": "Q152057", "brand:wikipedia": "en:BP", "name": "BP Shop", "shop": "convenience"}, "removeTags": {"brand": "BP Shop", "brand:wikidata": "Q152057", "brand:wikipedia": "en:BP", "name": "BP Shop", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Buc-ee's": {"name": "Buc-ee's", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q4982335"}, "addTags": {"brand": "Buc-ee's", "brand:wikidata": "Q4982335", "brand:wikipedia": "en:Buc-ee's", "name": "Buc-ee's", "shop": "convenience"}, "removeTags": {"brand": "Buc-ee's", "brand:wikidata": "Q4982335", "brand:wikipedia": "en:Buc-ee's", "name": "Buc-ee's", "shop": "convenience"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/convenience/COOP Jednota": {"name": "COOP Jednota", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q41629254"}, "addTags": {"brand": "COOP Jednota", "brand:wikidata": "Q41629254", "brand:wikipedia": "sk:COOP Jednota Slovensko", "name": "COOP Jednota", "shop": "convenience"}, "removeTags": {"brand": "COOP Jednota", "brand:wikidata": "Q41629254", "brand:wikipedia": "sk:COOP Jednota Slovensko", "name": "COOP Jednota", "shop": "convenience"}, "countryCodes": ["cz", "sk"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Circle K": {"name": "Circle K", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCircle%20k%20logo%20detail.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3268010"}, "addTags": {"brand": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "Circle K", "shop": "convenience"}, "removeTags": {"brand": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "Circle K", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Co-op": {"name": "Co-op", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSaskatoon%20Co-op%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5440676"}, "addTags": {"brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op", "shop": "convenience"}, "removeTags": {"brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Coop Pronto": {"name": "Coop Pronto", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1129777"}, "addTags": {"brand": "Coop Pronto", "brand:wikidata": "Q1129777", "brand:wikipedia": "de:Coop Mineraloel", "name": "Coop Pronto", "shop": "convenience"}, "removeTags": {"brand": "Coop Pronto", "brand:wikidata": "Q1129777", "brand:wikipedia": "de:Coop Mineraloel", "name": "Coop Pronto", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Daisy Mart": {"name": "Daisy Mart", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q61994934"}, "addTags": {"brand": "Daisy Mart", "brand:wikidata": "Q61994934", "name": "Daisy Mart", "shop": "convenience"}, "removeTags": {"brand": "Daisy Mart", "brand:wikidata": "Q61994934", "name": "Daisy Mart", "shop": "convenience"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/convenience/FamilyMart": {"name": "FamilyMart", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/880365539968798721/yNVr_BFn_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1191685"}, "addTags": {"brand": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "FamilyMart", "shop": "convenience"}, "removeTags": {"brand": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "FamilyMart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Four Square": {"name": "Four Square", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5475558"}, "addTags": {"brand": "Four Square", "brand:wikidata": "Q5475558", "brand:wikipedia": "en:Four Square (supermarket)", "name": "Four Square", "shop": "convenience"}, "removeTags": {"brand": "Four Square", "brand:wikidata": "Q5475558", "brand:wikipedia": "en:Four Square (supermarket)", "name": "Four Square", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Groszek": {"name": "Groszek", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBrd%C3%B3w%20-%20sklep2.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q9280965"}, "addTags": {"brand": "Groszek", "brand:wikidata": "Q9280965", "brand:wikipedia": "pl:Groszek (sieć sklepów)", "name": "Groszek", "shop": "convenience"}, "removeTags": {"brand": "Groszek", "brand:wikidata": "Q9280965", "brand:wikipedia": "pl:Groszek (sieć sklepów)", "name": "Groszek", "shop": "convenience"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Hasty Market": {"name": "Hasty Market", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q58022603"}, "addTags": {"brand": "Hasty Market", "brand:wikidata": "Q58022603", "name": "Hasty Market", "shop": "convenience"}, "removeTags": {"brand": "Hasty Market", "brand:wikidata": "Q58022603", "name": "Hasty Market", "shop": "convenience"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Intermarché Contact": {"name": "Intermarché Contact", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3153200"}, "addTags": {"brand": "Intermarché Contact", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché Contact", "shop": "convenience"}, "removeTags": {"brand": "Intermarché Contact", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché Contact", "shop": "convenience"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Jacksons": {"name": "Jacksons", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q6117880"}, "addTags": {"brand": "Jacksons", "brand:wikidata": "Q6117880", "brand:wikipedia": "en:Jacksons Stores", "name": "Jacksons", "shop": "convenience"}, "removeTags": {"brand": "Jacksons", "brand:wikidata": "Q6117880", "brand:wikipedia": "en:Jacksons Stores", "name": "Jacksons", "shop": "convenience"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/convenience/K-Market": {"name": "K-Market", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11868562"}, "addTags": {"brand": "K-Market", "brand:wikidata": "Q11868562", "brand:wikipedia": "fi:K-Market", "name": "K-Market", "shop": "convenience"}, "removeTags": {"brand": "K-Market", "brand:wikidata": "Q11868562", "brand:wikipedia": "fi:K-Market", "name": "K-Market", "shop": "convenience"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Kwik Trip": {"name": "Kwik Trip", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q6450420"}, "addTags": {"brand": "Kwik Trip", "brand:wikidata": "Q6450420", "brand:wikipedia": "en:Kwik Trip", "name": "Kwik Trip", "shop": "convenience"}, "removeTags": {"brand": "Kwik Trip", "brand:wikidata": "Q6450420", "brand:wikipedia": "en:Kwik Trip", "name": "Kwik Trip", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Lawson": {"name": "Lawson", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/lawson.fanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1557223"}, "addTags": {"brand": "Lawson", "brand:wikidata": "Q1557223", "brand:wikipedia": "en:Lawson (store)", "name": "Lawson", "shop": "convenience"}, "removeTags": {"brand": "Lawson", "brand:wikidata": "Q1557223", "brand:wikipedia": "en:Lawson (store)", "name": "Lawson", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Lifestyle Express": {"name": "Lifestyle Express", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q61994869"}, "addTags": {"brand": "Lifestyle Express", "brand:wikidata": "Q61994869", "name": "Lifestyle Express", "shop": "convenience"}, "removeTags": {"brand": "Lifestyle Express", "brand:wikidata": "Q61994869", "name": "Lifestyle Express", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Mace": {"name": "Mace", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q17089386"}, "addTags": {"brand": "Mace", "brand:wikidata": "Q17089386", "brand:wikipedia": "en:Mace (shop)", "name": "Mace", "shop": "convenience"}, "removeTags": {"brand": "Mace", "brand:wikidata": "Q17089386", "brand:wikipedia": "en:Mace (shop)", "name": "Mace", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Marathon": {"name": "Marathon", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMarathon%20Oil%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q458363"}, "addTags": {"brand": "Marathon", "brand:wikidata": "Q458363", "brand:wikipedia": "en:Marathon Petroleum", "name": "Marathon", "shop": "convenience"}, "removeTags": {"brand": "Marathon", "brand:wikidata": "Q458363", "brand:wikipedia": "en:Marathon Petroleum", "name": "Marathon", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Małpka Express": {"name": "Małpka Express", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSklep%20Ma%C5%82pka%20Express.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q18431946"}, "addTags": {"brand": "Małpka Express", "brand:wikidata": "Q18431946", "brand:wikipedia": "pl:Małpka Express", "name": "Małpka Express", "shop": "convenience"}, "removeTags": {"brand": "Małpka Express", "brand:wikidata": "Q18431946", "brand:wikipedia": "pl:Małpka Express", "name": "Małpka Express", "shop": "convenience"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/convenience/McColl's": {"name": "McColl's", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16997477"}, "addTags": {"brand": "McColl's", "brand:wikidata": "Q16997477", "brand:wikipedia": "en:McColl's", "name": "McColl's", "shop": "convenience"}, "removeTags": {"brand": "McColl's", "brand:wikidata": "Q16997477", "brand:wikipedia": "en:McColl's", "name": "McColl's", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Migrolino": {"name": "Migrolino", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMlino%20logo%204c%20co.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q56745088"}, "addTags": {"brand": "Migrolino", "brand:wikidata": "Q56745088", "brand:wikipedia": "de:Migrolino", "name": "Migrolino", "shop": "convenience"}, "removeTags": {"brand": "Migrolino", "brand:wikidata": "Q56745088", "brand:wikipedia": "de:Migrolino", "name": "Migrolino", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Ministop": {"name": "Ministop", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMINISTOP%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1038929"}, "addTags": {"brand": "Ministop", "brand:wikidata": "Q1038929", "brand:wikipedia": "en:Ministop", "name": "Ministop", "shop": "convenience"}, "removeTags": {"brand": "Ministop", "brand:wikidata": "Q1038929", "brand:wikipedia": "en:Ministop", "name": "Ministop", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Mobil Mart": {"name": "Mobil Mart", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMobil%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3088656"}, "addTags": {"brand": "Mobil Mart", "brand:wikidata": "Q3088656", "brand:wikipedia": "en:Mobil", "name": "Mobil Mart", "shop": "convenience"}, "removeTags": {"brand": "Mobil Mart", "brand:wikidata": "Q3088656", "brand:wikipedia": "en:Mobil", "name": "Mobil Mart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Nasz Sklep": {"name": "Nasz Sklep", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q62070369"}, "addTags": {"brand": "Nasz Sklep", "brand:wikidata": "Q62070369", "name": "Nasz Sklep", "shop": "convenience"}, "removeTags": {"brand": "Nasz Sklep", "brand:wikidata": "Q62070369", "name": "Nasz Sklep", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Nisa": {"name": "Nisa", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/1091320703633248257/cj3S7Oqu_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16999069"}, "addTags": {"brand": "Nisa", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa", "shop": "convenience"}, "removeTags": {"brand": "Nisa", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Nisa Local": {"name": "Nisa Local", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/1091320703633248257/cj3S7Oqu_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16999069"}, "addTags": {"brand": "Nisa Local", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa Local", "shop": "convenience"}, "removeTags": {"brand": "Nisa Local", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa Local", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/convenience/OK便利商店": {"name": "OK便利商店", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCircle%20k%20logo%20detail.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3268010"}, "addTags": {"brand": "OK便利商店", "brand:en": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "zh:OK便利店", "name": "OK便利商店", "name:en": "Circle K", "shop": "convenience"}, "removeTags": {"brand": "OK便利商店", "brand:en": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "zh:OK便利店", "name": "OK便利商店", "name:en": "Circle K", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/On the Run": {"name": "On the Run", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16931259"}, "addTags": {"brand": "On the Run", "brand:wikidata": "Q16931259", "brand:wikipedia": "en:On the Run (convenience store)", "name": "On the Run", "shop": "convenience"}, "removeTags": {"brand": "On the Run", "brand:wikidata": "Q16931259", "brand:wikipedia": "en:On the Run (convenience store)", "name": "On the Run", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Oxxo": {"name": "Oxxo", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FOxxo%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1342538"}, "addTags": {"brand": "Oxxo", "brand:wikidata": "Q1342538", "brand:wikipedia": "es:Oxxo", "name": "Oxxo", "shop": "convenience"}, "removeTags": {"brand": "Oxxo", "brand:wikidata": "Q1342538", "brand:wikipedia": "es:Oxxo", "name": "Oxxo", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Petro-Canada": {"name": "Petro-Canada", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPetro%20canada%20logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1208279"}, "addTags": {"brand": "Petro-Canada", "brand:wikidata": "Q1208279", "brand:wikipedia": "en:Petro-Canada", "name": "Petro-Canada", "shop": "convenience"}, "removeTags": {"brand": "Petro-Canada", "brand:wikidata": "Q1208279", "brand:wikipedia": "en:Petro-Canada", "name": "Petro-Canada", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Plaid Pantry": {"name": "Plaid Pantry", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7200591"}, "addTags": {"brand": "Plaid Pantry", "brand:wikidata": "Q7200591", "brand:wikipedia": "en:Plaid Pantry", "name": "Plaid Pantry", "shop": "convenience"}, "removeTags": {"brand": "Plaid Pantry", "brand:wikidata": "Q7200591", "brand:wikipedia": "en:Plaid Pantry", "name": "Plaid Pantry", "shop": "convenience"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Premier": {"name": "Premier", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/552086468839997441/Ok2vWsQl_bigger.jpeg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7240340"}, "addTags": {"brand": "Premier", "brand:wikidata": "Q7240340", "brand:wikipedia": "en:Premier Stores", "name": "Premier", "shop": "convenience"}, "removeTags": {"brand": "Premier", "brand:wikidata": "Q7240340", "brand:wikipedia": "en:Premier Stores", "name": "Premier", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Sainsbury's Local": {"name": "Sainsbury's Local", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q13218434"}, "addTags": {"brand": "Sainsbury's Local", "brand:wikidata": "Q13218434", "brand:wikipedia": "en:Sainsbury's Local", "name": "Sainsbury's Local", "shop": "convenience"}, "removeTags": {"brand": "Sainsbury's Local", "brand:wikidata": "Q13218434", "brand:wikipedia": "en:Sainsbury's Local", "name": "Sainsbury's Local", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Sheetz": {"name": "Sheetz", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7492551"}, "addTags": {"brand": "Sheetz", "brand:wikidata": "Q7492551", "brand:wikipedia": "en:Sheetz", "name": "Sheetz", "shop": "convenience"}, "removeTags": {"brand": "Sheetz", "brand:wikidata": "Q7492551", "brand:wikipedia": "en:Sheetz", "name": "Sheetz", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Shell Select": {"name": "Shell Select", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Shell/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q154950"}, "addTags": {"brand": "Shell Select", "brand:wikidata": "Q154950", "brand:wikipedia": "en:Royal Dutch Shell", "name": "Shell Select", "shop": "convenience"}, "removeTags": {"brand": "Shell Select", "brand:wikidata": "Q154950", "brand:wikipedia": "en:Royal Dutch Shell", "name": "Shell Select", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Siwa": {"name": "Siwa", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11893827"}, "addTags": {"brand": "Siwa", "brand:wikidata": "Q11893827", "name": "Siwa", "shop": "convenience"}, "removeTags": {"brand": "Siwa", "brand:wikidata": "Q11893827", "name": "Siwa", "shop": "convenience"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Spar": {"name": "Spar", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/753867353469886464/aFA06xb-_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q610492"}, "addTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar", "shop": "convenience"}, "removeTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Spar Express": {"name": "Spar Express", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/753867353469886464/aFA06xb-_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q610492"}, "addTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar Express", "shop": "convenience"}, "removeTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar Express", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Speedway": {"name": "Speedway", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7575683"}, "addTags": {"brand": "Speedway", "brand:wikidata": "Q7575683", "brand:wikipedia": "en:Speedway LLC", "name": "Speedway", "shop": "convenience"}, "removeTags": {"brand": "Speedway", "brand:wikidata": "Q7575683", "brand:wikipedia": "en:Speedway LLC", "name": "Speedway", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Społem": {"name": "Społem", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11826043"}, "addTags": {"brand": "Społem", "brand:wikidata": "Q11826043", "brand:wikipedia": "pl:Powszechna Spółdzielnia Spożywców „Społem”", "name": "Społem", "shop": "convenience"}, "removeTags": {"brand": "Społem", "brand:wikidata": "Q11826043", "brand:wikipedia": "pl:Powszechna Spółdzielnia Spożywców „Społem”", "name": "Społem", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Star Mart": {"name": "Star Mart", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q61994857"}, "addTags": {"brand": "Star Mart", "brand:wikidata": "Q61994857", "name": "Star Mart", "shop": "convenience"}, "removeTags": {"brand": "Star Mart", "brand:wikidata": "Q61994857", "name": "Star Mart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Stripes": {"name": "Stripes", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7624135"}, "addTags": {"brand": "Stripes", "brand:wikidata": "Q7624135", "brand:wikipedia": "en:Stripes Convenience Stores", "name": "Stripes", "shop": "convenience"}, "removeTags": {"brand": "Stripes", "brand:wikidata": "Q7624135", "brand:wikipedia": "en:Stripes Convenience Stores", "name": "Stripes", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/The Co-operative Food": {"name": "The Co-operative Food", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/1034360565127409665/V4fCWHgw_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3277439"}, "addTags": {"brand": "The Co-operative Food", "brand:wikidata": "Q3277439", "brand:wikipedia": "en:Co-op Food", "name": "The Co-operative Food", "shop": "convenience"}, "removeTags": {"brand": "The Co-operative Food", "brand:wikidata": "Q3277439", "brand:wikipedia": "en:Co-op Food", "name": "The Co-operative Food", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Tiger Mart": {"name": "Tiger Mart", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q57643977"}, "addTags": {"brand": "Tiger Mart", "brand:wikidata": "Q57643977", "name": "Tiger Mart", "shop": "convenience"}, "removeTags": {"brand": "Tiger Mart", "brand:wikidata": "Q57643977", "name": "Tiger Mart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/United Dairy Farmers": {"name": "United Dairy Farmers", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/955843755151564801/JvOosZxX_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7887677"}, "addTags": {"amenity": "ice_cream", "brand": "United Dairy Farmers", "brand:wikidata": "Q7887677", "brand:wikipedia": "en:United Dairy Farmers", "name": "United Dairy Farmers", "shop": "convenience", "short_name": "UDF"}, "removeTags": {"amenity": "ice_cream", "brand": "United Dairy Farmers", "brand:wikidata": "Q7887677", "brand:wikipedia": "en:United Dairy Farmers", "name": "United Dairy Farmers", "shop": "convenience", "short_name": "UDF"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Utile": {"name": "Utile", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2529029"}, "addTags": {"brand": "Utile", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Utile", "shop": "convenience"}, "removeTags": {"brand": "Utile", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Utile", "shop": "convenience"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/convenience/VinMart+": {"name": "VinMart+", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q60245505"}, "addTags": {"brand": "VinMart", "brand:wikidata": "Q60245505", "brand:wikipedia": "vi:VinMart", "name": "VinMart+", "shop": "convenience"}, "removeTags": {"brand": "VinMart", "brand:wikidata": "Q60245505", "brand:wikipedia": "vi:VinMart", "name": "VinMart+", "shop": "convenience"}, "countryCodes": ["vn"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Vival": {"name": "Vival", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7937525"}, "addTags": {"brand": "Vival", "brand:wikidata": "Q7937525", "brand:wikipedia": "en:Vival (shop)", "name": "Vival", "shop": "convenience"}, "removeTags": {"brand": "Vival", "brand:wikidata": "Q7937525", "brand:wikipedia": "en:Vival (shop)", "name": "Vival", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Wawa": {"name": "Wawa", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/wawa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5936320"}, "addTags": {"brand": "Wawa", "brand:wikidata": "Q5936320", "brand:wikipedia": "en:Wawa (company)", "name": "Wawa", "shop": "convenience"}, "removeTags": {"brand": "Wawa", "brand:wikidata": "Q5936320", "brand:wikipedia": "en:Wawa (company)", "name": "Wawa", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Weltladen": {"name": "Weltladen", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1640782"}, "addTags": {"brand": "Weltladen", "brand:wikidata": "Q1640782", "brand:wikipedia": "de:Weltladen", "name": "Weltladen", "shop": "convenience"}, "removeTags": {"brand": "Weltladen", "brand:wikidata": "Q1640782", "brand:wikipedia": "de:Weltladen", "name": "Weltladen", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Woolworths Petrol": {"name": "Woolworths Petrol", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5023980"}, "addTags": {"brand": "Caltex", "brand:wikidata": "Q5023980", "brand:wikipedia": "en:Caltex Woolworths", "name": "Woolworths Petrol", "shop": "convenience"}, "removeTags": {"brand": "Caltex", "brand:wikidata": "Q5023980", "brand:wikipedia": "en:Caltex Woolworths", "name": "Woolworths Petrol", "shop": "convenience"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, + "shop/convenience/abc (Poland)": {"name": "abc (Poland)", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11683985"}, "addTags": {"brand": "abc", "brand:wikidata": "Q11683985", "brand:wikipedia": "pl:abc (sieć handlowa)", "name": "abc", "shop": "convenience"}, "removeTags": {"brand": "abc", "brand:wikidata": "Q11683985", "brand:wikipedia": "pl:abc (sieć handlowa)", "name": "abc", "shop": "convenience"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/convenience/ampm": {"name": "ampm", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q306960"}, "addTags": {"brand": "ampm", "brand:wikidata": "Q306960", "brand:wikipedia": "en:Ampm", "name": "ampm", "shop": "convenience"}, "removeTags": {"brand": "ampm", "brand:wikidata": "Q306960", "brand:wikipedia": "en:Ampm", "name": "ampm", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/miniピアゴ": {"name": "miniピアゴ", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11188499"}, "addTags": {"brand": "miniピアゴ", "brand:en": "mini Piago", "brand:wikidata": "Q11188499", "brand:wikipedia": "ja:miniピアゴ", "name": "miniピアゴ", "name:en": "mini Piago", "shop": "convenience"}, "removeTags": {"brand": "miniピアゴ", "brand:en": "mini Piago", "brand:wikidata": "Q11188499", "brand:wikipedia": "ja:miniピアゴ", "name": "miniピアゴ", "name:en": "mini Piago", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Żabka": {"name": "Żabka", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2589061"}, "addTags": {"brand": "Żabka", "brand:wikidata": "Q2589061", "brand:wikipedia": "en:Żabka (convenience store)", "name": "Żabka", "shop": "convenience"}, "removeTags": {"brand": "Żabka", "brand:wikidata": "Q2589061", "brand:wikipedia": "en:Żabka (convenience store)", "name": "Żabka", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/ВкусВилл": {"name": "ВкусВилл", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FVkusVill%20textlogo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q57271676"}, "addTags": {"brand": "ВкусВилл", "brand:wikidata": "Q57271676", "brand:wikipedia": "ru:ВкусВилл", "name": "ВкусВилл", "shop": "convenience"}, "removeTags": {"brand": "ВкусВилл", "brand:wikidata": "Q57271676", "brand:wikipedia": "ru:ВкусВилл", "name": "ВкусВилл", "shop": "convenience"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Доброном": {"name": "Доброном", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/996280002529447936/Dg7yPzqo_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2565040"}, "addTags": {"brand": "Доброном", "brand:wikidata": "Q2565040", "brand:wikipedia": "be:Eurotorg", "name": "Доброном", "shop": "convenience"}, "removeTags": {"brand": "Доброном", "brand:wikidata": "Q2565040", "brand:wikipedia": "be:Eurotorg", "name": "Доброном", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Копейка": {"name": "Копейка", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1783878"}, "addTags": {"brand": "Копейка", "brand:en": "Kopeyka", "brand:wikidata": "Q1783878", "brand:wikipedia": "en:Kopeyka (supermarket)", "name": "Копейка", "name:en": "Kopeyka", "shop": "convenience"}, "removeTags": {"brand": "Копейка", "brand:en": "Kopeyka", "brand:wikidata": "Q1783878", "brand:wikipedia": "en:Kopeyka (supermarket)", "name": "Копейка", "name:en": "Kopeyka", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Магнит": {"name": "Магнит", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/1098477357390856192/wILY9KdL_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q940518"}, "addTags": {"brand": "Магнит", "brand:en": "Magnit", "brand:wikidata": "Q940518", "brand:wikipedia": "ru:Магнит (сеть магазинов)", "name": "Магнит", "name:en": "Magnit", "shop": "convenience"}, "removeTags": {"brand": "Магнит", "brand:en": "Magnit", "brand:wikidata": "Q940518", "brand:wikipedia": "ru:Магнит (сеть магазинов)", "name": "Магнит", "name:en": "Magnit", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Сельпо": {"name": "Сельпо", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSilpo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q4419434"}, "addTags": {"brand": "Сельпо", "brand:wikidata": "Q4419434", "brand:wikipedia": "ru:Сильпо", "name": "Сельпо", "shop": "convenience"}, "removeTags": {"brand": "Сельпо", "brand:wikidata": "Q4419434", "brand:wikipedia": "ru:Сильпо", "name": "Сельпо", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/アンスリー": {"name": "アンスリー", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q17192555"}, "addTags": {"brand": "アンスリー", "brand:en": "Ansuri", "brand:wikidata": "Q17192555", "brand:wikipedia": "ja:アンスリー", "name": "アンスリー", "name:en": "Ansuri", "shop": "convenience"}, "removeTags": {"brand": "アンスリー", "brand:en": "Ansuri", "brand:wikidata": "Q17192555", "brand:wikipedia": "ja:アンスリー", "name": "アンスリー", "name:en": "Ansuri", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/サンクス": {"name": "サンクス", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/875617750923616257/dCryLWcX_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16141064"}, "addTags": {"brand": "サンクス", "brand:en": "Sunkus", "brand:ja": "サンクス", "brand:wikidata": "Q16141064", "brand:wikipedia": "ja:サークルKサンクス", "name": "サンクス", "name:en": "Sunkus", "name:ja": "サンクス", "shop": "convenience"}, "removeTags": {"brand": "サンクス", "brand:en": "Sunkus", "brand:ja": "サンクス", "brand:wikidata": "Q16141064", "brand:wikipedia": "ja:サークルKサンクス", "name": "サンクス", "name:en": "Sunkus", "name:ja": "サンクス", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/サークルK": {"name": "サークルK", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCircle%20k%20logo%20detail.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3268010"}, "addTags": {"brand": "サークルK", "brand:en": "Circle K", "brand:ja": "サークルK", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "サークルK", "name:en": "Circle K", "name:ja": "サークルK", "shop": "convenience"}, "removeTags": {"brand": "サークルK", "brand:en": "Circle K", "brand:ja": "サークルK", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "サークルK", "name:en": "Circle K", "name:ja": "サークルK", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/スリーエフ": {"name": "スリーエフ", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/875645560073539585/X1oFVQef_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11313419"}, "addTags": {"brand": "スリーエフ", "brand:en": "Three F", "brand:ja": "スリーエフ", "brand:wikidata": "Q11313419", "brand:wikipedia": "ja:スリーエフ", "name": "スリーエフ", "name:en": "Three F", "name:ja": "スリーエフ", "shop": "convenience"}, "removeTags": {"brand": "スリーエフ", "brand:en": "Three F", "brand:ja": "スリーエフ", "brand:wikidata": "Q11313419", "brand:wikipedia": "ja:スリーエフ", "name": "スリーエフ", "name:en": "Three F", "name:ja": "スリーエフ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/セイコーマート": {"name": "セイコーマート", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11314123"}, "addTags": {"brand": "セイコーマート", "brand:en": "Seicomart", "brand:ja": "セイコーマート", "brand:wikidata": "Q11314123", "brand:wikipedia": "ja:セイコーマート", "name": "セイコーマート", "name:en": "Seicomart", "name:ja": "セイコーマート", "shop": "convenience"}, "removeTags": {"brand": "セイコーマート", "brand:en": "Seicomart", "brand:ja": "セイコーマート", "brand:wikidata": "Q11314123", "brand:wikipedia": "ja:セイコーマート", "name": "セイコーマート", "name:en": "Seicomart", "name:ja": "セイコーマート", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/セブン-イレブン": {"name": "セブン-イレブン", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/7ElevenMexico/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q259340"}, "addTags": {"brand": "セブン-イレブン", "brand:en": "7-Eleven", "brand:ja": "セブン-イレブン", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "セブン-イレブン", "name:en": "7-Eleven", "name:ja": "セブン-イレブン", "official_name:en": "Seven-Eleven", "operator": "株式会社セブン&アイ・ホールディングス", "operator:en": "Seven & I Holdings Co., Ltd.", "operator:wikidata": "Q639447", "operator:wikipedia": "en:Seven & I Holdings Co.", "shop": "convenience"}, "removeTags": {"brand": "セブン-イレブン", "brand:en": "7-Eleven", "brand:ja": "セブン-イレブン", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "セブン-イレブン", "name:en": "7-Eleven", "name:ja": "セブン-イレブン", "official_name:en": "Seven-Eleven", "operator": "株式会社セブン&アイ・ホールディングス", "operator:en": "Seven & I Holdings Co., Ltd.", "operator:wikidata": "Q639447", "operator:wikipedia": "en:Seven & I Holdings Co.", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/セーブオン": {"name": "セーブオン", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11314868"}, "addTags": {"brand": "セーブオン", "brand:en": "Save On", "brand:ja": "セーブオン", "brand:wikidata": "Q11314868", "brand:wikipedia": "ja:セーブオン", "name": "セーブオン", "name:en": "Save On", "name:ja": "セーブオン", "shop": "convenience"}, "removeTags": {"brand": "セーブオン", "brand:en": "Save On", "brand:ja": "セーブオン", "brand:wikidata": "Q11314868", "brand:wikipedia": "ja:セーブオン", "name": "セーブオン", "name:en": "Save On", "name:ja": "セーブオン", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/デイリーヤマザキ": {"name": "デイリーヤマザキ", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5209392"}, "addTags": {"brand": "デイリーヤマザキ", "brand:en": "Daily Yamazaki", "brand:ja": "デイリーヤマザキ", "brand:wikidata": "Q5209392", "brand:wikipedia": "en:Daily Yamazaki", "name": "デイリーヤマザキ", "name:en": "Daily Yamazaki", "name:ja": "デイリーヤマザキ", "shop": "convenience"}, "removeTags": {"brand": "デイリーヤマザキ", "brand:en": "Daily Yamazaki", "brand:ja": "デイリーヤマザキ", "brand:wikidata": "Q5209392", "brand:wikipedia": "en:Daily Yamazaki", "name": "デイリーヤマザキ", "name:en": "Daily Yamazaki", "name:ja": "デイリーヤマザキ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/ナチュラルローソン": {"name": "ナチュラルローソン", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11323850"}, "addTags": {"brand": "ナチュラルローソン", "brand:en": "NATURAL LAWSON", "brand:wikidata": "Q11323850", "brand:wikipedia": "ja:ナチュラルローソン", "name": "ナチュラルローソン", "name:en": "Natural Lawson", "shop": "convenience"}, "removeTags": {"brand": "ナチュラルローソン", "brand:en": "NATURAL LAWSON", "brand:wikidata": "Q11323850", "brand:wikipedia": "ja:ナチュラルローソン", "name": "ナチュラルローソン", "name:en": "Natural Lawson", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/ファミリーマート": {"name": "ファミリーマート", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/880365539968798721/yNVr_BFn_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1191685"}, "addTags": {"brand": "ファミリーマート", "brand:en": "FamilyMart", "brand:ja": "ファミリーマート", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "ファミリーマート", "name:en": "FamilyMart", "name:ja": "ファミリーマート", "shop": "convenience"}, "removeTags": {"brand": "ファミリーマート", "brand:en": "FamilyMart", "brand:ja": "ファミリーマート", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "ファミリーマート", "name:en": "FamilyMart", "name:ja": "ファミリーマート", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/ポプラ": {"name": "ポプラ", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/826586791058644992/chXkmxnQ_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7229380"}, "addTags": {"brand": "ポプラ", "brand:en": "Poplar", "brand:ja": "ポプラ", "brand:wikidata": "Q7229380", "brand:wikipedia": "ja:ポプラ (コンビニエンスストア)", "name": "ポプラ", "name:en": "Poplar", "name:ja": "ポプラ", "shop": "convenience"}, "removeTags": {"brand": "ポプラ", "brand:en": "Poplar", "brand:ja": "ポプラ", "brand:wikidata": "Q7229380", "brand:wikipedia": "ja:ポプラ (コンビニエンスストア)", "name": "ポプラ", "name:en": "Poplar", "name:ja": "ポプラ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/ミニストップ": {"name": "ミニストップ", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMINISTOP%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1038929"}, "addTags": {"brand": "ミニストップ", "brand:en": "Ministop", "brand:ja": "ミニストップ", "brand:wikidata": "Q1038929", "brand:wikipedia": "ja:ミニストップ", "name": "ミニストップ", "name:en": "Ministop", "name:ja": "ミニストップ", "shop": "convenience"}, "removeTags": {"brand": "ミニストップ", "brand:en": "Ministop", "brand:ja": "ミニストップ", "brand:wikidata": "Q1038929", "brand:wikipedia": "ja:ミニストップ", "name": "ミニストップ", "name:en": "Ministop", "name:ja": "ミニストップ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/ヤマザキショップ": {"name": "ヤマザキショップ", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11345131"}, "addTags": {"brand": "ヤマザキショップ", "brand:ja": "ヤマザキショップ", "brand:wikidata": "Q11345131", "brand:wikipedia": "ja:ヤマザキショップ", "name": "ヤマザキショップ", "name:en": "Yamazaki Shop", "name:ja": "ヤマザキショップ", "shop": "convenience"}, "removeTags": {"brand": "ヤマザキショップ", "brand:ja": "ヤマザキショップ", "brand:wikidata": "Q11345131", "brand:wikipedia": "ja:ヤマザキショップ", "name": "ヤマザキショップ", "name:en": "Yamazaki Shop", "name:ja": "ヤマザキショップ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/ローソン": {"name": "ローソン", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/lawson.fanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1557223"}, "addTags": {"brand": "ローソン", "brand:en": "LAWSON", "brand:ja": "ローソン", "brand:wikidata": "Q1557223", "brand:wikipedia": "ja:ローソン", "name": "ローソン", "name:en": "Lawson", "name:ja": "ローソン", "shop": "convenience"}, "removeTags": {"brand": "ローソン", "brand:en": "LAWSON", "brand:ja": "ローソン", "brand:wikidata": "Q1557223", "brand:wikipedia": "ja:ローソン", "name": "ローソン", "name:en": "Lawson", "name:ja": "ローソン", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/ローソンストア100": {"name": "ローソンストア100", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11350960"}, "addTags": {"brand": "ローソンストア100", "brand:en": "LAWSON STORE 100", "brand:ja": "ローソンストア100", "brand:wikidata": "Q11350960", "brand:wikipedia": "ja:ローソンストア100", "name": "ローソンストア100", "name:en": "Lawson Store 100", "name:ja": "ローソンストア100", "shop": "convenience"}, "removeTags": {"brand": "ローソンストア100", "brand:en": "LAWSON STORE 100", "brand:ja": "ローソンストア100", "brand:wikidata": "Q11350960", "brand:wikipedia": "ja:ローソンストア100", "name": "ローソンストア100", "name:en": "Lawson Store 100", "name:ja": "ローソンストア100", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/ローソン・スリーエフ": {"name": "ローソン・スリーエフ", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q24866804"}, "addTags": {"brand": "ローソン・スリーエフ", "brand:en": "LAWSON・Three F", "brand:wikidata": "Q24866804", "brand:wikipedia": "ja:ローソン・スリーエフ", "name": "ローソン・スリーエフ", "name:en": "Lawson・Three F", "operator": "株式会社エル・ティーエフ", "operator:en": "L・TF Co., Ltd.", "shop": "convenience"}, "removeTags": {"brand": "ローソン・スリーエフ", "brand:en": "LAWSON・Three F", "brand:wikidata": "Q24866804", "brand:wikipedia": "ja:ローソン・スリーエフ", "name": "ローソン・スリーエフ", "name:en": "Lawson・Three F", "operator": "株式会社エル・ティーエフ", "operator:en": "L・TF Co., Ltd.", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/全家": {"name": "全家", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/880365539968798721/yNVr_BFn_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1191685"}, "addTags": {"brand": "全家", "brand:en": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "全家", "name:en": "FamilyMart", "shop": "convenience"}, "removeTags": {"brand": "全家", "brand:en": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "全家", "name:en": "FamilyMart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/全家便利商店": {"name": "全家便利商店", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q10891564"}, "addTags": {"brand": "全家便利商店", "brand:wikidata": "Q10891564", "brand:wikipedia": "zh:全家便利商店", "name": "全家便利商店", "shop": "convenience"}, "removeTags": {"brand": "全家便利商店", "brand:wikidata": "Q10891564", "brand:wikipedia": "zh:全家便利商店", "name": "全家便利商店", "shop": "convenience"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, + "shop/convenience/萊爾富": {"name": "萊爾富", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11326216"}, "addTags": {"brand": "萊爾富", "brand:wikidata": "Q11326216", "brand:wikipedia": "zh:萊爾富", "name": "萊爾富", "shop": "convenience"}, "removeTags": {"brand": "萊爾富", "brand:wikidata": "Q11326216", "brand:wikipedia": "zh:萊爾富", "name": "萊爾富", "shop": "convenience"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, + "shop/convenience/세븐일레븐": {"name": "세븐일레븐", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/7ElevenMexico/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q259340"}, "addTags": {"brand": "세븐일레븐", "brand:en": "7-Eleven", "brand:ko": "세븐일레븐", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "세븐일레븐", "name:en": "7-Eleven", "name:ko": "세븐일레븐", "shop": "convenience"}, "removeTags": {"brand": "세븐일레븐", "brand:en": "7-Eleven", "brand:ko": "세븐일레븐", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "세븐일레븐", "name:en": "7-Eleven", "name:ko": "세븐일레븐", "shop": "convenience"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, "shop/copyshop/FedEx Office": {"name": "FedEx Office", "icon": "fas-print", "imageURL": "https://graph.facebook.com/FedExOffice/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "copyshop", "brand:wikidata": "Q474379"}, "addTags": {"brand": "FedEx Office", "brand:wikidata": "Q474379", "brand:wikipedia": "en:FedEx Office", "name": "FedEx Office", "shop": "copyshop"}, "removeTags": {"brand": "FedEx Office", "brand:wikidata": "Q474379", "brand:wikipedia": "en:FedEx Office", "name": "FedEx Office", "shop": "copyshop"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/cosmetics/KIKO Milano": {"name": "KIKO Milano", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/952897224551346176/E2KWgQTi_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q3812045"}, "addTags": {"brand": "KIKO Milano", "brand:wikidata": "Q3812045", "brand:wikipedia": "it:KIKO", "name": "KIKO Milano", "shop": "cosmetics"}, "removeTags": {"brand": "KIKO Milano", "brand:wikidata": "Q3812045", "brand:wikipedia": "it:KIKO", "name": "KIKO Milano", "shop": "cosmetics"}, "matchScore": 2, "suggestion": true}, "shop/cosmetics/Kiehl's": {"name": "Kiehl's", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/KiehlsSince1851/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q3196447"}, "addTags": {"brand": "Kiehl's", "brand:wikidata": "Q3196447", "brand:wikipedia": "en:Kiehl's", "name": "Kiehl's", "shop": "cosmetics"}, "removeTags": {"brand": "Kiehl's", "brand:wikidata": "Q3196447", "brand:wikipedia": "en:Kiehl's", "name": "Kiehl's", "shop": "cosmetics"}, "matchScore": 2, "suggestion": true}, @@ -3011,10 +3011,10 @@ "shop/country_store/Blain's Farm & Fleet": {"name": "Blain's Farm & Fleet", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/BlainsFarmandFleet/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q4923906"}, "addTags": {"brand": "Blain's Farm & Fleet", "brand:wikidata": "Q4923906", "brand:wikipedia": "en:Blain's Farm & Fleet", "name": "Blain's Farm & Fleet", "shop": "country_store"}, "removeTags": {"brand": "Blain's Farm & Fleet", "brand:wikidata": "Q4923906", "brand:wikipedia": "en:Blain's Farm & Fleet", "name": "Blain's Farm & Fleet", "shop": "country_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/country_store/Rural King": {"name": "Rural King", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/RuralKing/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q7380525"}, "addTags": {"brand": "Rural King", "brand:wikidata": "Q7380525", "brand:wikipedia": "en:Rural King", "name": "Rural King", "shop": "country_store"}, "removeTags": {"brand": "Rural King", "brand:wikidata": "Q7380525", "brand:wikipedia": "en:Rural King", "name": "Rural King", "shop": "country_store"}, "matchScore": 2, "suggestion": true}, "shop/country_store/Tractor Supply Company": {"name": "Tractor Supply Company", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/TractorSupplyCo/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q15109925"}, "addTags": {"brand": "Tractor Supply Company", "brand:wikidata": "Q15109925", "brand:wikipedia": "en:Tractor Supply Company", "name": "Tractor Supply Company", "shop": "country_store"}, "removeTags": {"brand": "Tractor Supply Company", "brand:wikidata": "Q15109925", "brand:wikipedia": "en:Tractor Supply Company", "name": "Tractor Supply Company", "shop": "country_store"}, "matchScore": 2, "suggestion": true}, - "shop/craft/Hobby Lobby": {"name": "Hobby Lobby", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/HobbyLobby/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "craft", "brand:wikidata": "Q5874938"}, "addTags": {"brand": "Hobby Lobby", "brand:wikidata": "Q5874938", "brand:wikipedia": "en:Hobby Lobby", "name": "Hobby Lobby", "shop": "craft"}, "removeTags": {"brand": "Hobby Lobby", "brand:wikidata": "Q5874938", "brand:wikipedia": "en:Hobby Lobby", "name": "Hobby Lobby", "shop": "craft"}, "matchScore": 2, "suggestion": true}, - "shop/craft/Hobbycraft": {"name": "Hobbycraft", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/HobbycraftUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "craft", "brand:wikidata": "Q16984508"}, "addTags": {"brand": "Hobbycraft", "brand:wikidata": "Q16984508", "brand:wikipedia": "en:Hobbycraft", "name": "Hobbycraft", "shop": "craft"}, "removeTags": {"brand": "Hobbycraft", "brand:wikidata": "Q16984508", "brand:wikipedia": "en:Hobbycraft", "name": "Hobbycraft", "shop": "craft"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/craft/Jo-Ann": {"name": "Jo-Ann", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/JoAnn/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "craft", "brand:wikidata": "Q6203968"}, "addTags": {"brand": "Jo-Ann", "brand:wikidata": "Q6203968", "brand:wikipedia": "en:Jo-Ann Stores", "name": "Jo-Ann", "shop": "craft"}, "removeTags": {"brand": "Jo-Ann", "brand:wikidata": "Q6203968", "brand:wikipedia": "en:Jo-Ann Stores", "name": "Jo-Ann", "shop": "craft"}, "matchScore": 2, "suggestion": true}, - "shop/craft/Michaels": {"name": "Michaels", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Michaels/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "craft", "brand:wikidata": "Q6835667"}, "addTags": {"brand": "Michaels", "brand:wikidata": "Q6835667", "brand:wikipedia": "en:Michaels", "name": "Michaels", "shop": "craft"}, "removeTags": {"brand": "Michaels", "brand:wikidata": "Q6835667", "brand:wikipedia": "en:Michaels", "name": "Michaels", "shop": "craft"}, "matchScore": 2, "suggestion": true}, + "shop/craft/Hobby Lobby": {"name": "Hobby Lobby", "icon": "fas-palette", "imageURL": "https://graph.facebook.com/HobbyLobby/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "craft", "brand:wikidata": "Q5874938"}, "addTags": {"brand": "Hobby Lobby", "brand:wikidata": "Q5874938", "brand:wikipedia": "en:Hobby Lobby", "name": "Hobby Lobby", "shop": "craft"}, "removeTags": {"brand": "Hobby Lobby", "brand:wikidata": "Q5874938", "brand:wikipedia": "en:Hobby Lobby", "name": "Hobby Lobby", "shop": "craft"}, "matchScore": 2, "suggestion": true}, + "shop/craft/Hobbycraft": {"name": "Hobbycraft", "icon": "fas-palette", "imageURL": "https://graph.facebook.com/HobbycraftUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "craft", "brand:wikidata": "Q16984508"}, "addTags": {"brand": "Hobbycraft", "brand:wikidata": "Q16984508", "brand:wikipedia": "en:Hobbycraft", "name": "Hobbycraft", "shop": "craft"}, "removeTags": {"brand": "Hobbycraft", "brand:wikidata": "Q16984508", "brand:wikipedia": "en:Hobbycraft", "name": "Hobbycraft", "shop": "craft"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/craft/Jo-Ann": {"name": "Jo-Ann", "icon": "fas-palette", "imageURL": "https://graph.facebook.com/JoAnn/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "craft", "brand:wikidata": "Q6203968"}, "addTags": {"brand": "Jo-Ann", "brand:wikidata": "Q6203968", "brand:wikipedia": "en:Jo-Ann Stores", "name": "Jo-Ann", "shop": "craft"}, "removeTags": {"brand": "Jo-Ann", "brand:wikidata": "Q6203968", "brand:wikipedia": "en:Jo-Ann Stores", "name": "Jo-Ann", "shop": "craft"}, "matchScore": 2, "suggestion": true}, + "shop/craft/Michaels": {"name": "Michaels", "icon": "fas-palette", "imageURL": "https://graph.facebook.com/Michaels/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "craft", "brand:wikidata": "Q6835667"}, "addTags": {"brand": "Michaels", "brand:wikidata": "Q6835667", "brand:wikipedia": "en:Michaels", "name": "Michaels", "shop": "craft"}, "removeTags": {"brand": "Michaels", "brand:wikidata": "Q6835667", "brand:wikipedia": "en:Michaels", "name": "Michaels", "shop": "craft"}, "matchScore": 2, "suggestion": true}, "shop/deli/ほっともっと": {"name": "ほっともっと", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/hottomotto/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "deli", "brand:wikidata": "Q10850949"}, "addTags": {"brand": "ほっともっと", "brand:en": "Hotto Motto", "brand:ja": "ほっともっと", "brand:wikidata": "Q10850949", "brand:wikipedia": "ja:ほっともっと", "name": "ほっともっと", "name:en": "Hotto Motto", "name:ja": "ほっともっと", "shop": "deli"}, "removeTags": {"brand": "ほっともっと", "brand:en": "Hotto Motto", "brand:ja": "ほっともっと", "brand:wikidata": "Q10850949", "brand:wikipedia": "ja:ほっともっと", "name": "ほっともっと", "name:en": "Hotto Motto", "name:ja": "ほっともっと", "shop": "deli"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/deli/京樽": {"name": "京樽", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"shop": "deli", "brand:wikidata": "Q11374503"}, "addTags": {"brand": "京樽", "brand:en": "Kyotaru", "brand:ja": "京樽", "brand:wikidata": "Q11374503", "brand:wikipedia": "ja:京樽", "name": "京樽", "name:en": "Kyotaru", "name:ja": "京樽", "shop": "deli"}, "removeTags": {"brand": "京樽", "brand:en": "Kyotaru", "brand:ja": "京樽", "brand:wikidata": "Q11374503", "brand:wikipedia": "ja:京樽", "name": "京樽", "name:en": "Kyotaru", "name:ja": "京樽", "shop": "deli"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/department_store/Barneys New York": {"name": "Barneys New York", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/BarneysNY/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "department_store", "brand:wikidata": "Q59465"}, "addTags": {"brand": "Barneys New York", "brand:wikidata": "Q59465", "brand:wikipedia": "en:Barneys New York", "name": "Barneys New York", "shop": "department_store"}, "removeTags": {"brand": "Barneys New York", "brand:wikidata": "Q59465", "brand:wikipedia": "en:Barneys New York", "name": "Barneys New York", "shop": "department_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, @@ -3117,48 +3117,48 @@ "shop/dry_cleaning/Диана": {"name": "Диана", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/diana.dryclean/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "dry_cleaning", "brand:wikidata": "Q62105088"}, "addTags": {"brand": "Диана", "brand:wikidata": "Q62105088", "name": "Диана", "shop": "dry_cleaning"}, "removeTags": {"brand": "Диана", "brand:wikidata": "Q62105088", "name": "Диана", "shop": "dry_cleaning"}, "matchScore": 2, "suggestion": true}, "shop/dry_cleaning/ホワイト急便": {"name": "ホワイト急便", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "dry_cleaning", "brand:wikidata": "Q11505557"}, "addTags": {"brand": "ホワイト急便", "brand:en": "White Kyuubin", "brand:ja": "ホワイト急便", "brand:wikidata": "Q11505557", "brand:wikipedia": "ja:日本さわやかグループ", "name": "ホワイト急便", "name:en": "White Kyuubin", "name:ja": "ホワイト急便", "shop": "dry_cleaning"}, "removeTags": {"brand": "ホワイト急便", "brand:en": "White Kyuubin", "brand:ja": "ホワイト急便", "brand:wikidata": "Q11505557", "brand:wikipedia": "ja:日本さわやかグループ", "name": "ホワイト急便", "name:en": "White Kyuubin", "name:ja": "ホワイト急便", "shop": "dry_cleaning"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/dry_cleaning/白洋舎": {"name": "白洋舎", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "dry_cleaning", "brand:wikidata": "Q11579995"}, "addTags": {"brand": "白洋舎", "brand:en": "Hakuyosha", "brand:wikidata": "Q11579995", "brand:wikipedia": "ja:白洋舎", "name": "白洋舎", "name:en": "Hakuyosha", "shop": "dry_cleaning"}, "removeTags": {"brand": "白洋舎", "brand:en": "Hakuyosha", "brand:wikidata": "Q11579995", "brand:wikipedia": "ja:白洋舎", "name": "白洋舎", "name:en": "Hakuyosha", "shop": "dry_cleaning"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Apple Store": {"name": "Apple Store", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FApple%20Store.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q421253"}, "addTags": {"brand": "Apple Store", "brand:wikidata": "Q421253", "brand:wikipedia": "en:Apple Store", "name": "Apple Store", "shop": "electronics"}, "removeTags": {"brand": "Apple Store", "brand:wikidata": "Q421253", "brand:wikipedia": "en:Apple Store", "name": "Apple Store", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Batteries Plus Bulbs": {"name": "Batteries Plus Bulbs", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBatteries%20Plus%20Bulbs%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q17005157"}, "addTags": {"brand": "Batteries Plus Bulbs", "brand:wikidata": "Q17005157", "name": "Batteries Plus Bulbs", "shop": "electronics"}, "removeTags": {"brand": "Batteries Plus Bulbs", "brand:wikidata": "Q17005157", "name": "Batteries Plus Bulbs", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Best Buy": {"name": "Best Buy", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBest%20Buy%20logo%202018.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q533415"}, "addTags": {"brand": "Best Buy", "brand:wikidata": "Q533415", "brand:wikipedia": "en:Best Buy", "name": "Best Buy", "shop": "electronics"}, "removeTags": {"brand": "Best Buy", "brand:wikidata": "Q533415", "brand:wikipedia": "en:Best Buy", "name": "Best Buy", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Boulanger": {"name": "Boulanger", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/995934742775255040/Golp0sMi_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q2921695"}, "addTags": {"brand": "Boulanger", "brand:wikidata": "Q2921695", "brand:wikipedia": "fr:Boulanger (entreprise)", "name": "Boulanger", "shop": "electronics"}, "removeTags": {"brand": "Boulanger", "brand:wikidata": "Q2921695", "brand:wikipedia": "fr:Boulanger (entreprise)", "name": "Boulanger", "shop": "electronics"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/electronics/CeX": {"name": "CeX", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/919907430158479362/BEbGhbXs_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q5055676"}, "addTags": {"brand": "CeX", "brand:wikidata": "Q5055676", "brand:wikipedia": "en:CeX (company)", "name": "CeX", "shop": "electronics"}, "removeTags": {"brand": "CeX", "brand:wikidata": "Q5055676", "brand:wikipedia": "en:CeX (company)", "name": "CeX", "shop": "electronics"}, "countryCodes": ["au", "es", "gb", "ie", "in", "it", "mx", "nl", "pl", "pt"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Currys": {"name": "Currys", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/curryspcworld/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3246464"}, "addTags": {"brand": "Currys", "brand:wikidata": "Q3246464", "brand:wikipedia": "en:Currys", "name": "Currys", "shop": "electronics"}, "removeTags": {"brand": "Currys", "brand:wikidata": "Q3246464", "brand:wikipedia": "en:Currys", "name": "Currys", "shop": "electronics"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Currys PC World": {"name": "Currys PC World", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q7118727"}, "addTags": {"brand": "Currys PC World", "brand:wikidata": "Q7118727", "brand:wikipedia": "en:PC World (retailer)", "name": "Currys PC World", "shop": "electronics"}, "removeTags": {"brand": "Currys PC World", "brand:wikidata": "Q7118727", "brand:wikipedia": "en:PC World (retailer)", "name": "Currys PC World", "shop": "electronics"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Darty": {"name": "Darty", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Fnac%20Darty.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3117381"}, "addTags": {"brand": "Darty", "brand:wikidata": "Q3117381", "brand:wikipedia": "en:Groupe Fnac Darty", "name": "Darty", "shop": "electronics"}, "removeTags": {"brand": "Darty", "brand:wikidata": "Q3117381", "brand:wikipedia": "en:Groupe Fnac Darty", "name": "Darty", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Elgiganten": {"name": "Elgiganten", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FElgiganten.PNG&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q17050121"}, "addTags": {"brand": "Elgiganten", "brand:wikidata": "Q17050121", "brand:wikipedia": "en:Elgiganten", "name": "Elgiganten", "shop": "electronics"}, "removeTags": {"brand": "Elgiganten", "brand:wikidata": "Q17050121", "brand:wikipedia": "en:Elgiganten", "name": "Elgiganten", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Euronics": {"name": "Euronics", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/EuronicsItalia/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q184860"}, "addTags": {"brand": "Euronics", "brand:wikidata": "Q184860", "brand:wikipedia": "en:Euronics", "name": "Euronics", "shop": "electronics"}, "removeTags": {"brand": "Euronics", "brand:wikidata": "Q184860", "brand:wikipedia": "en:Euronics", "name": "Euronics", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Expert": {"name": "Expert", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q680990"}, "addTags": {"brand": "Expert", "brand:wikidata": "Q680990", "brand:wikipedia": "en:Expert (company)", "name": "Expert", "shop": "electronics"}, "removeTags": {"brand": "Expert", "brand:wikidata": "Q680990", "brand:wikipedia": "en:Expert (company)", "name": "Expert", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Hartlauer": {"name": "Hartlauer", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q1587223"}, "addTags": {"brand": "Hartlauer", "brand:wikidata": "Q1587223", "brand:wikipedia": "de:Hartlauer", "name": "Hartlauer", "shop": "electronics"}, "removeTags": {"brand": "Hartlauer", "brand:wikidata": "Q1587223", "brand:wikipedia": "de:Hartlauer", "name": "Hartlauer", "shop": "electronics"}, "countryCodes": ["at"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Interdiscount": {"name": "Interdiscount", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Interdiscount.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q1665980"}, "addTags": {"brand": "Interdiscount", "brand:wikidata": "Q1665980", "brand:wikipedia": "de:Interdiscount", "name": "Interdiscount", "shop": "electronics"}, "removeTags": {"brand": "Interdiscount", "brand:wikidata": "Q1665980", "brand:wikipedia": "de:Interdiscount", "name": "Interdiscount", "shop": "electronics"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, - "shop/electronics/JB Hi-Fi": {"name": "JB Hi-Fi", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FJB%20Hi-Fi%20Wagga%20Wagga.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3310113"}, "addTags": {"brand": "JB Hi-Fi", "brand:wikidata": "Q3310113", "brand:wikipedia": "en:JB Hi-Fi", "name": "JB Hi-Fi", "shop": "electronics"}, "removeTags": {"brand": "JB Hi-Fi", "brand:wikidata": "Q3310113", "brand:wikipedia": "en:JB Hi-Fi", "name": "JB Hi-Fi", "shop": "electronics"}, "countryCodes": ["au", "nz"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Kjell & Company": {"name": "Kjell & Company", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6419332"}, "addTags": {"brand": "Kjell & Company", "brand:wikidata": "Q6419332", "brand:wikipedia": "en:Kjell & Company", "name": "Kjell & Company", "shop": "electronics"}, "removeTags": {"brand": "Kjell & Company", "brand:wikidata": "Q6419332", "brand:wikipedia": "en:Kjell & Company", "name": "Kjell & Company", "shop": "electronics"}, "countryCodes": ["no", "se"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Komputronik": {"name": "Komputronik", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11742085"}, "addTags": {"brand": "Komputronik", "brand:wikidata": "Q11742085", "brand:wikipedia": "pl:Komputronik", "name": "Komputronik", "shop": "electronics"}, "removeTags": {"brand": "Komputronik", "brand:wikidata": "Q11742085", "brand:wikipedia": "pl:Komputronik", "name": "Komputronik", "shop": "electronics"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/electronics/La Curacao": {"name": "La Curacao", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q5194599"}, "addTags": {"brand": "La Curacao", "brand:wikidata": "Q5194599", "brand:wikipedia": "en:Curacao (retail store)", "name": "La Curacao", "shop": "electronics"}, "removeTags": {"brand": "La Curacao", "brand:wikidata": "Q5194599", "brand:wikipedia": "en:Curacao (retail store)", "name": "La Curacao", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Maplin": {"name": "Maplin", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/814044033483948032/IozUMsvp_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6754124"}, "addTags": {"brand": "Maplin", "brand:wikidata": "Q6754124", "brand:wikipedia": "en:Maplin (retailer)", "name": "Maplin", "shop": "electronics"}, "removeTags": {"brand": "Maplin", "brand:wikidata": "Q6754124", "brand:wikipedia": "en:Maplin (retailer)", "name": "Maplin", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Media Expert": {"name": "Media Expert", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11776794"}, "addTags": {"brand": "Media Expert", "brand:wikidata": "Q11776794", "brand:wikipedia": "pl:Media Expert", "name": "Media Expert", "shop": "electronics"}, "removeTags": {"brand": "Media Expert", "brand:wikidata": "Q11776794", "brand:wikipedia": "pl:Media Expert", "name": "Media Expert", "shop": "electronics"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Media Markt": {"name": "Media Markt", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/mediamarkt/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q2381223"}, "addTags": {"brand": "Media Markt", "brand:wikidata": "Q2381223", "brand:wikipedia": "en:Media Markt", "name": "Media Markt", "shop": "electronics"}, "removeTags": {"brand": "Media Markt", "brand:wikidata": "Q2381223", "brand:wikipedia": "en:Media Markt", "name": "Media Markt", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Musimundo": {"name": "Musimundo", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1098565316609748992/J7JMYhTN_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6034719"}, "addTags": {"brand": "Musimundo", "brand:wikidata": "Q6034719", "brand:wikipedia": "es:Musimundo", "name": "Musimundo", "shop": "electronics"}, "removeTags": {"brand": "Musimundo", "brand:wikidata": "Q6034719", "brand:wikipedia": "es:Musimundo", "name": "Musimundo", "shop": "electronics"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Neonet": {"name": "Neonet", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11790622"}, "addTags": {"brand": "Neonet", "brand:wikidata": "Q11790622", "brand:wikipedia": "pl:Neonet", "name": "Neonet", "shop": "electronics"}, "removeTags": {"brand": "Neonet", "brand:wikidata": "Q11790622", "brand:wikipedia": "pl:Neonet", "name": "Neonet", "shop": "electronics"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/electronics/RTV Euro AGD": {"name": "RTV Euro AGD", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/rtveuroagd/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q7277895"}, "addTags": {"brand": "RTV Euro AGD", "brand:wikidata": "Q7277895", "brand:wikipedia": "pl:RTV Euro AGD", "name": "RTV Euro AGD", "shop": "electronics"}, "removeTags": {"brand": "RTV Euro AGD", "brand:wikidata": "Q7277895", "brand:wikipedia": "pl:RTV Euro AGD", "name": "RTV Euro AGD", "shop": "electronics"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/electronics/RadioShack": {"name": "RadioShack", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRadioShack%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q1195490"}, "addTags": {"brand": "RadioShack", "brand:wikidata": "Q1195490", "brand:wikipedia": "en:RadioShack", "name": "RadioShack", "shop": "electronics"}, "removeTags": {"brand": "RadioShack", "brand:wikidata": "Q1195490", "brand:wikipedia": "en:RadioShack", "name": "RadioShack", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Samsung": {"name": "Samsung", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/SamsungNewsroom/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q20718"}, "addTags": {"brand": "Samsung", "brand:wikidata": "Q20718", "brand:wikipedia": "en:Samsung Electronics", "name": "Samsung", "shop": "electronics"}, "removeTags": {"brand": "Samsung", "brand:wikidata": "Q20718", "brand:wikipedia": "en:Samsung Electronics", "name": "Samsung", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Saturn": {"name": "Saturn", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/SaturnDE/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q2543504"}, "addTags": {"brand": "Saturn", "brand:wikidata": "Q2543504", "brand:wikipedia": "en:Saturn (retailer)", "name": "Saturn", "shop": "electronics"}, "removeTags": {"brand": "Saturn", "brand:wikidata": "Q2543504", "brand:wikipedia": "en:Saturn (retailer)", "name": "Saturn", "shop": "electronics"}, "countryCodes": ["at", "de", "lu", "pl"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Sony": {"name": "Sony", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/sony.jpn/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q41187"}, "addTags": {"brand": "Sony", "brand:wikidata": "Q41187", "brand:wikipedia": "en:Sony", "name": "Sony", "shop": "electronics"}, "removeTags": {"brand": "Sony", "brand:wikidata": "Q41187", "brand:wikipedia": "en:Sony", "name": "Sony", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Teknikmagasinet": {"name": "Teknikmagasinet", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3357520"}, "addTags": {"brand": "Teknikmagasinet", "brand:wikidata": "Q3357520", "brand:wikipedia": "en:Teknikmagasinet", "name": "Teknikmagasinet", "shop": "electronics"}, "removeTags": {"brand": "Teknikmagasinet", "brand:wikidata": "Q3357520", "brand:wikipedia": "en:Teknikmagasinet", "name": "Teknikmagasinet", "shop": "electronics"}, "countryCodes": ["fi", "no", "se"], "matchScore": 2, "suggestion": true}, - "shop/electronics/The Source": {"name": "The Source", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FThe%20Source%20logo%20en-fr.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3212934"}, "addTags": {"brand": "The Source", "brand:wikidata": "Q3212934", "brand:wikipedia": "en:The Source (retailer)", "name": "The Source", "shop": "electronics"}, "removeTags": {"brand": "The Source", "brand:wikidata": "Q3212934", "brand:wikipedia": "en:The Source (retailer)", "name": "The Source", "shop": "electronics"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Unieuro": {"name": "Unieuro", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q4004687"}, "addTags": {"brand": "Unieuro", "brand:wikidata": "Q4004687", "brand:wikipedia": "en:Unieuro", "name": "Unieuro", "shop": "electronics"}, "removeTags": {"brand": "Unieuro", "brand:wikidata": "Q4004687", "brand:wikipedia": "en:Unieuro", "name": "Unieuro", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Worten": {"name": "Worten", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/WortenES/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q10394039"}, "addTags": {"brand": "Worten", "brand:wikidata": "Q10394039", "brand:wikipedia": "pt:Worten", "name": "Worten", "shop": "electronics"}, "removeTags": {"brand": "Worten", "brand:wikidata": "Q10394039", "brand:wikipedia": "pt:Worten", "name": "Worten", "shop": "electronics"}, "countryCodes": ["es", "pt"], "matchScore": 2, "suggestion": true}, - "shop/electronics/М.Видео": {"name": "М.Видео", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMvideo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6558800"}, "addTags": {"brand": "М.Видео", "brand:en": "M.video", "brand:wikidata": "Q6558800", "brand:wikipedia": "en:M.video", "name": "М.Видео", "name:en": "M.video", "shop": "electronics"}, "removeTags": {"brand": "М.Видео", "brand:en": "M.video", "brand:wikidata": "Q6558800", "brand:wikipedia": "en:M.video", "name": "М.Видео", "name:en": "M.video", "shop": "electronics"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Фокстрот": {"name": "Фокстрот", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q16721578"}, "addTags": {"brand": "Фокстрот", "brand:wikidata": "Q16721578", "brand:wikipedia": "uk:Фокстрот (торгова мережа)", "name": "Фокстрот", "shop": "electronics"}, "removeTags": {"brand": "Фокстрот", "brand:wikidata": "Q16721578", "brand:wikipedia": "uk:Фокстрот (торгова мережа)", "name": "Фокстрот", "shop": "electronics"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Эльдорадо": {"name": "Эльдорадо", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Eldorado.Stores/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q4531492"}, "addTags": {"brand": "Эльдорадо", "brand:wikidata": "Q4531492", "brand:wikipedia": "ru:Эльдорадо (сеть магазинов)", "name": "Эльдорадо", "shop": "electronics"}, "removeTags": {"brand": "Эльдорадо", "brand:wikidata": "Q4531492", "brand:wikipedia": "ru:Эльдорадо (сеть магазинов)", "name": "Эльдорадо", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/エディオン": {"name": "エディオン", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/edion.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11290252"}, "addTags": {"brand": "エディオン", "brand:en": "EDION", "brand:ja": "エディオン", "brand:wikidata": "Q11290252", "brand:wikipedia": "ja:エディオン", "name": "エディオン", "name:en": "EDION", "name:ja": "エディオン", "shop": "electronics"}, "removeTags": {"brand": "エディオン", "brand:en": "EDION", "brand:ja": "エディオン", "brand:wikidata": "Q11290252", "brand:wikipedia": "ja:エディオン", "name": "エディオン", "name:en": "EDION", "name:ja": "エディオン", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/electronics/ケーズデンキ": {"name": "ケーズデンキ", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6322472"}, "addTags": {"brand": "ケーズデンキ", "brand:en": "K's Denki", "brand:ja": "ケーズデンキ", "brand:wikidata": "Q6322472", "brand:wikipedia": "ja:ケーズホールディングス", "name": "ケーズデンキ", "name:en": "K's Denki", "name:ja": "ケーズデンキ", "shop": "electronics"}, "removeTags": {"brand": "ケーズデンキ", "brand:en": "K's Denki", "brand:ja": "ケーズデンキ", "brand:wikidata": "Q6322472", "brand:wikipedia": "ja:ケーズホールディングス", "name": "ケーズデンキ", "name:en": "K's Denki", "name:ja": "ケーズデンキ", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/electronics/コジマ": {"name": "コジマ", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/kojima.official/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11302052"}, "addTags": {"brand": "コジマ", "brand:en": "Kojima", "brand:ja": "コジマ", "brand:wikidata": "Q11302052", "brand:wikipedia": "ja:コジマ", "name": "コジマ", "name:en": "Kojima", "name:ja": "コジマ", "shop": "electronics"}, "removeTags": {"brand": "コジマ", "brand:en": "Kojima", "brand:ja": "コジマ", "brand:wikidata": "Q11302052", "brand:wikipedia": "ja:コジマ", "name": "コジマ", "name:en": "Kojima", "name:ja": "コジマ", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/electronics/ソフマップ": {"name": "ソフマップ", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSofmap%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q7553789"}, "addTags": {"brand": "ソフマップ", "brand:en": "Sofmap", "brand:wikidata": "Q7553789", "brand:wikipedia": "ja:ソフマップ", "name": "ソフマップ", "name:en": "Sofmap", "shop": "electronics"}, "removeTags": {"brand": "ソフマップ", "brand:en": "Sofmap", "brand:wikidata": "Q7553789", "brand:wikipedia": "ja:ソフマップ", "name": "ソフマップ", "name:en": "Sofmap", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/electronics/ビックカメラ": {"name": "ビックカメラ", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/biccamera.page/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q4903531"}, "addTags": {"brand": "ビックカメラ", "brand:en": "Bic Camera", "brand:wikidata": "Q4903531", "brand:wikipedia": "ja:ビックカメラ", "name": "ビックカメラ", "name:en": "Bic Camera", "shop": "electronics"}, "removeTags": {"brand": "ビックカメラ", "brand:en": "Bic Camera", "brand:wikidata": "Q4903531", "brand:wikipedia": "ja:ビックカメラ", "name": "ビックカメラ", "name:en": "Bic Camera", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/electronics/ヤマダ電機": {"name": "ヤマダ電機", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q1096390"}, "addTags": {"brand": "ヤマダ電機", "brand:en": "Yamada Denki", "brand:ja": "ヤマダ電機", "brand:wikidata": "Q1096390", "brand:wikipedia": "en:Yamada Denki", "name": "ヤマダ電機", "name:en": "Yamada Denki", "name:ja": "ヤマダ電機", "shop": "electronics"}, "removeTags": {"brand": "ヤマダ電機", "brand:en": "Yamada Denki", "brand:ja": "ヤマダ電機", "brand:wikidata": "Q1096390", "brand:wikipedia": "en:Yamada Denki", "name": "ヤマダ電機", "name:en": "Yamada Denki", "name:ja": "ヤマダ電機", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/electronics/全國電子": {"name": "全國電子", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q10891540"}, "addTags": {"brand": "全國電子", "brand:en": "E-life Mall", "brand:wikidata": "Q10891540", "brand:wikipedia": "zh:全國電子", "name": "全國電子", "name:en": "E-life Mall", "shop": "electronics"}, "removeTags": {"brand": "全國電子", "brand:en": "E-life Mall", "brand:wikidata": "Q10891540", "brand:wikipedia": "zh:全國電子", "name": "全國電子", "name:en": "E-life Mall", "shop": "electronics"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, - "shop/electronics/燦坤3C": {"name": "燦坤3C", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11569285"}, "addTags": {"brand": "燦坤3C", "brand:en": "Tsannkuen 3C", "brand:wikidata": "Q11569285", "brand:wikipedia": "zh:燦坤", "name": "燦坤3C", "name:en": "Tsannkuen 3C", "shop": "electronics"}, "removeTags": {"brand": "燦坤3C", "brand:en": "Tsannkuen 3C", "brand:wikidata": "Q11569285", "brand:wikipedia": "zh:燦坤", "name": "燦坤3C", "name:en": "Tsannkuen 3C", "shop": "electronics"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Apple Store": {"name": "Apple Store", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FApple%20Store.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q421253"}, "addTags": {"brand": "Apple Store", "brand:wikidata": "Q421253", "brand:wikipedia": "en:Apple Store", "name": "Apple Store", "shop": "electronics"}, "removeTags": {"brand": "Apple Store", "brand:wikidata": "Q421253", "brand:wikipedia": "en:Apple Store", "name": "Apple Store", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Batteries Plus Bulbs": {"name": "Batteries Plus Bulbs", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBatteries%20Plus%20Bulbs%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q17005157"}, "addTags": {"brand": "Batteries Plus Bulbs", "brand:wikidata": "Q17005157", "name": "Batteries Plus Bulbs", "shop": "electronics"}, "removeTags": {"brand": "Batteries Plus Bulbs", "brand:wikidata": "Q17005157", "name": "Batteries Plus Bulbs", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Best Buy": {"name": "Best Buy", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBest%20Buy%20logo%202018.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q533415"}, "addTags": {"brand": "Best Buy", "brand:wikidata": "Q533415", "brand:wikipedia": "en:Best Buy", "name": "Best Buy", "shop": "electronics"}, "removeTags": {"brand": "Best Buy", "brand:wikidata": "Q533415", "brand:wikipedia": "en:Best Buy", "name": "Best Buy", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Boulanger": {"name": "Boulanger", "icon": "fas-plug", "imageURL": "https://pbs.twimg.com/profile_images/995934742775255040/Golp0sMi_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q2921695"}, "addTags": {"brand": "Boulanger", "brand:wikidata": "Q2921695", "brand:wikipedia": "fr:Boulanger (entreprise)", "name": "Boulanger", "shop": "electronics"}, "removeTags": {"brand": "Boulanger", "brand:wikidata": "Q2921695", "brand:wikipedia": "fr:Boulanger (entreprise)", "name": "Boulanger", "shop": "electronics"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/electronics/CeX": {"name": "CeX", "icon": "fas-plug", "imageURL": "https://pbs.twimg.com/profile_images/919907430158479362/BEbGhbXs_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q5055676"}, "addTags": {"brand": "CeX", "brand:wikidata": "Q5055676", "brand:wikipedia": "en:CeX (company)", "name": "CeX", "shop": "electronics"}, "removeTags": {"brand": "CeX", "brand:wikidata": "Q5055676", "brand:wikipedia": "en:CeX (company)", "name": "CeX", "shop": "electronics"}, "countryCodes": ["au", "es", "gb", "ie", "in", "it", "mx", "nl", "pl", "pt"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Currys": {"name": "Currys", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/curryspcworld/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3246464"}, "addTags": {"brand": "Currys", "brand:wikidata": "Q3246464", "brand:wikipedia": "en:Currys", "name": "Currys", "shop": "electronics"}, "removeTags": {"brand": "Currys", "brand:wikidata": "Q3246464", "brand:wikipedia": "en:Currys", "name": "Currys", "shop": "electronics"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Currys PC World": {"name": "Currys PC World", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q7118727"}, "addTags": {"brand": "Currys PC World", "brand:wikidata": "Q7118727", "brand:wikipedia": "en:PC World (retailer)", "name": "Currys PC World", "shop": "electronics"}, "removeTags": {"brand": "Currys PC World", "brand:wikidata": "Q7118727", "brand:wikipedia": "en:PC World (retailer)", "name": "Currys PC World", "shop": "electronics"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Darty": {"name": "Darty", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Fnac%20Darty.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3117381"}, "addTags": {"brand": "Darty", "brand:wikidata": "Q3117381", "brand:wikipedia": "en:Groupe Fnac Darty", "name": "Darty", "shop": "electronics"}, "removeTags": {"brand": "Darty", "brand:wikidata": "Q3117381", "brand:wikipedia": "en:Groupe Fnac Darty", "name": "Darty", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Elgiganten": {"name": "Elgiganten", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FElgiganten.PNG&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q17050121"}, "addTags": {"brand": "Elgiganten", "brand:wikidata": "Q17050121", "brand:wikipedia": "en:Elgiganten", "name": "Elgiganten", "shop": "electronics"}, "removeTags": {"brand": "Elgiganten", "brand:wikidata": "Q17050121", "brand:wikipedia": "en:Elgiganten", "name": "Elgiganten", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Euronics": {"name": "Euronics", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/EuronicsItalia/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q184860"}, "addTags": {"brand": "Euronics", "brand:wikidata": "Q184860", "brand:wikipedia": "en:Euronics", "name": "Euronics", "shop": "electronics"}, "removeTags": {"brand": "Euronics", "brand:wikidata": "Q184860", "brand:wikipedia": "en:Euronics", "name": "Euronics", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Expert": {"name": "Expert", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q680990"}, "addTags": {"brand": "Expert", "brand:wikidata": "Q680990", "brand:wikipedia": "en:Expert (company)", "name": "Expert", "shop": "electronics"}, "removeTags": {"brand": "Expert", "brand:wikidata": "Q680990", "brand:wikipedia": "en:Expert (company)", "name": "Expert", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Hartlauer": {"name": "Hartlauer", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q1587223"}, "addTags": {"brand": "Hartlauer", "brand:wikidata": "Q1587223", "brand:wikipedia": "de:Hartlauer", "name": "Hartlauer", "shop": "electronics"}, "removeTags": {"brand": "Hartlauer", "brand:wikidata": "Q1587223", "brand:wikipedia": "de:Hartlauer", "name": "Hartlauer", "shop": "electronics"}, "countryCodes": ["at"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Interdiscount": {"name": "Interdiscount", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Interdiscount.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q1665980"}, "addTags": {"brand": "Interdiscount", "brand:wikidata": "Q1665980", "brand:wikipedia": "de:Interdiscount", "name": "Interdiscount", "shop": "electronics"}, "removeTags": {"brand": "Interdiscount", "brand:wikidata": "Q1665980", "brand:wikipedia": "de:Interdiscount", "name": "Interdiscount", "shop": "electronics"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, + "shop/electronics/JB Hi-Fi": {"name": "JB Hi-Fi", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FJB%20Hi-Fi%20Wagga%20Wagga.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3310113"}, "addTags": {"brand": "JB Hi-Fi", "brand:wikidata": "Q3310113", "brand:wikipedia": "en:JB Hi-Fi", "name": "JB Hi-Fi", "shop": "electronics"}, "removeTags": {"brand": "JB Hi-Fi", "brand:wikidata": "Q3310113", "brand:wikipedia": "en:JB Hi-Fi", "name": "JB Hi-Fi", "shop": "electronics"}, "countryCodes": ["au", "nz"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Kjell & Company": {"name": "Kjell & Company", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6419332"}, "addTags": {"brand": "Kjell & Company", "brand:wikidata": "Q6419332", "brand:wikipedia": "en:Kjell & Company", "name": "Kjell & Company", "shop": "electronics"}, "removeTags": {"brand": "Kjell & Company", "brand:wikidata": "Q6419332", "brand:wikipedia": "en:Kjell & Company", "name": "Kjell & Company", "shop": "electronics"}, "countryCodes": ["no", "se"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Komputronik": {"name": "Komputronik", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11742085"}, "addTags": {"brand": "Komputronik", "brand:wikidata": "Q11742085", "brand:wikipedia": "pl:Komputronik", "name": "Komputronik", "shop": "electronics"}, "removeTags": {"brand": "Komputronik", "brand:wikidata": "Q11742085", "brand:wikipedia": "pl:Komputronik", "name": "Komputronik", "shop": "electronics"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/electronics/La Curacao": {"name": "La Curacao", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q5194599"}, "addTags": {"brand": "La Curacao", "brand:wikidata": "Q5194599", "brand:wikipedia": "en:Curacao (retail store)", "name": "La Curacao", "shop": "electronics"}, "removeTags": {"brand": "La Curacao", "brand:wikidata": "Q5194599", "brand:wikipedia": "en:Curacao (retail store)", "name": "La Curacao", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Maplin": {"name": "Maplin", "icon": "fas-plug", "imageURL": "https://pbs.twimg.com/profile_images/814044033483948032/IozUMsvp_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6754124"}, "addTags": {"brand": "Maplin", "brand:wikidata": "Q6754124", "brand:wikipedia": "en:Maplin (retailer)", "name": "Maplin", "shop": "electronics"}, "removeTags": {"brand": "Maplin", "brand:wikidata": "Q6754124", "brand:wikipedia": "en:Maplin (retailer)", "name": "Maplin", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Media Expert": {"name": "Media Expert", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11776794"}, "addTags": {"brand": "Media Expert", "brand:wikidata": "Q11776794", "brand:wikipedia": "pl:Media Expert", "name": "Media Expert", "shop": "electronics"}, "removeTags": {"brand": "Media Expert", "brand:wikidata": "Q11776794", "brand:wikipedia": "pl:Media Expert", "name": "Media Expert", "shop": "electronics"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Media Markt": {"name": "Media Markt", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/mediamarkt/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q2381223"}, "addTags": {"brand": "Media Markt", "brand:wikidata": "Q2381223", "brand:wikipedia": "en:Media Markt", "name": "Media Markt", "shop": "electronics"}, "removeTags": {"brand": "Media Markt", "brand:wikidata": "Q2381223", "brand:wikipedia": "en:Media Markt", "name": "Media Markt", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Musimundo": {"name": "Musimundo", "icon": "fas-plug", "imageURL": "https://pbs.twimg.com/profile_images/1098565316609748992/J7JMYhTN_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6034719"}, "addTags": {"brand": "Musimundo", "brand:wikidata": "Q6034719", "brand:wikipedia": "es:Musimundo", "name": "Musimundo", "shop": "electronics"}, "removeTags": {"brand": "Musimundo", "brand:wikidata": "Q6034719", "brand:wikipedia": "es:Musimundo", "name": "Musimundo", "shop": "electronics"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Neonet": {"name": "Neonet", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11790622"}, "addTags": {"brand": "Neonet", "brand:wikidata": "Q11790622", "brand:wikipedia": "pl:Neonet", "name": "Neonet", "shop": "electronics"}, "removeTags": {"brand": "Neonet", "brand:wikidata": "Q11790622", "brand:wikipedia": "pl:Neonet", "name": "Neonet", "shop": "electronics"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/electronics/RTV Euro AGD": {"name": "RTV Euro AGD", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/rtveuroagd/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q7277895"}, "addTags": {"brand": "RTV Euro AGD", "brand:wikidata": "Q7277895", "brand:wikipedia": "pl:RTV Euro AGD", "name": "RTV Euro AGD", "shop": "electronics"}, "removeTags": {"brand": "RTV Euro AGD", "brand:wikidata": "Q7277895", "brand:wikipedia": "pl:RTV Euro AGD", "name": "RTV Euro AGD", "shop": "electronics"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/electronics/RadioShack": {"name": "RadioShack", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRadioShack%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q1195490"}, "addTags": {"brand": "RadioShack", "brand:wikidata": "Q1195490", "brand:wikipedia": "en:RadioShack", "name": "RadioShack", "shop": "electronics"}, "removeTags": {"brand": "RadioShack", "brand:wikidata": "Q1195490", "brand:wikipedia": "en:RadioShack", "name": "RadioShack", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Samsung": {"name": "Samsung", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/SamsungNewsroom/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q20718"}, "addTags": {"brand": "Samsung", "brand:wikidata": "Q20718", "brand:wikipedia": "en:Samsung Electronics", "name": "Samsung", "shop": "electronics"}, "removeTags": {"brand": "Samsung", "brand:wikidata": "Q20718", "brand:wikipedia": "en:Samsung Electronics", "name": "Samsung", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Saturn": {"name": "Saturn", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/SaturnDE/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q2543504"}, "addTags": {"brand": "Saturn", "brand:wikidata": "Q2543504", "brand:wikipedia": "en:Saturn (retailer)", "name": "Saturn", "shop": "electronics"}, "removeTags": {"brand": "Saturn", "brand:wikidata": "Q2543504", "brand:wikipedia": "en:Saturn (retailer)", "name": "Saturn", "shop": "electronics"}, "countryCodes": ["at", "de", "lu", "pl"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Sony": {"name": "Sony", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/sony.jpn/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q41187"}, "addTags": {"brand": "Sony", "brand:wikidata": "Q41187", "brand:wikipedia": "en:Sony", "name": "Sony", "shop": "electronics"}, "removeTags": {"brand": "Sony", "brand:wikidata": "Q41187", "brand:wikipedia": "en:Sony", "name": "Sony", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Teknikmagasinet": {"name": "Teknikmagasinet", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3357520"}, "addTags": {"brand": "Teknikmagasinet", "brand:wikidata": "Q3357520", "brand:wikipedia": "en:Teknikmagasinet", "name": "Teknikmagasinet", "shop": "electronics"}, "removeTags": {"brand": "Teknikmagasinet", "brand:wikidata": "Q3357520", "brand:wikipedia": "en:Teknikmagasinet", "name": "Teknikmagasinet", "shop": "electronics"}, "countryCodes": ["fi", "no", "se"], "matchScore": 2, "suggestion": true}, + "shop/electronics/The Source": {"name": "The Source", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FThe%20Source%20logo%20en-fr.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3212934"}, "addTags": {"brand": "The Source", "brand:wikidata": "Q3212934", "brand:wikipedia": "en:The Source (retailer)", "name": "The Source", "shop": "electronics"}, "removeTags": {"brand": "The Source", "brand:wikidata": "Q3212934", "brand:wikipedia": "en:The Source (retailer)", "name": "The Source", "shop": "electronics"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Unieuro": {"name": "Unieuro", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q4004687"}, "addTags": {"brand": "Unieuro", "brand:wikidata": "Q4004687", "brand:wikipedia": "en:Unieuro", "name": "Unieuro", "shop": "electronics"}, "removeTags": {"brand": "Unieuro", "brand:wikidata": "Q4004687", "brand:wikipedia": "en:Unieuro", "name": "Unieuro", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Worten": {"name": "Worten", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/WortenES/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q10394039"}, "addTags": {"brand": "Worten", "brand:wikidata": "Q10394039", "brand:wikipedia": "pt:Worten", "name": "Worten", "shop": "electronics"}, "removeTags": {"brand": "Worten", "brand:wikidata": "Q10394039", "brand:wikipedia": "pt:Worten", "name": "Worten", "shop": "electronics"}, "countryCodes": ["es", "pt"], "matchScore": 2, "suggestion": true}, + "shop/electronics/М.Видео": {"name": "М.Видео", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMvideo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6558800"}, "addTags": {"brand": "М.Видео", "brand:en": "M.video", "brand:wikidata": "Q6558800", "brand:wikipedia": "en:M.video", "name": "М.Видео", "name:en": "M.video", "shop": "electronics"}, "removeTags": {"brand": "М.Видео", "brand:en": "M.video", "brand:wikidata": "Q6558800", "brand:wikipedia": "en:M.video", "name": "М.Видео", "name:en": "M.video", "shop": "electronics"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Фокстрот": {"name": "Фокстрот", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q16721578"}, "addTags": {"brand": "Фокстрот", "brand:wikidata": "Q16721578", "brand:wikipedia": "uk:Фокстрот (торгова мережа)", "name": "Фокстрот", "shop": "electronics"}, "removeTags": {"brand": "Фокстрот", "brand:wikidata": "Q16721578", "brand:wikipedia": "uk:Фокстрот (торгова мережа)", "name": "Фокстрот", "shop": "electronics"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Эльдорадо": {"name": "Эльдорадо", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/Eldorado.Stores/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q4531492"}, "addTags": {"brand": "Эльдорадо", "brand:wikidata": "Q4531492", "brand:wikipedia": "ru:Эльдорадо (сеть магазинов)", "name": "Эльдорадо", "shop": "electronics"}, "removeTags": {"brand": "Эльдорадо", "brand:wikidata": "Q4531492", "brand:wikipedia": "ru:Эльдорадо (сеть магазинов)", "name": "Эльдорадо", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/エディオン": {"name": "エディオン", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/edion.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11290252"}, "addTags": {"brand": "エディオン", "brand:en": "EDION", "brand:ja": "エディオン", "brand:wikidata": "Q11290252", "brand:wikipedia": "ja:エディオン", "name": "エディオン", "name:en": "EDION", "name:ja": "エディオン", "shop": "electronics"}, "removeTags": {"brand": "エディオン", "brand:en": "EDION", "brand:ja": "エディオン", "brand:wikidata": "Q11290252", "brand:wikipedia": "ja:エディオン", "name": "エディオン", "name:en": "EDION", "name:ja": "エディオン", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/electronics/ケーズデンキ": {"name": "ケーズデンキ", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6322472"}, "addTags": {"brand": "ケーズデンキ", "brand:en": "K's Denki", "brand:ja": "ケーズデンキ", "brand:wikidata": "Q6322472", "brand:wikipedia": "ja:ケーズホールディングス", "name": "ケーズデンキ", "name:en": "K's Denki", "name:ja": "ケーズデンキ", "shop": "electronics"}, "removeTags": {"brand": "ケーズデンキ", "brand:en": "K's Denki", "brand:ja": "ケーズデンキ", "brand:wikidata": "Q6322472", "brand:wikipedia": "ja:ケーズホールディングス", "name": "ケーズデンキ", "name:en": "K's Denki", "name:ja": "ケーズデンキ", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/electronics/コジマ": {"name": "コジマ", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/kojima.official/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11302052"}, "addTags": {"brand": "コジマ", "brand:en": "Kojima", "brand:ja": "コジマ", "brand:wikidata": "Q11302052", "brand:wikipedia": "ja:コジマ", "name": "コジマ", "name:en": "Kojima", "name:ja": "コジマ", "shop": "electronics"}, "removeTags": {"brand": "コジマ", "brand:en": "Kojima", "brand:ja": "コジマ", "brand:wikidata": "Q11302052", "brand:wikipedia": "ja:コジマ", "name": "コジマ", "name:en": "Kojima", "name:ja": "コジマ", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/electronics/ソフマップ": {"name": "ソフマップ", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSofmap%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q7553789"}, "addTags": {"brand": "ソフマップ", "brand:en": "Sofmap", "brand:wikidata": "Q7553789", "brand:wikipedia": "ja:ソフマップ", "name": "ソフマップ", "name:en": "Sofmap", "shop": "electronics"}, "removeTags": {"brand": "ソフマップ", "brand:en": "Sofmap", "brand:wikidata": "Q7553789", "brand:wikipedia": "ja:ソフマップ", "name": "ソフマップ", "name:en": "Sofmap", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/electronics/ビックカメラ": {"name": "ビックカメラ", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/biccamera.page/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q4903531"}, "addTags": {"brand": "ビックカメラ", "brand:en": "Bic Camera", "brand:wikidata": "Q4903531", "brand:wikipedia": "ja:ビックカメラ", "name": "ビックカメラ", "name:en": "Bic Camera", "shop": "electronics"}, "removeTags": {"brand": "ビックカメラ", "brand:en": "Bic Camera", "brand:wikidata": "Q4903531", "brand:wikipedia": "ja:ビックカメラ", "name": "ビックカメラ", "name:en": "Bic Camera", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/electronics/ヤマダ電機": {"name": "ヤマダ電機", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q1096390"}, "addTags": {"brand": "ヤマダ電機", "brand:en": "Yamada Denki", "brand:ja": "ヤマダ電機", "brand:wikidata": "Q1096390", "brand:wikipedia": "en:Yamada Denki", "name": "ヤマダ電機", "name:en": "Yamada Denki", "name:ja": "ヤマダ電機", "shop": "electronics"}, "removeTags": {"brand": "ヤマダ電機", "brand:en": "Yamada Denki", "brand:ja": "ヤマダ電機", "brand:wikidata": "Q1096390", "brand:wikipedia": "en:Yamada Denki", "name": "ヤマダ電機", "name:en": "Yamada Denki", "name:ja": "ヤマダ電機", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/electronics/全國電子": {"name": "全國電子", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q10891540"}, "addTags": {"brand": "全國電子", "brand:en": "E-life Mall", "brand:wikidata": "Q10891540", "brand:wikipedia": "zh:全國電子", "name": "全國電子", "name:en": "E-life Mall", "shop": "electronics"}, "removeTags": {"brand": "全國電子", "brand:en": "E-life Mall", "brand:wikidata": "Q10891540", "brand:wikipedia": "zh:全國電子", "name": "全國電子", "name:en": "E-life Mall", "shop": "electronics"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, + "shop/electronics/燦坤3C": {"name": "燦坤3C", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11569285"}, "addTags": {"brand": "燦坤3C", "brand:en": "Tsannkuen 3C", "brand:wikidata": "Q11569285", "brand:wikipedia": "zh:燦坤", "name": "燦坤3C", "name:en": "Tsannkuen 3C", "shop": "electronics"}, "removeTags": {"brand": "燦坤3C", "brand:en": "Tsannkuen 3C", "brand:wikidata": "Q11569285", "brand:wikipedia": "zh:燦坤", "name": "燦坤3C", "name:en": "Tsannkuen 3C", "shop": "electronics"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "shop/erotic/Orion": {"name": "Orion", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FNoimage%20pr.gif&width=100", "geometry": ["point", "area"], "tags": {"shop": "erotic", "brand:wikidata": "Q1609577"}, "addTags": {"brand": "Orion", "brand:wikidata": "Q1609577", "brand:wikipedia": "de:Orion (Erotik)", "name": "Orion", "shop": "erotic"}, "removeTags": {"brand": "Orion", "brand:wikidata": "Q1609577", "brand:wikipedia": "de:Orion (Erotik)", "name": "Orion", "shop": "erotic"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, "shop/fabric/Mondial Tissus": {"name": "Mondial Tissus", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "fabric", "brand:wikidata": "Q17635288"}, "addTags": {"brand": "Mondial Tissus", "brand:wikidata": "Q17635288", "brand:wikipedia": "fr:Mondial Tissus", "name": "Mondial Tissus", "shop": "fabric"}, "removeTags": {"brand": "Mondial Tissus", "brand:wikidata": "Q17635288", "brand:wikipedia": "fr:Mondial Tissus", "name": "Mondial Tissus", "shop": "fabric"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/florist/Blume 2000": {"name": "Blume 2000", "icon": "maki-florist", "imageURL": "https://graph.facebook.com/Blume2000.de/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "florist", "brand:wikidata": "Q886166"}, "addTags": {"brand": "Blume 2000", "brand:wikidata": "Q886166", "brand:wikipedia": "de:Blume 2000", "name": "Blume 2000", "shop": "florist"}, "removeTags": {"brand": "Blume 2000", "brand:wikidata": "Q886166", "brand:wikipedia": "de:Blume 2000", "name": "Blume 2000", "shop": "florist"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, @@ -3269,58 +3269,58 @@ "shop/kitchen/Schmidt": {"name": "Schmidt", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "kitchen", "brand:wikidata": "Q3487620"}, "addTags": {"brand": "Schmidt", "brand:wikidata": "Q3487620", "brand:wikipedia": "de:Schmidt Groupe", "name": "Schmidt", "shop": "kitchen"}, "removeTags": {"brand": "Schmidt", "brand:wikidata": "Q3487620", "brand:wikipedia": "de:Schmidt Groupe", "name": "Schmidt", "shop": "kitchen"}, "matchScore": 2, "suggestion": true}, "shop/massage/Massage Envy": {"name": "Massage Envy", "icon": "temaki-spa", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMassage%20Envy%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "massage", "brand:wikidata": "Q22922899"}, "addTags": {"brand": "Massage Envy", "brand:wikidata": "Q22922899", "brand:wikipedia": "en:Massage Envy", "name": "Massage Envy", "shop": "massage"}, "removeTags": {"brand": "Massage Envy", "brand:wikidata": "Q22922899", "brand:wikipedia": "en:Massage Envy", "name": "Massage Envy", "shop": "massage"}, "matchScore": 2, "suggestion": true}, "shop/medical_supply/Pofam-Poznań": {"name": "Pofam-Poznań", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "medical_supply", "brand:wikidata": "Q62057457"}, "addTags": {"brand": "Pofam-Poznań", "brand:wikidata": "Q62057457", "name": "Pofam-Poznań", "shop": "medical_supply"}, "removeTags": {"brand": "Pofam-Poznań", "brand:wikidata": "Q62057457", "name": "Pofam-Poznań", "shop": "medical_supply"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/3 Store": {"name": "3 Store", "icon": "maki-mobile-phone", "imageURL": "https://pbs.twimg.com/profile_images/967985753027362816/2jPkroPW_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q407009"}, "addTags": {"brand": "3 Store", "brand:wikidata": "Q407009", "brand:wikipedia": "en:3 (telecommunications)", "name": "3 Store", "shop": "mobile_phone"}, "removeTags": {"brand": "3 Store", "brand:wikidata": "Q407009", "brand:wikipedia": "en:3 (telecommunications)", "name": "3 Store", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/AT&T": {"name": "AT&T", "icon": "maki-mobile-phone", "imageURL": "https://pbs.twimg.com/profile_images/1062348760670339073/egM1bS-c_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q298594"}, "addTags": {"brand": "AT&T", "brand:wikidata": "Q298594", "brand:wikipedia": "en:AT&T Mobility", "name": "AT&T", "shop": "mobile_phone"}, "removeTags": {"brand": "AT&T", "brand:wikidata": "Q298594", "brand:wikipedia": "en:AT&T Mobility", "name": "AT&T", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Bell": {"name": "Bell", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBell%20Mobility%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2894594"}, "addTags": {"brand": "Bell", "brand:wikidata": "Q2894594", "brand:wikipedia": "en:Bell Mobility", "name": "Bell", "shop": "mobile_phone"}, "removeTags": {"brand": "Bell", "brand:wikidata": "Q2894594", "brand:wikipedia": "en:Bell Mobility", "name": "Bell", "shop": "mobile_phone"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Boost Mobile": {"name": "Boost Mobile", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q4943790"}, "addTags": {"brand": "Boost Mobile", "brand:wikidata": "Q4943790", "brand:wikipedia": "en:Boost Mobile", "name": "Boost Mobile", "shop": "mobile_phone"}, "removeTags": {"brand": "Boost Mobile", "brand:wikidata": "Q4943790", "brand:wikipedia": "en:Boost Mobile", "name": "Boost Mobile", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Carphone Warehouse": {"name": "Carphone Warehouse", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCarphone%20Warehouse%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q118046"}, "addTags": {"brand": "Carphone Warehouse", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Carphone Warehouse", "shop": "mobile_phone"}, "removeTags": {"brand": "Carphone Warehouse", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Carphone Warehouse", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Claro": {"name": "Claro", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogoClaro2017.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1770208"}, "addTags": {"brand": "Claro", "brand:wikidata": "Q1770208", "brand:wikipedia": "en:Claro (company)", "name": "Claro", "shop": "mobile_phone"}, "removeTags": {"brand": "Claro", "brand:wikidata": "Q1770208", "brand:wikipedia": "en:Claro (company)", "name": "Claro", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Cricket Wireless": {"name": "Cricket Wireless", "icon": "maki-mobile-phone", "imageURL": "https://graph.facebook.com/Cricketnation/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q5184987"}, "addTags": {"brand": "Cricket Wireless", "brand:wikidata": "Q5184987", "brand:wikipedia": "en:Cricket Wireless", "name": "Cricket Wireless", "shop": "mobile_phone"}, "removeTags": {"brand": "Cricket Wireless", "brand:wikidata": "Q5184987", "brand:wikipedia": "en:Cricket Wireless", "name": "Cricket Wireless", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Digicel": {"name": "Digicel", "icon": "maki-mobile-phone", "imageURL": "https://pbs.twimg.com/profile_images/889845742998872066/-5EbELrp_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2117506"}, "addTags": {"brand": "Digicel", "brand:wikidata": "Q2117506", "brand:wikipedia": "en:Digicel", "name": "Digicel", "shop": "mobile_phone"}, "removeTags": {"brand": "Digicel", "brand:wikidata": "Q2117506", "brand:wikipedia": "en:Digicel", "name": "Digicel", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/EE": {"name": "EE", "icon": "maki-mobile-phone", "imageURL": "https://pbs.twimg.com/profile_images/948161522362126336/Gh7TJbt3_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q5322942"}, "addTags": {"brand": "EE", "brand:wikidata": "Q5322942", "brand:wikipedia": "en:EE Limited", "name": "EE", "shop": "mobile_phone"}, "removeTags": {"brand": "EE", "brand:wikidata": "Q5322942", "brand:wikipedia": "en:EE Limited", "name": "EE", "shop": "mobile_phone"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Entel": {"name": "Entel", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FENTel%20Argentina%20-%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q5323742"}, "addTags": {"brand": "Entel", "brand:wikidata": "Q5323742", "brand:wikipedia": "en:ENTel", "name": "Entel", "shop": "mobile_phone"}, "removeTags": {"brand": "Entel", "brand:wikidata": "Q5323742", "brand:wikipedia": "en:ENTel", "name": "Entel", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Freedom Mobile": {"name": "Freedom Mobile", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWind%20Italia.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q8023931"}, "addTags": {"brand": "Freedom Mobile", "brand:wikidata": "Q8023931", "brand:wikipedia": "en:Freedom Mobile", "name": "Freedom Mobile", "shop": "mobile_phone"}, "removeTags": {"brand": "Freedom Mobile", "brand:wikidata": "Q8023931", "brand:wikipedia": "en:Freedom Mobile", "name": "Freedom Mobile", "shop": "mobile_phone"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/MTN": {"name": "MTN", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMTN%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1813361"}, "addTags": {"brand": "MTN", "brand:wikidata": "Q1813361", "brand:wikipedia": "en:MTN Group", "name": "MTN", "shop": "mobile_phone"}, "removeTags": {"brand": "MTN", "brand:wikidata": "Q1813361", "brand:wikipedia": "en:MTN Group", "name": "MTN", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/MetroPCS": {"name": "MetroPCS", "icon": "maki-mobile-phone", "imageURL": "https://pbs.twimg.com/profile_images/1059487459292016644/jtMoU5Ql_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1925685"}, "addTags": {"brand": "MetroPCS", "brand:wikidata": "Q1925685", "brand:wikipedia": "en:Metro by T-Mobile", "name": "MetroPCS", "shop": "mobile_phone"}, "removeTags": {"brand": "MetroPCS", "brand:wikidata": "Q1925685", "brand:wikipedia": "en:Metro by T-Mobile", "name": "MetroPCS", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Mobilcom Debitel": {"name": "Mobilcom Debitel", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q344744"}, "addTags": {"brand": "Mobilcom Debitel", "brand:wikidata": "Q344744", "brand:wikipedia": "en:Debitel", "name": "Mobilcom Debitel", "shop": "mobile_phone"}, "removeTags": {"brand": "Mobilcom Debitel", "brand:wikidata": "Q344744", "brand:wikipedia": "en:Debitel", "name": "Mobilcom Debitel", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Moov": {"name": "Moov", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q3323637"}, "addTags": {"brand": "Moov", "brand:wikidata": "Q3323637", "brand:wikipedia": "fr:Moov Côte d'Ivoire", "name": "Moov", "shop": "mobile_phone"}, "removeTags": {"brand": "Moov", "brand:wikidata": "Q3323637", "brand:wikipedia": "fr:Moov Côte d'Ivoire", "name": "Moov", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Movistar": {"name": "Movistar", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Movistar.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q967735"}, "addTags": {"brand": "Movistar", "brand:wikidata": "Q967735", "brand:wikipedia": "en:Movistar", "name": "Movistar", "shop": "mobile_phone"}, "removeTags": {"brand": "Movistar", "brand:wikidata": "Q967735", "brand:wikipedia": "en:Movistar", "name": "Movistar", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/O2": {"name": "O2", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FO2.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q7072246"}, "addTags": {"brand": "O2", "brand:wikidata": "Q7072246", "brand:wikipedia": "en:O2 (Ireland)", "name": "O2", "shop": "mobile_phone"}, "removeTags": {"brand": "O2", "brand:wikidata": "Q7072246", "brand:wikipedia": "en:O2 (Ireland)", "name": "O2", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Orange": {"name": "Orange", "icon": "maki-mobile-phone", "imageURL": "https://graph.facebook.com/orange/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1431486"}, "addTags": {"brand": "Orange", "brand:wikidata": "Q1431486", "brand:wikipedia": "fr:Orange S.A.", "name": "Orange", "shop": "mobile_phone"}, "removeTags": {"brand": "Orange", "brand:wikidata": "Q1431486", "brand:wikipedia": "fr:Orange S.A.", "name": "Orange", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Phone House": {"name": "Phone House", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCarphone%20Warehouse%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q118046"}, "addTags": {"brand": "Phone House", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Phone House", "shop": "mobile_phone"}, "removeTags": {"brand": "Phone House", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Phone House", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Play": {"name": "Play", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPlay%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q7202998"}, "addTags": {"brand": "Play", "brand:wikidata": "Q7202998", "brand:wikipedia": "pl:Play (sieć telefonii komórkowej)", "name": "Play", "shop": "mobile_phone"}, "removeTags": {"brand": "Play", "brand:wikidata": "Q7202998", "brand:wikipedia": "pl:Play (sieć telefonii komórkowej)", "name": "Play", "shop": "mobile_phone"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Plus": {"name": "Plus", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPlus%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q7205598"}, "addTags": {"brand": "Plus", "brand:wikidata": "Q7205598", "brand:wikipedia": "pl:Plus (sieć telefonii komórkowej)", "name": "Plus", "shop": "mobile_phone"}, "removeTags": {"brand": "Plus", "brand:wikidata": "Q7205598", "brand:wikipedia": "pl:Plus (sieć telefonii komórkowej)", "name": "Plus", "shop": "mobile_phone"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Rogers": {"name": "Rogers", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRogers%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q3439663"}, "addTags": {"brand": "Rogers", "brand:wikidata": "Q3439663", "brand:wikipedia": "en:Rogers Wireless", "name": "Rogers", "shop": "mobile_phone"}, "removeTags": {"brand": "Rogers", "brand:wikidata": "Q3439663", "brand:wikipedia": "en:Rogers Wireless", "name": "Rogers", "shop": "mobile_phone"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/SFR": {"name": "SFR", "icon": "maki-mobile-phone", "imageURL": "https://pbs.twimg.com/profile_images/974226187512877056/ZobPImWl_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q218765"}, "addTags": {"brand": "SFR", "brand:wikidata": "Q218765", "brand:wikipedia": "en:SFR", "name": "SFR", "shop": "mobile_phone"}, "removeTags": {"brand": "SFR", "brand:wikidata": "Q218765", "brand:wikipedia": "en:SFR", "name": "SFR", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Sprint": {"name": "Sprint", "icon": "maki-mobile-phone", "imageURL": "https://pbs.twimg.com/profile_images/1017724895210295296/LeEVTlNv_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q301965"}, "addTags": {"brand": "Sprint", "brand:wikidata": "Q301965", "brand:wikipedia": "en:Sprint Corporation", "name": "Sprint", "shop": "mobile_phone"}, "removeTags": {"brand": "Sprint", "brand:wikidata": "Q301965", "brand:wikipedia": "en:Sprint Corporation", "name": "Sprint", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/T-Mobile": {"name": "T-Mobile", "icon": "maki-mobile-phone", "imageURL": "https://pbs.twimg.com/profile_images/981976280504516608/t6UPf6ru_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q327634"}, "addTags": {"brand": "T-Mobile", "brand:wikidata": "Q327634", "brand:wikipedia": "en:T-Mobile", "name": "T-Mobile", "shop": "mobile_phone"}, "removeTags": {"brand": "T-Mobile", "brand:wikidata": "Q327634", "brand:wikipedia": "en:T-Mobile", "name": "T-Mobile", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/TIM": {"name": "TIM", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTelecom%20italia%202016.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q144617"}, "addTags": {"brand": "TIM", "brand:wikidata": "Q144617", "brand:wikipedia": "en:Telecom Italia", "name": "TIM", "shop": "mobile_phone"}, "removeTags": {"brand": "TIM", "brand:wikidata": "Q144617", "brand:wikipedia": "en:Telecom Italia", "name": "TIM", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Telcel": {"name": "Telcel", "icon": "maki-mobile-phone", "imageURL": "https://pbs.twimg.com/profile_images/767798417678405632/hP_WoWZi_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q3517255"}, "addTags": {"brand": "Telcel", "brand:wikidata": "Q3517255", "brand:wikipedia": "en:Telcel", "name": "Telcel", "shop": "mobile_phone"}, "removeTags": {"brand": "Telcel", "brand:wikidata": "Q3517255", "brand:wikipedia": "en:Telcel", "name": "Telcel", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Tele2": {"name": "Tele2", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTele2%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q309865"}, "addTags": {"brand": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Tele2", "shop": "mobile_phone"}, "removeTags": {"brand": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Tele2", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Telekom": {"name": "Telekom", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTelekom%20Logo%202013.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q9396"}, "addTags": {"brand": "Telekom", "brand:wikidata": "Q9396", "brand:wikipedia": "en:Deutsche Telekom", "name": "Telekom", "shop": "mobile_phone"}, "removeTags": {"brand": "Telekom", "brand:wikidata": "Q9396", "brand:wikipedia": "en:Deutsche Telekom", "name": "Telekom", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Telenor": {"name": "Telenor", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTelenor%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q845632"}, "addTags": {"brand": "Telenor", "brand:wikidata": "Q845632", "brand:wikipedia": "en:Telenor", "name": "Telenor", "shop": "mobile_phone"}, "removeTags": {"brand": "Telenor", "brand:wikidata": "Q845632", "brand:wikipedia": "en:Telenor", "name": "Telenor", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Telstra": {"name": "Telstra", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTelstra%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q721162"}, "addTags": {"brand": "Telstra", "brand:wikidata": "Q721162", "brand:wikipedia": "en:Telstra", "name": "Telstra", "shop": "mobile_phone"}, "removeTags": {"brand": "Telstra", "brand:wikidata": "Q721162", "brand:wikipedia": "en:Telstra", "name": "Telstra", "shop": "mobile_phone"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Telus": {"name": "Telus", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTelus-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q165858"}, "addTags": {"brand": "Telus", "brand:wikidata": "Q165858", "brand:wikipedia": "en:Telus", "name": "Telus", "shop": "mobile_phone"}, "removeTags": {"brand": "Telus", "brand:wikidata": "Q165858", "brand:wikipedia": "en:Telus", "name": "Telus", "shop": "mobile_phone"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Turkcell": {"name": "Turkcell", "icon": "maki-mobile-phone", "imageURL": "https://graph.facebook.com/Turkcell/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q283852"}, "addTags": {"brand": "Turkcell", "brand:wikidata": "Q283852", "brand:wikipedia": "en:Turkcell", "name": "Turkcell", "shop": "mobile_phone"}, "removeTags": {"brand": "Turkcell", "brand:wikidata": "Q283852", "brand:wikipedia": "en:Turkcell", "name": "Turkcell", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Télécentre": {"name": "Télécentre", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q180034"}, "addTags": {"brand": "Télécentre", "brand:wikidata": "Q180034", "brand:wikipedia": "en:Telecentre", "name": "Télécentre", "shop": "mobile_phone"}, "removeTags": {"brand": "Télécentre", "brand:wikidata": "Q180034", "brand:wikipedia": "en:Telecentre", "name": "Télécentre", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/U.S. Cellular": {"name": "U.S. Cellular", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2466256"}, "addTags": {"brand": "U.S. Cellular", "brand:wikidata": "Q2466256", "brand:wikipedia": "en:U.S. Cellular", "name": "U.S. Cellular", "shop": "mobile_phone"}, "removeTags": {"brand": "U.S. Cellular", "brand:wikidata": "Q2466256", "brand:wikipedia": "en:U.S. Cellular", "name": "U.S. Cellular", "shop": "mobile_phone"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Verizon Wireless": {"name": "Verizon Wireless", "icon": "maki-mobile-phone", "imageURL": "https://pbs.twimg.com/profile_images/1032361834085408768/UTSm_MOD_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q919641"}, "addTags": {"brand": "Verizon Wireless", "brand:wikidata": "Q919641", "brand:wikipedia": "en:Verizon Wireless", "name": "Verizon Wireless", "shop": "mobile_phone"}, "removeTags": {"brand": "Verizon Wireless", "brand:wikidata": "Q919641", "brand:wikipedia": "en:Verizon Wireless", "name": "Verizon Wireless", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Vodafone": {"name": "Vodafone", "icon": "maki-mobile-phone", "imageURL": "https://pbs.twimg.com/profile_images/916044193298034694/aUuQ6W_F_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q122141"}, "addTags": {"brand": "Vodafone", "brand:wikidata": "Q122141", "brand:wikipedia": "en:Vodafone", "name": "Vodafone", "shop": "mobile_phone"}, "removeTags": {"brand": "Vodafone", "brand:wikidata": "Q122141", "brand:wikipedia": "en:Vodafone", "name": "Vodafone", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/WIFI_ETECSA": {"name": "WIFI_ETECSA", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q490323"}, "addTags": {"brand": "WIFI_ETECSA", "brand:wikidata": "Q490323", "brand:wikipedia": "es:Empresa de Telecomunicaciones de Cuba", "name": "WIFI_ETECSA", "shop": "mobile_phone"}, "removeTags": {"brand": "WIFI_ETECSA", "brand:wikidata": "Q490323", "brand:wikipedia": "es:Empresa de Telecomunicaciones de Cuba", "name": "WIFI_ETECSA", "shop": "mobile_phone"}, "countryCodes": ["cu"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Wind": {"name": "Wind", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWind%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q650467"}, "addTags": {"brand": "Wind", "brand:wikidata": "Q650467", "brand:wikipedia": "en:WIND (Italy)", "name": "Wind", "shop": "mobile_phone"}, "removeTags": {"brand": "Wind", "brand:wikidata": "Q650467", "brand:wikipedia": "en:WIND (Italy)", "name": "Wind", "shop": "mobile_phone"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Yoigo": {"name": "Yoigo", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FYoigo%20morado.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2630989"}, "addTags": {"brand": "Yoigo", "brand:wikidata": "Q2630989", "brand:wikipedia": "en:Yoigo", "name": "Yoigo", "shop": "mobile_phone"}, "removeTags": {"brand": "Yoigo", "brand:wikidata": "Q2630989", "brand:wikipedia": "en:Yoigo", "name": "Yoigo", "shop": "mobile_phone"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/auショップ": {"name": "auショップ", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q11190521"}, "addTags": {"brand": "au", "brand:ja": "au", "brand:wikidata": "Q11190521", "brand:wikipedia": "ja:au (通信)", "name": "auショップ", "name:en": "au shop", "name:ja": "auショップ", "shop": "mobile_phone"}, "removeTags": {"brand": "au", "brand:ja": "au", "brand:wikidata": "Q11190521", "brand:wikipedia": "ja:au (通信)", "name": "auショップ", "name:en": "au shop", "name:ja": "auショップ", "shop": "mobile_phone"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Алло": {"name": "Алло", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q18683057"}, "addTags": {"brand": "Алло", "brand:wikidata": "Q18683057", "brand:wikipedia": "uk:Алло (торгова мережа)", "name": "Алло", "shop": "mobile_phone"}, "removeTags": {"brand": "Алло", "brand:wikidata": "Q18683057", "brand:wikipedia": "uk:Алло (торгова мережа)", "name": "Алло", "shop": "mobile_phone"}, "countryCodes": ["md", "ua"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Билайн": {"name": "Билайн", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F%D0%91%D0%B8%D0%BB%D0%B0%D0%B9%D0%BD%202.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q402880"}, "addTags": {"brand": "Билайн", "brand:en": "Beeline", "brand:wikidata": "Q402880", "brand:wikipedia": "en:Beeline (brand)", "name": "Билайн", "name:en": "Beeline", "shop": "mobile_phone"}, "removeTags": {"brand": "Билайн", "brand:en": "Beeline", "brand:wikidata": "Q402880", "brand:wikipedia": "en:Beeline (brand)", "name": "Билайн", "name:en": "Beeline", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Евросеть": {"name": "Евросеть", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FEuroset.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q65310"}, "addTags": {"brand": "Евросеть", "brand:en": "Euroset", "brand:wikidata": "Q65310", "brand:wikipedia": "en:Euroset", "name": "Евросеть", "name:en": "Euroset", "shop": "mobile_phone"}, "removeTags": {"brand": "Евросеть", "brand:en": "Euroset", "brand:wikidata": "Q65310", "brand:wikipedia": "en:Euroset", "name": "Евросеть", "name:en": "Euroset", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Київстар": {"name": "Київстар", "icon": "maki-mobile-phone", "imageURL": "https://pbs.twimg.com/profile_images/1076409804229353472/KN2XlbP8_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2288463"}, "addTags": {"brand": "Київстар", "brand:en": "Kyivstar", "brand:wikidata": "Q2288463", "brand:wikipedia": "en:Kyivstar", "name": "Київстар", "name:en": "Kyivstar", "shop": "mobile_phone"}, "removeTags": {"brand": "Київстар", "brand:en": "Kyivstar", "brand:wikidata": "Q2288463", "brand:wikipedia": "en:Kyivstar", "name": "Київстар", "name:en": "Kyivstar", "shop": "mobile_phone"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/МТС": {"name": "МТС", "icon": "maki-mobile-phone", "imageURL": "https://graph.facebook.com/mts/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1368919"}, "addTags": {"brand": "МТС", "brand:en": "MTS", "brand:wikidata": "Q1368919", "brand:wikipedia": "en:MTS (network provider)", "name": "МТС", "name:en": "MTS", "shop": "mobile_phone"}, "removeTags": {"brand": "МТС", "brand:en": "MTS", "brand:wikidata": "Q1368919", "brand:wikipedia": "en:MTS (network provider)", "name": "МТС", "name:en": "MTS", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Мегафон": {"name": "Мегафон", "icon": "maki-mobile-phone", "imageURL": "https://graph.facebook.com/MegaFon.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1720713"}, "addTags": {"brand": "Мегафон", "brand:en": "MegaFon", "brand:wikidata": "Q1720713", "brand:wikipedia": "en:MegaFon", "name": "Мегафон", "name:en": "MegaFon", "shop": "mobile_phone"}, "removeTags": {"brand": "Мегафон", "brand:en": "MegaFon", "brand:wikidata": "Q1720713", "brand:wikipedia": "en:MegaFon", "name": "Мегафон", "name:en": "MegaFon", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Связной": {"name": "Связной", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSvyaznoyLogo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q65371"}, "addTags": {"brand": "Связной", "brand:en": "Svyaznoy", "brand:wikidata": "Q65371", "brand:wikipedia": "en:Svyaznoy", "name": "Связной", "name:en": "Svyaznoy", "shop": "mobile_phone"}, "removeTags": {"brand": "Связной", "brand:en": "Svyaznoy", "brand:wikidata": "Q65371", "brand:wikipedia": "en:Svyaznoy", "name": "Связной", "name:en": "Svyaznoy", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Теле2": {"name": "Теле2", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTele2%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q309865"}, "addTags": {"brand": "Теле2", "brand:en": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Теле2", "name:en": "Tele2", "shop": "mobile_phone"}, "removeTags": {"brand": "Теле2", "brand:en": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Теле2", "name:en": "Tele2", "shop": "mobile_phone"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/ソフトバンク": {"name": "ソフトバンク", "icon": "maki-mobile-phone", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSoftbank%20mobile%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q7553832"}, "addTags": {"brand": "ソフトバンク", "brand:en": "SoftBank Telecom", "brand:ja": "ソフトバンク", "brand:wikidata": "Q7553832", "brand:wikipedia": "en:SoftBank Telecom", "name": "ソフトバンク", "name:en": "SoftBank Telecom", "name:ja": "ソフトバンク", "shop": "mobile_phone"}, "removeTags": {"brand": "ソフトバンク", "brand:en": "SoftBank Telecom", "brand:ja": "ソフトバンク", "brand:wikidata": "Q7553832", "brand:wikipedia": "en:SoftBank Telecom", "name": "ソフトバンク", "name:en": "SoftBank Telecom", "name:ja": "ソフトバンク", "shop": "mobile_phone"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/ソフトバンクショップ": {"name": "ソフトバンクショップ", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q11315281"}, "addTags": {"brand": "ソフトバンクショップ", "brand:en": "SoftBankShop", "brand:ja": "ソフトバンクショップ", "brand:wikidata": "Q11315281", "brand:wikipedia": "ja:ソフトバンクショップ", "name": "ソフトバンクショップ", "name:en": "SoftBankShop", "name:ja": "ソフトバンクショップ", "shop": "mobile_phone"}, "removeTags": {"brand": "ソフトバンクショップ", "brand:en": "SoftBankShop", "brand:ja": "ソフトバンクショップ", "brand:wikidata": "Q11315281", "brand:wikipedia": "ja:ソフトバンクショップ", "name": "ソフトバンクショップ", "name:en": "SoftBankShop", "name:ja": "ソフトバンクショップ", "shop": "mobile_phone"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/ドコモショップ": {"name": "ドコモショップ", "icon": "maki-mobile-phone", "imageURL": "https://graph.facebook.com/docomo.official/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q853958"}, "addTags": {"brand": "ドコモショップ", "brand:en": "DoCoMo Shop", "brand:ja": "ドコモショップ", "brand:wikidata": "Q853958", "brand:wikipedia": "ja:NTTドコモ", "name": "ドコモショップ", "name:en": "DoCoMo Shop", "name:ja": "ドコモショップ", "shop": "mobile_phone"}, "removeTags": {"brand": "ドコモショップ", "brand:en": "DoCoMo Shop", "brand:ja": "ドコモショップ", "brand:wikidata": "Q853958", "brand:wikipedia": "ja:NTTドコモ", "name": "ドコモショップ", "name:en": "DoCoMo Shop", "name:ja": "ドコモショップ", "shop": "mobile_phone"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/3 Store": {"name": "3 Store", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/967985753027362816/2jPkroPW_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q407009"}, "addTags": {"brand": "3 Store", "brand:wikidata": "Q407009", "brand:wikipedia": "en:3 (telecommunications)", "name": "3 Store", "shop": "mobile_phone"}, "removeTags": {"brand": "3 Store", "brand:wikidata": "Q407009", "brand:wikipedia": "en:3 (telecommunications)", "name": "3 Store", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/AT&T": {"name": "AT&T", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/1062348760670339073/egM1bS-c_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q298594"}, "addTags": {"brand": "AT&T", "brand:wikidata": "Q298594", "brand:wikipedia": "en:AT&T Mobility", "name": "AT&T", "shop": "mobile_phone"}, "removeTags": {"brand": "AT&T", "brand:wikidata": "Q298594", "brand:wikipedia": "en:AT&T Mobility", "name": "AT&T", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Bell": {"name": "Bell", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBell%20Mobility%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2894594"}, "addTags": {"brand": "Bell", "brand:wikidata": "Q2894594", "brand:wikipedia": "en:Bell Mobility", "name": "Bell", "shop": "mobile_phone"}, "removeTags": {"brand": "Bell", "brand:wikidata": "Q2894594", "brand:wikipedia": "en:Bell Mobility", "name": "Bell", "shop": "mobile_phone"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Boost Mobile": {"name": "Boost Mobile", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q4943790"}, "addTags": {"brand": "Boost Mobile", "brand:wikidata": "Q4943790", "brand:wikipedia": "en:Boost Mobile", "name": "Boost Mobile", "shop": "mobile_phone"}, "removeTags": {"brand": "Boost Mobile", "brand:wikidata": "Q4943790", "brand:wikipedia": "en:Boost Mobile", "name": "Boost Mobile", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Carphone Warehouse": {"name": "Carphone Warehouse", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCarphone%20Warehouse%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q118046"}, "addTags": {"brand": "Carphone Warehouse", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Carphone Warehouse", "shop": "mobile_phone"}, "removeTags": {"brand": "Carphone Warehouse", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Carphone Warehouse", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Claro": {"name": "Claro", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogoClaro2017.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1770208"}, "addTags": {"brand": "Claro", "brand:wikidata": "Q1770208", "brand:wikipedia": "en:Claro (company)", "name": "Claro", "shop": "mobile_phone"}, "removeTags": {"brand": "Claro", "brand:wikidata": "Q1770208", "brand:wikipedia": "en:Claro (company)", "name": "Claro", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Cricket Wireless": {"name": "Cricket Wireless", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Cricketnation/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q5184987"}, "addTags": {"brand": "Cricket Wireless", "brand:wikidata": "Q5184987", "brand:wikipedia": "en:Cricket Wireless", "name": "Cricket Wireless", "shop": "mobile_phone"}, "removeTags": {"brand": "Cricket Wireless", "brand:wikidata": "Q5184987", "brand:wikipedia": "en:Cricket Wireless", "name": "Cricket Wireless", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Digicel": {"name": "Digicel", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/889845742998872066/-5EbELrp_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2117506"}, "addTags": {"brand": "Digicel", "brand:wikidata": "Q2117506", "brand:wikipedia": "en:Digicel", "name": "Digicel", "shop": "mobile_phone"}, "removeTags": {"brand": "Digicel", "brand:wikidata": "Q2117506", "brand:wikipedia": "en:Digicel", "name": "Digicel", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/EE": {"name": "EE", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/948161522362126336/Gh7TJbt3_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q5322942"}, "addTags": {"brand": "EE", "brand:wikidata": "Q5322942", "brand:wikipedia": "en:EE Limited", "name": "EE", "shop": "mobile_phone"}, "removeTags": {"brand": "EE", "brand:wikidata": "Q5322942", "brand:wikipedia": "en:EE Limited", "name": "EE", "shop": "mobile_phone"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Entel": {"name": "Entel", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FENTel%20Argentina%20-%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q5323742"}, "addTags": {"brand": "Entel", "brand:wikidata": "Q5323742", "brand:wikipedia": "en:ENTel", "name": "Entel", "shop": "mobile_phone"}, "removeTags": {"brand": "Entel", "brand:wikidata": "Q5323742", "brand:wikipedia": "en:ENTel", "name": "Entel", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Freedom Mobile": {"name": "Freedom Mobile", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWind%20Italia.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q8023931"}, "addTags": {"brand": "Freedom Mobile", "brand:wikidata": "Q8023931", "brand:wikipedia": "en:Freedom Mobile", "name": "Freedom Mobile", "shop": "mobile_phone"}, "removeTags": {"brand": "Freedom Mobile", "brand:wikidata": "Q8023931", "brand:wikipedia": "en:Freedom Mobile", "name": "Freedom Mobile", "shop": "mobile_phone"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/MTN": {"name": "MTN", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMTN%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1813361"}, "addTags": {"brand": "MTN", "brand:wikidata": "Q1813361", "brand:wikipedia": "en:MTN Group", "name": "MTN", "shop": "mobile_phone"}, "removeTags": {"brand": "MTN", "brand:wikidata": "Q1813361", "brand:wikipedia": "en:MTN Group", "name": "MTN", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/MetroPCS": {"name": "MetroPCS", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/1059487459292016644/jtMoU5Ql_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1925685"}, "addTags": {"brand": "MetroPCS", "brand:wikidata": "Q1925685", "brand:wikipedia": "en:Metro by T-Mobile", "name": "MetroPCS", "shop": "mobile_phone"}, "removeTags": {"brand": "MetroPCS", "brand:wikidata": "Q1925685", "brand:wikipedia": "en:Metro by T-Mobile", "name": "MetroPCS", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Mobilcom Debitel": {"name": "Mobilcom Debitel", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q344744"}, "addTags": {"brand": "Mobilcom Debitel", "brand:wikidata": "Q344744", "brand:wikipedia": "en:Debitel", "name": "Mobilcom Debitel", "shop": "mobile_phone"}, "removeTags": {"brand": "Mobilcom Debitel", "brand:wikidata": "Q344744", "brand:wikipedia": "en:Debitel", "name": "Mobilcom Debitel", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Moov": {"name": "Moov", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q3323637"}, "addTags": {"brand": "Moov", "brand:wikidata": "Q3323637", "brand:wikipedia": "fr:Moov Côte d'Ivoire", "name": "Moov", "shop": "mobile_phone"}, "removeTags": {"brand": "Moov", "brand:wikidata": "Q3323637", "brand:wikipedia": "fr:Moov Côte d'Ivoire", "name": "Moov", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Movistar": {"name": "Movistar", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Movistar.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q967735"}, "addTags": {"brand": "Movistar", "brand:wikidata": "Q967735", "brand:wikipedia": "en:Movistar", "name": "Movistar", "shop": "mobile_phone"}, "removeTags": {"brand": "Movistar", "brand:wikidata": "Q967735", "brand:wikipedia": "en:Movistar", "name": "Movistar", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/O2": {"name": "O2", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FO2.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q7072246"}, "addTags": {"brand": "O2", "brand:wikidata": "Q7072246", "brand:wikipedia": "en:O2 (Ireland)", "name": "O2", "shop": "mobile_phone"}, "removeTags": {"brand": "O2", "brand:wikidata": "Q7072246", "brand:wikipedia": "en:O2 (Ireland)", "name": "O2", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Orange": {"name": "Orange", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/orange/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1431486"}, "addTags": {"brand": "Orange", "brand:wikidata": "Q1431486", "brand:wikipedia": "fr:Orange S.A.", "name": "Orange", "shop": "mobile_phone"}, "removeTags": {"brand": "Orange", "brand:wikidata": "Q1431486", "brand:wikipedia": "fr:Orange S.A.", "name": "Orange", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Phone House": {"name": "Phone House", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCarphone%20Warehouse%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q118046"}, "addTags": {"brand": "Phone House", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Phone House", "shop": "mobile_phone"}, "removeTags": {"brand": "Phone House", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Phone House", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Play": {"name": "Play", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPlay%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q7202998"}, "addTags": {"brand": "Play", "brand:wikidata": "Q7202998", "brand:wikipedia": "pl:Play (sieć telefonii komórkowej)", "name": "Play", "shop": "mobile_phone"}, "removeTags": {"brand": "Play", "brand:wikidata": "Q7202998", "brand:wikipedia": "pl:Play (sieć telefonii komórkowej)", "name": "Play", "shop": "mobile_phone"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Plus": {"name": "Plus", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPlus%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q7205598"}, "addTags": {"brand": "Plus", "brand:wikidata": "Q7205598", "brand:wikipedia": "pl:Plus (sieć telefonii komórkowej)", "name": "Plus", "shop": "mobile_phone"}, "removeTags": {"brand": "Plus", "brand:wikidata": "Q7205598", "brand:wikipedia": "pl:Plus (sieć telefonii komórkowej)", "name": "Plus", "shop": "mobile_phone"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Rogers": {"name": "Rogers", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRogers%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q3439663"}, "addTags": {"brand": "Rogers", "brand:wikidata": "Q3439663", "brand:wikipedia": "en:Rogers Wireless", "name": "Rogers", "shop": "mobile_phone"}, "removeTags": {"brand": "Rogers", "brand:wikidata": "Q3439663", "brand:wikipedia": "en:Rogers Wireless", "name": "Rogers", "shop": "mobile_phone"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/SFR": {"name": "SFR", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/974226187512877056/ZobPImWl_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q218765"}, "addTags": {"brand": "SFR", "brand:wikidata": "Q218765", "brand:wikipedia": "en:SFR", "name": "SFR", "shop": "mobile_phone"}, "removeTags": {"brand": "SFR", "brand:wikidata": "Q218765", "brand:wikipedia": "en:SFR", "name": "SFR", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Sprint": {"name": "Sprint", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/1017724895210295296/LeEVTlNv_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q301965"}, "addTags": {"brand": "Sprint", "brand:wikidata": "Q301965", "brand:wikipedia": "en:Sprint Corporation", "name": "Sprint", "shop": "mobile_phone"}, "removeTags": {"brand": "Sprint", "brand:wikidata": "Q301965", "brand:wikipedia": "en:Sprint Corporation", "name": "Sprint", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/T-Mobile": {"name": "T-Mobile", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/981976280504516608/t6UPf6ru_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q327634"}, "addTags": {"brand": "T-Mobile", "brand:wikidata": "Q327634", "brand:wikipedia": "en:T-Mobile", "name": "T-Mobile", "shop": "mobile_phone"}, "removeTags": {"brand": "T-Mobile", "brand:wikidata": "Q327634", "brand:wikipedia": "en:T-Mobile", "name": "T-Mobile", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/TIM": {"name": "TIM", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTelecom%20italia%202016.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q144617"}, "addTags": {"brand": "TIM", "brand:wikidata": "Q144617", "brand:wikipedia": "en:Telecom Italia", "name": "TIM", "shop": "mobile_phone"}, "removeTags": {"brand": "TIM", "brand:wikidata": "Q144617", "brand:wikipedia": "en:Telecom Italia", "name": "TIM", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Telcel": {"name": "Telcel", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/767798417678405632/hP_WoWZi_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q3517255"}, "addTags": {"brand": "Telcel", "brand:wikidata": "Q3517255", "brand:wikipedia": "en:Telcel", "name": "Telcel", "shop": "mobile_phone"}, "removeTags": {"brand": "Telcel", "brand:wikidata": "Q3517255", "brand:wikipedia": "en:Telcel", "name": "Telcel", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Tele2": {"name": "Tele2", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTele2%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q309865"}, "addTags": {"brand": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Tele2", "shop": "mobile_phone"}, "removeTags": {"brand": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Tele2", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Telekom": {"name": "Telekom", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTelekom%20Logo%202013.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q9396"}, "addTags": {"brand": "Telekom", "brand:wikidata": "Q9396", "brand:wikipedia": "en:Deutsche Telekom", "name": "Telekom", "shop": "mobile_phone"}, "removeTags": {"brand": "Telekom", "brand:wikidata": "Q9396", "brand:wikipedia": "en:Deutsche Telekom", "name": "Telekom", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Telenor": {"name": "Telenor", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTelenor%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q845632"}, "addTags": {"brand": "Telenor", "brand:wikidata": "Q845632", "brand:wikipedia": "en:Telenor", "name": "Telenor", "shop": "mobile_phone"}, "removeTags": {"brand": "Telenor", "brand:wikidata": "Q845632", "brand:wikipedia": "en:Telenor", "name": "Telenor", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Telstra": {"name": "Telstra", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTelstra%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q721162"}, "addTags": {"brand": "Telstra", "brand:wikidata": "Q721162", "brand:wikipedia": "en:Telstra", "name": "Telstra", "shop": "mobile_phone"}, "removeTags": {"brand": "Telstra", "brand:wikidata": "Q721162", "brand:wikipedia": "en:Telstra", "name": "Telstra", "shop": "mobile_phone"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Telus": {"name": "Telus", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTelus-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q165858"}, "addTags": {"brand": "Telus", "brand:wikidata": "Q165858", "brand:wikipedia": "en:Telus", "name": "Telus", "shop": "mobile_phone"}, "removeTags": {"brand": "Telus", "brand:wikidata": "Q165858", "brand:wikipedia": "en:Telus", "name": "Telus", "shop": "mobile_phone"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Turkcell": {"name": "Turkcell", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Turkcell/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q283852"}, "addTags": {"brand": "Turkcell", "brand:wikidata": "Q283852", "brand:wikipedia": "en:Turkcell", "name": "Turkcell", "shop": "mobile_phone"}, "removeTags": {"brand": "Turkcell", "brand:wikidata": "Q283852", "brand:wikipedia": "en:Turkcell", "name": "Turkcell", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Télécentre": {"name": "Télécentre", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q180034"}, "addTags": {"brand": "Télécentre", "brand:wikidata": "Q180034", "brand:wikipedia": "en:Telecentre", "name": "Télécentre", "shop": "mobile_phone"}, "removeTags": {"brand": "Télécentre", "brand:wikidata": "Q180034", "brand:wikipedia": "en:Telecentre", "name": "Télécentre", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/U.S. Cellular": {"name": "U.S. Cellular", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2466256"}, "addTags": {"brand": "U.S. Cellular", "brand:wikidata": "Q2466256", "brand:wikipedia": "en:U.S. Cellular", "name": "U.S. Cellular", "shop": "mobile_phone"}, "removeTags": {"brand": "U.S. Cellular", "brand:wikidata": "Q2466256", "brand:wikipedia": "en:U.S. Cellular", "name": "U.S. Cellular", "shop": "mobile_phone"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Verizon Wireless": {"name": "Verizon Wireless", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/1032361834085408768/UTSm_MOD_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q919641"}, "addTags": {"brand": "Verizon Wireless", "brand:wikidata": "Q919641", "brand:wikipedia": "en:Verizon Wireless", "name": "Verizon Wireless", "shop": "mobile_phone"}, "removeTags": {"brand": "Verizon Wireless", "brand:wikidata": "Q919641", "brand:wikipedia": "en:Verizon Wireless", "name": "Verizon Wireless", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Vodafone": {"name": "Vodafone", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/916044193298034694/aUuQ6W_F_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q122141"}, "addTags": {"brand": "Vodafone", "brand:wikidata": "Q122141", "brand:wikipedia": "en:Vodafone", "name": "Vodafone", "shop": "mobile_phone"}, "removeTags": {"brand": "Vodafone", "brand:wikidata": "Q122141", "brand:wikipedia": "en:Vodafone", "name": "Vodafone", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/WIFI_ETECSA": {"name": "WIFI_ETECSA", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q490323"}, "addTags": {"brand": "WIFI_ETECSA", "brand:wikidata": "Q490323", "brand:wikipedia": "es:Empresa de Telecomunicaciones de Cuba", "name": "WIFI_ETECSA", "shop": "mobile_phone"}, "removeTags": {"brand": "WIFI_ETECSA", "brand:wikidata": "Q490323", "brand:wikipedia": "es:Empresa de Telecomunicaciones de Cuba", "name": "WIFI_ETECSA", "shop": "mobile_phone"}, "countryCodes": ["cu"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Wind": {"name": "Wind", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWind%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q650467"}, "addTags": {"brand": "Wind", "brand:wikidata": "Q650467", "brand:wikipedia": "en:WIND (Italy)", "name": "Wind", "shop": "mobile_phone"}, "removeTags": {"brand": "Wind", "brand:wikidata": "Q650467", "brand:wikipedia": "en:WIND (Italy)", "name": "Wind", "shop": "mobile_phone"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Yoigo": {"name": "Yoigo", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FYoigo%20morado.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2630989"}, "addTags": {"brand": "Yoigo", "brand:wikidata": "Q2630989", "brand:wikipedia": "en:Yoigo", "name": "Yoigo", "shop": "mobile_phone"}, "removeTags": {"brand": "Yoigo", "brand:wikidata": "Q2630989", "brand:wikipedia": "en:Yoigo", "name": "Yoigo", "shop": "mobile_phone"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/auショップ": {"name": "auショップ", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q11190521"}, "addTags": {"brand": "au", "brand:ja": "au", "brand:wikidata": "Q11190521", "brand:wikipedia": "ja:au (通信)", "name": "auショップ", "name:en": "au shop", "name:ja": "auショップ", "shop": "mobile_phone"}, "removeTags": {"brand": "au", "brand:ja": "au", "brand:wikidata": "Q11190521", "brand:wikipedia": "ja:au (通信)", "name": "auショップ", "name:en": "au shop", "name:ja": "auショップ", "shop": "mobile_phone"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Алло": {"name": "Алло", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q18683057"}, "addTags": {"brand": "Алло", "brand:wikidata": "Q18683057", "brand:wikipedia": "uk:Алло (торгова мережа)", "name": "Алло", "shop": "mobile_phone"}, "removeTags": {"brand": "Алло", "brand:wikidata": "Q18683057", "brand:wikipedia": "uk:Алло (торгова мережа)", "name": "Алло", "shop": "mobile_phone"}, "countryCodes": ["md", "ua"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Билайн": {"name": "Билайн", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F%D0%91%D0%B8%D0%BB%D0%B0%D0%B9%D0%BD%202.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q402880"}, "addTags": {"brand": "Билайн", "brand:en": "Beeline", "brand:wikidata": "Q402880", "brand:wikipedia": "en:Beeline (brand)", "name": "Билайн", "name:en": "Beeline", "shop": "mobile_phone"}, "removeTags": {"brand": "Билайн", "brand:en": "Beeline", "brand:wikidata": "Q402880", "brand:wikipedia": "en:Beeline (brand)", "name": "Билайн", "name:en": "Beeline", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Евросеть": {"name": "Евросеть", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FEuroset.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q65310"}, "addTags": {"brand": "Евросеть", "brand:en": "Euroset", "brand:wikidata": "Q65310", "brand:wikipedia": "en:Euroset", "name": "Евросеть", "name:en": "Euroset", "shop": "mobile_phone"}, "removeTags": {"brand": "Евросеть", "brand:en": "Euroset", "brand:wikidata": "Q65310", "brand:wikipedia": "en:Euroset", "name": "Евросеть", "name:en": "Euroset", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Київстар": {"name": "Київстар", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/1076409804229353472/KN2XlbP8_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2288463"}, "addTags": {"brand": "Київстар", "brand:en": "Kyivstar", "brand:wikidata": "Q2288463", "brand:wikipedia": "en:Kyivstar", "name": "Київстар", "name:en": "Kyivstar", "shop": "mobile_phone"}, "removeTags": {"brand": "Київстар", "brand:en": "Kyivstar", "brand:wikidata": "Q2288463", "brand:wikipedia": "en:Kyivstar", "name": "Київстар", "name:en": "Kyivstar", "shop": "mobile_phone"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/МТС": {"name": "МТС", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/mts/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1368919"}, "addTags": {"brand": "МТС", "brand:en": "MTS", "brand:wikidata": "Q1368919", "brand:wikipedia": "en:MTS (network provider)", "name": "МТС", "name:en": "MTS", "shop": "mobile_phone"}, "removeTags": {"brand": "МТС", "brand:en": "MTS", "brand:wikidata": "Q1368919", "brand:wikipedia": "en:MTS (network provider)", "name": "МТС", "name:en": "MTS", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Мегафон": {"name": "Мегафон", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/MegaFon.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1720713"}, "addTags": {"brand": "Мегафон", "brand:en": "MegaFon", "brand:wikidata": "Q1720713", "brand:wikipedia": "en:MegaFon", "name": "Мегафон", "name:en": "MegaFon", "shop": "mobile_phone"}, "removeTags": {"brand": "Мегафон", "brand:en": "MegaFon", "brand:wikidata": "Q1720713", "brand:wikipedia": "en:MegaFon", "name": "Мегафон", "name:en": "MegaFon", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Связной": {"name": "Связной", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSvyaznoyLogo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q65371"}, "addTags": {"brand": "Связной", "brand:en": "Svyaznoy", "brand:wikidata": "Q65371", "brand:wikipedia": "en:Svyaznoy", "name": "Связной", "name:en": "Svyaznoy", "shop": "mobile_phone"}, "removeTags": {"brand": "Связной", "brand:en": "Svyaznoy", "brand:wikidata": "Q65371", "brand:wikipedia": "en:Svyaznoy", "name": "Связной", "name:en": "Svyaznoy", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Теле2": {"name": "Теле2", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTele2%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q309865"}, "addTags": {"brand": "Теле2", "brand:en": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Теле2", "name:en": "Tele2", "shop": "mobile_phone"}, "removeTags": {"brand": "Теле2", "brand:en": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Теле2", "name:en": "Tele2", "shop": "mobile_phone"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/ソフトバンク": {"name": "ソフトバンク", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSoftbank%20mobile%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q7553832"}, "addTags": {"brand": "ソフトバンク", "brand:en": "SoftBank Telecom", "brand:ja": "ソフトバンク", "brand:wikidata": "Q7553832", "brand:wikipedia": "en:SoftBank Telecom", "name": "ソフトバンク", "name:en": "SoftBank Telecom", "name:ja": "ソフトバンク", "shop": "mobile_phone"}, "removeTags": {"brand": "ソフトバンク", "brand:en": "SoftBank Telecom", "brand:ja": "ソフトバンク", "brand:wikidata": "Q7553832", "brand:wikipedia": "en:SoftBank Telecom", "name": "ソフトバンク", "name:en": "SoftBank Telecom", "name:ja": "ソフトバンク", "shop": "mobile_phone"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/ソフトバンクショップ": {"name": "ソフトバンクショップ", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q11315281"}, "addTags": {"brand": "ソフトバンクショップ", "brand:en": "SoftBankShop", "brand:ja": "ソフトバンクショップ", "brand:wikidata": "Q11315281", "brand:wikipedia": "ja:ソフトバンクショップ", "name": "ソフトバンクショップ", "name:en": "SoftBankShop", "name:ja": "ソフトバンクショップ", "shop": "mobile_phone"}, "removeTags": {"brand": "ソフトバンクショップ", "brand:en": "SoftBankShop", "brand:ja": "ソフトバンクショップ", "brand:wikidata": "Q11315281", "brand:wikipedia": "ja:ソフトバンクショップ", "name": "ソフトバンクショップ", "name:en": "SoftBankShop", "name:ja": "ソフトバンクショップ", "shop": "mobile_phone"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/ドコモショップ": {"name": "ドコモショップ", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/docomo.official/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q853958"}, "addTags": {"brand": "ドコモショップ", "brand:en": "DoCoMo Shop", "brand:ja": "ドコモショップ", "brand:wikidata": "Q853958", "brand:wikipedia": "ja:NTTドコモ", "name": "ドコモショップ", "name:en": "DoCoMo Shop", "name:ja": "ドコモショップ", "shop": "mobile_phone"}, "removeTags": {"brand": "ドコモショップ", "brand:en": "DoCoMo Shop", "brand:ja": "ドコモショップ", "brand:wikidata": "Q853958", "brand:wikipedia": "ja:NTTドコモ", "name": "ドコモショップ", "name:en": "DoCoMo Shop", "name:ja": "ドコモショップ", "shop": "mobile_phone"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/money_lender/Cash Store": {"name": "Cash Store", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"shop": "money_lender", "brand:wikidata": "Q61943411"}, "addTags": {"brand": "Cash Store", "brand:wikidata": "Q61943411", "name": "Cash Store", "shop": "money_lender"}, "removeTags": {"brand": "Cash Store", "brand:wikidata": "Q61943411", "name": "Cash Store", "shop": "money_lender"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/money_lender/Check Into Cash": {"name": "Check Into Cash", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"shop": "money_lender", "brand:wikidata": "Q16961246"}, "addTags": {"brand": "Check Into Cash", "brand:wikidata": "Q16961246", "brand:wikipedia": "en:Check Into Cash", "name": "Check Into Cash", "shop": "money_lender"}, "removeTags": {"brand": "Check Into Cash", "brand:wikidata": "Q16961246", "brand:wikipedia": "en:Check Into Cash", "name": "Check Into Cash", "shop": "money_lender"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/money_lender/Money Mart": {"name": "Money Mart", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMoney%20Mart%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "money_lender", "brand:wikidata": "Q6899166"}, "addTags": {"brand": "Money Mart", "brand:wikidata": "Q6899166", "brand:wikipedia": "en:Money Mart", "name": "Money Mart", "shop": "money_lender"}, "removeTags": {"brand": "Money Mart", "brand:wikidata": "Q6899166", "brand:wikipedia": "en:Money Mart", "name": "Money Mart", "shop": "money_lender"}, "matchScore": 2, "suggestion": true}, @@ -3330,9 +3330,9 @@ "shop/motorcycle/Motortrade": {"name": "Motortrade", "icon": "fas-motorcycle", "imageURL": "https://graph.facebook.com/MotortradePh/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "motorcycle", "brand:wikidata": "Q48803162"}, "addTags": {"brand": "Motortrade", "brand:wikidata": "Q48803162", "brand:wikipedia": "en:Motortrade", "name": "Motortrade", "shop": "motorcycle"}, "removeTags": {"brand": "Motortrade", "brand:wikidata": "Q48803162", "brand:wikipedia": "en:Motortrade", "name": "Motortrade", "shop": "motorcycle"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, "shop/motorcycle/Suzuki": {"name": "Suzuki", "icon": "fas-motorcycle", "imageURL": "https://graph.facebook.com/SuzukiGlobalOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "motorcycle", "brand:wikidata": "Q181642"}, "addTags": {"brand": "Suzuki", "brand:wikidata": "Q181642", "brand:wikipedia": "en:Suzuki", "name": "Suzuki", "shop": "motorcycle"}, "removeTags": {"brand": "Suzuki", "brand:wikidata": "Q181642", "brand:wikipedia": "en:Suzuki", "name": "Suzuki", "shop": "motorcycle"}, "matchScore": 2, "suggestion": true}, "shop/motorcycle/Yamaha": {"name": "Yamaha", "icon": "fas-motorcycle", "imageURL": "https://graph.facebook.com/yamahamotorusa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "motorcycle", "brand:wikidata": "Q158888"}, "addTags": {"brand": "Yamaha", "brand:wikidata": "Q158888", "brand:wikipedia": "en:Yamaha Motor Company", "name": "Yamaha", "shop": "motorcycle"}, "removeTags": {"brand": "Yamaha", "brand:wikidata": "Q158888", "brand:wikipedia": "en:Yamaha Motor Company", "name": "Yamaha", "shop": "motorcycle"}, "matchScore": 2, "suggestion": true}, - "shop/music/HMV": {"name": "HMV", "icon": "maki-music", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHMV%20record.JPG&width=100", "geometry": ["point", "area"], "tags": {"shop": "music", "brand:wikidata": "Q10854572"}, "addTags": {"brand": "HMV", "brand:wikidata": "Q10854572", "brand:wikipedia": "en:HMV", "name": "HMV", "shop": "music"}, "removeTags": {"brand": "HMV", "brand:wikidata": "Q10854572", "brand:wikipedia": "en:HMV", "name": "HMV", "shop": "music"}, "matchScore": 2, "suggestion": true}, - "shop/music/TSUTAYA": {"name": "TSUTAYA", "icon": "maki-music", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCulture%20Convenience%20Club%20(CCC)%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "music", "brand:wikidata": "Q5193457"}, "addTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "music"}, "removeTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "music"}, "matchScore": 2, "suggestion": true}, - "shop/musical_instrument/Guitar Center": {"name": "Guitar Center", "icon": "maki-music", "imageURL": "https://graph.facebook.com/GuitarCenter/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "musical_instrument", "brand:wikidata": "Q3622794"}, "addTags": {"brand": "Guitar Center", "brand:wikidata": "Q3622794", "brand:wikipedia": "en:Guitar Center", "name": "Guitar Center", "shop": "musical_instrument"}, "removeTags": {"brand": "Guitar Center", "brand:wikidata": "Q3622794", "brand:wikipedia": "en:Guitar Center", "name": "Guitar Center", "shop": "musical_instrument"}, "matchScore": 2, "suggestion": true}, + "shop/music/HMV": {"name": "HMV", "icon": "fas-compact-disc", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHMV%20record.JPG&width=100", "geometry": ["point", "area"], "tags": {"shop": "music", "brand:wikidata": "Q10854572"}, "addTags": {"brand": "HMV", "brand:wikidata": "Q10854572", "brand:wikipedia": "en:HMV", "name": "HMV", "shop": "music"}, "removeTags": {"brand": "HMV", "brand:wikidata": "Q10854572", "brand:wikipedia": "en:HMV", "name": "HMV", "shop": "music"}, "matchScore": 2, "suggestion": true}, + "shop/music/TSUTAYA": {"name": "TSUTAYA", "icon": "fas-compact-disc", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCulture%20Convenience%20Club%20(CCC)%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "music", "brand:wikidata": "Q5193457"}, "addTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "music"}, "removeTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "music"}, "matchScore": 2, "suggestion": true}, + "shop/musical_instrument/Guitar Center": {"name": "Guitar Center", "icon": "fas-guitar", "imageURL": "https://graph.facebook.com/GuitarCenter/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "musical_instrument", "brand:wikidata": "Q3622794"}, "addTags": {"brand": "Guitar Center", "brand:wikidata": "Q3622794", "brand:wikipedia": "en:Guitar Center", "name": "Guitar Center", "shop": "musical_instrument"}, "removeTags": {"brand": "Guitar Center", "brand:wikidata": "Q3622794", "brand:wikipedia": "en:Guitar Center", "name": "Guitar Center", "shop": "musical_instrument"}, "matchScore": 2, "suggestion": true}, "shop/newsagent/Kolporter": {"name": "Kolporter", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q6427874"}, "addTags": {"brand": "Kolporter", "brand:wikidata": "Q6427874", "brand:wikipedia": "pl:Kolporter (przedsiębiorstwo)", "name": "Kolporter", "shop": "kiosk"}, "removeTags": {"brand": "Kolporter", "brand:wikidata": "Q6427874", "brand:wikipedia": "pl:Kolporter (przedsiębiorstwo)", "name": "Kolporter", "shop": "kiosk"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "shop/newsagent/Maison de la Presse": {"name": "Maison de la Presse", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Maison-de-la-Presse-La-culture-à-la-page-260230084083052/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q62085960"}, "addTags": {"brand": "Maison de la Presse", "brand:wikidata": "Q62085960", "name": "Maison de la Presse", "shop": "newsagent"}, "removeTags": {"brand": "Maison de la Presse", "brand:wikidata": "Q62085960", "name": "Maison de la Presse", "shop": "newsagent"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/newsagent/k kiosk": {"name": "k kiosk", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q60381703"}, "addTags": {"brand": "k kiosk", "brand:wikidata": "Q60381703", "name": "k kiosk", "shop": "newsagent"}, "removeTags": {"brand": "k kiosk", "brand:wikidata": "Q60381703", "name": "k kiosk", "shop": "newsagent"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, @@ -3454,26 +3454,26 @@ "shop/shoes/Éram": {"name": "Éram", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q16684192"}, "addTags": {"brand": "Éram", "brand:wikidata": "Q16684192", "brand:wikipedia": "fr:Éram", "name": "Éram", "shop": "shoes"}, "removeTags": {"brand": "Éram", "brand:wikidata": "Q16684192", "brand:wikipedia": "fr:Éram", "name": "Éram", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, "shop/shoes/ЦентрОбувь": {"name": "ЦентрОбувь", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q4504072"}, "addTags": {"brand": "ЦентрОбувь", "brand:wikidata": "Q4504072", "brand:wikipedia": "ru:ЦентрОбувь", "name": "ЦентрОбувь", "shop": "shoes"}, "removeTags": {"brand": "ЦентрОбувь", "brand:wikidata": "Q4504072", "brand:wikipedia": "ru:ЦентрОбувь", "name": "ЦентрОбувь", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, "shop/shoes/東京靴流通センター": {"name": "東京靴流通センター", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/chiyodafanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q11318515"}, "addTags": {"brand": "東京靴流通センター", "brand:en": "Tokyo Shoes Retailing Center", "brand:ja": "東京靴流通センター", "brand:wikidata": "Q11318515", "brand:wikipedia": "ja:チヨダ", "name": "東京靴流通センター", "name:en": "Tokyo Shoes Retailing Center", "name:ja": "東京靴流通センター", "shop": "shoes"}, "removeTags": {"brand": "東京靴流通センター", "brand:en": "Tokyo Shoes Retailing Center", "brand:ja": "東京靴流通センター", "brand:wikidata": "Q11318515", "brand:wikipedia": "ja:チヨダ", "name": "東京靴流通センター", "name:en": "Tokyo Shoes Retailing Center", "name:ja": "東京靴流通センター", "shop": "shoes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/sports/Adidas": {"name": "Adidas", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/adidasUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q3895"}, "addTags": {"brand": "Adidas", "brand:wikidata": "Q3895", "brand:wikipedia": "en:Adidas", "name": "Adidas", "shop": "sports"}, "removeTags": {"brand": "Adidas", "brand:wikidata": "Q3895", "brand:wikipedia": "en:Adidas", "name": "Adidas", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Aktiesport": {"name": "Aktiesport", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q57546889"}, "addTags": {"brand": "Aktiesport", "brand:wikidata": "Q57546889", "name": "Aktiesport", "shop": "sports"}, "removeTags": {"brand": "Aktiesport", "brand:wikidata": "Q57546889", "name": "Aktiesport", "shop": "sports"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, - "shop/sports/Big 5 Sporting Goods": {"name": "Big 5 Sporting Goods", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/922575451729440768/nECkGozo_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q4904902"}, "addTags": {"brand": "Big 5 Sporting Goods", "brand:wikidata": "Q4904902", "brand:wikipedia": "en:Big 5 Sporting Goods", "name": "Big 5 Sporting Goods", "shop": "sports"}, "removeTags": {"brand": "Big 5 Sporting Goods", "brand:wikidata": "Q4904902", "brand:wikipedia": "en:Big 5 Sporting Goods", "name": "Big 5 Sporting Goods", "shop": "sports"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/sports/Centauro": {"name": "Centauro", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo-lojas-centauro.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q28679561"}, "addTags": {"brand": "Centauro", "brand:wikidata": "Q28679561", "brand:wikipedia": "pt:Lojas Centauro", "name": "Centauro", "shop": "sports"}, "removeTags": {"brand": "Centauro", "brand:wikidata": "Q28679561", "brand:wikipedia": "pt:Lojas Centauro", "name": "Centauro", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Decathlon": {"name": "Decathlon", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/decathlon/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q509349"}, "addTags": {"brand": "Decathlon", "brand:wikidata": "Q509349", "brand:wikipedia": "en:Decathlon Group", "name": "Decathlon", "shop": "sports"}, "removeTags": {"brand": "Decathlon", "brand:wikidata": "Q509349", "brand:wikipedia": "en:Decathlon Group", "name": "Decathlon", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Dick's Sporting Goods": {"name": "Dick's Sporting Goods", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/984093123964846083/srBT0TEj_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q5272601"}, "addTags": {"brand": "Dick's Sporting Goods", "brand:wikidata": "Q5272601", "brand:wikipedia": "en:Dick's Sporting Goods", "name": "Dick's Sporting Goods", "shop": "sports"}, "removeTags": {"brand": "Dick's Sporting Goods", "brand:wikidata": "Q5272601", "brand:wikipedia": "en:Dick's Sporting Goods", "name": "Dick's Sporting Goods", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Hervis": {"name": "Hervis", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q1614816"}, "addTags": {"brand": "Hervis", "brand:wikidata": "Q1614816", "brand:wikipedia": "de:Hervis", "name": "Hervis", "shop": "sports"}, "removeTags": {"brand": "Hervis", "brand:wikidata": "Q1614816", "brand:wikipedia": "de:Hervis", "name": "Hervis", "shop": "sports"}, "countryCodes": ["at", "cz", "de", "hr", "hu", "ro", "si"], "matchScore": 2, "suggestion": true}, - "shop/sports/Hibbett Sports": {"name": "Hibbett Sports", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q5750671"}, "addTags": {"brand": "Hibbett Sports", "brand:wikidata": "Q5750671", "brand:wikipedia": "en:Hibbett Sports", "name": "Hibbett Sports", "shop": "sports"}, "removeTags": {"brand": "Hibbett Sports", "brand:wikidata": "Q5750671", "brand:wikipedia": "en:Hibbett Sports", "name": "Hibbett Sports", "shop": "sports"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/sports/Intersport": {"name": "Intersport", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q666888"}, "addTags": {"brand": "Intersport", "brand:wikidata": "Q666888", "brand:wikipedia": "en:Intersport", "name": "Intersport", "shop": "sports"}, "removeTags": {"brand": "Intersport", "brand:wikidata": "Q666888", "brand:wikipedia": "en:Intersport", "name": "Intersport", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/JD Sports": {"name": "JD Sports", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/501662442229755905/symF-ozG_bigger.jpeg", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q6108019"}, "addTags": {"brand": "JD Sports", "brand:wikidata": "Q6108019", "brand:wikipedia": "en:JD Sports", "name": "JD Sports", "shop": "sports"}, "removeTags": {"brand": "JD Sports", "brand:wikidata": "Q6108019", "brand:wikipedia": "en:JD Sports", "name": "JD Sports", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Marathon Sports": {"name": "Marathon Sports", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q3027516"}, "addTags": {"brand": "Marathon Sports", "brand:wikidata": "Q3027516", "brand:wikipedia": "es:Marathon Sports", "name": "Marathon Sports", "shop": "sports"}, "removeTags": {"brand": "Marathon Sports", "brand:wikidata": "Q3027516", "brand:wikipedia": "es:Marathon Sports", "name": "Marathon Sports", "shop": "sports"}, "countryCodes": ["bo", "ec", "pe"], "matchScore": 2, "suggestion": true}, - "shop/sports/Martes Sport": {"name": "Martes Sport", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/sklepmartes/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q62073490"}, "addTags": {"brand": "Martes Sport", "brand:wikidata": "Q62073490", "name": "Martes Sport", "shop": "sports"}, "removeTags": {"brand": "Martes Sport", "brand:wikidata": "Q62073490", "name": "Martes Sport", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Modell’s Sporting Goods": {"name": "Modell’s Sporting Goods", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q3317844"}, "addTags": {"brand": "Modell’s Sporting Goods", "brand:wikidata": "Q3317844", "brand:wikipedia": "en:Modell's Sporting Goods", "name": "Modell’s Sporting Goods", "shop": "sports"}, "removeTags": {"brand": "Modell’s Sporting Goods", "brand:wikidata": "Q3317844", "brand:wikipedia": "en:Modell's Sporting Goods", "name": "Modell’s Sporting Goods", "shop": "sports"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/sports/Play It Again Sports": {"name": "Play It Again Sports", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q7203029"}, "addTags": {"brand": "Play It Again Sports", "brand:wikidata": "Q7203029", "brand:wikipedia": "en:Play It Again Sports", "name": "Play It Again Sports", "shop": "sports"}, "removeTags": {"brand": "Play It Again Sports", "brand:wikidata": "Q7203029", "brand:wikipedia": "en:Play It Again Sports", "name": "Play It Again Sports", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Sport 2000": {"name": "Sport 2000", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20SDM.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q262394"}, "addTags": {"brand": "Sport 2000", "brand:wikidata": "Q262394", "brand:wikipedia": "de:Sport 2000", "name": "Sport 2000", "shop": "sports"}, "removeTags": {"brand": "Sport 2000", "brand:wikidata": "Q262394", "brand:wikipedia": "de:Sport 2000", "name": "Sport 2000", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Sportisimo": {"name": "Sportisimo", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q54974273"}, "addTags": {"brand": "Sportisimo", "brand:wikidata": "Q54974273", "name": "Sportisimo", "shop": "sports"}, "removeTags": {"brand": "Sportisimo", "brand:wikidata": "Q54974273", "name": "Sportisimo", "shop": "sports"}, "countryCodes": ["cz", "sk"], "matchScore": 2, "suggestion": true}, - "shop/sports/Sports Authority": {"name": "Sports Authority", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSports%20Authority%20logo2011.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q7579688"}, "addTags": {"brand": "Sports Authority", "brand:wikidata": "Q7579688", "brand:wikipedia": "en:Sports Authority", "name": "Sports Authority", "shop": "sports"}, "removeTags": {"brand": "Sports Authority", "brand:wikidata": "Q7579688", "brand:wikipedia": "en:Sports Authority", "name": "Sports Authority", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Sports Direct": {"name": "Sports Direct", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1093476002901168128/0JeA5eGF_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q2913554"}, "addTags": {"brand": "Sports Direct", "brand:wikidata": "Q2913554", "brand:wikipedia": "en:Sports Direct", "name": "Sports Direct", "shop": "sports"}, "removeTags": {"brand": "Sports Direct", "brand:wikidata": "Q2913554", "brand:wikipedia": "en:Sports Direct", "name": "Sports Direct", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Спортмастер": {"name": "Спортмастер", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSportmaster.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q4438176"}, "addTags": {"brand": "Спортмастер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер", "shop": "sports"}, "removeTags": {"brand": "Спортмастер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Спортмастер Гипер": {"name": "Спортмастер Гипер", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSportmaster.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q4438176"}, "addTags": {"brand": "Спортмастер Гипер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер Гипер", "shop": "sports"}, "removeTags": {"brand": "Спортмастер Гипер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер Гипер", "shop": "sports"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/sports/Adidas": {"name": "Adidas", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/adidasUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q3895"}, "addTags": {"brand": "Adidas", "brand:wikidata": "Q3895", "brand:wikipedia": "en:Adidas", "name": "Adidas", "shop": "sports"}, "removeTags": {"brand": "Adidas", "brand:wikidata": "Q3895", "brand:wikipedia": "en:Adidas", "name": "Adidas", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Aktiesport": {"name": "Aktiesport", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q57546889"}, "addTags": {"brand": "Aktiesport", "brand:wikidata": "Q57546889", "name": "Aktiesport", "shop": "sports"}, "removeTags": {"brand": "Aktiesport", "brand:wikidata": "Q57546889", "name": "Aktiesport", "shop": "sports"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, + "shop/sports/Big 5 Sporting Goods": {"name": "Big 5 Sporting Goods", "icon": "fas-futbol", "imageURL": "https://pbs.twimg.com/profile_images/922575451729440768/nECkGozo_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q4904902"}, "addTags": {"brand": "Big 5 Sporting Goods", "brand:wikidata": "Q4904902", "brand:wikipedia": "en:Big 5 Sporting Goods", "name": "Big 5 Sporting Goods", "shop": "sports"}, "removeTags": {"brand": "Big 5 Sporting Goods", "brand:wikidata": "Q4904902", "brand:wikipedia": "en:Big 5 Sporting Goods", "name": "Big 5 Sporting Goods", "shop": "sports"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/sports/Centauro": {"name": "Centauro", "icon": "fas-futbol", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo-lojas-centauro.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q28679561"}, "addTags": {"brand": "Centauro", "brand:wikidata": "Q28679561", "brand:wikipedia": "pt:Lojas Centauro", "name": "Centauro", "shop": "sports"}, "removeTags": {"brand": "Centauro", "brand:wikidata": "Q28679561", "brand:wikipedia": "pt:Lojas Centauro", "name": "Centauro", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Decathlon": {"name": "Decathlon", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/decathlon/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q509349"}, "addTags": {"brand": "Decathlon", "brand:wikidata": "Q509349", "brand:wikipedia": "en:Decathlon Group", "name": "Decathlon", "shop": "sports"}, "removeTags": {"brand": "Decathlon", "brand:wikidata": "Q509349", "brand:wikipedia": "en:Decathlon Group", "name": "Decathlon", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Dick's Sporting Goods": {"name": "Dick's Sporting Goods", "icon": "fas-futbol", "imageURL": "https://pbs.twimg.com/profile_images/984093123964846083/srBT0TEj_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q5272601"}, "addTags": {"brand": "Dick's Sporting Goods", "brand:wikidata": "Q5272601", "brand:wikipedia": "en:Dick's Sporting Goods", "name": "Dick's Sporting Goods", "shop": "sports"}, "removeTags": {"brand": "Dick's Sporting Goods", "brand:wikidata": "Q5272601", "brand:wikipedia": "en:Dick's Sporting Goods", "name": "Dick's Sporting Goods", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Hervis": {"name": "Hervis", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q1614816"}, "addTags": {"brand": "Hervis", "brand:wikidata": "Q1614816", "brand:wikipedia": "de:Hervis", "name": "Hervis", "shop": "sports"}, "removeTags": {"brand": "Hervis", "brand:wikidata": "Q1614816", "brand:wikipedia": "de:Hervis", "name": "Hervis", "shop": "sports"}, "countryCodes": ["at", "cz", "de", "hr", "hu", "ro", "si"], "matchScore": 2, "suggestion": true}, + "shop/sports/Hibbett Sports": {"name": "Hibbett Sports", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q5750671"}, "addTags": {"brand": "Hibbett Sports", "brand:wikidata": "Q5750671", "brand:wikipedia": "en:Hibbett Sports", "name": "Hibbett Sports", "shop": "sports"}, "removeTags": {"brand": "Hibbett Sports", "brand:wikidata": "Q5750671", "brand:wikipedia": "en:Hibbett Sports", "name": "Hibbett Sports", "shop": "sports"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/sports/Intersport": {"name": "Intersport", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q666888"}, "addTags": {"brand": "Intersport", "brand:wikidata": "Q666888", "brand:wikipedia": "en:Intersport", "name": "Intersport", "shop": "sports"}, "removeTags": {"brand": "Intersport", "brand:wikidata": "Q666888", "brand:wikipedia": "en:Intersport", "name": "Intersport", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/JD Sports": {"name": "JD Sports", "icon": "fas-futbol", "imageURL": "https://pbs.twimg.com/profile_images/501662442229755905/symF-ozG_bigger.jpeg", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q6108019"}, "addTags": {"brand": "JD Sports", "brand:wikidata": "Q6108019", "brand:wikipedia": "en:JD Sports", "name": "JD Sports", "shop": "sports"}, "removeTags": {"brand": "JD Sports", "brand:wikidata": "Q6108019", "brand:wikipedia": "en:JD Sports", "name": "JD Sports", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Marathon Sports": {"name": "Marathon Sports", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q3027516"}, "addTags": {"brand": "Marathon Sports", "brand:wikidata": "Q3027516", "brand:wikipedia": "es:Marathon Sports", "name": "Marathon Sports", "shop": "sports"}, "removeTags": {"brand": "Marathon Sports", "brand:wikidata": "Q3027516", "brand:wikipedia": "es:Marathon Sports", "name": "Marathon Sports", "shop": "sports"}, "countryCodes": ["bo", "ec", "pe"], "matchScore": 2, "suggestion": true}, + "shop/sports/Martes Sport": {"name": "Martes Sport", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/sklepmartes/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q62073490"}, "addTags": {"brand": "Martes Sport", "brand:wikidata": "Q62073490", "name": "Martes Sport", "shop": "sports"}, "removeTags": {"brand": "Martes Sport", "brand:wikidata": "Q62073490", "name": "Martes Sport", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Modell’s Sporting Goods": {"name": "Modell’s Sporting Goods", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q3317844"}, "addTags": {"brand": "Modell’s Sporting Goods", "brand:wikidata": "Q3317844", "brand:wikipedia": "en:Modell's Sporting Goods", "name": "Modell’s Sporting Goods", "shop": "sports"}, "removeTags": {"brand": "Modell’s Sporting Goods", "brand:wikidata": "Q3317844", "brand:wikipedia": "en:Modell's Sporting Goods", "name": "Modell’s Sporting Goods", "shop": "sports"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/sports/Play It Again Sports": {"name": "Play It Again Sports", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q7203029"}, "addTags": {"brand": "Play It Again Sports", "brand:wikidata": "Q7203029", "brand:wikipedia": "en:Play It Again Sports", "name": "Play It Again Sports", "shop": "sports"}, "removeTags": {"brand": "Play It Again Sports", "brand:wikidata": "Q7203029", "brand:wikipedia": "en:Play It Again Sports", "name": "Play It Again Sports", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Sport 2000": {"name": "Sport 2000", "icon": "fas-futbol", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20SDM.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q262394"}, "addTags": {"brand": "Sport 2000", "brand:wikidata": "Q262394", "brand:wikipedia": "de:Sport 2000", "name": "Sport 2000", "shop": "sports"}, "removeTags": {"brand": "Sport 2000", "brand:wikidata": "Q262394", "brand:wikipedia": "de:Sport 2000", "name": "Sport 2000", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Sportisimo": {"name": "Sportisimo", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q54974273"}, "addTags": {"brand": "Sportisimo", "brand:wikidata": "Q54974273", "name": "Sportisimo", "shop": "sports"}, "removeTags": {"brand": "Sportisimo", "brand:wikidata": "Q54974273", "name": "Sportisimo", "shop": "sports"}, "countryCodes": ["cz", "sk"], "matchScore": 2, "suggestion": true}, + "shop/sports/Sports Authority": {"name": "Sports Authority", "icon": "fas-futbol", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSports%20Authority%20logo2011.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q7579688"}, "addTags": {"brand": "Sports Authority", "brand:wikidata": "Q7579688", "brand:wikipedia": "en:Sports Authority", "name": "Sports Authority", "shop": "sports"}, "removeTags": {"brand": "Sports Authority", "brand:wikidata": "Q7579688", "brand:wikipedia": "en:Sports Authority", "name": "Sports Authority", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Sports Direct": {"name": "Sports Direct", "icon": "fas-futbol", "imageURL": "https://pbs.twimg.com/profile_images/1093476002901168128/0JeA5eGF_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q2913554"}, "addTags": {"brand": "Sports Direct", "brand:wikidata": "Q2913554", "brand:wikipedia": "en:Sports Direct", "name": "Sports Direct", "shop": "sports"}, "removeTags": {"brand": "Sports Direct", "brand:wikidata": "Q2913554", "brand:wikipedia": "en:Sports Direct", "name": "Sports Direct", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Спортмастер": {"name": "Спортмастер", "icon": "fas-futbol", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSportmaster.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q4438176"}, "addTags": {"brand": "Спортмастер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер", "shop": "sports"}, "removeTags": {"brand": "Спортмастер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Спортмастер Гипер": {"name": "Спортмастер Гипер", "icon": "fas-futbol", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSportmaster.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q4438176"}, "addTags": {"brand": "Спортмастер Гипер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер Гипер", "shop": "sports"}, "removeTags": {"brand": "Спортмастер Гипер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер Гипер", "shop": "sports"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/stationery/Bureau Vallée": {"name": "Bureau Vallée", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q18385014"}, "addTags": {"brand": "Bureau Vallée", "brand:wikidata": "Q18385014", "brand:wikipedia": "fr:Bureau Vallée", "name": "Bureau Vallée", "shop": "stationery"}, "removeTags": {"brand": "Bureau Vallée", "brand:wikidata": "Q18385014", "brand:wikipedia": "fr:Bureau Vallée", "name": "Bureau Vallée", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, "shop/stationery/McPaper": {"name": "McPaper", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q1915329"}, "addTags": {"brand": "McPaper", "brand:wikidata": "Q1915329", "brand:wikipedia": "de:McPaper", "name": "McPaper", "shop": "stationery"}, "removeTags": {"brand": "McPaper", "brand:wikidata": "Q1915329", "brand:wikipedia": "de:McPaper", "name": "McPaper", "shop": "stationery"}, "countryCodes": ["ch", "de"], "matchScore": 2, "suggestion": true}, "shop/stationery/Office Depot": {"name": "Office Depot", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1018152775564320768/kH7WpGKV_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q1337797"}, "addTags": {"brand": "Office Depot", "brand:wikidata": "Q1337797", "brand:wikipedia": "en:Office Depot", "name": "Office Depot", "shop": "stationery"}, "removeTags": {"brand": "Office Depot", "brand:wikidata": "Q1337797", "brand:wikipedia": "en:Office Depot", "name": "Office Depot", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, diff --git a/data/presets/presets/aerialway/cable_car.json b/data/presets/presets/aerialway/cable_car.json index a64136a89..41aaeb8dd 100644 --- a/data/presets/presets/aerialway/cable_car.json +++ b/data/presets/presets/aerialway/cable_car.json @@ -1,4 +1,5 @@ { + "icon": "fas-tram", "geometry": [ "line" ], diff --git a/data/presets/presets/aerialway/gondola.json b/data/presets/presets/aerialway/gondola.json index 9f354f5fd..bb4625342 100644 --- a/data/presets/presets/aerialway/gondola.json +++ b/data/presets/presets/aerialway/gondola.json @@ -1,4 +1,5 @@ { + "icon": "maki-aerialway", "geometry": [ "line" ], diff --git a/data/presets/presets/amenity/childcare.json b/data/presets/presets/amenity/childcare.json index dd67cf4d5..da2176aec 100644 --- a/data/presets/presets/amenity/childcare.json +++ b/data/presets/presets/amenity/childcare.json @@ -1,5 +1,5 @@ { - "icon": "maki-school", + "icon": "fas-child", "fields": [ "name", "operator", diff --git a/data/presets/presets/amenity/courthouse.json b/data/presets/presets/amenity/courthouse.json index ca19728af..1d6c6592f 100644 --- a/data/presets/presets/amenity/courthouse.json +++ b/data/presets/presets/amenity/courthouse.json @@ -1,5 +1,5 @@ { - "icon": "temaki-courthouse", + "icon": "fas-gavel", "fields": [ "name", "operator", diff --git a/data/presets/presets/amenity/photo_booth.json b/data/presets/presets/amenity/photo_booth.json index c4244e0b3..4acd75d07 100644 --- a/data/presets/presets/amenity/photo_booth.json +++ b/data/presets/presets/amenity/photo_booth.json @@ -1,5 +1,5 @@ { - "icon": "maki-attraction", + "icon": "fas-person-booth", "fields": [ "name", "operator", diff --git a/data/presets/presets/amenity/waste_disposal.json b/data/presets/presets/amenity/waste_disposal.json index fc13fffee..ad49633e6 100644 --- a/data/presets/presets/amenity/waste_disposal.json +++ b/data/presets/presets/amenity/waste_disposal.json @@ -1,5 +1,5 @@ { - "icon": "maki-waste-basket", + "icon": "fas-dumpster", "fields": [ "operator", "collection_times" diff --git a/data/presets/presets/craft/photographic_laboratory.json b/data/presets/presets/craft/photographic_laboratory.json index a3f8db168..c369d3ff8 100644 --- a/data/presets/presets/craft/photographic_laboratory.json +++ b/data/presets/presets/craft/photographic_laboratory.json @@ -1,5 +1,5 @@ { - "icon": "maki-attraction", + "icon": "fas-camera-retro", "geometry": [ "point", "area" diff --git a/data/presets/presets/healthcare/birthing_center.json b/data/presets/presets/healthcare/birthing_center.json index 4da5d5df3..b6687eea2 100644 --- a/data/presets/presets/healthcare/birthing_center.json +++ b/data/presets/presets/healthcare/birthing_center.json @@ -1,5 +1,5 @@ { - "icon": "maki-hospital", + "icon": "fas-baby", "geometry": [ "point", "area" diff --git a/data/presets/presets/healthcare/laboratory.json b/data/presets/presets/healthcare/laboratory.json index 1baa77760..48b4821f6 100644 --- a/data/presets/presets/healthcare/laboratory.json +++ b/data/presets/presets/healthcare/laboratory.json @@ -1,5 +1,5 @@ { - "icon": "maki-hospital", + "icon": "fas-vial", "fields": [ "name", "operator", diff --git a/data/presets/presets/healthcare/speech_therapist.json b/data/presets/presets/healthcare/speech_therapist.json index cb690ae9f..dfcb75e67 100644 --- a/data/presets/presets/healthcare/speech_therapist.json +++ b/data/presets/presets/healthcare/speech_therapist.json @@ -1,5 +1,5 @@ { - "icon": "maki-hospital", + "icon": "fas-comment", "geometry": [ "point", "area" diff --git a/data/presets/presets/leisure/hackerspace.json b/data/presets/presets/leisure/hackerspace.json index b84f750da..2e5195b1a 100644 --- a/data/presets/presets/leisure/hackerspace.json +++ b/data/presets/presets/leisure/hackerspace.json @@ -1,5 +1,5 @@ { - "icon": "maki-commercial", + "icon": "fas-code", "fields": [ "name", "address", diff --git a/data/presets/presets/office/architect.json b/data/presets/presets/office/architect.json index b0e2d0417..760a3f1ca 100644 --- a/data/presets/presets/office/architect.json +++ b/data/presets/presets/office/architect.json @@ -1,5 +1,5 @@ { - "icon": "maki-suitcase", + "icon": "fas-drafting-compass", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/baby_goods.json b/data/presets/presets/shop/baby_goods.json index abc041ddd..7b5a076e4 100644 --- a/data/presets/presets/shop/baby_goods.json +++ b/data/presets/presets/shop/baby_goods.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-baby-carriage", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/bathroom_furnishing.json b/data/presets/presets/shop/bathroom_furnishing.json index d089ca442..4b332b8a8 100644 --- a/data/presets/presets/shop/bathroom_furnishing.json +++ b/data/presets/presets/shop/bathroom_furnishing.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-bath", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/car_parts.json b/data/presets/presets/shop/car_parts.json index 57267b3c3..ad372260d 100644 --- a/data/presets/presets/shop/car_parts.json +++ b/data/presets/presets/shop/car_parts.json @@ -1,5 +1,5 @@ { - "icon": "maki-car", + "icon": "fas-car-battery", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/computer.json b/data/presets/presets/shop/computer.json index 95f7bb09b..ede822819 100644 --- a/data/presets/presets/shop/computer.json +++ b/data/presets/presets/shop/computer.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-laptop", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/convenience.json b/data/presets/presets/shop/convenience.json index a5d246057..efe798207 100644 --- a/data/presets/presets/shop/convenience.json +++ b/data/presets/presets/shop/convenience.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-shopping-basket", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/craft.json b/data/presets/presets/shop/craft.json index 818508b94..7225201c9 100644 --- a/data/presets/presets/shop/craft.json +++ b/data/presets/presets/shop/craft.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-palette", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/electronics.json b/data/presets/presets/shop/electronics.json index 2576cf802..06813e10c 100644 --- a/data/presets/presets/shop/electronics.json +++ b/data/presets/presets/shop/electronics.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-plug", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/frame.json b/data/presets/presets/shop/frame.json index b8f752290..50f5948f5 100644 --- a/data/presets/presets/shop/frame.json +++ b/data/presets/presets/shop/frame.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-vector-square", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/herbalist.json b/data/presets/presets/shop/herbalist.json index 6a0d4acb8..49f1b0407 100644 --- a/data/presets/presets/shop/herbalist.json +++ b/data/presets/presets/shop/herbalist.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-leaf", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/mobile_phone.json b/data/presets/presets/shop/mobile_phone.json index fd1ee7723..27c4dd5dc 100644 --- a/data/presets/presets/shop/mobile_phone.json +++ b/data/presets/presets/shop/mobile_phone.json @@ -1,5 +1,5 @@ { - "icon": "maki-mobile-phone", + "icon": "fas-mobile-alt", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/music.json b/data/presets/presets/shop/music.json index 82090062d..0a8b57eb9 100644 --- a/data/presets/presets/shop/music.json +++ b/data/presets/presets/shop/music.json @@ -1,5 +1,5 @@ { - "icon": "maki-music", + "icon": "fas-compact-disc", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/musical_instrument.json b/data/presets/presets/shop/musical_instrument.json index b0d40192d..4d99fed34 100644 --- a/data/presets/presets/shop/musical_instrument.json +++ b/data/presets/presets/shop/musical_instrument.json @@ -1,5 +1,5 @@ { - "icon": "maki-music", + "icon": "fas-guitar", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/sports.json b/data/presets/presets/shop/sports.json index b48052ce5..6b6d9a059 100644 --- a/data/presets/presets/shop/sports.json +++ b/data/presets/presets/shop/sports.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-futbol", "fields": [ "name", "operator", diff --git a/data/taginfo.json b/data/taginfo.json index 050c79ed5..752e58095 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -26,10 +26,10 @@ {"key": "advertising", "value": "billboard", "description": "🄿 Billboard", "object_types": ["node", "way"]}, {"key": "advertising", "value": "column", "description": "🄿 Advertising Column", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"}, {"key": "aerialway", "value": "station", "description": "🄿 Aerialway Station (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/aerialway-15.svg?sanitize=true"}, - {"key": "aerialway", "value": "cable_car", "description": "🄿 Cable Car", "object_types": ["way"]}, + {"key": "aerialway", "value": "cable_car", "description": "🄿 Cable Car", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-tram.svg?sanitize=true"}, {"key": "aerialway", "value": "chair_lift", "description": "🄿 Chair Lift", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/chairlift.svg?sanitize=true"}, {"key": "aerialway", "value": "drag_lift", "description": "🄿 Drag Lift", "object_types": ["way"]}, - {"key": "aerialway", "value": "gondola", "description": "🄿 Gondola", "object_types": ["way"]}, + {"key": "aerialway", "value": "gondola", "description": "🄿 Gondola", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/aerialway-15.svg?sanitize=true"}, {"key": "aerialway", "value": "goods", "description": "🄿 Goods Aerialway", "object_types": ["way"]}, {"key": "aerialway", "value": "magic_carpet", "description": "🄿 Magic Carpet Lift", "object_types": ["way"]}, {"key": "aerialway", "value": "mixed_lift", "description": "🄿 Mixed Lift", "object_types": ["way"]}, @@ -79,7 +79,7 @@ {"key": "amenity", "value": "car_wash", "description": "🄿 Car Wash", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/car_wash.svg?sanitize=true"}, {"key": "amenity", "value": "casino", "description": "🄿 Casino", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/casino-15.svg?sanitize=true"}, {"key": "amenity", "value": "charging_station", "description": "🄿 Charging Station", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-charging-station.svg?sanitize=true"}, - {"key": "amenity", "value": "childcare", "description": "🄿 Nursery/Childcare", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/school-15.svg?sanitize=true"}, + {"key": "amenity", "value": "childcare", "description": "🄿 Nursery/Childcare", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-child.svg?sanitize=true"}, {"key": "amenity", "value": "cinema", "description": "🄿 Cinema", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cinema-15.svg?sanitize=true"}, {"key": "amenity", "value": "clinic", "description": "🄿 Clinic", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/doctor-15.svg?sanitize=true"}, {"key": "healthcare:speciality", "value": "abortion", "description": "🄿 Abortion Clinic", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, @@ -89,7 +89,7 @@ {"key": "amenity", "value": "college", "description": "🄿 College Grounds", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/college-15.svg?sanitize=true"}, {"key": "amenity", "value": "community_centre", "description": "🄿 Community Center", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"}, {"key": "amenity", "value": "compressed_air", "description": "🄿 Compressed Air", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"}, - {"key": "amenity", "value": "courthouse", "description": "🄿 Courthouse", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/courthouse.svg?sanitize=true"}, + {"key": "amenity", "value": "courthouse", "description": "🄿 Courthouse", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-gavel.svg?sanitize=true"}, {"key": "amenity", "value": "crematorium", "description": "🄿 Crematorium", "object_types": ["area", "node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cemetery-15.svg?sanitize=true"}, {"key": "amenity", "value": "dentist", "description": "🄿 Dentist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dentist-15.svg?sanitize=true"}, {"key": "amenity", "value": "dive_centre", "description": "🄿 Dive Center", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"}, @@ -132,7 +132,7 @@ {"key": "amenity", "value": "payment_centre", "description": "🄿 Payment Center", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"}, {"key": "amenity", "value": "payment_terminal", "description": "🄿 Payment Terminal", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"}, {"key": "amenity", "value": "pharmacy", "description": "🄿 Pharmacy Counter", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pharmacy-15.svg?sanitize=true"}, - {"key": "amenity", "value": "photo_booth", "description": "🄿 Photo Booth", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"}, + {"key": "amenity", "value": "photo_booth", "description": "🄿 Photo Booth", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-person-booth.svg?sanitize=true"}, {"key": "amenity", "value": "place_of_worship", "description": "🄿 Place of Worship", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"}, {"key": "religion", "value": "buddhist", "description": "🄿 Buddhist Temple", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/religious-buddhist-15.svg?sanitize=true"}, {"key": "religion", "value": "christian", "description": "🄿 Christian Church", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/religious-christian-15.svg?sanitize=true"}, @@ -217,7 +217,7 @@ {"key": "vending", "value": "sweets", "description": "🄿 Snack Vending Machine", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"}, {"key": "amenity", "value": "veterinary", "description": "🄿 Veterinary", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/veterinary_care.svg?sanitize=true"}, {"key": "amenity", "value": "waste_basket", "description": "🄿 Waste Basket", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/waste-basket-15.svg?sanitize=true"}, - {"key": "amenity", "value": "waste_disposal", "description": "🄿 Garbage Dumpster", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/waste-basket-15.svg?sanitize=true"}, + {"key": "amenity", "value": "waste_disposal", "description": "🄿 Garbage Dumpster", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-dumpster.svg?sanitize=true"}, {"key": "amenity", "value": "waste_transfer_station", "description": "🄿 Waste Transfer Station", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/waste-basket-15.svg?sanitize=true"}, {"key": "waste", "value": "dog_excrement", "description": "🄿 Dog Excrement Bin", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/waste-basket-15.svg?sanitize=true"}, {"key": "amenity", "value": "water_point", "description": "🄿 RV Drinking Water", "object_types": ["area", "node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/drinking-water-15.svg?sanitize=true"}, @@ -350,7 +350,7 @@ {"key": "craft", "value": "metal_construction", "description": "🄿 Metal Construction", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"}, {"key": "craft", "value": "painter", "description": "🄿 Painter", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-paint-roller.svg?sanitize=true"}, {"key": "craft", "value": "photographer", "description": "🄿 Photographer", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"}, - {"key": "craft", "value": "photographic_laboratory", "description": "🄿 Photographic Laboratory", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"}, + {"key": "craft", "value": "photographic_laboratory", "description": "🄿 Photographic Laboratory", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-camera-retro.svg?sanitize=true"}, {"key": "craft", "value": "plasterer", "description": "🄿 Plasterer", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"}, {"key": "craft", "value": "plumber", "description": "🄿 Plumber", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/plumber.svg?sanitize=true"}, {"key": "craft", "value": "pottery", "description": "🄿 Pottery", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"}, @@ -399,10 +399,10 @@ {"key": "healthcare", "value": "alternative", "description": "🄿 Alternative Medicine", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, {"key": "healthcare:speciality", "value": "chiropractic", "description": "🄿 Chiropractor", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, {"key": "healthcare", "value": "audiologist", "description": "🄿 Audiologist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, - {"key": "healthcare", "value": "birthing_center", "description": "🄿 Birthing Center", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, + {"key": "healthcare", "value": "birthing_center", "description": "🄿 Birthing Center", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-baby.svg?sanitize=true"}, {"key": "healthcare", "value": "blood_donation", "description": "🄿 Blood Donor Center", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/blood-bank-15.svg?sanitize=true"}, {"key": "healthcare", "value": "hospice", "description": "🄿 Hospice", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, - {"key": "healthcare", "value": "laboratory", "description": "🄿 Medical Laboratory", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, + {"key": "healthcare", "value": "laboratory", "description": "🄿 Medical Laboratory", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-vial.svg?sanitize=true"}, {"key": "healthcare", "value": "midwife", "description": "🄿 Midwife", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, {"key": "healthcare", "value": "occupational_therapist", "description": "🄿 Occupational Therapist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, {"key": "healthcare", "value": "optometrist", "description": "🄿 Optometrist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, @@ -410,7 +410,7 @@ {"key": "healthcare", "value": "podiatrist", "description": "🄿 Podiatrist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, {"key": "healthcare", "value": "psychotherapist", "description": "🄿 Psychotherapist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, {"key": "healthcare", "value": "rehabilitation", "description": "🄿 Rehabilitation Facility", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, - {"key": "healthcare", "value": "speech_therapist", "description": "🄿 Speech Therapist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, + {"key": "healthcare", "value": "speech_therapist", "description": "🄿 Speech Therapist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-comment.svg?sanitize=true"}, {"key": "highway", "value": "bus_stop", "description": "🄿 Bus Stop (unsearchable)", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bus-15.svg?sanitize=true"}, {"key": "highway", "value": "bridleway", "description": "🄿 Bridle Path", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/horse-riding-15.svg?sanitize=true"}, {"key": "highway", "value": "bus_guideway", "description": "🄿 Bus Guideway", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bus-15.svg?sanitize=true"}, @@ -563,7 +563,7 @@ {"key": "fitness_station", "value": "stairs", "description": "🄿 Exercise Stairs", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"}, {"key": "leisure", "value": "garden", "description": "🄿 Garden", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-15.svg?sanitize=true"}, {"key": "leisure", "value": "golf_course", "description": "🄿 Golf Course", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"}, - {"key": "leisure", "value": "hackerspace", "description": "🄿 Hackerspace", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/commercial-15.svg?sanitize=true"}, + {"key": "leisure", "value": "hackerspace", "description": "🄿 Hackerspace", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-code.svg?sanitize=true"}, {"key": "leisure", "value": "horse_riding", "description": "🄿 Horseback Riding Facility, 🄵 Horseback Riding", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/horse-riding-15.svg?sanitize=true"}, {"key": "leisure", "value": "ice_rink", "description": "🄿 Ice Rink", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-skating.svg?sanitize=true"}, {"key": "leisure", "value": "marina", "description": "🄿 Marina", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/harbor-15.svg?sanitize=true"}, @@ -693,7 +693,7 @@ {"key": "office", "value": "accountant", "description": "🄿 Accountant Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/accounting.svg?sanitize=true"}, {"key": "office", "value": "adoption_agency", "description": "🄿 Adoption Agency", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, {"key": "office", "value": "advertising_agency", "description": "🄿 Advertising Agency", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, - {"key": "office", "value": "architect", "description": "🄿 Architect Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, + {"key": "office", "value": "architect", "description": "🄿 Architect Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-drafting-compass.svg?sanitize=true"}, {"key": "office", "value": "association", "description": "🄿 Nonprofit Organization Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, {"key": "office", "value": "charity", "description": "🄿 Charity Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, {"key": "office", "value": "company", "description": "🄿 Corporate Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, @@ -839,10 +839,10 @@ {"key": "shop", "value": "antiques", "description": "🄿 Antiques Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "appliance", "description": "🄿 Appliance Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "art", "description": "🄿 Art Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, - {"key": "shop", "value": "baby_goods", "description": "🄿 Baby Goods Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "baby_goods", "description": "🄿 Baby Goods Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-baby-carriage.svg?sanitize=true"}, {"key": "shop", "value": "bag", "description": "🄿 Bag/Luggage Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "bakery", "description": "🄿 Bakery", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bakery-15.svg?sanitize=true"}, - {"key": "shop", "value": "bathroom_furnishing", "description": "🄿 Bathroom Furnishing Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "bathroom_furnishing", "description": "🄿 Bathroom Furnishing Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-bath.svg?sanitize=true"}, {"key": "shop", "value": "beauty", "description": "🄿 Beauty Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "beauty", "value": "nails", "description": "🄿 Nail Salon", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "beauty", "value": "tanning", "description": "🄿 Tanning Salon", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, @@ -853,7 +853,7 @@ {"key": "shop", "value": "books", "description": "🄿 Book Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "butcher", "description": "🄿 Butcher", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-bacon.svg?sanitize=true"}, {"key": "shop", "value": "candles", "description": "🄿 Candle Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, - {"key": "shop", "value": "car_parts", "description": "🄿 Car Parts Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"}, + {"key": "shop", "value": "car_parts", "description": "🄿 Car Parts Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-car-battery.svg?sanitize=true"}, {"key": "shop", "value": "car_repair", "description": "🄿 Car Repair Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-repair-15.svg?sanitize=true"}, {"key": "shop", "value": "car", "description": "🄿 Car Dealership", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"}, {"key": "shop", "value": "caravan", "description": "🄿 RV Dealership", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/rv_park.svg?sanitize=true"}, @@ -866,13 +866,13 @@ {"key": "shop", "value": "clothes", "description": "🄿 Clothing Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/clothing-store-15.svg?sanitize=true"}, {"key": "clothes", "value": "underwear", "description": "🄿 Underwear Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/clothing-store-15.svg?sanitize=true"}, {"key": "shop", "value": "coffee", "description": "🄿 Coffee Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, - {"key": "shop", "value": "computer", "description": "🄿 Computer Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "computer", "description": "🄿 Computer Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-laptop.svg?sanitize=true"}, {"key": "shop", "value": "confectionery", "description": "🄿 Candy Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/confectionery-15.svg?sanitize=true"}, - {"key": "shop", "value": "convenience", "description": "🄿 Convenience Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "convenience", "description": "🄿 Convenience Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-shopping-basket.svg?sanitize=true"}, {"key": "shop", "value": "copyshop", "description": "🄿 Copy Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-print.svg?sanitize=true"}, {"key": "shop", "value": "cosmetics", "description": "🄿 Cosmetics Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "country_store", "description": "🄿 Country Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, - {"key": "shop", "value": "craft", "description": "🄿 Arts and Crafts Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "craft", "description": "🄿 Arts and Crafts Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-palette.svg?sanitize=true"}, {"key": "shop", "value": "curtain", "description": "🄿 Curtain Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "dairy", "description": "🄿 Dairy Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-cheese.svg?sanitize=true"}, {"key": "shop", "value": "deli", "description": "🄿 Deli", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"}, @@ -880,14 +880,14 @@ {"key": "shop", "value": "doityourself", "description": "🄿 DIY Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"}, {"key": "shop", "value": "dry_cleaning", "description": "🄿 Dry Cleaner", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "e-cigarette", "description": "🄿 E-Cigarette Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, - {"key": "shop", "value": "electronics", "description": "🄿 Electronics Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "electronics", "description": "🄿 Electronics Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-plug.svg?sanitize=true"}, {"key": "shop", "value": "erotic", "description": "🄿 Erotic Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "fabric", "description": "🄿 Fabric Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "farm", "description": "🄿 Produce Stand", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "fireplace", "description": "🄿 Fireplace Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "fishing", "description": "🄿 Fishing Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "florist", "description": "🄿 Florist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/florist-15.svg?sanitize=true"}, - {"key": "shop", "value": "frame", "description": "🄿 Framing Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "frame", "description": "🄿 Framing Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-vector-square.svg?sanitize=true"}, {"key": "shop", "value": "frozen_food", "description": "🄿 Frozen Food", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "fuel", "description": "🄿 Fuel Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "funeral_directors", "description": "🄿 Funeral Home", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cemetery-15.svg?sanitize=true"}, @@ -901,7 +901,7 @@ {"key": "shop", "value": "hardware", "description": "🄿 Hardware Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"}, {"key": "shop", "value": "health_food", "description": "🄿 Health Food Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "hearing_aids", "description": "🄿 Hearing Aids Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, - {"key": "shop", "value": "herbalist", "description": "🄿 Herbalist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "herbalist", "description": "🄿 Herbalist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-leaf.svg?sanitize=true"}, {"key": "shop", "value": "hifi", "description": "🄿 Hifi Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "houseware", "description": "🄿 Houseware Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-blender.svg?sanitize=true"}, {"key": "shop", "value": "hunting", "description": "🄿 Hunting Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, @@ -916,12 +916,12 @@ {"key": "shop", "value": "mall", "description": "🄿 Mall", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "massage", "description": "🄿 Massage Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/spa.svg?sanitize=true"}, {"key": "shop", "value": "medical_supply", "description": "🄿 Medical Supply Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, - {"key": "shop", "value": "mobile_phone", "description": "🄿 Mobile Phone Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/mobile-phone-15.svg?sanitize=true"}, + {"key": "shop", "value": "mobile_phone", "description": "🄿 Mobile Phone Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-mobile-alt.svg?sanitize=true"}, {"key": "shop", "value": "money_lender", "description": "🄿 Money Lender", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"}, {"key": "shop", "value": "motorcycle_repair", "description": "🄿 Motorcycle Repair Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-motorcycle.svg?sanitize=true"}, {"key": "shop", "value": "motorcycle", "description": "🄿 Motorcycle Dealership", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-motorcycle.svg?sanitize=true"}, - {"key": "shop", "value": "music", "description": "🄿 Music Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/music-15.svg?sanitize=true"}, - {"key": "shop", "value": "musical_instrument", "description": "🄿 Musical Instrument Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/music-15.svg?sanitize=true"}, + {"key": "shop", "value": "music", "description": "🄿 Music Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-compact-disc.svg?sanitize=true"}, + {"key": "shop", "value": "musical_instrument", "description": "🄿 Musical Instrument Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-guitar.svg?sanitize=true"}, {"key": "shop", "value": "newsagent", "description": "🄿 Newspaper/Magazine Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "nutrition_supplements", "description": "🄿 Nutrition Supplements Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "optician", "description": "🄿 Optician", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/optician-15.svg?sanitize=true"}, @@ -943,7 +943,7 @@ {"key": "shop", "value": "second_hand", "description": "🄿 Consignment/Thrift Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "sewing", "description": "🄿 Sewing Supply Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "shoes", "description": "🄿 Shoe Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shoe-15.svg?sanitize=true"}, - {"key": "shop", "value": "sports", "description": "🄿 Sporting Goods Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "sports", "description": "🄿 Sporting Goods Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-futbol.svg?sanitize=true"}, {"key": "shop", "value": "stationery", "description": "🄿 Stationery Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "storage_rental", "description": "🄿 Storage Rental", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-warehouse.svg?sanitize=true"}, {"key": "shop", "value": "supermarket", "description": "🄿 Supermarket", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/grocery-15.svg?sanitize=true"}, diff --git a/svg/fontawesome/fas-baby-carriage.svg b/svg/fontawesome/fas-baby-carriage.svg new file mode 100644 index 000000000..27118fc6a --- /dev/null +++ b/svg/fontawesome/fas-baby-carriage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-baby.svg b/svg/fontawesome/fas-baby.svg new file mode 100644 index 000000000..28ef9ee07 --- /dev/null +++ b/svg/fontawesome/fas-baby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-bath.svg b/svg/fontawesome/fas-bath.svg new file mode 100644 index 000000000..e6e8e67d2 --- /dev/null +++ b/svg/fontawesome/fas-bath.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-camera-retro.svg b/svg/fontawesome/fas-camera-retro.svg new file mode 100644 index 000000000..55ca03fb1 --- /dev/null +++ b/svg/fontawesome/fas-camera-retro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-car-battery.svg b/svg/fontawesome/fas-car-battery.svg new file mode 100644 index 000000000..6a2780f0e --- /dev/null +++ b/svg/fontawesome/fas-car-battery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-child.svg b/svg/fontawesome/fas-child.svg new file mode 100644 index 000000000..afb7048a3 --- /dev/null +++ b/svg/fontawesome/fas-child.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-code.svg b/svg/fontawesome/fas-code.svg new file mode 100644 index 000000000..db82c3c24 --- /dev/null +++ b/svg/fontawesome/fas-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-comment.svg b/svg/fontawesome/fas-comment.svg new file mode 100644 index 000000000..89277ed85 --- /dev/null +++ b/svg/fontawesome/fas-comment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-compact-disc.svg b/svg/fontawesome/fas-compact-disc.svg new file mode 100644 index 000000000..93c5c9099 --- /dev/null +++ b/svg/fontawesome/fas-compact-disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-drafting-compass.svg b/svg/fontawesome/fas-drafting-compass.svg new file mode 100644 index 000000000..d9217156d --- /dev/null +++ b/svg/fontawesome/fas-drafting-compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-dumpster.svg b/svg/fontawesome/fas-dumpster.svg new file mode 100644 index 000000000..8663e7531 --- /dev/null +++ b/svg/fontawesome/fas-dumpster.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-futbol.svg b/svg/fontawesome/fas-futbol.svg new file mode 100644 index 000000000..559636bae --- /dev/null +++ b/svg/fontawesome/fas-futbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-gavel.svg b/svg/fontawesome/fas-gavel.svg new file mode 100644 index 000000000..c5e51c104 --- /dev/null +++ b/svg/fontawesome/fas-gavel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-guitar.svg b/svg/fontawesome/fas-guitar.svg new file mode 100644 index 000000000..7da98ba43 --- /dev/null +++ b/svg/fontawesome/fas-guitar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-laptop.svg b/svg/fontawesome/fas-laptop.svg new file mode 100644 index 000000000..c35728328 --- /dev/null +++ b/svg/fontawesome/fas-laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-leaf.svg b/svg/fontawesome/fas-leaf.svg new file mode 100644 index 000000000..f3d543947 --- /dev/null +++ b/svg/fontawesome/fas-leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-mobile-alt.svg b/svg/fontawesome/fas-mobile-alt.svg new file mode 100644 index 000000000..ae8b81bb1 --- /dev/null +++ b/svg/fontawesome/fas-mobile-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-palette.svg b/svg/fontawesome/fas-palette.svg new file mode 100644 index 000000000..1d3ec9d07 --- /dev/null +++ b/svg/fontawesome/fas-palette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-person-booth.svg b/svg/fontawesome/fas-person-booth.svg new file mode 100644 index 000000000..ec2e0f5b8 --- /dev/null +++ b/svg/fontawesome/fas-person-booth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-plug.svg b/svg/fontawesome/fas-plug.svg new file mode 100644 index 000000000..38e6112c6 --- /dev/null +++ b/svg/fontawesome/fas-plug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-shopping-basket.svg b/svg/fontawesome/fas-shopping-basket.svg new file mode 100644 index 000000000..0b1896e0d --- /dev/null +++ b/svg/fontawesome/fas-shopping-basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-tram.svg b/svg/fontawesome/fas-tram.svg new file mode 100644 index 000000000..3246c2917 --- /dev/null +++ b/svg/fontawesome/fas-tram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-vector-square.svg b/svg/fontawesome/fas-vector-square.svg new file mode 100644 index 000000000..6e69b361b --- /dev/null +++ b/svg/fontawesome/fas-vector-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-vial.svg b/svg/fontawesome/fas-vial.svg new file mode 100644 index 000000000..cb4c53dd0 --- /dev/null +++ b/svg/fontawesome/fas-vial.svg @@ -0,0 +1 @@ + \ No newline at end of file From 7edebb897f5d943b53eb65d6544cd7e45e0d0dc6 Mon Sep 17 00:00:00 2001 From: J Guthrie Date: Mon, 8 Apr 2019 12:41:05 +0100 Subject: [PATCH 31/50] Only allow disconnect when selected ways relate to selected node --- modules/operations/disconnect.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/operations/disconnect.js b/modules/operations/disconnect.js index b9ede9fd3..fa3d78473 100644 --- a/modules/operations/disconnect.js +++ b/modules/operations/disconnect.js @@ -8,6 +8,10 @@ export function operationDisconnect(selectedIDs, context) { return context.geometry(id) === 'vertex'; }); + var ways = selectedIDs.filter(function(id) { + return context.geometry(id) !== 'vertex'; + }); + var entityID = vertices[0]; var action = actionDisconnect(entityID); @@ -23,7 +27,7 @@ export function operationDisconnect(selectedIDs, context) { operation.available = function() { - return vertices.length === 1; + return vertices.length === 1 && ways.every(function(way) { return context.graph().entity(way).nodes.includes(vertices[0]); }); }; From d7865ac4aa3b27b4980513c558dc90bbbcb81059 Mon Sep 17 00:00:00 2001 From: J Guthrie Date: Mon, 8 Apr 2019 12:42:16 +0100 Subject: [PATCH 32/50] don't unclose way if it is part of a larger disconnect operation --- modules/actions/disconnect.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/actions/disconnect.js b/modules/actions/disconnect.js index 62a2162b0..b7ed93814 100644 --- a/modules/actions/disconnect.js +++ b/modules/actions/disconnect.js @@ -22,7 +22,7 @@ export function actionDisconnect(nodeId, newNodeId) { var action = function(graph) { var node = graph.entity(nodeId); var connections = action.connections(graph); - + connections.forEach(function(connection) { var way = graph.entity(connection.wayID); var newNode = osmNode({id: newNodeId, loc: node.loc, tags: node.tags}); @@ -59,6 +59,9 @@ export function actionDisconnect(nodeId, newNodeId) { } else { way.nodes.forEach(function(waynode, index) { if (waynode === nodeId) { + if (way.isClosed() && parentWays.length > 1 && wayIds && wayIds.includes(way.id) && index === way.nodes.length-1) { + return; + } candidates.push({ wayID: way.id, index: index }); } }); @@ -71,7 +74,7 @@ export function actionDisconnect(nodeId, newNodeId) { action.disabled = function(graph) { var connections = action.connections(graph); - if (connections.length === 0 || (wayIds && wayIds.length !== connections.length)) + if (connections.length === 0) return 'not_connected'; var parentWays = graph.parentWays(graph.entity(nodeId)); From dcd2b4dfbec4e65944669be1f80bd955a263b28c Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 8 Apr 2019 09:43:00 -0400 Subject: [PATCH 33/50] Update name-suggestion-index to v2.0.1 --- data/presets/presets.json | 2170 ++++++++++++++++++++----------------- package.json | 2 +- 2 files changed, 1190 insertions(+), 982 deletions(-) diff --git a/data/presets/presets.json b/data/presets/presets.json index 9f8c56463..39a7e7cde 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -1142,14 +1142,14 @@ "amenity/bank/Andhra Bank": {"name": "Andhra Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/official.andhrabank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2003476"}, "addTags": {"amenity": "bank", "brand": "Andhra Bank", "brand:wikidata": "Q2003476", "brand:wikipedia": "en:Andhra Bank", "name": "Andhra Bank"}, "removeTags": {"amenity": "bank", "brand": "Andhra Bank", "brand:wikidata": "Q2003476", "brand:wikipedia": "en:Andhra Bank", "name": "Andhra Bank"}, "countryCodes": ["in"], "matchScore": 2, "suggestion": true}, "amenity/bank/Antonveneta": {"name": "Antonveneta", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3633689"}, "addTags": {"amenity": "bank", "brand": "Antonveneta", "brand:wikidata": "Q3633689", "brand:wikipedia": "en:Banca Antonveneta", "name": "Antonveneta"}, "removeTags": {"amenity": "bank", "brand": "Antonveneta", "brand:wikidata": "Q3633689", "brand:wikipedia": "en:Banca Antonveneta", "name": "Antonveneta"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, "amenity/bank/Apple Bank": {"name": "Apple Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/AppleBankfan/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4781125"}, "addTags": {"amenity": "bank", "brand": "Apple Bank", "brand:wikidata": "Q4781125", "brand:wikipedia": "en:Apple Bank for Savings", "name": "Apple Bank"}, "removeTags": {"amenity": "bank", "brand": "Apple Bank", "brand:wikidata": "Q4781125", "brand:wikipedia": "en:Apple Bank for Savings", "name": "Apple Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Argenta": {"name": "Argenta", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/argenta/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q932856"}, "addTags": {"amenity": "bank", "brand": "Argenta", "brand:wikidata": "Q932856", "brand:wikipedia": "en:Argenta (bank)", "name": "Argenta", "operator": "Argenta group", "operator:wikidata": "Q19604341"}, "removeTags": {"amenity": "bank", "brand": "Argenta", "brand:wikidata": "Q932856", "brand:wikipedia": "en:Argenta (bank)", "name": "Argenta", "operator": "Argenta group", "operator:wikidata": "Q19604341"}, "countryCodes": ["be", "lu", "nl"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Argenta": {"name": "Argenta", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/argenta/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q932856"}, "addTags": {"amenity": "bank", "brand": "Argenta", "brand:wikidata": "Q932856", "brand:wikipedia": "en:Argenta (bank)", "name": "Argenta", "operator": "Argenta Group", "operator:wikidata": "Q19604341"}, "removeTags": {"amenity": "bank", "brand": "Argenta", "brand:wikidata": "Q932856", "brand:wikipedia": "en:Argenta (bank)", "name": "Argenta", "operator": "Argenta Group", "operator:wikidata": "Q19604341"}, "countryCodes": ["be", "lu", "nl"], "matchScore": 2, "suggestion": true}, "amenity/bank/Arvest Bank": {"name": "Arvest Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ArvestBank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4802393"}, "addTags": {"amenity": "bank", "brand": "Arvest Bank", "brand:wikidata": "Q4802393", "brand:wikipedia": "en:Arvest Bank", "name": "Arvest Bank"}, "removeTags": {"amenity": "bank", "brand": "Arvest Bank", "brand:wikidata": "Q4802393", "brand:wikipedia": "en:Arvest Bank", "name": "Arvest Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/bank/Asia United Bank": {"name": "Asia United Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/AUB.Official/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4806482"}, "addTags": {"amenity": "bank", "brand": "Asia United Bank", "brand:wikidata": "Q4806482", "brand:wikipedia": "en:Asia United Bank", "name": "Asia United Bank"}, "removeTags": {"amenity": "bank", "brand": "Asia United Bank", "brand:wikidata": "Q4806482", "brand:wikipedia": "en:Asia United Bank", "name": "Asia United Bank"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, "amenity/bank/Askari Bank": {"name": "Askari Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/askaribankpakistan/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4807137"}, "addTags": {"amenity": "bank", "brand": "Askari Bank", "brand:wikidata": "Q4807137", "brand:wikipedia": "en:Askari Bank", "name": "Askari Bank"}, "removeTags": {"amenity": "bank", "brand": "Askari Bank", "brand:wikidata": "Q4807137", "brand:wikipedia": "en:Askari Bank", "name": "Askari Bank"}, "countryCodes": ["pk"], "matchScore": 2, "suggestion": true}, "amenity/bank/Associated Bank": {"name": "Associated Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/associatedbank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4809155"}, "addTags": {"amenity": "bank", "brand": "Associated Bank", "brand:wikidata": "Q4809155", "brand:wikipedia": "en:Associated Banc-Corp", "name": "Associated Bank", "operator": "Associated Banc-Corp"}, "removeTags": {"amenity": "bank", "brand": "Associated Bank", "brand:wikidata": "Q4809155", "brand:wikipedia": "en:Associated Banc-Corp", "name": "Associated Bank", "operator": "Associated Banc-Corp"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/bank/Attijariwafa Bank": {"name": "Attijariwafa Bank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/689449211050393601/0_NfM1Dp_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q758052"}, "addTags": {"amenity": "bank", "brand": "Attijariwafa Bank", "brand:wikidata": "Q758052", "brand:wikipedia": "en:Attijariwafa Bank", "name": "Attijariwafa Bank", "operator": "Société Nationale d'Investissement", "operator:en": "National Investment Company", "operator:wikidata": "Q3488506", "operator:wikipedia": "en:Société Nationale d'Investissement"}, "removeTags": {"amenity": "bank", "brand": "Attijariwafa Bank", "brand:wikidata": "Q758052", "brand:wikipedia": "en:Attijariwafa Bank", "name": "Attijariwafa Bank", "operator": "Société Nationale d'Investissement", "operator:en": "National Investment Company", "operator:wikidata": "Q3488506", "operator:wikipedia": "en:Société Nationale d'Investissement"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Axis Bank": {"name": "Axis Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/axisbank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2003549"}, "addTags": {"amenity": "bank", "brand": "Axis Bank", "brand:wikidata": "Q2003549", "brand:wikipedia": "en:Axis Bank", "name": "Axis Bank"}, "removeTags": {"amenity": "bank", "brand": "Axis Bank", "brand:wikidata": "Q2003549", "brand:wikipedia": "en:Axis Bank", "name": "Axis Bank"}, "countryCodes": ["in"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BAC": {"name": "BAC", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BACCredomaticSV/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5715556"}, "addTags": {"amenity": "bank", "brand": "BAC", "brand:wikidata": "Q5715556", "brand:wikipedia": "en:Banco de America Central", "name": "BAC", "official_name": "Banco de America Central", "operator": "Grupo Aval", "operator:en": "Aval Group", "operator:wikidata": "Q2053387", "operator:wikipedia": "en:Grupo Aval"}, "removeTags": {"amenity": "bank", "brand": "BAC", "brand:wikidata": "Q5715556", "brand:wikipedia": "en:Banco de America Central", "name": "BAC", "official_name": "Banco de America Central", "operator": "Grupo Aval", "operator:en": "Aval Group", "operator:wikidata": "Q2053387", "operator:wikipedia": "en:Grupo Aval"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/BAC": {"name": "BAC", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BACCredomaticSV/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5715556"}, "addTags": {"amenity": "bank", "brand": "BAC", "brand:wikidata": "Q5715556", "brand:wikipedia": "en:Banco de América Central", "name": "BAC", "official_name": "Banco de America Central", "operator": "Grupo Aval", "operator:en": "Aval Group", "operator:wikidata": "Q2053387", "operator:wikipedia": "en:Grupo Aval"}, "removeTags": {"amenity": "bank", "brand": "BAC", "brand:wikidata": "Q5715556", "brand:wikipedia": "en:Banco de América Central", "name": "BAC", "official_name": "Banco de America Central", "operator": "Grupo Aval", "operator:en": "Aval Group", "operator:wikidata": "Q2053387", "operator:wikipedia": "en:Grupo Aval"}, "matchScore": 2, "suggestion": true}, "amenity/bank/BAWAG PSK": {"name": "BAWAG PSK", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bawag.psk/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q379938"}, "addTags": {"amenity": "bank", "brand": "BAWAG PSK", "brand:wikidata": "Q379938", "brand:wikipedia": "en:BAWAG P.S.K.", "name": "BAWAG PSK"}, "removeTags": {"amenity": "bank", "brand": "BAWAG PSK", "brand:wikidata": "Q379938", "brand:wikipedia": "en:BAWAG P.S.K.", "name": "BAWAG PSK"}, "countryCodes": ["at"], "matchScore": 2, "suggestion": true}, "amenity/bank/BB&T": {"name": "BB&T", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BBTBank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q795486"}, "addTags": {"amenity": "bank", "brand": "BB&T", "brand:wikidata": "Q795486", "brand:wikipedia": "en:BB&T", "name": "BB&T", "official_name": "Branch Banking and Trust Company"}, "removeTags": {"amenity": "bank", "brand": "BB&T", "brand:wikidata": "Q795486", "brand:wikipedia": "en:BB&T", "name": "BB&T", "official_name": "Branch Banking and Trust Company"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/bank/BBBank": {"name": "BBBank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BBBank.de/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q795504"}, "addTags": {"amenity": "bank", "brand": "BBBank", "brand:wikidata": "Q795504", "brand:wikipedia": "en:BBBank", "name": "BBBank", "operator": "Baden-Württembergischer Genossenschaftsverband", "operator:en": "Baden-Württemberg Cooperative Association", "operator:wikidata": "Q798896", "operator:wikipedia": "de:Baden-Württembergischer Genossenschaftsverband"}, "removeTags": {"amenity": "bank", "brand": "BBBank", "brand:wikidata": "Q795504", "brand:wikipedia": "en:BBBank", "name": "BBBank", "operator": "Baden-Württembergischer Genossenschaftsverband", "operator:en": "Baden-Württemberg Cooperative Association", "operator:wikidata": "Q798896", "operator:wikipedia": "de:Baden-Württembergischer Genossenschaftsverband"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, @@ -1167,7 +1167,7 @@ "amenity/bank/BCR (Banca Comercială Română)": {"name": "BCR (Banca Comercială Română)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BCRRomania/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806149"}, "addTags": {"amenity": "bank", "brand": "BCR", "brand:wikidata": "Q806149", "brand:wikipedia": "en:Banca Comercială Română", "name": "BCR", "official_name": "Banca Comercială Română", "official_name:en": "Romanian Commercial Bank", "official_name:ro": "Banca Comercială Română"}, "removeTags": {"amenity": "bank", "brand": "BCR", "brand:wikidata": "Q806149", "brand:wikipedia": "en:Banca Comercială Română", "name": "BCR", "official_name": "Banca Comercială Română", "official_name:en": "Romanian Commercial Bank", "official_name:ro": "Banca Comercială Română"}, "countryCodes": ["ro"], "matchScore": 2, "suggestion": true}, "amenity/bank/BCR (Costa Rica)": {"name": "BCR (Costa Rica)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoBCR/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q6951632"}, "addTags": {"amenity": "bank", "brand": "BCR", "brand:wikidata": "Q6951632", "brand:wikipedia": "es:Banco de Costa Rica", "name": "BCR", "official_name": "Banco de Costa Rica", "official_name:en": "Bank of Costa Rica", "official_name:es": "Banco de Costa Rica"}, "removeTags": {"amenity": "bank", "brand": "BCR", "brand:wikidata": "Q6951632", "brand:wikipedia": "es:Banco de Costa Rica", "name": "BCR", "official_name": "Banco de Costa Rica", "official_name:en": "Bank of Costa Rica", "official_name:es": "Banco de Costa Rica"}, "countryCodes": ["cr"], "matchScore": 2, "suggestion": true}, "amenity/bank/BDO": {"name": "BDO", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoBCR/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854129"}, "addTags": {"amenity": "bank", "brand": "BDO", "brand:wikidata": "Q4854129", "brand:wikipedia": "en:Banco de Oro", "name": "BDO", "official_name": "Banco de Oro", "official_name:en": "Gold Bank", "official_name:es": "Banco de Oro"}, "removeTags": {"amenity": "bank", "brand": "BDO", "brand:wikidata": "Q4854129", "brand:wikipedia": "en:Banco de Oro", "name": "BDO", "official_name": "Banco de Oro", "official_name:en": "Gold Bank", "official_name:es": "Banco de Oro"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BGŻ BNP Paribas": {"name": "BGŻ BNP Paribas", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BGZBNPParibas/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q9164980"}, "addTags": {"amenity": "bank", "brand": "BGŻ BNP Paribas", "brand:wikidata": "Q9164980", "brand:wikipedia": "pl:Bank BGŻ BNP Paribas", "name": "BGŻ BNP Paribas", "operator": "BNP Paribas", "operator:wikidata": "Q499707", "operator:wikipedia": "pl:BNP Paribas"}, "removeTags": {"amenity": "bank", "brand": "BGŻ BNP Paribas", "brand:wikidata": "Q9164980", "brand:wikipedia": "pl:Bank BGŻ BNP Paribas", "name": "BGŻ BNP Paribas", "operator": "BNP Paribas", "operator:wikidata": "Q499707", "operator:wikipedia": "pl:BNP Paribas"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "amenity/bank/BGŻ BNP Paribas": {"name": "BGŻ BNP Paribas", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q20744004"}, "addTags": {"amenity": "bank", "brand": "BGŻ BNP Paribas", "brand:wikidata": "Q20744004", "brand:wikipedia": "pl:BNP Paribas Bank Polska", "name": "BGŻ BNP Paribas", "operator": "BNP Paribas", "operator:wikidata": "Q499707", "operator:wikipedia": "pl:BNP Paribas"}, "removeTags": {"amenity": "bank", "brand": "BGŻ BNP Paribas", "brand:wikidata": "Q20744004", "brand:wikipedia": "pl:BNP Paribas Bank Polska", "name": "BGŻ BNP Paribas", "operator": "BNP Paribas", "operator:wikidata": "Q499707", "operator:wikipedia": "pl:BNP Paribas"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "amenity/bank/BMCE Bank": {"name": "BMCE Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bmcebank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2300433"}, "addTags": {"amenity": "bank", "brand": "BMCE Bank", "brand:wikidata": "Q2300433", "brand:wikipedia": "ar:البنك المغربي للتجارة الخارجية", "name": "BMCE Bank"}, "removeTags": {"amenity": "bank", "brand": "BMCE Bank", "brand:wikidata": "Q2300433", "brand:wikipedia": "ar:البنك المغربي للتجارة الخارجية", "name": "BMCE Bank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/BMCI": {"name": "BMCI", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2883409"}, "addTags": {"amenity": "bank", "brand": "BMCI", "brand:wikidata": "Q2883409", "brand:wikipedia": "ar:البنك المغربي للتجارة والصناعة", "name": "BMCI", "operator": "BNP Paribas", "operator:wikidata": "Q499707", "operator:wikipedia": "pl:BNP Paribas"}, "removeTags": {"amenity": "bank", "brand": "BMCI", "brand:wikidata": "Q2883409", "brand:wikipedia": "ar:البنك المغربي للتجارة والصناعة", "name": "BMCI", "operator": "BNP Paribas", "operator:wikidata": "Q499707", "operator:wikipedia": "pl:BNP Paribas"}, "countryCodes": ["ma"], "matchScore": 2, "suggestion": true}, "amenity/bank/BMN": {"name": "BMN", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBMN%20nuevo%20logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3754900"}, "addTags": {"amenity": "bank", "brand": "BMN", "brand:wikidata": "Q3754900", "brand:wikipedia": "es:Banco Mare Nostrum", "name": "BMN", "official_name": "Banco Mare Nostrum"}, "removeTags": {"amenity": "bank", "brand": "BMN", "brand:wikidata": "Q3754900", "brand:wikipedia": "es:Banco Mare Nostrum", "name": "BMN", "official_name": "Banco Mare Nostrum"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, @@ -1183,40 +1183,40 @@ "amenity/bank/BPI": {"name": "BPI", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bpi/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2501256"}, "addTags": {"amenity": "bank", "brand": "BPI", "brand:wikidata": "Q2501256", "brand:wikipedia": "en:Bank of the Philippine Islands", "name": "BPI", "official_name": "Bank of the Philippine Islands"}, "removeTags": {"amenity": "bank", "brand": "BPI", "brand:wikidata": "Q2501256", "brand:wikipedia": "en:Bank of the Philippine Islands", "name": "BPI", "official_name": "Bank of the Philippine Islands"}, "matchScore": 2, "suggestion": true}, "amenity/bank/BRD": {"name": "BRD", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BRDGroupeSocieteGenerale/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q796927"}, "addTags": {"amenity": "bank", "brand": "BRD", "brand:wikidata": "Q796927", "brand:wikipedia": "ro:BRD - Groupe Société Générale", "name": "BRD"}, "removeTags": {"amenity": "bank", "brand": "BRD", "brand:wikidata": "Q796927", "brand:wikipedia": "ro:BRD - Groupe Société Générale", "name": "BRD"}, "countryCodes": ["ro"], "matchScore": 2, "suggestion": true}, "amenity/bank/BRED": {"name": "BRED", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BRED.Banque.Populaire/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2877455"}, "addTags": {"amenity": "bank", "brand": "BRED", "brand:wikidata": "Q2877455", "brand:wikipedia": "fr:BRED Banque populaire", "name": "BRED", "official_name": "Banque régionale d'escompte et de dépôts", "official_name:en": "Regional Discount and Deposit Bank", "official_name:fr": "Banque régionale d'escompte et de dépôts", "operator": "Groupe BPCE", "operator:en": "BPCE Group", "operator:fr": "Groupe BPCE", "operator:wikidata": "Q806941", "operator:wikipedia": "en:Groupe BPCE"}, "removeTags": {"amenity": "bank", "brand": "BRED", "brand:wikidata": "Q2877455", "brand:wikipedia": "fr:BRED Banque populaire", "name": "BRED", "official_name": "Banque régionale d'escompte et de dépôts", "official_name:en": "Regional Discount and Deposit Bank", "official_name:fr": "Banque régionale d'escompte et de dépôts", "operator": "Groupe BPCE", "operator:en": "BPCE Group", "operator:fr": "Groupe BPCE", "operator:wikidata": "Q806941", "operator:wikipedia": "en:Groupe BPCE"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/BRI": {"name": "BRI", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20BRI.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q623042"}, "addTags": {"amenity": "bank", "brand": "BRI", "brand:wikidata": "Q623042", "brand:wikipedia": "id:Bank Rakyat Indonesia", "name": "BRI", "official_name": "Bank Rakyat Indonesia", "official_name:en": "People's Bank of Indonesia", "official_name:id": "Bank Rakyat Indonesia"}, "removeTags": {"amenity": "bank", "brand": "BRI", "brand:wikidata": "Q623042", "brand:wikipedia": "id:Bank Rakyat Indonesia", "name": "BRI", "official_name": "Bank Rakyat Indonesia", "official_name:en": "People's Bank of Indonesia", "official_name:id": "Bank Rakyat Indonesia"}, "countryCodes": ["id"], "matchScore": 2, "suggestion": true}, + "amenity/bank/BRI": {"name": "BRI", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BRIofficialpage/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q623042"}, "addTags": {"amenity": "bank", "brand": "BRI", "brand:wikidata": "Q623042", "brand:wikipedia": "id:Bank Rakyat Indonesia", "name": "BRI", "official_name": "Bank Rakyat Indonesia", "official_name:en": "People's Bank of Indonesia", "official_name:id": "Bank Rakyat Indonesia"}, "removeTags": {"amenity": "bank", "brand": "BRI", "brand:wikidata": "Q623042", "brand:wikipedia": "id:Bank Rakyat Indonesia", "name": "BRI", "official_name": "Bank Rakyat Indonesia", "official_name:en": "People's Bank of Indonesia", "official_name:id": "Bank Rakyat Indonesia"}, "countryCodes": ["id"], "matchScore": 2, "suggestion": true}, "amenity/bank/BTN": {"name": "BTN", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q12474534"}, "addTags": {"amenity": "bank", "brand": "BTN", "brand:en": "BTN", "brand:id": "BTN", "brand:wikidata": "Q12474534", "brand:wikipedia": "id:Bank Tabungan Negara", "name": "BTN", "name:en": "BTN", "name:id": "BTN", "official_name": "Bank Tabungan Negara", "official_name:en": "State Savings Bank", "official_name:id": "Bank Tabungan Negara"}, "removeTags": {"amenity": "bank", "brand": "BTN", "brand:en": "BTN", "brand:id": "BTN", "brand:wikidata": "Q12474534", "brand:wikipedia": "id:Bank Tabungan Negara", "name": "BTN", "name:en": "BTN", "name:id": "BTN", "official_name": "Bank Tabungan Negara", "official_name:en": "State Savings Bank", "official_name:id": "Bank Tabungan Negara"}, "countryCodes": ["id"], "matchScore": 2, "suggestion": true}, "amenity/bank/BW-Bank": {"name": "BW-Bank", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBaden-W%C3%BCrttembergische%20Bank%20text%20logo%20black.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q798891"}, "addTags": {"amenity": "bank", "brand": "BW-Bank", "brand:ed": "BW-Bank", "brand:en": "BW-Bank", "brand:wikidata": "Q798891", "brand:wikipedia": "de:Baden-Württembergische Bank", "name": "BW-Bank", "name:de": "BW-Bank", "name:en": "BW-Bank", "operator": "Landesbank Baden-Württemberg", "operator:de": "Landesbank Baden-Württemberg", "operator:en": "Baden-Württemberg Regional Bank", "operator:wikidata": "Q451814", "operator:wikipedia": "en:Landesbank Baden-Württemberg"}, "removeTags": {"amenity": "bank", "brand": "BW-Bank", "brand:ed": "BW-Bank", "brand:en": "BW-Bank", "brand:wikidata": "Q798891", "brand:wikipedia": "de:Baden-Württembergische Bank", "name": "BW-Bank", "name:de": "BW-Bank", "name:en": "BW-Bank", "operator": "Landesbank Baden-Württemberg", "operator:de": "Landesbank Baden-Württemberg", "operator:en": "Baden-Württemberg Regional Bank", "operator:wikidata": "Q451814", "operator:wikipedia": "en:Landesbank Baden-Württemberg"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banamex": {"name": "Banamex", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q749474"}, "addTags": {"amenity": "bank", "brand": "Banamex", "brand:wikidata": "Q749474", "brand:wikipedia": "en:Grupo Financiero Banamex", "name": "Banamex", "official_name": "Grupo Financiero Banamex", "official_name:en": "Banamex Financial Group", "official_name:es": "Grupo Financiero Banamex", "operator": "Citigroup", "operator:wikidata": "Q219508", "operator:wikipedia": "en:Citigroup"}, "removeTags": {"amenity": "bank", "brand": "Banamex", "brand:wikidata": "Q749474", "brand:wikipedia": "en:Grupo Financiero Banamex", "name": "Banamex", "official_name": "Grupo Financiero Banamex", "official_name:en": "Banamex Financial Group", "official_name:es": "Grupo Financiero Banamex", "operator": "Citigroup", "operator:wikidata": "Q219508", "operator:wikipedia": "en:Citigroup"}, "countryCodes": ["mx"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca Intesa": {"name": "Banca Intesa", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBiblogo.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q647092"}, "addTags": {"amenity": "bank", "brand": "Banca Intesa", "brand:wikidata": "Q647092", "brand:wikipedia": "en:Banca Intesa", "name": "Banca Intesa", "name:en": "Intesa Bank", "name:it": "Banca Intesa", "operator": "Intesa Sanpaolo", "operator:en": "Intesa St. Paul", "operator:it": "Intesa Sanpaolo", "operator:wikidata": "Q1343118", "operator:wikipedia": "en:Intesa Sanpaolo"}, "removeTags": {"amenity": "bank", "brand": "Banca Intesa", "brand:wikidata": "Q647092", "brand:wikipedia": "en:Banca Intesa", "name": "Banca Intesa", "name:en": "Intesa Bank", "name:it": "Banca Intesa", "operator": "Intesa Sanpaolo", "operator:en": "Intesa St. Paul", "operator:it": "Intesa Sanpaolo", "operator:wikidata": "Q1343118", "operator:wikipedia": "en:Intesa Sanpaolo"}, "countryCodes": ["it", "rs"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca March": {"name": "Banca March", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo-BM-Color.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q578252"}, "addTags": {"amenity": "bank", "brand": "Banca March", "brand:wikidata": "Q578252", "brand:wikipedia": "en:Banca March", "name": "Banca March"}, "removeTags": {"amenity": "bank", "brand": "Banca March", "brand:wikidata": "Q578252", "brand:wikipedia": "en:Banca March", "name": "Banca March"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca Popolare di Milano": {"name": "Banca Popolare di Milano", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanca%20Popolare%20di%20Milano%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806154"}, "addTags": {"amenity": "bank", "brand": "Banca Popolare di Milano", "brand:en": "Popular Bank of Milan", "brand:it": "Banca Popolare di Milano", "brand:wikidata": "Q806154", "brand:wikipedia": "en:Banca Popolare di Milano", "name": "Banca Popolare di Milano", "name:en": "Popular Bank of Milan", "name:it": "Banca Popolare di Milano", "operator": "Banco BPM", "operator:en": "BPM Bank", "operator:it": "Banco BPM", "operator:wikidata": "Q27331643", "operator:wikipedia": "en:Banco BPM"}, "removeTags": {"amenity": "bank", "brand": "Banca Popolare di Milano", "brand:en": "Popular Bank of Milan", "brand:it": "Banca Popolare di Milano", "brand:wikidata": "Q806154", "brand:wikipedia": "en:Banca Popolare di Milano", "name": "Banca Popolare di Milano", "name:en": "Popular Bank of Milan", "name:it": "Banca Popolare di Milano", "operator": "Banco BPM", "operator:en": "BPM Bank", "operator:it": "Banco BPM", "operator:wikidata": "Q27331643", "operator:wikipedia": "en:Banco BPM"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banamex": {"name": "Banamex", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Citibanamex/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q749474"}, "addTags": {"amenity": "bank", "brand": "Banamex", "brand:wikidata": "Q749474", "brand:wikipedia": "en:Grupo Financiero Banamex", "name": "Banamex", "official_name": "Grupo Financiero Banamex", "official_name:en": "Banamex Financial Group", "official_name:es": "Grupo Financiero Banamex", "operator": "Citigroup", "operator:wikidata": "Q219508", "operator:wikipedia": "en:Citigroup"}, "removeTags": {"amenity": "bank", "brand": "Banamex", "brand:wikidata": "Q749474", "brand:wikipedia": "en:Grupo Financiero Banamex", "name": "Banamex", "official_name": "Grupo Financiero Banamex", "official_name:en": "Banamex Financial Group", "official_name:es": "Grupo Financiero Banamex", "operator": "Citigroup", "operator:wikidata": "Q219508", "operator:wikipedia": "en:Citigroup"}, "countryCodes": ["mx"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banca Intesa": {"name": "Banca Intesa", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancaintesa.rs/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q647092"}, "addTags": {"amenity": "bank", "brand": "Banca Intesa", "brand:wikidata": "Q647092", "brand:wikipedia": "en:Banca Intesa", "name": "Banca Intesa", "name:en": "Intesa Bank", "name:it": "Banca Intesa", "operator": "Intesa Sanpaolo", "operator:en": "Intesa St. Paul", "operator:it": "Intesa Sanpaolo", "operator:wikidata": "Q1343118", "operator:wikipedia": "en:Intesa Sanpaolo"}, "removeTags": {"amenity": "bank", "brand": "Banca Intesa", "brand:wikidata": "Q647092", "brand:wikipedia": "en:Banca Intesa", "name": "Banca Intesa", "name:en": "Intesa Bank", "name:it": "Banca Intesa", "operator": "Intesa Sanpaolo", "operator:en": "Intesa St. Paul", "operator:it": "Intesa Sanpaolo", "operator:wikidata": "Q1343118", "operator:wikipedia": "en:Intesa Sanpaolo"}, "countryCodes": ["it", "rs"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banca March": {"name": "Banca March", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancamarch/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q578252"}, "addTags": {"amenity": "bank", "brand": "Banca March", "brand:wikidata": "Q578252", "brand:wikipedia": "en:Banca March", "name": "Banca March"}, "removeTags": {"amenity": "bank", "brand": "Banca March", "brand:wikidata": "Q578252", "brand:wikipedia": "en:Banca March", "name": "Banca March"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banca Popolare di Milano": {"name": "Banca Popolare di Milano", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoBPM/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806154"}, "addTags": {"amenity": "bank", "brand": "Banca Popolare di Milano", "brand:en": "Popular Bank of Milan", "brand:it": "Banca Popolare di Milano", "brand:wikidata": "Q806154", "brand:wikipedia": "en:Banca Popolare di Milano", "name": "Banca Popolare di Milano", "name:en": "Popular Bank of Milan", "name:it": "Banca Popolare di Milano", "operator": "Banco BPM", "operator:en": "BPM Bank", "operator:it": "Banco BPM", "operator:wikidata": "Q27331643", "operator:wikipedia": "en:Banco BPM"}, "removeTags": {"amenity": "bank", "brand": "Banca Popolare di Milano", "brand:en": "Popular Bank of Milan", "brand:it": "Banca Popolare di Milano", "brand:wikidata": "Q806154", "brand:wikipedia": "en:Banca Popolare di Milano", "name": "Banca Popolare di Milano", "name:en": "Popular Bank of Milan", "name:it": "Banca Popolare di Milano", "operator": "Banco BPM", "operator:en": "BPM Bank", "operator:it": "Banco BPM", "operator:wikidata": "Q27331643", "operator:wikipedia": "en:Banco BPM"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banca Popolare di Novara": {"name": "Banca Popolare di Novara", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3633742"}, "addTags": {"amenity": "bank", "brand": "Banca Popolare di Novara", "brand:en": "Popular Bank of Novara", "brand:it": "Banca Popolare di Novara", "brand:wikidata": "Q3633742", "brand:wikipedia": "en:Banca Popolare di Novara", "name": "Banca Popolare di Novara", "name:en": "Popular Bank of Novara", "name:it": "Banca Popolare di Novara", "operator": "Banco BPM", "operator:en": "BPM Bank", "operator:it": "Banco BPM", "operator:wikidata": "Q27331643", "operator:wikipedia": "en:Banco BPM"}, "removeTags": {"amenity": "bank", "brand": "Banca Popolare di Novara", "brand:en": "Popular Bank of Novara", "brand:it": "Banca Popolare di Novara", "brand:wikidata": "Q3633742", "brand:wikipedia": "en:Banca Popolare di Novara", "name": "Banca Popolare di Novara", "name:en": "Popular Bank of Novara", "name:it": "Banca Popolare di Novara", "operator": "Banco BPM", "operator:en": "BPM Bank", "operator:it": "Banco BPM", "operator:wikidata": "Q27331643", "operator:wikipedia": "en:Banco BPM"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banca Popolare di Sondrio": {"name": "Banca Popolare di Sondrio", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q686176"}, "addTags": {"amenity": "bank", "brand": "Banca Popolare di Sondrio", "brand:en": "Popular Bank of Sandrio", "brand:it": "Banca Popolare di Sondrio", "brand:wikidata": "Q686176", "brand:wikipedia": "en:Banca Popolare di Sondrio", "name": "Banca Popolare di Sondrio", "name:en": "Popular Bank of Sandrio", "name:it": "Banca Popolare di Sondrio"}, "removeTags": {"amenity": "bank", "brand": "Banca Popolare di Sondrio", "brand:en": "Popular Bank of Sandrio", "brand:it": "Banca Popolare di Sondrio", "brand:wikidata": "Q686176", "brand:wikipedia": "en:Banca Popolare di Sondrio", "name": "Banca Popolare di Sondrio", "name:en": "Popular Bank of Sandrio", "name:it": "Banca Popolare di Sondrio"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banca Popolare di Verona": {"name": "Banca Popolare di Verona", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3167468"}, "addTags": {"amenity": "bank", "brand": "Banca Popolare di Verona", "brand:en": "Popular Bank of Verona", "brand:it": "Banca Popolare di Verona", "brand:wikidata": "Q3167468", "brand:wikipedia": "en:Banca Popolare di Verona", "name": "Banca Popolare di Verona", "name:en": "Popular Bank of Verona", "name:it": "Banca Popolare di Verona", "operator": "Banco Popolare", "operator:en": "Popular Bank", "operator:it": "Banco Popolare", "operator:wikidata": "Q806194", "operator:wikipedia": "en:Banco Popolare"}, "removeTags": {"amenity": "bank", "brand": "Banca Popolare di Verona", "brand:en": "Popular Bank of Verona", "brand:it": "Banca Popolare di Verona", "brand:wikidata": "Q3167468", "brand:wikipedia": "en:Banca Popolare di Verona", "name": "Banca Popolare di Verona", "name:en": "Popular Bank of Verona", "name:it": "Banca Popolare di Verona", "operator": "Banco Popolare", "operator:en": "Popular Bank", "operator:it": "Banco Popolare", "operator:wikidata": "Q806194", "operator:wikipedia": "en:Banco Popolare"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banca Popolare di Vicenza": {"name": "Banca Popolare di Vicenza", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3127200"}, "addTags": {"amenity": "bank", "brand": "Banca Popolare di Vicenza", "brand:en": "Popular Bank of Vicenza", "brand:it": "Banca Popolare di Vicenza", "brand:wikidata": "Q3127200", "brand:wikipedia": "en:Banca Popolare di Vicenza", "name": "Banca Popolare di Vicenza", "name:en": "Popular Bank of Vicena", "name:it": "Banca Popolare di Vicenza", "operator": "Atlante", "operator:en": "Atlas", "operator:it": "Atlante", "operator:wikidata": "Q25206459", "operator:wikipedia": "en:Atlante (private equity fund)"}, "removeTags": {"amenity": "bank", "brand": "Banca Popolare di Vicenza", "brand:en": "Popular Bank of Vicenza", "brand:it": "Banca Popolare di Vicenza", "brand:wikidata": "Q3127200", "brand:wikipedia": "en:Banca Popolare di Vicenza", "name": "Banca Popolare di Vicenza", "name:en": "Popular Bank of Vicena", "name:it": "Banca Popolare di Vicenza", "operator": "Atlante", "operator:en": "Atlas", "operator:it": "Atlante", "operator:wikidata": "Q25206459", "operator:wikipedia": "en:Atlante (private equity fund)"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca Românească": {"name": "Banca Românească", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854052"}, "addTags": {"amenity": "bank", "brand": "Banca Românească", "brand:en": "Romanian Bank", "brand:ro": "Banca Românească", "brand:wikidata": "Q4854052", "brand:wikipedia": "ro:Banca Românească", "name": "Banca Românească", "name:en": "Popular Bank of Vicena", "name:ro": "Banca Românească", "operator": "National Bank of Greece", "operator:wikidata": "Q1816028", "operator:wikipedia": "en:National Bank of Greece"}, "removeTags": {"amenity": "bank", "brand": "Banca Românească", "brand:en": "Romanian Bank", "brand:ro": "Banca Românească", "brand:wikidata": "Q4854052", "brand:wikipedia": "ro:Banca Românească", "name": "Banca Românească", "name:en": "Popular Bank of Vicena", "name:ro": "Banca Românească", "operator": "National Bank of Greece", "operator:wikidata": "Q1816028", "operator:wikipedia": "en:National Bank of Greece"}, "countryCodes": ["ro"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca Sella": {"name": "Banca Sella", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3633749"}, "addTags": {"amenity": "bank", "brand": "Banca Sella", "brand:en": "Sella Bank", "brand:it": "Banca Sella", "brand:wikidata": "Q3633749", "brand:wikipedia": "en:Banca Sella Group", "name": "Banca Sella", "name:en": "Sella Bank", "name:it": "Banca Sella"}, "removeTags": {"amenity": "bank", "brand": "Banca Sella", "brand:en": "Sella Bank", "brand:it": "Banca Sella", "brand:wikidata": "Q3633749", "brand:wikipedia": "en:Banca Sella Group", "name": "Banca Sella", "name:en": "Sella Bank", "name:it": "Banca Sella"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca Transilvania": {"name": "Banca Transilvania", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806161"}, "addTags": {"amenity": "bank", "brand": "Banca Transilvania", "brand:en": "Transilvania Bank", "brand:ro": "Banca Transilvania", "brand:wikidata": "Q806161", "brand:wikipedia": "en:Banca Transilvania", "name": "Banca Transilvania", "name:en": "Transilvania Bank", "name:ro": "Banca Transilvania"}, "removeTags": {"amenity": "bank", "brand": "Banca Transilvania", "brand:en": "Transilvania Bank", "brand:ro": "Banca Transilvania", "brand:wikidata": "Q806161", "brand:wikipedia": "en:Banca Transilvania", "name": "Banca Transilvania", "name:en": "Transilvania Bank", "name:ro": "Banca Transilvania"}, "countryCodes": ["ro"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bancaribe": {"name": "Bancaribe", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5717827"}, "addTags": {"amenity": "bank", "brand": "Bancaribe", "brand:wikidata": "Q5717827", "brand:wikipedia": "en:Bancaribe", "name": "Bancaribe"}, "removeTags": {"amenity": "bank", "brand": "Bancaribe", "brand:wikidata": "Q5717827", "brand:wikipedia": "en:Bancaribe", "name": "Bancaribe"}, "countryCodes": ["ve"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco AV Villas": {"name": "Banco AV Villas", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanco%20AV%20Villas%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854068"}, "addTags": {"amenity": "bank", "brand": "Banco AV Villas", "brand:en": "Bank of Villas", "brand:es": "Banco AV Villas", "brand:wikidata": "Q4854068", "brand:wikipedia": "en:Banco AV Villas", "name": "Banco AV Villas", "name:en": "Bank of Villas", "name:es": "Banco AV Villas", "operator": "Grupo Aval", "operator:en": "Aval Group", "operator:pt": "Grupo Aval", "operator:wikidata": "Q2053387", "operator:wikipedia": "en:Grupo Aval"}, "removeTags": {"amenity": "bank", "brand": "Banco AV Villas", "brand:en": "Bank of Villas", "brand:es": "Banco AV Villas", "brand:wikidata": "Q4854068", "brand:wikipedia": "en:Banco AV Villas", "name": "Banco AV Villas", "name:en": "Bank of Villas", "name:es": "Banco AV Villas", "operator": "Grupo Aval", "operator:en": "Aval Group", "operator:pt": "Grupo Aval", "operator:wikidata": "Q2053387", "operator:wikipedia": "en:Grupo Aval"}, "countryCodes": ["co"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banca Românească": {"name": "Banca Românească", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancaRomaneascaOficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854052"}, "addTags": {"amenity": "bank", "brand": "Banca Românească", "brand:en": "Romanian Bank", "brand:ro": "Banca Românească", "brand:wikidata": "Q4854052", "brand:wikipedia": "ro:Banca Românească", "name": "Banca Românească", "name:en": "Popular Bank of Vicena", "name:ro": "Banca Românească", "operator": "National Bank of Greece", "operator:wikidata": "Q1816028", "operator:wikipedia": "en:National Bank of Greece"}, "removeTags": {"amenity": "bank", "brand": "Banca Românească", "brand:en": "Romanian Bank", "brand:ro": "Banca Românească", "brand:wikidata": "Q4854052", "brand:wikipedia": "ro:Banca Românească", "name": "Banca Românească", "name:en": "Popular Bank of Vicena", "name:ro": "Banca Românească", "operator": "National Bank of Greece", "operator:wikidata": "Q1816028", "operator:wikipedia": "en:National Bank of Greece"}, "countryCodes": ["ro"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banca Sella": {"name": "Banca Sella", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancasella/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3633749"}, "addTags": {"amenity": "bank", "brand": "Banca Sella", "brand:en": "Sella Bank", "brand:it": "Banca Sella", "brand:wikidata": "Q3633749", "brand:wikipedia": "en:Banca Sella Group", "name": "Banca Sella", "name:en": "Sella Bank", "name:it": "Banca Sella"}, "removeTags": {"amenity": "bank", "brand": "Banca Sella", "brand:en": "Sella Bank", "brand:it": "Banca Sella", "brand:wikidata": "Q3633749", "brand:wikipedia": "en:Banca Sella Group", "name": "Banca Sella", "name:en": "Sella Bank", "name:it": "Banca Sella"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banca Transilvania": {"name": "Banca Transilvania", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancaTransilvania/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806161"}, "addTags": {"amenity": "bank", "brand": "Banca Transilvania", "brand:en": "Transilvania Bank", "brand:ro": "Banca Transilvania", "brand:wikidata": "Q806161", "brand:wikipedia": "en:Banca Transilvania", "name": "Banca Transilvania", "name:en": "Transilvania Bank", "name:ro": "Banca Transilvania"}, "removeTags": {"amenity": "bank", "brand": "Banca Transilvania", "brand:en": "Transilvania Bank", "brand:ro": "Banca Transilvania", "brand:wikidata": "Q806161", "brand:wikipedia": "en:Banca Transilvania", "name": "Banca Transilvania", "name:en": "Transilvania Bank", "name:ro": "Banca Transilvania"}, "countryCodes": ["ro"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Bancaribe": {"name": "Bancaribe", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Bancaribe/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5717827"}, "addTags": {"amenity": "bank", "brand": "Bancaribe", "brand:wikidata": "Q5717827", "brand:wikipedia": "en:Bancaribe", "name": "Bancaribe"}, "removeTags": {"amenity": "bank", "brand": "Bancaribe", "brand:wikidata": "Q5717827", "brand:wikipedia": "en:Bancaribe", "name": "Bancaribe"}, "countryCodes": ["ve"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banco AV Villas": {"name": "Banco AV Villas", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/AVVillas/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854068"}, "addTags": {"amenity": "bank", "brand": "Banco AV Villas", "brand:en": "Bank of Villas", "brand:es": "Banco AV Villas", "brand:wikidata": "Q4854068", "brand:wikipedia": "en:Banco AV Villas", "name": "Banco AV Villas", "name:en": "Bank of Villas", "name:es": "Banco AV Villas", "operator": "Grupo Aval", "operator:en": "Aval Group", "operator:pt": "Grupo Aval", "operator:wikidata": "Q2053387", "operator:wikipedia": "en:Grupo Aval"}, "removeTags": {"amenity": "bank", "brand": "Banco AV Villas", "brand:en": "Bank of Villas", "brand:es": "Banco AV Villas", "brand:wikidata": "Q4854068", "brand:wikipedia": "en:Banco AV Villas", "name": "Banco AV Villas", "name:en": "Bank of Villas", "name:es": "Banco AV Villas", "operator": "Grupo Aval", "operator:en": "Aval Group", "operator:pt": "Grupo Aval", "operator:wikidata": "Q2053387", "operator:wikipedia": "en:Grupo Aval"}, "countryCodes": ["co"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco Agrario": {"name": "Banco Agrario", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanco%20Agrario%20de%20Colombia%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q20013358"}, "addTags": {"amenity": "bank", "brand": "Banco Agrario", "brand:en": "Agrarian Bank", "brand:wikidata": "Q20013358", "brand:wikipedia": "es:Banco Agrario de Colombia", "name": "Banco Agrario", "name:en": "Agrarian Bank", "name:es": "Banco Agrario", "official_name": "Banco Agrario de Colombia", "official_name:en": "Agrarian Bank of Colombia", "official_name:es": "Banco Agrario de Colombia"}, "removeTags": {"amenity": "bank", "brand": "Banco Agrario", "brand:en": "Agrarian Bank", "brand:wikidata": "Q20013358", "brand:wikipedia": "es:Banco Agrario de Colombia", "name": "Banco Agrario", "name:en": "Agrarian Bank", "name:es": "Banco Agrario", "official_name": "Banco Agrario de Colombia", "official_name:en": "Agrarian Bank of Colombia", "official_name:es": "Banco Agrario de Colombia"}, "countryCodes": ["co"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco Agrario de Colombia": {"name": "Banco Agrario de Colombia", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanco%20Agrario%20de%20Colombia%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q20013358"}, "addTags": {"amenity": "bank", "brand": "Banco Agrario de Colombia", "brand:wikidata": "Q20013358", "brand:wikipedia": "en:Banco Agrario de Colombia", "name": "Banco Agrario de Colombia"}, "removeTags": {"amenity": "bank", "brand": "Banco Agrario de Colombia", "brand:wikidata": "Q20013358", "brand:wikipedia": "en:Banco Agrario de Colombia", "name": "Banco Agrario de Colombia"}, "countryCodes": ["co"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Azteca": {"name": "Banco Azteca", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Banco%20Azteca.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854076"}, "addTags": {"amenity": "bank", "brand": "Banco Azteca", "brand:en": "Aztec Bank", "brand:es": "Banco Azteca", "brand:wikidata": "Q4854076", "brand:wikipedia": "en:Banco Azteca", "name": "Banco Azteca", "name:en": "Aztec Bank", "name:es": "Banco Azteca", "operator": "Grupo Elektra", "operator:en": "Elektra Group", "operator:es": "Grupo Elektra", "operator:wikidata": "Q1142753", "operator:wikipedia": "en:Grupo Elektra"}, "removeTags": {"amenity": "bank", "brand": "Banco Azteca", "brand:en": "Aztec Bank", "brand:es": "Banco Azteca", "brand:wikidata": "Q4854076", "brand:wikipedia": "en:Banco Azteca", "name": "Banco Azteca", "name:en": "Aztec Bank", "name:es": "Banco Azteca", "operator": "Grupo Elektra", "operator:en": "Elektra Group", "operator:es": "Grupo Elektra", "operator:wikidata": "Q1142753", "operator:wikipedia": "en:Grupo Elektra"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Banco Azteca": {"name": "Banco Azteca", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoAzteca/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854076"}, "addTags": {"amenity": "bank", "brand": "Banco Azteca", "brand:en": "Aztec Bank", "brand:es": "Banco Azteca", "brand:wikidata": "Q4854076", "brand:wikipedia": "en:Banco Azteca", "name": "Banco Azteca", "name:en": "Aztec Bank", "name:es": "Banco Azteca", "operator": "Grupo Elektra", "operator:en": "Elektra Group", "operator:es": "Grupo Elektra", "operator:wikidata": "Q1142753", "operator:wikipedia": "en:Grupo Elektra"}, "removeTags": {"amenity": "bank", "brand": "Banco Azteca", "brand:en": "Aztec Bank", "brand:es": "Banco Azteca", "brand:wikidata": "Q4854076", "brand:wikipedia": "en:Banco Azteca", "name": "Banco Azteca", "name:en": "Aztec Bank", "name:es": "Banco Azteca", "operator": "Grupo Elektra", "operator:en": "Elektra Group", "operator:es": "Grupo Elektra", "operator:wikidata": "Q1142753", "operator:wikipedia": "en:Grupo Elektra"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Banco BPM": {"name": "Banco BPM", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q27331643"}, "addTags": {"amenity": "bank", "brand": "Banco BPM", "brand:wikidata": "Q27331643", "brand:wikipedia": "en:Banco BPM", "name": "Banco BPM"}, "removeTags": {"amenity": "bank", "brand": "Banco BPM", "brand:wikidata": "Q27331643", "brand:wikipedia": "en:Banco BPM", "name": "Banco BPM"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Caja Social": {"name": "Banco Caja Social", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanco%20Caja%20Social%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5717869"}, "addTags": {"amenity": "bank", "brand": "Banco Caja Social", "brand:en": "Social Housing Bank", "brand:es": "Banco Caja Social", "brand:wikidata": "Q5717869", "brand:wikipedia": "es:Banco Caja Social", "name": "Banco Caja Social", "name:en": "Social Housing Bank", "name:es": "Banco Caja Social"}, "removeTags": {"amenity": "bank", "brand": "Banco Caja Social", "brand:en": "Social Housing Bank", "brand:es": "Banco Caja Social", "brand:wikidata": "Q5717869", "brand:wikipedia": "es:Banco Caja Social", "name": "Banco Caja Social", "name:en": "Social Housing Bank", "name:es": "Banco Caja Social"}, "countryCodes": ["co"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banco Caja Social": {"name": "Banco Caja Social", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoCajaSocial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5717869"}, "addTags": {"amenity": "bank", "brand": "Banco Caja Social", "brand:en": "Social Housing Bank", "brand:es": "Banco Caja Social", "brand:wikidata": "Q5717869", "brand:wikipedia": "es:Banco Caja Social", "name": "Banco Caja Social", "name:en": "Social Housing Bank", "name:es": "Banco Caja Social"}, "removeTags": {"amenity": "bank", "brand": "Banco Caja Social", "brand:en": "Social Housing Bank", "brand:es": "Banco Caja Social", "brand:wikidata": "Q5717869", "brand:wikipedia": "es:Banco Caja Social", "name": "Banco Caja Social", "name:en": "Social Housing Bank", "name:es": "Banco Caja Social"}, "countryCodes": ["co"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco Ciudad": {"name": "Banco Ciudad", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4856204"}, "addTags": {"amenity": "bank", "brand": "Banco Ciudad", "brand:en": "City Bank", "brand:es": "Banco Ciudad", "brand:wikidata": "Q4856204", "brand:wikipedia": "en:Bank of the City of Buenos Aires", "name": "Banco Ciudad", "name:en": "City Bank", "name:es": "Banco Ciudad", "official_name": "Banco Ciudad de Buenos Aires", "official_name:en": "Bank of the City of Buenos Aires", "official_name:es": "Banco Ciudad de Buenos Aires"}, "removeTags": {"amenity": "bank", "brand": "Banco Ciudad", "brand:en": "City Bank", "brand:es": "Banco Ciudad", "brand:wikidata": "Q4856204", "brand:wikipedia": "en:Bank of the City of Buenos Aires", "name": "Banco Ciudad", "name:en": "City Bank", "name:es": "Banco Ciudad", "official_name": "Banco Ciudad de Buenos Aires", "official_name:en": "Bank of the City of Buenos Aires", "official_name:es": "Banco Ciudad de Buenos Aires"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco Continental (Paraguay)": {"name": "Banco Continental (Paraguay)", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q62054564"}, "addTags": {"amenity": "bank", "brand": "Banco Continental", "brand:wikidata": "Q62054564", "name": "Banco Continental"}, "removeTags": {"amenity": "bank", "brand": "Banco Continental", "brand:wikidata": "Q62054564", "name": "Banco Continental"}, "countryCodes": ["py"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco Continental (Peru)": {"name": "Banco Continental (Peru)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BBVAContinental/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4835089"}, "addTags": {"amenity": "bank", "brand": "Banco Continental", "brand:en": "Continental Bank", "brand:es": "Banco Continental", "brand:wikidata": "Q4835089", "brand:wikipedia": "en:BBVA Continental", "name": "Banco Continental", "name:en": "Continental Bank", "name:es": "Banco Continental"}, "removeTags": {"amenity": "bank", "brand": "Banco Continental", "brand:en": "Continental Bank", "brand:es": "Banco Continental", "brand:wikidata": "Q4835089", "brand:wikipedia": "en:BBVA Continental", "name": "Banco Continental", "name:en": "Continental Bank", "name:es": "Banco Continental"}, "countryCodes": ["pe"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Estado": {"name": "Banco Estado", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5718188"}, "addTags": {"amenity": "bank", "brand": "Banco Estado", "brand:en": "State Bank", "brand:es": "Banco Estado", "brand:wikidata": "Q5718188", "brand:wikipedia": "es:Banco del Estado de Chile", "name": "Banco Estado", "name:en": "State Bank", "name:es": "Banco Estado", "official_name": "Banco del Estado de Chile", "official_name:en": "Bank of the State of Chile", "official_name:es": "Banco del Estado de Chile"}, "removeTags": {"amenity": "bank", "brand": "Banco Estado", "brand:en": "State Bank", "brand:es": "Banco Estado", "brand:wikidata": "Q5718188", "brand:wikipedia": "es:Banco del Estado de Chile", "name": "Banco Estado", "name:en": "State Bank", "name:es": "Banco Estado", "official_name": "Banco del Estado de Chile", "official_name:en": "Bank of the State of Chile", "official_name:es": "Banco del Estado de Chile"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Falabella": {"name": "Banco Falabella", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanco%20Falabella%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854088"}, "addTags": {"amenity": "bank", "brand": "Banco Falabella", "brand:en": "Falabella Bank", "brand:es": "Banco Falabella", "brand:wikidata": "Q4854088", "brand:wikipedia": "en:Banco Falabella", "name": "Banco Falabella", "name:en": "Falabella Bank", "name:es": "Banco Falabella", "operator": "Falabella", "operator:es": "Falabella", "operator:wikidata": "Q1374824", "operator:wikipedia": "en:S.A.C.I. Falabella"}, "removeTags": {"amenity": "bank", "brand": "Banco Falabella", "brand:en": "Falabella Bank", "brand:es": "Banco Falabella", "brand:wikidata": "Q4854088", "brand:wikipedia": "en:Banco Falabella", "name": "Banco Falabella", "name:en": "Falabella Bank", "name:es": "Banco Falabella", "operator": "Falabella", "operator:es": "Falabella", "operator:wikidata": "Q1374824", "operator:wikipedia": "en:S.A.C.I. Falabella"}, "countryCodes": ["cl", "co", "pe"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banco Estado": {"name": "Banco Estado", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoEstado/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5718188"}, "addTags": {"amenity": "bank", "brand": "Banco Estado", "brand:en": "State Bank", "brand:es": "Banco Estado", "brand:wikidata": "Q5718188", "brand:wikipedia": "es:Banco del Estado de Chile", "name": "Banco Estado", "name:en": "State Bank", "name:es": "Banco Estado", "official_name": "Banco del Estado de Chile", "official_name:en": "Bank of the State of Chile", "official_name:es": "Banco del Estado de Chile"}, "removeTags": {"amenity": "bank", "brand": "Banco Estado", "brand:en": "State Bank", "brand:es": "Banco Estado", "brand:wikidata": "Q5718188", "brand:wikipedia": "es:Banco del Estado de Chile", "name": "Banco Estado", "name:en": "State Bank", "name:es": "Banco Estado", "official_name": "Banco del Estado de Chile", "official_name:en": "Bank of the State of Chile", "official_name:es": "Banco del Estado de Chile"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banco Falabella": {"name": "Banco Falabella", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancofalabella/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854088"}, "addTags": {"amenity": "bank", "brand": "Banco Falabella", "brand:en": "Falabella Bank", "brand:es": "Banco Falabella", "brand:wikidata": "Q4854088", "brand:wikipedia": "en:Banco Falabella", "name": "Banco Falabella", "name:en": "Falabella Bank", "name:es": "Banco Falabella", "operator": "Falabella", "operator:es": "Falabella", "operator:wikidata": "Q1374824", "operator:wikipedia": "en:S.A.C.I. Falabella"}, "removeTags": {"amenity": "bank", "brand": "Banco Falabella", "brand:en": "Falabella Bank", "brand:es": "Banco Falabella", "brand:wikidata": "Q4854088", "brand:wikipedia": "en:Banco Falabella", "name": "Banco Falabella", "name:en": "Falabella Bank", "name:es": "Banco Falabella", "operator": "Falabella", "operator:es": "Falabella", "operator:wikidata": "Q1374824", "operator:wikipedia": "en:S.A.C.I. Falabella"}, "countryCodes": ["cl", "co", "pe"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco Fassil": {"name": "Banco Fassil", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancofassil/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q62118592"}, "addTags": {"amenity": "bank", "brand": "Banco Fassil", "brand:en": "Fassil Bank", "brand:es": "Banco Fassil", "brand:wikidata": "Q62118592", "name": "Banco Fassil", "name:en": "Fassil Bank", "name:es": "Banco Fassil"}, "removeTags": {"amenity": "bank", "brand": "Banco Fassil", "brand:en": "Fassil Bank", "brand:es": "Banco Fassil", "brand:wikidata": "Q62118592", "name": "Banco Fassil", "name:en": "Fassil Bank", "name:es": "Banco Fassil"}, "countryCodes": ["bo"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco G&T Continental": {"name": "Banco G&T Continental", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20G%26T.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5717949"}, "addTags": {"amenity": "bank", "brand": "Banco G&T Continental", "brand:en": "G&T Continental Bank", "brand:es": "Banco G&T Continental", "brand:wikidata": "Q5717949", "brand:wikipedia": "es:Banco GYT Continental, S.A.", "name": "Banco G&T Continental", "name:en": "G&T Continental Bank"}, "removeTags": {"amenity": "bank", "brand": "Banco G&T Continental", "brand:en": "G&T Continental Bank", "brand:es": "Banco G&T Continental", "brand:wikidata": "Q5717949", "brand:wikipedia": "es:Banco GYT Continental, S.A.", "name": "Banco G&T Continental", "name:en": "G&T Continental Bank"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco General": {"name": "Banco General", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q27618271"}, "addTags": {"amenity": "bank", "brand": "BW-Bank", "brand:en": "BW-Bank", "brand:es": "BW-Bank", "brand:wikidata": "Q27618271", "brand:wikipedia": "es:Banco General (Panamá)", "name": "Banco General", "name:en": "General Bank", "name:es": "Banco General"}, "removeTags": {"amenity": "bank", "brand": "BW-Bank", "brand:en": "BW-Bank", "brand:es": "BW-Bank", "brand:wikidata": "Q27618271", "brand:wikipedia": "es:Banco General (Panamá)", "name": "Banco General", "name:en": "General Bank", "name:es": "Banco General"}, "countryCodes": ["cr", "pa"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Industrial": {"name": "Banco Industrial", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo-banco-industrial-arg.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q16489444"}, "addTags": {"amenity": "bank", "brand": "Banco Industrial", "brand:en": "Industrial Bank", "brand:es": "Banco Industrial", "brand:wikidata": "Q16489444", "brand:wikipedia": "es:Banco Industrial", "name": "Banco Industrial", "name:en": "Industrial Bank", "name:es": "Banco Industrial", "operator": "BIND Group"}, "removeTags": {"amenity": "bank", "brand": "Banco Industrial", "brand:en": "Industrial Bank", "brand:es": "Banco Industrial", "brand:wikidata": "Q16489444", "brand:wikipedia": "es:Banco Industrial", "name": "Banco Industrial", "name:en": "Industrial Bank", "name:es": "Banco Industrial", "operator": "BIND Group"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Banco G&T Continental": {"name": "Banco G&T Continental", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/elbancodetuvida/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5717949"}, "addTags": {"amenity": "bank", "brand": "Banco G&T Continental", "brand:en": "G&T Continental Bank", "brand:es": "Banco G&T Continental", "brand:wikidata": "Q5717949", "brand:wikipedia": "es:Banco GYT Continental, S.A.", "name": "Banco G&T Continental", "name:en": "G&T Continental Bank"}, "removeTags": {"amenity": "bank", "brand": "Banco G&T Continental", "brand:en": "G&T Continental Bank", "brand:es": "Banco G&T Continental", "brand:wikidata": "Q5717949", "brand:wikipedia": "es:Banco GYT Continental, S.A.", "name": "Banco G&T Continental", "name:en": "G&T Continental Bank"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Banco General": {"name": "Banco General", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancogeneral/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q27618271"}, "addTags": {"amenity": "bank", "brand": "BW-Bank", "brand:en": "BW-Bank", "brand:es": "BW-Bank", "brand:wikidata": "Q27618271", "brand:wikipedia": "es:Banco General (Panamá)", "name": "Banco General", "name:en": "General Bank", "name:es": "Banco General"}, "removeTags": {"amenity": "bank", "brand": "BW-Bank", "brand:en": "BW-Bank", "brand:es": "BW-Bank", "brand:wikidata": "Q27618271", "brand:wikipedia": "es:Banco General (Panamá)", "name": "Banco General", "name:en": "General Bank", "name:es": "Banco General"}, "countryCodes": ["cr", "pa"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banco Industrial": {"name": "Banco Industrial", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bindARG/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q16489444"}, "addTags": {"amenity": "bank", "brand": "Banco Industrial", "brand:en": "Industrial Bank", "brand:es": "Banco Industrial", "brand:wikidata": "Q16489444", "brand:wikipedia": "es:Banco Industrial", "name": "Banco Industrial", "name:en": "Industrial Bank", "name:es": "Banco Industrial", "operator": "BIND Group"}, "removeTags": {"amenity": "bank", "brand": "Banco Industrial", "brand:en": "Industrial Bank", "brand:es": "Banco Industrial", "brand:wikidata": "Q16489444", "brand:wikipedia": "es:Banco Industrial", "name": "Banco Industrial", "name:en": "Industrial Bank", "name:es": "Banco Industrial", "operator": "BIND Group"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Banco Internacional (Chile)": {"name": "Banco Internacional (Chile)", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q56605586"}, "addTags": {"amenity": "bank", "brand": "Banco Internacional", "brand:en": "International Bank", "brand:es": "Banco Internacional", "brand:wikidata": "Q56605586", "brand:wikipedia": "es:Banco Internacional (Chile)", "name": "Banco Internacional", "name:en": "International Bank", "name:es": "Banco Internacional"}, "removeTags": {"amenity": "bank", "brand": "Banco Internacional", "brand:en": "International Bank", "brand:es": "Banco Internacional", "brand:wikidata": "Q56605586", "brand:wikipedia": "es:Banco Internacional (Chile)", "name": "Banco Internacional", "name:en": "International Bank", "name:es": "Banco Internacional"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco Internacional (Ecuador)": {"name": "Banco Internacional (Ecuador)", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806187"}, "addTags": {"amenity": "bank", "brand": "Banco Internacional", "brand:en": "International Bank", "brand:es": "Banco Internacional", "brand:wikidata": "Q806187", "brand:wikipedia": "es:Banco Internacional", "name": "Banco Internacional", "name:en": "International Bank", "name:es": "Banco Internacional"}, "removeTags": {"amenity": "bank", "brand": "Banco Internacional", "brand:en": "International Bank", "brand:es": "Banco Internacional", "brand:wikidata": "Q806187", "brand:wikipedia": "es:Banco Internacional", "name": "Banco Internacional", "name:en": "International Bank", "name:es": "Banco Internacional"}, "countryCodes": ["ec"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco Metropolitano": {"name": "Banco Metropolitano", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BanmetCuba/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q62118612"}, "addTags": {"amenity": "bank", "brand": "Banco Metropolitano", "brand:en": "Metroplitan Bank", "brand:es": "Banco Metropolitano", "brand:wikidata": "Q62118612", "name": "Banco Metropolitano", "name:en": "Metropolitan Bank", "name:es": "Banco Metropolitano"}, "removeTags": {"amenity": "bank", "brand": "Banco Metropolitano", "brand:en": "Metroplitan Bank", "brand:es": "Banco Metropolitano", "brand:wikidata": "Q62118612", "name": "Banco Metropolitano", "name:en": "Metropolitan Bank", "name:es": "Banco Metropolitano"}, "countryCodes": ["cu"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Nacional": {"name": "Banco Nacional", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854104"}, "addTags": {"amenity": "bank", "brand": "Banco Nacional", "brand:en": "National Bank", "brand:es": "Banco Nacional", "brand:wikidata": "Q4854104", "brand:wikipedia": "en:Banco Nacional", "name": "Banco Nacional", "name:en": "National Bank", "name:es": "Banco Nacional"}, "removeTags": {"amenity": "bank", "brand": "Banco Nacional", "brand:en": "National Bank", "brand:es": "Banco Nacional", "brand:wikidata": "Q4854104", "brand:wikipedia": "en:Banco Nacional", "name": "Banco Nacional", "name:en": "National Bank", "name:es": "Banco Nacional"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Banco Nacional": {"name": "Banco Nacional", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854104"}, "addTags": {"amenity": "bank", "brand": "Banco Nacional", "brand:en": "National Bank", "brand:es": "Banco Nacional", "brand:wikidata": "Q4854104", "brand:wikipedia": "en:Banco Nacional", "name": "Banco Nacional", "name:en": "National Bank", "name:es": "Banco Nacional"}, "removeTags": {"amenity": "bank", "brand": "Banco Nacional", "brand:en": "National Bank", "brand:es": "Banco Nacional", "brand:wikidata": "Q4854104", "brand:wikipedia": "en:Banco Nacional", "name": "Banco Nacional", "name:en": "National Bank", "name:es": "Banco Nacional"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco Nación": {"name": "Banco Nación", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanco%20Naci%C3%B3n.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2883376"}, "addTags": {"amenity": "bank", "brand": "Banco Nación", "brand:en": "Nation Bank", "brand:es": "Nation Bank", "brand:wikidata": "Q2883376", "brand:wikipedia": "en:Banco de la Nación Argentina", "name": "Banco Nación", "name:en": "Nation Bank", "name:es": "Banco Nación", "official_name": "Banco de la Nación Argentina", "official_name:en": "Bank of the Argentine Nation", "official_name:es": "Banco de la Nación Argentina"}, "removeTags": {"amenity": "bank", "brand": "Banco Nación", "brand:en": "Nation Bank", "brand:es": "Nation Bank", "brand:wikidata": "Q2883376", "brand:wikipedia": "en:Banco de la Nación Argentina", "name": "Banco Nación", "name:en": "Nation Bank", "name:es": "Banco Nación", "official_name": "Banco de la Nación Argentina", "official_name:en": "Bank of the Argentine Nation", "official_name:es": "Banco de la Nación Argentina"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Banco Pastor": {"name": "Banco Pastor", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20pastor168x78.gif%3Bpv91c0cc0e0080a771.gif&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806193"}, "addTags": {"amenity": "bank", "brand": "Banco Pastor", "brand:en": "Shepherd Bank", "brand:es": "Banco Pastor", "brand:wikidata": "Q806193", "brand:wikipedia": "en:Banco Pastor", "name": "Banco Pastor", "name:en": "Shepherd Bank", "name:es": "Banco Pastor", "official_name": "Banco Popular Pastor", "official_name:en": "Popular Shepherd Bank", "official_name:es": "Banco Popular Pastor", "operator": "Popular, Inc.", "operator:wikidata": "Q7229656", "operator:wikipedia": "en:Popular, Inc."}, "removeTags": {"amenity": "bank", "brand": "Banco Pastor", "brand:en": "Shepherd Bank", "brand:es": "Banco Pastor", "brand:wikidata": "Q806193", "brand:wikipedia": "en:Banco Pastor", "name": "Banco Pastor", "name:en": "Shepherd Bank", "name:es": "Banco Pastor", "official_name": "Banco Popular Pastor", "official_name:en": "Popular Shepherd Bank", "official_name:es": "Banco Popular Pastor", "operator": "Popular, Inc.", "operator:wikidata": "Q7229656", "operator:wikipedia": "en:Popular, Inc."}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco Pichincha": {"name": "Banco Pichincha", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854135"}, "addTags": {"amenity": "bank", "brand": "Banco Pichincha", "brand:en": "Pichincha Bank", "brand:es": "Banco Pichincha", "brand:wikidata": "Q4854135", "brand:wikipedia": "en:Banco Pichincha", "name": "Banco Pichincha", "name:en": "Pichincha Bank", "name:es": "Banco Pichincha", "operator": "Grupo Pichincha", "operator:wikidata": "Q6440687", "operator:wikipedia": "es:Grupo Pichincha"}, "removeTags": {"amenity": "bank", "brand": "Banco Pichincha", "brand:en": "Pichincha Bank", "brand:es": "Banco Pichincha", "brand:wikidata": "Q4854135", "brand:wikipedia": "en:Banco Pichincha", "name": "Banco Pichincha", "name:en": "Pichincha Bank", "name:es": "Banco Pichincha", "operator": "Grupo Pichincha", "operator:wikidata": "Q6440687", "operator:wikipedia": "es:Grupo Pichincha"}, "matchScore": 2, "suggestion": true}, @@ -1224,17 +1224,17 @@ "amenity/bank/Banco Popular de Ahorro": {"name": "Banco Popular de Ahorro", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bpa.cu/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q62118626"}, "addTags": {"amenity": "bank", "brand": "Banco Popular de Ahorro", "brand:en": "Popular Saving Bank", "brand:es": "Banco Popular de Ahorro", "brand:wikidata": "Q62118626", "name": "Banco Popular de Ahorro", "name:en": "Popular Saving Bank", "name:es": "Banco Popular de Ahorro"}, "removeTags": {"amenity": "bank", "brand": "Banco Popular de Ahorro", "brand:en": "Popular Saving Bank", "brand:es": "Banco Popular de Ahorro", "brand:wikidata": "Q62118626", "name": "Banco Popular de Ahorro", "name:en": "Popular Saving Bank", "name:es": "Banco Popular de Ahorro"}, "countryCodes": ["cu"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco Provincia": {"name": "Banco Provincia", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanco%20Provincia%20isologo%202017.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4856209"}, "addTags": {"amenity": "bank", "brand": "Banco Provincia", "brand:en": "Province Bank", "brand:es": "Banco Provincia", "brand:wikidata": "Q4856209", "brand:wikipedia": "es:Banco de la Provincia de Buenos Aires", "name": "Banco Provincia", "name:en": "Province Bank", "name:es": "Banco Provincia", "official_name": "Banco de la Provincia de Buenos Aires", "official_name:en": "Bank of the Province of Buenos Aires", "official_name:es": "Banco de la Provincia de Buenos Aires"}, "removeTags": {"amenity": "bank", "brand": "Banco Provincia", "brand:en": "Province Bank", "brand:es": "Banco Provincia", "brand:wikidata": "Q4856209", "brand:wikipedia": "es:Banco de la Provincia de Buenos Aires", "name": "Banco Provincia", "name:en": "Province Bank", "name:es": "Banco Provincia", "official_name": "Banco de la Provincia de Buenos Aires", "official_name:en": "Bank of the Province of Buenos Aires", "official_name:es": "Banco de la Provincia de Buenos Aires"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco Sabadell": {"name": "Banco Sabadell", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBSabadell%20POS%20COL.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q762330"}, "addTags": {"amenity": "bank", "brand": "Banco Sabadell", "brand:en": "Sabadell Bank", "brand:es": "Banco Sabadell", "brand:wikidata": "Q762330", "brand:wikipedia": "es:Banco Sabadell", "name": "Banco Sabadell", "name:en": "Sabadell Bank", "name:es": "Banco Sabadell"}, "removeTags": {"amenity": "bank", "brand": "Banco Sabadell", "brand:en": "Sabadell Bank", "brand:es": "Banco Sabadell", "brand:wikidata": "Q762330", "brand:wikipedia": "es:Banco Sabadell", "name": "Banco Sabadell", "name:en": "Sabadell Bank", "name:es": "Banco Sabadell"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Santa Fe": {"name": "Banco Santa Fe", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q6046871"}, "addTags": {"amenity": "bank", "brand": "Banco Santa Fe", "brand:en": "Santa Fe Bank", "brand:es": "Banco Santa Fe", "brand:wikidata": "Q6046871", "brand:wikipedia": "es:Nuevo Banco de Santa Fe", "name": "Banco Santa Fe", "name:en": "Santa Fe Bank", "name:es": "Banco Santa Fe", "official_name": "Nuevo Banco de Santa Fe", "official_name:en": "New Bank of Santa Fe", "official_name:es": "Nuevo Banco de Santa Fe"}, "removeTags": {"amenity": "bank", "brand": "Banco Santa Fe", "brand:en": "Santa Fe Bank", "brand:es": "Banco Santa Fe", "brand:wikidata": "Q6046871", "brand:wikipedia": "es:Nuevo Banco de Santa Fe", "name": "Banco Santa Fe", "name:en": "Santa Fe Bank", "name:es": "Banco Santa Fe", "official_name": "Nuevo Banco de Santa Fe", "official_name:en": "New Bank of Santa Fe", "official_name:es": "Nuevo Banco de Santa Fe"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Santander": {"name": "Banco Santander", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanco%20Santander%20Logotipo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q6496310"}, "addTags": {"amenity": "bank", "brand": "Banco Santander", "brand:en": "Santander Bank", "brand:es": "Banco Santander", "brand:wikidata": "Q6496310", "brand:wikipedia": "es:Banco Santander", "name": "Banco Santander", "name:en": "Santander Bank", "name:es": "Banco Santander"}, "removeTags": {"amenity": "bank", "brand": "Banco Santander", "brand:en": "Santander Bank", "brand:es": "Banco Santander", "brand:wikidata": "Q6496310", "brand:wikipedia": "es:Banco Santander", "name": "Banco Santander", "name:en": "Santander Bank", "name:es": "Banco Santander"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Banco Santa Fe": {"name": "Banco Santa Fe", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoSantaFe/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q6046871"}, "addTags": {"amenity": "bank", "brand": "Banco Santa Fe", "brand:en": "Santa Fe Bank", "brand:es": "Banco Santa Fe", "brand:wikidata": "Q6046871", "brand:wikipedia": "es:Nuevo Banco de Santa Fe", "name": "Banco Santa Fe", "name:en": "Santa Fe Bank", "name:es": "Banco Santa Fe", "official_name": "Nuevo Banco de Santa Fe", "official_name:en": "New Bank of Santa Fe", "official_name:es": "Nuevo Banco de Santa Fe"}, "removeTags": {"amenity": "bank", "brand": "Banco Santa Fe", "brand:en": "Santa Fe Bank", "brand:es": "Banco Santa Fe", "brand:wikidata": "Q6046871", "brand:wikipedia": "es:Nuevo Banco de Santa Fe", "name": "Banco Santa Fe", "name:en": "Santa Fe Bank", "name:es": "Banco Santa Fe", "official_name": "Nuevo Banco de Santa Fe", "official_name:en": "New Bank of Santa Fe", "official_name:es": "Nuevo Banco de Santa Fe"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banco Santander": {"name": "Banco Santander", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancosantander/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q6496310"}, "addTags": {"amenity": "bank", "brand": "Banco Santander", "brand:en": "Santander Bank", "brand:es": "Banco Santander", "brand:wikidata": "Q6496310", "brand:wikipedia": "es:Banco Santander", "name": "Banco Santander", "name:en": "Santander Bank", "name:es": "Banco Santander"}, "removeTags": {"amenity": "bank", "brand": "Banco Santander", "brand:en": "Santander Bank", "brand:es": "Banco Santander", "brand:wikidata": "Q6496310", "brand:wikipedia": "es:Banco Santander", "name": "Banco Santander", "name:en": "Santander Bank", "name:es": "Banco Santander"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Banco Sol (Angola)": {"name": "Banco Sol (Angola)", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q62118744"}, "addTags": {"amenity": "bank", "brand": "Banco Sol", "brand:pt": "Banco Sol", "brand:wikidata": "Q62118744", "name": "Banco Sol", "name:pt": "Banco Sol"}, "removeTags": {"amenity": "bank", "brand": "Banco Sol", "brand:pt": "Banco Sol", "brand:wikidata": "Q62118744", "name": "Banco Sol", "name:pt": "Banco Sol"}, "countryCodes": ["ao"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco Sol (Bolivia)": {"name": "Banco Sol (Bolivia)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoSolidarioBolivia/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q62118746"}, "addTags": {"amenity": "bank", "brand": "Banco Sol", "brand:pt": "Banco Sol", "brand:wikidata": "Q62118746", "name": "Banco Sol", "name:pt": "Banco Sol"}, "removeTags": {"amenity": "bank", "brand": "Banco Sol", "brand:pt": "Banco Sol", "brand:wikidata": "Q62118746", "name": "Banco Sol", "name:pt": "Banco Sol"}, "countryCodes": ["bo"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco de Bogotá": {"name": "Banco de Bogotá", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanco%20de%20Bogot%C3%A1%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854122"}, "addTags": {"amenity": "bank", "brand": "Banco de Bogotá", "brand:wikidata": "Q4854122", "brand:wikipedia": "es:Banco de Bogotá", "name": "Banco de Bogotá"}, "removeTags": {"amenity": "bank", "brand": "Banco de Bogotá", "brand:wikidata": "Q4854122", "brand:wikipedia": "es:Banco de Bogotá", "name": "Banco de Bogotá"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco de Chile": {"name": "Banco de Chile", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanco%20de%20Chile%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2882085"}, "addTags": {"amenity": "bank", "brand": "Banco de Chile", "brand:wikidata": "Q2882085", "brand:wikipedia": "es:Banco de Chile", "name": "Banco de Chile"}, "removeTags": {"amenity": "bank", "brand": "Banco de Chile", "brand:wikidata": "Q2882085", "brand:wikipedia": "es:Banco de Chile", "name": "Banco de Chile"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banco de Bogotá": {"name": "Banco de Bogotá", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancodeBogota/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854122"}, "addTags": {"amenity": "bank", "brand": "Banco de Bogotá", "brand:wikidata": "Q4854122", "brand:wikipedia": "es:Banco de Bogotá", "name": "Banco de Bogotá"}, "removeTags": {"amenity": "bank", "brand": "Banco de Bogotá", "brand:wikidata": "Q4854122", "brand:wikipedia": "es:Banco de Bogotá", "name": "Banco de Bogotá"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Banco de Chile": {"name": "Banco de Chile", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancochile.cl/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2882085"}, "addTags": {"amenity": "bank", "brand": "Banco de Chile", "brand:wikidata": "Q2882085", "brand:wikipedia": "es:Banco de Chile", "name": "Banco de Chile"}, "removeTags": {"amenity": "bank", "brand": "Banco de Chile", "brand:wikidata": "Q2882085", "brand:wikipedia": "es:Banco de Chile", "name": "Banco de Chile"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco de Desarrollo Banrural": {"name": "Banco de Desarrollo Banrural", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/grupofinancierobanrural/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5719130"}, "addTags": {"amenity": "bank", "brand": "Banco de Desarrollo Banrural", "brand:wikidata": "Q5719130", "brand:wikipedia": "es:Banrural", "name": "Banco de Desarrollo Banrural"}, "removeTags": {"amenity": "bank", "brand": "Banco de Desarrollo Banrural", "brand:wikidata": "Q5719130", "brand:wikipedia": "es:Banrural", "name": "Banco de Desarrollo Banrural"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco de Occidente": {"name": "Banco de Occidente", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanco%20de%20Occidente%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854127"}, "addTags": {"amenity": "bank", "brand": "Banco de Occidente", "brand:wikidata": "Q4854127", "brand:wikipedia": "es:Banco de Occidente (Colombia)", "name": "Banco de Occidente"}, "removeTags": {"amenity": "bank", "brand": "Banco de Occidente", "brand:wikidata": "Q4854127", "brand:wikipedia": "es:Banco de Occidente (Colombia)", "name": "Banco de Occidente"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco de Venezuela": {"name": "Banco de Venezuela", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanco%20de%20Venezuela%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q517093"}, "addTags": {"amenity": "bank", "brand": "Banco de Venezuela", "brand:wikidata": "Q517093", "brand:wikipedia": "es:Banco de Venezuela", "name": "Banco de Venezuela"}, "removeTags": {"amenity": "bank", "brand": "Banco de Venezuela", "brand:wikidata": "Q517093", "brand:wikipedia": "es:Banco de Venezuela", "name": "Banco de Venezuela"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Banco de Occidente": {"name": "Banco de Occidente", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BcoOccidente/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854127"}, "addTags": {"amenity": "bank", "brand": "Banco de Occidente", "brand:wikidata": "Q4854127", "brand:wikipedia": "es:Banco de Occidente (Colombia)", "name": "Banco de Occidente"}, "removeTags": {"amenity": "bank", "brand": "Banco de Occidente", "brand:wikidata": "Q4854127", "brand:wikipedia": "es:Banco de Occidente (Colombia)", "name": "Banco de Occidente"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Banco de Venezuela": {"name": "Banco de Venezuela", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancodeVenezuelaOficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q517093"}, "addTags": {"amenity": "bank", "brand": "Banco de Venezuela", "brand:wikidata": "Q517093", "brand:wikipedia": "es:Banco de Venezuela", "name": "Banco de Venezuela"}, "removeTags": {"amenity": "bank", "brand": "Banco de Venezuela", "brand:wikidata": "Q517093", "brand:wikipedia": "es:Banco de Venezuela", "name": "Banco de Venezuela"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Banco de la Nación (Argentina)": {"name": "Banco de la Nación (Argentina)", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanco%20Naci%C3%B3n.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2883376"}, "addTags": {"amenity": "bank", "brand": "Banco de la Nación", "brand:wikidata": "Q2883376", "brand:wikipedia": "en:Banco de la Nación Argentina", "name": "Banco de la Nación"}, "removeTags": {"amenity": "bank", "brand": "Banco de la Nación", "brand:wikidata": "Q2883376", "brand:wikipedia": "en:Banco de la Nación Argentina", "name": "Banco de la Nación"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco de la Nación (Peru)": {"name": "Banco de la Nación (Peru)", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogobn.gif&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4856206"}, "addTags": {"amenity": "bank", "brand": "Banco de la Nación", "brand:wikidata": "Q4856206", "brand:wikipedia": "en:Bank of the Nation (Peru)", "name": "Banco de la Nación"}, "removeTags": {"amenity": "bank", "brand": "Banco de la Nación", "brand:wikidata": "Q4856206", "brand:wikipedia": "en:Bank of the Nation (Peru)", "name": "Banco de la Nación"}, "countryCodes": ["pe"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banco de la Nación (Peru)": {"name": "Banco de la Nación (Peru)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancodelaNacion/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4856206"}, "addTags": {"amenity": "bank", "brand": "Banco de la Nación", "brand:wikidata": "Q4856206", "brand:wikipedia": "en:Bank of the Nation (Peru)", "name": "Banco de la Nación"}, "removeTags": {"amenity": "bank", "brand": "Banco de la Nación", "brand:wikidata": "Q4856206", "brand:wikipedia": "en:Bank of the Nation (Peru)", "name": "Banco de la Nación"}, "countryCodes": ["pe"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco del Austro": {"name": "Banco del Austro", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancodelaustro/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q62122344"}, "addTags": {"amenity": "bank", "brand": "Banco del Austro", "brand:wikidata": "Q62122344", "name": "Banco del Austro"}, "removeTags": {"amenity": "bank", "brand": "Banco del Austro", "brand:wikidata": "Q62122344", "name": "Banco del Austro"}, "countryCodes": ["ec"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco di Napoli": {"name": "Banco di Napoli", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3633835"}, "addTags": {"amenity": "bank", "brand": "Banco di Napoli", "brand:wikidata": "Q3633835", "brand:wikipedia": "en:Banco di Napoli", "name": "Banco di Napoli"}, "removeTags": {"amenity": "bank", "brand": "Banco di Napoli", "brand:wikidata": "Q3633835", "brand:wikipedia": "en:Banco di Napoli", "name": "Banco di Napoli"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banco di Sardegna": {"name": "Banco di Sardegna", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806205"}, "addTags": {"amenity": "bank", "brand": "Banco di Sardegna", "brand:wikidata": "Q806205", "brand:wikipedia": "en:Banco di Sardegna", "name": "Banco di Sardegna"}, "removeTags": {"amenity": "bank", "brand": "Banco di Sardegna", "brand:wikidata": "Q806205", "brand:wikipedia": "en:Banco di Sardegna", "name": "Banco di Sardegna"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, @@ -1266,18 +1266,18 @@ "amenity/bank/Bank of Ireland": {"name": "Bank of Ireland", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBank-of-Ireland-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806689"}, "addTags": {"amenity": "bank", "brand": "Bank of Ireland", "brand:wikidata": "Q806689", "brand:wikipedia": "en:Bank of Ireland", "name": "Bank of Ireland"}, "removeTags": {"amenity": "bank", "brand": "Bank of Ireland", "brand:wikidata": "Q806689", "brand:wikipedia": "en:Bank of Ireland", "name": "Bank of Ireland"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Bank of Maharashtra": {"name": "Bank of Maharashtra", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2004304"}, "addTags": {"amenity": "bank", "brand": "Bank of Maharashtra", "brand:wikidata": "Q2004304", "brand:wikipedia": "en:Bank of Maharashtra", "name": "Bank of Maharashtra"}, "removeTags": {"amenity": "bank", "brand": "Bank of Maharashtra", "brand:wikidata": "Q2004304", "brand:wikipedia": "en:Bank of Maharashtra", "name": "Bank of Maharashtra"}, "countryCodes": ["in"], "matchScore": 2, "suggestion": true}, "amenity/bank/Bank of Montreal": {"name": "Bank of Montreal", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BMOcommunity/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806693"}, "addTags": {"amenity": "bank", "brand": "Bank of Montreal", "brand:wikidata": "Q806693", "brand:wikipedia": "en:Bank of Montreal", "name": "Bank of Montreal"}, "removeTags": {"amenity": "bank", "brand": "Bank of Montreal", "brand:wikidata": "Q806693", "brand:wikipedia": "en:Bank of Montreal", "name": "Bank of Montreal"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank of New Zealand": {"name": "Bank of New Zealand", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBank%20of%20New%20Zealand%202008%20new%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806687"}, "addTags": {"amenity": "bank", "brand": "Bank of New Zealand", "brand:wikidata": "Q806687", "brand:wikipedia": "en:Bank of New Zealand", "name": "Bank of New Zealand"}, "removeTags": {"amenity": "bank", "brand": "Bank of New Zealand", "brand:wikidata": "Q806687", "brand:wikipedia": "en:Bank of New Zealand", "name": "Bank of New Zealand"}, "countryCodes": ["nz"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank of Scotland": {"name": "Bank of Scotland", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/902447929742553092/UfYosl_o_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q627381"}, "addTags": {"amenity": "bank", "brand": "Bank of Scotland", "brand:wikidata": "Q627381", "brand:wikipedia": "en:Bank of Scotland", "name": "Bank of Scotland"}, "removeTags": {"amenity": "bank", "brand": "Bank of Scotland", "brand:wikidata": "Q627381", "brand:wikipedia": "en:Bank of Scotland", "name": "Bank of Scotland"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Bank of New Zealand": {"name": "Bank of New Zealand", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BNZBank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806687"}, "addTags": {"amenity": "bank", "brand": "Bank of New Zealand", "brand:wikidata": "Q806687", "brand:wikipedia": "en:Bank of New Zealand", "name": "Bank of New Zealand"}, "removeTags": {"amenity": "bank", "brand": "Bank of New Zealand", "brand:wikidata": "Q806687", "brand:wikipedia": "en:Bank of New Zealand", "name": "Bank of New Zealand"}, "countryCodes": ["nz"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Bank of Scotland": {"name": "Bank of Scotland", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankofscotland/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q627381"}, "addTags": {"amenity": "bank", "brand": "Bank of Scotland", "brand:wikidata": "Q627381", "brand:wikipedia": "en:Bank of Scotland", "name": "Bank of Scotland"}, "removeTags": {"amenity": "bank", "brand": "Bank of Scotland", "brand:wikidata": "Q627381", "brand:wikipedia": "en:Bank of Scotland", "name": "Bank of Scotland"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "amenity/bank/Bank of the West": {"name": "Bank of the West", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1103424843482058752/wb7kFeSw_bigger.png", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2881919"}, "addTags": {"amenity": "bank", "brand": "Bank of the West", "brand:wikidata": "Q2881919", "brand:wikipedia": "en:Bank of the West", "name": "Bank of the West"}, "removeTags": {"amenity": "bank", "brand": "Bank of the West", "brand:wikidata": "Q2881919", "brand:wikipedia": "en:Bank of the West", "name": "Bank of the West"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bankia": {"name": "Bankia", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBankia%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806807"}, "addTags": {"amenity": "bank", "brand": "Bankia", "brand:wikidata": "Q806807", "brand:wikipedia": "en:Bankia", "name": "Bankia"}, "removeTags": {"amenity": "bank", "brand": "Bankia", "brand:wikidata": "Q806807", "brand:wikipedia": "en:Bankia", "name": "Bankia"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bankinter": {"name": "Bankinter", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBankinter.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806808"}, "addTags": {"amenity": "bank", "brand": "Bankinter", "brand:wikidata": "Q806808", "brand:wikipedia": "es:Bankinter", "name": "Bankinter"}, "removeTags": {"amenity": "bank", "brand": "Bankinter", "brand:wikidata": "Q806808", "brand:wikipedia": "es:Bankinter", "name": "Bankinter"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Banner Bank": {"name": "Banner Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4856910"}, "addTags": {"amenity": "bank", "brand": "Banner Bank", "brand:wikidata": "Q4856910", "brand:wikipedia": "en:Banner Bank", "name": "Banner Bank"}, "removeTags": {"amenity": "bank", "brand": "Banner Bank", "brand:wikidata": "Q4856910", "brand:wikipedia": "en:Banner Bank", "name": "Banner Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banorte": {"name": "Banorte", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanorte.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806914"}, "addTags": {"amenity": "bank", "brand": "Banorte", "brand:wikidata": "Q806914", "brand:wikipedia": "en:Banorte", "name": "Banorte"}, "removeTags": {"amenity": "bank", "brand": "Banorte", "brand:wikidata": "Q806914", "brand:wikipedia": "en:Banorte", "name": "Banorte"}, "countryCodes": ["mx"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banque Atlantique": {"name": "Banque Atlantique", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2882890"}, "addTags": {"amenity": "bank", "brand": "Banque Atlantique", "brand:wikidata": "Q2882890", "brand:wikipedia": "en:Atlantic Bank Group", "name": "Banque Atlantique"}, "removeTags": {"amenity": "bank", "brand": "Banque Atlantique", "brand:wikidata": "Q2882890", "brand:wikipedia": "en:Atlantic Bank Group", "name": "Banque Atlantique"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Banque Laurentienne": {"name": "Banque Laurentienne", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1360087"}, "addTags": {"amenity": "bank", "brand": "Banque Laurentienne", "brand:wikidata": "Q1360087", "brand:wikipedia": "en:Laurentian Bank of Canada", "name": "Banque Laurentienne"}, "removeTags": {"amenity": "bank", "brand": "Banque Laurentienne", "brand:wikidata": "Q1360087", "brand:wikipedia": "en:Laurentian Bank of Canada", "name": "Banque Laurentienne"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Bankia": {"name": "Bankia", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankia.es/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806807"}, "addTags": {"amenity": "bank", "brand": "Bankia", "brand:wikidata": "Q806807", "brand:wikipedia": "en:Bankia", "name": "Bankia"}, "removeTags": {"amenity": "bank", "brand": "Bankia", "brand:wikidata": "Q806807", "brand:wikipedia": "en:Bankia", "name": "Bankia"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Bankinter": {"name": "Bankinter", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankinter/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806808"}, "addTags": {"amenity": "bank", "brand": "Bankinter", "brand:wikidata": "Q806808", "brand:wikipedia": "es:Bankinter", "name": "Bankinter"}, "removeTags": {"amenity": "bank", "brand": "Bankinter", "brand:wikidata": "Q806808", "brand:wikipedia": "es:Bankinter", "name": "Bankinter"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Banner Bank": {"name": "Banner Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bannerbank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4856910"}, "addTags": {"amenity": "bank", "brand": "Banner Bank", "brand:wikidata": "Q4856910", "brand:wikipedia": "en:Banner Bank", "name": "Banner Bank"}, "removeTags": {"amenity": "bank", "brand": "Banner Bank", "brand:wikidata": "Q4856910", "brand:wikipedia": "en:Banner Bank", "name": "Banner Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banorte": {"name": "Banorte", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/banorte/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806914"}, "addTags": {"amenity": "bank", "brand": "Banorte", "brand:wikidata": "Q806914", "brand:wikipedia": "en:Banorte", "name": "Banorte"}, "removeTags": {"amenity": "bank", "brand": "Banorte", "brand:wikidata": "Q806914", "brand:wikipedia": "en:Banorte", "name": "Banorte"}, "countryCodes": ["mx"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banque Atlantique": {"name": "Banque Atlantique", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BqAtlantiqueOfficiel/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2882890"}, "addTags": {"amenity": "bank", "brand": "Banque Atlantique", "brand:wikidata": "Q2882890", "brand:wikipedia": "en:Atlantic Bank Group", "name": "Banque Atlantique"}, "removeTags": {"amenity": "bank", "brand": "Banque Atlantique", "brand:wikidata": "Q2882890", "brand:wikipedia": "en:Atlantic Bank Group", "name": "Banque Atlantique"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Banque Laurentienne": {"name": "Banque Laurentienne", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BLaurentienne/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1360087"}, "addTags": {"amenity": "bank", "brand": "Banque Laurentienne", "brand:wikidata": "Q1360087", "brand:wikipedia": "en:Laurentian Bank of Canada", "name": "Banque Laurentienne"}, "removeTags": {"amenity": "bank", "brand": "Banque Laurentienne", "brand:wikidata": "Q1360087", "brand:wikipedia": "en:Laurentian Bank of Canada", "name": "Banque Laurentienne"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banque Nationale (Canada)": {"name": "Banque Nationale (Canada)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/banquenationale/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q634298"}, "addTags": {"amenity": "bank", "brand": "Banque Nationale", "brand:wikidata": "Q634298", "brand:wikipedia": "en:National Bank of Canada", "name": "Banque Nationale"}, "removeTags": {"amenity": "bank", "brand": "Banque Nationale", "brand:wikidata": "Q634298", "brand:wikipedia": "en:National Bank of Canada", "name": "Banque Nationale"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banque Populaire": {"name": "Banque Populaire", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo-BP-VF%2BS.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2883441"}, "addTags": {"amenity": "bank", "brand": "Banque Populaire", "brand:wikidata": "Q2883441", "brand:wikipedia": "en:Banque Populaire du Maroc", "name": "Banque Populaire"}, "removeTags": {"amenity": "bank", "brand": "Banque Populaire", "brand:wikidata": "Q2883441", "brand:wikipedia": "en:Banque Populaire du Maroc", "name": "Banque Populaire"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Banrisul": {"name": "Banrisul", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4857098"}, "addTags": {"amenity": "bank", "brand": "Banrisul", "brand:wikidata": "Q4857098", "brand:wikipedia": "en:Banrisul", "name": "Banrisul"}, "removeTags": {"amenity": "bank", "brand": "Banrisul", "brand:wikidata": "Q4857098", "brand:wikipedia": "en:Banrisul", "name": "Banrisul"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Banrisul": {"name": "Banrisul", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/banrisul/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4857098"}, "addTags": {"amenity": "bank", "brand": "Banrisul", "brand:wikidata": "Q4857098", "brand:wikipedia": "en:Banrisul", "name": "Banrisul"}, "removeTags": {"amenity": "bank", "brand": "Banrisul", "brand:wikidata": "Q4857098", "brand:wikipedia": "en:Banrisul", "name": "Banrisul"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, "amenity/bank/Banrural": {"name": "Banrural", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/grupofinancierobanrural/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5719130"}, "addTags": {"amenity": "bank", "brand": "Banrural", "brand:wikidata": "Q5719130", "brand:wikipedia": "es:Banrural", "name": "Banrural"}, "removeTags": {"amenity": "bank", "brand": "Banrural", "brand:wikidata": "Q5719130", "brand:wikipedia": "es:Banrural", "name": "Banrural"}, "countryCodes": ["gt", "hn"], "matchScore": 2, "suggestion": true}, "amenity/bank/Barclays": {"name": "Barclays", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1064539548020105216/OATR1eRO_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q245343"}, "addTags": {"amenity": "bank", "brand": "Barclays", "brand:wikidata": "Q245343", "brand:wikipedia": "en:Barclays", "name": "Barclays"}, "removeTags": {"amenity": "bank", "brand": "Barclays", "brand:wikidata": "Q245343", "brand:wikipedia": "en:Barclays", "name": "Barclays"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Belfius": {"name": "Belfius", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBelfius.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1956014"}, "addTags": {"amenity": "bank", "brand": "Belfius", "brand:wikidata": "Q1956014", "brand:wikipedia": "en:Belfius", "name": "Belfius"}, "removeTags": {"amenity": "bank", "brand": "Belfius", "brand:wikidata": "Q1956014", "brand:wikipedia": "en:Belfius", "name": "Belfius"}, "countryCodes": ["be"], "matchScore": 2, "suggestion": true}, @@ -1355,17 +1355,31 @@ "amenity/bank/Ecobank": {"name": "Ecobank", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FEcobank%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q930225"}, "addTags": {"amenity": "bank", "brand": "Ecobank", "brand:wikidata": "Q930225", "brand:wikipedia": "en:Ecobank", "name": "Ecobank"}, "removeTags": {"amenity": "bank", "brand": "Ecobank", "brand:wikidata": "Q930225", "brand:wikipedia": "en:Ecobank", "name": "Ecobank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Emigrant Savings Bank": {"name": "Emigrant Savings Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5371104"}, "addTags": {"amenity": "bank", "brand": "Emigrant Savings Bank", "brand:wikidata": "Q5371104", "brand:wikipedia": "en:Emigrant Savings Bank", "name": "Emigrant Savings Bank"}, "removeTags": {"amenity": "bank", "brand": "Emigrant Savings Bank", "brand:wikidata": "Q5371104", "brand:wikipedia": "en:Emigrant Savings Bank", "name": "Emigrant Savings Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/bank/Emirates NBD": {"name": "Emirates NBD", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/EmiratesNBD/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5372575"}, "addTags": {"amenity": "bank", "brand": "Emirates NBD", "brand:wikidata": "Q5372575", "brand:wikipedia": "en:Emirates NBD", "name": "Emirates NBD"}, "removeTags": {"amenity": "bank", "brand": "Emirates NBD", "brand:wikidata": "Q5372575", "brand:wikipedia": "en:Emirates NBD", "name": "Emirates NBD"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Equity Bank (Congo)": {"name": "Equity Bank (Congo)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/www.equitybank.cd/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q21178738"}, "addTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q21178738", "brand:wikipedia": "en:Equity Bank Congo", "name": "Equity Bank"}, "removeTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q21178738", "brand:wikipedia": "en:Equity Bank Congo", "name": "Equity Bank"}, "countryCodes": ["cd"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Equity Bank (Kenya)": {"name": "Equity Bank (Kenya)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/KeEquityBank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5384664"}, "addTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q5384664", "brand:wikipedia": "en:Equity Bank Kenya Limited", "name": "Equity Bank"}, "removeTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q5384664", "brand:wikipedia": "en:Equity Bank Kenya Limited", "name": "Equity Bank"}, "countryCodes": ["ke"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Equity Bank (Rwanda)": {"name": "Equity Bank (Rwanda)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/RwEquityBank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5384665"}, "addTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q5384665", "brand:wikipedia": "en:Equity Bank Rwanda Limited", "name": "Equity Bank"}, "removeTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q5384665", "brand:wikipedia": "en:Equity Bank Rwanda Limited", "name": "Equity Bank"}, "countryCodes": ["rw"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Equity Bank (South Sudan)": {"name": "Equity Bank (South Sudan)", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5384666"}, "addTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q5384666", "brand:wikipedia": "en:Equity Bank South Sudan Limited", "name": "Equity Bank"}, "removeTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q5384666", "brand:wikipedia": "en:Equity Bank South Sudan Limited", "name": "Equity Bank"}, "countryCodes": ["ss"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Equity Bank (Tanzania)": {"name": "Equity Bank (Tanzania)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/TzEquityBank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5384667"}, "addTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q5384667", "brand:wikipedia": "en:Equity Bank Tanzania Limited", "name": "Equity Bank"}, "removeTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q5384667", "brand:wikipedia": "en:Equity Bank Tanzania Limited", "name": "Equity Bank"}, "countryCodes": ["tz"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Equity Bank (USA)": {"name": "Equity Bank (USA)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/equitybankusa/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q62260414"}, "addTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q62260414", "name": "Equity Bank"}, "removeTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q62260414", "name": "Equity Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Equity Bank (Uganda)": {"name": "Equity Bank (Uganda)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/UgEquityBank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5384668"}, "addTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q5384668", "brand:wikipedia": "en:Equity Bank Uganda Limited", "name": "Equity Bank"}, "removeTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q5384668", "brand:wikipedia": "en:Equity Bank Uganda Limited", "name": "Equity Bank"}, "countryCodes": ["ug"], "matchScore": 2, "suggestion": true}, "amenity/bank/Erste Bank": {"name": "Erste Bank", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FErste%20Bank%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q696867"}, "addTags": {"amenity": "bank", "brand": "Erste Bank", "brand:wikidata": "Q696867", "brand:wikipedia": "de:Erste Bank", "name": "Erste Bank"}, "removeTags": {"amenity": "bank", "brand": "Erste Bank", "brand:wikidata": "Q696867", "brand:wikipedia": "de:Erste Bank", "name": "Erste Bank"}, "countryCodes": ["at", "hr", "hu"], "matchScore": 2, "suggestion": true}, - "amenity/bank/FNB": {"name": "FNB", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3072956"}, "addTags": {"amenity": "bank", "brand": "FNB", "brand:wikidata": "Q3072956", "brand:wikipedia": "en:First National Bank (South Africa)", "name": "FNB"}, "removeTags": {"amenity": "bank", "brand": "FNB", "brand:wikidata": "Q3072956", "brand:wikipedia": "en:First National Bank (South Africa)", "name": "FNB"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Eurobank (Greece)": {"name": "Eurobank (Greece)", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/928963286518910976/KZD7wKh9_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q951850"}, "addTags": {"amenity": "bank", "brand": "Eurobank", "brand:wikidata": "Q951850", "brand:wikipedia": "el:Eurobank", "name": "Eurobank"}, "removeTags": {"amenity": "bank", "brand": "Eurobank", "brand:wikidata": "Q951850", "brand:wikipedia": "el:Eurobank", "name": "Eurobank"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Eurobank (Poland)": {"name": "Eurobank (Poland)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/eurobanksa/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q9256201"}, "addTags": {"amenity": "bank", "brand": "Eurobank", "brand:wikidata": "Q9256201", "brand:wikipedia": "pl:Euro Bank", "name": "Eurobank"}, "removeTags": {"amenity": "bank", "brand": "Eurobank", "brand:wikidata": "Q9256201", "brand:wikipedia": "pl:Euro Bank", "name": "Eurobank"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Eurobank (Serbia)": {"name": "Eurobank (Serbia)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/EurobankSrbija/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5411684"}, "addTags": {"amenity": "bank", "brand": "Eurobank", "brand:wikidata": "Q5411684", "brand:wikipedia": "sr:Eurobanka", "name": "Eurobank"}, "removeTags": {"amenity": "bank", "brand": "Eurobank", "brand:wikidata": "Q5411684", "brand:wikipedia": "sr:Eurobanka", "name": "Eurobank"}, "countryCodes": ["rs"], "matchScore": 2, "suggestion": true}, + "amenity/bank/FNB": {"name": "FNB", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3072956"}, "addTags": {"amenity": "bank", "brand": "FNB", "brand:wikidata": "Q3072956", "brand:wikipedia": "en:First National Bank (South Africa)", "name": "FNB", "official_name": "First National Bank"}, "removeTags": {"amenity": "bank", "brand": "FNB", "brand:wikidata": "Q3072956", "brand:wikipedia": "en:First National Bank (South Africa)", "name": "FNB", "official_name": "First National Bank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Faysal Bank": {"name": "Faysal Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5439099"}, "addTags": {"amenity": "bank", "brand": "Faysal Bank", "brand:wikidata": "Q5439099", "brand:wikipedia": "en:Faysal Bank", "name": "Faysal Bank"}, "removeTags": {"amenity": "bank", "brand": "Faysal Bank", "brand:wikidata": "Q5439099", "brand:wikipedia": "en:Faysal Bank", "name": "Faysal Bank"}, "countryCodes": ["pk"], "matchScore": 2, "suggestion": true}, "amenity/bank/Federal Bank": {"name": "Federal Bank", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFederal%20Bank.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2044983"}, "addTags": {"amenity": "bank", "brand": "Federal Bank", "brand:wikidata": "Q2044983", "brand:wikipedia": "en:Federal Bank", "name": "Federal Bank"}, "removeTags": {"amenity": "bank", "brand": "Federal Bank", "brand:wikidata": "Q2044983", "brand:wikipedia": "en:Federal Bank", "name": "Federal Bank"}, "countryCodes": ["in"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Fifth Third Bank": {"name": "Fifth Third Bank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1013779792141914120/FJ0U_8zw_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1411810"}, "addTags": {"amenity": "bank", "brand": "Fifth Third Bank", "brand:wikidata": "Q1411810", "brand:wikipedia": "en:Fifth Third Bank", "name": "Fifth Third Bank"}, "removeTags": {"amenity": "bank", "brand": "Fifth Third Bank", "brand:wikidata": "Q1411810", "brand:wikipedia": "en:Fifth Third Bank", "name": "Fifth Third Bank"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Fidelity Bank (Ghana)": {"name": "Fidelity Bank (Ghana)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/fidelitybankgh/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5446778"}, "addTags": {"amenity": "bank", "brand": "Fidelity Bank", "brand:wikidata": "Q5446778", "brand:wikipedia": "en:Fidelity Bank Ghana", "name": "Fidelity Bank"}, "removeTags": {"amenity": "bank", "brand": "Fidelity Bank", "brand:wikidata": "Q5446778", "brand:wikipedia": "en:Fidelity Bank Ghana", "name": "Fidelity Bank"}, "countryCodes": ["gh"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Fidelity Bank (Nigeria)": {"name": "Fidelity Bank (Nigeria)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/FidelityBankplc/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5446777"}, "addTags": {"amenity": "bank", "brand": "Fidelity Bank", "brand:wikidata": "Q5446777", "brand:wikipedia": "en:Fidelity Bank Nigeria", "name": "Fidelity Bank"}, "removeTags": {"amenity": "bank", "brand": "Fidelity Bank", "brand:wikidata": "Q5446777", "brand:wikipedia": "en:Fidelity Bank Nigeria", "name": "Fidelity Bank"}, "countryCodes": ["ng"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Fidelity Bank (USA)": {"name": "Fidelity Bank (USA)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/fidelityinvestments/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1411292"}, "addTags": {"amenity": "bank", "brand": "Fidelity Bank", "brand:wikidata": "Q1411292", "brand:wikipedia": "en:Fidelity Investments", "name": "Fidelity Bank"}, "removeTags": {"amenity": "bank", "brand": "Fidelity Bank", "brand:wikidata": "Q1411292", "brand:wikipedia": "en:Fidelity Investments", "name": "Fidelity Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Fifth Third Bank": {"name": "Fifth Third Bank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1013779792141914120/FJ0U_8zw_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1411810"}, "addTags": {"amenity": "bank", "brand": "Fifth Third Bank", "brand:wikidata": "Q1411810", "brand:wikipedia": "en:Fifth Third Bank", "name": "Fifth Third Bank"}, "removeTags": {"amenity": "bank", "brand": "Fifth Third Bank", "brand:wikidata": "Q1411810", "brand:wikipedia": "en:Fifth Third Bank", "name": "Fifth Third Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/bank/Finansbank": {"name": "Finansbank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1416237"}, "addTags": {"amenity": "bank", "brand": "Finansbank", "brand:wikidata": "Q1416237", "brand:wikipedia": "en:Finansbank", "name": "Finansbank"}, "removeTags": {"amenity": "bank", "brand": "Finansbank", "brand:wikidata": "Q1416237", "brand:wikipedia": "en:Finansbank", "name": "Finansbank"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/First Bank (Western USA)": {"name": "First Bank (Western USA)", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5452217"}, "addTags": {"amenity": "bank", "brand": "First Bank", "brand:wikidata": "Q5452217", "brand:wikipedia": "en:FirstBank Holding Co", "name": "First Bank", "short_name": "1STBank"}, "removeTags": {"amenity": "bank", "brand": "First Bank", "brand:wikidata": "Q5452217", "brand:wikipedia": "en:FirstBank Holding Co", "name": "First Bank", "short_name": "1STBank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/bank/First Citizens Bank": {"name": "First Citizens Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5452734"}, "addTags": {"amenity": "bank", "brand": "First Citizens Bank", "brand:wikidata": "Q5452734", "brand:wikipedia": "en:First Citizens Bank (Trinidad and Tobago)", "name": "First Citizens Bank"}, "removeTags": {"amenity": "bank", "brand": "First Citizens Bank", "brand:wikidata": "Q5452734", "brand:wikipedia": "en:First Citizens Bank (Trinidad and Tobago)", "name": "First Citizens Bank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/First Midwest Bank": {"name": "First Midwest Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5453331"}, "addTags": {"amenity": "bank", "brand": "First Midwest Bank", "brand:wikidata": "Q5453331", "brand:wikipedia": "en:First Midwest Bank", "name": "First Midwest Bank"}, "removeTags": {"amenity": "bank", "brand": "First Midwest Bank", "brand:wikidata": "Q5453331", "brand:wikipedia": "en:First Midwest Bank", "name": "First Midwest Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/bank/First National Bank": {"name": "First National Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5426765"}, "addTags": {"amenity": "bank", "brand": "First National Bank", "brand:wikidata": "Q5426765", "brand:wikipedia": "en:F.N.B. Corporation", "name": "First National Bank"}, "removeTags": {"amenity": "bank", "brand": "First National Bank", "brand:wikidata": "Q5426765", "brand:wikipedia": "en:F.N.B. Corporation", "name": "First National Bank"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/First National Bank": {"name": "First National Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5426765"}, "addTags": {"amenity": "bank", "brand": "First National Bank", "brand:wikidata": "Q5426765", "brand:wikipedia": "en:F.N.B. Corporation", "name": "First National Bank"}, "removeTags": {"amenity": "bank", "brand": "First National Bank", "brand:wikidata": "Q5426765", "brand:wikipedia": "en:F.N.B. Corporation", "name": "First National Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/bank/Frost Bank": {"name": "Frost Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5506152"}, "addTags": {"amenity": "bank", "brand": "Frost Bank", "brand:wikidata": "Q5506152", "brand:wikipedia": "en:Frost Bank", "name": "Frost Bank"}, "removeTags": {"amenity": "bank", "brand": "Frost Bank", "brand:wikidata": "Q5506152", "brand:wikipedia": "en:Frost Bank", "name": "Frost Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/bank/GCB Bank": {"name": "GCB Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1521346"}, "addTags": {"amenity": "bank", "brand": "GCB Bank", "brand:wikidata": "Q1521346", "brand:wikipedia": "en:GCB Bank Limited", "name": "GCB Bank"}, "removeTags": {"amenity": "bank", "brand": "GCB Bank", "brand:wikidata": "Q1521346", "brand:wikipedia": "en:GCB Bank Limited", "name": "GCB Bank"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/GCB Bank": {"name": "GCB Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1521346"}, "addTags": {"amenity": "bank", "brand": "GCB Bank", "brand:wikidata": "Q1521346", "brand:wikipedia": "en:GCB Bank", "name": "GCB Bank"}, "removeTags": {"amenity": "bank", "brand": "GCB Bank", "brand:wikidata": "Q1521346", "brand:wikipedia": "en:GCB Bank", "name": "GCB Bank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Galicia": {"name": "Galicia", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanco%20galicia%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5717952"}, "addTags": {"amenity": "bank", "brand": "Galicia", "brand:wikidata": "Q5717952", "brand:wikipedia": "es:Banco Galicia", "name": "Galicia"}, "removeTags": {"amenity": "bank", "brand": "Galicia", "brand:wikidata": "Q5717952", "brand:wikipedia": "es:Banco Galicia", "name": "Galicia"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, "amenity/bank/Garanti": {"name": "Garanti", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q322962"}, "addTags": {"amenity": "bank", "brand": "Garanti", "brand:wikidata": "Q322962", "brand:wikipedia": "en:Garanti Bank", "name": "Garanti"}, "removeTags": {"amenity": "bank", "brand": "Garanti", "brand:wikidata": "Q322962", "brand:wikipedia": "en:Garanti Bank", "name": "Garanti"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Garanti Bankası": {"name": "Garanti Bankası", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q322962"}, "addTags": {"amenity": "bank", "brand": "Garanti Bankası", "brand:wikidata": "Q322962", "brand:wikipedia": "en:Garanti Bank", "name": "Garanti Bankası"}, "removeTags": {"amenity": "bank", "brand": "Garanti Bankası", "brand:wikidata": "Q322962", "brand:wikipedia": "en:Garanti Bank", "name": "Garanti Bankası"}, "matchScore": 2, "suggestion": true}, @@ -1424,12 +1438,14 @@ "amenity/bank/Mercantil": {"name": "Mercantil", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q6818004"}, "addTags": {"amenity": "bank", "brand": "Mercantil", "brand:wikidata": "Q6818004", "brand:wikipedia": "en:Mercantil Servicios Financieros", "name": "Mercantil"}, "removeTags": {"amenity": "bank", "brand": "Mercantil", "brand:wikidata": "Q6818004", "brand:wikipedia": "en:Mercantil Servicios Financieros", "name": "Mercantil"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Mibanco": {"name": "Mibanco", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5558589"}, "addTags": {"amenity": "bank", "brand": "Mibanco", "brand:wikidata": "Q5558589", "brand:wikipedia": "es:MiBanco", "name": "Mibanco"}, "removeTags": {"amenity": "bank", "brand": "Mibanco", "brand:wikidata": "Q5558589", "brand:wikipedia": "es:MiBanco", "name": "Mibanco"}, "countryCodes": ["pe"], "matchScore": 2, "suggestion": true}, "amenity/bank/MidFirst Bank": {"name": "MidFirst Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q17081131"}, "addTags": {"amenity": "bank", "brand": "MidFirst Bank", "brand:wikidata": "Q17081131", "brand:wikipedia": "en:MidFirst Bank", "name": "MidFirst Bank"}, "removeTags": {"amenity": "bank", "brand": "MidFirst Bank", "brand:wikidata": "Q17081131", "brand:wikipedia": "en:MidFirst Bank", "name": "MidFirst Bank"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Millennium Bank": {"name": "Millennium Bank", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBank%20Millenium.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4855947"}, "addTags": {"amenity": "bank", "brand": "Millennium Bank", "brand:wikidata": "Q4855947", "brand:wikipedia": "pl:Bank Millennium", "name": "Millennium Bank"}, "removeTags": {"amenity": "bank", "brand": "Millennium Bank", "brand:wikidata": "Q4855947", "brand:wikipedia": "pl:Bank Millennium", "name": "Millennium Bank"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Millennium Bank": {"name": "Millennium Bank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/684026097688817664/fg1i7QVc_bigger.png", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4855947"}, "addTags": {"amenity": "bank", "brand": "Millennium Bank", "brand:wikidata": "Q4855947", "brand:wikipedia": "pl:Bank Millennium", "name": "Millennium Bank"}, "removeTags": {"amenity": "bank", "brand": "Millennium Bank", "brand:wikidata": "Q4855947", "brand:wikipedia": "pl:Bank Millennium", "name": "Millennium Bank"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "amenity/bank/Millennium bcp": {"name": "Millennium bcp", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/MaisMillennium/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q118581"}, "addTags": {"amenity": "bank", "brand": "Millennium bcp", "brand:wikidata": "Q118581", "brand:wikipedia": "pt:Banco Comercial Português", "name": "Millennium bcp", "official_name": "Banco Comercial Português", "official_name:en": "Portuguese Commercial Bank", "official_name:es": "Banco Comercial Português"}, "removeTags": {"amenity": "bank", "brand": "Millennium bcp", "brand:wikidata": "Q118581", "brand:wikipedia": "pt:Banco Comercial Português", "name": "Millennium bcp", "official_name": "Banco Comercial Português", "official_name:en": "Portuguese Commercial Bank", "official_name:es": "Banco Comercial Português"}, "countryCodes": ["pt"], "matchScore": 2, "suggestion": true}, "amenity/bank/Monte dei Paschi di Siena": {"name": "Monte dei Paschi di Siena", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q46730"}, "addTags": {"amenity": "bank", "brand": "Monte dei Paschi di Siena", "brand:wikidata": "Q46730", "brand:wikipedia": "en:Banca Monte dei Paschi di Siena", "name": "Monte dei Paschi di Siena"}, "removeTags": {"amenity": "bank", "brand": "Monte dei Paschi di Siena", "brand:wikidata": "Q46730", "brand:wikipedia": "en:Banca Monte dei Paschi di Siena", "name": "Monte dei Paschi di Siena"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Montepio": {"name": "Montepio", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1946091"}, "addTags": {"amenity": "bank", "brand": "Montepio", "brand:wikidata": "Q1946091", "brand:wikipedia": "en:Montepio (bank)", "name": "Montepio"}, "removeTags": {"amenity": "bank", "brand": "Montepio", "brand:wikidata": "Q1946091", "brand:wikipedia": "en:Montepio (bank)", "name": "Montepio"}, "matchScore": 2, "suggestion": true}, "amenity/bank/NAB": {"name": "NAB", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1430985"}, "addTags": {"amenity": "bank", "brand": "NAB", "brand:wikidata": "Q1430985", "brand:wikipedia": "en:National Australia Bank", "name": "NAB"}, "removeTags": {"amenity": "bank", "brand": "NAB", "brand:wikidata": "Q1430985", "brand:wikipedia": "en:National Australia Bank", "name": "NAB"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/NSB": {"name": "NSB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/NSBSLOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q12500189"}, "addTags": {"amenity": "bank", "brand": "NSB", "brand:wikidata": "Q12500189", "brand:wikipedia": "en:National Savings Bank (Sri Lanka)", "name": "NSB"}, "removeTags": {"amenity": "bank", "brand": "NSB", "brand:wikidata": "Q12500189", "brand:wikipedia": "en:National Savings Bank (Sri Lanka)", "name": "NSB"}, "countryCodes": ["lk"], "matchScore": 2, "suggestion": true}, "amenity/bank/NatWest": {"name": "NatWest", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1073845867617112064/Qu2rnhKY_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2740021"}, "addTags": {"amenity": "bank", "brand": "NatWest", "brand:wikidata": "Q2740021", "brand:wikipedia": "en:NatWest", "name": "NatWest"}, "removeTags": {"amenity": "bank", "brand": "NatWest", "brand:wikidata": "Q2740021", "brand:wikipedia": "en:NatWest", "name": "NatWest"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/National Bank": {"name": "National Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/banquenationale/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q634298"}, "addTags": {"amenity": "bank", "brand": "National Bank", "brand:wikidata": "Q634298", "brand:wikipedia": "en:National Bank of Canada", "name": "National Bank", "official_name": "National Bank of Canada"}, "removeTags": {"amenity": "bank", "brand": "National Bank", "brand:wikidata": "Q634298", "brand:wikipedia": "en:National Bank of Canada", "name": "National Bank", "official_name": "National Bank of Canada"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/bank/Nationwide": {"name": "Nationwide", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/770597713893285888/ItnmL0YM_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q846735"}, "addTags": {"amenity": "bank", "brand": "Nationwide", "brand:wikidata": "Q846735", "brand:wikipedia": "en:Nationwide Building Society", "name": "Nationwide"}, "removeTags": {"amenity": "bank", "brand": "Nationwide", "brand:wikidata": "Q846735", "brand:wikipedia": "en:Nationwide Building Society", "name": "Nationwide"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Navy Federal Credit Union": {"name": "Navy Federal Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/NavyFederal/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q6982632"}, "addTags": {"amenity": "bank", "brand": "Navy Federal Credit Union", "brand:wikidata": "Q6982632", "brand:wikipedia": "en:Navy Federal Credit Union", "name": "Navy Federal Credit Union"}, "removeTags": {"amenity": "bank", "brand": "Navy Federal Credit Union", "brand:wikidata": "Q6982632", "brand:wikipedia": "en:Navy Federal Credit Union", "name": "Navy Federal Credit Union"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Nedbank": {"name": "Nedbank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2751701"}, "addTags": {"amenity": "bank", "brand": "Nedbank", "brand:wikidata": "Q2751701", "brand:wikipedia": "en:Nedbank", "name": "Nedbank"}, "removeTags": {"amenity": "bank", "brand": "Nedbank", "brand:wikidata": "Q2751701", "brand:wikipedia": "en:Nedbank", "name": "Nedbank"}, "matchScore": 2, "suggestion": true}, @@ -1445,6 +1461,7 @@ "amenity/bank/Osuuspankki": {"name": "Osuuspankki", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FOP%20Financial%20Group.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4045597"}, "addTags": {"amenity": "bank", "brand": "Osuuspankki", "brand:wikidata": "Q4045597", "brand:wikipedia": "fi:OP (finanssiryhmä)", "name": "Osuuspankki"}, "removeTags": {"amenity": "bank", "brand": "Osuuspankki", "brand:wikidata": "Q4045597", "brand:wikipedia": "fi:OP (finanssiryhmä)", "name": "Osuuspankki"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, "amenity/bank/PBZ": {"name": "PBZ", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7246343"}, "addTags": {"amenity": "bank", "brand": "PBZ", "brand:wikidata": "Q7246343", "brand:wikipedia": "en:Privredna banka Zagreb", "name": "PBZ"}, "removeTags": {"amenity": "bank", "brand": "PBZ", "brand:wikidata": "Q7246343", "brand:wikipedia": "en:Privredna banka Zagreb", "name": "PBZ"}, "matchScore": 2, "suggestion": true}, "amenity/bank/PKO BP": {"name": "PKO BP", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogotyp%20PKO%20BP.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q578832"}, "addTags": {"amenity": "bank", "brand": "PKO BP", "brand:wikidata": "Q578832", "brand:wikipedia": "pl:Powszechna Kasa Oszczędności Bank Polski", "name": "PKO BP"}, "removeTags": {"amenity": "bank", "brand": "PKO BP", "brand:wikidata": "Q578832", "brand:wikipedia": "pl:Powszechna Kasa Oszczędności Bank Polski", "name": "PKO BP"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "amenity/bank/PNB": {"name": "PNB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/PNBph/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1657971"}, "addTags": {"amenity": "bank", "brand": "PNB", "brand:wikidata": "Q1657971", "brand:wikipedia": "en:Philippine National Bank", "name": "PNB", "official_name": "Philippine National Bank"}, "removeTags": {"amenity": "bank", "brand": "PNB", "brand:wikidata": "Q1657971", "brand:wikipedia": "en:Philippine National Bank", "name": "PNB", "official_name": "Philippine National Bank"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, "amenity/bank/PNC Bank": {"name": "PNC Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q38928"}, "addTags": {"amenity": "bank", "brand": "PNC Bank", "brand:wikidata": "Q38928", "brand:wikipedia": "en:PNC Financial Services", "name": "PNC Bank"}, "removeTags": {"amenity": "bank", "brand": "PNC Bank", "brand:wikidata": "Q38928", "brand:wikipedia": "en:PNC Financial Services", "name": "PNC Bank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/PSBank": {"name": "PSBank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7185203"}, "addTags": {"amenity": "bank", "brand": "PSBank", "brand:wikidata": "Q7185203", "brand:wikipedia": "en:Philippine Savings Bank", "name": "PSBank"}, "removeTags": {"amenity": "bank", "brand": "PSBank", "brand:wikidata": "Q7185203", "brand:wikipedia": "en:Philippine Savings Bank", "name": "PSBank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Panin Bank": {"name": "Panin Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q12502751"}, "addTags": {"amenity": "bank", "brand": "Panin Bank", "brand:wikidata": "Q12502751", "brand:wikipedia": "id:Panin Bank", "name": "Panin Bank"}, "removeTags": {"amenity": "bank", "brand": "Panin Bank", "brand:wikidata": "Q12502751", "brand:wikipedia": "id:Panin Bank", "name": "Panin Bank"}, "matchScore": 2, "suggestion": true}, @@ -1452,17 +1469,16 @@ "amenity/bank/Pekao SA": {"name": "Pekao SA", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBank%20Pekao%20SA%20Logo%20(2017).svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806642"}, "addTags": {"amenity": "bank", "brand": "Pekao SA", "brand:wikidata": "Q806642", "brand:wikipedia": "pl:Bank Polska Kasa Opieki", "name": "Pekao SA"}, "removeTags": {"amenity": "bank", "brand": "Pekao SA", "brand:wikidata": "Q806642", "brand:wikipedia": "pl:Bank Polska Kasa Opieki", "name": "Pekao SA"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "amenity/bank/People's United Bank": {"name": "People's United Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7165802"}, "addTags": {"amenity": "bank", "brand": "People's United Bank", "brand:wikidata": "Q7165802", "brand:wikipedia": "en:People's United Financial", "name": "People's United Bank"}, "removeTags": {"amenity": "bank", "brand": "People's United Bank", "brand:wikidata": "Q7165802", "brand:wikipedia": "en:People's United Financial", "name": "People's United Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/bank/Peoples Bank": {"name": "Peoples Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7166050"}, "addTags": {"amenity": "bank", "brand": "Peoples Bank", "brand:wikidata": "Q7166050", "brand:wikipedia": "en:Peoples Bank", "name": "Peoples Bank"}, "removeTags": {"amenity": "bank", "brand": "Peoples Bank", "brand:wikidata": "Q7166050", "brand:wikipedia": "en:Peoples Bank", "name": "Peoples Bank"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Philippine National Bank": {"name": "Philippine National Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1657971"}, "addTags": {"amenity": "bank", "brand": "Philippine National Bank", "brand:wikidata": "Q1657971", "brand:wikipedia": "en:Philippine National Bank", "name": "Philippine National Bank"}, "removeTags": {"amenity": "bank", "brand": "Philippine National Bank", "brand:wikidata": "Q1657971", "brand:wikipedia": "en:Philippine National Bank", "name": "Philippine National Bank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Piraeus Bank": {"name": "Piraeus Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3312"}, "addTags": {"amenity": "bank", "brand": "Piraeus Bank", "brand:wikidata": "Q3312", "brand:wikipedia": "en:Piraeus Bank", "name": "Piraeus Bank"}, "removeTags": {"amenity": "bank", "brand": "Piraeus Bank", "brand:wikidata": "Q3312", "brand:wikipedia": "en:Piraeus Bank", "name": "Piraeus Bank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Postbank (Bulgaria)": {"name": "Postbank (Bulgaria)", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7234083"}, "addTags": {"amenity": "bank", "brand": "Postbank", "brand:wikidata": "Q7234083", "brand:wikipedia": "en:Bulgarian Postbank", "name": "Postbank"}, "removeTags": {"amenity": "bank", "brand": "Postbank", "brand:wikidata": "Q7234083", "brand:wikipedia": "en:Bulgarian Postbank", "name": "Postbank"}, "countryCodes": ["bg"], "matchScore": 2, "suggestion": true}, "amenity/bank/Postbank (Germany)": {"name": "Postbank (Germany)", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPostbank-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q708835"}, "addTags": {"amenity": "bank", "brand": "Postbank", "brand:wikidata": "Q708835", "brand:wikipedia": "en:Deutsche Postbank", "name": "Postbank"}, "removeTags": {"amenity": "bank", "brand": "Postbank", "brand:wikidata": "Q708835", "brand:wikipedia": "en:Deutsche Postbank", "name": "Postbank"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "amenity/bank/Prima banka": {"name": "Prima banka", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q13538661"}, "addTags": {"amenity": "bank", "brand": "Prima banka", "brand:wikidata": "Q13538661", "brand:wikipedia": "sk:Prima banka Slovensko", "name": "Prima banka"}, "removeTags": {"amenity": "bank", "brand": "Prima banka", "brand:wikidata": "Q13538661", "brand:wikipedia": "sk:Prima banka Slovensko", "name": "Prima banka"}, "countryCodes": ["sk"], "matchScore": 2, "suggestion": true}, "amenity/bank/Provincial": {"name": "Provincial", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bbvaprovincial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4835087"}, "addTags": {"amenity": "bank", "brand": "Provincial", "brand:wikidata": "Q4835087", "brand:wikipedia": "es:BBVA Provincial", "name": "Provincial"}, "removeTags": {"amenity": "bank", "brand": "Provincial", "brand:wikidata": "Q4835087", "brand:wikipedia": "es:BBVA Provincial", "name": "Provincial"}, "countryCodes": ["ve"], "matchScore": 2, "suggestion": true}, "amenity/bank/Public Bank (Malaysia)": {"name": "Public Bank (Malaysia)", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3046561"}, "addTags": {"amenity": "bank", "brand": "Public Bank", "brand:wikidata": "Q3046561", "brand:wikipedia": "en:Public Bank Berhad", "name": "Public Bank"}, "removeTags": {"amenity": "bank", "brand": "Public Bank", "brand:wikidata": "Q3046561", "brand:wikipedia": "en:Public Bank Berhad", "name": "Public Bank"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Punjab National Bank": {"name": "Punjab National Bank", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPunjab%20National%20Bank.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2743499"}, "addTags": {"amenity": "bank", "brand": "Punjab National Bank", "brand:wikidata": "Q2743499", "brand:wikipedia": "en:Punjab National Bank", "name": "Punjab National Bank"}, "removeTags": {"amenity": "bank", "brand": "Punjab National Bank", "brand:wikidata": "Q2743499", "brand:wikipedia": "en:Punjab National Bank", "name": "Punjab National Bank"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/RBC": {"name": "RBC", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q735261"}, "addTags": {"amenity": "bank", "brand": "RBC", "brand:wikidata": "Q735261", "brand:wikipedia": "en:Royal Bank of Canada", "name": "RBC"}, "removeTags": {"amenity": "bank", "brand": "RBC", "brand:wikidata": "Q735261", "brand:wikipedia": "en:Royal Bank of Canada", "name": "RBC"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/RBS": {"name": "RBS", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1069030098744090624/9HLo73Y8_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q160126"}, "addTags": {"amenity": "bank", "brand": "RBS", "brand:wikidata": "Q160126", "brand:wikipedia": "en:Royal Bank of Scotland", "name": "RBS"}, "removeTags": {"amenity": "bank", "brand": "RBS", "brand:wikidata": "Q160126", "brand:wikipedia": "en:Royal Bank of Scotland", "name": "RBS"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/RCBC": {"name": "RCBC", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7339070"}, "addTags": {"amenity": "bank", "brand": "RCBC", "brand:wikidata": "Q7339070", "brand:wikipedia": "en:Rizal Commercial Banking Corporation", "name": "RCBC"}, "removeTags": {"amenity": "bank", "brand": "RCBC", "brand:wikidata": "Q7339070", "brand:wikipedia": "en:Rizal Commercial Banking Corporation", "name": "RCBC"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Punjab National Bank": {"name": "Punjab National Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/pnbindia/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2743499"}, "addTags": {"amenity": "bank", "brand": "Punjab National Bank", "brand:wikidata": "Q2743499", "brand:wikipedia": "en:Punjab National Bank", "name": "Punjab National Bank"}, "removeTags": {"amenity": "bank", "brand": "Punjab National Bank", "brand:wikidata": "Q2743499", "brand:wikipedia": "en:Punjab National Bank", "name": "Punjab National Bank"}, "countryCodes": ["in"], "matchScore": 2, "suggestion": true}, + "amenity/bank/RBC": {"name": "RBC", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q735261"}, "addTags": {"amenity": "bank", "brand": "RBC", "brand:wikidata": "Q735261", "brand:wikipedia": "en:Royal Bank of Canada", "name": "RBC", "official_name": "Royal Bank of Canada"}, "removeTags": {"amenity": "bank", "brand": "RBC", "brand:wikidata": "Q735261", "brand:wikipedia": "en:Royal Bank of Canada", "name": "RBC", "official_name": "Royal Bank of Canada"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/RBS": {"name": "RBS", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1069030098744090624/9HLo73Y8_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q160126"}, "addTags": {"amenity": "bank", "brand": "RBS", "brand:wikidata": "Q160126", "brand:wikipedia": "en:Royal Bank of Scotland", "name": "RBS", "official_name": "Royal Bank of Scotland"}, "removeTags": {"amenity": "bank", "brand": "RBS", "brand:wikidata": "Q160126", "brand:wikipedia": "en:Royal Bank of Scotland", "name": "RBS", "official_name": "Royal Bank of Scotland"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/RCBC": {"name": "RCBC", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7339070"}, "addTags": {"amenity": "bank", "brand": "RCBC", "brand:wikidata": "Q7339070", "brand:wikipedia": "en:Rizal Commercial Banking Corporation", "name": "RCBC", "official_name": "Rizal Commercial Banking Corporation"}, "removeTags": {"amenity": "bank", "brand": "RCBC", "brand:wikidata": "Q7339070", "brand:wikipedia": "en:Rizal Commercial Banking Corporation", "name": "RCBC", "official_name": "Rizal Commercial Banking Corporation"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, "amenity/bank/Rabobank": {"name": "Rabobank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q252004"}, "addTags": {"amenity": "bank", "brand": "Rabobank", "brand:wikidata": "Q252004", "brand:wikipedia": "en:Rabobank", "name": "Rabobank"}, "removeTags": {"amenity": "bank", "brand": "Rabobank", "brand:wikidata": "Q252004", "brand:wikipedia": "en:Rabobank", "name": "Rabobank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Raiffeisen Polbank": {"name": "Raiffeisen Polbank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q9303218"}, "addTags": {"amenity": "bank", "brand": "Raiffeisen Polbank", "brand:wikidata": "Q9303218", "brand:wikipedia": "pl:Raiffeisen Bank Polska", "name": "Raiffeisen Polbank"}, "removeTags": {"amenity": "bank", "brand": "Raiffeisen Polbank", "brand:wikidata": "Q9303218", "brand:wikipedia": "pl:Raiffeisen Bank Polska", "name": "Raiffeisen Polbank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Regions Bank": {"name": "Regions Bank", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRegions-Financial-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q917131"}, "addTags": {"amenity": "bank", "brand": "Regions Bank", "brand:wikidata": "Q917131", "brand:wikipedia": "en:Regions Financial Corporation", "name": "Regions Bank"}, "removeTags": {"amenity": "bank", "brand": "Regions Bank", "brand:wikidata": "Q917131", "brand:wikipedia": "en:Regions Financial Corporation", "name": "Regions Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, @@ -1472,16 +1488,16 @@ "amenity/bank/SNS Bank": {"name": "SNS Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1857899"}, "addTags": {"amenity": "bank", "brand": "SNS Bank", "brand:wikidata": "Q1857899", "brand:wikipedia": "en:De Volksbank", "name": "SNS Bank"}, "removeTags": {"amenity": "bank", "brand": "SNS Bank", "brand:wikidata": "Q1857899", "brand:wikipedia": "en:De Volksbank", "name": "SNS Bank"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, "amenity/bank/Sampath Bank": {"name": "Sampath Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7410095"}, "addTags": {"amenity": "bank", "brand": "Sampath Bank", "brand:wikidata": "Q7410095", "brand:wikipedia": "en:Sampath Bank", "name": "Sampath Bank"}, "removeTags": {"amenity": "bank", "brand": "Sampath Bank", "brand:wikidata": "Q7410095", "brand:wikipedia": "en:Sampath Bank", "name": "Sampath Bank"}, "countryCodes": ["lk"], "matchScore": 2, "suggestion": true}, "amenity/bank/Santander": {"name": "Santander", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/977265312969232384/7W4a261r_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5835668"}, "addTags": {"amenity": "bank", "brand": "Santander", "brand:wikidata": "Q5835668", "brand:wikipedia": "en:Santander Bank", "name": "Santander"}, "removeTags": {"amenity": "bank", "brand": "Santander", "brand:wikidata": "Q5835668", "brand:wikipedia": "en:Santander Bank", "name": "Santander"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Santander Río": {"name": "Santander Río", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSantanderrio%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3385268"}, "addTags": {"amenity": "bank", "brand": "Santander Río", "brand:wikidata": "Q3385268", "brand:wikipedia": "es:Banco Santander Río", "name": "Santander Río"}, "removeTags": {"amenity": "bank", "brand": "Santander Río", "brand:wikidata": "Q3385268", "brand:wikipedia": "es:Banco Santander Río", "name": "Santander Río"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Santander Río": {"name": "Santander Río", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/SantanderRio/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3385268"}, "addTags": {"amenity": "bank", "brand": "Santander Río", "brand:wikidata": "Q3385268", "brand:wikipedia": "es:Banco Santander Río", "name": "Santander Río"}, "removeTags": {"amenity": "bank", "brand": "Santander Río", "brand:wikidata": "Q3385268", "brand:wikipedia": "es:Banco Santander Río", "name": "Santander Río"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, "amenity/bank/Santander Totta": {"name": "Santander Totta", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanco%20Santander%20Logotipo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4854116"}, "addTags": {"amenity": "bank", "brand": "Santander Totta", "brand:wikidata": "Q4854116", "brand:wikipedia": "pt:Banco Santander Portugal", "name": "Santander Totta"}, "removeTags": {"amenity": "bank", "brand": "Santander Totta", "brand:wikidata": "Q4854116", "brand:wikipedia": "pt:Banco Santander Portugal", "name": "Santander Totta"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Sberbank": {"name": "Sberbank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/sberbank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q205012"}, "addTags": {"amenity": "bank", "brand": "Sberbank", "brand:wikidata": "Q205012", "brand:wikipedia": "en:Sberbank of Russia", "name": "Sberbank"}, "removeTags": {"amenity": "bank", "brand": "Sberbank", "brand:wikidata": "Q205012", "brand:wikipedia": "en:Sberbank of Russia", "name": "Sberbank"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Scotiabank": {"name": "Scotiabank", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Scotiabank%20(Kanada).svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q451476"}, "addTags": {"amenity": "bank", "brand": "Scotiabank", "brand:wikidata": "Q451476", "brand:wikipedia": "en:Scotiabank", "name": "Scotiabank"}, "removeTags": {"amenity": "bank", "brand": "Scotiabank", "brand:wikidata": "Q451476", "brand:wikipedia": "en:Scotiabank", "name": "Scotiabank"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Scotiabank": {"name": "Scotiabank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/scotiabank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q451476"}, "addTags": {"amenity": "bank", "brand": "Scotiabank", "brand:wikidata": "Q451476", "brand:wikipedia": "en:Scotiabank", "name": "Scotiabank"}, "removeTags": {"amenity": "bank", "brand": "Scotiabank", "brand:wikidata": "Q451476", "brand:wikipedia": "en:Scotiabank", "name": "Scotiabank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Security Bank": {"name": "Security Bank", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FThe%20Security%20Bank%20Logo%201.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7444945"}, "addTags": {"amenity": "bank", "brand": "Security Bank", "brand:wikidata": "Q7444945", "brand:wikipedia": "en:Security Bank", "name": "Security Bank"}, "removeTags": {"amenity": "bank", "brand": "Security Bank", "brand:wikidata": "Q7444945", "brand:wikipedia": "en:Security Bank", "name": "Security Bank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Seylan Bank": {"name": "Seylan Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3532083"}, "addTags": {"amenity": "bank", "brand": "Seylan Bank", "brand:wikidata": "Q3532083", "brand:wikipedia": "en:Seylan Bank", "name": "Seylan Bank"}, "removeTags": {"amenity": "bank", "brand": "Seylan Bank", "brand:wikidata": "Q3532083", "brand:wikipedia": "en:Seylan Bank", "name": "Seylan Bank"}, "countryCodes": ["lk"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Siam Commercial Bank": {"name": "Siam Commercial Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2038986"}, "addTags": {"amenity": "bank", "brand": "Siam Commercial Bank", "brand:wikidata": "Q2038986", "brand:wikipedia": "en:Siam Commercial Bank", "name": "Siam Commercial Bank"}, "removeTags": {"amenity": "bank", "brand": "Siam Commercial Bank", "brand:wikidata": "Q2038986", "brand:wikipedia": "en:Siam Commercial Bank", "name": "Siam Commercial Bank"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Siam Commercial Bank": {"name": "Siam Commercial Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/scb.thailand/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2038986"}, "addTags": {"amenity": "bank", "brand": "Siam Commercial Bank", "brand:wikidata": "Q2038986", "brand:wikipedia": "en:Siam Commercial Bank", "name": "Siam Commercial Bank"}, "removeTags": {"amenity": "bank", "brand": "Siam Commercial Bank", "brand:wikidata": "Q2038986", "brand:wikipedia": "en:Siam Commercial Bank", "name": "Siam Commercial Bank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Sicoob": {"name": "Sicoob", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q28679754"}, "addTags": {"amenity": "bank", "brand": "Sicoob", "brand:wikidata": "Q28679754", "brand:wikipedia": "pt:Sistema de Cooperativas de Crédito do Brasil", "name": "Sicoob"}, "removeTags": {"amenity": "bank", "brand": "Sicoob", "brand:wikidata": "Q28679754", "brand:wikipedia": "pt:Sistema de Cooperativas de Crédito do Brasil", "name": "Sicoob"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Sicredi": {"name": "Sicredi", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3483060"}, "addTags": {"amenity": "bank", "brand": "Sicredi", "brand:wikidata": "Q3483060", "brand:wikipedia": "pt:Sistema de Crédito Cooperativo", "name": "Sicredi"}, "removeTags": {"amenity": "bank", "brand": "Sicredi", "brand:wikidata": "Q3483060", "brand:wikipedia": "pt:Sistema de Crédito Cooperativo", "name": "Sicredi"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Simmons Bank": {"name": "Simmons Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q28402389"}, "addTags": {"amenity": "bank", "brand": "Simmons Bank", "brand:wikidata": "Q28402389", "brand:wikipedia": "en:Simmons Bank", "name": "Simmons Bank"}, "removeTags": {"amenity": "bank", "brand": "Simmons Bank", "brand:wikidata": "Q28402389", "brand:wikipedia": "en:Simmons Bank", "name": "Simmons Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Simmons Bank": {"name": "Simmons Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/simmonsbank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q28402389"}, "addTags": {"amenity": "bank", "brand": "Simmons Bank", "brand:wikidata": "Q28402389", "brand:wikipedia": "en:Simmons Bank", "name": "Simmons Bank"}, "removeTags": {"amenity": "bank", "brand": "Simmons Bank", "brand:wikidata": "Q28402389", "brand:wikipedia": "en:Simmons Bank", "name": "Simmons Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/bank/Slovenská sporiteľňa": {"name": "Slovenská sporiteľňa", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7541907"}, "addTags": {"amenity": "bank", "brand": "Slovenská sporiteľňa", "brand:wikidata": "Q7541907", "brand:wikipedia": "en:Slovenská sporiteľňa", "name": "Slovenská sporiteľňa"}, "removeTags": {"amenity": "bank", "brand": "Slovenská sporiteľňa", "brand:wikidata": "Q7541907", "brand:wikipedia": "en:Slovenská sporiteľňa", "name": "Slovenská sporiteľňa"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Société Générale": {"name": "Société Générale", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/societegenerale/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q270363"}, "addTags": {"amenity": "bank", "brand": "Société Générale", "brand:wikidata": "Q270363", "brand:wikipedia": "en:Société Générale", "name": "Société Générale"}, "removeTags": {"amenity": "bank", "brand": "Société Générale", "brand:wikidata": "Q270363", "brand:wikipedia": "en:Société Générale", "name": "Société Générale"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Sonali Bank": {"name": "Sonali Bank", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSonali%20Bank%20logo.JPG&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3350382"}, "addTags": {"amenity": "bank", "brand": "Sonali Bank", "brand:wikidata": "Q3350382", "brand:wikipedia": "en:Sonali Bank", "name": "Sonali Bank"}, "removeTags": {"amenity": "bank", "brand": "Sonali Bank", "brand:wikidata": "Q3350382", "brand:wikipedia": "en:Sonali Bank", "name": "Sonali Bank"}, "matchScore": 2, "suggestion": true}, @@ -1491,7 +1507,7 @@ "amenity/bank/Sparkasse": {"name": "Sparkasse", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/sparkasse/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q13601825"}, "addTags": {"amenity": "bank", "brand": "Sparkasse", "brand:wikidata": "Q13601825", "name": "Sparkasse"}, "removeTags": {"amenity": "bank", "brand": "Sparkasse", "brand:wikidata": "Q13601825", "name": "Sparkasse"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Stanbic Bank": {"name": "Stanbic Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7597999"}, "addTags": {"amenity": "bank", "brand": "Stanbic Bank", "brand:wikidata": "Q7597999", "brand:wikipedia": "en:Stanbic Bank", "name": "Stanbic Bank"}, "removeTags": {"amenity": "bank", "brand": "Stanbic Bank", "brand:wikidata": "Q7597999", "brand:wikipedia": "en:Stanbic Bank", "name": "Stanbic Bank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Standard Bank": {"name": "Standard Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1576610"}, "addTags": {"amenity": "bank", "brand": "Standard Bank", "brand:wikidata": "Q1576610", "brand:wikipedia": "en:Standard Bank", "name": "Standard Bank"}, "removeTags": {"amenity": "bank", "brand": "Standard Bank", "brand:wikidata": "Q1576610", "brand:wikipedia": "en:Standard Bank", "name": "Standard Bank"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Standard Chartered": {"name": "Standard Chartered", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q548278"}, "addTags": {"amenity": "bank", "brand": "Standard Chartered", "brand:wikidata": "Q548278", "brand:wikipedia": "en:Standard Chartered", "name": "Standard Chartered"}, "removeTags": {"amenity": "bank", "brand": "Standard Chartered", "brand:wikidata": "Q548278", "brand:wikipedia": "en:Standard Chartered", "name": "Standard Chartered"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Standard Chartered": {"name": "Standard Chartered", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/StandardChartered/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q548278"}, "addTags": {"amenity": "bank", "brand": "Standard Chartered", "brand:wikidata": "Q548278", "brand:wikipedia": "en:Standard Chartered", "name": "Standard Chartered"}, "removeTags": {"amenity": "bank", "brand": "Standard Chartered", "brand:wikidata": "Q548278", "brand:wikipedia": "en:Standard Chartered", "name": "Standard Chartered"}, "matchScore": 2, "suggestion": true}, "amenity/bank/State Bank of India": {"name": "State Bank of India", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FState-Bank-of-India-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1340361"}, "addTags": {"amenity": "bank", "brand": "State Bank of India", "brand:wikidata": "Q1340361", "brand:wikipedia": "en:State Bank of India", "name": "State Bank of India"}, "removeTags": {"amenity": "bank", "brand": "State Bank of India", "brand:wikidata": "Q1340361", "brand:wikipedia": "en:State Bank of India", "name": "State Bank of India"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Summit Bank": {"name": "Summit Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7637775"}, "addTags": {"amenity": "bank", "brand": "Summit Bank", "brand:wikidata": "Q7637775", "brand:wikipedia": "en:Summit Bank", "name": "Summit Bank"}, "removeTags": {"amenity": "bank", "brand": "Summit Bank", "brand:wikidata": "Q7637775", "brand:wikipedia": "en:Summit Bank", "name": "Summit Bank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/SunTrust": {"name": "SunTrust", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSunTrust%20Banks%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q181507"}, "addTags": {"amenity": "bank", "brand": "SunTrust", "brand:wikidata": "Q181507", "brand:wikipedia": "en:SunTrust Banks", "name": "SunTrust"}, "removeTags": {"amenity": "bank", "brand": "SunTrust", "brand:wikidata": "Q181507", "brand:wikipedia": "en:SunTrust Banks", "name": "SunTrust"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, @@ -1514,7 +1530,7 @@ "amenity/bank/UCO Bank": {"name": "UCO Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2005310"}, "addTags": {"amenity": "bank", "brand": "UCO Bank", "brand:wikidata": "Q2005310", "brand:wikipedia": "en:UCO Bank", "name": "UCO Bank"}, "removeTags": {"amenity": "bank", "brand": "UCO Bank", "brand:wikidata": "Q2005310", "brand:wikipedia": "en:UCO Bank", "name": "UCO Bank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/UCPB": {"name": "UCPB", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FUCPB%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7887615"}, "addTags": {"amenity": "bank", "brand": "UCPB", "brand:wikidata": "Q7887615", "brand:wikipedia": "en:United Coconut Planters Bank", "name": "UCPB"}, "removeTags": {"amenity": "bank", "brand": "UCPB", "brand:wikidata": "Q7887615", "brand:wikipedia": "en:United Coconut Planters Bank", "name": "UCPB"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, "amenity/bank/UOB": {"name": "UOB", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FUOB%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2064074"}, "addTags": {"amenity": "bank", "brand": "UOB", "brand:wikidata": "Q2064074", "brand:wikipedia": "en:United Overseas Bank", "name": "UOB"}, "removeTags": {"amenity": "bank", "brand": "UOB", "brand:wikidata": "Q2064074", "brand:wikipedia": "en:United Overseas Bank", "name": "UOB"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/US Bank": {"name": "US Bank", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FU.S.%20Bancorp%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q739084"}, "addTags": {"amenity": "bank", "brand": "US Bank", "brand:wikidata": "Q739084", "brand:wikipedia": "en:U.S. Bancorp", "name": "US Bank"}, "removeTags": {"amenity": "bank", "brand": "US Bank", "brand:wikidata": "Q739084", "brand:wikipedia": "en:U.S. Bancorp", "name": "US Bank"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/US Bank": {"name": "US Bank", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FU.S.%20Bancorp%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q739084"}, "addTags": {"amenity": "bank", "brand": "US Bank", "brand:wikidata": "Q739084", "brand:wikipedia": "en:U.S. Bancorp", "name": "US Bank"}, "removeTags": {"amenity": "bank", "brand": "US Bank", "brand:wikidata": "Q739084", "brand:wikipedia": "en:U.S. Bancorp", "name": "US Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/bank/Ulster Bank": {"name": "Ulster Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2613366"}, "addTags": {"amenity": "bank", "brand": "Ulster Bank", "brand:wikidata": "Q2613366", "brand:wikipedia": "en:Ulster Bank", "name": "Ulster Bank"}, "removeTags": {"amenity": "bank", "brand": "Ulster Bank", "brand:wikidata": "Q2613366", "brand:wikipedia": "en:Ulster Bank", "name": "Ulster Bank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Umpqua Bank": {"name": "Umpqua Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7881772"}, "addTags": {"amenity": "bank", "brand": "Umpqua Bank", "brand:wikidata": "Q7881772", "brand:wikipedia": "en:Umpqua Holdings Corporation", "name": "Umpqua Bank"}, "removeTags": {"amenity": "bank", "brand": "Umpqua Bank", "brand:wikidata": "Q7881772", "brand:wikipedia": "en:Umpqua Holdings Corporation", "name": "Umpqua Bank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/bank/UniCredit Bank": {"name": "UniCredit Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/UniCreditItalia/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q45568"}, "addTags": {"amenity": "bank", "brand": "UniCredit Bank", "brand:wikidata": "Q45568", "brand:wikipedia": "en:UniCredit", "name": "UniCredit Bank"}, "removeTags": {"amenity": "bank", "brand": "UniCredit Bank", "brand:wikidata": "Q45568", "brand:wikipedia": "en:UniCredit", "name": "UniCredit Bank"}, "matchScore": 2, "suggestion": true}, @@ -1522,11 +1538,11 @@ "amenity/bank/Union Bank of India": {"name": "Union Bank of India", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FUnion%20Bank%20of%20India%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2004078"}, "addTags": {"amenity": "bank", "brand": "Union Bank of India", "brand:wikidata": "Q2004078", "brand:wikipedia": "en:Union Bank of India", "name": "Union Bank of India"}, "removeTags": {"amenity": "bank", "brand": "Union Bank of India", "brand:wikidata": "Q2004078", "brand:wikipedia": "en:Union Bank of India", "name": "Union Bank of India"}, "countryCodes": ["in"], "matchScore": 2, "suggestion": true}, "amenity/bank/UnionBank (Philippines)": {"name": "UnionBank (Philippines)", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FUnionBankPH.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7885403"}, "addTags": {"amenity": "bank", "brand": "UnionBank", "brand:wikidata": "Q7885403", "brand:wikipedia": "en:Union Bank of the Philippines", "name": "UnionBank"}, "removeTags": {"amenity": "bank", "brand": "UnionBank", "brand:wikidata": "Q7885403", "brand:wikipedia": "en:Union Bank of the Philippines", "name": "UnionBank"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, "amenity/bank/UnionBank (USA)": {"name": "UnionBank (USA)", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1442804"}, "addTags": {"amenity": "bank", "brand": "UnionBank", "brand:wikidata": "Q1442804", "brand:wikipedia": "en:MUFG Union Bank", "name": "UnionBank"}, "removeTags": {"amenity": "bank", "brand": "UnionBank", "brand:wikidata": "Q1442804", "brand:wikipedia": "en:MUFG Union Bank", "name": "UnionBank"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Vakıfbank": {"name": "Vakıfbank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/936498306443825152/hQND1CQK_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1148521"}, "addTags": {"amenity": "bank", "brand": "Vakıfbank", "brand:wikidata": "Q1148521", "brand:wikipedia": "en:VakıfBank", "name": "Vakıfbank"}, "removeTags": {"amenity": "bank", "brand": "Vakıfbank", "brand:wikidata": "Q1148521", "brand:wikipedia": "en:VakıfBank", "name": "Vakıfbank"}, "countryCodes": ["tr"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Vakıfbank": {"name": "Vakıfbank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1109052804168073218/Jfu4-yQo_bigger.png", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1148521"}, "addTags": {"amenity": "bank", "brand": "Vakıfbank", "brand:wikidata": "Q1148521", "brand:wikipedia": "en:VakıfBank", "name": "Vakıfbank"}, "removeTags": {"amenity": "bank", "brand": "Vakıfbank", "brand:wikidata": "Q1148521", "brand:wikipedia": "en:VakıfBank", "name": "Vakıfbank"}, "countryCodes": ["tr"], "matchScore": 2, "suggestion": true}, "amenity/bank/Veneto Banca": {"name": "Veneto Banca", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3127221"}, "addTags": {"amenity": "bank", "brand": "Veneto Banca", "brand:wikidata": "Q3127221", "brand:wikipedia": "en:Veneto Banca", "name": "Veneto Banca"}, "removeTags": {"amenity": "bank", "brand": "Veneto Banca", "brand:wikidata": "Q3127221", "brand:wikipedia": "en:Veneto Banca", "name": "Veneto Banca"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Vijaya Bank": {"name": "Vijaya Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2003171"}, "addTags": {"amenity": "bank", "brand": "Vijaya Bank", "brand:wikidata": "Q2003171", "brand:wikipedia": "en:Vijaya Bank", "name": "Vijaya Bank"}, "removeTags": {"amenity": "bank", "brand": "Vijaya Bank", "brand:wikidata": "Q2003171", "brand:wikipedia": "en:Vijaya Bank", "name": "Vijaya Bank"}, "countryCodes": ["in"], "matchScore": 2, "suggestion": true}, "amenity/bank/Volksbank": {"name": "Volksbank", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20of%20German%20Volksbanken%20Raiffeisenbanken.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q695110"}, "addTags": {"amenity": "bank", "brand": "Volksbank", "brand:wikidata": "Q695110", "brand:wikipedia": "en:Volksbank", "name": "Volksbank"}, "removeTags": {"amenity": "bank", "brand": "Volksbank", "brand:wikidata": "Q695110", "brand:wikipedia": "en:Volksbank", "name": "Volksbank"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Volksbank Köln Bonn eG": {"name": "Volksbank Köln Bonn eG", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q41680844"}, "addTags": {"amenity": "bank", "brand": "Volksbank Köln Bonn eG", "brand:wikidata": "Q41680844", "brand:wikipedia": "de:Volksbank Köln Bonn", "name": "Volksbank"}, "removeTags": {"amenity": "bank", "brand": "Volksbank Köln Bonn eG", "brand:wikidata": "Q41680844", "brand:wikipedia": "de:Volksbank Köln Bonn", "name": "Volksbank"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Volksbank Köln Bonn eG": {"name": "Volksbank Köln Bonn eG", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q41680844"}, "addTags": {"amenity": "bank", "brand": "Volksbank Köln Bonn eG", "brand:wikidata": "Q41680844", "brand:wikipedia": "de:Volksbank Köln Bonn", "name": "Volksbank", "official_name": "Volksbank Köln Bonn eG"}, "removeTags": {"amenity": "bank", "brand": "Volksbank Köln Bonn eG", "brand:wikidata": "Q41680844", "brand:wikipedia": "de:Volksbank Köln Bonn", "name": "Volksbank", "official_name": "Volksbank Köln Bonn eG"}, "matchScore": 2, "suggestion": true}, "amenity/bank/VÚB": {"name": "VÚB", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FVUB.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q12778981"}, "addTags": {"amenity": "bank", "brand": "VÚB", "brand:wikidata": "Q12778981", "brand:wikipedia": "en:Všeobecná úverová banka", "name": "VÚB"}, "removeTags": {"amenity": "bank", "brand": "VÚB", "brand:wikidata": "Q12778981", "brand:wikipedia": "en:Všeobecná úverová banka", "name": "VÚB"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Washington Federal": {"name": "Washington Federal", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWashington%20Federal%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7971859"}, "addTags": {"amenity": "bank", "brand": "Washington Federal", "brand:wikidata": "Q7971859", "brand:wikipedia": "en:Washington Federal", "name": "Washington Federal"}, "removeTags": {"amenity": "bank", "brand": "Washington Federal", "brand:wikidata": "Q7971859", "brand:wikipedia": "en:Washington Federal", "name": "Washington Federal"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/bank/Wells Fargo": {"name": "Wells Fargo", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1088877344624758784/OH8VFkEY_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q744149"}, "addTags": {"amenity": "bank", "brand": "Wells Fargo", "brand:wikidata": "Q744149", "brand:wikipedia": "en:Wells Fargo", "name": "Wells Fargo"}, "removeTags": {"amenity": "bank", "brand": "Wells Fargo", "brand:wikidata": "Q744149", "brand:wikipedia": "en:Wells Fargo", "name": "Wells Fargo"}, "matchScore": 2, "suggestion": true}, @@ -1542,17 +1558,17 @@ "amenity/bank/ČSOB": {"name": "ČSOB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/csob/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q340135"}, "addTags": {"amenity": "bank", "brand": "ČSOB", "brand:wikidata": "Q340135", "brand:wikipedia": "en:Československá obchodní banka", "name": "ČSOB"}, "removeTags": {"amenity": "bank", "brand": "ČSOB", "brand:wikidata": "Q340135", "brand:wikipedia": "en:Československá obchodní banka", "name": "ČSOB"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Česká spořitelna": {"name": "Česká spořitelna", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCeska%20Sporitelna.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q341100"}, "addTags": {"amenity": "bank", "brand": "Česká spořitelna", "brand:wikidata": "Q341100", "brand:wikipedia": "en:Česká spořitelna", "name": "Česká spořitelna"}, "removeTags": {"amenity": "bank", "brand": "Česká spořitelna", "brand:wikidata": "Q341100", "brand:wikipedia": "en:Česká spořitelna", "name": "Česká spořitelna"}, "countryCodes": ["cz"], "matchScore": 2, "suggestion": true}, "amenity/bank/İş Bankası": {"name": "İş Bankası", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FT%C3%BCrkiye%20%C4%B0%C5%9F%20Bankas%C4%B1%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q909613"}, "addTags": {"amenity": "bank", "brand": "İş Bankası", "brand:wikidata": "Q909613", "brand:wikipedia": "en:Türkiye İş Bankası", "name": "İş Bankası"}, "removeTags": {"amenity": "bank", "brand": "İş Bankası", "brand:wikidata": "Q909613", "brand:wikipedia": "en:Türkiye İş Bankası", "name": "İş Bankası"}, "countryCodes": ["tr"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Εθνική Τράπεζα": {"name": "Εθνική Τράπεζα", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1816028"}, "addTags": {"amenity": "bank", "brand": "Εθνική Τράπεζα", "brand:en": "National Bank of Greece", "brand:wikidata": "Q1816028", "brand:wikipedia": "en:National Bank of Greece", "name": "Εθνική Τράπεζα", "name:en": "National Bank of Greece"}, "removeTags": {"amenity": "bank", "brand": "Εθνική Τράπεζα", "brand:en": "National Bank of Greece", "brand:wikidata": "Q1816028", "brand:wikipedia": "en:National Bank of Greece", "name": "Εθνική Τράπεζα", "name:en": "National Bank of Greece"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Τράπεζα Πειραιώς": {"name": "Τράπεζα Πειραιώς", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3312"}, "addTags": {"amenity": "bank", "brand": "Τράπεζα Πειραιώς", "brand:en": "Piraeus Bank", "brand:wikidata": "Q3312", "brand:wikipedia": "en:Piraeus Bank", "name": "Τράπεζα Πειραιώς", "name:en": "Piraeus Bank"}, "removeTags": {"amenity": "bank", "brand": "Τράπεζα Πειραιώς", "brand:en": "Piraeus Bank", "brand:wikidata": "Q3312", "brand:wikipedia": "en:Piraeus Bank", "name": "Τράπεζα Πειραιώς", "name:en": "Piraeus Bank"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Εθνική Τράπεζα": {"name": "Εθνική Τράπεζα", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1816028"}, "addTags": {"amenity": "bank", "brand": "Εθνική Τράπεζα", "brand:el": "Εθνική Τράπεζα", "brand:en": "National Bank of Greece", "brand:wikidata": "Q1816028", "brand:wikipedia": "en:National Bank of Greece", "name": "Εθνική Τράπεζα", "name:el": "Εθνική Τράπεζα", "name:en": "National Bank of Greece"}, "removeTags": {"amenity": "bank", "brand": "Εθνική Τράπεζα", "brand:el": "Εθνική Τράπεζα", "brand:en": "National Bank of Greece", "brand:wikidata": "Q1816028", "brand:wikipedia": "en:National Bank of Greece", "name": "Εθνική Τράπεζα", "name:el": "Εθνική Τράπεζα", "name:en": "National Bank of Greece"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Τράπεζα Πειραιώς": {"name": "Τράπεζα Πειραιώς", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3312"}, "addTags": {"amenity": "bank", "brand": "Τράπεζα Πειραιώς", "brand:el": "Τράπεζα Πειραιώς", "brand:en": "Piraeus Bank", "brand:wikidata": "Q3312", "brand:wikipedia": "en:Piraeus Bank", "name": "Τράπεζα Πειραιώς", "name:el": "Τράπεζα Πειραιώς", "name:en": "Piraeus Bank"}, "removeTags": {"amenity": "bank", "brand": "Τράπεζα Πειραιώς", "brand:el": "Τράπεζα Πειραιώς", "brand:en": "Piraeus Bank", "brand:wikidata": "Q3312", "brand:wikipedia": "en:Piraeus Bank", "name": "Τράπεζα Πειραιώς", "name:el": "Τράπεζα Πειραιώς", "name:en": "Piraeus Bank"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, "amenity/bank/Авангард": {"name": "Авангард", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankavangard/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q62122617"}, "addTags": {"amenity": "bank", "brand": "Авангард", "brand:wikidata": "Q62122617", "name": "Авангард"}, "removeTags": {"amenity": "bank", "brand": "Авангард", "brand:wikidata": "Q62122617", "name": "Авангард"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Альфа-Банк": {"name": "Альфа-Банк", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1104892558231175168/VxvVVCy0_bigger.png", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1377835"}, "addTags": {"amenity": "bank", "brand": "Альфа-Банк", "brand:en": "Alfa-Bank", "brand:wikidata": "Q1377835", "brand:wikipedia": "en:Alfa-Bank", "name": "Альфа-Банк", "name:en": "Alfa-Bank"}, "removeTags": {"amenity": "bank", "brand": "Альфа-Банк", "brand:en": "Alfa-Bank", "brand:wikidata": "Q1377835", "brand:wikipedia": "en:Alfa-Bank", "name": "Альфа-Банк", "name:en": "Alfa-Bank"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Банка ДСК": {"name": "Банка ДСК", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5206146"}, "addTags": {"amenity": "bank", "brand": "Банка ДСК", "brand:en": "DSK Bank", "brand:wikidata": "Q5206146", "brand:wikipedia": "en:DSK Bank", "name": "Банка ДСК", "name:en": "DSK Bank"}, "removeTags": {"amenity": "bank", "brand": "Банка ДСК", "brand:en": "DSK Bank", "brand:wikidata": "Q5206146", "brand:wikipedia": "en:DSK Bank", "name": "Банка ДСК", "name:en": "DSK Bank"}, "countryCodes": ["bg"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Альфа-Банк": {"name": "Альфа-Банк", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1104892558231175168/VxvVVCy0_bigger.png", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1377835"}, "addTags": {"amenity": "bank", "brand": "Альфа-Банк", "brand:en": "Alfa-Bank", "brand:ru": "Альфа-Банк", "brand:wikidata": "Q1377835", "brand:wikipedia": "ru:Альфа-банк", "name": "Альфа-Банк", "name:en": "Alfa-Bank", "name:ru": "Альфа-Банк"}, "removeTags": {"amenity": "bank", "brand": "Альфа-Банк", "brand:en": "Alfa-Bank", "brand:ru": "Альфа-Банк", "brand:wikidata": "Q1377835", "brand:wikipedia": "ru:Альфа-банк", "name": "Альфа-Банк", "name:en": "Alfa-Bank", "name:ru": "Альфа-Банк"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Банка ДСК": {"name": "Банка ДСК", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5206146"}, "addTags": {"amenity": "bank", "brand": "Банка ДСК", "brand:bg": "Банка ДСК", "brand:en": "DSK Bank", "brand:wikidata": "Q5206146", "brand:wikipedia": "en:DSK Bank", "name": "Банка ДСК", "name:bg": "Банка ДСК", "name:en": "DSK Bank"}, "removeTags": {"amenity": "bank", "brand": "Банка ДСК", "brand:bg": "Банка ДСК", "brand:en": "DSK Bank", "brand:wikidata": "Q5206146", "brand:wikipedia": "en:DSK Bank", "name": "Банка ДСК", "name:bg": "Банка ДСК", "name:en": "DSK Bank"}, "countryCodes": ["bg"], "matchScore": 2, "suggestion": true}, "amenity/bank/Белагропромбанк": {"name": "Белагропромбанк", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1991373"}, "addTags": {"amenity": "bank", "brand": "Белагропромбанк", "brand:en": "Belagroprom Bank", "brand:wikidata": "Q1991373", "brand:wikipedia": "be:Белаграпрамбанк", "name": "Белагропромбанк", "name:en": "Belagroprom Bank"}, "removeTags": {"amenity": "bank", "brand": "Белагропромбанк", "brand:en": "Belagroprom Bank", "brand:wikidata": "Q1991373", "brand:wikipedia": "be:Белаграпрамбанк", "name": "Белагропромбанк", "name:en": "Belagroprom Bank"}, "countryCodes": ["by"], "matchScore": 2, "suggestion": true}, "amenity/bank/Беларусбанк": {"name": "Беларусбанк", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1997334"}, "addTags": {"amenity": "bank", "brand": "Беларусбанк", "brand:en": "Belarusbank", "brand:wikidata": "Q1997334", "brand:wikipedia": "en:Belarusbank", "name": "Беларусбанк", "name:en": "Belarusbank"}, "removeTags": {"amenity": "bank", "brand": "Беларусбанк", "brand:en": "Belarusbank", "brand:wikidata": "Q1997334", "brand:wikipedia": "en:Belarusbank", "name": "Беларусбанк", "name:en": "Belarusbank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Белинвестбанк": {"name": "Белинвестбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/belinvestbank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4081940"}, "addTags": {"amenity": "bank", "brand": "Белинвестбанк", "brand:wikidata": "Q4081940", "brand:wikipedia": "ru:Белинвестбанк", "name": "Белинвестбанк"}, "removeTags": {"amenity": "bank", "brand": "Белинвестбанк", "brand:wikidata": "Q4081940", "brand:wikipedia": "ru:Белинвестбанк", "name": "Белинвестбанк"}, "countryCodes": ["by"], "matchScore": 2, "suggestion": true}, "amenity/bank/Бинбанк": {"name": "Бинбанк", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4086829"}, "addTags": {"amenity": "bank", "brand": "Бинбанк", "brand:en": "B&N Bank", "brand:wikidata": "Q4086829", "brand:wikipedia": "en:B&N Bank", "name": "Бинбанк", "name:en": "B&N Bank"}, "removeTags": {"amenity": "bank", "brand": "Бинбанк", "brand:en": "B&N Bank", "brand:wikidata": "Q4086829", "brand:wikipedia": "en:B&N Bank", "name": "Бинбанк", "name:en": "B&N Bank"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "amenity/bank/ВТБ": {"name": "ВТБ", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1054295031916453888/lvi_M_Cc_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1549389"}, "addTags": {"amenity": "bank", "brand": "ВТБ", "brand:en": "VTB Bank", "brand:wikidata": "Q1549389", "brand:wikipedia": "en:VTB Bank", "name": "ВТБ", "name:en": "VTB Bank"}, "removeTags": {"amenity": "bank", "brand": "ВТБ", "brand:en": "VTB Bank", "brand:wikidata": "Q1549389", "brand:wikipedia": "en:VTB Bank", "name": "ВТБ", "name:en": "VTB Bank"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Возрождение": {"name": "Возрождение", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4114952"}, "addTags": {"amenity": "bank", "brand": "Возрождение", "brand:wikidata": "Q4114952", "brand:wikipedia": "en:Возрождение (банк)", "name": "Возрождение"}, "removeTags": {"amenity": "bank", "brand": "Возрождение", "brand:wikidata": "Q4114952", "brand:wikipedia": "en:Возрождение (банк)", "name": "Возрождение"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "amenity/bank/Возрождение": {"name": "Возрождение", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4114952"}, "addTags": {"amenity": "bank", "brand": "Возрождение", "brand:wikidata": "Q4114952", "brand:wikipedia": "ru:Возрождение (банк)", "name": "Возрождение"}, "removeTags": {"amenity": "bank", "brand": "Возрождение", "brand:wikidata": "Q4114952", "brand:wikipedia": "ru:Возрождение (банк)", "name": "Возрождение"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "amenity/bank/Газпромбанк": {"name": "Газпромбанк", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGazprombank.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1924338"}, "addTags": {"amenity": "bank", "brand": "Газпромбанк", "brand:en": "Gazprombank", "brand:wikidata": "Q1924338", "brand:wikipedia": "en:Gazprombank", "name": "Газпромбанк", "name:en": "Gazprombank"}, "removeTags": {"amenity": "bank", "brand": "Газпромбанк", "brand:en": "Gazprombank", "brand:wikidata": "Q1924338", "brand:wikipedia": "en:Gazprombank", "name": "Газпромбанк", "name:en": "Gazprombank"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "amenity/bank/Генбанк": {"name": "Генбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/GENBANK.Crimea/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q62122630"}, "addTags": {"amenity": "bank", "brand": "Генбанк", "brand:wikidata": "Q62122630", "name": "Генбанк"}, "removeTags": {"amenity": "bank", "brand": "Генбанк", "brand:wikidata": "Q62122630", "name": "Генбанк"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "amenity/bank/Казкоммерцбанк": {"name": "Казкоммерцбанк", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FQazkom%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1168179"}, "addTags": {"amenity": "bank", "brand": "Казкоммерцбанк", "brand:en": "Kazkommertsbank", "brand:wikidata": "Q1168179", "brand:wikipedia": "en:Kazkommertsbank", "name": "Казкоммерцбанк", "name:en": "Kazkommertsbank"}, "removeTags": {"amenity": "bank", "brand": "Казкоммерцбанк", "brand:en": "Kazkommertsbank", "brand:wikidata": "Q1168179", "brand:wikipedia": "en:Kazkommertsbank", "name": "Казкоммерцбанк", "name:en": "Kazkommertsbank"}, "countryCodes": ["kz"], "matchScore": 2, "suggestion": true}, @@ -1572,7 +1588,7 @@ "amenity/bank/Райффайзен": {"name": "Райффайзен", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4389244"}, "addTags": {"amenity": "bank", "brand": "Райффайзен", "brand:en": "Raiffeisenbank", "brand:wikidata": "Q4389244", "brand:wikipedia": "en:Raiffeisenbank (Russia)", "name": "Райффайзен", "name:en": "Raiffeisenbank"}, "removeTags": {"amenity": "bank", "brand": "Райффайзен", "brand:en": "Raiffeisenbank", "brand:wikidata": "Q4389244", "brand:wikipedia": "en:Raiffeisenbank (Russia)", "name": "Райффайзен", "name:en": "Raiffeisenbank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Райффайзен Банк Аваль": {"name": "Райффайзен Банк Аваль", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F%D0%A0%D0%B0%D0%B9%D1%84%D1%84%D0%B0%D0%B9%D0%B7%D0%B5%D0%BD%20%D0%B1%D0%B0%D0%BD%D0%BA%20%D0%90%D0%B2%D0%B0%D0%BB%D1%8C%20(%D0%BB%D0%BE%D0%B3%D0%BE%D1%82%D0%B8%D0%BF).gif&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4389243"}, "addTags": {"amenity": "bank", "brand": "Райффайзен Банк Аваль", "brand:en": "Raiffeisen Bank Aval", "brand:wikidata": "Q4389243", "brand:wikipedia": "en:Raiffeisen Bank Aval", "name": "Райффайзен Банк Аваль", "name:en": "Raiffeisen Bank Aval"}, "removeTags": {"amenity": "bank", "brand": "Райффайзен Банк Аваль", "brand:en": "Raiffeisen Bank Aval", "brand:wikidata": "Q4389243", "brand:wikipedia": "en:Raiffeisen Bank Aval", "name": "Райффайзен Банк Аваль", "name:en": "Raiffeisen Bank Aval"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, "amenity/bank/Росбанк": {"name": "Росбанк", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRosbank%20logo%20en.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q1119857"}, "addTags": {"amenity": "bank", "brand": "Росбанк", "brand:en": "Rosbank", "brand:wikidata": "Q1119857", "brand:wikipedia": "en:Rosbank", "name": "Росбанк", "name:en": "Rosbank"}, "removeTags": {"amenity": "bank", "brand": "Росбанк", "brand:en": "Rosbank", "brand:wikidata": "Q1119857", "brand:wikipedia": "en:Rosbank", "name": "Росбанк", "name:en": "Rosbank"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/Россельхозбанк": {"name": "Россельхозбанк", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3920226"}, "addTags": {"amenity": "bank", "brand": "Россельхозбанк", "brand:en": "Rosselkhozbank", "brand:wikidata": "Q3920226", "brand:wikipedia": "en:Rosselkhozbank", "name": "Россельхозбанк", "name:en": "Rosselkhozbank"}, "removeTags": {"amenity": "bank", "brand": "Россельхозбанк", "brand:en": "Rosselkhozbank", "brand:wikidata": "Q3920226", "brand:wikipedia": "en:Rosselkhozbank", "name": "Россельхозбанк", "name:en": "Rosselkhozbank"}, "matchScore": 2, "suggestion": true}, + "amenity/bank/Россельхозбанк": {"name": "Россельхозбанк", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q3920226"}, "addTags": {"amenity": "bank", "brand": "Россельхозбанк", "brand:en": "Rosselkhozbank", "brand:wikidata": "Q3920226", "brand:wikipedia": "en:Russian Agricultural Bank", "name": "Россельхозбанк", "name:en": "Rosselkhozbank"}, "removeTags": {"amenity": "bank", "brand": "Россельхозбанк", "brand:en": "Rosselkhozbank", "brand:wikidata": "Q3920226", "brand:wikipedia": "en:Russian Agricultural Bank", "name": "Россельхозбанк", "name:en": "Rosselkhozbank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Русский Стандарт": {"name": "Русский Стандарт", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4400854"}, "addTags": {"amenity": "bank", "brand": "Русский Стандарт", "brand:en": "Russian Standard Bank", "brand:wikidata": "Q4400854", "brand:wikipedia": "en:Russian Standard Bank", "name": "Русский Стандарт", "name:en": "Russian Standard Bank"}, "removeTags": {"amenity": "bank", "brand": "Русский Стандарт", "brand:en": "Russian Standard Bank", "brand:wikidata": "Q4400854", "brand:wikipedia": "en:Russian Standard Bank", "name": "Русский Стандарт", "name:en": "Russian Standard Bank"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "amenity/bank/Сбербанк": {"name": "Сбербанк", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4378147"}, "addTags": {"amenity": "bank", "brand": "Сбербанк", "brand:en": "Prisbank", "brand:wikidata": "Q4378147", "brand:wikipedia": "ru:Приднестровский Сбербанк", "name": "Сбербанк", "name:en": "Prisbank"}, "removeTags": {"amenity": "bank", "brand": "Сбербанк", "brand:en": "Prisbank", "brand:wikidata": "Q4378147", "brand:wikipedia": "ru:Приднестровский Сбербанк", "name": "Сбербанк", "name:en": "Prisbank"}, "matchScore": 2, "suggestion": true}, "amenity/bank/Совкомбанк": {"name": "Совкомбанк", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4426566"}, "addTags": {"amenity": "bank", "brand": "Совкомбанк", "brand:en": "Sovcom Bank", "brand:wikidata": "Q4426566", "brand:wikipedia": "ru:Совкомбанк", "name": "Совкомбанк", "name:en": "Sovcom Bank"}, "removeTags": {"amenity": "bank", "brand": "Совкомбанк", "brand:en": "Sovcom Bank", "brand:wikidata": "Q4426566", "brand:wikipedia": "ru:Совкомбанк", "name": "Совкомбанк", "name:en": "Sovcom Bank"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, @@ -1582,7 +1598,7 @@ "amenity/bank/Уралсиб": {"name": "Уралсиб", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4476693"}, "addTags": {"amenity": "bank", "brand": "Уралсиб", "brand:en": "Uralsib bank", "brand:wikidata": "Q4476693", "brand:wikipedia": "ru:Уралсиб (банк)", "name": "Уралсиб", "name:en": "Uralsib bank"}, "removeTags": {"amenity": "bank", "brand": "Уралсиб", "brand:en": "Uralsib bank", "brand:wikidata": "Q4476693", "brand:wikipedia": "ru:Уралсиб (банк)", "name": "Уралсиб", "name:en": "Uralsib bank"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "amenity/bank/Хаан банк": {"name": "Хаан банк", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q25632240"}, "addTags": {"amenity": "bank", "brand": "Хаан банк", "brand:wikidata": "Q25632240", "brand:wikipedia": "mn:ХААН банк", "name": "Хаан банк"}, "removeTags": {"amenity": "bank", "brand": "Хаан банк", "brand:wikidata": "Q25632240", "brand:wikipedia": "mn:ХААН банк", "name": "Хаан банк"}, "countryCodes": ["mn"], "matchScore": 2, "suggestion": true}, "amenity/bank/Хоум Кредит": {"name": "Хоум Кредит", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4500466"}, "addTags": {"amenity": "bank", "brand": "Хоум Кредит", "brand:en": "Home Credit & Finance Bank", "brand:wikidata": "Q4500466", "brand:wikipedia": "en:Home Credit & Finance Bank", "name": "Хоум Кредит", "name:en": "Home Credit & Finance Bank"}, "removeTags": {"amenity": "bank", "brand": "Хоум Кредит", "brand:en": "Home Credit & Finance Bank", "brand:wikidata": "Q4500466", "brand:wikipedia": "en:Home Credit & Finance Bank", "name": "Хоум Кредит", "name:en": "Home Credit & Finance Bank"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/בנק הפועלים": {"name": "בנק הפועלים", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBank%20Hapoalim%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2666775"}, "addTags": {"amenity": "bank", "brand": "בנק הפועלים", "brand:en": "Bank Hapoalim", "brand:he": "בנק הפועלים", "brand:wikidata": "Q2666775", "brand:wikipedia": "en:Bank Hapoalim", "name": "בנק הפועלים", "name:en": "Bank Hapoalim", "name:he": "בנק הפועלים"}, "removeTags": {"amenity": "bank", "brand": "בנק הפועלים", "brand:en": "Bank Hapoalim", "brand:he": "בנק הפועלים", "brand:wikidata": "Q2666775", "brand:wikipedia": "en:Bank Hapoalim", "name": "בנק הפועלים", "name:en": "Bank Hapoalim", "name:he": "בנק הפועלים"}, "countryCodes": ["il"], "matchScore": 2, "suggestion": true}, + "amenity/bank/בנק הפועלים": {"name": "בנק הפועלים", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BankHapoalimSocial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2666775"}, "addTags": {"amenity": "bank", "brand": "בנק הפועלים", "brand:en": "Bank Hapoalim", "brand:he": "בנק הפועלים", "brand:wikidata": "Q2666775", "brand:wikipedia": "en:Bank Hapoalim", "name": "בנק הפועלים", "name:en": "Bank Hapoalim", "name:he": "בנק הפועלים"}, "removeTags": {"amenity": "bank", "brand": "בנק הפועלים", "brand:en": "Bank Hapoalim", "brand:he": "בנק הפועלים", "brand:wikidata": "Q2666775", "brand:wikipedia": "en:Bank Hapoalim", "name": "בנק הפועלים", "name:en": "Bank Hapoalim", "name:he": "בנק הפועלים"}, "countryCodes": ["il"], "matchScore": 2, "suggestion": true}, "amenity/bank/בנק לאומי": {"name": "בנק לאומי", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806641"}, "addTags": {"amenity": "bank", "brand": "בנק לאומי", "brand:en": "Bank Leumi", "brand:he": "בנק לאומי", "brand:wikidata": "Q806641", "brand:wikipedia": "en:Bank Leumi", "name": "בנק לאומי", "name:en": "Bank Leumi", "name:he": "בנק לאומי"}, "removeTags": {"amenity": "bank", "brand": "בנק לאומי", "brand:en": "Bank Leumi", "brand:he": "בנק לאומי", "brand:wikidata": "Q806641", "brand:wikipedia": "en:Bank Leumi", "name": "בנק לאומי", "name:en": "Bank Leumi", "name:he": "בנק לאומי"}, "countryCodes": ["il"], "matchScore": 2, "suggestion": true}, "amenity/bank/بانک آینده": {"name": "بانک آینده", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5938144"}, "addTags": {"amenity": "bank", "brand": "بانک آینده", "brand:en": "Ayandeh Bank", "brand:wikidata": "Q5938144", "brand:wikipedia": "en:Ayandeh Bank", "name": "بانک آینده", "name:en": "Ayandeh Bank"}, "removeTags": {"amenity": "bank", "brand": "بانک آینده", "brand:en": "Ayandeh Bank", "brand:wikidata": "Q5938144", "brand:wikipedia": "en:Ayandeh Bank", "name": "بانک آینده", "name:en": "Ayandeh Bank"}, "countryCodes": ["ir"], "matchScore": 2, "suggestion": true}, "amenity/bank/بانک اقتصاد نوین": {"name": "بانک اقتصاد نوین", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5323768"}, "addTags": {"amenity": "bank", "brand": "بانک اقتصاد نوین", "brand:en": "EN Bank", "brand:wikidata": "Q5323768", "brand:wikipedia": "en:EN Bank", "name": "بانک اقتصاد نوین", "name:en": "EN Bank"}, "removeTags": {"amenity": "bank", "brand": "بانک اقتصاد نوین", "brand:en": "EN Bank", "brand:wikidata": "Q5323768", "brand:wikipedia": "en:EN Bank", "name": "بانک اقتصاد نوین", "name:en": "EN Bank"}, "countryCodes": ["ir"], "matchScore": 2, "suggestion": true}, @@ -1600,8 +1616,7 @@ "amenity/bank/بانک قوامین": {"name": "بانک قوامین", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q10860253"}, "addTags": {"amenity": "bank", "brand": "بانک قوامین", "brand:en": "Ghavamin Bank", "brand:wikidata": "Q10860253", "brand:wikipedia": "en:Ghavamin Bank", "name": "بانک قوامین", "name:en": "Ghavamin Bank"}, "removeTags": {"amenity": "bank", "brand": "بانک قوامین", "brand:en": "Ghavamin Bank", "brand:wikidata": "Q10860253", "brand:wikipedia": "en:Ghavamin Bank", "name": "بانک قوامین", "name:en": "Ghavamin Bank"}, "countryCodes": ["ir"], "matchScore": 2, "suggestion": true}, "amenity/bank/بانک مسکن": {"name": "بانک مسکن", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBank%20maskan.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4855942"}, "addTags": {"amenity": "bank", "brand": "بانک مسکن", "brand:en": "Bank Maskan", "brand:wikidata": "Q4855942", "brand:wikipedia": "en:Bank Maskan", "name": "بانک مسکن", "name:en": "Bank Maskan"}, "removeTags": {"amenity": "bank", "brand": "بانک مسکن", "brand:en": "Bank Maskan", "brand:wikidata": "Q4855942", "brand:wikipedia": "en:Bank Maskan", "name": "بانک مسکن", "name:en": "Bank Maskan"}, "countryCodes": ["ir"], "matchScore": 2, "suggestion": true}, "amenity/bank/بانک ملت": {"name": "بانک ملت", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4855944"}, "addTags": {"amenity": "bank", "brand": "بانک ملت", "brand:en": "Bank Mellat", "brand:wikidata": "Q4855944", "brand:wikipedia": "en:Bank Mellat", "name": "بانک ملت", "name:en": "Bank Mellat"}, "removeTags": {"amenity": "bank", "brand": "بانک ملت", "brand:en": "Bank Mellat", "brand:wikidata": "Q4855944", "brand:wikipedia": "en:Bank Mellat", "name": "بانک ملت", "name:en": "Bank Mellat"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک ملی": {"name": "بانک ملی", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806640"}, "addTags": {"amenity": "bank", "brand": "بانک ملی", "brand:wikidata": "Q806640", "brand:wikipedia": "en:Bank Melli Iran", "name": "بانک ملی"}, "removeTags": {"amenity": "bank", "brand": "بانک ملی", "brand:wikidata": "Q806640", "brand:wikipedia": "en:Bank Melli Iran", "name": "بانک ملی"}, "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک ملی ایران": {"name": "بانک ملی ایران", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806640"}, "addTags": {"amenity": "bank", "brand": "بانک ملی ایران", "brand:en": "Bank Melli Iran", "brand:wikidata": "Q806640", "brand:wikipedia": "en:Bank Melli Iran", "name": "بانک ملی ایران", "name:en": "Bank Melli Iran"}, "removeTags": {"amenity": "bank", "brand": "بانک ملی ایران", "brand:en": "Bank Melli Iran", "brand:wikidata": "Q806640", "brand:wikipedia": "en:Bank Melli Iran", "name": "بانک ملی ایران", "name:en": "Bank Melli Iran"}, "countryCodes": ["ir"], "matchScore": 2, "suggestion": true}, + "amenity/bank/بانک ملی": {"name": "بانک ملی", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q806640"}, "addTags": {"amenity": "bank", "brand": "بانک ملی", "brand:en": "Bank Melli Iran", "brand:wikidata": "Q806640", "brand:wikipedia": "en:Bank Melli Iran", "name": "بانک ملی", "name:en": "Bank Melli Iran"}, "removeTags": {"amenity": "bank", "brand": "بانک ملی", "brand:en": "Bank Melli Iran", "brand:wikidata": "Q806640", "brand:wikipedia": "en:Bank Melli Iran", "name": "بانک ملی", "name:en": "Bank Melli Iran"}, "countryCodes": ["ir"], "matchScore": 2, "suggestion": true}, "amenity/bank/بانک مهر اقتصاد": {"name": "بانک مهر اقتصاد", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5942921"}, "addTags": {"amenity": "bank", "brand": "بانک مهر اقتصاد", "brand:wikidata": "Q5942921", "brand:wikipedia": "fa:بانک مهر اقتصاد", "name": "بانک مهر اقتصاد", "name:en": "Mehr Eqtesad Bank"}, "removeTags": {"amenity": "bank", "brand": "بانک مهر اقتصاد", "brand:wikidata": "Q5942921", "brand:wikipedia": "fa:بانک مهر اقتصاد", "name": "بانک مهر اقتصاد", "name:en": "Mehr Eqtesad Bank"}, "countryCodes": ["ir"], "matchScore": 2, "suggestion": true}, "amenity/bank/بانک پارسیان": {"name": "بانک پارسیان", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2410404"}, "addTags": {"amenity": "bank", "brand": "بانک پارسیان", "brand:en": "Parsian Bank", "brand:wikidata": "Q2410404", "brand:wikipedia": "en:Parsian Bank", "name": "بانک پارسیان", "name:en": "Parsian Bank"}, "removeTags": {"amenity": "bank", "brand": "بانک پارسیان", "brand:en": "Parsian Bank", "brand:wikidata": "Q2410404", "brand:wikipedia": "en:Parsian Bank", "name": "بانک پارسیان", "name:en": "Parsian Bank"}, "countryCodes": ["ir"], "matchScore": 2, "suggestion": true}, "amenity/bank/بانک پاسارگاد": {"name": "بانک پاسارگاد", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4855962"}, "addTags": {"amenity": "bank", "brand": "بانک پاسارگاد", "brand:en": "Bank Pasargad", "brand:wikidata": "Q4855962", "brand:wikipedia": "en:Bank Pasargad", "name": "بانک پاسارگاد", "name:en": "Bank Pasargad"}, "removeTags": {"amenity": "bank", "brand": "بانک پاسارگاد", "brand:en": "Bank Pasargad", "brand:wikidata": "Q4855962", "brand:wikipedia": "en:Bank Pasargad", "name": "بانک پاسارگاد", "name:en": "Bank Pasargad"}, "countryCodes": ["ir"], "matchScore": 2, "suggestion": true}, @@ -1611,9 +1626,9 @@ "amenity/bank/ธนาคารกรุงไทย": {"name": "ธนาคารกรุงไทย", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q962865"}, "addTags": {"amenity": "bank", "brand": "ธนาคารกรุงไทย", "brand:en": "Krung Thai Bank", "brand:th": "ธนาคารกรุงไทย", "brand:wikidata": "Q962865", "brand:wikipedia": "en:Krung Thai Bank", "name": "ธนาคารกรุงไทย", "name:en": "Krung Thai Bank", "name:th": "ธนาคารกรุงไทย"}, "removeTags": {"amenity": "bank", "brand": "ธนาคารกรุงไทย", "brand:en": "Krung Thai Bank", "brand:th": "ธนาคารกรุงไทย", "brand:wikidata": "Q962865", "brand:wikipedia": "en:Krung Thai Bank", "name": "ธนาคารกรุงไทย", "name:en": "Krung Thai Bank", "name:th": "ธนาคารกรุงไทย"}, "countryCodes": ["th"], "matchScore": 2, "suggestion": true}, "amenity/bank/ธนาคารกสิกรไทย": {"name": "ธนาคารกสิกรไทย", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q276557"}, "addTags": {"amenity": "bank", "brand": "ธนาคารกสิกรไทย", "brand:en": "en:Kasikornbank", "brand:th": "ธนาคารกสิกรไทย", "brand:wikidata": "Q276557", "brand:wikipedia": "en:Kasikornbank", "name": "ธนาคารกสิกรไทย", "name:en": "en:Kasikornbank", "name:th": "ธนาคารกสิกรไทย"}, "removeTags": {"amenity": "bank", "brand": "ธนาคารกสิกรไทย", "brand:en": "en:Kasikornbank", "brand:th": "ธนาคารกสิกรไทย", "brand:wikidata": "Q276557", "brand:wikipedia": "en:Kasikornbank", "name": "ธนาคารกสิกรไทย", "name:en": "en:Kasikornbank", "name:th": "ธนาคารกสิกรไทย"}, "countryCodes": ["th"], "matchScore": 2, "suggestion": true}, "amenity/bank/ธนาคารออมสิน": {"name": "ธนาคารออมสิน", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q6579041"}, "addTags": {"amenity": "bank", "brand": "ธนาคารออมสิน", "brand:en": "Government Savings Bank", "brand:th": "ธนาคารออมสิน", "brand:wikidata": "Q6579041", "brand:wikipedia": "en:Government Savings Bank (Thailand)", "name": "ธนาคารออมสิน", "name:en": "Government Savings Bank", "name:th": "ธนาคารออมสิน"}, "removeTags": {"amenity": "bank", "brand": "ธนาคารออมสิน", "brand:en": "Government Savings Bank", "brand:th": "ธนาคารออมสิน", "brand:wikidata": "Q6579041", "brand:wikipedia": "en:Government Savings Bank (Thailand)", "name": "ธนาคารออมสิน", "name:en": "Government Savings Bank", "name:th": "ธนาคารออมสิน"}, "countryCodes": ["th"], "matchScore": 2, "suggestion": true}, - "amenity/bank/ธนาคารไทยพาณิชย์": {"name": "ธนาคารไทยพาณิชย์", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2038986"}, "addTags": {"amenity": "bank", "brand": "ธนาคารไทยพาณิชย์", "brand:en": "Siam Commercial Bank", "brand:th": "ธนาคารไทยพาณิชย์", "brand:wikidata": "Q2038986", "brand:wikipedia": "en:Siam Commercial Bank", "name": "ธนาคารไทยพาณิชย์", "name:en": "Siam Commercial Bank", "name:th": "ธนาคารไทยพาณิชย์"}, "removeTags": {"amenity": "bank", "brand": "ธนาคารไทยพาณิชย์", "brand:en": "Siam Commercial Bank", "brand:th": "ธนาคารไทยพาณิชย์", "brand:wikidata": "Q2038986", "brand:wikipedia": "en:Siam Commercial Bank", "name": "ธนาคารไทยพาณิชย์", "name:en": "Siam Commercial Bank", "name:th": "ธนาคารไทยพาณิชย์"}, "countryCodes": ["th"], "matchScore": 2, "suggestion": true}, + "amenity/bank/ธนาคารไทยพาณิชย์": {"name": "ธนาคารไทยพาณิชย์", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/scb.thailand/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2038986"}, "addTags": {"amenity": "bank", "brand": "ธนาคารไทยพาณิชย์", "brand:en": "Siam Commercial Bank", "brand:th": "ธนาคารไทยพาณิชย์", "brand:wikidata": "Q2038986", "brand:wikipedia": "en:Siam Commercial Bank", "name": "ธนาคารไทยพาณิชย์", "name:en": "Siam Commercial Bank", "name:th": "ธนาคารไทยพาณิชย์"}, "removeTags": {"amenity": "bank", "brand": "ธนาคารไทยพาณิชย์", "brand:en": "Siam Commercial Bank", "brand:th": "ธนาคารไทยพาณิชย์", "brand:wikidata": "Q2038986", "brand:wikipedia": "en:Siam Commercial Bank", "name": "ธนาคารไทยพาณิชย์", "name:en": "Siam Commercial Bank", "name:th": "ธนาคารไทยพาณิชย์"}, "countryCodes": ["th"], "matchScore": 2, "suggestion": true}, "amenity/bank/みずほ銀行": {"name": "みずほ銀行", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/902036508672106496/L8rp7WY6_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2882956"}, "addTags": {"amenity": "bank", "brand": "みずほ銀行", "brand:en": "Mizuho Bank", "brand:ja": "みずほ銀行", "brand:wikidata": "Q2882956", "brand:wikipedia": "en:Mizuho Bank", "name": "みずほ銀行", "name:en": "Mizuho Bank", "name:ja": "みずほ銀行"}, "removeTags": {"amenity": "bank", "brand": "みずほ銀行", "brand:en": "Mizuho Bank", "brand:ja": "みずほ銀行", "brand:wikidata": "Q2882956", "brand:wikipedia": "en:Mizuho Bank", "name": "みずほ銀行", "name:en": "Mizuho Bank", "name:ja": "みずほ銀行"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/bank/ゆうちょ銀行": {"name": "ゆうちょ銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FJapan%20Post%20Bank%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q907103"}, "addTags": {"amenity": "bank", "brand": "ゆうちょ銀行", "brand:en": "Japan Post Bank", "brand:wikidata": "Q907103", "brand:wikipedia": "ja:ゆうちょ銀行", "name": "ゆうちょ銀行", "name:en": "Japan Post Bank"}, "removeTags": {"amenity": "bank", "brand": "ゆうちょ銀行", "brand:en": "Japan Post Bank", "brand:wikidata": "Q907103", "brand:wikipedia": "ja:ゆうちょ銀行", "name": "ゆうちょ銀行", "name:en": "Japan Post Bank"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/bank/ゆうちょ銀行": {"name": "ゆうちょ銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FJapan%20Post%20Bank%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q907103"}, "addTags": {"amenity": "bank", "brand": "ゆうちょ銀行", "brand:en": "Japan Post Bank", "brand:ja": "ゆうちょ銀行", "brand:wikidata": "Q907103", "brand:wikipedia": "ja:ゆうちょ銀行", "name": "ゆうちょ銀行", "name:en": "Japan Post Bank", "name:ja": "ゆうちょ銀行"}, "removeTags": {"amenity": "bank", "brand": "ゆうちょ銀行", "brand:en": "Japan Post Bank", "brand:ja": "ゆうちょ銀行", "brand:wikidata": "Q907103", "brand:wikipedia": "ja:ゆうちょ銀行", "name": "ゆうちょ銀行", "name:en": "Japan Post Bank", "name:ja": "ゆうちょ銀行"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/bank/りそな銀行": {"name": "りそな銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FResona%20Bank%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q11281447"}, "addTags": {"amenity": "bank", "brand": "りそな銀行", "brand:en": "Resona Bank", "brand:ja": "りそな銀行", "brand:wikidata": "Q11281447", "brand:wikipedia": "ja:りそな銀行", "name": "りそな銀行", "name:en": "Resona Bank", "name:ja": "りそな銀行"}, "removeTags": {"amenity": "bank", "brand": "りそな銀行", "brand:en": "Resona Bank", "brand:ja": "りそな銀行", "brand:wikidata": "Q11281447", "brand:wikipedia": "ja:りそな銀行", "name": "りそな銀行", "name:en": "Resona Bank", "name:ja": "りそな銀行"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/bank/三井住友銀行": {"name": "三井住友銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSumitomo%20Mitsui%20Banking%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2660418"}, "addTags": {"amenity": "bank", "brand": "三井住友銀行", "brand:en": "Sumitomo Mitsui Banking Corporation", "brand:wikidata": "Q2660418", "brand:wikipedia": "en:Sumitomo Mitsui Banking Corporation", "name": "三井住友銀行", "name:en": "Sumitomo Mitsui Banking Corporation"}, "removeTags": {"amenity": "bank", "brand": "三井住友銀行", "brand:en": "Sumitomo Mitsui Banking Corporation", "brand:wikidata": "Q2660418", "brand:wikipedia": "en:Sumitomo Mitsui Banking Corporation", "name": "三井住友銀行", "name:en": "Sumitomo Mitsui Banking Corporation"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/bank/三菱東京UFJ銀行": {"name": "三菱東京UFJ銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bk.mufg.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q988284"}, "addTags": {"amenity": "bank", "brand": "三菱東京UFJ銀行", "brand:en": "MUFG Bank", "brand:wikidata": "Q988284", "brand:wikipedia": "en:MUFG Bank", "name": "三菱東京UFJ銀行", "name:en": "MUFG Bank"}, "removeTags": {"amenity": "bank", "brand": "三菱東京UFJ銀行", "brand:en": "MUFG Bank", "brand:wikidata": "Q988284", "brand:wikipedia": "en:MUFG Bank", "name": "三菱東京UFJ銀行", "name:en": "MUFG Bank"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, @@ -1649,6 +1664,7 @@ "amenity/bank/板信商業銀行": {"name": "板信商業銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q11104946"}, "addTags": {"amenity": "bank", "brand": "板信商業銀行", "brand:en": "Bank of Panshin", "brand:wikidata": "Q11104946", "brand:wikipedia": "zh:板信商業銀行", "name": "板信商業銀行", "name:en": "Bank of Panshin"}, "removeTags": {"amenity": "bank", "brand": "板信商業銀行", "brand:en": "Bank of Panshin", "brand:wikidata": "Q11104946", "brand:wikipedia": "zh:板信商業銀行", "name": "板信商業銀行", "name:en": "Bank of Panshin"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "amenity/bank/横浜銀行": {"name": "横浜銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q2744340"}, "addTags": {"amenity": "bank", "brand": "横浜銀行", "brand:en": "Bank of Yokohama", "brand:wikidata": "Q2744340", "brand:wikipedia": "en:Bank of Yokohama", "name": "横浜銀行", "name:en": "Bank of Yokohama"}, "removeTags": {"amenity": "bank", "brand": "横浜銀行", "brand:en": "Bank of Yokohama", "brand:wikidata": "Q2744340", "brand:wikipedia": "en:Bank of Yokohama", "name": "横浜銀行", "name:en": "Bank of Yokohama"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/bank/永豐商業銀行": {"name": "永豐商業銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBank%20SinoPac%20logo%2020121103.gif&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q4855976"}, "addTags": {"amenity": "bank", "brand": "永豐商業銀行", "brand:en": "Bank SinoPac", "brand:wikidata": "Q4855976", "brand:wikipedia": "en:Bank SinoPac", "name": "永豐商業銀行", "name:en": "Bank SinoPac"}, "removeTags": {"amenity": "bank", "brand": "永豐商業銀行", "brand:en": "Bank SinoPac", "brand:wikidata": "Q4855976", "brand:wikipedia": "en:Bank SinoPac", "name": "永豐商業銀行", "name:en": "Bank SinoPac"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, + "amenity/bank/渣打國際商業銀行": {"name": "渣打國際商業銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/StandardCharteredTW/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q62267023"}, "addTags": {"amenity": "bank", "brand": "渣打國際商業銀行", "brand:wikidata": "Q62267023", "name": "渣打國際商業銀行"}, "removeTags": {"amenity": "bank", "brand": "渣打國際商業銀行", "brand:wikidata": "Q62267023", "name": "渣打國際商業銀行"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "amenity/bank/玉山商業銀行": {"name": "玉山商業銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FE.SUN%20Bank.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q5321663"}, "addTags": {"amenity": "bank", "brand": "玉山商業銀行", "brand:en": "E.SUN Commercial Bank", "brand:wikidata": "Q5321663", "brand:wikipedia": "en:E.SUN Commercial Bank", "name": "玉山商業銀行", "name:en": "E.SUN Commercial Bank"}, "removeTags": {"amenity": "bank", "brand": "玉山商業銀行", "brand:en": "E.SUN Commercial Bank", "brand:wikidata": "Q5321663", "brand:wikipedia": "en:E.SUN Commercial Bank", "name": "玉山商業銀行", "name:en": "E.SUN Commercial Bank"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "amenity/bank/第一商業銀行": {"name": "第一商業銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q11602128"}, "addTags": {"amenity": "bank", "brand": "第一商業銀行", "brand:en": "First Commercial Bank", "brand:wikidata": "Q11602128", "brand:wikipedia": "zh:第一商業銀行", "name": "第一商業銀行", "name:en": "First Commercial Bank"}, "removeTags": {"amenity": "bank", "brand": "第一商業銀行", "brand:en": "First Commercial Bank", "brand:wikidata": "Q11602128", "brand:wikipedia": "zh:第一商業銀行", "name": "第一商業銀行", "name:en": "First Commercial Bank"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "amenity/bank/聯邦商業銀行": {"name": "聯邦商業銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q15927195"}, "addTags": {"amenity": "bank", "brand": "聯邦商業銀行", "brand:en": "Union Bank of Taiwan", "brand:wikidata": "Q15927195", "brand:wikipedia": "zh:聯邦商業銀行", "name": "聯邦商業銀行", "name:en": "Union Bank of Taiwan"}, "removeTags": {"amenity": "bank", "brand": "聯邦商業銀行", "brand:en": "Union Bank of Taiwan", "brand:wikidata": "Q15927195", "brand:wikipedia": "zh:聯邦商業銀行", "name": "聯邦商業銀行", "name:en": "Union Bank of Taiwan"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, @@ -1656,12 +1672,14 @@ "amenity/bank/臺灣土地銀行": {"name": "臺灣土地銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q717592"}, "addTags": {"amenity": "bank", "brand": "臺灣土地銀行", "brand:en": "Land Bank of Taiwan", "brand:wikidata": "Q717592", "brand:wikipedia": "en:Land Bank of Taiwan", "name": "臺灣土地銀行", "name:en": "Land Bank of Taiwan"}, "removeTags": {"amenity": "bank", "brand": "臺灣土地銀行", "brand:en": "Land Bank of Taiwan", "brand:wikidata": "Q717592", "brand:wikipedia": "en:Land Bank of Taiwan", "name": "臺灣土地銀行", "name:en": "Land Bank of Taiwan"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "amenity/bank/臺灣新光商業銀行": {"name": "臺灣新光商業銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q15909616"}, "addTags": {"amenity": "bank", "brand": "臺灣新光商業銀行", "brand:en": "Shin Kong Commercial Bank", "brand:wikidata": "Q15909616", "brand:wikipedia": "zh:臺灣新光商業銀行", "name": "臺灣新光商業銀行", "name:en": "Shin Kong Commercial Bank"}, "removeTags": {"amenity": "bank", "brand": "臺灣新光商業銀行", "brand:en": "Shin Kong Commercial Bank", "brand:wikidata": "Q15909616", "brand:wikipedia": "zh:臺灣新光商業銀行", "name": "臺灣新光商業銀行", "name:en": "Shin Kong Commercial Bank"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "amenity/bank/臺灣銀行": {"name": "臺灣銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q706533"}, "addTags": {"amenity": "bank", "brand": "臺灣銀行", "brand:en": "Bank of Taiwan", "brand:wikidata": "Q706533", "brand:wikipedia": "en:Bank of Taiwan", "name": "臺灣銀行", "name:en": "Bank of Taiwan"}, "removeTags": {"amenity": "bank", "brand": "臺灣銀行", "brand:en": "Bank of Taiwan", "brand:wikidata": "Q706533", "brand:wikipedia": "en:Bank of Taiwan", "name": "臺灣銀行", "name:en": "Bank of Taiwan"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, - "amenity/bank/華南商業銀行": {"name": "華南商業銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q11620043"}, "addTags": {"amenity": "bank", "brand": "華南商業銀行", "brand:en": "Hua Nan Commercial Bank", "brand:wikidata": "Q11620043", "brand:wikipedia": "zh:華南商業銀行", "name": "華南商業銀行", "name:en": "Hua Nan Commercial Bank"}, "removeTags": {"amenity": "bank", "brand": "華南商業銀行", "brand:en": "Hua Nan Commercial Bank", "brand:wikidata": "Q11620043", "brand:wikipedia": "zh:華南商業銀行", "name": "華南商業銀行", "name:en": "Hua Nan Commercial Bank"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, + "amenity/bank/華南商業銀行": {"name": "華南商業銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q11620043"}, "addTags": {"amenity": "bank", "brand": "華南商業銀行", "brand:en": "Hua Nan Commercial Bank", "brand:wikidata": "Q11620043", "brand:wikipedia": "zh:華南銀行", "name": "華南商業銀行", "name:en": "Hua Nan Commercial Bank"}, "removeTags": {"amenity": "bank", "brand": "華南商業銀行", "brand:en": "Hua Nan Commercial Bank", "brand:wikidata": "Q11620043", "brand:wikipedia": "zh:華南銀行", "name": "華南商業銀行", "name:en": "Hua Nan Commercial Bank"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "amenity/bank/遠東國際商業銀行": {"name": "遠東國際商業銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q15911143"}, "addTags": {"amenity": "bank", "brand": "遠東國際商業銀行", "brand:en": "Far Eastern International Bank", "brand:wikidata": "Q15911143", "brand:wikipedia": "zh:遠東國際商業銀行", "name": "遠東國際商業銀行", "name:en": "Far Eastern International Bank"}, "removeTags": {"amenity": "bank", "brand": "遠東國際商業銀行", "brand:en": "Far Eastern International Bank", "brand:wikidata": "Q15911143", "brand:wikipedia": "zh:遠東國際商業銀行", "name": "遠東國際商業銀行", "name:en": "Far Eastern International Bank"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "amenity/bank/陽信商業銀行": {"name": "陽信商業銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q11658759"}, "addTags": {"amenity": "bank", "brand": "陽信商業銀行", "brand:en": "Sunny Commercial Bank", "brand:wikidata": "Q11658759", "brand:wikipedia": "zh:陽信商業銀行", "name": "陽信商業銀行", "name:en": "Sunny Commercial Bank"}, "removeTags": {"amenity": "bank", "brand": "陽信商業銀行", "brand:en": "Sunny Commercial Bank", "brand:wikidata": "Q11658759", "brand:wikipedia": "zh:陽信商業銀行", "name": "陽信商業銀行", "name:en": "Sunny Commercial Bank"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "amenity/bank/静岡銀行": {"name": "静岡銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q7499501"}, "addTags": {"amenity": "bank", "brand": "静岡銀行", "brand:en": "Shizuoka Bank", "brand:wikidata": "Q7499501", "brand:wikipedia": "en:Shizuoka Bank", "name": "静岡銀行", "name:en": "Shizuoka Bank"}, "removeTags": {"amenity": "bank", "brand": "静岡銀行", "brand:en": "Shizuoka Bank", "brand:wikidata": "Q7499501", "brand:wikipedia": "en:Shizuoka Bank", "name": "静岡銀行", "name:en": "Shizuoka Bank"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/bank/국민은행": {"name": "국민은행", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKB%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q496606"}, "addTags": {"amenity": "bank", "brand": "국민은행", "brand:en": "KB Kookmin Bank", "brand:ko": "국민은행", "brand:wikidata": "Q496606", "brand:wikipedia": "en:KB Kookmin Bank", "name": "국민은행", "name:en": "KB Kookmin Bank", "name:ko": "국민은행"}, "removeTags": {"amenity": "bank", "brand": "국민은행", "brand:en": "KB Kookmin Bank", "brand:ko": "국민은행", "brand:wikidata": "Q496606", "brand:wikipedia": "en:KB Kookmin Bank", "name": "국민은행", "name:en": "KB Kookmin Bank", "name:ko": "국민은행"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, + "amenity/bank/국민은행": {"name": "국민은행", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKB%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q496606"}, "addTags": {"amenity": "bank", "brand": "국민은행", "brand:en": "KB Kookmin Bank", "brand:ko": "국민은행", "brand:wikidata": "Q496606", "brand:wikipedia": "en:KB Financial Group Inc", "name": "국민은행", "name:en": "KB Kookmin Bank", "name:ko": "국민은행"}, "removeTags": {"amenity": "bank", "brand": "국민은행", "brand:en": "KB Kookmin Bank", "brand:ko": "국민은행", "brand:wikidata": "Q496606", "brand:wikipedia": "en:KB Financial Group Inc", "name": "국민은행", "name:en": "KB Kookmin Bank", "name:ko": "국민은행"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, "amenity/bank/기업은행": {"name": "기업은행", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q483855"}, "addTags": {"amenity": "bank", "brand": "기업은행", "brand:en": "Industrial Bank of Korea", "brand:ko": "기업은행", "brand:wikidata": "Q483855", "brand:wikipedia": "en:Industrial Bank of Korea", "name": "기업은행", "name:en": "Industrial Bank of Korea", "name:ko": "기업은행"}, "removeTags": {"amenity": "bank", "brand": "기업은행", "brand:en": "Industrial Bank of Korea", "brand:ko": "기업은행", "brand:wikidata": "Q483855", "brand:wikipedia": "en:Industrial Bank of Korea", "name": "기업은행", "name:en": "Industrial Bank of Korea", "name:ko": "기업은행"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, + "amenity/bank/농협": {"name": "농협", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/nhnonghyupbank/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q15283673"}, "addTags": {"amenity": "bank", "brand": "농협", "brand:en": "NH", "brand:ko": "농협", "brand:wikidata": "Q15283673", "brand:wikipedia": "ko:NH농협은행", "name": "농협", "name:en": "NH", "name:ko": "농협"}, "removeTags": {"amenity": "bank", "brand": "농협", "brand:en": "NH", "brand:ko": "농협", "brand:wikidata": "Q15283673", "brand:wikipedia": "ko:NH농협은행", "name": "농협", "name:en": "NH", "name:ko": "농협"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, + "amenity/bank/새마을금고": {"name": "새마을금고", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/kfcc.kr/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q12600614"}, "addTags": {"amenity": "bank", "brand": "새마을금고", "brand:ko": "새마을금고", "brand:wikidata": "Q12600614", "brand:wikipedia": "ko:새마을금고", "name": "새마을금고", "name:ko": "새마을금고"}, "removeTags": {"amenity": "bank", "brand": "새마을금고", "brand:ko": "새마을금고", "brand:wikidata": "Q12600614", "brand:wikipedia": "ko:새마을금고", "name": "새마을금고", "name:ko": "새마을금고"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, "amenity/bank/신한은행": {"name": "신한은행", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q487230"}, "addTags": {"amenity": "bank", "brand": "신한은행", "brand:en": "Sinhan Bank", "brand:ko": "신한은행", "brand:wikidata": "Q487230", "brand:wikipedia": "en:Shinhan Bank", "name": "신한은행", "name:en": "Sinhan Bank", "name:ko": "신한은행"}, "removeTags": {"amenity": "bank", "brand": "신한은행", "brand:en": "Sinhan Bank", "brand:ko": "신한은행", "brand:wikidata": "Q487230", "brand:wikipedia": "en:Shinhan Bank", "name": "신한은행", "name:en": "Sinhan Bank", "name:ko": "신한은행"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, "amenity/bank/우리은행": {"name": "우리은행", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q494369"}, "addTags": {"amenity": "bank", "brand": "우리은행", "brand:en": "Woori Bank", "brand:ko": "우리은행", "brand:wikidata": "Q494369", "brand:wikipedia": "en:Woori Bank", "name": "우리은행", "name:en": "Woori Bank", "name:ko": "우리은행"}, "removeTags": {"amenity": "bank", "brand": "우리은행", "brand:en": "Woori Bank", "brand:ko": "우리은행", "brand:wikidata": "Q494369", "brand:wikipedia": "en:Woori Bank", "name": "우리은행", "name:en": "Woori Bank", "name:ko": "우리은행"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, "amenity/bank/하나은행": {"name": "하나은행", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKEB%20head%20office.JPG&width=100", "geometry": ["point", "area"], "tags": {"amenity": "bank", "brand:wikidata": "Q484047"}, "addTags": {"amenity": "bank", "brand": "하나은행", "brand:en": "Korea Exchange Bank", "brand:ko": "하나은행", "brand:wikidata": "Q484047", "brand:wikipedia": "en:Korea Exchange Bank", "name": "하나은행", "name:en": "Korea Exchange Bank", "name:ko": "하나은행"}, "removeTags": {"amenity": "bank", "brand": "하나은행", "brand:en": "Korea Exchange Bank", "brand:ko": "하나은행", "brand:wikidata": "Q484047", "brand:wikipedia": "en:Korea Exchange Bank", "name": "하나은행", "name:en": "Korea Exchange Bank", "name:ko": "하나은행"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, @@ -1669,75 +1687,76 @@ "amenity/bicycle_rental/Grid": {"name": "Grid", "icon": "maki-bicycle", "imageURL": "https://graph.facebook.com/Gridbikes/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"amenity": "bicycle_rental", "brand:wikidata": "Q62104168"}, "addTags": {"amenity": "bicycle_rental", "brand": "Grid", "brand:wikidata": "Q62104168", "name": "Grid"}, "removeTags": {"amenity": "bicycle_rental", "brand": "Grid", "brand:wikidata": "Q62104168", "name": "Grid"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/bicycle_rental/MiBici": {"name": "MiBici", "icon": "maki-bicycle", "imageURL": "https://graph.facebook.com/MiBiciPublica/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"amenity": "bicycle_rental", "brand:wikidata": "Q60966987"}, "addTags": {"amenity": "bicycle_rental", "brand": "MiBici", "brand:wikidata": "Q60966987", "brand:wikipedia": "es:MiBici", "name": "MiBici"}, "removeTags": {"amenity": "bicycle_rental", "brand": "MiBici", "brand:wikidata": "Q60966987", "brand:wikipedia": "es:MiBici", "name": "MiBici"}, "countryCodes": ["mx"], "matchScore": 2, "suggestion": true}, "amenity/bicycle_rental/Swapfiets": {"name": "Swapfiets", "icon": "maki-bicycle", "imageURL": "https://graph.facebook.com/Swapfiets/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"amenity": "bicycle_rental", "brand:wikidata": "Q62104374"}, "addTags": {"amenity": "bicycle_rental", "brand": "Swapfiets", "brand:wikidata": "Q62104374", "name": "Swapfiets"}, "removeTags": {"amenity": "bicycle_rental", "brand": "Swapfiets", "brand:wikidata": "Q62104374", "name": "Swapfiets"}, "countryCodes": ["be", "de", "dk", "nl"], "matchScore": 2, "suggestion": true}, - "amenity/bicycle_rental/metropolradruhr": {"name": "metropolradruhr", "icon": "maki-bicycle", "geometry": ["point", "vertex", "area"], "tags": {"amenity": "bicycle_rental", "brand:wikidata": "Q62104274"}, "addTags": {"amenity": "bicycle_rental", "brand": "metropolradruhr", "brand:wikidata": "Q62104274", "name": "metropolradruhr", "operator": "nextbike", "operator:wikidata": "Q2351279", "operator:wikipedia": "en:nextbike"}, "removeTags": {"amenity": "bicycle_rental", "brand": "metropolradruhr", "brand:wikidata": "Q62104274", "name": "metropolradruhr", "operator": "nextbike", "operator:wikidata": "Q2351279", "operator:wikipedia": "en:nextbike"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "amenity/bicycle_rental/metropolradruhr": {"name": "metropolradruhr", "icon": "maki-bicycle", "imageURL": "https://graph.facebook.com/nextbike/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"amenity": "bicycle_rental", "brand:wikidata": "Q62104274"}, "addTags": {"amenity": "bicycle_rental", "brand": "metropolradruhr", "brand:wikidata": "Q62104274", "name": "metropolradruhr", "operator": "nextbike", "operator:wikidata": "Q2351279", "operator:wikipedia": "en:Nextbike"}, "removeTags": {"amenity": "bicycle_rental", "brand": "metropolradruhr", "brand:wikidata": "Q62104274", "name": "metropolradruhr", "operator": "nextbike", "operator:wikidata": "Q2351279", "operator:wikipedia": "en:Nextbike"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "amenity/bureau_de_change/Abitab": {"name": "Abitab", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Abitaboficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bureau_de_change", "brand:wikidata": "Q16488129"}, "addTags": {"amenity": "bureau_de_change", "brand": "Abitab", "brand:wikidata": "Q16488129", "brand:wikipedia": "es:Abitab", "name": "Abitab"}, "removeTags": {"amenity": "bureau_de_change", "brand": "Abitab", "brand:wikidata": "Q16488129", "brand:wikipedia": "es:Abitab", "name": "Abitab"}, "countryCodes": ["uy"], "matchScore": 2, "suggestion": true}, "amenity/bureau_de_change/CADECA": {"name": "CADECA", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"amenity": "bureau_de_change", "brand:wikidata": "Q62122716"}, "addTags": {"amenity": "bureau_de_change", "brand": "CADECA", "brand:wikidata": "Q62122716", "name": "CADECA"}, "removeTags": {"amenity": "bureau_de_change", "brand": "CADECA", "brand:wikidata": "Q62122716", "name": "CADECA"}, "countryCodes": ["cu"], "matchScore": 2, "suggestion": true}, "amenity/bureau_de_change/Travelex": {"name": "Travelex", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/TravelexUK/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "bureau_de_change", "brand:wikidata": "Q2337964"}, "addTags": {"amenity": "bureau_de_change", "brand": "Travelex", "brand:wikidata": "Q2337964", "brand:wikipedia": "en:Travelex", "name": "Travelex"}, "removeTags": {"amenity": "bureau_de_change", "brand": "Travelex", "brand:wikidata": "Q2337964", "brand:wikipedia": "en:Travelex", "name": "Travelex"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/85度C": {"name": "85度C", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/85CBakeryCafe/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q4644852"}, "addTags": {"amenity": "cafe", "brand": "85度C", "brand:en": "85C Bakery Cafe", "brand:wikidata": "Q4644852", "brand:wikipedia": "en:85C Bakery Cafe", "cuisine": "coffee_shop", "name": "85度C", "name:en": "85C Bakery Cafe"}, "removeTags": {"amenity": "cafe", "brand": "85度C", "brand:en": "85C Bakery Cafe", "brand:wikidata": "Q4644852", "brand:wikipedia": "en:85C Bakery Cafe", "cuisine": "coffee_shop", "name": "85度C", "name:en": "85C Bakery Cafe"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Au Bon Pain": {"name": "Au Bon Pain", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/aubonpain/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q4818942"}, "addTags": {"amenity": "cafe", "brand": "Au Bon Pain", "brand:wikidata": "Q4818942", "brand:wikipedia": "en:Au Bon Pain", "name": "Au Bon Pain"}, "removeTags": {"amenity": "cafe", "brand": "Au Bon Pain", "brand:wikidata": "Q4818942", "brand:wikipedia": "en:Au Bon Pain", "name": "Au Bon Pain"}, "countryCodes": ["in", "th", "us"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/Barista": {"name": "Barista", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/BaristaCoffeeCompany/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q644735"}, "addTags": {"amenity": "cafe", "brand": "Barista", "brand:wikidata": "Q644735", "brand:wikipedia": "en:Barista (company)", "cuisine": "coffee_shop", "name": "Barista"}, "removeTags": {"amenity": "cafe", "brand": "Barista", "brand:wikidata": "Q644735", "brand:wikipedia": "en:Barista (company)", "cuisine": "coffee_shop", "name": "Barista"}, "countryCodes": ["in", "lk", "mv", "np"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/Bonafide": {"name": "Bonafide", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/BonafideArgentina/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q62122746"}, "addTags": {"amenity": "cafe", "brand": "Bonafide", "brand:wikidata": "Q62122746", "cuisine": "coffee_shop", "name": "Bonafide"}, "removeTags": {"amenity": "cafe", "brand": "Bonafide", "brand:wikidata": "Q62122746", "cuisine": "coffee_shop", "name": "Bonafide"}, "countryCodes": ["ar", "cl"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/Cafe Coffee Day": {"name": "Cafe Coffee Day", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/cafecoffeeday/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q5017235"}, "addTags": {"amenity": "cafe", "brand": "Cafe Coffee Day", "brand:wikidata": "Q5017235", "brand:wikipedia": "en:Café Coffee Day", "cuisine": "coffee_shop", "name": "Cafe Coffee Day"}, "removeTags": {"amenity": "cafe", "brand": "Cafe Coffee Day", "brand:wikidata": "Q5017235", "brand:wikipedia": "en:Café Coffee Day", "cuisine": "coffee_shop", "name": "Cafe Coffee Day"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Caffè Nero": {"name": "Caffè Nero", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/caffenerous/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q675808"}, "addTags": {"amenity": "cafe", "brand": "Caffè Nero", "brand:wikidata": "Q675808", "brand:wikipedia": "en:Caffè Nero", "cuisine": "coffee_shop", "name": "Caffè Nero"}, "removeTags": {"amenity": "cafe", "brand": "Caffè Nero", "brand:wikidata": "Q675808", "brand:wikipedia": "en:Caffè Nero", "cuisine": "coffee_shop", "name": "Caffè Nero"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Café Amazon": {"name": "Café Amazon", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q43247503"}, "addTags": {"amenity": "cafe", "brand": "Café Amazon", "brand:wikidata": "Q43247503", "brand:wikipedia": "en:Café Amazon", "cuisine": "coffee_shop", "name": "Café Amazon"}, "removeTags": {"amenity": "cafe", "brand": "Café Amazon", "brand:wikidata": "Q43247503", "brand:wikipedia": "en:Café Amazon", "cuisine": "coffee_shop", "name": "Café Amazon"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Café Martínez": {"name": "Café Martínez", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/CafeMartinezSitioOficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q16540032"}, "addTags": {"amenity": "cafe", "brand": "Café Martínez", "brand:wikidata": "Q16540032", "brand:wikipedia": "es:Café Martínez", "cuisine": "coffee_shop", "name": "Café Martínez"}, "removeTags": {"amenity": "cafe", "brand": "Café Martínez", "brand:wikidata": "Q16540032", "brand:wikipedia": "es:Café Martínez", "cuisine": "coffee_shop", "name": "Café Martínez"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/Caribou Coffee": {"name": "Caribou Coffee", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/cariboucoffee/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q5039494"}, "addTags": {"amenity": "cafe", "brand": "Caribou Coffee", "brand:wikidata": "Q5039494", "brand:wikipedia": "en:Caribou Coffee", "cuisine": "coffee_shop", "name": "Caribou Coffee"}, "removeTags": {"amenity": "cafe", "brand": "Caribou Coffee", "brand:wikidata": "Q5039494", "brand:wikipedia": "en:Caribou Coffee", "cuisine": "coffee_shop", "name": "Caribou Coffee"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Chatime": {"name": "Chatime", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/ChatimeCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q16829306"}, "addTags": {"amenity": "cafe", "brand": "Chatime", "brand:wikidata": "Q16829306", "brand:wikipedia": "en:Chatime", "cuisine": "coffee_shop", "name": "Chatime"}, "removeTags": {"amenity": "cafe", "brand": "Chatime", "brand:wikidata": "Q16829306", "brand:wikipedia": "en:Chatime", "cuisine": "coffee_shop", "name": "Chatime"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Coffee Fellows": {"name": "Coffee Fellows", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/CoffeeFellowsDeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q23461429"}, "addTags": {"amenity": "cafe", "brand": "Coffee Fellows", "brand:wikidata": "Q23461429", "brand:wikipedia": "en:Coffee Fellows", "cuisine": "coffee_shop", "name": "Coffee Fellows"}, "removeTags": {"amenity": "cafe", "brand": "Coffee Fellows", "brand:wikidata": "Q23461429", "brand:wikipedia": "en:Coffee Fellows", "cuisine": "coffee_shop", "name": "Coffee Fellows"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Coffee House": {"name": "Coffee House", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/raflaamo/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q11855430"}, "addTags": {"amenity": "cafe", "brand": "Coffee House", "brand:wikidata": "Q11855430", "brand:wikipedia": "fi:Coffee House", "cuisine": "coffee_shop", "name": "Coffee House"}, "removeTags": {"amenity": "cafe", "brand": "Coffee House", "brand:wikidata": "Q11855430", "brand:wikipedia": "fi:Coffee House", "cuisine": "coffee_shop", "name": "Coffee House"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/Coffee Island": {"name": "Coffee Island", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/CoffeeIslandUK/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q60867333"}, "addTags": {"amenity": "cafe", "brand": "Coffee Island", "brand:wikidata": "Q60867333", "brand:wikipedia": "en:Coffee Island", "cuisine": "coffee_shop", "name": "Coffee Island"}, "removeTags": {"amenity": "cafe", "brand": "Coffee Island", "brand:wikidata": "Q60867333", "brand:wikipedia": "en:Coffee Island", "cuisine": "coffee_shop", "name": "Coffee Island"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Coffee Time": {"name": "Coffee Time", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/CoffeeTimeCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q5140932"}, "addTags": {"amenity": "cafe", "brand": "Coffee Time", "brand:wikidata": "Q5140932", "brand:wikipedia": "en:Coffee Time", "cuisine": "coffee_shop", "name": "Coffee Time"}, "removeTags": {"amenity": "cafe", "brand": "Coffee Time", "brand:wikidata": "Q5140932", "brand:wikipedia": "en:Coffee Time", "cuisine": "coffee_shop", "name": "Coffee Time"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Costa": {"name": "Costa", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/costacoffee/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q608845"}, "addTags": {"amenity": "cafe", "brand": "Costa", "brand:wikidata": "Q608845", "brand:wikipedia": "en:Costa Coffee", "cuisine": "coffee_shop", "name": "Costa"}, "removeTags": {"amenity": "cafe", "brand": "Costa", "brand:wikidata": "Q608845", "brand:wikipedia": "en:Costa Coffee", "cuisine": "coffee_shop", "name": "Costa"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Country Style": {"name": "Country Style", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/CountryStyleCDN/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q5177435"}, "addTags": {"amenity": "cafe", "brand": "Country Style", "brand:wikidata": "Q5177435", "brand:wikipedia": "en:Country Style", "cuisine": "coffee_shop", "name": "Country Style"}, "removeTags": {"amenity": "cafe", "brand": "Country Style", "brand:wikidata": "Q5177435", "brand:wikipedia": "en:Country Style", "cuisine": "coffee_shop", "name": "Country Style"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Dutch Bros. Coffee": {"name": "Dutch Bros. Coffee", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/dutchbros/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q5317253"}, "addTags": {"amenity": "cafe", "brand": "Dutch Bros. Coffee", "brand:wikidata": "Q5317253", "brand:wikipedia": "en:Dutch Bros. Coffee", "cuisine": "coffee_shop", "name": "Dutch Bros. Coffee"}, "removeTags": {"amenity": "cafe", "brand": "Dutch Bros. Coffee", "brand:wikidata": "Q5317253", "brand:wikipedia": "en:Dutch Bros. Coffee", "cuisine": "coffee_shop", "name": "Dutch Bros. Coffee"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/Espresso House": {"name": "Espresso House", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/EspressoHouse/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q10489162"}, "addTags": {"amenity": "cafe", "brand": "Espresso House", "brand:wikidata": "Q10489162", "brand:wikipedia": "en:Espresso House", "cuisine": "coffee_shop", "name": "Espresso House"}, "removeTags": {"amenity": "cafe", "brand": "Espresso House", "brand:wikidata": "Q10489162", "brand:wikipedia": "en:Espresso House", "cuisine": "coffee_shop", "name": "Espresso House"}, "countryCodes": ["dk", "fi", "no", "se"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/Fran's Café": {"name": "Fran's Café", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/franscafeoficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q62075645"}, "addTags": {"amenity": "cafe", "brand": "Fran's Café", "brand:website": "http://www.franscafe.com.br", "brand:wikidata": "Q62075645", "cuisine": "coffee_shop", "name": "Fran's Café"}, "removeTags": {"amenity": "cafe", "brand": "Fran's Café", "brand:website": "http://www.franscafe.com.br", "brand:wikidata": "Q62075645", "cuisine": "coffee_shop", "name": "Fran's Café"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/Havanna": {"name": "Havanna", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/HavannaUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q2900869"}, "addTags": {"amenity": "cafe", "brand": "Havanna", "brand:wikidata": "Q2900869", "brand:wikipedia": "es:Havanna", "cuisine": "coffee_shop", "name": "Havanna"}, "removeTags": {"amenity": "cafe", "brand": "Havanna", "brand:wikidata": "Q2900869", "brand:wikipedia": "es:Havanna", "cuisine": "coffee_shop", "name": "Havanna"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Insomnia": {"name": "Insomnia", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/InsomniaCoffeeCo/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q6038271"}, "addTags": {"amenity": "cafe", "brand": "Insomnia", "brand:wikidata": "Q6038271", "brand:wikipedia": "en:Insomnia Coffee Company", "cuisine": "coffee_shop", "name": "Insomnia"}, "removeTags": {"amenity": "cafe", "brand": "Insomnia", "brand:wikidata": "Q6038271", "brand:wikipedia": "en:Insomnia Coffee Company", "cuisine": "coffee_shop", "name": "Insomnia"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Joe & The Juice": {"name": "Joe & The Juice", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/joeandthejuice/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q26221514"}, "addTags": {"amenity": "cafe", "brand": "Joe & The Juice", "brand:wikidata": "Q26221514", "brand:wikipedia": "en:Joe & The Juice", "cuisine": "coffee_shop", "name": "Joe & The Juice"}, "removeTags": {"amenity": "cafe", "brand": "Joe & The Juice", "brand:wikidata": "Q26221514", "brand:wikipedia": "en:Joe & The Juice", "cuisine": "coffee_shop", "name": "Joe & The Juice"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Le Pain Quotidien": {"name": "Le Pain Quotidien", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/lepainquotidienusa/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q2046903"}, "addTags": {"amenity": "cafe", "brand": "Le Pain Quotidien", "brand:wikidata": "Q2046903", "brand:wikipedia": "en:Le Pain Quotidien", "cuisine": "coffee_shop", "name": "Le Pain Quotidien"}, "removeTags": {"amenity": "cafe", "brand": "Le Pain Quotidien", "brand:wikidata": "Q2046903", "brand:wikipedia": "en:Le Pain Quotidien", "cuisine": "coffee_shop", "name": "Le Pain Quotidien"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Mado": {"name": "Mado", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/MADOglobal/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q17116336"}, "addTags": {"amenity": "cafe", "brand": "Mado", "brand:wikidata": "Q17116336", "brand:wikipedia": "en:Mado (food company)", "cuisine": "coffee_shop", "name": "Mado"}, "removeTags": {"amenity": "cafe", "brand": "Mado", "brand:wikidata": "Q17116336", "brand:wikipedia": "en:Mado (food company)", "cuisine": "coffee_shop", "name": "Mado"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/McCafé": {"name": "McCafé", "icon": "maki-cafe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMcCaf%C3%A9%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q3114287"}, "addTags": {"amenity": "cafe", "brand": "McCafé", "brand:wikidata": "Q3114287", "brand:wikipedia": "en:McCafé", "cuisine": "coffee_shop", "name": "McCafé", "operator:wikidata": "Q38076", "operator:wikipedia": "en:McDonald's"}, "removeTags": {"amenity": "cafe", "brand": "McCafé", "brand:wikidata": "Q3114287", "brand:wikipedia": "en:McCafé", "cuisine": "coffee_shop", "name": "McCafé", "operator:wikidata": "Q38076", "operator:wikipedia": "en:McDonald's"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Patisserie Valerie": {"name": "Patisserie Valerie", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/ValerieCafe/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q22101966"}, "addTags": {"amenity": "cafe", "brand": "Patisserie Valerie", "brand:wikidata": "Q22101966", "brand:wikipedia": "en:Patisserie Valerie", "cuisine": "coffee_shop", "name": "Patisserie Valerie"}, "removeTags": {"amenity": "cafe", "brand": "Patisserie Valerie", "brand:wikidata": "Q22101966", "brand:wikipedia": "en:Patisserie Valerie", "cuisine": "coffee_shop", "name": "Patisserie Valerie"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/Peet's Coffee": {"name": "Peet's Coffee", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/peets/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q1094101"}, "addTags": {"amenity": "cafe", "brand": "Peet's Coffee", "brand:wikidata": "Q1094101", "brand:wikipedia": "en:Peet's Coffee", "cuisine": "coffee_shop", "name": "Peet's Coffee"}, "removeTags": {"amenity": "cafe", "brand": "Peet's Coffee", "brand:wikidata": "Q1094101", "brand:wikipedia": "en:Peet's Coffee", "cuisine": "coffee_shop", "name": "Peet's Coffee"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/Prime": {"name": "Prime", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/PRIMENATURALFOOD/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q62122839"}, "addTags": {"amenity": "cafe", "brand": "Prime", "brand:wikidata": "Q62122839", "cuisine": "coffee_shop", "name": "Prime"}, "removeTags": {"amenity": "cafe", "brand": "Prime", "brand:wikidata": "Q62122839", "cuisine": "coffee_shop", "name": "Prime"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/Pronto": {"name": "Pronto", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/pronto.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q11336224"}, "addTags": {"amenity": "cafe", "brand": "Pronto", "brand:wikidata": "Q11336224", "brand:wikipedia": "ja:プロントコーポレーション", "cuisine": "coffee_shop", "name": "Pronto", "name:ja": "プロント"}, "removeTags": {"amenity": "cafe", "brand": "Pronto", "brand:wikidata": "Q11336224", "brand:wikipedia": "ja:プロントコーポレーション", "cuisine": "coffee_shop", "name": "Pronto", "name:ja": "プロント"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/Pumpkin": {"name": "Pumpkin", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q27825961"}, "addTags": {"amenity": "cafe", "brand": "Pumpkin", "brand:wikidata": "Q27825961", "brand:wikipedia": "en:Pumpkin Café Shop", "cuisine": "coffee_shop", "name": "Pumpkin"}, "removeTags": {"amenity": "cafe", "brand": "Pumpkin", "brand:wikidata": "Q27825961", "brand:wikipedia": "en:Pumpkin Café Shop", "cuisine": "coffee_shop", "name": "Pumpkin"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/Second Cup": {"name": "Second Cup", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/SecondCup/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q862180"}, "addTags": {"amenity": "cafe", "brand": "Second Cup", "brand:wikidata": "Q862180", "brand:wikipedia": "en:Second Cup", "cuisine": "coffee_shop", "name": "Second Cup"}, "removeTags": {"amenity": "cafe", "brand": "Second Cup", "brand:wikidata": "Q862180", "brand:wikipedia": "en:Second Cup", "cuisine": "coffee_shop", "name": "Second Cup"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Segafredo": {"name": "Segafredo", "icon": "maki-cafe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSegafredo%20Zanetti%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q21282762"}, "addTags": {"amenity": "cafe", "brand": "Segafredo", "brand:wikidata": "Q21282762", "brand:wikipedia": "it:Segafredo Zanetti", "cuisine": "coffee_shop", "name": "Segafredo"}, "removeTags": {"amenity": "cafe", "brand": "Segafredo", "brand:wikidata": "Q21282762", "brand:wikipedia": "it:Segafredo Zanetti", "cuisine": "coffee_shop", "name": "Segafredo"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Starbucks": {"name": "Starbucks", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/Starbucks/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q37158"}, "addTags": {"amenity": "cafe", "brand": "Starbucks", "brand:wikidata": "Q37158", "brand:wikipedia": "en:Starbucks", "cuisine": "coffee_shop", "name": "Starbucks"}, "removeTags": {"amenity": "cafe", "brand": "Starbucks", "brand:wikidata": "Q37158", "brand:wikipedia": "en:Starbucks", "cuisine": "coffee_shop", "name": "Starbucks"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/The Coffee Bean & Tea Leaf": {"name": "The Coffee Bean & Tea Leaf", "icon": "maki-cafe", "imageURL": "https://pbs.twimg.com/profile_images/795705145224871936/EgPtlFnT_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q1141384"}, "addTags": {"amenity": "cafe", "brand": "The Coffee Bean & Tea Leaf", "brand:wikidata": "Q1141384", "brand:wikipedia": "en:The Coffee Bean & Tea Leaf", "cuisine": "coffee_shop", "name": "The Coffee Bean & Tea Leaf"}, "removeTags": {"amenity": "cafe", "brand": "The Coffee Bean & Tea Leaf", "brand:wikidata": "Q1141384", "brand:wikipedia": "en:The Coffee Bean & Tea Leaf", "cuisine": "coffee_shop", "name": "The Coffee Bean & Tea Leaf"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/The Coffee Club": {"name": "The Coffee Club", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q7726599"}, "addTags": {"amenity": "cafe", "brand": "The Coffee Club", "brand:wikidata": "Q7726599", "brand:wikipedia": "en:The Coffee Club", "cuisine": "coffee_shop", "name": "The Coffee Club"}, "removeTags": {"amenity": "cafe", "brand": "The Coffee Club", "brand:wikidata": "Q7726599", "brand:wikipedia": "en:The Coffee Club", "cuisine": "coffee_shop", "name": "The Coffee Club"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Tim Hortons": {"name": "Tim Hortons", "icon": "maki-cafe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTim%20Hortons%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q175106"}, "addTags": {"amenity": "cafe", "brand": "Tim Hortons", "brand:wikidata": "Q175106", "brand:wikipedia": "en:Tim Hortons", "cuisine": "coffee_shop", "name": "Tim Hortons"}, "removeTags": {"amenity": "cafe", "brand": "Tim Hortons", "brand:wikidata": "Q175106", "brand:wikipedia": "en:Tim Hortons", "cuisine": "coffee_shop", "name": "Tim Hortons"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Traveler's Coffee": {"name": "Traveler's Coffee", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q4051716"}, "addTags": {"amenity": "cafe", "brand": "Traveler's Coffee", "brand:wikidata": "Q4051716", "brand:wikipedia": "ru:Traveler’s Coffee", "cuisine": "coffee_shop", "name": "Traveler's Coffee"}, "removeTags": {"amenity": "cafe", "brand": "Traveler's Coffee", "brand:wikidata": "Q4051716", "brand:wikipedia": "ru:Traveler’s Coffee", "cuisine": "coffee_shop", "name": "Traveler's Coffee"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Wayne's Coffee": {"name": "Wayne's Coffee", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q2637272"}, "addTags": {"amenity": "cafe", "brand": "Wayne's Coffee", "brand:wikidata": "Q2637272", "brand:wikipedia": "en:Wayne's Coffee", "cuisine": "coffee_shop", "name": "Wayne's Coffee"}, "removeTags": {"amenity": "cafe", "brand": "Wayne's Coffee", "brand:wikidata": "Q2637272", "brand:wikipedia": "en:Wayne's Coffee", "cuisine": "coffee_shop", "name": "Wayne's Coffee"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Wild Bean Cafe": {"name": "Wild Bean Cafe", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q61804826"}, "addTags": {"amenity": "cafe", "brand": "Wild Bean Cafe", "brand:wikidata": "Q61804826", "cuisine": "coffee_shop", "name": "Wild Bean Cafe"}, "removeTags": {"amenity": "cafe", "brand": "Wild Bean Cafe", "brand:wikidata": "Q61804826", "cuisine": "coffee_shop", "name": "Wild Bean Cafe"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Старбакс": {"name": "Старбакс", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/Starbucks/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q37158"}, "addTags": {"amenity": "cafe", "brand": "Старбакс", "brand:en": "Starbucks", "brand:wikidata": "Q37158", "brand:wikipedia": "en:Starbucks", "cuisine": "coffee_shop", "name": "Старбакс", "name:en": "Starbucks"}, "removeTags": {"amenity": "cafe", "brand": "Старбакс", "brand:en": "Starbucks", "brand:wikidata": "Q37158", "brand:wikipedia": "en:Starbucks", "cuisine": "coffee_shop", "name": "Старбакс", "name:en": "Starbucks"}, "matchScore": 2, "suggestion": true}, - "amenity/cafe/Шоколадница": {"name": "Шоколадница", "icon": "maki-cafe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F%D0%A8%D0%BE%D0%BA%D0%BE%20%D0%BB%D0%BE%D0%B3%D0%BE%202014-02-24%2013-26.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q30891188"}, "addTags": {"amenity": "cafe", "brand": "Шоколадница", "brand:en": "Chocolate", "brand:wikidata": "Q30891188", "brand:wikipedia": "ru:Шоколадница (сеть кофеен)", "cuisine": "coffee_shop", "name": "Шоколадница", "name:en": "Chocolate"}, "removeTags": {"amenity": "cafe", "brand": "Шоколадница", "brand:en": "Chocolate", "brand:wikidata": "Q30891188", "brand:wikipedia": "ru:Шоколадница (сеть кофеен)", "cuisine": "coffee_shop", "name": "Шоколадница", "name:en": "Chocolate"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/ארומה": {"name": "ארומה", "icon": "maki-cafe", "imageURL": "https://pbs.twimg.com/profile_images/685142792/22652_260580577421_260578287421_3292057_2769906_n_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q2909872"}, "addTags": {"amenity": "cafe", "brand": "ארומה", "brand:en": "Aroma Espresso Bar", "brand:he": "ארומה", "brand:wikidata": "Q2909872", "brand:wikipedia": "en:Aroma Espresso Bar", "cuisine": "coffee_shop", "name": "ארומה", "name:en": "Aroma Espresso Bar", "name:he": "ארומה"}, "removeTags": {"amenity": "cafe", "brand": "ארומה", "brand:en": "Aroma Espresso Bar", "brand:he": "ארומה", "brand:wikidata": "Q2909872", "brand:wikipedia": "en:Aroma Espresso Bar", "cuisine": "coffee_shop", "name": "ארומה", "name:en": "Aroma Espresso Bar", "name:he": "ארומה"}, "countryCodes": ["il"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/คาเฟ่ อเมซอน": {"name": "คาเฟ่ อเมซอน", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q43247503"}, "addTags": {"amenity": "cafe", "brand": "คาเฟ่ อเมซอน", "brand:en": "Café Amazon", "brand:th": "คาเฟ่ อเมซอน", "brand:wikidata": "Q43247503", "brand:wikipedia": "en:Café Amazon", "cuisine": "coffee_shop", "name": "คาเฟ่ อเมซอน", "name:en": "Café Amazon", "name:th": "คาเฟ่ อเมซอน"}, "removeTags": {"amenity": "cafe", "brand": "คาเฟ่ อเมซอน", "brand:en": "Café Amazon", "brand:th": "คาเฟ่ อเมซอน", "brand:wikidata": "Q43247503", "brand:wikipedia": "en:Café Amazon", "cuisine": "coffee_shop", "name": "คาเฟ่ อเมซอน", "name:en": "Café Amazon", "name:th": "คาเฟ่ อเมซอน"}, "countryCodes": ["th"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/エクセルシオール カフェ": {"name": "エクセルシオール カフェ", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q11289828"}, "addTags": {"amenity": "cafe", "brand": "エクセルシオール カフェ", "brand:en": "EXCELSIOR CAFFÉ", "brand:ja": "エクセルシオール カフェ", "brand:wikidata": "Q11289828", "brand:wikipedia": "ja:エクセルシオール カフェ", "cuisine": "coffee_shop", "name": "エクセルシオール カフェ", "name:ja": "エクセルシオール カフェ"}, "removeTags": {"amenity": "cafe", "brand": "エクセルシオール カフェ", "brand:en": "EXCELSIOR CAFFÉ", "brand:ja": "エクセルシオール カフェ", "brand:wikidata": "Q11289828", "brand:wikipedia": "ja:エクセルシオール カフェ", "cuisine": "coffee_shop", "name": "エクセルシオール カフェ", "name:ja": "エクセルシオール カフェ"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/カフェ・ド・クリエ": {"name": "カフェ・ド・クリエ", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q17219077"}, "addTags": {"amenity": "cafe", "brand": "カフェ・ド・クリエ", "brand:en": "Cafe de CRIE", "brand:ja": "カフェ・ド・クリエ", "brand:wikidata": "Q17219077", "brand:wikipedia": "ja:ポッカクリエイト", "cuisine": "coffee_shop", "name": "カフェ・ド・クリエ", "name:en": "Cafe de CRIE", "name:ja": "カフェ・ド・クリエ"}, "removeTags": {"amenity": "cafe", "brand": "カフェ・ド・クリエ", "brand:en": "Cafe de CRIE", "brand:ja": "カフェ・ド・クリエ", "brand:wikidata": "Q17219077", "brand:wikipedia": "ja:ポッカクリエイト", "cuisine": "coffee_shop", "name": "カフェ・ド・クリエ", "name:en": "Cafe de CRIE", "name:ja": "カフェ・ド・クリエ"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/カフェ・ベローチェ": {"name": "カフェ・ベローチェ", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q11294597"}, "addTags": {"amenity": "cafe", "brand": "カフェ・ベローチェ", "brand:en": "CAFFÈ VELOCE", "brand:ja": "カフェ・ベローチェ", "brand:wikidata": "Q11294597", "brand:wikipedia": "ja:カフェ・ベローチェ", "cuisine": "coffee_shop", "name": "カフェ・ベローチェ", "name:en": "CAFFÈ VELOCE", "name:ja": "カフェ・ベローチェ"}, "removeTags": {"amenity": "cafe", "brand": "カフェ・ベローチェ", "brand:en": "CAFFÈ VELOCE", "brand:ja": "カフェ・ベローチェ", "brand:wikidata": "Q11294597", "brand:wikipedia": "ja:カフェ・ベローチェ", "cuisine": "coffee_shop", "name": "カフェ・ベローチェ", "name:en": "CAFFÈ VELOCE", "name:ja": "カフェ・ベローチェ"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/コメダ珈琲店": {"name": "コメダ珈琲店", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/komeda.coffee/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q11302679"}, "addTags": {"amenity": "cafe", "brand": "コメダ珈琲店", "brand:en": "Komeda Coffee Shop", "brand:ja": "コメダ珈琲店", "brand:wikidata": "Q11302679", "brand:wikipedia": "ja:コメダ", "cuisine": "coffee_shop", "name": "コメダ珈琲店", "name:en": "Komeda Coffee Shop", "name:ja": "コメダ珈琲店"}, "removeTags": {"amenity": "cafe", "brand": "コメダ珈琲店", "brand:en": "Komeda Coffee Shop", "brand:ja": "コメダ珈琲店", "brand:wikidata": "Q11302679", "brand:wikipedia": "ja:コメダ", "cuisine": "coffee_shop", "name": "コメダ珈琲店", "name:en": "Komeda Coffee Shop", "name:ja": "コメダ珈琲店"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/サンマルクカフェ": {"name": "サンマルクカフェ", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q11305989"}, "addTags": {"amenity": "cafe", "brand": "サンマルクカフェ", "brand:en": "ST.MARC CAFÉ", "brand:ja": "サンマルクカフェ", "brand:wikidata": "Q11305989", "brand:wikipedia": "ja:サンマルクホールディングス", "cuisine": "coffee_shop", "name": "サンマルクカフェ", "name:en": "ST.MARC CAFÉ", "name:ja": "サンマルクカフェ"}, "removeTags": {"amenity": "cafe", "brand": "サンマルクカフェ", "brand:en": "ST.MARC CAFÉ", "brand:ja": "サンマルクカフェ", "brand:wikidata": "Q11305989", "brand:wikipedia": "ja:サンマルクホールディングス", "cuisine": "coffee_shop", "name": "サンマルクカフェ", "name:en": "ST.MARC CAFÉ", "name:ja": "サンマルクカフェ"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/スターバックス": {"name": "スターバックス", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/Starbucks/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q37158"}, "addTags": {"amenity": "cafe", "brand": "スターバックス", "brand:en": "Starbucks", "brand:ja": "スターバックス", "brand:wikidata": "Q37158", "brand:wikipedia": "ja:スターバックス", "cuisine": "coffee_shop", "name": "スターバックス", "name:en": "Starbucks", "name:ja": "スターバックス"}, "removeTags": {"amenity": "cafe", "brand": "スターバックス", "brand:en": "Starbucks", "brand:ja": "スターバックス", "brand:wikidata": "Q37158", "brand:wikipedia": "ja:スターバックス", "cuisine": "coffee_shop", "name": "スターバックス", "name:en": "Starbucks", "name:ja": "スターバックス"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/タリーズコーヒー": {"name": "タリーズコーヒー", "icon": "maki-cafe", "imageURL": "https://pbs.twimg.com/profile_images/1079584745/logo_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q3541983"}, "addTags": {"amenity": "cafe", "brand": "タリーズコーヒー", "brand:en": "Tully's Coffee", "brand:ja": "タリーズコーヒー", "brand:wikidata": "Q3541983", "brand:wikipedia": "en:Tully's Coffee", "cuisine": "coffee_shop", "name": "タリーズコーヒー", "name:en": "Tully's Coffee", "name:ja": "タリーズコーヒー"}, "removeTags": {"amenity": "cafe", "brand": "タリーズコーヒー", "brand:en": "Tully's Coffee", "brand:ja": "タリーズコーヒー", "brand:wikidata": "Q3541983", "brand:wikipedia": "en:Tully's Coffee", "cuisine": "coffee_shop", "name": "タリーズコーヒー", "name:en": "Tully's Coffee", "name:ja": "タリーズコーヒー"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/ドトールコーヒーショップ": {"name": "ドトールコーヒーショップ", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q11322732"}, "addTags": {"amenity": "cafe", "brand": "ドトールコーヒーショップ", "brand:en": "Doutor", "brand:ja": "ドトールコーヒーショップ", "brand:wikidata": "Q11322732", "brand:wikipedia": "ja:ドトールコーヒーショップ", "cuisine": "coffee_shop", "name": "ドトールコーヒーショップ", "name:en": "Doutor Coffee Shop", "name:ja": "ドトールコーヒーショップ"}, "removeTags": {"amenity": "cafe", "brand": "ドトールコーヒーショップ", "brand:en": "Doutor", "brand:ja": "ドトールコーヒーショップ", "brand:wikidata": "Q11322732", "brand:wikipedia": "ja:ドトールコーヒーショップ", "cuisine": "coffee_shop", "name": "ドトールコーヒーショップ", "name:en": "Doutor Coffee Shop", "name:ja": "ドトールコーヒーショップ"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/星巴克": {"name": "星巴克", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/Starbucks/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q37158"}, "addTags": {"amenity": "cafe", "brand": "星巴克", "brand:en": "Starbucks", "brand:wikidata": "Q37158", "brand:wikipedia": "zh:星巴克", "brand:zh": "星巴克", "cuisine": "coffee_shop", "name": "星巴克", "name:en": "Starbucks", "name:zh": "星巴克"}, "removeTags": {"amenity": "cafe", "brand": "星巴克", "brand:en": "Starbucks", "brand:wikidata": "Q37158", "brand:wikipedia": "zh:星巴克", "brand:zh": "星巴克", "cuisine": "coffee_shop", "name": "星巴克", "name:en": "Starbucks", "name:zh": "星巴克"}, "countryCodes": ["cn", "tw"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/珈琲館": {"name": "珈琲館", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/kohikancorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q11573290"}, "addTags": {"amenity": "cafe", "brand": "珈琲館", "brand:en": "Kohikan", "brand:ja": "珈琲館", "brand:wikidata": "Q11573290", "brand:wikipedia": "ja:珈琲館", "cuisine": "coffee_shop", "name": "珈琲館", "name:en": "Kohikan", "name:ja": "珈琲館"}, "removeTags": {"amenity": "cafe", "brand": "珈琲館", "brand:en": "Kohikan", "brand:ja": "珈琲館", "brand:wikidata": "Q11573290", "brand:wikipedia": "ja:珈琲館", "cuisine": "coffee_shop", "name": "珈琲館", "name:en": "Kohikan", "name:ja": "珈琲館"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/스타벅스": {"name": "스타벅스", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/Starbucks/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q37158"}, "addTags": {"amenity": "cafe", "brand": "스타벅스", "brand:en": "Starbucks", "brand:ko": "스타벅스", "brand:wikidata": "Q37158", "brand:wikipedia": "ko:스타벅스", "cuisine": "coffee_shop", "name": "스타벅스", "name:en": "Starbucks", "name:ko": "스타벅스"}, "removeTags": {"amenity": "cafe", "brand": "스타벅스", "brand:en": "Starbucks", "brand:ko": "스타벅스", "brand:wikidata": "Q37158", "brand:wikipedia": "ko:스타벅스", "cuisine": "coffee_shop", "name": "스타벅스", "name:en": "Starbucks", "name:ko": "스타벅스"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, - "amenity/car_rental/Alamo": {"name": "Alamo", "icon": "maki-car-rental", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAlamo%20Rent%20a%20Car%20(logo).svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q1429287"}, "addTags": {"amenity": "car_rental", "brand": "Alamo", "brand:wikidata": "Q1429287", "brand:wikipedia": "en:Alamo Rent a Car", "name": "Alamo"}, "removeTags": {"amenity": "car_rental", "brand": "Alamo", "brand:wikidata": "Q1429287", "brand:wikipedia": "en:Alamo Rent a Car", "name": "Alamo"}, "matchScore": 2, "suggestion": true}, - "amenity/car_rental/Avis": {"name": "Avis", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/avis/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q791136"}, "addTags": {"amenity": "car_rental", "brand": "Avis", "brand:wikidata": "Q791136", "brand:wikipedia": "en:Avis Rent a Car", "name": "Avis"}, "removeTags": {"amenity": "car_rental", "brand": "Avis", "brand:wikidata": "Q791136", "brand:wikipedia": "en:Avis Rent a Car", "name": "Avis"}, "matchScore": 2, "suggestion": true}, - "amenity/car_rental/Budget": {"name": "Budget", "icon": "maki-car-rental", "imageURL": "https://pbs.twimg.com/profile_images/883026939396489216/IyHzSi7o_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q1001437"}, "addTags": {"amenity": "car_rental", "brand": "Budget", "brand:wikidata": "Q1001437", "brand:wikipedia": "en:Budget Rent a Car", "name": "Budget"}, "removeTags": {"amenity": "car_rental", "brand": "Budget", "brand:wikidata": "Q1001437", "brand:wikipedia": "en:Budget Rent a Car", "name": "Budget"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/85度C": {"name": "85度C", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/85CBakeryCafe/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q4644852"}, "addTags": {"amenity": "cafe", "brand": "85度C", "brand:en": "85C Bakery Cafe", "brand:wikidata": "Q4644852", "brand:wikipedia": "en:85C Bakery Cafe", "cuisine": "coffee_shop", "name": "85度C", "name:en": "85C Bakery Cafe", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "85度C", "brand:en": "85C Bakery Cafe", "brand:wikidata": "Q4644852", "brand:wikipedia": "en:85C Bakery Cafe", "cuisine": "coffee_shop", "name": "85度C", "name:en": "85C Bakery Cafe", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Barista": {"name": "Barista", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/BaristaCoffeeCompany/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q644735"}, "addTags": {"amenity": "cafe", "brand": "Barista", "brand:wikidata": "Q644735", "brand:wikipedia": "en:Barista (company)", "cuisine": "coffee_shop", "name": "Barista", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Barista", "brand:wikidata": "Q644735", "brand:wikipedia": "en:Barista (company)", "cuisine": "coffee_shop", "name": "Barista", "takeaway": "yes"}, "countryCodes": ["in", "lk", "mv", "np"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/Bonafide": {"name": "Bonafide", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/BonafideArgentina/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q62122746"}, "addTags": {"amenity": "cafe", "brand": "Bonafide", "brand:wikidata": "Q62122746", "cuisine": "coffee_shop", "name": "Bonafide", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Bonafide", "brand:wikidata": "Q62122746", "cuisine": "coffee_shop", "name": "Bonafide", "takeaway": "yes"}, "countryCodes": ["ar", "cl"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/Cafe Coffee Day": {"name": "Cafe Coffee Day", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/cafecoffeeday/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q5017235"}, "addTags": {"amenity": "cafe", "brand": "Cafe Coffee Day", "brand:wikidata": "Q5017235", "brand:wikipedia": "en:Café Coffee Day", "cuisine": "coffee_shop", "name": "Cafe Coffee Day", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Cafe Coffee Day", "brand:wikidata": "Q5017235", "brand:wikipedia": "en:Café Coffee Day", "cuisine": "coffee_shop", "name": "Cafe Coffee Day", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Caffè Nero": {"name": "Caffè Nero", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/caffenerous/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q675808"}, "addTags": {"amenity": "cafe", "brand": "Caffè Nero", "brand:wikidata": "Q675808", "brand:wikipedia": "en:Caffè Nero", "cuisine": "coffee_shop", "name": "Caffè Nero", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Caffè Nero", "brand:wikidata": "Q675808", "brand:wikipedia": "en:Caffè Nero", "cuisine": "coffee_shop", "name": "Caffè Nero", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Café Amazon": {"name": "Café Amazon", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/cafeamazonofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q43247503"}, "addTags": {"amenity": "cafe", "brand": "Café Amazon", "brand:wikidata": "Q43247503", "brand:wikipedia": "en:Café Amazon", "cuisine": "coffee_shop", "name": "Café Amazon", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Café Amazon", "brand:wikidata": "Q43247503", "brand:wikipedia": "en:Café Amazon", "cuisine": "coffee_shop", "name": "Café Amazon", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Café Martínez": {"name": "Café Martínez", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/CafeMartinezSitioOficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q16540032"}, "addTags": {"amenity": "cafe", "brand": "Café Martínez", "brand:wikidata": "Q16540032", "brand:wikipedia": "es:Café Martínez", "cuisine": "coffee_shop", "name": "Café Martínez", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Café Martínez", "brand:wikidata": "Q16540032", "brand:wikipedia": "es:Café Martínez", "cuisine": "coffee_shop", "name": "Café Martínez", "takeaway": "yes"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/Caribou Coffee": {"name": "Caribou Coffee", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/cariboucoffee/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q5039494"}, "addTags": {"amenity": "cafe", "brand": "Caribou Coffee", "brand:wikidata": "Q5039494", "brand:wikipedia": "en:Caribou Coffee", "cuisine": "coffee_shop", "name": "Caribou Coffee", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Caribou Coffee", "brand:wikidata": "Q5039494", "brand:wikipedia": "en:Caribou Coffee", "cuisine": "coffee_shop", "name": "Caribou Coffee", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Chatime": {"name": "Chatime", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/ChatimeCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q16829306"}, "addTags": {"amenity": "cafe", "brand": "Chatime", "brand:wikidata": "Q16829306", "brand:wikipedia": "en:Chatime", "cuisine": "coffee_shop", "name": "Chatime", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Chatime", "brand:wikidata": "Q16829306", "brand:wikipedia": "en:Chatime", "cuisine": "coffee_shop", "name": "Chatime", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Coffee Fellows": {"name": "Coffee Fellows", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/CoffeeFellowsDeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q23461429"}, "addTags": {"amenity": "cafe", "brand": "Coffee Fellows", "brand:wikidata": "Q23461429", "brand:wikipedia": "en:Coffee Fellows", "cuisine": "coffee_shop", "name": "Coffee Fellows", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Coffee Fellows", "brand:wikidata": "Q23461429", "brand:wikipedia": "en:Coffee Fellows", "cuisine": "coffee_shop", "name": "Coffee Fellows", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Coffee House": {"name": "Coffee House", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/raflaamo/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q11855430"}, "addTags": {"amenity": "cafe", "brand": "Coffee House", "brand:wikidata": "Q11855430", "brand:wikipedia": "fi:Coffee House", "cuisine": "coffee_shop", "name": "Coffee House", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Coffee House", "brand:wikidata": "Q11855430", "brand:wikipedia": "fi:Coffee House", "cuisine": "coffee_shop", "name": "Coffee House", "takeaway": "yes"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/Coffee Island": {"name": "Coffee Island", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/CoffeeIslandUK/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q60867333"}, "addTags": {"amenity": "cafe", "brand": "Coffee Island", "brand:wikidata": "Q60867333", "brand:wikipedia": "en:Coffee Island", "cuisine": "coffee_shop", "name": "Coffee Island", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Coffee Island", "brand:wikidata": "Q60867333", "brand:wikipedia": "en:Coffee Island", "cuisine": "coffee_shop", "name": "Coffee Island", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Coffee Time": {"name": "Coffee Time", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/CoffeeTimeCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q5140932"}, "addTags": {"amenity": "cafe", "brand": "Coffee Time", "brand:wikidata": "Q5140932", "brand:wikipedia": "en:Coffee Time", "cuisine": "coffee_shop", "name": "Coffee Time", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Coffee Time", "brand:wikidata": "Q5140932", "brand:wikipedia": "en:Coffee Time", "cuisine": "coffee_shop", "name": "Coffee Time", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Costa": {"name": "Costa", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/costacoffee/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q608845"}, "addTags": {"amenity": "cafe", "brand": "Costa", "brand:wikidata": "Q608845", "brand:wikipedia": "en:Costa Coffee", "cuisine": "coffee_shop", "name": "Costa", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Costa", "brand:wikidata": "Q608845", "brand:wikipedia": "en:Costa Coffee", "cuisine": "coffee_shop", "name": "Costa", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Country Style": {"name": "Country Style", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/CountryStyleCDN/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q5177435"}, "addTags": {"amenity": "cafe", "brand": "Country Style", "brand:wikidata": "Q5177435", "brand:wikipedia": "en:Country Style", "cuisine": "coffee_shop", "name": "Country Style", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Country Style", "brand:wikidata": "Q5177435", "brand:wikipedia": "en:Country Style", "cuisine": "coffee_shop", "name": "Country Style", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Dutch Bros. Coffee": {"name": "Dutch Bros. Coffee", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/dutchbros/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q5317253"}, "addTags": {"amenity": "cafe", "brand": "Dutch Bros. Coffee", "brand:wikidata": "Q5317253", "brand:wikipedia": "en:Dutch Bros. Coffee", "cuisine": "coffee_shop", "name": "Dutch Bros. Coffee", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Dutch Bros. Coffee", "brand:wikidata": "Q5317253", "brand:wikipedia": "en:Dutch Bros. Coffee", "cuisine": "coffee_shop", "name": "Dutch Bros. Coffee", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/Espresso House": {"name": "Espresso House", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/EspressoHouse/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q10489162"}, "addTags": {"amenity": "cafe", "brand": "Espresso House", "brand:wikidata": "Q10489162", "brand:wikipedia": "en:Espresso House", "cuisine": "coffee_shop", "name": "Espresso House", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Espresso House", "brand:wikidata": "Q10489162", "brand:wikipedia": "en:Espresso House", "cuisine": "coffee_shop", "name": "Espresso House", "takeaway": "yes"}, "countryCodes": ["dk", "fi", "no", "se"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/Fran's Café": {"name": "Fran's Café", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/franscafeoficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q62075645"}, "addTags": {"amenity": "cafe", "brand": "Fran's Café", "brand:website": "http://www.franscafe.com.br", "brand:wikidata": "Q62075645", "cuisine": "coffee_shop", "name": "Fran's Café", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Fran's Café", "brand:website": "http://www.franscafe.com.br", "brand:wikidata": "Q62075645", "cuisine": "coffee_shop", "name": "Fran's Café", "takeaway": "yes"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/Havanna": {"name": "Havanna", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/HavannaUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q2900869"}, "addTags": {"amenity": "cafe", "brand": "Havanna", "brand:wikidata": "Q2900869", "brand:wikipedia": "es:Havanna", "cuisine": "coffee_shop", "name": "Havanna", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Havanna", "brand:wikidata": "Q2900869", "brand:wikipedia": "es:Havanna", "cuisine": "coffee_shop", "name": "Havanna", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Insomnia": {"name": "Insomnia", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/InsomniaCoffeeCo/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q6038271"}, "addTags": {"amenity": "cafe", "brand": "Insomnia", "brand:wikidata": "Q6038271", "brand:wikipedia": "en:Insomnia Coffee Company", "cuisine": "coffee_shop", "name": "Insomnia", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Insomnia", "brand:wikidata": "Q6038271", "brand:wikipedia": "en:Insomnia Coffee Company", "cuisine": "coffee_shop", "name": "Insomnia", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Joe & The Juice": {"name": "Joe & The Juice", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/joeandthejuice/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q26221514"}, "addTags": {"amenity": "cafe", "brand": "Joe & The Juice", "brand:wikidata": "Q26221514", "brand:wikipedia": "en:Joe & The Juice", "cuisine": "coffee_shop", "name": "Joe & The Juice", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Joe & The Juice", "brand:wikidata": "Q26221514", "brand:wikipedia": "en:Joe & The Juice", "cuisine": "coffee_shop", "name": "Joe & The Juice", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Le Pain Quotidien": {"name": "Le Pain Quotidien", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/lepainquotidienusa/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q2046903"}, "addTags": {"amenity": "cafe", "brand": "Le Pain Quotidien", "brand:wikidata": "Q2046903", "brand:wikipedia": "en:Le Pain Quotidien", "cuisine": "coffee_shop", "name": "Le Pain Quotidien", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Le Pain Quotidien", "brand:wikidata": "Q2046903", "brand:wikipedia": "en:Le Pain Quotidien", "cuisine": "coffee_shop", "name": "Le Pain Quotidien", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Mado": {"name": "Mado", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/MADOglobal/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q17116336"}, "addTags": {"amenity": "cafe", "brand": "Mado", "brand:wikidata": "Q17116336", "brand:wikipedia": "en:Mado (food company)", "cuisine": "coffee_shop", "name": "Mado", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Mado", "brand:wikidata": "Q17116336", "brand:wikipedia": "en:Mado (food company)", "cuisine": "coffee_shop", "name": "Mado", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/McCafé": {"name": "McCafé", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/276517512552782/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q3114287"}, "addTags": {"amenity": "cafe", "brand": "McCafé", "brand:wikidata": "Q3114287", "brand:wikipedia": "en:McCafé", "cuisine": "coffee_shop", "name": "McCafé", "operator:wikidata": "Q38076", "operator:wikipedia": "en:McDonald's", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "McCafé", "brand:wikidata": "Q3114287", "brand:wikipedia": "en:McCafé", "cuisine": "coffee_shop", "name": "McCafé", "operator:wikidata": "Q38076", "operator:wikipedia": "en:McDonald's", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Patisserie Valerie": {"name": "Patisserie Valerie", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/ValerieCafe/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q22101966"}, "addTags": {"amenity": "cafe", "brand": "Patisserie Valerie", "brand:wikidata": "Q22101966", "brand:wikipedia": "en:Patisserie Valerie", "cuisine": "coffee_shop", "name": "Patisserie Valerie", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Patisserie Valerie", "brand:wikidata": "Q22101966", "brand:wikipedia": "en:Patisserie Valerie", "cuisine": "coffee_shop", "name": "Patisserie Valerie", "takeaway": "yes"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/Peet's Coffee": {"name": "Peet's Coffee", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/peets/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q1094101"}, "addTags": {"amenity": "cafe", "brand": "Peet's Coffee", "brand:wikidata": "Q1094101", "brand:wikipedia": "en:Peet's Coffee", "cuisine": "coffee_shop", "name": "Peet's Coffee", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Peet's Coffee", "brand:wikidata": "Q1094101", "brand:wikipedia": "en:Peet's Coffee", "cuisine": "coffee_shop", "name": "Peet's Coffee", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/Prime": {"name": "Prime", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/PRIMENATURALFOOD/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q62122839"}, "addTags": {"amenity": "cafe", "brand": "Prime", "brand:wikidata": "Q62122839", "cuisine": "coffee_shop", "name": "Prime", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Prime", "brand:wikidata": "Q62122839", "cuisine": "coffee_shop", "name": "Prime", "takeaway": "yes"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/Pronto": {"name": "Pronto", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/pronto.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q11336224"}, "addTags": {"amenity": "cafe", "brand": "Pronto", "brand:wikidata": "Q11336224", "brand:wikipedia": "ja:プロントコーポレーション", "cuisine": "coffee_shop", "name": "Pronto", "name:ja": "プロント", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Pronto", "brand:wikidata": "Q11336224", "brand:wikipedia": "ja:プロントコーポレーション", "cuisine": "coffee_shop", "name": "Pronto", "name:ja": "プロント", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/Pumpkin": {"name": "Pumpkin", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q27825961"}, "addTags": {"amenity": "cafe", "brand": "Pumpkin", "brand:wikidata": "Q27825961", "brand:wikipedia": "en:Pumpkin Café Shop", "cuisine": "coffee_shop", "name": "Pumpkin", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Pumpkin", "brand:wikidata": "Q27825961", "brand:wikipedia": "en:Pumpkin Café Shop", "cuisine": "coffee_shop", "name": "Pumpkin", "takeaway": "yes"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/Second Cup": {"name": "Second Cup", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/SecondCup/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q862180"}, "addTags": {"amenity": "cafe", "brand": "Second Cup", "brand:wikidata": "Q862180", "brand:wikipedia": "en:Second Cup", "cuisine": "coffee_shop", "name": "Second Cup", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Second Cup", "brand:wikidata": "Q862180", "brand:wikipedia": "en:Second Cup", "cuisine": "coffee_shop", "name": "Second Cup", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Segafredo": {"name": "Segafredo", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/SegafredoZanettiItalia/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q21282762"}, "addTags": {"amenity": "cafe", "brand": "Segafredo", "brand:wikidata": "Q21282762", "brand:wikipedia": "it:Segafredo Zanetti", "cuisine": "coffee_shop", "name": "Segafredo", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Segafredo", "brand:wikidata": "Q21282762", "brand:wikipedia": "it:Segafredo Zanetti", "cuisine": "coffee_shop", "name": "Segafredo", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Starbucks": {"name": "Starbucks", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/Starbucks/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q37158"}, "addTags": {"amenity": "cafe", "brand": "Starbucks", "brand:wikidata": "Q37158", "brand:wikipedia": "en:Starbucks", "cuisine": "coffee_shop", "name": "Starbucks", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Starbucks", "brand:wikidata": "Q37158", "brand:wikipedia": "en:Starbucks", "cuisine": "coffee_shop", "name": "Starbucks", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/The Coffee Bean & Tea Leaf": {"name": "The Coffee Bean & Tea Leaf", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/thecoffeebean/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q1141384"}, "addTags": {"amenity": "cafe", "brand": "The Coffee Bean & Tea Leaf", "brand:wikidata": "Q1141384", "brand:wikipedia": "en:The Coffee Bean & Tea Leaf", "cuisine": "coffee_shop", "name": "The Coffee Bean & Tea Leaf", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "The Coffee Bean & Tea Leaf", "brand:wikidata": "Q1141384", "brand:wikipedia": "en:The Coffee Bean & Tea Leaf", "cuisine": "coffee_shop", "name": "The Coffee Bean & Tea Leaf", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/The Coffee Club": {"name": "The Coffee Club", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/tccau/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q7726599"}, "addTags": {"amenity": "cafe", "brand": "The Coffee Club", "brand:wikidata": "Q7726599", "brand:wikipedia": "en:The Coffee Club", "cuisine": "coffee_shop", "name": "The Coffee Club", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "The Coffee Club", "brand:wikidata": "Q7726599", "brand:wikipedia": "en:The Coffee Club", "cuisine": "coffee_shop", "name": "The Coffee Club", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Tim Hortons": {"name": "Tim Hortons", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/TimHortonsUS/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q175106"}, "addTags": {"amenity": "cafe", "brand": "Tim Hortons", "brand:wikidata": "Q175106", "brand:wikipedia": "en:Tim Hortons", "cuisine": "coffee_shop", "name": "Tim Hortons", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Tim Hortons", "brand:wikidata": "Q175106", "brand:wikipedia": "en:Tim Hortons", "cuisine": "coffee_shop", "name": "Tim Hortons", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Traveler's Coffee": {"name": "Traveler's Coffee", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q4051716"}, "addTags": {"amenity": "cafe", "brand": "Traveler's Coffee", "brand:wikidata": "Q4051716", "brand:wikipedia": "ru:Traveler’s Coffee", "cuisine": "coffee_shop", "name": "Traveler's Coffee", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Traveler's Coffee", "brand:wikidata": "Q4051716", "brand:wikipedia": "ru:Traveler’s Coffee", "cuisine": "coffee_shop", "name": "Traveler's Coffee", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Wayne's Coffee": {"name": "Wayne's Coffee", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/WaynesCoffeeInternational/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q2637272"}, "addTags": {"amenity": "cafe", "brand": "Wayne's Coffee", "brand:wikidata": "Q2637272", "brand:wikipedia": "en:Wayne's Coffee", "cuisine": "coffee_shop", "name": "Wayne's Coffee", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Wayne's Coffee", "brand:wikidata": "Q2637272", "brand:wikipedia": "en:Wayne's Coffee", "cuisine": "coffee_shop", "name": "Wayne's Coffee", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Wild Bean Cafe": {"name": "Wild Bean Cafe", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q61804826"}, "addTags": {"amenity": "cafe", "brand": "Wild Bean Cafe", "brand:wikidata": "Q61804826", "cuisine": "coffee_shop", "name": "Wild Bean Cafe", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Wild Bean Cafe", "brand:wikidata": "Q61804826", "cuisine": "coffee_shop", "name": "Wild Bean Cafe", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Даблби": {"name": "Даблби", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/DoubleBCoffeeTea/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q62501686"}, "addTags": {"amenity": "cafe", "brand": "Даблби", "brand:en": "Double B", "brand:wikidata": "Q62501686", "cuisine": "coffee_shop", "name": "Даблби", "name:en": "Double B", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Даблби", "brand:en": "Double B", "brand:wikidata": "Q62501686", "cuisine": "coffee_shop", "name": "Даблби", "name:en": "Double B", "takeaway": "yes"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/Старбакс": {"name": "Старбакс", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/Starbucks/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q37158"}, "addTags": {"amenity": "cafe", "brand": "Старбакс", "brand:en": "Starbucks", "brand:wikidata": "Q37158", "brand:wikipedia": "en:Starbucks", "cuisine": "coffee_shop", "name": "Старбакс", "name:en": "Starbucks", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Старбакс", "brand:en": "Starbucks", "brand:wikidata": "Q37158", "brand:wikipedia": "en:Starbucks", "cuisine": "coffee_shop", "name": "Старбакс", "name:en": "Starbucks", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/cafe/Шоколадница": {"name": "Шоколадница", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/shoko.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q30891188"}, "addTags": {"amenity": "cafe", "brand": "Шоколадница", "brand:en": "Chocolate", "brand:wikidata": "Q30891188", "brand:wikipedia": "ru:Шоколадница (сеть кофеен)", "cuisine": "coffee_shop", "name": "Шоколадница", "name:en": "Chocolate", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Шоколадница", "brand:en": "Chocolate", "brand:wikidata": "Q30891188", "brand:wikipedia": "ru:Шоколадница (сеть кофеен)", "cuisine": "coffee_shop", "name": "Шоколадница", "name:en": "Chocolate", "takeaway": "yes"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/Штолле": {"name": "Штолле", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/stollerussia/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q62502236"}, "addTags": {"amenity": "cafe", "brand": "Штолле", "brand:en": "Stolle", "brand:wikidata": "Q62502236", "cuisine": "coffee_shop", "name": "Штолле", "name:en": "Stolle", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "Штолле", "brand:en": "Stolle", "brand:wikidata": "Q62502236", "cuisine": "coffee_shop", "name": "Штолле", "name:en": "Stolle", "takeaway": "yes"}, "countryCodes": ["by", "ru", "ua"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/ארומה": {"name": "ארומה", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/Israel.Aroma/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q2909872"}, "addTags": {"amenity": "cafe", "brand": "ארומה", "brand:en": "Aroma Espresso Bar", "brand:he": "ארומה", "brand:wikidata": "Q2909872", "brand:wikipedia": "en:Aroma Espresso Bar", "cuisine": "coffee_shop", "name": "ארומה", "name:en": "Aroma Espresso Bar", "name:he": "ארומה", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "ארומה", "brand:en": "Aroma Espresso Bar", "brand:he": "ארומה", "brand:wikidata": "Q2909872", "brand:wikipedia": "en:Aroma Espresso Bar", "cuisine": "coffee_shop", "name": "ארומה", "name:en": "Aroma Espresso Bar", "name:he": "ארומה", "takeaway": "yes"}, "countryCodes": ["il"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/คาเฟ่ อเมซอน": {"name": "คาเฟ่ อเมซอน", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/cafeamazonofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q43247503"}, "addTags": {"amenity": "cafe", "brand": "คาเฟ่ อเมซอน", "brand:en": "Café Amazon", "brand:th": "คาเฟ่ อเมซอน", "brand:wikidata": "Q43247503", "brand:wikipedia": "en:Café Amazon", "cuisine": "coffee_shop", "name": "คาเฟ่ อเมซอน", "name:en": "Café Amazon", "name:th": "คาเฟ่ อเมซอน", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "คาเฟ่ อเมซอน", "brand:en": "Café Amazon", "brand:th": "คาเฟ่ อเมซอน", "brand:wikidata": "Q43247503", "brand:wikipedia": "en:Café Amazon", "cuisine": "coffee_shop", "name": "คาเฟ่ อเมซอน", "name:en": "Café Amazon", "name:th": "คาเฟ่ อเมซอน", "takeaway": "yes"}, "countryCodes": ["th"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/エクセルシオール カフェ": {"name": "エクセルシオール カフェ", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q11289828"}, "addTags": {"amenity": "cafe", "brand": "エクセルシオール カフェ", "brand:en": "EXCELSIOR CAFFÉ", "brand:ja": "エクセルシオール カフェ", "brand:wikidata": "Q11289828", "brand:wikipedia": "ja:エクセルシオール カフェ", "cuisine": "coffee_shop", "name": "エクセルシオール カフェ", "name:ja": "エクセルシオール カフェ", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "エクセルシオール カフェ", "brand:en": "EXCELSIOR CAFFÉ", "brand:ja": "エクセルシオール カフェ", "brand:wikidata": "Q11289828", "brand:wikipedia": "ja:エクセルシオール カフェ", "cuisine": "coffee_shop", "name": "エクセルシオール カフェ", "name:ja": "エクセルシオール カフェ", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/カフェ・ド・クリエ": {"name": "カフェ・ド・クリエ", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/pokkacreate/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q17219077"}, "addTags": {"amenity": "cafe", "brand": "カフェ・ド・クリエ", "brand:en": "Cafe de CRIE", "brand:ja": "カフェ・ド・クリエ", "brand:wikidata": "Q17219077", "brand:wikipedia": "ja:ポッカクリエイト", "cuisine": "coffee_shop", "name": "カフェ・ド・クリエ", "name:en": "Cafe de CRIE", "name:ja": "カフェ・ド・クリエ", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "カフェ・ド・クリエ", "brand:en": "Cafe de CRIE", "brand:ja": "カフェ・ド・クリエ", "brand:wikidata": "Q17219077", "brand:wikipedia": "ja:ポッカクリエイト", "cuisine": "coffee_shop", "name": "カフェ・ド・クリエ", "name:en": "Cafe de CRIE", "name:ja": "カフェ・ド・クリエ", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/カフェ・ベローチェ": {"name": "カフェ・ベローチェ", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q11294597"}, "addTags": {"amenity": "cafe", "brand": "カフェ・ベローチェ", "brand:en": "CAFFÈ VELOCE", "brand:ja": "カフェ・ベローチェ", "brand:wikidata": "Q11294597", "brand:wikipedia": "ja:カフェ・ベローチェ", "cuisine": "coffee_shop", "name": "カフェ・ベローチェ", "name:en": "CAFFÈ VELOCE", "name:ja": "カフェ・ベローチェ", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "カフェ・ベローチェ", "brand:en": "CAFFÈ VELOCE", "brand:ja": "カフェ・ベローチェ", "brand:wikidata": "Q11294597", "brand:wikipedia": "ja:カフェ・ベローチェ", "cuisine": "coffee_shop", "name": "カフェ・ベローチェ", "name:en": "CAFFÈ VELOCE", "name:ja": "カフェ・ベローチェ", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/コメダ珈琲店": {"name": "コメダ珈琲店", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/komeda.coffee/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q11302679"}, "addTags": {"amenity": "cafe", "brand": "コメダ珈琲店", "brand:en": "Komeda Coffee Shop", "brand:ja": "コメダ珈琲店", "brand:wikidata": "Q11302679", "brand:wikipedia": "ja:コメダ", "cuisine": "coffee_shop", "name": "コメダ珈琲店", "name:en": "Komeda Coffee Shop", "name:ja": "コメダ珈琲店", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "コメダ珈琲店", "brand:en": "Komeda Coffee Shop", "brand:ja": "コメダ珈琲店", "brand:wikidata": "Q11302679", "brand:wikipedia": "ja:コメダ", "cuisine": "coffee_shop", "name": "コメダ珈琲店", "name:en": "Komeda Coffee Shop", "name:ja": "コメダ珈琲店", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/サンマルクカフェ": {"name": "サンマルクカフェ", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q11305989"}, "addTags": {"amenity": "cafe", "brand": "サンマルクカフェ", "brand:en": "ST.MARC CAFÉ", "brand:ja": "サンマルクカフェ", "brand:wikidata": "Q11305989", "brand:wikipedia": "ja:サンマルクホールディングス", "cuisine": "coffee_shop", "name": "サンマルクカフェ", "name:en": "ST.MARC CAFÉ", "name:ja": "サンマルクカフェ", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "サンマルクカフェ", "brand:en": "ST.MARC CAFÉ", "brand:ja": "サンマルクカフェ", "brand:wikidata": "Q11305989", "brand:wikipedia": "ja:サンマルクホールディングス", "cuisine": "coffee_shop", "name": "サンマルクカフェ", "name:en": "ST.MARC CAFÉ", "name:ja": "サンマルクカフェ", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/スターバックス": {"name": "スターバックス", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/Starbucks/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q37158"}, "addTags": {"amenity": "cafe", "brand": "スターバックス", "brand:en": "Starbucks", "brand:ja": "スターバックス", "brand:wikidata": "Q37158", "brand:wikipedia": "ja:スターバックス", "cuisine": "coffee_shop", "name": "スターバックス", "name:en": "Starbucks", "name:ja": "スターバックス", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "スターバックス", "brand:en": "Starbucks", "brand:ja": "スターバックス", "brand:wikidata": "Q37158", "brand:wikipedia": "ja:スターバックス", "cuisine": "coffee_shop", "name": "スターバックス", "name:en": "Starbucks", "name:ja": "スターバックス", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/タリーズコーヒー": {"name": "タリーズコーヒー", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/TullysCoffeeShops/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q3541983"}, "addTags": {"amenity": "cafe", "brand": "タリーズコーヒー", "brand:en": "Tully's Coffee", "brand:ja": "タリーズコーヒー", "brand:wikidata": "Q3541983", "brand:wikipedia": "en:Tully's Coffee", "cuisine": "coffee_shop", "name": "タリーズコーヒー", "name:en": "Tully's Coffee", "name:ja": "タリーズコーヒー", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "タリーズコーヒー", "brand:en": "Tully's Coffee", "brand:ja": "タリーズコーヒー", "brand:wikidata": "Q3541983", "brand:wikipedia": "en:Tully's Coffee", "cuisine": "coffee_shop", "name": "タリーズコーヒー", "name:en": "Tully's Coffee", "name:ja": "タリーズコーヒー", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/ドトールコーヒーショップ": {"name": "ドトールコーヒーショップ", "icon": "maki-cafe", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q11322732"}, "addTags": {"amenity": "cafe", "brand": "ドトールコーヒーショップ", "brand:en": "Doutor", "brand:ja": "ドトールコーヒーショップ", "brand:wikidata": "Q11322732", "brand:wikipedia": "ja:ドトールコーヒーショップ", "cuisine": "coffee_shop", "name": "ドトールコーヒーショップ", "name:en": "Doutor Coffee Shop", "name:ja": "ドトールコーヒーショップ", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "ドトールコーヒーショップ", "brand:en": "Doutor", "brand:ja": "ドトールコーヒーショップ", "brand:wikidata": "Q11322732", "brand:wikipedia": "ja:ドトールコーヒーショップ", "cuisine": "coffee_shop", "name": "ドトールコーヒーショップ", "name:en": "Doutor Coffee Shop", "name:ja": "ドトールコーヒーショップ", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/星巴克": {"name": "星巴克", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/Starbucks/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q37158"}, "addTags": {"amenity": "cafe", "brand": "星巴克", "brand:en": "Starbucks", "brand:wikidata": "Q37158", "brand:wikipedia": "zh:星巴克", "brand:zh": "星巴克", "cuisine": "coffee_shop", "name": "星巴克", "name:en": "Starbucks", "name:zh": "星巴克", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "星巴克", "brand:en": "Starbucks", "brand:wikidata": "Q37158", "brand:wikipedia": "zh:星巴克", "brand:zh": "星巴克", "cuisine": "coffee_shop", "name": "星巴克", "name:en": "Starbucks", "name:zh": "星巴克", "takeaway": "yes"}, "countryCodes": ["cn", "tw"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/珈琲館": {"name": "珈琲館", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/kohikancorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q11573290"}, "addTags": {"amenity": "cafe", "brand": "珈琲館", "brand:en": "Kohikan", "brand:ja": "珈琲館", "brand:wikidata": "Q11573290", "brand:wikipedia": "ja:珈琲館", "cuisine": "coffee_shop", "name": "珈琲館", "name:en": "Kohikan", "name:ja": "珈琲館", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "珈琲館", "brand:en": "Kohikan", "brand:ja": "珈琲館", "brand:wikidata": "Q11573290", "brand:wikipedia": "ja:珈琲館", "cuisine": "coffee_shop", "name": "珈琲館", "name:en": "Kohikan", "name:ja": "珈琲館", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/cafe/스타벅스": {"name": "스타벅스", "icon": "maki-cafe", "imageURL": "https://graph.facebook.com/Starbucks/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "brand:wikidata": "Q37158"}, "addTags": {"amenity": "cafe", "brand": "스타벅스", "brand:en": "Starbucks", "brand:ko": "스타벅스", "brand:wikidata": "Q37158", "brand:wikipedia": "ko:스타벅스", "cuisine": "coffee_shop", "name": "스타벅스", "name:en": "Starbucks", "name:ko": "스타벅스", "takeaway": "yes"}, "removeTags": {"amenity": "cafe", "brand": "스타벅스", "brand:en": "Starbucks", "brand:ko": "스타벅스", "brand:wikidata": "Q37158", "brand:wikipedia": "ko:스타벅스", "cuisine": "coffee_shop", "name": "스타벅스", "name:en": "Starbucks", "name:ko": "스타벅스", "takeaway": "yes"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, + "amenity/car_rental/Alamo": {"name": "Alamo", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/AlamoRentACar/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q1429287"}, "addTags": {"amenity": "car_rental", "brand": "Alamo", "brand:wikidata": "Q1429287", "brand:wikipedia": "en:Alamo Rent a Car", "name": "Alamo"}, "removeTags": {"amenity": "car_rental", "brand": "Alamo", "brand:wikidata": "Q1429287", "brand:wikipedia": "en:Alamo Rent a Car", "name": "Alamo"}, "matchScore": 2, "suggestion": true}, + "amenity/car_rental/Avis": {"name": "Avis", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/avis/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q791136"}, "addTags": {"amenity": "car_rental", "brand": "Avis", "brand:wikidata": "Q791136", "brand:wikipedia": "en:Avis Car Rental", "name": "Avis"}, "removeTags": {"amenity": "car_rental", "brand": "Avis", "brand:wikidata": "Q791136", "brand:wikipedia": "en:Avis Car Rental", "name": "Avis"}, "matchScore": 2, "suggestion": true}, + "amenity/car_rental/Budget": {"name": "Budget", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/Budget/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q1001437"}, "addTags": {"amenity": "car_rental", "brand": "Budget", "brand:wikidata": "Q1001437", "brand:wikipedia": "en:Budget Rent a Car", "name": "Budget"}, "removeTags": {"amenity": "car_rental", "brand": "Budget", "brand:wikidata": "Q1001437", "brand:wikipedia": "en:Budget Rent a Car", "name": "Budget"}, "matchScore": 2, "suggestion": true}, "amenity/car_rental/Dollar": {"name": "Dollar", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/DollarCarRental/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q1235661"}, "addTags": {"amenity": "car_rental", "brand": "Dollar", "brand:wikidata": "Q1235661", "brand:wikipedia": "en:Dollar Rent A Car", "name": "Dollar"}, "removeTags": {"amenity": "car_rental", "brand": "Dollar", "brand:wikidata": "Q1235661", "brand:wikipedia": "en:Dollar Rent A Car", "name": "Dollar"}, "matchScore": 2, "suggestion": true}, "amenity/car_rental/Enterprise": {"name": "Enterprise", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/Enterprise/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q17085454"}, "addTags": {"amenity": "car_rental", "brand": "Enterprise", "brand:wikidata": "Q17085454", "brand:wikipedia": "en:Enterprise Rent-A-Car", "name": "Enterprise"}, "removeTags": {"amenity": "car_rental", "brand": "Enterprise", "brand:wikidata": "Q17085454", "brand:wikipedia": "en:Enterprise Rent-A-Car", "name": "Enterprise"}, "matchScore": 2, "suggestion": true}, "amenity/car_rental/Europcar": {"name": "Europcar", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/europcar/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q1376256"}, "addTags": {"amenity": "car_rental", "brand": "Europcar", "brand:wikidata": "Q1376256", "brand:wikipedia": "en:Europcar", "name": "Europcar"}, "removeTags": {"amenity": "car_rental", "brand": "Europcar", "brand:wikidata": "Q1376256", "brand:wikipedia": "en:Europcar", "name": "Europcar"}, "matchScore": 2, "suggestion": true}, "amenity/car_rental/Hertz": {"name": "Hertz", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/hertz/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q1543874"}, "addTags": {"amenity": "car_rental", "brand": "Hertz", "brand:wikidata": "Q1543874", "brand:wikipedia": "en:The Hertz Corporation", "name": "Hertz"}, "removeTags": {"amenity": "car_rental", "brand": "Hertz", "brand:wikidata": "Q1543874", "brand:wikipedia": "en:The Hertz Corporation", "name": "Hertz"}, "matchScore": 2, "suggestion": true}, "amenity/car_rental/Localiza": {"name": "Localiza", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/localizahertz/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q10319490"}, "addTags": {"amenity": "car_rental", "brand": "Localiza", "brand:wikidata": "Q10319490", "brand:wikipedia": "en:Localiza", "name": "Localiza"}, "removeTags": {"amenity": "car_rental", "brand": "Localiza", "brand:wikidata": "Q10319490", "brand:wikipedia": "en:Localiza", "name": "Localiza"}, "matchScore": 2, "suggestion": true}, - "amenity/car_rental/Sixt": {"name": "Sixt", "icon": "maki-car-rental", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSixt-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q705664"}, "addTags": {"amenity": "car_rental", "brand": "Sixt", "brand:wikidata": "Q705664", "brand:wikipedia": "en:Sixt", "name": "Sixt"}, "removeTags": {"amenity": "car_rental", "brand": "Sixt", "brand:wikidata": "Q705664", "brand:wikipedia": "en:Sixt", "name": "Sixt"}, "matchScore": 2, "suggestion": true}, + "amenity/car_rental/Sixt": {"name": "Sixt", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/sixt.rentacar.usa/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q705664"}, "addTags": {"amenity": "car_rental", "brand": "Sixt", "brand:wikidata": "Q705664", "brand:wikipedia": "en:Sixt", "name": "Sixt"}, "removeTags": {"amenity": "car_rental", "brand": "Sixt", "brand:wikidata": "Q705664", "brand:wikipedia": "en:Sixt", "name": "Sixt"}, "matchScore": 2, "suggestion": true}, "amenity/car_rental/Thrifty": {"name": "Thrifty", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/ThriftyCarRental/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q2429546"}, "addTags": {"amenity": "car_rental", "brand": "Thrifty", "brand:wikidata": "Q2429546", "brand:wikipedia": "en:Thrifty Car Rental", "name": "Thrifty"}, "removeTags": {"amenity": "car_rental", "brand": "Thrifty", "brand:wikidata": "Q2429546", "brand:wikipedia": "en:Thrifty Car Rental", "name": "Thrifty"}, "matchScore": 2, "suggestion": true}, - "amenity/car_rental/U-Haul": {"name": "U-Haul", "icon": "maki-car-rental", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q7862902"}, "addTags": {"amenity": "car_rental", "brand": "U-Haul", "brand:wikidata": "Q7862902", "brand:wikipedia": "en:U-Haul", "name": "U-Haul"}, "removeTags": {"amenity": "car_rental", "brand": "U-Haul", "brand:wikidata": "Q7862902", "brand:wikipedia": "en:U-Haul", "name": "U-Haul"}, "matchScore": 2, "suggestion": true}, + "amenity/car_rental/U-Haul": {"name": "U-Haul", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/uhaul/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q7862902"}, "addTags": {"amenity": "car_rental", "brand": "U-Haul", "brand:wikidata": "Q7862902", "brand:wikipedia": "en:U-Haul", "name": "U-Haul"}, "removeTags": {"amenity": "car_rental", "brand": "U-Haul", "brand:wikidata": "Q7862902", "brand:wikipedia": "en:U-Haul", "name": "U-Haul"}, "matchScore": 2, "suggestion": true}, "amenity/car_rental/オリックスレンタカー": {"name": "オリックスレンタカー", "icon": "maki-car-rental", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q11123021"}, "addTags": {"amenity": "car_rental", "brand": "オリックスレンタカー", "brand:en": "ORIX Car Rental", "brand:ja": "オリックスレンタカー", "brand:wikidata": "Q11123021", "brand:wikipedia": "ja:オリックスレンタカー", "name": "オリックスレンタカー", "name:en": "ORIX Car Rental", "name:ja": "オリックスレンタカー"}, "removeTags": {"amenity": "car_rental", "brand": "オリックスレンタカー", "brand:en": "ORIX Car Rental", "brand:ja": "オリックスレンタカー", "brand:wikidata": "Q11123021", "brand:wikipedia": "ja:オリックスレンタカー", "name": "オリックスレンタカー", "name:en": "ORIX Car Rental", "name:ja": "オリックスレンタカー"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/car_rental/トヨタレンタカー": {"name": "トヨタレンタカー", "icon": "maki-car-rental", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q11321580"}, "addTags": {"amenity": "car_rental", "brand": "トヨタレンタカー", "brand:en": "Toyota Rental Car", "brand:ja": "トヨタレンタカー", "brand:wikidata": "Q11321580", "brand:wikipedia": "ja:トヨタレンタリース", "name": "トヨタレンタカー", "name:en": "Toyota Rental Car", "name:ja": "トヨタレンタカー"}, "removeTags": {"amenity": "car_rental", "brand": "トヨタレンタカー", "brand:en": "Toyota Rental Car", "brand:ja": "トヨタレンタカー", "brand:wikidata": "Q11321580", "brand:wikipedia": "ja:トヨタレンタリース", "name": "トヨタレンタカー", "name:en": "Toyota Rental Car", "name:ja": "トヨタレンタカー"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/car_rental/ニッポンレンタカー": {"name": "ニッポンレンタカー", "icon": "maki-car-rental", "geometry": ["point", "area"], "tags": {"amenity": "car_rental", "brand:wikidata": "Q11086533"}, "addTags": {"amenity": "car_rental", "brand": "ニッポンレンタカー", "brand:en": "Nippon Car Rental", "brand:ja": "ニッポンレンタカー", "brand:wikidata": "Q11086533", "brand:wikipedia": "ja:ニッポンレンタカー", "name": "ニッポンレンタカー", "name:en": "Nippon Car Rental", "name:ja": "ニッポンレンタカー"}, "removeTags": {"amenity": "car_rental", "brand": "ニッポンレンタカー", "brand:en": "Nippon Car Rental", "brand:ja": "ニッポンレンタカー", "brand:wikidata": "Q11086533", "brand:wikipedia": "ja:ニッポンレンタカー", "name": "ニッポンレンタカー", "name:en": "Nippon Car Rental", "name:ja": "ニッポンレンタカー"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, @@ -1750,219 +1769,248 @@ "amenity/charging_station/ChargePoint": {"name": "ChargePoint", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/ChargePoint/picture?type=large", "geometry": ["point"], "tags": {"amenity": "charging_station", "brand:wikidata": "Q5176149"}, "addTags": {"amenity": "charging_station", "brand": "ChargePoint", "brand:wikidata": "Q5176149", "brand:wikipedia": "en:ChargePoint", "name": "ChargePoint"}, "removeTags": {"amenity": "charging_station", "brand": "ChargePoint", "brand:wikidata": "Q5176149", "brand:wikipedia": "en:ChargePoint", "name": "ChargePoint"}, "matchScore": 2, "suggestion": true}, "amenity/charging_station/E-WALD": {"name": "E-WALD", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/E.WALD.emobility/picture?type=large", "geometry": ["point"], "tags": {"amenity": "charging_station", "brand:wikidata": "Q61804335"}, "addTags": {"amenity": "charging_station", "brand": "E-WALD", "brand:wikidata": "Q61804335", "name": "E-WALD"}, "removeTags": {"amenity": "charging_station", "brand": "E-WALD", "brand:wikidata": "Q61804335", "name": "E-WALD"}, "matchScore": 2, "suggestion": true}, "amenity/charging_station/Enel": {"name": "Enel", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/enelsharing/picture?type=large", "geometry": ["point"], "tags": {"amenity": "charging_station", "brand:wikidata": "Q651222"}, "addTags": {"amenity": "charging_station", "brand": "Enel", "brand:wikidata": "Q651222", "brand:wikipedia": "en:Enel", "name": "Enel"}, "removeTags": {"amenity": "charging_station", "brand": "Enel", "brand:wikidata": "Q651222", "brand:wikipedia": "en:Enel", "name": "Enel"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, - "amenity/charging_station/Tesla Supercharger": {"name": "Tesla Supercharger", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/Official-Tesla-Motors-163049757692185/picture?type=large", "geometry": ["point"], "tags": {"amenity": "charging_station", "brand:wikidata": "Q17089620"}, "addTags": {"amenity": "charging_station", "brand": "Tesla Supercharger", "brand:wikidata": "Q17089620", "brand:wikipedia": "en:Tesla Supercharger", "name": "Tesla Supercharger"}, "removeTags": {"amenity": "charging_station", "brand": "Tesla Supercharger", "brand:wikidata": "Q17089620", "brand:wikipedia": "en:Tesla Supercharger", "name": "Tesla Supercharger"}, "matchScore": 2, "suggestion": true}, - "amenity/charging_station/eVgo": {"name": "eVgo", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/evgonetwork/picture?type=large", "geometry": ["point"], "tags": {"amenity": "charging_station", "brand:wikidata": "Q61803820"}, "addTags": {"amenity": "charging_station", "brand": "eVgo", "brand:wikidata": "Q61803820", "name": "eVgo", "operator:wikidata": "Q6955139", "operator:wikipedia": "en:NRG Energy"}, "removeTags": {"amenity": "charging_station", "brand": "eVgo", "brand:wikidata": "Q61803820", "name": "eVgo", "operator:wikidata": "Q6955139", "operator:wikipedia": "en:NRG Energy"}, "matchScore": 2, "suggestion": true}, - "amenity/cinema/109シネマズ": {"name": "109シネマズ", "icon": "maki-cinema", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q10854269"}, "addTags": {"amenity": "cinema", "brand": "109シネマズ", "brand:en": "109 Cinemas", "brand:wikidata": "Q10854269", "brand:wikipedia": "ja:109シネマズ", "name": "109シネマズ", "name:en": "109 Cinemas", "operator": "株式会社 東急レクリエーション", "operator:en": "Tokyu Recreation Co., Ltd.", "operator:wikidata": "Q11527011", "operator:wikipedia": "ja:東急レクリエーション"}, "removeTags": {"amenity": "cinema", "brand": "109シネマズ", "brand:en": "109 Cinemas", "brand:wikidata": "Q10854269", "brand:wikipedia": "ja:109シネマズ", "name": "109シネマズ", "name:en": "109 Cinemas", "operator": "株式会社 東急レクリエーション", "operator:en": "Tokyu Recreation Co., Ltd.", "operator:wikidata": "Q11527011", "operator:wikipedia": "ja:東急レクリエーション"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Cinema City": {"name": "Cinema City", "icon": "maki-cinema", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCinema%20City.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q543651"}, "addTags": {"amenity": "cinema", "brand": "Cinema City", "brand:wikidata": "Q543651", "brand:wikipedia": "en:Cinema City International", "name": "Cinema City"}, "removeTags": {"amenity": "cinema", "brand": "Cinema City", "brand:wikidata": "Q543651", "brand:wikipedia": "en:Cinema City International", "name": "Cinema City"}, "matchScore": 2, "suggestion": true}, + "amenity/charging_station/Tesla Supercharger": {"name": "Tesla Supercharger", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/163049757692185/picture?type=large", "geometry": ["point"], "tags": {"amenity": "charging_station", "brand:wikidata": "Q17089620"}, "addTags": {"amenity": "charging_station", "brand": "Tesla Supercharger", "brand:wikidata": "Q17089620", "brand:wikipedia": "en:Tesla Supercharger", "name": "Tesla Supercharger"}, "removeTags": {"amenity": "charging_station", "brand": "Tesla Supercharger", "brand:wikidata": "Q17089620", "brand:wikipedia": "en:Tesla Supercharger", "name": "Tesla Supercharger"}, "matchScore": 2, "suggestion": true}, + "amenity/charging_station/eVgo": {"name": "eVgo", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/160983117271970/picture?type=large", "geometry": ["point"], "tags": {"amenity": "charging_station", "brand:wikidata": "Q61803820"}, "addTags": {"amenity": "charging_station", "brand": "eVgo", "brand:wikidata": "Q61803820", "name": "eVgo", "operator:wikidata": "Q6955139", "operator:wikipedia": "en:NRG Energy"}, "removeTags": {"amenity": "charging_station", "brand": "eVgo", "brand:wikidata": "Q61803820", "name": "eVgo", "operator:wikidata": "Q6955139", "operator:wikipedia": "en:NRG Energy"}, "matchScore": 2, "suggestion": true}, + "amenity/cinema/109シネマズ": {"name": "109シネマズ", "icon": "maki-cinema", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q10854269"}, "addTags": {"amenity": "cinema", "brand": "109シネマズ", "brand:en": "109 Cinemas", "brand:ja": "109シネマズ", "brand:wikidata": "Q10854269", "brand:wikipedia": "ja:109シネマズ", "name": "109シネマズ", "name:en": "109 Cinemas", "name:ja": "109シネマズ", "operator": "株式会社 東急レクリエーション", "operator:en": "Tokyu Recreation Co., Ltd.", "operator:wikidata": "Q11527011", "operator:wikipedia": "ja:東急レクリエーション"}, "removeTags": {"amenity": "cinema", "brand": "109シネマズ", "brand:en": "109 Cinemas", "brand:ja": "109シネマズ", "brand:wikidata": "Q10854269", "brand:wikipedia": "ja:109シネマズ", "name": "109シネマズ", "name:en": "109 Cinemas", "name:ja": "109シネマズ", "operator": "株式会社 東急レクリエーション", "operator:en": "Tokyu Recreation Co., Ltd.", "operator:wikidata": "Q11527011", "operator:wikipedia": "ja:東急レクリエーション"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/cinema/AMC": {"name": "AMC", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/amctheatres/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q294721"}, "addTags": {"amenity": "cinema", "brand": "AMC", "brand:wikidata": "Q294721", "brand:wikipedia": "en:AMC Theatres", "name": "AMC"}, "removeTags": {"amenity": "cinema", "brand": "AMC", "brand:wikidata": "Q294721", "brand:wikipedia": "en:AMC Theatres", "name": "AMC"}, "matchScore": 2, "suggestion": true}, + "amenity/cinema/CineStar": {"name": "CineStar", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/CineStarDE/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q321889"}, "addTags": {"amenity": "cinema", "brand": "CineStar", "brand:wikidata": "Q321889", "brand:wikipedia": "de:Cinestar", "name": "CineStar"}, "removeTags": {"amenity": "cinema", "brand": "CineStar", "brand:wikidata": "Q321889", "brand:wikipedia": "de:Cinestar", "name": "CineStar"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "amenity/cinema/Cinema City": {"name": "Cinema City", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/CinemaCityPoland/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q543651"}, "addTags": {"amenity": "cinema", "brand": "Cinema City", "brand:wikidata": "Q543651", "brand:wikipedia": "en:Cinema City International", "name": "Cinema City"}, "removeTags": {"amenity": "cinema", "brand": "Cinema City", "brand:wikidata": "Q543651", "brand:wikipedia": "en:Cinema City International", "name": "Cinema City"}, "matchScore": 2, "suggestion": true}, "amenity/cinema/Cinemark": {"name": "Cinemark", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/cinemarkoficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q707530"}, "addTags": {"amenity": "cinema", "brand": "Cinemark", "brand:wikidata": "Q707530", "brand:wikipedia": "en:Cinemark Theatres", "name": "Cinemark"}, "removeTags": {"amenity": "cinema", "brand": "Cinemark", "brand:wikidata": "Q707530", "brand:wikipedia": "en:Cinemark Theatres", "name": "Cinemark"}, "matchScore": 2, "suggestion": true}, - "amenity/cinema/Cinemex": {"name": "Cinemex", "icon": "maki-cinema", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q3333072"}, "addTags": {"amenity": "cinema", "brand": "Cinemex", "brand:wikidata": "Q3333072", "brand:wikipedia": "en:Cinemex", "name": "Cinemex"}, "removeTags": {"amenity": "cinema", "brand": "Cinemex", "brand:wikidata": "Q3333072", "brand:wikipedia": "en:Cinemex", "name": "Cinemex"}, "matchScore": 2, "suggestion": true}, - "amenity/cinema/Cineplanet": {"name": "Cineplanet", "icon": "maki-cinema", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F2015-11-30%20lunes%20162542%20-%20Cineplanet.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q5769680"}, "addTags": {"amenity": "cinema", "brand": "Cineplanet", "brand:wikidata": "Q5769680", "brand:wikipedia": "es:Cineplanet", "name": "Cineplanet", "operator": "Grupo Intercorp", "operator:wikidata": "Q23008916", "operator:wikipedia": "es:Intercorp"}, "removeTags": {"amenity": "cinema", "brand": "Cineplanet", "brand:wikidata": "Q5769680", "brand:wikipedia": "es:Cineplanet", "name": "Cineplanet", "operator": "Grupo Intercorp", "operator:wikidata": "Q23008916", "operator:wikipedia": "es:Intercorp"}, "matchScore": 2, "suggestion": true}, + "amenity/cinema/Cinemex": {"name": "Cinemex", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/Cinemex/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q3333072"}, "addTags": {"amenity": "cinema", "brand": "Cinemex", "brand:wikidata": "Q3333072", "brand:wikipedia": "en:Cinemex", "name": "Cinemex"}, "removeTags": {"amenity": "cinema", "brand": "Cinemex", "brand:wikidata": "Q3333072", "brand:wikipedia": "en:Cinemex", "name": "Cinemex"}, "matchScore": 2, "suggestion": true}, + "amenity/cinema/Cineplanet": {"name": "Cineplanet", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/cineplanet/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q5769680"}, "addTags": {"amenity": "cinema", "brand": "Cineplanet", "brand:wikidata": "Q5769680", "brand:wikipedia": "es:Cineplanet", "name": "Cineplanet", "operator": "Grupo Intercorp", "operator:wikidata": "Q23008916", "operator:wikipedia": "es:Intercorp"}, "removeTags": {"amenity": "cinema", "brand": "Cineplanet", "brand:wikidata": "Q5769680", "brand:wikipedia": "es:Cineplanet", "name": "Cineplanet", "operator": "Grupo Intercorp", "operator:wikidata": "Q23008916", "operator:wikipedia": "es:Intercorp"}, "matchScore": 2, "suggestion": true}, + "amenity/cinema/Cineplexx": {"name": "Cineplexx", "icon": "maki-cinema", "imageURL": "https://pbs.twimg.com/profile_images/448132991856816128/3Rc65BxI_bigger.jpeg", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q873340"}, "addTags": {"amenity": "cinema", "brand": "Cineplexx", "brand:wikidata": "Q873340", "brand:wikipedia": "en:Cineplexx Cinemas", "name": "Cineplexx"}, "removeTags": {"amenity": "cinema", "brand": "Cineplexx", "brand:wikidata": "Q873340", "brand:wikipedia": "en:Cineplexx Cinemas", "name": "Cineplexx"}, "matchScore": 2, "suggestion": true}, "amenity/cinema/Cinepolis": {"name": "Cinepolis", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/cinepolisbrasil/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q5686673"}, "addTags": {"amenity": "cinema", "brand": "Cinepolis", "brand:wikidata": "Q5686673", "brand:wikipedia": "en:Cinépolis", "name": "Cinepolis"}, "removeTags": {"amenity": "cinema", "brand": "Cinepolis", "brand:wikidata": "Q5686673", "brand:wikipedia": "en:Cinépolis", "name": "Cinepolis"}, "matchScore": 2, "suggestion": true}, - "amenity/cinema/Cineworld": {"name": "Cineworld", "icon": "maki-cinema", "imageURL": "https://pbs.twimg.com/profile_images/854986890575065089/WujkAUca_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q5120901"}, "addTags": {"amenity": "cinema", "brand": "Cineworld", "brand:wikidata": "Q5120901", "brand:wikipedia": "en:Cineworld", "name": "Cineworld"}, "removeTags": {"amenity": "cinema", "brand": "Cineworld", "brand:wikidata": "Q5120901", "brand:wikipedia": "en:Cineworld", "name": "Cineworld"}, "matchScore": 2, "suggestion": true}, + "amenity/cinema/Cineworld": {"name": "Cineworld", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/cineworld/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q5120901"}, "addTags": {"amenity": "cinema", "brand": "Cineworld", "brand:wikidata": "Q5120901", "brand:wikipedia": "en:Cineworld", "name": "Cineworld"}, "removeTags": {"amenity": "cinema", "brand": "Cineworld", "brand:wikidata": "Q5120901", "brand:wikipedia": "en:Cineworld", "name": "Cineworld"}, "matchScore": 2, "suggestion": true}, "amenity/cinema/MOVIX": {"name": "MOVIX", "icon": "maki-cinema", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q11532184"}, "addTags": {"amenity": "cinema", "brand": "MOVIX", "brand:wikidata": "Q11532184", "brand:wikipedia": "ja:松竹マルチプレックスシアターズ", "name": "MOVIX", "official_name": "松竹マルチプレックスシアターズ", "official_name:en": "Shochiku Multiplex Theatres", "operator": "株式会社松竹マルチプレックスシアターズ", "operator:en": "Shochiku Multiplex Theatres, Ltd."}, "removeTags": {"amenity": "cinema", "brand": "MOVIX", "brand:wikidata": "Q11532184", "brand:wikipedia": "ja:松竹マルチプレックスシアターズ", "name": "MOVIX", "official_name": "松竹マルチプレックスシアターズ", "official_name:en": "Shochiku Multiplex Theatres", "operator": "株式会社松竹マルチプレックスシアターズ", "operator:en": "Shochiku Multiplex Theatres, Ltd."}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Odeon": {"name": "Odeon", "icon": "maki-cinema", "imageURL": "https://pbs.twimg.com/profile_images/761156055153991680/Rfb_aZyw_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q6127470"}, "addTags": {"amenity": "cinema", "brand": "Odeon", "brand:wikidata": "Q6127470", "brand:wikipedia": "en:Odeon Cinemas", "name": "Odeon"}, "removeTags": {"amenity": "cinema", "brand": "Odeon", "brand:wikidata": "Q6127470", "brand:wikipedia": "en:Odeon Cinemas", "name": "Odeon"}, "matchScore": 2, "suggestion": true}, - "amenity/cinema/TOHOシネマズ": {"name": "TOHOシネマズ", "icon": "maki-cinema", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q11235261"}, "addTags": {"amenity": "cinema", "brand": "TOHOシネマズ", "brand:en": "TOHO CINEMAS", "brand:wikidata": "Q11235261", "brand:wikipedia": "ja:TOHOシネマズ", "name": "TOHOシネマズ", "name:en": "Toho Cinemas", "operator": "TOHOシネマズ株式会社", "operator:en": "TOHO CINEMAS LTD."}, "removeTags": {"amenity": "cinema", "brand": "TOHOシネマズ", "brand:en": "TOHO CINEMAS", "brand:wikidata": "Q11235261", "brand:wikipedia": "ja:TOHOシネマズ", "name": "TOHOシネマズ", "name:en": "Toho Cinemas", "operator": "TOHOシネマズ株式会社", "operator:en": "TOHO CINEMAS LTD."}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/イオンシネマ": {"name": "イオンシネマ", "icon": "maki-cinema", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q17192792"}, "addTags": {"amenity": "cinema", "brand": "イオンシネマ", "brand:en": "AEON Cinema", "brand:wikidata": "Q17192792", "brand:wikipedia": "ja:イオンエンターテイメント", "name": "イオンシネマ", "name:en": "AEON Cinema", "operator": "イオンエンターテイメント株式会社", "operator:en": "Aeon Entertainment Co., Ltd."}, "removeTags": {"amenity": "cinema", "brand": "イオンシネマ", "brand:en": "AEON Cinema", "brand:wikidata": "Q17192792", "brand:wikipedia": "ja:イオンエンターテイメント", "name": "イオンシネマ", "name:en": "AEON Cinema", "operator": "イオンエンターテイメント株式会社", "operator:en": "Aeon Entertainment Co., Ltd."}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/ユナイテッド・シネマ": {"name": "ユナイテッド・シネマ", "icon": "maki-cinema", "imageURL": "https://pbs.twimg.com/profile_images/857443773231513600/PRdKnkLq_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q11345629"}, "addTags": {"amenity": "cinema", "brand": "ユナイテッド・シネマ", "brand:en": "United Cinemas", "brand:wikidata": "Q11345629", "brand:wikipedia": "ja:ユナイテッド・シネマ", "name": "ユナイテッド・シネマ", "name:en": "United Cinemas", "operator": "ユナイテッド・シネマ株式会社", "operator:en": "UNITED CINEMAS CO., LTD."}, "removeTags": {"amenity": "cinema", "brand": "ユナイテッド・シネマ", "brand:en": "United Cinemas", "brand:wikidata": "Q11345629", "brand:wikipedia": "ja:ユナイテッド・シネマ", "name": "ユナイテッド・シネマ", "name:en": "United Cinemas", "operator": "ユナイテッド・シネマ株式会社", "operator:en": "UNITED CINEMAS CO., LTD."}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/cinema/Odeon": {"name": "Odeon", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/ODEON/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q6127470"}, "addTags": {"amenity": "cinema", "brand": "Odeon", "brand:wikidata": "Q6127470", "brand:wikipedia": "en:Odeon Cinemas", "name": "Odeon"}, "removeTags": {"amenity": "cinema", "brand": "Odeon", "brand:wikidata": "Q6127470", "brand:wikipedia": "en:Odeon Cinemas", "name": "Odeon"}, "matchScore": 2, "suggestion": true}, + "amenity/cinema/TOHOシネマズ": {"name": "TOHOシネマズ", "icon": "maki-cinema", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q11235261"}, "addTags": {"amenity": "cinema", "brand": "TOHOシネマズ", "brand:en": "TOHO CINEMAS", "brand:ja": "TOHOシネマズ", "brand:wikidata": "Q11235261", "brand:wikipedia": "ja:TOHOシネマズ", "name": "TOHOシネマズ", "name:en": "Toho Cinemas", "name:ja": "TOHOシネマズ", "operator": "TOHOシネマズ株式会社", "operator:en": "TOHO CINEMAS LTD."}, "removeTags": {"amenity": "cinema", "brand": "TOHOシネマズ", "brand:en": "TOHO CINEMAS", "brand:ja": "TOHOシネマズ", "brand:wikidata": "Q11235261", "brand:wikipedia": "ja:TOHOシネマズ", "name": "TOHOシネマズ", "name:en": "Toho Cinemas", "name:ja": "TOHOシネマズ", "operator": "TOHOシネマズ株式会社", "operator:en": "TOHO CINEMAS LTD."}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/cinema/イオンシネマ": {"name": "イオンシネマ", "icon": "maki-cinema", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q17192792"}, "addTags": {"amenity": "cinema", "brand": "イオンシネマ", "brand:en": "AEON Cinema", "brand:ja": "イオンシネマ", "brand:wikidata": "Q17192792", "brand:wikipedia": "ja:イオンエンターテイメント", "name": "イオンシネマ", "name:en": "AEON Cinema", "name:ja": "イオンシネマ", "operator": "イオンエンターテイメント株式会社", "operator:en": "Aeon Entertainment Co., Ltd."}, "removeTags": {"amenity": "cinema", "brand": "イオンシネマ", "brand:en": "AEON Cinema", "brand:ja": "イオンシネマ", "brand:wikidata": "Q17192792", "brand:wikipedia": "ja:イオンエンターテイメント", "name": "イオンシネマ", "name:en": "AEON Cinema", "name:ja": "イオンシネマ", "operator": "イオンエンターテイメント株式会社", "operator:en": "Aeon Entertainment Co., Ltd."}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/cinema/ユナイテッド・シネマ": {"name": "ユナイテッド・シネマ", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/unitedcinemasgroup/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "cinema", "brand:wikidata": "Q11345629"}, "addTags": {"amenity": "cinema", "brand": "ユナイテッド・シネマ", "brand:en": "United Cinemas", "brand:ja": "ユナイテッド・シネマ", "brand:wikidata": "Q11345629", "brand:wikipedia": "ja:ユナイテッド・シネマ", "name": "ユナイテッド・シネマ", "name:en": "United Cinemas", "name:ja": "ユナイテッド・シネマ", "operator": "ユナイテッド・シネマ株式会社", "operator:en": "UNITED CINEMAS CO., LTD."}, "removeTags": {"amenity": "cinema", "brand": "ユナイテッド・シネマ", "brand:en": "United Cinemas", "brand:ja": "ユナイテッド・シネマ", "brand:wikidata": "Q11345629", "brand:wikipedia": "ja:ユナイテッド・シネマ", "name": "ユナイテッド・シネマ", "name:en": "United Cinemas", "name:ja": "ユナイテッド・シネマ", "operator": "ユナイテッド・シネマ株式会社", "operator:en": "UNITED CINEMAS CO., LTD."}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/dentist/Aspen Dental": {"name": "Aspen Dental", "icon": "maki-dentist", "imageURL": "https://graph.facebook.com/AspenDental/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "dentist", "brand:wikidata": "Q4807808"}, "addTags": {"amenity": "dentist", "brand": "Aspen Dental", "brand:wikidata": "Q4807808", "brand:wikipedia": "en:Aspen Dental", "healthcare": "dentist", "name": "Aspen Dental"}, "removeTags": {"amenity": "dentist", "brand": "Aspen Dental", "brand:wikidata": "Q4807808", "brand:wikipedia": "en:Aspen Dental", "healthcare": "dentist", "name": "Aspen Dental"}, "reference": {"key": "amenity", "value": "dentist"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/A&W (Canada)": {"name": "A&W (Canada)", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/434046919812214784/sTmhuLO-_bigger.png", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q2818848"}, "addTags": {"amenity": "fast_food", "brand": "A&W", "brand:wikidata": "Q2818848", "brand:wikipedia": "en:A&W (Canada)", "cuisine": "burger", "name": "A&W"}, "removeTags": {"amenity": "fast_food", "brand": "A&W", "brand:wikidata": "Q2818848", "brand:wikipedia": "en:A&W (Canada)", "cuisine": "burger", "name": "A&W"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/A&W (USA)": {"name": "A&W (USA)", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/awrestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q277641"}, "addTags": {"amenity": "fast_food", "brand": "A&W", "brand:wikidata": "Q277641", "brand:wikipedia": "en:A&W Restaurants", "cuisine": "burger", "name": "A&W"}, "removeTags": {"amenity": "fast_food", "brand": "A&W", "brand:wikidata": "Q277641", "brand:wikipedia": "en:A&W Restaurants", "cuisine": "burger", "name": "A&W"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Arby's": {"name": "Arby's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/arbys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q630866"}, "addTags": {"amenity": "fast_food", "brand": "Arby's", "brand:wikidata": "Q630866", "brand:wikipedia": "en:Arby's", "cuisine": "sandwich", "name": "Arby's", "operator": "Inspire Brands", "operator:wikidata": "Q55074808", "operator:wikipedia": "en:Inspire Brands"}, "removeTags": {"amenity": "fast_food", "brand": "Arby's", "brand:wikidata": "Q630866", "brand:wikipedia": "en:Arby's", "cuisine": "sandwich", "name": "Arby's", "operator": "Inspire Brands", "operator:wikidata": "Q55074808", "operator:wikipedia": "en:Inspire Brands"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Auntie Anne's": {"name": "Auntie Anne's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/auntieannespretzels/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q4822010"}, "addTags": {"amenity": "fast_food", "brand": "Auntie Anne's", "brand:wikidata": "Q4822010", "brand:wikipedia": "en:Auntie Anne's", "cuisine": "pretzel", "name": "Auntie Anne's"}, "removeTags": {"amenity": "fast_food", "brand": "Auntie Anne's", "brand:wikidata": "Q4822010", "brand:wikipedia": "en:Auntie Anne's", "cuisine": "pretzel", "name": "Auntie Anne's"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Baja Fresh": {"name": "Baja Fresh", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/bajafresh/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q2880019"}, "addTags": {"amenity": "fast_food", "brand": "Baja Fresh", "brand:wikidata": "Q2880019", "brand:wikipedia": "en:Baja Fresh", "cuisine": "mexican", "name": "Baja Fresh"}, "removeTags": {"amenity": "fast_food", "brand": "Baja Fresh", "brand:wikidata": "Q2880019", "brand:wikipedia": "en:Baja Fresh", "cuisine": "mexican", "name": "Baja Fresh"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Bembos": {"name": "Bembos", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/bembos/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q466971"}, "addTags": {"amenity": "fast_food", "brand": "Bembos", "brand:wikidata": "Q466971", "brand:wikipedia": "en:Bembos", "cuisine": "burger", "name": "Bembos"}, "removeTags": {"amenity": "fast_food", "brand": "Bembos", "brand:wikidata": "Q466971", "brand:wikipedia": "en:Bembos", "cuisine": "burger", "name": "Bembos"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["pe"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Bob's": {"name": "Bob's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/bobsbrasil/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1392113"}, "addTags": {"amenity": "fast_food", "brand": "Bob's", "brand:wikidata": "Q1392113", "brand:wikipedia": "en:Bob's", "cuisine": "burger", "name": "Bob's"}, "removeTags": {"amenity": "fast_food", "brand": "Bob's", "brand:wikidata": "Q1392113", "brand:wikipedia": "en:Bob's", "cuisine": "burger", "name": "Bob's"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ao", "br", "cl", "pt"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Bojangles'": {"name": "Bojangles'", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/Bojangles1977/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q891163"}, "addTags": {"amenity": "fast_food", "brand": "Bojangles'", "brand:wikidata": "Q891163", "brand:wikipedia": "en:Bojangles' Famous Chicken 'n Biscuits", "cuisine": "chicken", "name": "Bojangles'", "official_name": "Bojangles' Famous Chicken 'n Biscuits"}, "removeTags": {"amenity": "fast_food", "brand": "Bojangles'", "brand:wikidata": "Q891163", "brand:wikipedia": "en:Bojangles' Famous Chicken 'n Biscuits", "cuisine": "chicken", "name": "Bojangles'", "official_name": "Bojangles' Famous Chicken 'n Biscuits"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Booster Juice": {"name": "Booster Juice", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/boosterjuice/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q4943796"}, "addTags": {"amenity": "fast_food", "brand": "Booster Juice", "brand:wikidata": "Q4943796", "brand:wikipedia": "en:Booster Juice", "cuisine": "juice", "name": "Booster Juice"}, "removeTags": {"amenity": "fast_food", "brand": "Booster Juice", "brand:wikidata": "Q4943796", "brand:wikipedia": "en:Booster Juice", "cuisine": "juice", "name": "Booster Juice"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Boston Market": {"name": "Boston Market", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/BostonMarket/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q603617"}, "addTags": {"amenity": "fast_food", "brand": "Boston Market", "brand:wikidata": "Q603617", "brand:wikipedia": "en:Boston Market", "cuisine": "american", "name": "Boston Market"}, "removeTags": {"amenity": "fast_food", "brand": "Boston Market", "brand:wikidata": "Q603617", "brand:wikipedia": "en:Boston Market", "cuisine": "american", "name": "Boston Market"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Braum's": {"name": "Braum's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/BraumsIceCreamandDairyStores/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q4958263"}, "addTags": {"amenity": "fast_food", "brand": "Braum's", "brand:wikidata": "Q4958263", "brand:wikipedia": "en:Braum's", "cuisine": "ice_cream", "name": "Braum's", "shop": "dairy"}, "removeTags": {"amenity": "fast_food", "brand": "Braum's", "brand:wikidata": "Q4958263", "brand:wikipedia": "en:Braum's", "cuisine": "ice_cream", "name": "Braum's", "shop": "dairy"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Burger King": {"name": "Burger King", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/burgerking/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q177054"}, "addTags": {"amenity": "fast_food", "brand": "Burger King", "brand:wikidata": "Q177054", "brand:wikipedia": "en:Burger King", "cuisine": "burger", "name": "Burger King"}, "removeTags": {"amenity": "fast_food", "brand": "Burger King", "brand:wikidata": "Q177054", "brand:wikipedia": "en:Burger King", "cuisine": "burger", "name": "Burger King"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Burger Machine": {"name": "Burger Machine", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/burgermachineofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q4998549"}, "addTags": {"amenity": "fast_food", "brand": "Burger Machine", "brand:wikidata": "Q4998549", "brand:wikipedia": "en:Burger Machine", "cuisine": "burger", "name": "Burger Machine"}, "removeTags": {"amenity": "fast_food", "brand": "Burger Machine", "brand:wikidata": "Q4998549", "brand:wikipedia": "en:Burger Machine", "cuisine": "burger", "name": "Burger Machine"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/BurgerFi": {"name": "BurgerFi", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/BurgerFi/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q39045496"}, "addTags": {"amenity": "fast_food", "brand": "BurgerFi", "brand:wikidata": "Q39045496", "brand:wikipedia": "en:BurgerFi", "cuisine": "burger", "name": "BurgerFi"}, "removeTags": {"amenity": "fast_food", "brand": "BurgerFi", "brand:wikidata": "Q39045496", "brand:wikipedia": "en:BurgerFi", "cuisine": "burger", "name": "BurgerFi"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Captain D's": {"name": "Captain D's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/CaptainDs/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5036616"}, "addTags": {"amenity": "fast_food", "brand": "Captain D's", "brand:wikidata": "Q5036616", "brand:wikipedia": "en:Captain D's", "cuisine": "seafood", "name": "Captain D's"}, "removeTags": {"amenity": "fast_food", "brand": "Captain D's", "brand:wikidata": "Q5036616", "brand:wikipedia": "en:Captain D's", "cuisine": "seafood", "name": "Captain D's"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Carl's Jr.": {"name": "Carl's Jr.", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/carlsjr/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1043486"}, "addTags": {"amenity": "fast_food", "brand": "Carl's Jr.", "brand:wikidata": "Q1043486", "brand:wikipedia": "en:Carl's Jr.", "cuisine": "burger", "name": "Carl's Jr."}, "removeTags": {"amenity": "fast_food", "brand": "Carl's Jr.", "brand:wikidata": "Q1043486", "brand:wikipedia": "en:Carl's Jr.", "cuisine": "burger", "name": "Carl's Jr."}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Checkers": {"name": "Checkers", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/checkersrallys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q3419341"}, "addTags": {"amenity": "fast_food", "brand": "Checkers", "brand:wikidata": "Q3419341", "brand:wikipedia": "en:Checkers and Rally's", "cuisine": "burger", "name": "Checkers"}, "removeTags": {"amenity": "fast_food", "brand": "Checkers", "brand:wikidata": "Q3419341", "brand:wikipedia": "en:Checkers and Rally's", "cuisine": "burger", "name": "Checkers"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Chick-fil-A": {"name": "Chick-fil-A", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/ChickfilA/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q491516"}, "addTags": {"amenity": "fast_food", "brand": "Chick-fil-A", "brand:wikidata": "Q491516", "brand:wikipedia": "en:Chick-fil-A", "cuisine": "chicken", "name": "Chick-fil-A"}, "removeTags": {"amenity": "fast_food", "brand": "Chick-fil-A", "brand:wikidata": "Q491516", "brand:wikipedia": "en:Chick-fil-A", "cuisine": "chicken", "name": "Chick-fil-A"}, "reference": {"key": "cuisine", "value": "chicken"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Chicken Express": {"name": "Chicken Express", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/chickenexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q5096235"}, "addTags": {"amenity": "fast_food", "brand": "Chicken Express", "brand:wikidata": "Q5096235", "brand:wikipedia": "en:Chicken Express", "cuisine": "chicken", "name": "Chicken Express"}, "removeTags": {"amenity": "fast_food", "brand": "Chicken Express", "brand:wikidata": "Q5096235", "brand:wikipedia": "en:Chicken Express", "cuisine": "chicken", "name": "Chicken Express"}, "reference": {"key": "cuisine", "value": "chicken"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/China Wok": {"name": "China Wok", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ChinaWokPeru/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5766542"}, "addTags": {"amenity": "fast_food", "brand": "China Wok", "brand:wikidata": "Q5766542", "brand:wikipedia": "es:China Wok", "cuisine": "chinese", "name": "China Wok"}, "removeTags": {"amenity": "fast_food", "brand": "China Wok", "brand:wikidata": "Q5766542", "brand:wikipedia": "es:China Wok", "cuisine": "chinese", "name": "China Wok"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Chipotle": {"name": "Chipotle", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/chipotle/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q465751"}, "addTags": {"amenity": "fast_food", "brand": "Chipotle", "brand:wikidata": "Q465751", "brand:wikipedia": "en:Chipotle Mexican Grill", "cuisine": "mexican", "name": "Chipotle", "official_name": "Chipotle Mexican Grill"}, "removeTags": {"amenity": "fast_food", "brand": "Chipotle", "brand:wikidata": "Q465751", "brand:wikipedia": "en:Chipotle Mexican Grill", "cuisine": "mexican", "name": "Chipotle", "official_name": "Chipotle Mexican Grill"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Chowking": {"name": "Chowking", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/chowkingph/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q1076816"}, "addTags": {"amenity": "fast_food", "brand": "Chowking", "brand:wikidata": "Q1076816", "brand:wikipedia": "en:Chowking", "cuisine": "asian", "name": "Chowking"}, "removeTags": {"amenity": "fast_food", "brand": "Chowking", "brand:wikidata": "Q1076816", "brand:wikipedia": "en:Chowking", "cuisine": "asian", "name": "Chowking"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Church's Chicken": {"name": "Church's Chicken", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/churchschicken/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q1089932"}, "addTags": {"amenity": "fast_food", "brand": "Church's Chicken", "brand:wikidata": "Q1089932", "brand:wikipedia": "en:Church's Chicken", "cuisine": "chicken", "name": "Church's Chicken"}, "removeTags": {"amenity": "fast_food", "brand": "Church's Chicken", "brand:wikidata": "Q1089932", "brand:wikipedia": "en:Church's Chicken", "cuisine": "chicken", "name": "Church's Chicken"}, "reference": {"key": "cuisine", "value": "chicken"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Cinnabon": {"name": "Cinnabon", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Cinnabon/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q1092539"}, "addTags": {"amenity": "fast_food", "brand": "Cinnabon", "brand:website": "https://www.cinnabon.com/", "brand:wikidata": "Q1092539", "brand:wikipedia": "en:Cinnabon", "cuisine": "dessert", "name": "Cinnabon"}, "removeTags": {"amenity": "fast_food", "brand": "Cinnabon", "brand:website": "https://www.cinnabon.com/", "brand:wikidata": "Q1092539", "brand:wikipedia": "en:Cinnabon", "cuisine": "dessert", "name": "Cinnabon"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/CoCo壱番屋": {"name": "CoCo壱番屋", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/cocoichicurry/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5986105"}, "addTags": {"amenity": "fast_food", "brand": "CoCo壱番屋", "brand:en": "Ichibanya", "brand:wikidata": "Q5986105", "brand:wikipedia": "en:Ichibanya", "cuisine": "japanese", "name": "CoCo壱番屋", "name:en": "Ichibanya"}, "removeTags": {"amenity": "fast_food", "brand": "CoCo壱番屋", "brand:en": "Ichibanya", "brand:wikidata": "Q5986105", "brand:wikipedia": "en:Ichibanya", "cuisine": "japanese", "name": "CoCo壱番屋", "name:en": "Ichibanya"}, "countryCodes": ["cn", "jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Cook Out": {"name": "Cook Out", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/CookOut/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5166992"}, "addTags": {"amenity": "fast_food", "brand": "Cook Out", "brand:wikidata": "Q5166992", "brand:wikipedia": "en:Cook Out (restaurant)", "cuisine": "american", "name": "Cook Out"}, "removeTags": {"amenity": "fast_food", "brand": "Cook Out", "brand:wikidata": "Q5166992", "brand:wikipedia": "en:Cook Out (restaurant)", "cuisine": "american", "name": "Cook Out"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Culver's": {"name": "Culver's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/culvers/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1143589"}, "addTags": {"amenity": "fast_food", "brand": "Culver's", "brand:wikidata": "Q1143589", "brand:wikipedia": "en:Culver's", "cuisine": "burger", "name": "Culver's"}, "removeTags": {"amenity": "fast_food", "brand": "Culver's", "brand:wikidata": "Q1143589", "brand:wikipedia": "en:Culver's", "cuisine": "burger", "name": "Culver's"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/DQ Grill & Chill": {"name": "DQ Grill & Chill", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/dairyqueen/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1141226"}, "addTags": {"amenity": "fast_food", "brand": "DQ Grill & Chill", "brand:wikidata": "Q1141226", "brand:wikipedia": "en:Dairy Queen", "cuisine": "burger", "name": "DQ Grill & Chill", "operator": "Dairy Queen"}, "removeTags": {"amenity": "fast_food", "brand": "DQ Grill & Chill", "brand:wikidata": "Q1141226", "brand:wikipedia": "en:Dairy Queen", "cuisine": "burger", "name": "DQ Grill & Chill", "operator": "Dairy Queen"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Dairy Queen": {"name": "Dairy Queen", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/dairyqueen/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q1141226"}, "addTags": {"amenity": "fast_food", "brand": "Dairy Queen", "brand:wikidata": "Q1141226", "brand:wikipedia": "en:Dairy Queen", "cuisine": "ice_cream", "name": "Dairy Queen"}, "removeTags": {"amenity": "fast_food", "brand": "Dairy Queen", "brand:wikidata": "Q1141226", "brand:wikipedia": "en:Dairy Queen", "cuisine": "ice_cream", "name": "Dairy Queen"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Daylight Donuts": {"name": "Daylight Donuts", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/DaylightDonutFlourCo/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q48970508"}, "addTags": {"amenity": "fast_food", "brand": "Daylight Donuts", "brand:wikidata": "Q48970508", "brand:wikipedia": "en:Daylight Donuts", "cuisine": "donut", "name": "Daylight Donuts"}, "removeTags": {"amenity": "fast_food", "brand": "Daylight Donuts", "brand:wikidata": "Q48970508", "brand:wikipedia": "en:Daylight Donuts", "cuisine": "donut", "name": "Daylight Donuts"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Del Taco": {"name": "Del Taco", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/deltaco/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q1183818"}, "addTags": {"amenity": "fast_food", "brand": "Del Taco", "brand:wikidata": "Q1183818", "brand:wikipedia": "en:Del Taco", "cuisine": "mexican", "name": "Del Taco"}, "removeTags": {"amenity": "fast_food", "brand": "Del Taco", "brand:wikidata": "Q1183818", "brand:wikipedia": "en:Del Taco", "cuisine": "mexican", "name": "Del Taco"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Dig Inn": {"name": "Dig Inn", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/diginnmarket/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q28226241"}, "addTags": {"amenity": "fast_food", "brand": "Dig Inn", "brand:wikidata": "Q28226241", "brand:wikipedia": "en:Dig Inn", "cuisine": "regional", "name": "Dig Inn"}, "removeTags": {"amenity": "fast_food", "brand": "Dig Inn", "brand:wikidata": "Q28226241", "brand:wikipedia": "en:Dig Inn", "cuisine": "regional", "name": "Dig Inn"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Domino's Pizza": {"name": "Domino's Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/Dominos/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q839466"}, "addTags": {"amenity": "fast_food", "brand": "Domino's Pizza", "brand:wikidata": "Q839466", "brand:wikipedia": "en:Domino's Pizza", "cuisine": "pizza", "name": "Domino's Pizza"}, "removeTags": {"amenity": "fast_food", "brand": "Domino's Pizza", "brand:wikidata": "Q839466", "brand:wikipedia": "en:Domino's Pizza", "cuisine": "pizza", "name": "Domino's Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Dunkin' Donuts": {"name": "Dunkin' Donuts", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/DunkinUS/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q847743"}, "addTags": {"amenity": "fast_food", "brand": "Dunkin' Donuts", "brand:wikidata": "Q847743", "brand:wikipedia": "en:Dunkin' Donuts", "cuisine": "donut", "name": "Dunkin' Donuts"}, "removeTags": {"amenity": "fast_food", "brand": "Dunkin' Donuts", "brand:wikidata": "Q847743", "brand:wikipedia": "en:Dunkin' Donuts", "cuisine": "donut", "name": "Dunkin' Donuts"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Einstein Bros. Bagels": {"name": "Einstein Bros. Bagels", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/einsteinbros/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5349788"}, "addTags": {"amenity": "fast_food", "brand": "Einstein Bros. Bagels", "brand:wikidata": "Q5349788", "brand:wikipedia": "en:Einstein Bros. Bagels", "cuisine": "bagel", "name": "Einstein Bros. Bagels"}, "removeTags": {"amenity": "fast_food", "brand": "Einstein Bros. Bagels", "brand:wikidata": "Q5349788", "brand:wikipedia": "en:Einstein Bros. Bagels", "cuisine": "bagel", "name": "Einstein Bros. Bagels"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/El Pollo Loco": {"name": "El Pollo Loco", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/ElPolloLoco/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q2353849"}, "addTags": {"amenity": "fast_food", "brand": "El Pollo Loco", "brand:wikidata": "Q2353849", "brand:wikipedia": "en:El Pollo Loco", "cuisine": "mexican", "name": "El Pollo Loco"}, "removeTags": {"amenity": "fast_food", "brand": "El Pollo Loco", "brand:wikidata": "Q2353849", "brand:wikipedia": "en:El Pollo Loco", "cuisine": "mexican", "name": "El Pollo Loco"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Extreme Pita": {"name": "Extreme Pita", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/TheExtremePita/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5422367"}, "addTags": {"amenity": "fast_food", "brand": "Extreme Pita", "brand:wikidata": "Q5422367", "brand:wikipedia": "en:Extreme Pita", "cuisine": "pita", "name": "Extreme Pita"}, "removeTags": {"amenity": "fast_food", "brand": "Extreme Pita", "brand:wikidata": "Q5422367", "brand:wikipedia": "en:Extreme Pita", "cuisine": "pita", "name": "Extreme Pita"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Fazoli's": {"name": "Fazoli's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Fazolis/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q1399195"}, "addTags": {"amenity": "fast_food", "brand": "Fazoli's", "brand:wikidata": "Q1399195", "brand:wikipedia": "en:Fazoli's", "cuisine": "italian", "name": "Fazoli's"}, "removeTags": {"amenity": "fast_food", "brand": "Fazoli's", "brand:wikidata": "Q1399195", "brand:wikipedia": "en:Fazoli's", "cuisine": "italian", "name": "Fazoli's"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Firehouse Subs": {"name": "Firehouse Subs", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/firehousesubs/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q5451873"}, "addTags": {"amenity": "fast_food", "brand": "Firehouse Subs", "brand:wikidata": "Q5451873", "brand:wikipedia": "en:Firehouse Subs", "cuisine": "sandwich", "name": "Firehouse Subs"}, "removeTags": {"amenity": "fast_food", "brand": "Firehouse Subs", "brand:wikidata": "Q5451873", "brand:wikipedia": "en:Firehouse Subs", "cuisine": "sandwich", "name": "Firehouse Subs"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Five Guys": {"name": "Five Guys", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/fiveguys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1131810"}, "addTags": {"amenity": "fast_food", "brand": "Five Guys", "brand:wikidata": "Q1131810", "brand:wikipedia": "en:Five Guys", "cuisine": "burger", "name": "Five Guys", "official_name": "Five Guys Burgers and Fries"}, "removeTags": {"amenity": "fast_food", "brand": "Five Guys", "brand:wikidata": "Q1131810", "brand:wikipedia": "en:Five Guys", "cuisine": "burger", "name": "Five Guys", "official_name": "Five Guys Burgers and Fries"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Freddy's": {"name": "Freddy's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/FreddysUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q5496837"}, "addTags": {"amenity": "fast_food", "brand": "Freddy's", "brand:wikidata": "Q5496837", "brand:wikipedia": "en:Freddy's Frozen Custard & Steakburgers", "cuisine": "burger", "name": "Freddy's"}, "removeTags": {"amenity": "fast_food", "brand": "Freddy's", "brand:wikidata": "Q5496837", "brand:wikipedia": "en:Freddy's Frozen Custard & Steakburgers", "cuisine": "burger", "name": "Freddy's"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Freebirds": {"name": "Freebirds", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/freebirdsworldburrito/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q5500367"}, "addTags": {"amenity": "fast_food", "brand": "Freebirds", "brand:wikidata": "Q5500367", "brand:wikipedia": "en:Freebirds World Burrito", "cuisine": "mexican", "name": "Freebirds"}, "removeTags": {"amenity": "fast_food", "brand": "Freebirds", "brand:wikidata": "Q5500367", "brand:wikipedia": "en:Freebirds World Burrito", "cuisine": "mexican", "name": "Freebirds"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Gabriel Pizza": {"name": "Gabriel Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/gabrielpizza/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q5515791"}, "addTags": {"amenity": "fast_food", "brand": "Gabriel Pizza", "brand:wikidata": "Q5515791", "brand:wikipedia": "en:Gabriel Pizza", "cuisine": "pizza", "name": "Gabriel Pizza"}, "removeTags": {"amenity": "fast_food", "brand": "Gabriel Pizza", "brand:wikidata": "Q5515791", "brand:wikipedia": "en:Gabriel Pizza", "cuisine": "pizza", "name": "Gabriel Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Golden Krust Caribbean Bakery & Grill": {"name": "Golden Krust Caribbean Bakery & Grill", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/GoldenKrust/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5579615"}, "addTags": {"amenity": "fast_food", "brand": "Golden Krust Caribbean Bakery & Grill", "brand:wikidata": "Q5579615", "brand:wikipedia": "en:Golden Krust Caribbean Bakery & Grill", "cuisine": "caribbean", "name": "Golden Krust"}, "removeTags": {"amenity": "fast_food", "brand": "Golden Krust Caribbean Bakery & Grill", "brand:wikidata": "Q5579615", "brand:wikipedia": "en:Golden Krust Caribbean Bakery & Grill", "cuisine": "caribbean", "name": "Golden Krust"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Greenwich": {"name": "Greenwich", "icon": "maki-restaurant-pizza", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q2691308"}, "addTags": {"amenity": "fast_food", "brand": "Greenwich", "brand:wikidata": "Q2691308", "brand:wikipedia": "en:Greenwich Pizza", "cuisine": "pizza", "name": "Greenwich"}, "removeTags": {"amenity": "fast_food", "brand": "Greenwich", "brand:wikidata": "Q2691308", "brand:wikipedia": "en:Greenwich Pizza", "cuisine": "pizza", "name": "Greenwich"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Habib's": {"name": "Habib's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/habibsoficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q2504930"}, "addTags": {"amenity": "fast_food", "brand": "Habib's", "brand:wikidata": "Q2504930", "brand:wikipedia": "en:Habib's", "cuisine": "middle_eastern", "name": "Habib's"}, "removeTags": {"amenity": "fast_food", "brand": "Habib's", "brand:wikidata": "Q2504930", "brand:wikipedia": "en:Habib's", "cuisine": "middle_eastern", "name": "Habib's"}, "countryCodes": ["br", "mx"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Hallo Pizza": {"name": "Hallo Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/Hallo.Pizza.Deutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q1571798"}, "addTags": {"amenity": "fast_food", "brand": "Hallo Pizza", "brand:wikidata": "Q1571798", "brand:wikipedia": "de:Hallo Pizza", "cuisine": "pizza", "name": "Hallo Pizza"}, "removeTags": {"amenity": "fast_food", "brand": "Hallo Pizza", "brand:wikidata": "Q1571798", "brand:wikipedia": "de:Hallo Pizza", "cuisine": "pizza", "name": "Hallo Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Hardee's": {"name": "Hardee's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/hardees/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1585088"}, "addTags": {"amenity": "fast_food", "brand": "Hardee's", "brand:wikidata": "Q1585088", "brand:wikipedia": "en:Hardee's", "cuisine": "burger", "name": "Hardee's"}, "removeTags": {"amenity": "fast_food", "brand": "Hardee's", "brand:wikidata": "Q1585088", "brand:wikipedia": "en:Hardee's", "cuisine": "burger", "name": "Hardee's"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Harvey's": {"name": "Harvey's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/HarveysCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1466184"}, "addTags": {"amenity": "fast_food", "brand": "Harvey's", "brand:wikidata": "Q1466184", "brand:wikipedia": "en:Harvey's", "cuisine": "burger", "name": "Harvey's"}, "removeTags": {"amenity": "fast_food", "brand": "Harvey's", "brand:wikidata": "Q1466184", "brand:wikipedia": "en:Harvey's", "cuisine": "burger", "name": "Harvey's"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Hesburger": {"name": "Hesburger", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/hesburger/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1276832"}, "addTags": {"amenity": "fast_food", "brand": "Hesburger", "brand:wikidata": "Q1276832", "brand:wikipedia": "en:Hesburger", "cuisine": "burger", "name": "Hesburger"}, "removeTags": {"amenity": "fast_food", "brand": "Hesburger", "brand:wikidata": "Q1276832", "brand:wikipedia": "en:Hesburger", "cuisine": "burger", "name": "Hesburger"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Hot Dog on a Stick": {"name": "Hot Dog on a Stick", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/HotDogonaStick/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5909922"}, "addTags": {"amenity": "fast_food", "brand": "Hot Dog on a Stick", "brand:wikidata": "Q5909922", "brand:wikipedia": "en:Hot Dog on a Stick", "cuisine": "hot_dog", "name": "Hot Dog on a Stick"}, "removeTags": {"amenity": "fast_food", "brand": "Hot Dog on a Stick", "brand:wikidata": "Q5909922", "brand:wikipedia": "en:Hot Dog on a Stick", "cuisine": "hot_dog", "name": "Hot Dog on a Stick"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Hungry Jacks": {"name": "Hungry Jacks", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/HungryJacks/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q3036373"}, "addTags": {"amenity": "fast_food", "brand": "Hungry Jacks", "brand:wikidata": "Q3036373", "brand:wikipedia": "en:Hungry Jack's", "cuisine": "burger", "name": "Hungry Jacks"}, "removeTags": {"amenity": "fast_food", "brand": "Hungry Jacks", "brand:wikidata": "Q3036373", "brand:wikipedia": "en:Hungry Jack's", "cuisine": "burger", "name": "Hungry Jacks"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/In-N-Out Burger": {"name": "In-N-Out Burger", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/innout/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1205312"}, "addTags": {"amenity": "fast_food", "brand": "In-N-Out Burger", "brand:wikidata": "Q1205312", "brand:wikipedia": "en:In-N-Out Burger", "cuisine": "burger", "name": "In-N-Out Burger"}, "removeTags": {"amenity": "fast_food", "brand": "In-N-Out Burger", "brand:wikidata": "Q1205312", "brand:wikipedia": "en:In-N-Out Burger", "cuisine": "burger", "name": "In-N-Out Burger"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Jack in the Box": {"name": "Jack in the Box", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/jackinthebox/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1538507"}, "addTags": {"amenity": "fast_food", "brand": "Jack in the Box", "brand:wikidata": "Q1538507", "brand:wikipedia": "en:Jack in the Box", "cuisine": "burger", "name": "Jack in the Box"}, "removeTags": {"amenity": "fast_food", "brand": "Jack in the Box", "brand:wikidata": "Q1538507", "brand:wikipedia": "en:Jack in the Box", "cuisine": "burger", "name": "Jack in the Box"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Jamba Juice": {"name": "Jamba Juice", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/jambajuice/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q3088784"}, "addTags": {"amenity": "fast_food", "brand": "Jamba Juice", "brand:wikidata": "Q3088784", "brand:wikipedia": "en:Jamba Juice", "cuisine": "juice", "name": "Jamba Juice"}, "removeTags": {"amenity": "fast_food", "brand": "Jamba Juice", "brand:wikidata": "Q3088784", "brand:wikipedia": "en:Jamba Juice", "cuisine": "juice", "name": "Jamba Juice"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Jersey Mike's Subs": {"name": "Jersey Mike's Subs", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/jerseymikes/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q6184897"}, "addTags": {"amenity": "fast_food", "brand": "Jersey Mike's Subs", "brand:wikidata": "Q6184897", "brand:wikipedia": "en:Jersey Mike's Subs", "cuisine": "sandwich", "name": "Jersey Mike's Subs"}, "removeTags": {"amenity": "fast_food", "brand": "Jersey Mike's Subs", "brand:wikidata": "Q6184897", "brand:wikipedia": "en:Jersey Mike's Subs", "cuisine": "sandwich", "name": "Jersey Mike's Subs"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Jimmy John's": {"name": "Jimmy John's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/jimmyjohns/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q1689380"}, "addTags": {"amenity": "fast_food", "brand": "Jimmy John's", "brand:wikidata": "Q1689380", "brand:wikipedia": "en:Jimmy John's", "cuisine": "sandwich", "name": "Jimmy John's"}, "removeTags": {"amenity": "fast_food", "brand": "Jimmy John's", "brand:wikidata": "Q1689380", "brand:wikipedia": "en:Jimmy John's", "cuisine": "sandwich", "name": "Jimmy John's"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Jollibee": {"name": "Jollibee", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/JollibeePhilippines/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q37614"}, "addTags": {"amenity": "fast_food", "brand": "Jollibee", "brand:wikidata": "Q37614", "brand:wikipedia": "en:Jollibee", "cuisine": "burger", "name": "Jollibee"}, "removeTags": {"amenity": "fast_food", "brand": "Jollibee", "brand:wikidata": "Q37614", "brand:wikipedia": "en:Jollibee", "cuisine": "burger", "name": "Jollibee"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Just Salad": {"name": "Just Salad", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/justsalad/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q23091823"}, "addTags": {"amenity": "fast_food", "brand": "Just Salad", "brand:wikidata": "Q23091823", "brand:wikipedia": "en:Just Salad", "name": "Just Salad"}, "removeTags": {"amenity": "fast_food", "brand": "Just Salad", "brand:wikidata": "Q23091823", "brand:wikipedia": "en:Just Salad", "name": "Just Salad"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/KFC": {"name": "KFC", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/KFC/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q524757"}, "addTags": {"amenity": "fast_food", "brand": "KFC", "brand:wikidata": "Q524757", "brand:wikipedia": "en:KFC", "cuisine": "chicken", "name": "KFC"}, "removeTags": {"amenity": "fast_food", "brand": "KFC", "brand:wikidata": "Q524757", "brand:wikipedia": "en:KFC", "cuisine": "chicken", "name": "KFC"}, "reference": {"key": "cuisine", "value": "chicken"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Kochlöffel": {"name": "Kochlöffel", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Kochloeffel.Deutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q315539"}, "addTags": {"amenity": "fast_food", "brand": "Kochlöffel", "brand:wikidata": "Q315539", "brand:wikipedia": "en:Kochlöffel", "cuisine": "burger", "name": "Kochlöffel"}, "removeTags": {"amenity": "fast_food", "brand": "Kochlöffel", "brand:wikidata": "Q315539", "brand:wikipedia": "en:Kochlöffel", "cuisine": "burger", "name": "Kochlöffel"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["de", "pl", "tr"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Kotipizza": {"name": "Kotipizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/kotipizza/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q1628625"}, "addTags": {"amenity": "fast_food", "brand": "Kotipizza", "brand:wikidata": "Q1628625", "brand:wikipedia": "en:Kotipizza", "cuisine": "pizza", "name": "Kotipizza"}, "removeTags": {"amenity": "fast_food", "brand": "Kotipizza", "brand:wikidata": "Q1628625", "brand:wikipedia": "en:Kotipizza", "cuisine": "pizza", "name": "Kotipizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Krispy Kreme": {"name": "Krispy Kreme", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/KrispyKreme/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q1192805"}, "addTags": {"amenity": "fast_food", "brand": "Krispy Kreme", "brand:wikidata": "Q1192805", "brand:wikipedia": "en:Krispy Kreme", "cuisine": "donut", "name": "Krispy Kreme"}, "removeTags": {"amenity": "fast_food", "brand": "Krispy Kreme", "brand:wikidata": "Q1192805", "brand:wikipedia": "en:Krispy Kreme", "cuisine": "donut", "name": "Krispy Kreme"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Krystal": {"name": "Krystal", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Krystal/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q472195"}, "addTags": {"amenity": "fast_food", "brand": "Krystal", "brand:wikidata": "Q472195", "brand:wikipedia": "en:Krystal (restaurant)", "cuisine": "burger", "name": "Krystal"}, "removeTags": {"amenity": "fast_food", "brand": "Krystal", "brand:wikidata": "Q472195", "brand:wikipedia": "en:Krystal (restaurant)", "cuisine": "burger", "name": "Krystal"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Little Caesars": {"name": "Little Caesars", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/LittleCaesars/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q1393809"}, "addTags": {"amenity": "fast_food", "brand": "Little Caesars", "brand:wikidata": "Q1393809", "brand:wikipedia": "en:Little Caesars", "cuisine": "pizza", "name": "Little Caesars"}, "removeTags": {"amenity": "fast_food", "brand": "Little Caesars", "brand:wikidata": "Q1393809", "brand:wikipedia": "en:Little Caesars", "cuisine": "pizza", "name": "Little Caesars"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Long John Silver's": {"name": "Long John Silver's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/LongJohnSilvers/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q1535221"}, "addTags": {"amenity": "fast_food", "brand": "Long John Silver's", "brand:wikidata": "Q1535221", "brand:wikipedia": "en:Long John Silver's", "cuisine": "seafood", "name": "Long John Silver's"}, "removeTags": {"amenity": "fast_food", "brand": "Long John Silver's", "brand:wikidata": "Q1535221", "brand:wikipedia": "en:Long John Silver's", "cuisine": "seafood", "name": "Long John Silver's"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Lotteria": {"name": "Lotteria", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ilovelotteria/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q249525"}, "addTags": {"amenity": "fast_food", "brand": "Lotteria", "brand:wikidata": "Q249525", "brand:wikipedia": "en:Lotteria", "cuisine": "burger", "name": "Lotteria"}, "removeTags": {"amenity": "fast_food", "brand": "Lotteria", "brand:wikidata": "Q249525", "brand:wikipedia": "en:Lotteria", "cuisine": "burger", "name": "Lotteria"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Mang Inasal": {"name": "Mang Inasal", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/MangInasalPhilippines/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q6748573"}, "addTags": {"amenity": "fast_food", "brand": "Mang Inasal", "brand:wikidata": "Q6748573", "brand:wikipedia": "en:Mang Inasal", "cuisine": "barbecue", "name": "Mang Inasal"}, "removeTags": {"amenity": "fast_food", "brand": "Mang Inasal", "brand:wikidata": "Q6748573", "brand:wikipedia": "en:Mang Inasal", "cuisine": "barbecue", "name": "Mang Inasal"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Max": {"name": "Max", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/maxburgers/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1912172"}, "addTags": {"amenity": "fast_food", "brand": "Max", "brand:wikidata": "Q1912172", "brand:wikipedia": "en:Max Hamburgers", "cuisine": "burger", "name": "Max"}, "removeTags": {"amenity": "fast_food", "brand": "Max", "brand:wikidata": "Q1912172", "brand:wikipedia": "en:Max Hamburgers", "cuisine": "burger", "name": "Max"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/McDonald's": {"name": "McDonald's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q38076"}, "addTags": {"amenity": "fast_food", "brand": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "en:McDonald's", "cuisine": "burger", "name": "McDonald's"}, "removeTags": {"amenity": "fast_food", "brand": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "en:McDonald's", "cuisine": "burger", "name": "McDonald's"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Mighty Taco": {"name": "Mighty Taco", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/MyMightyTaco/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q6844210"}, "addTags": {"amenity": "fast_food", "brand": "Mighty Taco", "brand:wikidata": "Q6844210", "brand:wikipedia": "en:Mighty Taco", "cuisine": "mexican", "name": "Mighty Taco"}, "removeTags": {"amenity": "fast_food", "brand": "Mighty Taco", "brand:wikidata": "Q6844210", "brand:wikipedia": "en:Mighty Taco", "cuisine": "mexican", "name": "Mighty Taco"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Moe's Southwest Grill": {"name": "Moe's Southwest Grill", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/MoesSouthwestGrill/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q6889938"}, "addTags": {"amenity": "fast_food", "brand": "Moe's Southwest Grill", "brand:wikidata": "Q6889938", "brand:wikipedia": "en:Moe's Southwest Grill", "cuisine": "mexican", "name": "Moe's Southwest Grill"}, "removeTags": {"amenity": "fast_food", "brand": "Moe's Southwest Grill", "brand:wikidata": "Q6889938", "brand:wikipedia": "en:Moe's Southwest Grill", "cuisine": "mexican", "name": "Moe's Southwest Grill"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Mr. Sub": {"name": "Mr. Sub", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/mrsub/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q6929225"}, "addTags": {"amenity": "fast_food", "brand": "Mr. Sub", "brand:wikidata": "Q6929225", "brand:wikipedia": "en:Mr. Sub", "cuisine": "sandwich", "name": "Mr. Sub"}, "removeTags": {"amenity": "fast_food", "brand": "Mr. Sub", "brand:wikidata": "Q6929225", "brand:wikipedia": "en:Mr. Sub", "cuisine": "sandwich", "name": "Mr. Sub"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/New York Pizza": {"name": "New York Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/newyorkpizza.nl/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q2639128"}, "addTags": {"amenity": "fast_food", "brand": "New York Pizza", "brand:wikidata": "Q2639128", "brand:wikipedia": "nl:New York Pizza", "cuisine": "pizza", "name": "New York Pizza"}, "removeTags": {"amenity": "fast_food", "brand": "New York Pizza", "brand:wikidata": "Q2639128", "brand:wikipedia": "nl:New York Pizza", "cuisine": "pizza", "name": "New York Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Nordsee": {"name": "Nordsee", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/NORDSEEDeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q74866"}, "addTags": {"amenity": "fast_food", "brand": "Nordsee", "brand:wikidata": "Q74866", "brand:wikipedia": "en:Nordsee", "cuisine": "seafood", "name": "Nordsee"}, "removeTags": {"amenity": "fast_food", "brand": "Nordsee", "brand:wikidata": "Q74866", "brand:wikipedia": "en:Nordsee", "cuisine": "seafood", "name": "Nordsee"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Num Pang": {"name": "Num Pang", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/NumPangKitchen/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q62079702"}, "addTags": {"amenity": "fast_food", "brand": "Num Pang", "brand:wikidata": "Q62079702", "brand:wikipedia": "en:Num Pang", "cuisine": "cambodian, sandwich", "name": "Num Pang"}, "removeTags": {"amenity": "fast_food", "brand": "Num Pang", "brand:wikidata": "Q62079702", "brand:wikipedia": "en:Num Pang", "cuisine": "cambodian, sandwich", "name": "Num Pang"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/O'Tacos": {"name": "O'Tacos", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/Otacos.France/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q28494040"}, "addTags": {"amenity": "fast_food", "brand": "O'Tacos", "brand:wikidata": "Q28494040", "brand:wikipedia": "en:O'Tacos", "cuisine": "mexican", "name": "O'Tacos"}, "removeTags": {"amenity": "fast_food", "brand": "O'Tacos", "brand:wikidata": "Q28494040", "brand:wikipedia": "en:O'Tacos", "cuisine": "mexican", "name": "O'Tacos"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Pal's": {"name": "Pal's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Palsweb/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q7126094"}, "addTags": {"amenity": "fast_food", "brand": "Pal's", "brand:wikidata": "Q7126094", "brand:wikipedia": "en:Pal's", "cuisine": "burger", "name": "Pal's"}, "removeTags": {"amenity": "fast_food", "brand": "Pal's", "brand:wikidata": "Q7126094", "brand:wikipedia": "en:Pal's", "cuisine": "burger", "name": "Pal's"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Panago": {"name": "Panago", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/panago/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q17111672"}, "addTags": {"amenity": "fast_food", "brand": "Panago", "brand:wikidata": "Q17111672", "brand:wikipedia": "en:Panago", "cuisine": "pizza", "name": "Panago"}, "removeTags": {"amenity": "fast_food", "brand": "Panago", "brand:wikidata": "Q17111672", "brand:wikipedia": "en:Panago", "cuisine": "pizza", "name": "Panago"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Panda Express": {"name": "Panda Express", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/PandaExpress/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q1358690"}, "addTags": {"amenity": "fast_food", "brand": "Panda Express", "brand:wikidata": "Q1358690", "brand:wikipedia": "en:Panda Express", "cuisine": "chinese", "name": "Panda Express"}, "removeTags": {"amenity": "fast_food", "brand": "Panda Express", "brand:wikidata": "Q1358690", "brand:wikipedia": "en:Panda Express", "cuisine": "chinese", "name": "Panda Express"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Panera Bread": {"name": "Panera Bread", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/panerabread/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q7130852"}, "addTags": {"amenity": "fast_food", "brand": "Panera Bread", "brand:wikidata": "Q7130852", "brand:wikipedia": "en:Panera Bread", "cuisine": "sandwich", "name": "Panera Bread"}, "removeTags": {"amenity": "fast_food", "brand": "Panera Bread", "brand:wikidata": "Q7130852", "brand:wikipedia": "en:Panera Bread", "cuisine": "sandwich", "name": "Panera Bread"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Papa John's": {"name": "Papa John's", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/papajohns/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q2759586"}, "addTags": {"amenity": "fast_food", "brand": "Papa John's", "brand:wikidata": "Q2759586", "brand:wikipedia": "en:Papa John's Pizza", "cuisine": "pizza", "name": "Papa John's"}, "removeTags": {"amenity": "fast_food", "brand": "Papa John's", "brand:wikidata": "Q2759586", "brand:wikipedia": "en:Papa John's Pizza", "cuisine": "pizza", "name": "Papa John's"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Papa Murphy's": {"name": "Papa Murphy's", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/papamurphyspizza/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q7132349"}, "addTags": {"amenity": "fast_food", "brand": "Papa Murphy's", "brand:wikidata": "Q7132349", "brand:wikipedia": "en:Papa Murphy's", "cuisine": "pizza", "name": "Papa Murphy's", "official_name": "Papa Murphy's Take 'N' Bake Pizza"}, "removeTags": {"amenity": "fast_food", "brand": "Papa Murphy's", "brand:wikidata": "Q7132349", "brand:wikipedia": "en:Papa Murphy's", "cuisine": "pizza", "name": "Papa Murphy's", "official_name": "Papa Murphy's Take 'N' Bake Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Philly Pretzel Factory": {"name": "Philly Pretzel Factory", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/PhillyPretzel/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q60097339"}, "addTags": {"amenity": "fast_food", "brand": "Philly Pretzel Factory", "brand:wikidata": "Q60097339", "cuisine": "pretzel", "name": "Philly Pretzel Factory"}, "removeTags": {"amenity": "fast_food", "brand": "Philly Pretzel Factory", "brand:wikidata": "Q60097339", "cuisine": "pretzel", "name": "Philly Pretzel Factory"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Pita Pit": {"name": "Pita Pit", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/pitapitusa/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q7757289"}, "addTags": {"amenity": "fast_food", "brand": "Pita Pit", "brand:wikidata": "Q7757289", "brand:wikipedia": "en:Pita Pit", "cuisine": "pita", "name": "Pita Pit"}, "removeTags": {"amenity": "fast_food", "brand": "Pita Pit", "brand:wikidata": "Q7757289", "brand:wikipedia": "en:Pita Pit", "cuisine": "pita", "name": "Pita Pit"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Pizza Hut Delivery": {"name": "Pizza Hut Delivery", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pizzahutus/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q191615"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Hut", "brand:wikidata": "Q191615", "brand:wikipedia": "en:Pizza Hut", "cuisine": "pizza", "name": "Pizza Hut Delivery"}, "removeTags": {"amenity": "fast_food", "brand": "Pizza Hut", "brand:wikidata": "Q191615", "brand:wikipedia": "en:Pizza Hut", "cuisine": "pizza", "name": "Pizza Hut Delivery"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Pizza Hut Express": {"name": "Pizza Hut Express", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pizzahutus/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q191615"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Hut", "brand:wikidata": "Q191615", "brand:wikipedia": "en:Pizza Hut", "cuisine": "pizza", "name": "Pizza Hut Express"}, "removeTags": {"amenity": "fast_food", "brand": "Pizza Hut", "brand:wikidata": "Q191615", "brand:wikipedia": "en:Pizza Hut", "cuisine": "pizza", "name": "Pizza Hut Express"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Pizza Nova": {"name": "Pizza Nova", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/PizzaNova/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q7199971"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Nova", "brand:wikidata": "Q7199971", "brand:wikipedia": "en:Pizza Nova", "cuisine": "pizza", "name": "Pizza Nova"}, "removeTags": {"amenity": "fast_food", "brand": "Pizza Nova", "brand:wikidata": "Q7199971", "brand:wikipedia": "en:Pizza Nova", "cuisine": "pizza", "name": "Pizza Nova"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Pizza Pizza": {"name": "Pizza Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/PizzaPizzaCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q1194143"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Pizza", "brand:wikidata": "Q1194143", "brand:wikipedia": "en:Pizza Pizza", "cuisine": "pizza", "name": "Pizza Pizza"}, "removeTags": {"amenity": "fast_food", "brand": "Pizza Pizza", "brand:wikidata": "Q1194143", "brand:wikipedia": "en:Pizza Pizza", "cuisine": "pizza", "name": "Pizza Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Pollo Campero": {"name": "Pollo Campero", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/CamperoUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q942741"}, "addTags": {"amenity": "fast_food", "brand": "Pollo Campero", "brand:wikidata": "Q942741", "brand:wikipedia": "en:Pollo Campero", "cuisine": "chicken", "name": "Pollo Campero"}, "removeTags": {"amenity": "fast_food", "brand": "Pollo Campero", "brand:wikidata": "Q942741", "brand:wikipedia": "en:Pollo Campero", "cuisine": "chicken", "name": "Pollo Campero"}, "reference": {"key": "cuisine", "value": "chicken"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Pollo Tropical": {"name": "Pollo Tropical", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/PolloTropical/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q3395356"}, "addTags": {"amenity": "fast_food", "brand": "Pollo Tropical", "brand:wikidata": "Q3395356", "brand:wikipedia": "en:Pollo Tropical", "cuisine": "chicken", "name": "Pollo Tropical"}, "removeTags": {"amenity": "fast_food", "brand": "Pollo Tropical", "brand:wikidata": "Q3395356", "brand:wikipedia": "en:Pollo Tropical", "cuisine": "chicken", "name": "Pollo Tropical"}, "reference": {"key": "cuisine", "value": "chicken"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Popeyes": {"name": "Popeyes", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/PopeyesLouisianaKitchen/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q1330910"}, "addTags": {"amenity": "fast_food", "brand": "Popeyes", "brand:wikidata": "Q1330910", "brand:wikipedia": "en:Popeyes", "cuisine": "chicken", "name": "Popeyes", "official_name": "Popeyes Louisiana Kitchen"}, "removeTags": {"amenity": "fast_food", "brand": "Popeyes", "brand:wikidata": "Q1330910", "brand:wikipedia": "en:Popeyes", "cuisine": "chicken", "name": "Popeyes", "official_name": "Popeyes Louisiana Kitchen"}, "reference": {"key": "cuisine", "value": "chicken"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Potbelly": {"name": "Potbelly", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/potbellysandwichshop/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q7234777"}, "addTags": {"amenity": "fast_food", "brand": "Potbelly", "brand:wikidata": "Q7234777", "brand:wikipedia": "en:Potbelly Sandwich Works", "cuisine": "sandwich", "name": "Potbelly"}, "removeTags": {"amenity": "fast_food", "brand": "Potbelly", "brand:wikidata": "Q7234777", "brand:wikipedia": "en:Potbelly Sandwich Works", "cuisine": "sandwich", "name": "Potbelly"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Pret A Manger": {"name": "Pret A Manger", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/pretamangerusa/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q2109109"}, "addTags": {"amenity": "fast_food", "brand": "Pret A Manger", "brand:wikidata": "Q2109109", "brand:wikipedia": "en:Pret a Manger", "cuisine": "sandwich", "name": "Pret A Manger"}, "removeTags": {"amenity": "fast_food", "brand": "Pret A Manger", "brand:wikidata": "Q2109109", "brand:wikipedia": "en:Pret a Manger", "cuisine": "sandwich", "name": "Pret A Manger"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Qdoba": {"name": "Qdoba", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/qdoba/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q1363885"}, "addTags": {"amenity": "fast_food", "brand": "Qdoba", "brand:wikidata": "Q1363885", "brand:wikipedia": "en:Qdoba", "cuisine": "mexican", "name": "Qdoba", "official_name": "Qdoba Mexican Grill"}, "removeTags": {"amenity": "fast_food", "brand": "Qdoba", "brand:wikidata": "Q1363885", "brand:wikipedia": "en:Qdoba", "cuisine": "mexican", "name": "Qdoba", "official_name": "Qdoba Mexican Grill"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Quick": {"name": "Quick", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/QuickBelgium/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q286494"}, "addTags": {"amenity": "fast_food", "brand": "Quick", "brand:wikidata": "Q286494", "brand:wikipedia": "en:Quick (restaurant)", "cuisine": "burger", "name": "Quick"}, "removeTags": {"amenity": "fast_food", "brand": "Quick", "brand:wikidata": "Q286494", "brand:wikipedia": "en:Quick (restaurant)", "cuisine": "burger", "name": "Quick"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Quiznos": {"name": "Quiznos", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Quiznos/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q1936229"}, "addTags": {"amenity": "fast_food", "brand": "Quiznos", "brand:wikidata": "Q1936229", "brand:wikipedia": "en:Quiznos", "cuisine": "sandwich", "name": "Quiznos"}, "removeTags": {"amenity": "fast_food", "brand": "Quiznos", "brand:wikidata": "Q1936229", "brand:wikipedia": "en:Quiznos", "cuisine": "sandwich", "name": "Quiznos"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Raising Cane's": {"name": "Raising Cane's", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/RaisingCanesChickenFingers/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q7285144"}, "addTags": {"amenity": "fast_food", "brand": "Raising Cane's", "brand:wikidata": "Q7285144", "brand:wikipedia": "en:Raising Cane's Chicken Fingers", "cuisine": "chicken", "name": "Raising Cane's"}, "removeTags": {"amenity": "fast_food", "brand": "Raising Cane's", "brand:wikidata": "Q7285144", "brand:wikipedia": "en:Raising Cane's Chicken Fingers", "cuisine": "chicken", "name": "Raising Cane's"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Rally's": {"name": "Rally's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/checkersrallys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q3419341"}, "addTags": {"amenity": "fast_food", "brand": "Rally's", "brand:wikidata": "Q3419341", "brand:wikipedia": "en:Checkers and Rally's", "cuisine": "burger", "name": "Rally's"}, "removeTags": {"amenity": "fast_food", "brand": "Rally's", "brand:wikidata": "Q3419341", "brand:wikipedia": "en:Checkers and Rally's", "cuisine": "burger", "name": "Rally's"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Red Rooster": {"name": "Red Rooster", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/RedRoosterAU/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q376466"}, "addTags": {"amenity": "fast_food", "brand": "Red Rooster", "brand:wikidata": "Q376466", "brand:wikipedia": "en:Red Rooster", "cuisine": "chicken", "name": "Red Rooster"}, "removeTags": {"amenity": "fast_food", "brand": "Red Rooster", "brand:wikidata": "Q376466", "brand:wikipedia": "en:Red Rooster", "cuisine": "chicken", "name": "Red Rooster"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Sbarro": {"name": "Sbarro", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/Sbarro/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q2589409"}, "addTags": {"amenity": "fast_food", "brand": "Sbarro", "brand:wikidata": "Q2589409", "brand:wikipedia": "en:Sbarro", "cuisine": "pizza", "name": "Sbarro"}, "removeTags": {"amenity": "fast_food", "brand": "Sbarro", "brand:wikidata": "Q2589409", "brand:wikipedia": "en:Sbarro", "cuisine": "pizza", "name": "Sbarro"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Schlotzsky's": {"name": "Schlotzsky's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Schlotzskys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q2244796"}, "addTags": {"amenity": "fast_food", "brand": "Schlotzsky's", "brand:wikidata": "Q2244796", "brand:wikipedia": "en:Schlotzsky's", "cuisine": "sandwich", "name": "Schlotzsky's"}, "removeTags": {"amenity": "fast_food", "brand": "Schlotzsky's", "brand:wikidata": "Q2244796", "brand:wikipedia": "en:Schlotzsky's", "cuisine": "sandwich", "name": "Schlotzsky's"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Shake Shack": {"name": "Shake Shack", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/shakeshack/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1058722"}, "addTags": {"amenity": "fast_food", "brand": "Shake Shack", "brand:wikidata": "Q1058722", "brand:wikipedia": "en:Shake Shack", "cuisine": "burger", "name": "Shake Shack"}, "removeTags": {"amenity": "fast_food", "brand": "Shake Shack", "brand:wikidata": "Q1058722", "brand:wikipedia": "en:Shake Shack", "cuisine": "burger", "name": "Shake Shack"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Sibylla": {"name": "Sibylla", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/sibyllasverige/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q488643"}, "addTags": {"amenity": "fast_food", "brand": "Sibylla", "brand:wikidata": "Q488643", "brand:wikipedia": "en:Sibylla (fast food)", "cuisine": "burger", "name": "Sibylla"}, "removeTags": {"amenity": "fast_food", "brand": "Sibylla", "brand:wikidata": "Q488643", "brand:wikipedia": "en:Sibylla (fast food)", "cuisine": "burger", "name": "Sibylla"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["fi", "se"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Smashburger": {"name": "Smashburger", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/smashburger/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q17061332"}, "addTags": {"amenity": "fast_food", "brand": "Smashburger", "brand:wikidata": "Q17061332", "brand:wikipedia": "en:Smashburger", "cuisine": "burger", "name": "Smashburger"}, "removeTags": {"amenity": "fast_food", "brand": "Smashburger", "brand:wikidata": "Q17061332", "brand:wikipedia": "en:Smashburger", "cuisine": "burger", "name": "Smashburger"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Smoothie King": {"name": "Smoothie King", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/SmoothieKing/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5491421"}, "addTags": {"amenity": "fast_food", "brand": "Smoothie King", "brand:wikidata": "Q5491421", "brand:wikipedia": "en:Smoothie King", "cuisine": "juice", "name": "Smoothie King"}, "removeTags": {"amenity": "fast_food", "brand": "Smoothie King", "brand:wikidata": "Q5491421", "brand:wikipedia": "en:Smoothie King", "cuisine": "juice", "name": "Smoothie King"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Sonic": {"name": "Sonic", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/sonicdrivein/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q7561808"}, "addTags": {"amenity": "fast_food", "brand": "Sonic", "brand:wikidata": "Q7561808", "brand:wikipedia": "en:Sonic Drive-In", "cuisine": "burger", "name": "Sonic"}, "removeTags": {"amenity": "fast_food", "brand": "Sonic", "brand:wikidata": "Q7561808", "brand:wikipedia": "en:Sonic Drive-In", "cuisine": "burger", "name": "Sonic"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Steers": {"name": "Steers", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/OfficialSteers/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q56599145"}, "addTags": {"amenity": "fast_food", "brand": "Steers", "brand:wikidata": "Q56599145", "brand:wikipedia": "en:Steers", "cuisine": "burger", "name": "Steers"}, "removeTags": {"amenity": "fast_food", "brand": "Steers", "brand:wikidata": "Q56599145", "brand:wikipedia": "en:Steers", "cuisine": "burger", "name": "Steers"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Subway": {"name": "Subway", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/subway/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q244457"}, "addTags": {"amenity": "fast_food", "brand": "Subway", "brand:wikidata": "Q244457", "brand:wikipedia": "en:Subway (restaurant)", "cuisine": "sandwich", "name": "Subway"}, "removeTags": {"amenity": "fast_food", "brand": "Subway", "brand:wikidata": "Q244457", "brand:wikipedia": "en:Subway (restaurant)", "cuisine": "sandwich", "name": "Subway"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Supermac's": {"name": "Supermac's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/supermacsofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q7643750"}, "addTags": {"amenity": "fast_food", "brand": "Supermac's", "brand:wikidata": "Q7643750", "brand:wikipedia": "en:Supermac's", "cuisine": "burger", "name": "Supermac's"}, "removeTags": {"amenity": "fast_food", "brand": "Supermac's", "brand:wikidata": "Q7643750", "brand:wikipedia": "en:Supermac's", "cuisine": "burger", "name": "Supermac's"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/TCBY": {"name": "TCBY", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/tcby/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q7669631"}, "addTags": {"amenity": "fast_food", "brand": "TCBY", "brand:wikidata": "Q7669631", "brand:wikipedia": "en:TCBY", "cuisine": "frozen_yogurt", "name": "TCBY"}, "removeTags": {"amenity": "fast_food", "brand": "TCBY", "brand:wikidata": "Q7669631", "brand:wikipedia": "en:TCBY", "cuisine": "frozen_yogurt", "name": "TCBY"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Taco Bell": {"name": "Taco Bell", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/tacobell/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q752941"}, "addTags": {"amenity": "fast_food", "brand": "Taco Bell", "brand:wikidata": "Q752941", "brand:wikipedia": "en:Taco Bell", "cuisine": "tex-mex", "name": "Taco Bell"}, "removeTags": {"amenity": "fast_food", "brand": "Taco Bell", "brand:wikidata": "Q752941", "brand:wikipedia": "en:Taco Bell", "cuisine": "tex-mex", "name": "Taco Bell"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Taco Bueno": {"name": "Taco Bueno", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/buenoheadquarters/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q7673958"}, "addTags": {"amenity": "fast_food", "brand": "Taco Bueno", "brand:wikidata": "Q7673958", "brand:wikipedia": "en:Taco Bueno", "cuisine": "mexican", "name": "Taco Bueno"}, "removeTags": {"amenity": "fast_food", "brand": "Taco Bueno", "brand:wikidata": "Q7673958", "brand:wikipedia": "en:Taco Bueno", "cuisine": "mexican", "name": "Taco Bueno"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Taco Cabana": {"name": "Taco Cabana", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/TacoCabana/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q12070488"}, "addTags": {"amenity": "fast_food", "brand": "Taco Cabana", "brand:wikidata": "Q12070488", "brand:wikipedia": "en:Taco Cabana", "cuisine": "mexican", "name": "Taco Cabana"}, "removeTags": {"amenity": "fast_food", "brand": "Taco Cabana", "brand:wikidata": "Q12070488", "brand:wikipedia": "en:Taco Cabana", "cuisine": "mexican", "name": "Taco Cabana"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Taco Del Mar": {"name": "Taco Del Mar", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/tacodelmarcorp/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q7673972"}, "addTags": {"amenity": "fast_food", "brand": "Taco Del Mar", "brand:wikidata": "Q7673972", "brand:wikipedia": "en:Taco del Mar", "cuisine": "mexican", "name": "Taco Del Mar"}, "removeTags": {"amenity": "fast_food", "brand": "Taco Del Mar", "brand:wikidata": "Q7673972", "brand:wikipedia": "en:Taco del Mar", "cuisine": "mexican", "name": "Taco Del Mar"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Taco John's": {"name": "Taco John's", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/tacojohns/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q7673962"}, "addTags": {"amenity": "fast_food", "brand": "Taco John's", "brand:wikidata": "Q7673962", "brand:wikipedia": "en:Taco John's", "cuisine": "mexican", "name": "Taco John's"}, "removeTags": {"amenity": "fast_food", "brand": "Taco John's", "brand:wikidata": "Q7673962", "brand:wikipedia": "en:Taco John's", "cuisine": "mexican", "name": "Taco John's"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Taco Time": {"name": "Taco Time", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/tacotime/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q7673969"}, "addTags": {"amenity": "fast_food", "brand": "Taco Time", "brand:wikidata": "Q7673969", "brand:wikipedia": "en:Taco Time", "cuisine": "mexican", "name": "Taco Time"}, "removeTags": {"amenity": "fast_food", "brand": "Taco Time", "brand:wikidata": "Q7673969", "brand:wikipedia": "en:Taco Time", "cuisine": "mexican", "name": "Taco Time"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Ted’s Hot Dogs": {"name": "Ted’s Hot Dogs", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/TedsHotDogs/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q7692930"}, "addTags": {"amenity": "fast_food", "brand": "Ted’s Hot Dogs", "brand:wikidata": "Q7692930", "brand:wikipedia": "en:Ted's Hot Dogs", "cuisine": "sausage", "name": "Ted’s Hot Dogs"}, "removeTags": {"amenity": "fast_food", "brand": "Ted’s Hot Dogs", "brand:wikidata": "Q7692930", "brand:wikipedia": "en:Ted's Hot Dogs", "cuisine": "sausage", "name": "Ted’s Hot Dogs"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Telepizza": {"name": "Telepizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/telepizza/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q2699863"}, "addTags": {"amenity": "fast_food", "brand": "Telepizza", "brand:wikidata": "Q2699863", "brand:wikipedia": "en:Telepizza", "cuisine": "pizza", "name": "Telepizza"}, "removeTags": {"amenity": "fast_food", "brand": "Telepizza", "brand:wikidata": "Q2699863", "brand:wikipedia": "en:Telepizza", "cuisine": "pizza", "name": "Telepizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Thai Express (Singapore)": {"name": "Thai Express (Singapore)", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ThaiExpressSG/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q7709119"}, "addTags": {"amenity": "fast_food", "brand": "Thai Express", "brand:wikidata": "Q7709119", "brand:wikipedia": "en:Thai Express", "cuisine": "thai", "name": "Thai Express"}, "removeTags": {"amenity": "fast_food", "brand": "Thai Express", "brand:wikidata": "Q7709119", "brand:wikipedia": "en:Thai Express", "cuisine": "thai", "name": "Thai Express"}, "countryCodes": ["sg"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Thaï Express (North America)": {"name": "Thaï Express (North America)", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/EatThaiExpress/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q7711610"}, "addTags": {"amenity": "fast_food", "brand": "Thaï Express", "brand:wikidata": "Q7711610", "brand:wikipedia": "en:Thaï Express", "cuisine": "thai", "name": "Thaï Express"}, "removeTags": {"amenity": "fast_food", "brand": "Thaï Express", "brand:wikidata": "Q7711610", "brand:wikipedia": "en:Thaï Express", "cuisine": "thai", "name": "Thaï Express"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/The Habit Burger Grill": {"name": "The Habit Burger Grill", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/habitburger/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q18158741"}, "addTags": {"amenity": "fast_food", "brand": "The Habit Burger Grill", "brand:wikidata": "Q18158741", "brand:wikipedia": "en:The Habit Burger Grill", "cuisine": "burger", "name": "The Habit Burger Grill"}, "removeTags": {"amenity": "fast_food", "brand": "The Habit Burger Grill", "brand:wikidata": "Q18158741", "brand:wikipedia": "en:The Habit Burger Grill", "cuisine": "burger", "name": "The Habit Burger Grill"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/The Pizza Company": {"name": "The Pizza Company", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/thepizzacompany/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q2413520"}, "addTags": {"amenity": "fast_food", "brand": "The Pizza Company", "brand:wikidata": "Q2413520", "brand:wikipedia": "en:The Pizza Company", "cuisine": "pizza", "name": "The Pizza Company"}, "removeTags": {"amenity": "fast_food", "brand": "The Pizza Company", "brand:wikidata": "Q2413520", "brand:wikipedia": "en:The Pizza Company", "cuisine": "pizza", "name": "The Pizza Company"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Togo's": {"name": "Togo's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/togossandwiches/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q3530375"}, "addTags": {"amenity": "fast_food", "brand": "Togo's", "brand:wikidata": "Q3530375", "brand:wikipedia": "en:Togo's", "cuisine": "sandwich", "name": "Togo's"}, "removeTags": {"amenity": "fast_food", "brand": "Togo's", "brand:wikidata": "Q3530375", "brand:wikipedia": "en:Togo's", "cuisine": "sandwich", "name": "Togo's"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Veggie Grill": {"name": "Veggie Grill", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/veggiegrill/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q18636427"}, "addTags": {"amenity": "fast_food", "brand": "Veggie Grill", "brand:wikidata": "Q18636427", "brand:wikipedia": "en:Veggie Grill", "cuisine": "american", "diet:vegan": "only", "name": "Veggie Grill"}, "removeTags": {"amenity": "fast_food", "brand": "Veggie Grill", "brand:wikidata": "Q18636427", "brand:wikipedia": "en:Veggie Grill", "cuisine": "american", "diet:vegan": "only", "name": "Veggie Grill"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Wendy's": {"name": "Wendy's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/wendys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q550258"}, "addTags": {"amenity": "fast_food", "brand": "Wendy's", "brand:wikidata": "Q550258", "brand:wikipedia": "en:Wendy's", "cuisine": "burger", "name": "Wendy's"}, "removeTags": {"amenity": "fast_food", "brand": "Wendy's", "brand:wikidata": "Q550258", "brand:wikipedia": "en:Wendy's", "cuisine": "burger", "name": "Wendy's"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Whataburger": {"name": "Whataburger", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/whataburger/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q376627"}, "addTags": {"amenity": "fast_food", "brand": "Whataburger", "brand:wikidata": "Q376627", "brand:wikipedia": "en:Whataburger", "cuisine": "burger", "name": "Whataburger"}, "removeTags": {"amenity": "fast_food", "brand": "Whataburger", "brand:wikidata": "Q376627", "brand:wikipedia": "en:Whataburger", "cuisine": "burger", "name": "Whataburger"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Which Wich?": {"name": "Which Wich?", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/whichwich/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q7993556"}, "addTags": {"amenity": "fast_food", "brand": "Which Wich?", "brand:wikidata": "Q7993556", "brand:wikipedia": "en:Which Wich?", "cuisine": "sandwich", "name": "Which Wich?"}, "removeTags": {"amenity": "fast_food", "brand": "Which Wich?", "brand:wikidata": "Q7993556", "brand:wikipedia": "en:Which Wich?", "cuisine": "sandwich", "name": "Which Wich?"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/White Castle": {"name": "White Castle", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/WhiteCastle/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1244034"}, "addTags": {"amenity": "fast_food", "brand": "White Castle", "brand:wikidata": "Q1244034", "brand:wikipedia": "en:White Castle (restaurant)", "cuisine": "burger", "name": "White Castle"}, "removeTags": {"amenity": "fast_food", "brand": "White Castle", "brand:wikidata": "Q1244034", "brand:wikipedia": "en:White Castle (restaurant)", "cuisine": "burger", "name": "White Castle"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Wienerschnitzel": {"name": "Wienerschnitzel", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Wienerschnitzel/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q324679"}, "addTags": {"amenity": "fast_food", "brand": "Wienerschnitzel", "brand:wikidata": "Q324679", "brand:wikipedia": "en:Wienerschnitzel", "cuisine": "hot_dog", "name": "Wienerschnitzel"}, "removeTags": {"amenity": "fast_food", "brand": "Wienerschnitzel", "brand:wikidata": "Q324679", "brand:wikipedia": "en:Wienerschnitzel", "cuisine": "hot_dog", "name": "Wienerschnitzel"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Wimpy": {"name": "Wimpy", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/wimpyrestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q2811992"}, "addTags": {"amenity": "fast_food", "brand": "Wimpy", "brand:wikidata": "Q2811992", "brand:wikipedia": "en:Wimpy (restaurant)", "cuisine": "burger", "name": "Wimpy"}, "removeTags": {"amenity": "fast_food", "brand": "Wimpy", "brand:wikidata": "Q2811992", "brand:wikipedia": "en:Wimpy (restaurant)", "cuisine": "burger", "name": "Wimpy"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Xi'an Famous Foods": {"name": "Xi'an Famous Foods", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/xianfoods/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q8044020"}, "addTags": {"amenity": "fast_food", "brand": "Xi'an Famous Foods", "brand:wikidata": "Q8044020", "brand:wikipedia": "en:Xi'an Famous Foods", "cuisine": "chinese", "name": "Xi'an Famous Foods"}, "removeTags": {"amenity": "fast_food", "brand": "Xi'an Famous Foods", "brand:wikidata": "Q8044020", "brand:wikipedia": "en:Xi'an Famous Foods", "cuisine": "chinese", "name": "Xi'an Famous Foods"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Zaxby's": {"name": "Zaxby's", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/Zaxbys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q8067525"}, "addTags": {"amenity": "fast_food", "brand": "Zaxby's", "brand:wikidata": "Q8067525", "brand:wikipedia": "en:Zaxby's", "cuisine": "chicken", "name": "Zaxby's"}, "removeTags": {"amenity": "fast_food", "brand": "Zaxby's", "brand:wikidata": "Q8067525", "brand:wikipedia": "en:Zaxby's", "cuisine": "chicken", "name": "Zaxby's"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Бургер Кинг": {"name": "Бургер Кинг", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/burgerking/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q177054"}, "addTags": {"amenity": "fast_food", "brand": "Бургер Кинг", "brand:en": "Burger King", "brand:wikidata": "Q177054", "brand:wikipedia": "en:Burger King", "cuisine": "burger", "name": "Бургер Кинг", "name:en": "Burger King"}, "removeTags": {"amenity": "fast_food", "brand": "Бургер Кинг", "brand:en": "Burger King", "brand:wikidata": "Q177054", "brand:wikipedia": "en:Burger King", "cuisine": "burger", "name": "Бургер Кинг", "name:en": "Burger King"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Крошка Картошка": {"name": "Крошка Картошка", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/kartoshka.moscow/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q4241838"}, "addTags": {"amenity": "fast_food", "brand": "Крошка Картошка", "brand:wikidata": "Q4241838", "brand:wikipedia": "ru:Крошка Картошка", "cuisine": "potato", "name": "Крошка Картошка"}, "removeTags": {"amenity": "fast_food", "brand": "Крошка Картошка", "brand:wikidata": "Q4241838", "brand:wikipedia": "ru:Крошка Картошка", "cuisine": "potato", "name": "Крошка Картошка"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Макдоналдс": {"name": "Макдоналдс", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q38076"}, "addTags": {"amenity": "fast_food", "brand": "Макдоналдс", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "en:McDonald's", "cuisine": "burger", "name": "Макдоналдс", "name:en": "McDonald's"}, "removeTags": {"amenity": "fast_food", "brand": "Макдоналдс", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "en:McDonald's", "cuisine": "burger", "name": "Макдоналдс", "name:en": "McDonald's"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Папа Джонс": {"name": "Папа Джонс", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/papajohns/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q2759586"}, "addTags": {"amenity": "fast_food", "brand": "Папа Джонс", "brand:en": "Papa John's", "brand:wikidata": "Q2759586", "brand:wikipedia": "ru:Papa John’s", "cuisine": "pizza", "name": "Папа Джонс", "name:en": "Papa John's"}, "removeTags": {"amenity": "fast_food", "brand": "Папа Джонс", "brand:en": "Papa John's", "brand:wikidata": "Q2759586", "brand:wikipedia": "ru:Papa John’s", "cuisine": "pizza", "name": "Папа Джонс", "name:en": "Papa John's"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Русский Аппетит": {"name": "Русский Аппетит", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Русский-Аппетит-1502979646622576/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q62086063"}, "addTags": {"amenity": "fast_food", "brand": "Русский Аппетит", "brand:wikidata": "Q62086063", "cuisine": "sandwich", "name": "Русский Аппетит"}, "removeTags": {"amenity": "fast_food", "brand": "Русский Аппетит", "brand:wikidata": "Q62086063", "cuisine": "sandwich", "name": "Русский Аппетит"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Стардог!s": {"name": "Стардог!s", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/StardogsOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q4439856"}, "addTags": {"amenity": "fast_food", "brand": "Стардог!s", "brand:en": "Stardog!s", "brand:wikidata": "Q4439856", "brand:wikipedia": "ru:Стардогс", "cuisine": "sausage", "name": "Стардог!s", "name:en": "Stardog!s"}, "removeTags": {"amenity": "fast_food", "brand": "Стардог!s", "brand:en": "Stardog!s", "brand:wikidata": "Q4439856", "brand:wikipedia": "ru:Стардогс", "cuisine": "sausage", "name": "Стардог!s", "name:en": "Stardog!s"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Суши Wok": {"name": "Суши Wok", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/sushiwokofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q25444754"}, "addTags": {"amenity": "fast_food", "brand": "Суши Wok", "brand:en": "Sushi Wok", "brand:wikidata": "Q25444754", "brand:wikipedia": "uk:Суши Wok (мережа магазинів)", "cuisine": "asian", "name": "Суши Wok", "name:en": "Sushi Wok"}, "removeTags": {"amenity": "fast_food", "brand": "Суши Wok", "brand:en": "Sushi Wok", "brand:wikidata": "Q25444754", "brand:wikipedia": "uk:Суши Wok (мережа магазинів)", "cuisine": "asian", "name": "Суши Wok", "name:en": "Sushi Wok"}, "countryCodes": ["ru", "ua"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Теремок": {"name": "Теремок", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/teremok/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q4455593"}, "addTags": {"amenity": "fast_food", "brand": "Теремок", "brand:en": "Teremok", "brand:wikidata": "Q4455593", "brand:wikipedia": "ru:Теремок (сеть быстрого питания)", "cuisine": "crepe;russian", "name": "Теремок", "name:en": "Teremok"}, "removeTags": {"amenity": "fast_food", "brand": "Теремок", "brand:en": "Teremok", "brand:wikidata": "Q4455593", "brand:wikipedia": "ru:Теремок (сеть быстрого питания)", "cuisine": "crepe;russian", "name": "Теремок", "name:en": "Teremok"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/מקדונלד'ס": {"name": "מקדונלד'ס", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/McDonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q12061542"}, "addTags": {"amenity": "fast_food", "brand": "מקדונלד'ס", "brand:en": "McDonald's", "brand:he": "מקדונלד'ס", "brand:wikidata": "Q12061542", "brand:wikipedia": "en:McDonald's Israel", "cuisine": "burger", "name": "מקדונלד'ס", "name:en": "McDonald's", "name:he": "מקדונלד'ס"}, "removeTags": {"amenity": "fast_food", "brand": "מקדונלד'ס", "brand:en": "McDonald's", "brand:he": "מקדונלד'ס", "brand:wikidata": "Q12061542", "brand:wikipedia": "en:McDonald's Israel", "cuisine": "burger", "name": "מקדונלד'ס", "name:en": "McDonald's", "name:he": "מקדונלד'ס"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["il"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/دجاج كنتاكي": {"name": "دجاج كنتاكي", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/KFC/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q524757"}, "addTags": {"amenity": "fast_food", "brand": "دجاج كنتاكي", "brand:ar": "دجاج كنتاكي", "brand:en": "KFC", "brand:wikidata": "Q524757", "brand:wikipedia": "ar:دجاج كنتاكي", "cuisine": "chicken", "name": "دجاج كنتاكي", "name:ar": "دجاج كنتاكي", "name:en": "KFC"}, "removeTags": {"amenity": "fast_food", "brand": "دجاج كنتاكي", "brand:ar": "دجاج كنتاكي", "brand:en": "KFC", "brand:wikidata": "Q524757", "brand:wikipedia": "ar:دجاج كنتاكي", "cuisine": "chicken", "name": "دجاج كنتاكي", "name:ar": "دجاج كنتاكي", "name:en": "KFC"}, "reference": {"key": "cuisine", "value": "chicken"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/ماكدونالدز": {"name": "ماكدونالدز", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q38076"}, "addTags": {"amenity": "fast_food", "brand": "ماكدونالدز", "brand:ar": "ماكدونالدز", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "ar:ماكدونالدز", "cuisine": "burger", "name": "ماكدونالدز", "name:ar": "ماكدونالدز", "name:en": "McDonald's"}, "removeTags": {"amenity": "fast_food", "brand": "ماكدونالدز", "brand:ar": "ماكدونالدز", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "ar:ماكدونالدز", "cuisine": "burger", "name": "ماكدونالدز", "name:ar": "ماكدونالدز", "name:en": "McDonald's"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, - "amenity/fast_food/かっぱ寿司": {"name": "かっぱ寿司", "icon": "maki-fast-food", "imageURL": "https://abs.twimg.com/sticky/default_profile_images/default_profile_bigger.png", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11263916"}, "addTags": {"amenity": "fast_food", "brand": "かっぱ寿司", "brand:en": "Kappazushi", "brand:ja": "かっぱ寿司", "brand:wikidata": "Q11263916", "brand:wikipedia": "ja:かっぱ寿司", "cuisine": "sushi", "name": "かっぱ寿司", "name:en": "Kappazushi", "name:ja": "かっぱ寿司"}, "removeTags": {"amenity": "fast_food", "brand": "かっぱ寿司", "brand:en": "Kappazushi", "brand:ja": "かっぱ寿司", "brand:wikidata": "Q11263916", "brand:wikipedia": "ja:かっぱ寿司", "cuisine": "sushi", "name": "かっぱ寿司", "name:en": "Kappazushi", "name:ja": "かっぱ寿司"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/かつや": {"name": "かつや", "icon": "maki-fast-food", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q2855257"}, "addTags": {"amenity": "fast_food", "brand": "かつや", "brand:en": "Katsuya", "brand:ja": "かつや", "brand:wikidata": "Q2855257", "brand:wikipedia": "ja:かつや", "cuisine": "fried_food", "name": "かつや", "name:en": "Katsuya", "name:ja": "かつや", "name:ko": "카쯔야", "name:zh": "吉豚屋"}, "removeTags": {"amenity": "fast_food", "brand": "かつや", "brand:en": "Katsuya", "brand:ja": "かつや", "brand:wikidata": "Q2855257", "brand:wikipedia": "ja:かつや", "cuisine": "fried_food", "name": "かつや", "name:en": "Katsuya", "name:ja": "かつや", "name:ko": "카쯔야", "name:zh": "吉豚屋"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/くら寿司": {"name": "くら寿司", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Kurasushi/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q6445491"}, "addTags": {"amenity": "fast_food", "brand": "くら寿司", "brand:en": "Kurazushi", "brand:ja": "くら寿司", "brand:wikidata": "Q6445491", "brand:wikipedia": "ja:くらコーポレーション", "cuisine": "sushi", "name": "くら寿司", "name:en": "Kurazushi", "name:ja": "くら寿司"}, "removeTags": {"amenity": "fast_food", "brand": "くら寿司", "brand:en": "Kurazushi", "brand:ja": "くら寿司", "brand:wikidata": "Q6445491", "brand:wikipedia": "ja:くらコーポレーション", "cuisine": "sushi", "name": "くら寿司", "name:en": "Kurazushi", "name:ja": "くら寿司"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/すき家": {"name": "すき家", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/1074928090885672960/nTgKn0jh_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q6137375"}, "addTags": {"amenity": "fast_food", "brand": "すき家", "brand:en": "Sukiya", "brand:ja": "すき家", "brand:wikidata": "Q6137375", "brand:wikipedia": "ja:すき家", "cuisine": "beef_bowl", "name": "すき家", "name:en": "Sukiya", "name:ja": "すき家"}, "removeTags": {"amenity": "fast_food", "brand": "すき家", "brand:en": "Sukiya", "brand:ja": "すき家", "brand:wikidata": "Q6137375", "brand:wikipedia": "ja:すき家", "cuisine": "beef_bowl", "name": "すき家", "name:en": "Sukiya", "name:ja": "すき家"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/なか卯": {"name": "なか卯", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/999109688582008832/evpixQ34_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11274132"}, "addTags": {"amenity": "fast_food", "brand": "なか卯", "brand:en": "Nakau", "brand:ja": "なか卯", "brand:wikidata": "Q11274132", "brand:wikipedia": "ja:なか卯", "name": "なか卯", "name:en": "Nakau", "name:ja": "なか卯"}, "removeTags": {"amenity": "fast_food", "brand": "なか卯", "brand:en": "Nakau", "brand:ja": "なか卯", "brand:wikidata": "Q11274132", "brand:wikipedia": "ja:なか卯", "name": "なか卯", "name:en": "Nakau", "name:ja": "なか卯"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/はま寿司": {"name": "はま寿司", "icon": "maki-fast-food", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q17220385"}, "addTags": {"amenity": "fast_food", "brand": "はま寿司", "brand:en": "Hamazushi", "brand:ja": "はま寿司", "brand:wikidata": "Q17220385", "brand:wikipedia": "ja:はま寿司", "name": "はま寿司", "name:en": "Hamazushi", "name:ja": "はま寿司"}, "removeTags": {"amenity": "fast_food", "brand": "はま寿司", "brand:en": "Hamazushi", "brand:ja": "はま寿司", "brand:wikidata": "Q17220385", "brand:wikipedia": "ja:はま寿司", "name": "はま寿司", "name:en": "Hamazushi", "name:ja": "はま寿司"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/ほっかほっか亭": {"name": "ほっかほっか亭", "icon": "maki-fast-food", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHokka-Hokka%20Tei%20logo.gif&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5878035"}, "addTags": {"amenity": "fast_food", "brand": "ほっかほっか亭", "brand:en": "Hokka Hokka Tei", "brand:ja": "ほっかほっか亭", "brand:wikidata": "Q5878035", "brand:wikipedia": "ja:ほっかほっか亭", "name": "ほっかほっか亭", "name:en": "Hokka Hokka Tei", "name:ja": "ほっかほっか亭"}, "removeTags": {"amenity": "fast_food", "brand": "ほっかほっか亭", "brand:en": "Hokka Hokka Tei", "brand:ja": "ほっかほっか亭", "brand:wikidata": "Q5878035", "brand:wikipedia": "ja:ほっかほっか亭", "name": "ほっかほっか亭", "name:en": "Hokka Hokka Tei", "name:ja": "ほっかほっか亭"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/ほっともっと": {"name": "ほっともっと", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/hottomotto/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q10850949"}, "addTags": {"amenity": "fast_food", "brand": "ほっともっと", "brand:en": "Hotto Motto", "brand:ja": "ほっともっと", "brand:wikidata": "Q10850949", "brand:wikipedia": "ja:ほっともっと", "name": "ほっともっと", "name:en": "Hotto Motto", "name:ja": "ほっともっと"}, "removeTags": {"amenity": "fast_food", "brand": "ほっともっと", "brand:en": "Hotto Motto", "brand:ja": "ほっともっと", "brand:wikidata": "Q10850949", "brand:wikipedia": "ja:ほっともっと", "name": "ほっともっと", "name:en": "Hotto Motto", "name:ja": "ほっともっと"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/ゆで太郎": {"name": "ゆで太郎", "icon": "maki-fast-food", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11280824"}, "addTags": {"amenity": "fast_food", "brand": "ゆで太郎", "brand:en": "Yudetaro", "brand:ja": "ゆで太郎", "brand:wikidata": "Q11280824", "brand:wikipedia": "ja:ゆで太郎", "cuisine": "noodle", "name": "ゆで太郎", "name:en": "Yudetaro", "name:ja": "ゆで太郎"}, "removeTags": {"amenity": "fast_food", "brand": "ゆで太郎", "brand:en": "Yudetaro", "brand:ja": "ゆで太郎", "brand:wikidata": "Q11280824", "brand:wikipedia": "ja:ゆで太郎", "cuisine": "noodle", "name": "ゆで太郎", "name:en": "Yudetaro", "name:ja": "ゆで太郎"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/オリジン弁当": {"name": "オリジン弁当", "icon": "maki-fast-food", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11292632"}, "addTags": {"amenity": "fast_food", "brand": "オリジン弁当", "brand:en": "Origin Bentō", "brand:ja": "オリジン弁当", "brand:wikidata": "Q11292632", "brand:wikipedia": "ja:オリジン東秀", "name": "オリジン弁当", "name:en": "Origin Bentō", "name:ja": "オリジン弁当"}, "removeTags": {"amenity": "fast_food", "brand": "オリジン弁当", "brand:en": "Origin Bentō", "brand:ja": "オリジン弁当", "brand:wikidata": "Q11292632", "brand:wikipedia": "ja:オリジン東秀", "name": "オリジン弁当", "name:en": "Origin Bentō", "name:ja": "オリジン弁当"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/ケンタッキーフライドチキン": {"name": "ケンタッキーフライドチキン", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/KFC/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q524757"}, "addTags": {"amenity": "fast_food", "brand": "ケンタッキーフライドチキン", "brand:en": "KFC", "brand:ja": "ケンタッキーフライドチキン", "brand:wikidata": "Q524757", "brand:wikipedia": "ja:KFCコーポレーション", "cuisine": "chicken", "name": "ケンタッキーフライドチキン", "name:en": "KFC", "name:ja": "ケンタッキーフライドチキン"}, "removeTags": {"amenity": "fast_food", "brand": "ケンタッキーフライドチキン", "brand:en": "KFC", "brand:ja": "ケンタッキーフライドチキン", "brand:wikidata": "Q524757", "brand:wikipedia": "ja:KFCコーポレーション", "cuisine": "chicken", "name": "ケンタッキーフライドチキン", "name:en": "KFC", "name:ja": "ケンタッキーフライドチキン"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/サブウェイ": {"name": "サブウェイ", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/subway/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q244457"}, "addTags": {"amenity": "fast_food", "brand": "サブウェイ", "brand:en": "Subway", "brand:ja": "サブウェイ", "brand:wikidata": "Q244457", "brand:wikipedia": "ja:サブウェイ", "cuisine": "sandwich", "name": "サブウェイ", "name:en": "Subway", "name:ja": "サブウェイ"}, "removeTags": {"amenity": "fast_food", "brand": "サブウェイ", "brand:en": "Subway", "brand:ja": "サブウェイ", "brand:wikidata": "Q244457", "brand:wikipedia": "ja:サブウェイ", "cuisine": "sandwich", "name": "サブウェイ", "name:en": "Subway", "name:ja": "サブウェイ"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/スシロー": {"name": "スシロー", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/akindosushiro/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11257037"}, "addTags": {"amenity": "fast_food", "brand": "スシロー", "brand:en": "Sushiro", "brand:ja": "スシロー", "brand:wikidata": "Q11257037", "brand:wikipedia": "ja:あきんどスシロー", "cuisine": "sushi", "name": "スシロー", "name:en": "Sushiro", "name:ja": "スシロー", "name:zh": "壽司郎"}, "removeTags": {"amenity": "fast_food", "brand": "スシロー", "brand:en": "Sushiro", "brand:ja": "スシロー", "brand:wikidata": "Q11257037", "brand:wikipedia": "ja:あきんどスシロー", "cuisine": "sushi", "name": "スシロー", "name:en": "Sushiro", "name:ja": "スシロー", "name:zh": "壽司郎"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/ドミノ・ピザ": {"name": "ドミノ・ピザ", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/Dominos/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q839466"}, "addTags": {"amenity": "fast_food", "brand": "ドミノ・ピザ", "brand:en": "Domino's Pizza", "brand:ja": "ドミノ・ピザ", "brand:wikidata": "Q839466", "brand:wikipedia": "ja:ドミノ・ピザ", "cuisine": "pizza", "name": "ドミノ・ピザ", "name:en": "Domino's Pizza", "name:ja": "ドミノ・ピザ"}, "removeTags": {"amenity": "fast_food", "brand": "ドミノ・ピザ", "brand:en": "Domino's Pizza", "brand:ja": "ドミノ・ピザ", "brand:wikidata": "Q839466", "brand:wikipedia": "ja:ドミノ・ピザ", "cuisine": "pizza", "name": "ドミノ・ピザ", "name:en": "Domino's Pizza", "name:ja": "ドミノ・ピザ"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/ピザハット": {"name": "ピザハット", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pizzahutus/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q191615"}, "addTags": {"amenity": "fast_food", "brand": "ピザハット", "brand:en": "Pizza Hut", "brand:ja": "ピザハット", "brand:wikidata": "Q191615", "brand:wikipedia": "ja:ピザハット", "cuisine": "pizza", "name": "ピザハット", "name:en": "Pizza Hut", "name:ja": "ピザハット"}, "removeTags": {"amenity": "fast_food", "brand": "ピザハット", "brand:en": "Pizza Hut", "brand:ja": "ピザハット", "brand:wikidata": "Q191615", "brand:wikipedia": "ja:ピザハット", "cuisine": "pizza", "name": "ピザハット", "name:en": "Pizza Hut", "name:ja": "ピザハット"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/ピザ・カリフォルニア": {"name": "ピザ・カリフォルニア", "icon": "maki-restaurant-pizza", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q75324"}, "addTags": {"amenity": "fast_food", "brand": "ピザ・カリフォルニア", "brand:en": "Pizza California", "brand:ja": "ピザ・カリフォルニア", "brand:wikidata": "Q75324", "brand:wikipedia": "ja:ピザ・カリフォルニア", "cuisine": "pizza", "name": "ピザ・カリフォルニア", "name:en": "Pizza California", "name:ja": "ピザ・カリフォルニア"}, "removeTags": {"amenity": "fast_food", "brand": "ピザ・カリフォルニア", "brand:en": "Pizza California", "brand:ja": "ピザ・カリフォルニア", "brand:wikidata": "Q75324", "brand:wikipedia": "ja:ピザ・カリフォルニア", "cuisine": "pizza", "name": "ピザ・カリフォルニア", "name:en": "Pizza California", "name:ja": "ピザ・カリフォルニア"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/ピザーラ": {"name": "ピザーラ", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pizzala.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q7199948"}, "addTags": {"amenity": "fast_food", "brand": "ピザーラ", "brand:en": "Pizza-La", "brand:ja": "ピザーラ", "brand:wikidata": "Q7199948", "brand:wikipedia": "ja:ピザーラ", "cuisine": "pizza", "name": "ピザーラ", "name:en": "Pizza-La", "name:ja": "ピザーラ"}, "removeTags": {"amenity": "fast_food", "brand": "ピザーラ", "brand:en": "Pizza-La", "brand:ja": "ピザーラ", "brand:wikidata": "Q7199948", "brand:wikipedia": "ja:ピザーラ", "cuisine": "pizza", "name": "ピザーラ", "name:en": "Pizza-La", "name:ja": "ピザーラ"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/フレッシュネスバーガー": {"name": "フレッシュネスバーガー", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/freshness.burger.official/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q5503087"}, "addTags": {"amenity": "fast_food", "brand": "フレッシュネスバーガー", "brand:en": "Freshness Burger", "brand:ja": "フレッシュネスバーガー", "brand:wikidata": "Q5503087", "brand:wikipedia": "ja:フレッシュネスバーガー", "cuisine": "burger", "name": "フレッシュネスバーガー", "name:en": "Freshness Burger", "name:ja": "フレッシュネスバーガー"}, "removeTags": {"amenity": "fast_food", "brand": "フレッシュネスバーガー", "brand:en": "Freshness Burger", "brand:ja": "フレッシュネスバーガー", "brand:wikidata": "Q5503087", "brand:wikipedia": "ja:フレッシュネスバーガー", "cuisine": "burger", "name": "フレッシュネスバーガー", "name:en": "Freshness Burger", "name:ja": "フレッシュネスバーガー"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/マクドナルド": {"name": "マクドナルド", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q38076"}, "addTags": {"amenity": "fast_food", "brand": "マクドナルド", "brand:en": "McDonald's", "brand:ja": "マクドナルド", "brand:wikidata": "Q38076", "brand:wikipedia": "ja:マクドナルド", "cuisine": "burger", "name": "マクドナルド", "name:en": "McDonald's", "name:ja": "マクドナルド"}, "removeTags": {"amenity": "fast_food", "brand": "マクドナルド", "brand:en": "McDonald's", "brand:ja": "マクドナルド", "brand:wikidata": "Q38076", "brand:wikipedia": "ja:マクドナルド", "cuisine": "burger", "name": "マクドナルド", "name:en": "McDonald's", "name:ja": "マクドナルド"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/ミスタードーナツ": {"name": "ミスタードーナツ", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/misdo.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q1065819"}, "addTags": {"amenity": "fast_food", "brand": "ミスタードーナツ", "brand:en": "Mister Donut", "brand:ja": "ミスタードーナツ", "brand:wikidata": "Q1065819", "brand:wikipedia": "en:Mister Donut", "cuisine": "donut", "name": "ミスタードーナツ", "name:en": "Mister Donut", "name:ja": "ミスタードーナツ"}, "removeTags": {"amenity": "fast_food", "brand": "ミスタードーナツ", "brand:en": "Mister Donut", "brand:ja": "ミスタードーナツ", "brand:wikidata": "Q1065819", "brand:wikipedia": "en:Mister Donut", "cuisine": "donut", "name": "ミスタードーナツ", "name:en": "Mister Donut", "name:ja": "ミスタードーナツ"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/モスバーガー": {"name": "モスバーガー", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/712033394109124608/kVGTqBLR_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1204169"}, "addTags": {"amenity": "fast_food", "brand": "モスバーガー", "brand:en": "MOS Burger", "brand:ja": "モスバーガー", "brand:wikidata": "Q1204169", "brand:wikipedia": "ja:モスバーガー", "cuisine": "burger", "name": "モスバーガー", "name:en": "MOS Burger", "name:ja": "モスバーガー"}, "removeTags": {"amenity": "fast_food", "brand": "モスバーガー", "brand:en": "MOS Burger", "brand:ja": "モスバーガー", "brand:wikidata": "Q1204169", "brand:wikipedia": "ja:モスバーガー", "cuisine": "burger", "name": "モスバーガー", "name:en": "MOS Burger", "name:ja": "モスバーガー"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/ラーメン二郎": {"name": "ラーメン二郎", "icon": "maki-fast-food", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11347765"}, "addTags": {"amenity": "fast_food", "brand": "ラーメン二郎", "brand:en": "Ramen Jiro", "brand:ja": "ラーメン二郎", "brand:wikidata": "Q11347765", "brand:wikipedia": "ja:ラーメン二郎", "cusine": "noodle", "name": "ラーメン二郎", "name:en": "Ramen Jiro", "name:ja": "ラーメン二郎"}, "removeTags": {"amenity": "fast_food", "brand": "ラーメン二郎", "brand:en": "Ramen Jiro", "brand:ja": "ラーメン二郎", "brand:wikidata": "Q11347765", "brand:wikipedia": "ja:ラーメン二郎", "cusine": "noodle", "name": "ラーメン二郎", "name:en": "Ramen Jiro", "name:ja": "ラーメン二郎"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/ロッテリア": {"name": "ロッテリア", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ilovelotteria/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q249525"}, "addTags": {"amenity": "fast_food", "brand": "ロッテリア", "brand:en": "Lotteria", "brand:ja": "ロッテリア", "brand:wikidata": "Q249525", "brand:wikipedia": "ja:ロッテリア", "cuisine": "burger", "name": "ロッテリア", "name:en": "Lotteria", "name:ja": "ロッテリア"}, "removeTags": {"amenity": "fast_food", "brand": "ロッテリア", "brand:en": "Lotteria", "brand:ja": "ロッテリア", "brand:wikidata": "Q249525", "brand:wikipedia": "ja:ロッテリア", "cuisine": "burger", "name": "ロッテリア", "name:en": "Lotteria", "name:ja": "ロッテリア"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/吉野家": {"name": "吉野家", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/tw.yoshinoya/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q776272"}, "addTags": {"amenity": "fast_food", "brand": "吉野家", "brand:en": "Yoshinoya", "brand:ja": "吉野家", "brand:wikidata": "Q776272", "brand:wikipedia": "ja:吉野家", "name": "吉野家", "name:en": "Yoshinoya", "name:ja": "吉野家"}, "removeTags": {"amenity": "fast_food", "brand": "吉野家", "brand:en": "Yoshinoya", "brand:ja": "吉野家", "brand:wikidata": "Q776272", "brand:wikipedia": "ja:吉野家", "name": "吉野家", "name:en": "Yoshinoya", "name:ja": "吉野家"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/富士そば": {"name": "富士そば", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/fujisoba/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11414722"}, "addTags": {"amenity": "fast_food", "brand": "富士そば", "brand:en": "Fuji Soba", "brand:ja": "富士そば", "brand:wikidata": "Q11414722", "brand:wikipedia": "ja:名代富士そば", "cusine": "noodle", "name": "富士そば", "name:en": "Fuji Soba", "name:ja": "富士そば"}, "removeTags": {"amenity": "fast_food", "brand": "富士そば", "brand:en": "Fuji Soba", "brand:ja": "富士そば", "brand:wikidata": "Q11414722", "brand:wikipedia": "ja:名代富士そば", "cusine": "noodle", "name": "富士そば", "name:en": "Fuji Soba", "name:ja": "富士そば"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/幸楽苑": {"name": "幸楽苑", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Kourakuen/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11484003"}, "addTags": {"amenity": "fast_food", "brand": "幸楽苑", "brand:en": "Kourakuen", "brand:ja": "幸楽苑", "brand:wikidata": "Q11484003", "brand:wikipedia": "ja:幸楽苑", "name": "幸楽苑", "name:en": "Kourakuen", "name:ja": "幸楽苑"}, "removeTags": {"amenity": "fast_food", "brand": "幸楽苑", "brand:en": "Kourakuen", "brand:ja": "幸楽苑", "brand:wikidata": "Q11484003", "brand:wikipedia": "ja:幸楽苑", "name": "幸楽苑", "name:en": "Kourakuen", "name:ja": "幸楽苑"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/摩斯漢堡": {"name": "摩斯漢堡", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/712033394109124608/kVGTqBLR_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1204169"}, "addTags": {"amenity": "fast_food", "brand": "摩斯漢堡", "brand:en": "MOS Burger", "brand:wikidata": "Q1204169", "brand:wikipedia": "zh:摩斯漢堡", "brand:zh": "摩斯漢堡", "cuisine": "burger", "name": "摩斯漢堡", "name:en": "MOS Burger", "name:zh": "摩斯漢堡"}, "removeTags": {"amenity": "fast_food", "brand": "摩斯漢堡", "brand:en": "MOS Burger", "brand:wikidata": "Q1204169", "brand:wikipedia": "zh:摩斯漢堡", "brand:zh": "摩斯漢堡", "cuisine": "burger", "name": "摩斯漢堡", "name:en": "MOS Burger", "name:zh": "摩斯漢堡"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["cn", "hk", "mo", "sg", "tw"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/松屋": {"name": "松屋", "icon": "maki-fast-food", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q848773"}, "addTags": {"amenity": "fast_food", "brand": "松屋", "brand:en": "Matsuya Foods", "brand:wikidata": "Q848773", "brand:wikipedia": "zh:松屋食品", "name": "松屋", "name:en": "Matsuya Foods"}, "removeTags": {"amenity": "fast_food", "brand": "松屋", "brand:en": "Matsuya Foods", "brand:wikidata": "Q848773", "brand:wikipedia": "zh:松屋食品", "name": "松屋", "name:en": "Matsuya Foods"}, "countryCodes": ["cn", "hk", "mo", "sg", "tw"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/箱根そば": {"name": "箱根そば", "icon": "maki-fast-food", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11603345"}, "addTags": {"amenity": "fast_food", "brand": "箱根そば", "brand:en": "Hakone Soba", "brand:ja": "箱根そば", "brand:wikidata": "Q11603345", "brand:wikipedia": "ja:箱根そば", "cusine": "noodle", "name": "箱根そば", "name:en": "Hakone Soba", "name:ja": "箱根そば"}, "removeTags": {"amenity": "fast_food", "brand": "箱根そば", "brand:en": "Hakone Soba", "brand:ja": "箱根そば", "brand:wikidata": "Q11603345", "brand:wikipedia": "ja:箱根そば", "cusine": "noodle", "name": "箱根そば", "name:en": "Hakone Soba", "name:ja": "箱根そば"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/肯德基": {"name": "肯德基", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/KFC/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q524757"}, "addTags": {"amenity": "fast_food", "brand": "肯德基", "brand:en": "KFC", "brand:wikidata": "Q524757", "brand:wikipedia": "zh:肯德基", "name": "肯德基", "name:en": "KFC"}, "removeTags": {"amenity": "fast_food", "brand": "肯德基", "brand:en": "KFC", "brand:wikidata": "Q524757", "brand:wikipedia": "zh:肯德基", "name": "肯德基", "name:en": "KFC"}, "countryCodes": ["cn", "hk", "mo", "sg", "tw"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/麥當勞": {"name": "麥當勞", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q38076"}, "addTags": {"amenity": "fast_food", "brand": "麥當勞", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "zh_classical:麥當勞", "cuisine": "burger", "name": "麥當勞", "name:en": "McDonald's"}, "removeTags": {"amenity": "fast_food", "brand": "麥當勞", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "zh_classical:麥當勞", "cuisine": "burger", "name": "麥當勞", "name:en": "McDonald's"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["hk", "mo", "tw"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/麦当劳": {"name": "麦当劳", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q38076"}, "addTags": {"amenity": "fast_food", "brand": "麦当劳", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "zh:麦当劳", "cuisine": "burger", "name": "麦当劳", "name:en": "McDonald's"}, "removeTags": {"amenity": "fast_food", "brand": "麦当劳", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "zh:麦当劳", "cuisine": "burger", "name": "麦当劳", "name:en": "McDonald's"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["cn", "sg"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/롯데리아": {"name": "롯데리아", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ilovelotteria/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q249525"}, "addTags": {"amenity": "fast_food", "brand": "롯데리아", "brand:en": "Lotteria", "brand:ko": "롯데리아", "brand:wikidata": "Q249525", "brand:wikipedia": "ko:롯데리아", "cuisine": "burger", "name": "롯데리아", "name:en": "Lotteria", "name:ko": "롯데리아"}, "removeTags": {"amenity": "fast_food", "brand": "롯데리아", "brand:en": "Lotteria", "brand:ko": "롯데리아", "brand:wikidata": "Q249525", "brand:wikipedia": "ko:롯데리아", "cuisine": "burger", "name": "롯데리아", "name:en": "Lotteria", "name:ko": "롯데리아"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/A&W (Canada)": {"name": "A&W (Canada)", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/434046919812214784/sTmhuLO-_bigger.png", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q2818848"}, "addTags": {"amenity": "fast_food", "brand": "A&W", "brand:wikidata": "Q2818848", "brand:wikipedia": "en:A&W (Canada)", "cuisine": "burger", "name": "A&W", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "A&W", "brand:wikidata": "Q2818848", "brand:wikipedia": "en:A&W (Canada)", "cuisine": "burger", "name": "A&W", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/A&W (USA)": {"name": "A&W (USA)", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/awrestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q277641"}, "addTags": {"amenity": "fast_food", "brand": "A&W", "brand:wikidata": "Q277641", "brand:wikipedia": "en:A&W Restaurants", "cuisine": "burger", "name": "A&W", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "A&W", "brand:wikidata": "Q277641", "brand:wikipedia": "en:A&W Restaurants", "cuisine": "burger", "name": "A&W", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/Andok's": {"name": "Andok's", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/andokslitsonmanok/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q62267166"}, "addTags": {"amenity": "fast_food", "brand": "Andok's", "brand:wikidata": "Q62267166", "cuisine": "chicken", "name": "Andok's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Andok's", "brand:wikidata": "Q62267166", "cuisine": "chicken", "name": "Andok's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Angel's Burger": {"name": "Angel's Burger", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/angelsburgerofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q62267228"}, "addTags": {"amenity": "fast_food", "brand": "Angel's Burger", "brand:wikidata": "Q62267228", "cuisine": "burger", "name": "Angel's Burger", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Angel's Burger", "brand:wikidata": "Q62267228", "cuisine": "burger", "name": "Angel's Burger", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/Arby's": {"name": "Arby's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/arbys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q630866"}, "addTags": {"amenity": "fast_food", "brand": "Arby's", "brand:wikidata": "Q630866", "brand:wikipedia": "en:Arby's", "cuisine": "sandwich", "name": "Arby's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Arby's", "brand:wikidata": "Q630866", "brand:wikipedia": "en:Arby's", "cuisine": "sandwich", "name": "Arby's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/Au Bon Pain": {"name": "Au Bon Pain", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/aubonpain/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q4818942"}, "addTags": {"amenity": "fast_food", "brand": "Au Bon Pain", "brand:wikidata": "Q4818942", "brand:wikipedia": "en:Au Bon Pain", "cuisine": "sandwich", "name": "Au Bon Pain", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Au Bon Pain", "brand:wikidata": "Q4818942", "brand:wikipedia": "en:Au Bon Pain", "cuisine": "sandwich", "name": "Au Bon Pain", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["in", "th", "us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Auntie Anne's": {"name": "Auntie Anne's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/auntieannespretzels/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q4822010"}, "addTags": {"amenity": "fast_food", "brand": "Auntie Anne's", "brand:wikidata": "Q4822010", "brand:wikipedia": "en:Auntie Anne's", "cuisine": "pretzel", "name": "Auntie Anne's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Auntie Anne's", "brand:wikidata": "Q4822010", "brand:wikipedia": "en:Auntie Anne's", "cuisine": "pretzel", "name": "Auntie Anne's", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/mexican/Baja Fresh": {"name": "Baja Fresh", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/bajafresh/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q2880019"}, "addTags": {"amenity": "fast_food", "brand": "Baja Fresh", "brand:wikidata": "Q2880019", "brand:wikipedia": "en:Baja Fresh", "cuisine": "mexican", "name": "Baja Fresh", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Baja Fresh", "brand:wikidata": "Q2880019", "brand:wikipedia": "en:Baja Fresh", "cuisine": "mexican", "name": "Baja Fresh", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Bembos": {"name": "Bembos", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/bembos/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q466971"}, "addTags": {"amenity": "fast_food", "brand": "Bembos", "brand:wikidata": "Q466971", "brand:wikipedia": "en:Bembos", "cuisine": "burger", "name": "Bembos", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Bembos", "brand:wikidata": "Q466971", "brand:wikipedia": "en:Bembos", "cuisine": "burger", "name": "Bembos", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["pe"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Bob's": {"name": "Bob's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/bobsbrasil/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1392113"}, "addTags": {"amenity": "fast_food", "brand": "Bob's", "brand:wikidata": "Q1392113", "brand:wikipedia": "en:Bob's", "cuisine": "burger", "name": "Bob's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Bob's", "brand:wikidata": "Q1392113", "brand:wikipedia": "en:Bob's", "cuisine": "burger", "name": "Bob's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ao", "br", "cl", "pt"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/Bojangles'": {"name": "Bojangles'", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/Bojangles1977/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q891163"}, "addTags": {"amenity": "fast_food", "brand": "Bojangles'", "brand:wikidata": "Q891163", "brand:wikipedia": "en:Bojangles' Famous Chicken 'n Biscuits", "cuisine": "chicken", "name": "Bojangles'", "official_name": "Bojangles' Famous Chicken 'n Biscuits", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Bojangles'", "brand:wikidata": "Q891163", "brand:wikipedia": "en:Bojangles' Famous Chicken 'n Biscuits", "cuisine": "chicken", "name": "Bojangles'", "official_name": "Bojangles' Famous Chicken 'n Biscuits", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Booster Juice": {"name": "Booster Juice", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/boosterjuice/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q4943796"}, "addTags": {"amenity": "fast_food", "brand": "Booster Juice", "brand:wikidata": "Q4943796", "brand:wikipedia": "en:Booster Juice", "cuisine": "juice", "name": "Booster Juice", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Booster Juice", "brand:wikidata": "Q4943796", "brand:wikipedia": "en:Booster Juice", "cuisine": "juice", "name": "Booster Juice", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Boston Market": {"name": "Boston Market", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/BostonMarket/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q603617"}, "addTags": {"amenity": "fast_food", "brand": "Boston Market", "brand:wikidata": "Q603617", "brand:wikipedia": "en:Boston Market", "cuisine": "american", "name": "Boston Market", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Boston Market", "brand:wikidata": "Q603617", "brand:wikipedia": "en:Boston Market", "cuisine": "american", "name": "Boston Market", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Braum's": {"name": "Braum's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/BraumsIceCreamandDairyStores/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q4958263"}, "addTags": {"amenity": "fast_food", "brand": "Braum's", "brand:wikidata": "Q4958263", "brand:wikipedia": "en:Braum's", "cuisine": "ice_cream", "name": "Braum's", "shop": "dairy", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Braum's", "brand:wikidata": "Q4958263", "brand:wikipedia": "en:Braum's", "cuisine": "ice_cream", "name": "Braum's", "shop": "dairy", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Burger King": {"name": "Burger King", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/burgerking/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q177054"}, "addTags": {"amenity": "fast_food", "brand": "Burger King", "brand:wikidata": "Q177054", "brand:wikipedia": "en:Burger King", "cuisine": "burger", "name": "Burger King", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Burger King", "brand:wikidata": "Q177054", "brand:wikipedia": "en:Burger King", "cuisine": "burger", "name": "Burger King", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Burger Machine": {"name": "Burger Machine", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/burgermachineofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q4998549"}, "addTags": {"amenity": "fast_food", "brand": "Burger Machine", "brand:wikidata": "Q4998549", "brand:wikipedia": "en:Burger Machine", "cuisine": "burger", "name": "Burger Machine", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Burger Machine", "brand:wikidata": "Q4998549", "brand:wikipedia": "en:Burger Machine", "cuisine": "burger", "name": "Burger Machine", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/BurgerFi": {"name": "BurgerFi", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/BurgerFi/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q39045496"}, "addTags": {"amenity": "fast_food", "brand": "BurgerFi", "brand:wikidata": "Q39045496", "brand:wikipedia": "en:BurgerFi", "cuisine": "burger", "name": "BurgerFi", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "BurgerFi", "brand:wikidata": "Q39045496", "brand:wikipedia": "en:BurgerFi", "cuisine": "burger", "name": "BurgerFi", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Captain D's": {"name": "Captain D's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/CaptainDs/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5036616"}, "addTags": {"amenity": "fast_food", "brand": "Captain D's", "brand:wikidata": "Q5036616", "brand:wikipedia": "en:Captain D's", "cuisine": "seafood", "name": "Captain D's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Captain D's", "brand:wikidata": "Q5036616", "brand:wikipedia": "en:Captain D's", "cuisine": "seafood", "name": "Captain D's", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Carl's Jr.": {"name": "Carl's Jr.", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/carlsjr/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1043486"}, "addTags": {"amenity": "fast_food", "brand": "Carl's Jr.", "brand:wikidata": "Q1043486", "brand:wikipedia": "en:Carl's Jr.", "cuisine": "burger", "name": "Carl's Jr.", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Carl's Jr.", "brand:wikidata": "Q1043486", "brand:wikipedia": "en:Carl's Jr.", "cuisine": "burger", "name": "Carl's Jr.", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Checkers": {"name": "Checkers", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/checkersrallys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q3419341"}, "addTags": {"amenity": "fast_food", "brand": "Checkers", "brand:wikidata": "Q3419341", "brand:wikipedia": "en:Checkers and Rally's", "cuisine": "burger", "name": "Checkers", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Checkers", "brand:wikidata": "Q3419341", "brand:wikipedia": "en:Checkers and Rally's", "cuisine": "burger", "name": "Checkers", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/Chick-fil-A": {"name": "Chick-fil-A", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/ChickfilA/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q491516"}, "addTags": {"amenity": "fast_food", "brand": "Chick-fil-A", "brand:wikidata": "Q491516", "brand:wikipedia": "en:Chick-fil-A", "cuisine": "chicken", "name": "Chick-fil-A", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Chick-fil-A", "brand:wikidata": "Q491516", "brand:wikipedia": "en:Chick-fil-A", "cuisine": "chicken", "name": "Chick-fil-A", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/Chicken Express": {"name": "Chicken Express", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/chickenexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q5096235"}, "addTags": {"amenity": "fast_food", "brand": "Chicken Express", "brand:wikidata": "Q5096235", "brand:wikipedia": "en:Chicken Express", "cuisine": "chicken", "name": "Chicken Express", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Chicken Express", "brand:wikidata": "Q5096235", "brand:wikipedia": "en:Chicken Express", "cuisine": "chicken", "name": "Chicken Express", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/China Wok": {"name": "China Wok", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ChinaWokPeru/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5766542"}, "addTags": {"amenity": "fast_food", "brand": "China Wok", "brand:wikidata": "Q5766542", "brand:wikipedia": "es:China Wok", "cuisine": "chinese", "name": "China Wok", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "China Wok", "brand:wikidata": "Q5766542", "brand:wikipedia": "es:China Wok", "cuisine": "chinese", "name": "China Wok", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/mexican/Chipotle": {"name": "Chipotle", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/chipotle/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q465751"}, "addTags": {"amenity": "fast_food", "brand": "Chipotle", "brand:wikidata": "Q465751", "brand:wikipedia": "en:Chipotle Mexican Grill", "cuisine": "mexican", "name": "Chipotle", "official_name": "Chipotle Mexican Grill", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Chipotle", "brand:wikidata": "Q465751", "brand:wikipedia": "en:Chipotle Mexican Grill", "cuisine": "mexican", "name": "Chipotle", "official_name": "Chipotle Mexican Grill", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Chopt": {"name": "Chopt", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/choptsalad/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q17509305"}, "addTags": {"amenity": "fast_food", "brand": "Chopt", "brand:wikidata": "Q17509305", "brand:wikipedia": "en:Chopt", "cuisine": "salad", "name": "Chopt", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Chopt", "brand:wikidata": "Q17509305", "brand:wikipedia": "en:Chopt", "cuisine": "salad", "name": "Chopt", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Chowking": {"name": "Chowking", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/chowkingph/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q1076816"}, "addTags": {"amenity": "fast_food", "brand": "Chowking", "brand:wikidata": "Q1076816", "brand:wikipedia": "en:Chowking", "cuisine": "asian", "name": "Chowking", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Chowking", "brand:wikidata": "Q1076816", "brand:wikipedia": "en:Chowking", "cuisine": "asian", "name": "Chowking", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/Church's Chicken": {"name": "Church's Chicken", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/churchschicken/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q1089932"}, "addTags": {"amenity": "fast_food", "brand": "Church's Chicken", "brand:wikidata": "Q1089932", "brand:wikipedia": "en:Church's Chicken", "cuisine": "chicken", "name": "Church's Chicken", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Church's Chicken", "brand:wikidata": "Q1089932", "brand:wikipedia": "en:Church's Chicken", "cuisine": "chicken", "name": "Church's Chicken", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Cinnabon": {"name": "Cinnabon", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Cinnabon/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q1092539"}, "addTags": {"amenity": "fast_food", "brand": "Cinnabon", "brand:website": "https://www.cinnabon.com/", "brand:wikidata": "Q1092539", "brand:wikipedia": "en:Cinnabon", "cuisine": "dessert", "name": "Cinnabon", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Cinnabon", "brand:website": "https://www.cinnabon.com/", "brand:wikidata": "Q1092539", "brand:wikipedia": "en:Cinnabon", "cuisine": "dessert", "name": "Cinnabon", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/CoCo壱番屋": {"name": "CoCo壱番屋", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/cocoichicurry/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5986105"}, "addTags": {"amenity": "fast_food", "brand": "CoCo壱番屋", "brand:en": "Ichibanya", "brand:wikidata": "Q5986105", "brand:wikipedia": "en:Ichibanya", "cuisine": "japanese", "name": "CoCo壱番屋", "name:en": "Ichibanya", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "CoCo壱番屋", "brand:en": "Ichibanya", "brand:wikidata": "Q5986105", "brand:wikipedia": "en:Ichibanya", "cuisine": "japanese", "name": "CoCo壱番屋", "name:en": "Ichibanya", "takeaway": "yes"}, "countryCodes": ["cn", "jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Cook Out": {"name": "Cook Out", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/CookOut/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5166992"}, "addTags": {"amenity": "fast_food", "brand": "Cook Out", "brand:wikidata": "Q5166992", "brand:wikipedia": "en:Cook Out (restaurant)", "cuisine": "american", "name": "Cook Out", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Cook Out", "brand:wikidata": "Q5166992", "brand:wikipedia": "en:Cook Out (restaurant)", "cuisine": "american", "name": "Cook Out", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Culver's": {"name": "Culver's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/culvers/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1143589"}, "addTags": {"amenity": "fast_food", "brand": "Culver's", "brand:wikidata": "Q1143589", "brand:wikipedia": "en:Culver's", "cuisine": "burger", "name": "Culver's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Culver's", "brand:wikidata": "Q1143589", "brand:wikipedia": "en:Culver's", "cuisine": "burger", "name": "Culver's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/DQ Grill & Chill": {"name": "DQ Grill & Chill", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/dairyqueen/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1141226"}, "addTags": {"amenity": "fast_food", "brand": "DQ Grill & Chill", "brand:wikidata": "Q1141226", "brand:wikipedia": "en:Dairy Queen", "cuisine": "burger", "name": "DQ Grill & Chill", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "DQ Grill & Chill", "brand:wikidata": "Q1141226", "brand:wikipedia": "en:Dairy Queen", "cuisine": "burger", "name": "DQ Grill & Chill", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Dairy Queen": {"name": "Dairy Queen", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/dairyqueen/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q1141226"}, "addTags": {"amenity": "fast_food", "brand": "Dairy Queen", "brand:wikidata": "Q1141226", "brand:wikipedia": "en:Dairy Queen", "cuisine": "ice_cream", "name": "Dairy Queen", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Dairy Queen", "brand:wikidata": "Q1141226", "brand:wikipedia": "en:Dairy Queen", "cuisine": "ice_cream", "name": "Dairy Queen", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Daylight Donuts": {"name": "Daylight Donuts", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/DaylightDonutFlourCo/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q48970508"}, "addTags": {"amenity": "fast_food", "brand": "Daylight Donuts", "brand:wikidata": "Q48970508", "brand:wikipedia": "en:Daylight Donuts", "cuisine": "donut", "name": "Daylight Donuts", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Daylight Donuts", "brand:wikidata": "Q48970508", "brand:wikipedia": "en:Daylight Donuts", "cuisine": "donut", "name": "Daylight Donuts", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/mexican/Del Taco": {"name": "Del Taco", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/deltaco/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q1183818"}, "addTags": {"amenity": "fast_food", "brand": "Del Taco", "brand:wikidata": "Q1183818", "brand:wikipedia": "en:Del Taco", "cuisine": "mexican", "name": "Del Taco", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Del Taco", "brand:wikidata": "Q1183818", "brand:wikipedia": "en:Del Taco", "cuisine": "mexican", "name": "Del Taco", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Dig Inn": {"name": "Dig Inn", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/diginnmarket/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q28226241"}, "addTags": {"amenity": "fast_food", "brand": "Dig Inn", "brand:wikidata": "Q28226241", "brand:wikipedia": "en:Dig Inn", "cuisine": "regional", "name": "Dig Inn", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Dig Inn", "brand:wikidata": "Q28226241", "brand:wikipedia": "en:Dig Inn", "cuisine": "regional", "name": "Dig Inn", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Domino's Pizza": {"name": "Domino's Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/Dominos/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q839466"}, "addTags": {"amenity": "fast_food", "brand": "Domino's Pizza", "brand:wikidata": "Q839466", "brand:wikipedia": "en:Domino's Pizza", "cuisine": "pizza", "name": "Domino's Pizza", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Domino's Pizza", "brand:wikidata": "Q839466", "brand:wikipedia": "en:Domino's Pizza", "cuisine": "pizza", "name": "Domino's Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Dunkin' Donuts": {"name": "Dunkin' Donuts", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/DunkinUS/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q847743"}, "addTags": {"amenity": "fast_food", "brand": "Dunkin' Donuts", "brand:wikidata": "Q847743", "brand:wikipedia": "en:Dunkin' Donuts", "cuisine": "donut", "name": "Dunkin' Donuts", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Dunkin' Donuts", "brand:wikidata": "Q847743", "brand:wikipedia": "en:Dunkin' Donuts", "cuisine": "donut", "name": "Dunkin' Donuts", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Einstein Bros. Bagels": {"name": "Einstein Bros. Bagels", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/einsteinbros/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5349788"}, "addTags": {"amenity": "fast_food", "brand": "Einstein Bros. Bagels", "brand:wikidata": "Q5349788", "brand:wikipedia": "en:Einstein Bros. Bagels", "cuisine": "bagel", "name": "Einstein Bros. Bagels", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Einstein Bros. Bagels", "brand:wikidata": "Q5349788", "brand:wikipedia": "en:Einstein Bros. Bagels", "cuisine": "bagel", "name": "Einstein Bros. Bagels", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/mexican/El Pollo Loco": {"name": "El Pollo Loco", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/ElPolloLoco/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q2353849"}, "addTags": {"amenity": "fast_food", "brand": "El Pollo Loco", "brand:wikidata": "Q2353849", "brand:wikipedia": "en:El Pollo Loco", "cuisine": "mexican", "name": "El Pollo Loco", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "El Pollo Loco", "brand:wikidata": "Q2353849", "brand:wikipedia": "en:El Pollo Loco", "cuisine": "mexican", "name": "El Pollo Loco", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Everest": {"name": "Everest", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/everest.gr/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q62273299"}, "addTags": {"amenity": "fast_food", "brand": "Everest", "brand:wikidata": "Q62273299", "cuisine": "burger", "name": "Everest", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Everest", "brand:wikidata": "Q62273299", "cuisine": "burger", "name": "Everest", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Extreme Pita": {"name": "Extreme Pita", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/TheExtremePita/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5422367"}, "addTags": {"amenity": "fast_food", "brand": "Extreme Pita", "brand:wikidata": "Q5422367", "brand:wikipedia": "en:Extreme Pita", "cuisine": "pita", "name": "Extreme Pita", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Extreme Pita", "brand:wikidata": "Q5422367", "brand:wikipedia": "en:Extreme Pita", "cuisine": "pita", "name": "Extreme Pita", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Fazoli's": {"name": "Fazoli's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Fazolis/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q1399195"}, "addTags": {"amenity": "fast_food", "brand": "Fazoli's", "brand:wikidata": "Q1399195", "brand:wikipedia": "en:Fazoli's", "cuisine": "italian", "name": "Fazoli's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Fazoli's", "brand:wikidata": "Q1399195", "brand:wikipedia": "en:Fazoli's", "cuisine": "italian", "name": "Fazoli's", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/Firehouse Subs": {"name": "Firehouse Subs", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/firehousesubs/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q5451873"}, "addTags": {"amenity": "fast_food", "brand": "Firehouse Subs", "brand:wikidata": "Q5451873", "brand:wikipedia": "en:Firehouse Subs", "cuisine": "sandwich", "name": "Firehouse Subs", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Firehouse Subs", "brand:wikidata": "Q5451873", "brand:wikipedia": "en:Firehouse Subs", "cuisine": "sandwich", "name": "Firehouse Subs", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Five Guys": {"name": "Five Guys", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/fiveguys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1131810"}, "addTags": {"amenity": "fast_food", "brand": "Five Guys", "brand:wikidata": "Q1131810", "brand:wikipedia": "en:Five Guys", "cuisine": "burger", "name": "Five Guys", "official_name": "Five Guys Burgers and Fries", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Five Guys", "brand:wikidata": "Q1131810", "brand:wikipedia": "en:Five Guys", "cuisine": "burger", "name": "Five Guys", "official_name": "Five Guys Burgers and Fries", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Freddy's": {"name": "Freddy's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/FreddysUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q5496837"}, "addTags": {"amenity": "fast_food", "brand": "Freddy's", "brand:wikidata": "Q5496837", "brand:wikipedia": "en:Freddy's Frozen Custard & Steakburgers", "cuisine": "burger", "name": "Freddy's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Freddy's", "brand:wikidata": "Q5496837", "brand:wikipedia": "en:Freddy's Frozen Custard & Steakburgers", "cuisine": "burger", "name": "Freddy's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/mexican/Freebirds": {"name": "Freebirds", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/freebirdsworldburrito/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q5500367"}, "addTags": {"amenity": "fast_food", "brand": "Freebirds", "brand:wikidata": "Q5500367", "brand:wikipedia": "en:Freebirds World Burrito", "cuisine": "mexican", "name": "Freebirds", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Freebirds", "brand:wikidata": "Q5500367", "brand:wikipedia": "en:Freebirds World Burrito", "cuisine": "mexican", "name": "Freebirds", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Gabriel Pizza": {"name": "Gabriel Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/gabrielpizza/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q5515791"}, "addTags": {"amenity": "fast_food", "brand": "Gabriel Pizza", "brand:wikidata": "Q5515791", "brand:wikipedia": "en:Gabriel Pizza", "cuisine": "pizza", "name": "Gabriel Pizza", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Gabriel Pizza", "brand:wikidata": "Q5515791", "brand:wikipedia": "en:Gabriel Pizza", "cuisine": "pizza", "name": "Gabriel Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Golden Krust Caribbean Bakery & Grill": {"name": "Golden Krust Caribbean Bakery & Grill", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/GoldenKrust/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5579615"}, "addTags": {"amenity": "fast_food", "brand": "Golden Krust Caribbean Bakery & Grill", "brand:wikidata": "Q5579615", "brand:wikipedia": "en:Golden Krust Caribbean Bakery & Grill", "cuisine": "caribbean", "name": "Golden Krust", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Golden Krust Caribbean Bakery & Grill", "brand:wikidata": "Q5579615", "brand:wikipedia": "en:Golden Krust Caribbean Bakery & Grill", "cuisine": "caribbean", "name": "Golden Krust", "takeaway": "yes"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Greenwich": {"name": "Greenwich", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/GreenwichPizza/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q2691308"}, "addTags": {"amenity": "fast_food", "brand": "Greenwich", "brand:wikidata": "Q2691308", "brand:wikipedia": "en:Greenwich Pizza", "cuisine": "pizza", "name": "Greenwich", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Greenwich", "brand:wikidata": "Q2691308", "brand:wikipedia": "en:Greenwich Pizza", "cuisine": "pizza", "name": "Greenwich", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Habib's": {"name": "Habib's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/habibsoficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q2504930"}, "addTags": {"amenity": "fast_food", "brand": "Habib's", "brand:wikidata": "Q2504930", "brand:wikipedia": "en:Habib's", "cuisine": "middle_eastern", "name": "Habib's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Habib's", "brand:wikidata": "Q2504930", "brand:wikipedia": "en:Habib's", "cuisine": "middle_eastern", "name": "Habib's", "takeaway": "yes"}, "countryCodes": ["br", "mx"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Hallo Pizza": {"name": "Hallo Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/Hallo.Pizza.Deutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q1571798"}, "addTags": {"amenity": "fast_food", "brand": "Hallo Pizza", "brand:wikidata": "Q1571798", "brand:wikipedia": "de:Hallo Pizza", "cuisine": "pizza", "name": "Hallo Pizza", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Hallo Pizza", "brand:wikidata": "Q1571798", "brand:wikipedia": "de:Hallo Pizza", "cuisine": "pizza", "name": "Hallo Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Hardee's": {"name": "Hardee's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/hardees/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1585088"}, "addTags": {"amenity": "fast_food", "brand": "Hardee's", "brand:wikidata": "Q1585088", "brand:wikipedia": "en:Hardee's", "cuisine": "burger", "name": "Hardee's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Hardee's", "brand:wikidata": "Q1585088", "brand:wikipedia": "en:Hardee's", "cuisine": "burger", "name": "Hardee's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Harvey's": {"name": "Harvey's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/HarveysCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1466184"}, "addTags": {"amenity": "fast_food", "brand": "Harvey's", "brand:wikidata": "Q1466184", "brand:wikipedia": "en:Harvey's", "cuisine": "burger", "name": "Harvey's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Harvey's", "brand:wikidata": "Q1466184", "brand:wikipedia": "en:Harvey's", "cuisine": "burger", "name": "Harvey's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Hesburger": {"name": "Hesburger", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/hesburger/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1276832"}, "addTags": {"amenity": "fast_food", "brand": "Hesburger", "brand:wikidata": "Q1276832", "brand:wikipedia": "en:Hesburger", "cuisine": "burger", "name": "Hesburger", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Hesburger", "brand:wikidata": "Q1276832", "brand:wikipedia": "en:Hesburger", "cuisine": "burger", "name": "Hesburger", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Hot Dog on a Stick": {"name": "Hot Dog on a Stick", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/HotDogonaStick/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5909922"}, "addTags": {"amenity": "fast_food", "brand": "Hot Dog on a Stick", "brand:wikidata": "Q5909922", "brand:wikipedia": "en:Hot Dog on a Stick", "cuisine": "hot_dog", "name": "Hot Dog on a Stick", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Hot Dog on a Stick", "brand:wikidata": "Q5909922", "brand:wikipedia": "en:Hot Dog on a Stick", "cuisine": "hot_dog", "name": "Hot Dog on a Stick", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Hungry Howie's": {"name": "Hungry Howie's", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/hungryhowies/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q16985303"}, "addTags": {"amenity": "fast_food", "brand": "Hungry Howie's", "brand:wikidata": "Q16985303", "brand:wikipedia": "en:Hungry Howie's Pizza", "cuisine": "pizza", "name": "Hungry Howie's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Hungry Howie's", "brand:wikidata": "Q16985303", "brand:wikipedia": "en:Hungry Howie's Pizza", "cuisine": "pizza", "name": "Hungry Howie's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Hungry Jacks": {"name": "Hungry Jacks", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/HungryJacks/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q3036373"}, "addTags": {"amenity": "fast_food", "brand": "Hungry Jacks", "brand:wikidata": "Q3036373", "brand:wikipedia": "en:Hungry Jack's", "cuisine": "burger", "name": "Hungry Jacks", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Hungry Jacks", "brand:wikidata": "Q3036373", "brand:wikipedia": "en:Hungry Jack's", "cuisine": "burger", "name": "Hungry Jacks", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/In-N-Out Burger": {"name": "In-N-Out Burger", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/innout/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1205312"}, "addTags": {"amenity": "fast_food", "brand": "In-N-Out Burger", "brand:wikidata": "Q1205312", "brand:wikipedia": "en:In-N-Out Burger", "cuisine": "burger", "name": "In-N-Out Burger", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "In-N-Out Burger", "brand:wikidata": "Q1205312", "brand:wikipedia": "en:In-N-Out Burger", "cuisine": "burger", "name": "In-N-Out Burger", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Jack in the Box": {"name": "Jack in the Box", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/jackinthebox/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1538507"}, "addTags": {"amenity": "fast_food", "brand": "Jack in the Box", "brand:wikidata": "Q1538507", "brand:wikipedia": "en:Jack in the Box", "cuisine": "burger", "name": "Jack in the Box", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Jack in the Box", "brand:wikidata": "Q1538507", "brand:wikipedia": "en:Jack in the Box", "cuisine": "burger", "name": "Jack in the Box", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Jamba Juice": {"name": "Jamba Juice", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/jambajuice/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q3088784"}, "addTags": {"amenity": "fast_food", "brand": "Jamba Juice", "brand:wikidata": "Q3088784", "brand:wikipedia": "en:Jamba Juice", "cuisine": "juice", "name": "Jamba Juice", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Jamba Juice", "brand:wikidata": "Q3088784", "brand:wikipedia": "en:Jamba Juice", "cuisine": "juice", "name": "Jamba Juice", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/Jersey Mike's Subs": {"name": "Jersey Mike's Subs", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/jerseymikes/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q6184897"}, "addTags": {"amenity": "fast_food", "brand": "Jersey Mike's Subs", "brand:wikidata": "Q6184897", "brand:wikipedia": "en:Jersey Mike's Subs", "cuisine": "sandwich", "name": "Jersey Mike's Subs", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Jersey Mike's Subs", "brand:wikidata": "Q6184897", "brand:wikipedia": "en:Jersey Mike's Subs", "cuisine": "sandwich", "name": "Jersey Mike's Subs", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/Jimmy John's": {"name": "Jimmy John's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/jimmyjohns/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q1689380"}, "addTags": {"amenity": "fast_food", "brand": "Jimmy John's", "brand:wikidata": "Q1689380", "brand:wikipedia": "en:Jimmy John's", "cuisine": "sandwich", "name": "Jimmy John's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Jimmy John's", "brand:wikidata": "Q1689380", "brand:wikipedia": "en:Jimmy John's", "cuisine": "sandwich", "name": "Jimmy John's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Jollibee": {"name": "Jollibee", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/JollibeePhilippines/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q37614"}, "addTags": {"amenity": "fast_food", "brand": "Jollibee", "brand:wikidata": "Q37614", "brand:wikipedia": "en:Jollibee", "cuisine": "burger", "name": "Jollibee", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Jollibee", "brand:wikidata": "Q37614", "brand:wikipedia": "en:Jollibee", "cuisine": "burger", "name": "Jollibee", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Just Salad": {"name": "Just Salad", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/justsalad/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q23091823"}, "addTags": {"amenity": "fast_food", "brand": "Just Salad", "brand:wikidata": "Q23091823", "brand:wikipedia": "en:Just Salad", "cuisine": "salad", "name": "Just Salad", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Just Salad", "brand:wikidata": "Q23091823", "brand:wikipedia": "en:Just Salad", "cuisine": "salad", "name": "Just Salad", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/KFC": {"name": "KFC", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/KFC/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q524757"}, "addTags": {"amenity": "fast_food", "brand": "KFC", "brand:wikidata": "Q524757", "brand:wikipedia": "en:KFC", "cuisine": "chicken", "name": "KFC", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "KFC", "brand:wikidata": "Q524757", "brand:wikipedia": "en:KFC", "cuisine": "chicken", "name": "KFC", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Kochlöffel": {"name": "Kochlöffel", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Kochloeffel.Deutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q315539"}, "addTags": {"amenity": "fast_food", "brand": "Kochlöffel", "brand:wikidata": "Q315539", "brand:wikipedia": "en:Kochlöffel", "cuisine": "burger", "name": "Kochlöffel", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Kochlöffel", "brand:wikidata": "Q315539", "brand:wikipedia": "en:Kochlöffel", "cuisine": "burger", "name": "Kochlöffel", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["de", "pl", "tr"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Kotipizza": {"name": "Kotipizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/kotipizza/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q1628625"}, "addTags": {"amenity": "fast_food", "brand": "Kotipizza", "brand:wikidata": "Q1628625", "brand:wikipedia": "en:Kotipizza", "cuisine": "pizza", "name": "Kotipizza", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Kotipizza", "brand:wikidata": "Q1628625", "brand:wikipedia": "en:Kotipizza", "cuisine": "pizza", "name": "Kotipizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Krispy Kreme": {"name": "Krispy Kreme", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/KrispyKreme/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q1192805"}, "addTags": {"amenity": "fast_food", "brand": "Krispy Kreme", "brand:wikidata": "Q1192805", "brand:wikipedia": "en:Krispy Kreme", "cuisine": "donut", "name": "Krispy Kreme", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Krispy Kreme", "brand:wikidata": "Q1192805", "brand:wikipedia": "en:Krispy Kreme", "cuisine": "donut", "name": "Krispy Kreme", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Krystal": {"name": "Krystal", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Krystal/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q472195"}, "addTags": {"amenity": "fast_food", "brand": "Krystal", "brand:wikidata": "Q472195", "brand:wikipedia": "en:Krystal (restaurant)", "cuisine": "burger", "name": "Krystal", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Krystal", "brand:wikidata": "Q472195", "brand:wikipedia": "en:Krystal (restaurant)", "cuisine": "burger", "name": "Krystal", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Little Caesars": {"name": "Little Caesars", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/LittleCaesars/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q1393809"}, "addTags": {"amenity": "fast_food", "brand": "Little Caesars", "brand:wikidata": "Q1393809", "brand:wikipedia": "en:Little Caesars", "cuisine": "pizza", "name": "Little Caesars", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Little Caesars", "brand:wikidata": "Q1393809", "brand:wikipedia": "en:Little Caesars", "cuisine": "pizza", "name": "Little Caesars", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Long John Silver's": {"name": "Long John Silver's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/LongJohnSilvers/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q1535221"}, "addTags": {"amenity": "fast_food", "brand": "Long John Silver's", "brand:wikidata": "Q1535221", "brand:wikipedia": "en:Long John Silver's", "cuisine": "seafood", "name": "Long John Silver's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Long John Silver's", "brand:wikidata": "Q1535221", "brand:wikipedia": "en:Long John Silver's", "cuisine": "seafood", "name": "Long John Silver's", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Lotteria": {"name": "Lotteria", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ilovelotteria/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q249525"}, "addTags": {"amenity": "fast_food", "brand": "Lotteria", "brand:wikidata": "Q249525", "brand:wikipedia": "en:Lotteria", "cuisine": "burger", "name": "Lotteria", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Lotteria", "brand:wikidata": "Q249525", "brand:wikipedia": "en:Lotteria", "cuisine": "burger", "name": "Lotteria", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Mang Inasal": {"name": "Mang Inasal", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/MangInasalPhilippines/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q6748573"}, "addTags": {"amenity": "fast_food", "brand": "Mang Inasal", "brand:wikidata": "Q6748573", "brand:wikipedia": "en:Mang Inasal", "cuisine": "barbecue", "name": "Mang Inasal", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Mang Inasal", "brand:wikidata": "Q6748573", "brand:wikipedia": "en:Mang Inasal", "cuisine": "barbecue", "name": "Mang Inasal", "takeaway": "yes"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Max": {"name": "Max", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/maxburgers/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1912172"}, "addTags": {"amenity": "fast_food", "brand": "Max", "brand:wikidata": "Q1912172", "brand:wikipedia": "en:Max Hamburgers", "cuisine": "burger", "name": "Max", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Max", "brand:wikidata": "Q1912172", "brand:wikipedia": "en:Max Hamburgers", "cuisine": "burger", "name": "Max", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/McDonald's": {"name": "McDonald's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q38076"}, "addTags": {"amenity": "fast_food", "brand": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "en:McDonald's", "cuisine": "burger", "name": "McDonald's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "en:McDonald's", "cuisine": "burger", "name": "McDonald's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/mexican/Mighty Taco": {"name": "Mighty Taco", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/MyMightyTaco/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q6844210"}, "addTags": {"amenity": "fast_food", "brand": "Mighty Taco", "brand:wikidata": "Q6844210", "brand:wikipedia": "en:Mighty Taco", "cuisine": "mexican", "name": "Mighty Taco", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Mighty Taco", "brand:wikidata": "Q6844210", "brand:wikipedia": "en:Mighty Taco", "cuisine": "mexican", "name": "Mighty Taco", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Minute Burger": {"name": "Minute Burger", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/MinuteBurger/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q62273503"}, "addTags": {"amenity": "fast_food", "brand": "Minute Burger", "brand:wikidata": "Q62273503", "cuisine": "burger", "name": "Minute Burger", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Minute Burger", "brand:wikidata": "Q62273503", "cuisine": "burger", "name": "Minute Burger", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/mexican/Moe's Southwest Grill": {"name": "Moe's Southwest Grill", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/MoesSouthwestGrill/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q6889938"}, "addTags": {"amenity": "fast_food", "brand": "Moe's Southwest Grill", "brand:wikidata": "Q6889938", "brand:wikipedia": "en:Moe's Southwest Grill", "cuisine": "mexican", "name": "Moe's Southwest Grill", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Moe's Southwest Grill", "brand:wikidata": "Q6889938", "brand:wikipedia": "en:Moe's Southwest Grill", "cuisine": "mexican", "name": "Moe's Southwest Grill", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/Mr. Sub": {"name": "Mr. Sub", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/mrsub/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q6929225"}, "addTags": {"amenity": "fast_food", "brand": "Mr. Sub", "brand:wikidata": "Q6929225", "brand:wikipedia": "en:Mr. Sub", "cuisine": "sandwich", "name": "Mr. Sub", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Mr. Sub", "brand:wikidata": "Q6929225", "brand:wikipedia": "en:Mr. Sub", "cuisine": "sandwich", "name": "Mr. Sub", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/New York Pizza": {"name": "New York Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/newyorkpizza.nl/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q2639128"}, "addTags": {"amenity": "fast_food", "brand": "New York Pizza", "brand:wikidata": "Q2639128", "brand:wikipedia": "nl:New York Pizza", "cuisine": "pizza", "name": "New York Pizza", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "New York Pizza", "brand:wikidata": "Q2639128", "brand:wikipedia": "nl:New York Pizza", "cuisine": "pizza", "name": "New York Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Nordsee": {"name": "Nordsee", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/NORDSEEDeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q74866"}, "addTags": {"amenity": "fast_food", "brand": "Nordsee", "brand:wikidata": "Q74866", "brand:wikipedia": "en:Nordsee", "cuisine": "seafood", "name": "Nordsee", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Nordsee", "brand:wikidata": "Q74866", "brand:wikipedia": "en:Nordsee", "cuisine": "seafood", "name": "Nordsee", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Num Pang": {"name": "Num Pang", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/NumPangKitchen/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q62079702"}, "addTags": {"amenity": "fast_food", "brand": "Num Pang", "brand:wikidata": "Q62079702", "brand:wikipedia": "en:Num Pang", "cuisine": "cambodian, sandwich", "name": "Num Pang", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Num Pang", "brand:wikidata": "Q62079702", "brand:wikipedia": "en:Num Pang", "cuisine": "cambodian, sandwich", "name": "Num Pang", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/mexican/O'Tacos": {"name": "O'Tacos", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/Otacos.France/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q28494040"}, "addTags": {"amenity": "fast_food", "brand": "O'Tacos", "brand:wikidata": "Q28494040", "brand:wikipedia": "en:O'Tacos", "cuisine": "mexican", "name": "O'Tacos", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "O'Tacos", "brand:wikidata": "Q28494040", "brand:wikipedia": "en:O'Tacos", "cuisine": "mexican", "name": "O'Tacos", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Oporto": {"name": "Oporto", "icon": "maki-fast-food", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q4412342"}, "addTags": {"amenity": "fast_food", "brand": "Oporto", "brand:wikidata": "Q4412342", "brand:wikipedia": "en:Oporto (restaurant)", "name": "Oporto", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Oporto", "brand:wikidata": "Q4412342", "brand:wikipedia": "en:Oporto (restaurant)", "name": "Oporto", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Pal's": {"name": "Pal's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Palsweb/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q7126094"}, "addTags": {"amenity": "fast_food", "brand": "Pal's", "brand:wikidata": "Q7126094", "brand:wikipedia": "en:Pal's", "cuisine": "burger", "name": "Pal's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Pal's", "brand:wikidata": "Q7126094", "brand:wikipedia": "en:Pal's", "cuisine": "burger", "name": "Pal's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Panago": {"name": "Panago", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/panago/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q17111672"}, "addTags": {"amenity": "fast_food", "brand": "Panago", "brand:wikidata": "Q17111672", "brand:wikipedia": "en:Panago", "cuisine": "pizza", "name": "Panago", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Panago", "brand:wikidata": "Q17111672", "brand:wikipedia": "en:Panago", "cuisine": "pizza", "name": "Panago", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Panda Express": {"name": "Panda Express", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/PandaExpress/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q1358690"}, "addTags": {"amenity": "fast_food", "brand": "Panda Express", "brand:wikidata": "Q1358690", "brand:wikipedia": "en:Panda Express", "cuisine": "chinese", "name": "Panda Express", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Panda Express", "brand:wikidata": "Q1358690", "brand:wikipedia": "en:Panda Express", "cuisine": "chinese", "name": "Panda Express", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/Panera Bread": {"name": "Panera Bread", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/panerabread/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q7130852"}, "addTags": {"amenity": "fast_food", "brand": "Panera Bread", "brand:wikidata": "Q7130852", "brand:wikipedia": "en:Panera Bread", "cuisine": "sandwich", "name": "Panera Bread", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Panera Bread", "brand:wikidata": "Q7130852", "brand:wikipedia": "en:Panera Bread", "cuisine": "sandwich", "name": "Panera Bread", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Papa John's": {"name": "Papa John's", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/papajohns/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q2759586"}, "addTags": {"amenity": "fast_food", "brand": "Papa John's", "brand:wikidata": "Q2759586", "brand:wikipedia": "en:Papa John's Pizza", "cuisine": "pizza", "name": "Papa John's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Papa John's", "brand:wikidata": "Q2759586", "brand:wikipedia": "en:Papa John's Pizza", "cuisine": "pizza", "name": "Papa John's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Papa Murphy's": {"name": "Papa Murphy's", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/papamurphyspizza/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q7132349"}, "addTags": {"amenity": "fast_food", "brand": "Papa Murphy's", "brand:wikidata": "Q7132349", "brand:wikipedia": "en:Papa Murphy's", "cuisine": "pizza", "name": "Papa Murphy's", "official_name": "Papa Murphy's Take 'N' Bake Pizza", "takeaway": "only"}, "removeTags": {"amenity": "fast_food", "brand": "Papa Murphy's", "brand:wikidata": "Q7132349", "brand:wikipedia": "en:Papa Murphy's", "cuisine": "pizza", "name": "Papa Murphy's", "official_name": "Papa Murphy's Take 'N' Bake Pizza", "takeaway": "only"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/Penn Station": {"name": "Penn Station", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/pennstation/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q7163311"}, "addTags": {"amenity": "fast_food", "brand": "Penn Station", "brand:wikidata": "Q7163311", "brand:wikipedia": "en:Penn Station (restaurant)", "cuisine": "sandwich", "name": "Penn Station", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Penn Station", "brand:wikidata": "Q7163311", "brand:wikipedia": "en:Penn Station (restaurant)", "cuisine": "sandwich", "name": "Penn Station", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Philly Pretzel Factory": {"name": "Philly Pretzel Factory", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/PhillyPretzel/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q60097339"}, "addTags": {"amenity": "fast_food", "brand": "Philly Pretzel Factory", "brand:wikidata": "Q60097339", "cuisine": "pretzel", "name": "Philly Pretzel Factory", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Philly Pretzel Factory", "brand:wikidata": "Q60097339", "cuisine": "pretzel", "name": "Philly Pretzel Factory", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/Pinulito": {"name": "Pinulito", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/elsabordenuestragente/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q62273613"}, "addTags": {"amenity": "fast_food", "brand": "Pinulito", "brand:wikidata": "Q62273613", "cuisine": "chicken", "name": "Pinulito", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Pinulito", "brand:wikidata": "Q62273613", "cuisine": "chicken", "name": "Pinulito", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["gt"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Pita Pit": {"name": "Pita Pit", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/pitapitusa/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q7757289"}, "addTags": {"amenity": "fast_food", "brand": "Pita Pit", "brand:wikidata": "Q7757289", "brand:wikipedia": "en:Pita Pit", "cuisine": "pita", "name": "Pita Pit", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Pita Pit", "brand:wikidata": "Q7757289", "brand:wikipedia": "en:Pita Pit", "cuisine": "pita", "name": "Pita Pit", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Pizza Hut Delivery": {"name": "Pizza Hut Delivery", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pizzahutus/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q191615"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Hut", "brand:wikidata": "Q191615", "brand:wikipedia": "en:Pizza Hut", "cuisine": "pizza", "name": "Pizza Hut Delivery", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Pizza Hut", "brand:wikidata": "Q191615", "brand:wikipedia": "en:Pizza Hut", "cuisine": "pizza", "name": "Pizza Hut Delivery", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Pizza Hut Express": {"name": "Pizza Hut Express", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pizzahutus/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q191615"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Hut", "brand:wikidata": "Q191615", "brand:wikipedia": "en:Pizza Hut", "cuisine": "pizza", "name": "Pizza Hut Express", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Pizza Hut", "brand:wikidata": "Q191615", "brand:wikipedia": "en:Pizza Hut", "cuisine": "pizza", "name": "Pizza Hut Express", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Pizza Nova": {"name": "Pizza Nova", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/PizzaNova/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q7199971"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Nova", "brand:wikidata": "Q7199971", "brand:wikipedia": "en:Pizza Nova", "cuisine": "pizza", "name": "Pizza Nova", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Pizza Nova", "brand:wikidata": "Q7199971", "brand:wikipedia": "en:Pizza Nova", "cuisine": "pizza", "name": "Pizza Nova", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Pizza Pizza": {"name": "Pizza Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/PizzaPizzaCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q1194143"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Pizza", "brand:wikidata": "Q1194143", "brand:wikipedia": "en:Pizza Pizza", "cuisine": "pizza", "name": "Pizza Pizza", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Pizza Pizza", "brand:wikidata": "Q1194143", "brand:wikipedia": "en:Pizza Pizza", "cuisine": "pizza", "name": "Pizza Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/Pollo Campero": {"name": "Pollo Campero", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/CamperoUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q942741"}, "addTags": {"amenity": "fast_food", "brand": "Pollo Campero", "brand:wikidata": "Q942741", "brand:wikipedia": "en:Pollo Campero", "cuisine": "chicken", "name": "Pollo Campero", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Pollo Campero", "brand:wikidata": "Q942741", "brand:wikipedia": "en:Pollo Campero", "cuisine": "chicken", "name": "Pollo Campero", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/Pollo Granjero (Costa Rica)": {"name": "Pollo Granjero (Costa Rica)", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/PolloGranjeroCostaRica/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q62273665"}, "addTags": {"amenity": "fast_food", "brand": "Pollo Granjero", "brand:wikidata": "Q62273665", "cuisine": "chicken", "name": "Pollo Granjero", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Pollo Granjero", "brand:wikidata": "Q62273665", "cuisine": "chicken", "name": "Pollo Granjero", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["cr"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/Pollo Granjero (Guatemala)": {"name": "Pollo Granjero (Guatemala)", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/PolloGranjeroGuatemala/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q62273652"}, "addTags": {"amenity": "fast_food", "brand": "Pollo Granjero", "brand:wikidata": "Q62273652", "cuisine": "chicken", "name": "Pollo Granjero", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Pollo Granjero", "brand:wikidata": "Q62273652", "cuisine": "chicken", "name": "Pollo Granjero", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["gt"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/Pollo Tropical": {"name": "Pollo Tropical", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/PolloTropical/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q3395356"}, "addTags": {"amenity": "fast_food", "brand": "Pollo Tropical", "brand:wikidata": "Q3395356", "brand:wikipedia": "en:Pollo Tropical", "cuisine": "chicken", "name": "Pollo Tropical", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Pollo Tropical", "brand:wikidata": "Q3395356", "brand:wikipedia": "en:Pollo Tropical", "cuisine": "chicken", "name": "Pollo Tropical", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/Popeyes": {"name": "Popeyes", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/PopeyesLouisianaKitchen/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q1330910"}, "addTags": {"amenity": "fast_food", "brand": "Popeyes", "brand:wikidata": "Q1330910", "brand:wikipedia": "en:Popeyes", "cuisine": "chicken", "name": "Popeyes", "official_name": "Popeyes Louisiana Kitchen", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Popeyes", "brand:wikidata": "Q1330910", "brand:wikipedia": "en:Popeyes", "cuisine": "chicken", "name": "Popeyes", "official_name": "Popeyes Louisiana Kitchen", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/Potbelly": {"name": "Potbelly", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/potbellysandwichshop/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q7234777"}, "addTags": {"amenity": "fast_food", "brand": "Potbelly", "brand:wikidata": "Q7234777", "brand:wikipedia": "en:Potbelly Sandwich Shop", "cuisine": "sandwich", "name": "Potbelly", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Potbelly", "brand:wikidata": "Q7234777", "brand:wikipedia": "en:Potbelly Sandwich Shop", "cuisine": "sandwich", "name": "Potbelly", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/Pret A Manger": {"name": "Pret A Manger", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/pretamangerusa/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q2109109"}, "addTags": {"amenity": "fast_food", "brand": "Pret A Manger", "brand:wikidata": "Q2109109", "brand:wikipedia": "en:Pret a Manger", "cuisine": "sandwich", "name": "Pret A Manger", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Pret A Manger", "brand:wikidata": "Q2109109", "brand:wikipedia": "en:Pret a Manger", "cuisine": "sandwich", "name": "Pret A Manger", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/mexican/Qdoba": {"name": "Qdoba", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/qdoba/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q1363885"}, "addTags": {"amenity": "fast_food", "brand": "Qdoba", "brand:wikidata": "Q1363885", "brand:wikipedia": "en:Qdoba", "cuisine": "mexican", "name": "Qdoba", "official_name": "Qdoba Mexican Grill", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Qdoba", "brand:wikidata": "Q1363885", "brand:wikipedia": "en:Qdoba", "cuisine": "mexican", "name": "Qdoba", "official_name": "Qdoba Mexican Grill", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Quick": {"name": "Quick", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/QuickBelgium/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q286494"}, "addTags": {"amenity": "fast_food", "brand": "Quick", "brand:wikidata": "Q286494", "brand:wikipedia": "en:Quick (restaurant)", "cuisine": "burger", "name": "Quick", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Quick", "brand:wikidata": "Q286494", "brand:wikipedia": "en:Quick (restaurant)", "cuisine": "burger", "name": "Quick", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/Quiznos": {"name": "Quiznos", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Quiznos/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q1936229"}, "addTags": {"amenity": "fast_food", "brand": "Quiznos", "brand:wikidata": "Q1936229", "brand:wikipedia": "en:Quiznos", "cuisine": "sandwich", "name": "Quiznos", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Quiznos", "brand:wikidata": "Q1936229", "brand:wikipedia": "en:Quiznos", "cuisine": "sandwich", "name": "Quiznos", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/Raising Cane's": {"name": "Raising Cane's", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/RaisingCanesChickenFingers/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q7285144"}, "addTags": {"amenity": "fast_food", "brand": "Raising Cane's", "brand:wikidata": "Q7285144", "brand:wikipedia": "en:Raising Cane's Chicken Fingers", "cuisine": "chicken", "name": "Raising Cane's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Raising Cane's", "brand:wikidata": "Q7285144", "brand:wikipedia": "en:Raising Cane's Chicken Fingers", "cuisine": "chicken", "name": "Raising Cane's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Rally's": {"name": "Rally's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/checkersrallys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q3419341"}, "addTags": {"amenity": "fast_food", "brand": "Rally's", "brand:wikidata": "Q3419341", "brand:wikipedia": "en:Checkers and Rally's", "cuisine": "burger", "name": "Rally's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Rally's", "brand:wikidata": "Q3419341", "brand:wikipedia": "en:Checkers and Rally's", "cuisine": "burger", "name": "Rally's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/Red Rooster": {"name": "Red Rooster", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/RedRoosterAU/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q376466"}, "addTags": {"amenity": "fast_food", "brand": "Red Rooster", "brand:wikidata": "Q376466", "brand:wikipedia": "en:Red Rooster", "cuisine": "chicken", "name": "Red Rooster", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Red Rooster", "brand:wikidata": "Q376466", "brand:wikipedia": "en:Red Rooster", "cuisine": "chicken", "name": "Red Rooster", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Sbarro": {"name": "Sbarro", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/Sbarro/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q2589409"}, "addTags": {"amenity": "fast_food", "brand": "Sbarro", "brand:wikidata": "Q2589409", "brand:wikipedia": "en:Sbarro", "cuisine": "pizza", "name": "Sbarro", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Sbarro", "brand:wikidata": "Q2589409", "brand:wikipedia": "en:Sbarro", "cuisine": "pizza", "name": "Sbarro", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/Schlotzsky's": {"name": "Schlotzsky's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Schlotzskys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q2244796"}, "addTags": {"amenity": "fast_food", "brand": "Schlotzsky's", "brand:wikidata": "Q2244796", "brand:wikipedia": "en:Schlotzsky's", "cuisine": "sandwich", "name": "Schlotzsky's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Schlotzsky's", "brand:wikidata": "Q2244796", "brand:wikipedia": "en:Schlotzsky's", "cuisine": "sandwich", "name": "Schlotzsky's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Shake Shack": {"name": "Shake Shack", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/shakeshack/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1058722"}, "addTags": {"amenity": "fast_food", "brand": "Shake Shack", "brand:wikidata": "Q1058722", "brand:wikipedia": "en:Shake Shack", "cuisine": "burger", "name": "Shake Shack", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Shake Shack", "brand:wikidata": "Q1058722", "brand:wikipedia": "en:Shake Shack", "cuisine": "burger", "name": "Shake Shack", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Sibylla": {"name": "Sibylla", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/sibyllasverige/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q488643"}, "addTags": {"amenity": "fast_food", "brand": "Sibylla", "brand:wikidata": "Q488643", "brand:wikipedia": "en:Sibylla (fast food)", "cuisine": "burger", "name": "Sibylla", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Sibylla", "brand:wikidata": "Q488643", "brand:wikipedia": "en:Sibylla (fast food)", "cuisine": "burger", "name": "Sibylla", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["fi", "se"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Smashburger": {"name": "Smashburger", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/smashburger/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q17061332"}, "addTags": {"amenity": "fast_food", "brand": "Smashburger", "brand:wikidata": "Q17061332", "brand:wikipedia": "en:Smashburger", "cuisine": "burger", "name": "Smashburger", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Smashburger", "brand:wikidata": "Q17061332", "brand:wikipedia": "en:Smashburger", "cuisine": "burger", "name": "Smashburger", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Smoothie King": {"name": "Smoothie King", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/SmoothieKing/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5491421"}, "addTags": {"amenity": "fast_food", "brand": "Smoothie King", "brand:wikidata": "Q5491421", "brand:wikipedia": "en:Smoothie King", "cuisine": "juice", "name": "Smoothie King", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Smoothie King", "brand:wikidata": "Q5491421", "brand:wikipedia": "en:Smoothie King", "cuisine": "juice", "name": "Smoothie King", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Sonic": {"name": "Sonic", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/sonicdrivein/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q7561808"}, "addTags": {"amenity": "fast_food", "brand": "Sonic", "brand:wikidata": "Q7561808", "brand:wikipedia": "en:Sonic Drive-In", "cuisine": "burger", "name": "Sonic", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Sonic", "brand:wikidata": "Q7561808", "brand:wikipedia": "en:Sonic Drive-In", "cuisine": "burger", "name": "Sonic", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Steers": {"name": "Steers", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/OfficialSteers/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q56599145"}, "addTags": {"amenity": "fast_food", "brand": "Steers", "brand:wikidata": "Q56599145", "brand:wikipedia": "en:Steers", "cuisine": "burger", "name": "Steers", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Steers", "brand:wikidata": "Q56599145", "brand:wikipedia": "en:Steers", "cuisine": "burger", "name": "Steers", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/Subway": {"name": "Subway", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/subway/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q244457"}, "addTags": {"amenity": "fast_food", "brand": "Subway", "brand:wikidata": "Q244457", "brand:wikipedia": "en:Subway (restaurant)", "cuisine": "sandwich", "name": "Subway", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Subway", "brand:wikidata": "Q244457", "brand:wikipedia": "en:Subway (restaurant)", "cuisine": "sandwich", "name": "Subway", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Supermac's": {"name": "Supermac's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/supermacsofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q7643750"}, "addTags": {"amenity": "fast_food", "brand": "Supermac's", "brand:wikidata": "Q7643750", "brand:wikipedia": "en:Supermac's", "cuisine": "burger", "name": "Supermac's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Supermac's", "brand:wikidata": "Q7643750", "brand:wikipedia": "en:Supermac's", "cuisine": "burger", "name": "Supermac's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/TCBY": {"name": "TCBY", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/tcby/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q7669631"}, "addTags": {"amenity": "fast_food", "brand": "TCBY", "brand:wikidata": "Q7669631", "brand:wikipedia": "en:TCBY", "cuisine": "frozen_yogurt", "name": "TCBY", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "TCBY", "brand:wikidata": "Q7669631", "brand:wikipedia": "en:TCBY", "cuisine": "frozen_yogurt", "name": "TCBY", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Taco Bell": {"name": "Taco Bell", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/tacobell/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q752941"}, "addTags": {"amenity": "fast_food", "brand": "Taco Bell", "brand:wikidata": "Q752941", "brand:wikipedia": "en:Taco Bell", "cuisine": "tex-mex", "name": "Taco Bell", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Taco Bell", "brand:wikidata": "Q752941", "brand:wikipedia": "en:Taco Bell", "cuisine": "tex-mex", "name": "Taco Bell", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/mexican/Taco Bueno": {"name": "Taco Bueno", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/buenoheadquarters/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q7673958"}, "addTags": {"amenity": "fast_food", "brand": "Taco Bueno", "brand:wikidata": "Q7673958", "brand:wikipedia": "en:Taco Bueno", "cuisine": "mexican", "name": "Taco Bueno", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Taco Bueno", "brand:wikidata": "Q7673958", "brand:wikipedia": "en:Taco Bueno", "cuisine": "mexican", "name": "Taco Bueno", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/mexican/Taco Cabana": {"name": "Taco Cabana", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/TacoCabana/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q12070488"}, "addTags": {"amenity": "fast_food", "brand": "Taco Cabana", "brand:wikidata": "Q12070488", "brand:wikipedia": "en:Taco Cabana", "cuisine": "mexican", "name": "Taco Cabana", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Taco Cabana", "brand:wikidata": "Q12070488", "brand:wikipedia": "en:Taco Cabana", "cuisine": "mexican", "name": "Taco Cabana", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/mexican/Taco Del Mar": {"name": "Taco Del Mar", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/tacodelmarcorp/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q7673972"}, "addTags": {"amenity": "fast_food", "brand": "Taco Del Mar", "brand:wikidata": "Q7673972", "brand:wikipedia": "en:Taco del Mar", "cuisine": "mexican", "name": "Taco Del Mar", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Taco Del Mar", "brand:wikidata": "Q7673972", "brand:wikipedia": "en:Taco del Mar", "cuisine": "mexican", "name": "Taco Del Mar", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/mexican/Taco John's": {"name": "Taco John's", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/tacojohns/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q7673962"}, "addTags": {"amenity": "fast_food", "brand": "Taco John's", "brand:wikidata": "Q7673962", "brand:wikipedia": "en:Taco John's", "cuisine": "mexican", "name": "Taco John's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Taco John's", "brand:wikidata": "Q7673962", "brand:wikipedia": "en:Taco John's", "cuisine": "mexican", "name": "Taco John's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/mexican/Taco Time": {"name": "Taco Time", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/tacotime/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "mexican", "brand:wikidata": "Q7673969"}, "addTags": {"amenity": "fast_food", "brand": "Taco Time", "brand:wikidata": "Q7673969", "brand:wikipedia": "en:Taco Time", "cuisine": "mexican", "name": "Taco Time", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Taco Time", "brand:wikidata": "Q7673969", "brand:wikipedia": "en:Taco Time", "cuisine": "mexican", "name": "Taco Time", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Ted’s Hot Dogs": {"name": "Ted’s Hot Dogs", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/TedsHotDogs/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q7692930"}, "addTags": {"amenity": "fast_food", "brand": "Ted’s Hot Dogs", "brand:wikidata": "Q7692930", "brand:wikipedia": "en:Ted's Hot Dogs", "cuisine": "sausage", "name": "Ted’s Hot Dogs", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Ted’s Hot Dogs", "brand:wikidata": "Q7692930", "brand:wikipedia": "en:Ted's Hot Dogs", "cuisine": "sausage", "name": "Ted’s Hot Dogs", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Telepizza": {"name": "Telepizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/telepizza/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q2699863"}, "addTags": {"amenity": "fast_food", "brand": "Telepizza", "brand:wikidata": "Q2699863", "brand:wikipedia": "en:Telepizza", "cuisine": "pizza", "name": "Telepizza", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Telepizza", "brand:wikidata": "Q2699863", "brand:wikipedia": "en:Telepizza", "cuisine": "pizza", "name": "Telepizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Thai Express (Singapore)": {"name": "Thai Express (Singapore)", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ThaiExpressSG/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q7709119"}, "addTags": {"amenity": "fast_food", "brand": "Thai Express", "brand:wikidata": "Q7709119", "brand:wikipedia": "en:Thai Express", "cuisine": "thai", "name": "Thai Express", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Thai Express", "brand:wikidata": "Q7709119", "brand:wikipedia": "en:Thai Express", "cuisine": "thai", "name": "Thai Express", "takeaway": "yes"}, "countryCodes": ["sg"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Thaï Express (North America)": {"name": "Thaï Express (North America)", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/EatThaiExpress/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q7711610"}, "addTags": {"amenity": "fast_food", "brand": "Thaï Express", "brand:wikidata": "Q7711610", "brand:wikipedia": "en:Thaï Express", "cuisine": "thai", "name": "Thaï Express", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Thaï Express", "brand:wikidata": "Q7711610", "brand:wikipedia": "en:Thaï Express", "cuisine": "thai", "name": "Thaï Express", "takeaway": "yes"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/The Habit Burger Grill": {"name": "The Habit Burger Grill", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/habitburger/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q18158741"}, "addTags": {"amenity": "fast_food", "brand": "The Habit Burger Grill", "brand:wikidata": "Q18158741", "brand:wikipedia": "en:The Habit Burger Grill", "cuisine": "burger", "name": "The Habit Burger Grill", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "The Habit Burger Grill", "brand:wikidata": "Q18158741", "brand:wikipedia": "en:The Habit Burger Grill", "cuisine": "burger", "name": "The Habit Burger Grill", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/The Pizza Company": {"name": "The Pizza Company", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/thepizzacompany/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q2413520"}, "addTags": {"amenity": "fast_food", "brand": "The Pizza Company", "brand:wikidata": "Q2413520", "brand:wikipedia": "en:The Pizza Company", "cuisine": "pizza", "name": "The Pizza Company", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "The Pizza Company", "brand:wikidata": "Q2413520", "brand:wikipedia": "en:The Pizza Company", "cuisine": "pizza", "name": "The Pizza Company", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/Togo's": {"name": "Togo's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/togossandwiches/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q3530375"}, "addTags": {"amenity": "fast_food", "brand": "Togo's", "brand:wikidata": "Q3530375", "brand:wikipedia": "en:Togo's", "cuisine": "sandwich", "name": "Togo's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Togo's", "brand:wikidata": "Q3530375", "brand:wikipedia": "en:Togo's", "cuisine": "sandwich", "name": "Togo's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Veggie Grill": {"name": "Veggie Grill", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/veggiegrill/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q18636427"}, "addTags": {"amenity": "fast_food", "brand": "Veggie Grill", "brand:wikidata": "Q18636427", "brand:wikipedia": "en:Veggie Grill", "cuisine": "american", "diet:vegan": "only", "name": "Veggie Grill", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Veggie Grill", "brand:wikidata": "Q18636427", "brand:wikipedia": "en:Veggie Grill", "cuisine": "american", "diet:vegan": "only", "name": "Veggie Grill", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Wendy's": {"name": "Wendy's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/wendys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q550258"}, "addTags": {"amenity": "fast_food", "brand": "Wendy's", "brand:wikidata": "Q550258", "brand:wikipedia": "en:Wendy's", "cuisine": "burger", "name": "Wendy's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Wendy's", "brand:wikidata": "Q550258", "brand:wikipedia": "en:Wendy's", "cuisine": "burger", "name": "Wendy's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Whataburger": {"name": "Whataburger", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/whataburger/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q376627"}, "addTags": {"amenity": "fast_food", "brand": "Whataburger", "brand:wikidata": "Q376627", "brand:wikipedia": "en:Whataburger", "cuisine": "burger", "name": "Whataburger", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Whataburger", "brand:wikidata": "Q376627", "brand:wikipedia": "en:Whataburger", "cuisine": "burger", "name": "Whataburger", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/Which Wich?": {"name": "Which Wich?", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/whichwich/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q7993556"}, "addTags": {"amenity": "fast_food", "brand": "Which Wich?", "brand:wikidata": "Q7993556", "brand:wikipedia": "en:Which Wich?", "cuisine": "sandwich", "name": "Which Wich?", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Which Wich?", "brand:wikidata": "Q7993556", "brand:wikipedia": "en:Which Wich?", "cuisine": "sandwich", "name": "Which Wich?", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/White Castle": {"name": "White Castle", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/WhiteCastle/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1244034"}, "addTags": {"amenity": "fast_food", "brand": "White Castle", "brand:wikidata": "Q1244034", "brand:wikipedia": "en:White Castle (restaurant)", "cuisine": "burger", "name": "White Castle", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "White Castle", "brand:wikidata": "Q1244034", "brand:wikipedia": "en:White Castle (restaurant)", "cuisine": "burger", "name": "White Castle", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Wienerschnitzel": {"name": "Wienerschnitzel", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Wienerschnitzel/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q324679"}, "addTags": {"amenity": "fast_food", "brand": "Wienerschnitzel", "brand:wikidata": "Q324679", "brand:wikipedia": "en:Wienerschnitzel", "cuisine": "hot_dog", "name": "Wienerschnitzel", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Wienerschnitzel", "brand:wikidata": "Q324679", "brand:wikipedia": "en:Wienerschnitzel", "cuisine": "hot_dog", "name": "Wienerschnitzel", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Wimpy": {"name": "Wimpy", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/wimpyrestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q2811992"}, "addTags": {"amenity": "fast_food", "brand": "Wimpy", "brand:wikidata": "Q2811992", "brand:wikipedia": "en:Wimpy (restaurant)", "cuisine": "burger", "name": "Wimpy", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Wimpy", "brand:wikidata": "Q2811992", "brand:wikipedia": "en:Wimpy (restaurant)", "cuisine": "burger", "name": "Wimpy", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Xi'an Famous Foods": {"name": "Xi'an Famous Foods", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/xianfoods/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q8044020"}, "addTags": {"amenity": "fast_food", "brand": "Xi'an Famous Foods", "brand:wikidata": "Q8044020", "brand:wikipedia": "en:Xi'an Famous Foods", "cuisine": "chinese", "name": "Xi'an Famous Foods", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Xi'an Famous Foods", "brand:wikidata": "Q8044020", "brand:wikipedia": "en:Xi'an Famous Foods", "cuisine": "chinese", "name": "Xi'an Famous Foods", "takeaway": "yes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/Zaxby's": {"name": "Zaxby's", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/Zaxbys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q8067525"}, "addTags": {"amenity": "fast_food", "brand": "Zaxby's", "brand:wikidata": "Q8067525", "brand:wikipedia": "en:Zaxby's", "cuisine": "chicken", "name": "Zaxby's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Zaxby's", "brand:wikidata": "Q8067525", "brand:wikipedia": "en:Zaxby's", "cuisine": "chicken", "name": "Zaxby's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/immergrün": {"name": "immergrün", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mein.immergruen/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q62589254"}, "addTags": {"amenity": "fast_food", "brand": "immergrün", "brand:wikidata": "Q62589254", "cuisine": "sandwich;salad;juice", "name": "immergün", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "immergrün", "brand:wikidata": "Q62589254", "cuisine": "sandwich;salad;juice", "name": "immergün", "takeaway": "yes"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/Γρηγόρης": {"name": "Γρηγόρης", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/gregorys.gr/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q62273834"}, "addTags": {"amenity": "fast_food", "brand": "Γρηγόρης", "brand:wikidata": "Q62273834", "cuisine": "sandwich", "name": "Γρηγόρης", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Γρηγόρης", "brand:wikidata": "Q62273834", "cuisine": "sandwich", "name": "Γρηγόρης", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Бургер Кинг": {"name": "Бургер Кинг", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/burgerking/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q177054"}, "addTags": {"amenity": "fast_food", "brand": "Бургер Кинг", "brand:en": "Burger King", "brand:wikidata": "Q177054", "brand:wikipedia": "en:Burger King", "cuisine": "burger", "name": "Бургер Кинг", "name:en": "Burger King", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Бургер Кинг", "brand:en": "Burger King", "brand:wikidata": "Q177054", "brand:wikipedia": "en:Burger King", "cuisine": "burger", "name": "Бургер Кинг", "name:en": "Burger King", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Крошка Картошка": {"name": "Крошка Картошка", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/kartoshka.moscow/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q4241838"}, "addTags": {"amenity": "fast_food", "brand": "Крошка Картошка", "brand:wikidata": "Q4241838", "brand:wikipedia": "ru:Крошка Картошка", "cuisine": "potato", "name": "Крошка Картошка", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Крошка Картошка", "brand:wikidata": "Q4241838", "brand:wikipedia": "ru:Крошка Картошка", "cuisine": "potato", "name": "Крошка Картошка", "takeaway": "yes"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Макдоналдс": {"name": "Макдоналдс", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q38076"}, "addTags": {"amenity": "fast_food", "brand": "Макдоналдс", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "en:McDonald's", "cuisine": "burger", "name": "Макдоналдс", "name:en": "McDonald's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Макдоналдс", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "en:McDonald's", "cuisine": "burger", "name": "Макдоналдс", "name:en": "McDonald's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/Папа Джонс": {"name": "Папа Джонс", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/papajohns/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q2759586"}, "addTags": {"amenity": "fast_food", "brand": "Папа Джонс", "brand:en": "Papa John's", "brand:wikidata": "Q2759586", "brand:wikipedia": "ru:Papa John’s", "cuisine": "pizza", "name": "Папа Джонс", "name:en": "Papa John's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Папа Джонс", "brand:en": "Papa John's", "brand:wikidata": "Q2759586", "brand:wikipedia": "ru:Papa John’s", "cuisine": "pizza", "name": "Папа Джонс", "name:en": "Papa John's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/Робин Сдобин": {"name": "Робин Сдобин", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/robinsdobin/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q62273880"}, "addTags": {"amenity": "fast_food", "brand": "Робин Сдобин", "brand:wikidata": "Q62273880", "cuisine": "burger", "name": "Робин Сдобин", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Робин Сдобин", "brand:wikidata": "Q62273880", "cuisine": "burger", "name": "Робин Сдобин", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Русский Аппетит": {"name": "Русский Аппетит", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Русский-Аппетит-1502979646622576/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q62086063"}, "addTags": {"amenity": "fast_food", "brand": "Русский Аппетит", "brand:wikidata": "Q62086063", "cuisine": "sandwich;salad;regional", "name": "Русский Аппетит", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Русский Аппетит", "brand:wikidata": "Q62086063", "cuisine": "sandwich;salad;regional", "name": "Русский Аппетит", "takeaway": "yes"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Стардог!s": {"name": "Стардог!s", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/StardogsOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q4439856"}, "addTags": {"amenity": "fast_food", "brand": "Стардог!s", "brand:en": "Stardog!s", "brand:wikidata": "Q4439856", "brand:wikipedia": "ru:Стардогс", "cuisine": "sausage", "name": "Стардог!s", "name:en": "Stardog!s", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Стардог!s", "brand:en": "Stardog!s", "brand:wikidata": "Q4439856", "brand:wikipedia": "ru:Стардогс", "cuisine": "sausage", "name": "Стардог!s", "name:en": "Stardog!s", "takeaway": "yes"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Суши Wok": {"name": "Суши Wok", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/sushiwokofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q25444754"}, "addTags": {"amenity": "fast_food", "brand": "Суши Wok", "brand:en": "Sushi Wok", "brand:wikidata": "Q25444754", "brand:wikipedia": "uk:Суши Wok (мережа магазинів)", "cuisine": "asian", "name": "Суши Wok", "name:en": "Sushi Wok", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Суши Wok", "brand:en": "Sushi Wok", "brand:wikidata": "Q25444754", "brand:wikipedia": "uk:Суши Wok (мережа магазинів)", "cuisine": "asian", "name": "Суши Wok", "name:en": "Sushi Wok", "takeaway": "yes"}, "countryCodes": ["ru", "ua"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/Теремок": {"name": "Теремок", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/teremok/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q4455593"}, "addTags": {"amenity": "fast_food", "brand": "Теремок", "brand:en": "Teremok", "brand:wikidata": "Q4455593", "brand:wikipedia": "ru:Теремок (сеть быстрого питания)", "cuisine": "crepe;russian", "name": "Теремок", "name:en": "Teremok", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "Теремок", "brand:en": "Teremok", "brand:wikidata": "Q4455593", "brand:wikipedia": "ru:Теремок (сеть быстрого питания)", "cuisine": "crepe;russian", "name": "Теремок", "name:en": "Teremok", "takeaway": "yes"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/מקדונלד'ס": {"name": "מקדונלד'ס", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/McDonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q12061542"}, "addTags": {"amenity": "fast_food", "brand": "מקדונלד'ס", "brand:en": "McDonald's", "brand:he": "מקדונלד'ס", "brand:wikidata": "Q12061542", "brand:wikipedia": "en:McDonald's Israel", "cuisine": "burger", "name": "מקדונלד'ס", "name:en": "McDonald's", "name:he": "מקדונלד'ס", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "מקדונלד'ס", "brand:en": "McDonald's", "brand:he": "מקדונלד'ס", "brand:wikidata": "Q12061542", "brand:wikipedia": "en:McDonald's Israel", "cuisine": "burger", "name": "מקדונלד'ס", "name:en": "McDonald's", "name:he": "מקדונלד'ס", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["il"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/دجاج كنتاكي": {"name": "دجاج كنتاكي", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/KFC/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q524757"}, "addTags": {"amenity": "fast_food", "brand": "دجاج كنتاكي", "brand:ar": "دجاج كنتاكي", "brand:en": "KFC", "brand:wikidata": "Q524757", "brand:wikipedia": "ar:دجاج كنتاكي", "cuisine": "chicken", "name": "دجاج كنتاكي", "name:ar": "دجاج كنتاكي", "name:en": "KFC", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "دجاج كنتاكي", "brand:ar": "دجاج كنتاكي", "brand:en": "KFC", "brand:wikidata": "Q524757", "brand:wikipedia": "ar:دجاج كنتاكي", "cuisine": "chicken", "name": "دجاج كنتاكي", "name:ar": "دجاج كنتاكي", "name:en": "KFC", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/ماكدونالدز": {"name": "ماكدونالدز", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q38076"}, "addTags": {"amenity": "fast_food", "brand": "ماكدونالدز", "brand:ar": "ماكدونالدز", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "ar:ماكدونالدز", "cuisine": "burger", "name": "ماكدونالدز", "name:ar": "ماكدونالدز", "name:en": "McDonald's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "ماكدونالدز", "brand:ar": "ماكدونالدز", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "ar:ماكدونالدز", "cuisine": "burger", "name": "ماكدونالدز", "name:ar": "ماكدونالدز", "name:en": "McDonald's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "matchScore": 2, "suggestion": true}, + "amenity/fast_food/かっぱ寿司": {"name": "かっぱ寿司", "icon": "maki-fast-food", "imageURL": "https://abs.twimg.com/sticky/default_profile_images/default_profile_bigger.png", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11263916"}, "addTags": {"amenity": "fast_food", "brand": "かっぱ寿司", "brand:en": "Kappazushi", "brand:ja": "かっぱ寿司", "brand:wikidata": "Q11263916", "brand:wikipedia": "ja:かっぱ寿司", "cuisine": "sushi", "name": "かっぱ寿司", "name:en": "Kappazushi", "name:ja": "かっぱ寿司", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "かっぱ寿司", "brand:en": "Kappazushi", "brand:ja": "かっぱ寿司", "brand:wikidata": "Q11263916", "brand:wikipedia": "ja:かっぱ寿司", "cuisine": "sushi", "name": "かっぱ寿司", "name:en": "Kappazushi", "name:ja": "かっぱ寿司", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/かつや": {"name": "かつや", "icon": "maki-fast-food", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q2855257"}, "addTags": {"amenity": "fast_food", "brand": "かつや", "brand:en": "Katsuya", "brand:ja": "かつや", "brand:wikidata": "Q2855257", "brand:wikipedia": "ja:かつや", "cuisine": "fried_food", "name": "かつや", "name:en": "Katsuya", "name:ja": "かつや", "name:ko": "카쯔야", "name:zh": "吉豚屋", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "かつや", "brand:en": "Katsuya", "brand:ja": "かつや", "brand:wikidata": "Q2855257", "brand:wikipedia": "ja:かつや", "cuisine": "fried_food", "name": "かつや", "name:en": "Katsuya", "name:ja": "かつや", "name:ko": "카쯔야", "name:zh": "吉豚屋", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/くら寿司": {"name": "くら寿司", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Kurasushi/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q6445491"}, "addTags": {"amenity": "fast_food", "brand": "くら寿司", "brand:en": "Kurazushi", "brand:ja": "くら寿司", "brand:wikidata": "Q6445491", "brand:wikipedia": "ja:くらコーポレーション", "cuisine": "sushi", "name": "くら寿司", "name:en": "Kurazushi", "name:ja": "くら寿司", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "くら寿司", "brand:en": "Kurazushi", "brand:ja": "くら寿司", "brand:wikidata": "Q6445491", "brand:wikipedia": "ja:くらコーポレーション", "cuisine": "sushi", "name": "くら寿司", "name:en": "Kurazushi", "name:ja": "くら寿司", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/すき家": {"name": "すき家", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/1074928090885672960/nTgKn0jh_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q6137375"}, "addTags": {"amenity": "fast_food", "brand": "すき家", "brand:en": "Sukiya", "brand:ja": "すき家", "brand:wikidata": "Q6137375", "brand:wikipedia": "ja:すき家", "cuisine": "beef_bowl", "name": "すき家", "name:en": "Sukiya", "name:ja": "すき家", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "すき家", "brand:en": "Sukiya", "brand:ja": "すき家", "brand:wikidata": "Q6137375", "brand:wikipedia": "ja:すき家", "cuisine": "beef_bowl", "name": "すき家", "name:en": "Sukiya", "name:ja": "すき家", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/なか卯": {"name": "なか卯", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/999109688582008832/evpixQ34_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11274132"}, "addTags": {"amenity": "fast_food", "brand": "なか卯", "brand:en": "Nakau", "brand:ja": "なか卯", "brand:wikidata": "Q11274132", "brand:wikipedia": "ja:なか卯", "cuisine": "udon", "name": "なか卯", "name:en": "Nakau", "name:ja": "なか卯", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "なか卯", "brand:en": "Nakau", "brand:ja": "なか卯", "brand:wikidata": "Q11274132", "brand:wikipedia": "ja:なか卯", "cuisine": "udon", "name": "なか卯", "name:en": "Nakau", "name:ja": "なか卯", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/はま寿司": {"name": "はま寿司", "icon": "maki-fast-food", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q17220385"}, "addTags": {"amenity": "fast_food", "brand": "はま寿司", "brand:en": "Hamazushi", "brand:ja": "はま寿司", "brand:wikidata": "Q17220385", "brand:wikipedia": "ja:はま寿司", "cuisine": "sushi", "name": "はま寿司", "name:en": "Hamazushi", "name:ja": "はま寿司", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "はま寿司", "brand:en": "Hamazushi", "brand:ja": "はま寿司", "brand:wikidata": "Q17220385", "brand:wikipedia": "ja:はま寿司", "cuisine": "sushi", "name": "はま寿司", "name:en": "Hamazushi", "name:ja": "はま寿司", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/ほっかほっか亭": {"name": "ほっかほっか亭", "icon": "maki-fast-food", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHokka-Hokka%20Tei%20logo.gif&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q5878035"}, "addTags": {"amenity": "fast_food", "brand": "ほっかほっか亭", "brand:en": "Hokka Hokka Tei", "brand:ja": "ほっかほっか亭", "brand:wikidata": "Q5878035", "brand:wikipedia": "ja:ほっかほっか亭", "cuisine": "japanese", "name": "ほっかほっか亭", "name:en": "Hokka Hokka Tei", "name:ja": "ほっかほっか亭", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "ほっかほっか亭", "brand:en": "Hokka Hokka Tei", "brand:ja": "ほっかほっか亭", "brand:wikidata": "Q5878035", "brand:wikipedia": "ja:ほっかほっか亭", "cuisine": "japanese", "name": "ほっかほっか亭", "name:en": "Hokka Hokka Tei", "name:ja": "ほっかほっか亭", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/ほっともっと": {"name": "ほっともっと", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/hottomotto/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q10850949"}, "addTags": {"amenity": "fast_food", "brand": "ほっともっと", "brand:en": "Hotto Motto", "brand:ja": "ほっともっと", "brand:wikidata": "Q10850949", "brand:wikipedia": "ja:ほっともっと", "cuisine": "japanese", "name": "ほっともっと", "name:en": "Hotto Motto", "name:ja": "ほっともっと", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "ほっともっと", "brand:en": "Hotto Motto", "brand:ja": "ほっともっと", "brand:wikidata": "Q10850949", "brand:wikipedia": "ja:ほっともっと", "cuisine": "japanese", "name": "ほっともっと", "name:en": "Hotto Motto", "name:ja": "ほっともっと", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/ゆで太郎": {"name": "ゆで太郎", "icon": "maki-fast-food", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11280824"}, "addTags": {"amenity": "fast_food", "brand": "ゆで太郎", "brand:en": "Yudetaro", "brand:ja": "ゆで太郎", "brand:wikidata": "Q11280824", "brand:wikipedia": "ja:ゆで太郎", "cuisine": "noodle", "name": "ゆで太郎", "name:en": "Yudetaro", "name:ja": "ゆで太郎", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "ゆで太郎", "brand:en": "Yudetaro", "brand:ja": "ゆで太郎", "brand:wikidata": "Q11280824", "brand:wikipedia": "ja:ゆで太郎", "cuisine": "noodle", "name": "ゆで太郎", "name:en": "Yudetaro", "name:ja": "ゆで太郎", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/オリジン弁当": {"name": "オリジン弁当", "icon": "maki-fast-food", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11292632"}, "addTags": {"amenity": "fast_food", "brand": "オリジン弁当", "brand:en": "Origin Bentō", "brand:ja": "オリジン弁当", "brand:wikidata": "Q11292632", "brand:wikipedia": "ja:オリジン東秀", "cuisine": "japanese", "name": "オリジン弁当", "name:en": "Origin Bentō", "name:ja": "オリジン弁当", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "オリジン弁当", "brand:en": "Origin Bentō", "brand:ja": "オリジン弁当", "brand:wikidata": "Q11292632", "brand:wikipedia": "ja:オリジン東秀", "cuisine": "japanese", "name": "オリジン弁当", "name:en": "Origin Bentō", "name:ja": "オリジン弁当", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/ケンタッキーフライドチキン": {"name": "ケンタッキーフライドチキン", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/KFC/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q524757"}, "addTags": {"amenity": "fast_food", "brand": "ケンタッキーフライドチキン", "brand:en": "KFC", "brand:ja": "ケンタッキーフライドチキン", "brand:wikidata": "Q524757", "brand:wikipedia": "ja:KFCコーポレーション", "cuisine": "chicken", "name": "ケンタッキーフライドチキン", "name:en": "KFC", "name:ja": "ケンタッキーフライドチキン", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "ケンタッキーフライドチキン", "brand:en": "KFC", "brand:ja": "ケンタッキーフライドチキン", "brand:wikidata": "Q524757", "brand:wikipedia": "ja:KFCコーポレーション", "cuisine": "chicken", "name": "ケンタッキーフライドチキン", "name:en": "KFC", "name:ja": "ケンタッキーフライドチキン", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/sandwich/サブウェイ": {"name": "サブウェイ", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/subway/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "sandwich", "brand:wikidata": "Q244457"}, "addTags": {"amenity": "fast_food", "brand": "サブウェイ", "brand:en": "Subway", "brand:ja": "サブウェイ", "brand:wikidata": "Q244457", "brand:wikipedia": "ja:サブウェイ", "cuisine": "sandwich", "name": "サブウェイ", "name:en": "Subway", "name:ja": "サブウェイ", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "サブウェイ", "brand:en": "Subway", "brand:ja": "サブウェイ", "brand:wikidata": "Q244457", "brand:wikipedia": "ja:サブウェイ", "cuisine": "sandwich", "name": "サブウェイ", "name:en": "Subway", "name:ja": "サブウェイ", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/スシロー": {"name": "スシロー", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/akindosushiro/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11257037"}, "addTags": {"amenity": "fast_food", "brand": "スシロー", "brand:en": "Sushiro", "brand:ja": "スシロー", "brand:wikidata": "Q11257037", "brand:wikipedia": "ja:あきんどスシロー", "cuisine": "sushi", "name": "スシロー", "name:en": "Sushiro", "name:ja": "スシロー", "name:zh": "壽司郎", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "スシロー", "brand:en": "Sushiro", "brand:ja": "スシロー", "brand:wikidata": "Q11257037", "brand:wikipedia": "ja:あきんどスシロー", "cuisine": "sushi", "name": "スシロー", "name:en": "Sushiro", "name:ja": "スシロー", "name:zh": "壽司郎", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/ドミノ・ピザ": {"name": "ドミノ・ピザ", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/Dominos/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q839466"}, "addTags": {"amenity": "fast_food", "brand": "ドミノ・ピザ", "brand:en": "Domino's Pizza", "brand:ja": "ドミノ・ピザ", "brand:wikidata": "Q839466", "brand:wikipedia": "ja:ドミノ・ピザ", "cuisine": "pizza", "name": "ドミノ・ピザ", "name:en": "Domino's Pizza", "name:ja": "ドミノ・ピザ", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "ドミノ・ピザ", "brand:en": "Domino's Pizza", "brand:ja": "ドミノ・ピザ", "brand:wikidata": "Q839466", "brand:wikipedia": "ja:ドミノ・ピザ", "cuisine": "pizza", "name": "ドミノ・ピザ", "name:en": "Domino's Pizza", "name:ja": "ドミノ・ピザ", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/ピザハット": {"name": "ピザハット", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pizzahutus/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q191615"}, "addTags": {"amenity": "fast_food", "brand": "ピザハット", "brand:en": "Pizza Hut", "brand:ja": "ピザハット", "brand:wikidata": "Q191615", "brand:wikipedia": "ja:ピザハット", "cuisine": "pizza", "name": "ピザハット", "name:en": "Pizza Hut", "name:ja": "ピザハット", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "ピザハット", "brand:en": "Pizza Hut", "brand:ja": "ピザハット", "brand:wikidata": "Q191615", "brand:wikipedia": "ja:ピザハット", "cuisine": "pizza", "name": "ピザハット", "name:en": "Pizza Hut", "name:ja": "ピザハット", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/ピザ・カリフォルニア": {"name": "ピザ・カリフォルニア", "icon": "maki-restaurant-pizza", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q75324"}, "addTags": {"amenity": "fast_food", "brand": "ピザ・カリフォルニア", "brand:en": "Pizza California", "brand:ja": "ピザ・カリフォルニア", "brand:wikidata": "Q75324", "brand:wikipedia": "ja:ピザ・カリフォルニア", "cuisine": "pizza", "name": "ピザ・カリフォルニア", "name:en": "Pizza California", "name:ja": "ピザ・カリフォルニア", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "ピザ・カリフォルニア", "brand:en": "Pizza California", "brand:ja": "ピザ・カリフォルニア", "brand:wikidata": "Q75324", "brand:wikipedia": "ja:ピザ・カリフォルニア", "cuisine": "pizza", "name": "ピザ・カリフォルニア", "name:en": "Pizza California", "name:ja": "ピザ・カリフォルニア", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/pizza/ピザーラ": {"name": "ピザーラ", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pizzala.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "pizza", "brand:wikidata": "Q7199948"}, "addTags": {"amenity": "fast_food", "brand": "ピザーラ", "brand:en": "Pizza-La", "brand:ja": "ピザーラ", "brand:wikidata": "Q7199948", "brand:wikipedia": "ja:ピザーラ", "cuisine": "pizza", "name": "ピザーラ", "name:en": "Pizza-La", "name:ja": "ピザーラ", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "ピザーラ", "brand:en": "Pizza-La", "brand:ja": "ピザーラ", "brand:wikidata": "Q7199948", "brand:wikipedia": "ja:ピザーラ", "cuisine": "pizza", "name": "ピザーラ", "name:en": "Pizza-La", "name:ja": "ピザーラ", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/フレッシュネスバーガー": {"name": "フレッシュネスバーガー", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/freshness.burger.official/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q5503087"}, "addTags": {"amenity": "fast_food", "brand": "フレッシュネスバーガー", "brand:en": "Freshness Burger", "brand:ja": "フレッシュネスバーガー", "brand:wikidata": "Q5503087", "brand:wikipedia": "ja:フレッシュネスバーガー", "cuisine": "burger", "name": "フレッシュネスバーガー", "name:en": "Freshness Burger", "name:ja": "フレッシュネスバーガー", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "フレッシュネスバーガー", "brand:en": "Freshness Burger", "brand:ja": "フレッシュネスバーガー", "brand:wikidata": "Q5503087", "brand:wikipedia": "ja:フレッシュネスバーガー", "cuisine": "burger", "name": "フレッシュネスバーガー", "name:en": "Freshness Burger", "name:ja": "フレッシュネスバーガー", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/マクドナルド": {"name": "マクドナルド", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q38076"}, "addTags": {"amenity": "fast_food", "brand": "マクドナルド", "brand:en": "McDonald's", "brand:ja": "マクドナルド", "brand:wikidata": "Q38076", "brand:wikipedia": "ja:マクドナルド", "cuisine": "burger", "name": "マクドナルド", "name:en": "McDonald's", "name:ja": "マクドナルド", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "マクドナルド", "brand:en": "McDonald's", "brand:ja": "マクドナルド", "brand:wikidata": "Q38076", "brand:wikipedia": "ja:マクドナルド", "cuisine": "burger", "name": "マクドナルド", "name:en": "McDonald's", "name:ja": "マクドナルド", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/ミスタードーナツ": {"name": "ミスタードーナツ", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/misdo.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q1065819"}, "addTags": {"amenity": "fast_food", "brand": "ミスタードーナツ", "brand:en": "Mister Donut", "brand:ja": "ミスタードーナツ", "brand:wikidata": "Q1065819", "brand:wikipedia": "en:Mister Donut", "cuisine": "donut", "name": "ミスタードーナツ", "name:en": "Mister Donut", "name:ja": "ミスタードーナツ", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "ミスタードーナツ", "brand:en": "Mister Donut", "brand:ja": "ミスタードーナツ", "brand:wikidata": "Q1065819", "brand:wikipedia": "en:Mister Donut", "cuisine": "donut", "name": "ミスタードーナツ", "name:en": "Mister Donut", "name:ja": "ミスタードーナツ", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/モスバーガー": {"name": "モスバーガー", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/712033394109124608/kVGTqBLR_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1204169"}, "addTags": {"amenity": "fast_food", "brand": "モスバーガー", "brand:en": "MOS Burger", "brand:ja": "モスバーガー", "brand:wikidata": "Q1204169", "brand:wikipedia": "ja:モスバーガー", "cuisine": "burger", "name": "モスバーガー", "name:en": "MOS Burger", "name:ja": "モスバーガー", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "モスバーガー", "brand:en": "MOS Burger", "brand:ja": "モスバーガー", "brand:wikidata": "Q1204169", "brand:wikipedia": "ja:モスバーガー", "cuisine": "burger", "name": "モスバーガー", "name:en": "MOS Burger", "name:ja": "モスバーガー", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/ラーメン二郎": {"name": "ラーメン二郎", "icon": "maki-fast-food", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11347765"}, "addTags": {"amenity": "fast_food", "brand": "ラーメン二郎", "brand:en": "Ramen Jiro", "brand:ja": "ラーメン二郎", "brand:wikidata": "Q11347765", "brand:wikipedia": "ja:ラーメン二郎", "cuisine": "ramen", "name": "ラーメン二郎", "name:en": "Ramen Jiro", "name:ja": "ラーメン二郎", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "ラーメン二郎", "brand:en": "Ramen Jiro", "brand:ja": "ラーメン二郎", "brand:wikidata": "Q11347765", "brand:wikipedia": "ja:ラーメン二郎", "cuisine": "ramen", "name": "ラーメン二郎", "name:en": "Ramen Jiro", "name:ja": "ラーメン二郎", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/ロッテリア": {"name": "ロッテリア", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ilovelotteria/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q249525"}, "addTags": {"amenity": "fast_food", "brand": "ロッテリア", "brand:en": "Lotteria", "brand:ja": "ロッテリア", "brand:wikidata": "Q249525", "brand:wikipedia": "ja:ロッテリア", "cuisine": "burger", "name": "ロッテリア", "name:en": "Lotteria", "name:ja": "ロッテリア", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "ロッテリア", "brand:en": "Lotteria", "brand:ja": "ロッテリア", "brand:wikidata": "Q249525", "brand:wikipedia": "ja:ロッテリア", "cuisine": "burger", "name": "ロッテリア", "name:en": "Lotteria", "name:ja": "ロッテリア", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/吉野家": {"name": "吉野家", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/tw.yoshinoya/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q776272"}, "addTags": {"amenity": "fast_food", "brand": "吉野家", "brand:en": "Yoshinoya", "brand:ja": "吉野家", "brand:wikidata": "Q776272", "brand:wikipedia": "ja:吉野家", "cuisine": "beef_bowl", "name": "吉野家", "name:en": "Yoshinoya", "name:ja": "吉野家", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "吉野家", "brand:en": "Yoshinoya", "brand:ja": "吉野家", "brand:wikidata": "Q776272", "brand:wikipedia": "ja:吉野家", "cuisine": "beef_bowl", "name": "吉野家", "name:en": "Yoshinoya", "name:ja": "吉野家", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/富士そば": {"name": "富士そば", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/fujisoba/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11414722"}, "addTags": {"amenity": "fast_food", "brand": "富士そば", "brand:en": "Fuji Soba", "brand:ja": "富士そば", "brand:wikidata": "Q11414722", "brand:wikipedia": "ja:名代富士そば", "cuisine": "soba", "name": "富士そば", "name:en": "Fuji Soba", "name:ja": "富士そば", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "富士そば", "brand:en": "Fuji Soba", "brand:ja": "富士そば", "brand:wikidata": "Q11414722", "brand:wikipedia": "ja:名代富士そば", "cuisine": "soba", "name": "富士そば", "name:en": "Fuji Soba", "name:ja": "富士そば", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/幸楽苑": {"name": "幸楽苑", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Kourakuen/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11484003"}, "addTags": {"amenity": "fast_food", "brand": "幸楽苑", "brand:en": "Kourakuen", "brand:ja": "幸楽苑", "brand:wikidata": "Q11484003", "brand:wikipedia": "ja:幸楽苑", "cuisine": "ramen", "name": "幸楽苑", "name:en": "Kourakuen", "name:ja": "幸楽苑", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "幸楽苑", "brand:en": "Kourakuen", "brand:ja": "幸楽苑", "brand:wikidata": "Q11484003", "brand:wikipedia": "ja:幸楽苑", "cuisine": "ramen", "name": "幸楽苑", "name:en": "Kourakuen", "name:ja": "幸楽苑", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/摩斯漢堡": {"name": "摩斯漢堡", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/712033394109124608/kVGTqBLR_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q1204169"}, "addTags": {"amenity": "fast_food", "brand": "摩斯漢堡", "brand:en": "MOS Burger", "brand:wikidata": "Q1204169", "brand:wikipedia": "zh:摩斯漢堡", "brand:zh": "摩斯漢堡", "cuisine": "burger", "name": "摩斯漢堡", "name:en": "MOS Burger", "name:zh": "摩斯漢堡", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "摩斯漢堡", "brand:en": "MOS Burger", "brand:wikidata": "Q1204169", "brand:wikipedia": "zh:摩斯漢堡", "brand:zh": "摩斯漢堡", "cuisine": "burger", "name": "摩斯漢堡", "name:en": "MOS Burger", "name:zh": "摩斯漢堡", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["cn", "hk", "mo", "sg", "tw"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/松屋": {"name": "松屋", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/matsuyafoods.matsuya/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q848773"}, "addTags": {"amenity": "fast_food", "brand": "松屋", "brand:en": "Matsuya Foods", "brand:wikidata": "Q848773", "brand:wikipedia": "zh:松屋食品", "cuisine": "japanese", "name": "松屋", "name:en": "Matsuya Foods", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "松屋", "brand:en": "Matsuya Foods", "brand:wikidata": "Q848773", "brand:wikipedia": "zh:松屋食品", "cuisine": "japanese", "name": "松屋", "name:en": "Matsuya Foods", "takeaway": "yes"}, "countryCodes": ["cn", "hk", "mo", "sg", "tw"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/箱根そば": {"name": "箱根そば", "icon": "maki-fast-food", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "brand:wikidata": "Q11603345"}, "addTags": {"amenity": "fast_food", "brand": "箱根そば", "brand:en": "Hakone Soba", "brand:ja": "箱根そば", "brand:wikidata": "Q11603345", "brand:wikipedia": "ja:箱根そば", "cuisine": "soba", "name": "箱根そば", "name:en": "Hakone Soba", "name:ja": "箱根そば", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "箱根そば", "brand:en": "Hakone Soba", "brand:ja": "箱根そば", "brand:wikidata": "Q11603345", "brand:wikipedia": "ja:箱根そば", "cuisine": "soba", "name": "箱根そば", "name:en": "Hakone Soba", "name:ja": "箱根そば", "takeaway": "yes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/chicken/肯德基": {"name": "肯德基", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/KFC/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "chicken", "brand:wikidata": "Q524757"}, "addTags": {"amenity": "fast_food", "brand": "肯德基", "brand:en": "KFC", "brand:wikidata": "Q524757", "brand:wikipedia": "zh:肯德基", "cuisine": "chicken", "name": "肯德基", "name:en": "KFC", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "肯德基", "brand:en": "KFC", "brand:wikidata": "Q524757", "brand:wikipedia": "zh:肯德基", "cuisine": "chicken", "name": "肯德基", "name:en": "KFC", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["cn", "hk", "mo", "sg", "tw"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/麥當勞": {"name": "麥當勞", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q38076"}, "addTags": {"amenity": "fast_food", "brand": "麥當勞", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "zh_classical:麥當勞", "cuisine": "burger", "name": "麥當勞", "name:en": "McDonald's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "麥當勞", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "zh_classical:麥當勞", "cuisine": "burger", "name": "麥當勞", "name:en": "McDonald's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["hk", "mo", "tw"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/麦当劳": {"name": "麦当劳", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q38076"}, "addTags": {"amenity": "fast_food", "brand": "麦当劳", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "zh:麦当劳", "cuisine": "burger", "name": "麦当劳", "name:en": "McDonald's", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "麦当劳", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "zh:麦当劳", "cuisine": "burger", "name": "麦当劳", "name:en": "McDonald's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["cn", "sg"], "matchScore": 2, "suggestion": true}, + "amenity/fast_food/burger/롯데리아": {"name": "롯데리아", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ilovelotteria/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "burger", "brand:wikidata": "Q249525"}, "addTags": {"amenity": "fast_food", "brand": "롯데리아", "brand:en": "Lotteria", "brand:ko": "롯데리아", "brand:wikidata": "Q249525", "brand:wikipedia": "ko:롯데리아", "cuisine": "burger", "name": "롯데리아", "name:en": "Lotteria", "name:ko": "롯데리아", "takeaway": "yes"}, "removeTags": {"amenity": "fast_food", "brand": "롯데리아", "brand:en": "Lotteria", "brand:ko": "롯데리아", "brand:wikidata": "Q249525", "brand:wikipedia": "ko:롯데리아", "cuisine": "burger", "name": "롯데리아", "name:en": "Lotteria", "name:ko": "롯데리아", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, "amenity/fuel/1-2-3": {"name": "1-2-3", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q4545742"}, "addTags": {"amenity": "fuel", "brand": "1-2-3", "brand:wikidata": "Q4545742", "brand:wikipedia": "en:1-2-3 (fuel station)", "name": "1-2-3"}, "removeTags": {"amenity": "fuel", "brand": "1-2-3", "brand:wikidata": "Q4545742", "brand:wikipedia": "en:1-2-3 (fuel station)", "name": "1-2-3"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/7-Eleven": {"name": "7-Eleven", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/7ElevenMexico/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q259340"}, "addTags": {"amenity": "fuel", "brand": "7-Eleven", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "7-Eleven"}, "removeTags": {"amenity": "fuel", "brand": "7-Eleven", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "7-Eleven"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/76": {"name": "76", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/76gas/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1658320"}, "addTags": {"amenity": "fuel", "brand": "76", "brand:wikidata": "Q1658320", "brand:wikipedia": "en:76 (gas station)", "name": "76"}, "removeTags": {"amenity": "fuel", "brand": "76", "brand:wikidata": "Q1658320", "brand:wikipedia": "en:76 (gas station)", "name": "76"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/ABC": {"name": "ABC", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q10397504"}, "addTags": {"amenity": "fuel", "brand": "ABC", "brand:wikidata": "Q10397504", "brand:wikipedia": "fi:ABC-ketju", "name": "ABC"}, "removeTags": {"amenity": "fuel", "brand": "ABC", "brand:wikidata": "Q10397504", "brand:wikipedia": "fi:ABC-ketju", "name": "ABC"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/ADNOC": {"name": "ADNOC", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAbu%20Dhabi%20National%20Oil%20Company%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q166729"}, "addTags": {"amenity": "fuel", "brand": "ADNOC", "brand:wikidata": "Q166729", "brand:wikipedia": "en:Abu Dhabi National Oil Company", "name": "ADNOC"}, "removeTags": {"amenity": "fuel", "brand": "ADNOC", "brand:wikidata": "Q166729", "brand:wikipedia": "en:Abu Dhabi National Oil Company", "name": "ADNOC"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/ADNOC": {"name": "ADNOC", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAbu%20Dhabi%20National%20Oil%20Company%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q166729"}, "addTags": {"amenity": "fuel", "brand": "ADNOC", "brand:wikidata": "Q166729", "brand:wikipedia": "en:Abu Dhabi National Oil Company", "name": "ADNOC"}, "removeTags": {"amenity": "fuel", "brand": "ADNOC", "brand:wikidata": "Q166729", "brand:wikipedia": "en:Abu Dhabi National Oil Company", "name": "ADNOC"}, "countryCodes": ["ae"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Aegean": {"name": "Aegean", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q28146598"}, "addTags": {"amenity": "fuel", "brand": "Aegean", "brand:wikidata": "Q28146598", "brand:wikipedia": "el:Aegean Oil", "name": "Aegean"}, "removeTags": {"amenity": "fuel", "brand": "Aegean", "brand:wikidata": "Q28146598", "brand:wikipedia": "el:Aegean Oil", "name": "Aegean"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Afriquia": {"name": "Afriquia", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2829178"}, "addTags": {"amenity": "fuel", "brand": "Afriquia", "brand:wikidata": "Q2829178", "brand:wikipedia": "en:Akwa Group", "name": "Afriquia"}, "removeTags": {"amenity": "fuel", "brand": "Afriquia", "brand:wikidata": "Q2829178", "brand:wikipedia": "en:Akwa Group", "name": "Afriquia"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Agip": {"name": "Agip", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q377915"}, "addTags": {"amenity": "fuel", "brand": "Agip", "brand:wikidata": "Q377915", "brand:wikipedia": "en:Agip", "name": "Agip"}, "removeTags": {"amenity": "fuel", "brand": "Agip", "brand:wikidata": "Q377915", "brand:wikipedia": "en:Agip", "name": "Agip"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Agrola": {"name": "Agrola", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAgrola%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q397351"}, "addTags": {"amenity": "fuel", "brand": "Agrola", "brand:wikidata": "Q397351", "brand:wikipedia": "de:Agrola", "name": "Agrola"}, "removeTags": {"amenity": "fuel", "brand": "Agrola", "brand:wikidata": "Q397351", "brand:wikipedia": "de:Agrola", "name": "Agrola"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Alon": {"name": "Alon", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/alonbrands/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62274304"}, "addTags": {"amenity": "fuel", "brand": "Alon", "brand:wikidata": "Q62274304", "name": "Alon"}, "removeTags": {"amenity": "fuel", "brand": "Alon", "brand:wikidata": "Q62274304", "name": "Alon"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Alpet": {"name": "Alpet", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ALPETtr/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62131561"}, "addTags": {"amenity": "fuel", "brand": "Alpet", "brand:wikidata": "Q62131561", "name": "Alpet"}, "removeTags": {"amenity": "fuel", "brand": "Alpet", "brand:wikidata": "Q62131561", "name": "Alpet"}, "countryCodes": ["al", "tr"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Api": {"name": "Api", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q466043"}, "addTags": {"amenity": "fuel", "brand": "Api", "brand:wikidata": "Q466043", "brand:wikipedia": "en:American Petroleum Institute", "name": "Api"}, "removeTags": {"amenity": "fuel", "brand": "Api", "brand:wikidata": "Q466043", "brand:wikipedia": "en:American Petroleum Institute", "name": "Api"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Aral": {"name": "Aral", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q565734"}, "addTags": {"amenity": "fuel", "brand": "Aral", "brand:wikidata": "Q565734", "brand:wikipedia": "en:Aral AG", "name": "Aral"}, "removeTags": {"amenity": "fuel", "brand": "Aral", "brand:wikidata": "Q565734", "brand:wikipedia": "en:Aral AG", "name": "Aral"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Arco": {"name": "Arco", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FARCO.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q304769"}, "addTags": {"amenity": "fuel", "brand": "Arco", "brand:wikidata": "Q304769", "brand:wikipedia": "en:ARCO", "name": "Arco"}, "removeTags": {"amenity": "fuel", "brand": "Arco", "brand:wikidata": "Q304769", "brand:wikipedia": "en:ARCO", "name": "Arco"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Arco": {"name": "Arco", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/arco/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q304769"}, "addTags": {"amenity": "fuel", "brand": "Arco", "brand:wikidata": "Q304769", "brand:wikipedia": "en:ARCO", "name": "Arco"}, "removeTags": {"amenity": "fuel", "brand": "Arco", "brand:wikidata": "Q304769", "brand:wikipedia": "en:ARCO", "name": "Arco"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Asda": {"name": "Asda", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Asda/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q297410"}, "addTags": {"amenity": "fuel", "brand": "Asda", "brand:wikidata": "Q297410", "brand:wikipedia": "en:Asda", "name": "Asda"}, "removeTags": {"amenity": "fuel", "brand": "Asda", "brand:wikidata": "Q297410", "brand:wikipedia": "en:Asda", "name": "Asda"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Atem": {"name": "Atem", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/postosatem/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62332255"}, "addTags": {"amenity": "fuel", "brand": "Atem", "brand:wikidata": "Q62332255", "name": "Atem"}, "removeTags": {"amenity": "fuel", "brand": "Atem", "brand:wikidata": "Q62332255", "name": "Atem"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Auchan": {"name": "Auchan", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/877095334316576768/bhQDPUWZ_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q758603"}, "addTags": {"amenity": "fuel", "brand": "Auchan", "brand:wikidata": "Q758603", "brand:wikipedia": "en:Auchan", "name": "Auchan"}, "removeTags": {"amenity": "fuel", "brand": "Auchan", "brand:wikidata": "Q758603", "brand:wikipedia": "en:Auchan", "name": "Auchan"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Avanti": {"name": "Avanti", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FOmv%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q168238"}, "addTags": {"amenity": "fuel", "brand": "Avanti", "brand:wikidata": "Q168238", "brand:wikipedia": "en:OMV", "name": "Avanti"}, "removeTags": {"amenity": "fuel", "brand": "Avanti", "brand:wikidata": "Q168238", "brand:wikipedia": "en:OMV", "name": "Avanti"}, "countryCodes": ["at"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Avia": {"name": "Avia", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAVIA%20International%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q300147"}, "addTags": {"amenity": "fuel", "brand": "Avia", "brand:wikidata": "Q300147", "brand:wikipedia": "de:Avia International", "name": "Avia"}, "removeTags": {"amenity": "fuel", "brand": "Avia", "brand:wikidata": "Q300147", "brand:wikipedia": "de:Avia International", "name": "Avia"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Avin": {"name": "Avin", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q19903165"}, "addTags": {"amenity": "fuel", "brand": "Avin", "brand:wikidata": "Q19903165", "brand:wikipedia": "en:Avin International", "name": "Avin"}, "removeTags": {"amenity": "fuel", "brand": "Avin", "brand:wikidata": "Q19903165", "brand:wikipedia": "en:Avin International", "name": "Avin"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Axion": {"name": "Axion", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/AXIONenergyOficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62131749"}, "addTags": {"amenity": "fuel", "brand": "Axion", "brand:wikidata": "Q62131749", "name": "Axion"}, "removeTags": {"amenity": "fuel", "brand": "Axion", "brand:wikidata": "Q62131749", "name": "Axion"}, "countryCodes": ["ar", "py", "uy"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Aytemiz": {"name": "Aytemiz", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/AytemizOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62274352"}, "addTags": {"amenity": "fuel", "brand": "Aytemiz", "brand:wikidata": "Q62274352", "name": "Aytemiz"}, "removeTags": {"amenity": "fuel", "brand": "Aytemiz", "brand:wikidata": "Q62274352", "name": "Aytemiz"}, "countryCodes": ["tr"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/BEBECO": {"name": "BEBECO", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62274373"}, "addTags": {"amenity": "fuel", "brand": "BEBECO", "brand:wikidata": "Q62274373", "name": "BEBECO"}, "removeTags": {"amenity": "fuel", "brand": "BEBECO", "brand:wikidata": "Q62274373", "name": "BEBECO"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/BHPetrol": {"name": "BHPetrol", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/BHP.Petrol/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62274381"}, "addTags": {"amenity": "fuel", "brand": "BHPetrol", "brand:wikidata": "Q62274381", "name": "BHPetrol"}, "removeTags": {"amenity": "fuel", "brand": "BHPetrol", "brand:wikidata": "Q62274381", "name": "BHPetrol"}, "countryCodes": ["my"], "matchScore": 2, "suggestion": true}, "amenity/fuel/BP": {"name": "BP", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/bp/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q152057"}, "addTags": {"amenity": "fuel", "brand": "BP", "brand:wikidata": "Q152057", "brand:wikipedia": "en:BP", "name": "BP"}, "removeTags": {"amenity": "fuel", "brand": "BP", "brand:wikidata": "Q152057", "brand:wikipedia": "en:BP", "name": "BP"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/BR": {"name": "BR", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/postospetrobras/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q4836468"}, "addTags": {"amenity": "fuel", "brand": "BR", "brand:wikidata": "Q4836468", "brand:wikipedia": "pt:Petrobras Distribuidora", "name": "BR"}, "removeTags": {"amenity": "fuel", "brand": "BR", "brand:wikidata": "Q4836468", "brand:wikipedia": "pt:Petrobras Distribuidora", "name": "BR"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Bangchak": {"name": "Bangchak", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q6579719"}, "addTags": {"amenity": "fuel", "brand": "Bangchak", "brand:wikidata": "Q6579719", "brand:wikipedia": "zh:曼差石油股份", "name": "Bangchak"}, "removeTags": {"amenity": "fuel", "brand": "Bangchak", "brand:wikidata": "Q6579719", "brand:wikipedia": "zh:曼差石油股份", "name": "Bangchak"}, "matchScore": 2, "suggestion": true}, - "amenity/fuel/Bharat Petroleum": {"name": "Bharat Petroleum", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q854826"}, "addTags": {"amenity": "fuel", "brand": "Bharat Petroleum", "brand:wikidata": "Q854826", "brand:wikipedia": "en:Bharat Petroleum", "name": "Bharat Petroleum"}, "removeTags": {"amenity": "fuel", "brand": "Bharat Petroleum", "brand:wikidata": "Q854826", "brand:wikipedia": "en:Bharat Petroleum", "name": "Bharat Petroleum"}, "countryCodes": ["in"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Bharat Petroleum": {"name": "Bharat Petroleum", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/BharatPetroleumcorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q854826"}, "addTags": {"amenity": "fuel", "brand": "Bharat Petroleum", "brand:wikidata": "Q854826", "brand:wikipedia": "en:Bharat Petroleum", "name": "Bharat Petroleum"}, "removeTags": {"amenity": "fuel", "brand": "Bharat Petroleum", "brand:wikidata": "Q854826", "brand:wikipedia": "en:Bharat Petroleum", "name": "Bharat Petroleum"}, "countryCodes": ["in"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Biomax": {"name": "Biomax", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/BiomaxColombia/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62274413"}, "addTags": {"amenity": "fuel", "brand": "Biomax", "brand:wikidata": "Q62274413", "name": "Biomax"}, "removeTags": {"amenity": "fuel", "brand": "Biomax", "brand:wikidata": "Q62274413", "name": "Biomax"}, "countryCodes": ["co"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Bliska": {"name": "Bliska", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q4016378"}, "addTags": {"amenity": "fuel", "brand": "Bliska", "brand:wikidata": "Q4016378", "brand:wikipedia": "pl:Bliska", "name": "Bliska"}, "removeTags": {"amenity": "fuel", "brand": "Bliska", "brand:wikidata": "Q4016378", "brand:wikipedia": "pl:Bliska", "name": "Bliska"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "amenity/fuel/CAMPSA": {"name": "CAMPSA", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1031623"}, "addTags": {"amenity": "fuel", "brand": "CAMPSA", "brand:wikidata": "Q1031623", "brand:wikipedia": "en:Campsa", "name": "CAMPSA"}, "removeTags": {"amenity": "fuel", "brand": "CAMPSA", "brand:wikidata": "Q1031623", "brand:wikipedia": "en:Campsa", "name": "CAMPSA"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/CEPSA": {"name": "CEPSA", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCepsa%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q608819"}, "addTags": {"amenity": "fuel", "brand": "CEPSA", "brand:wikidata": "Q608819", "brand:wikipedia": "en:Compañía Española de Petróleos", "name": "CEPSA"}, "removeTags": {"amenity": "fuel", "brand": "CEPSA", "brand:wikidata": "Q608819", "brand:wikipedia": "en:Compañía Española de Petróleos", "name": "CEPSA"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/CEPSA": {"name": "CEPSA", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/CEPSAespana/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q608819"}, "addTags": {"amenity": "fuel", "brand": "CEPSA", "brand:wikidata": "Q608819", "brand:wikipedia": "en:Cepsa", "name": "CEPSA"}, "removeTags": {"amenity": "fuel", "brand": "CEPSA", "brand:wikidata": "Q608819", "brand:wikipedia": "en:Cepsa", "name": "CEPSA"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Caltex": {"name": "Caltex", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q277470"}, "addTags": {"amenity": "fuel", "brand": "Caltex", "brand:wikidata": "Q277470", "brand:wikipedia": "en:Caltex", "name": "Caltex"}, "removeTags": {"amenity": "fuel", "brand": "Caltex", "brand:wikidata": "Q277470", "brand:wikipedia": "en:Caltex", "name": "Caltex"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Canadian Tire Gas+": {"name": "Canadian Tire Gas+", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Canadiantire/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1032400"}, "addTags": {"amenity": "fuel", "brand": "Canadian Tire", "brand:wikidata": "Q1032400", "brand:wikipedia": "en:Canadian Tire", "name": "Canadian Tire"}, "removeTags": {"amenity": "fuel", "brand": "Canadian Tire", "brand:wikidata": "Q1032400", "brand:wikipedia": "en:Canadian Tire", "name": "Canadian Tire"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Carrefour Market": {"name": "Carrefour Market", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/carrefouritalia/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q217599"}, "addTags": {"amenity": "fuel", "brand": "Carrefour Market", "brand:wikidata": "Q217599", "brand:wikipedia": "en:Carrefour", "name": "Carrefour Market"}, "removeTags": {"amenity": "fuel", "brand": "Carrefour Market", "brand:wikidata": "Q217599", "brand:wikipedia": "en:Carrefour", "name": "Carrefour Market"}, "matchScore": 2, "suggestion": true}, @@ -1970,18 +2018,22 @@ "amenity/fuel/Cenex": {"name": "Cenex", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q5011381"}, "addTags": {"amenity": "fuel", "brand": "Cenex", "brand:wikidata": "Q5011381", "brand:wikipedia": "en:CHS Inc.", "name": "Cenex"}, "removeTags": {"amenity": "fuel", "brand": "Cenex", "brand:wikidata": "Q5011381", "brand:wikipedia": "en:CHS Inc.", "name": "Cenex"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Ceypetco": {"name": "Ceypetco", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q5065795"}, "addTags": {"amenity": "fuel", "brand": "Ceypetco", "brand:wikidata": "Q5065795", "brand:wikipedia": "en:Ceylon Petroleum Corporation", "name": "Ceypetco"}, "removeTags": {"amenity": "fuel", "brand": "Ceypetco", "brand:wikidata": "Q5065795", "brand:wikipedia": "en:Ceylon Petroleum Corporation", "name": "Ceypetco"}, "countryCodes": ["lk"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Chevron": {"name": "Chevron", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChevron%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q319642"}, "addTags": {"amenity": "fuel", "brand": "Chevron", "brand:wikidata": "Q319642", "brand:wikipedia": "en:Chevron Corporation", "name": "Chevron"}, "removeTags": {"amenity": "fuel", "brand": "Chevron", "brand:wikidata": "Q319642", "brand:wikipedia": "en:Chevron Corporation", "name": "Chevron"}, "matchScore": 2, "suggestion": true}, - "amenity/fuel/Circle K": {"name": "Circle K", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCircle%20k%20logo%20detail.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q3268010"}, "addTags": {"amenity": "fuel", "brand": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "Circle K"}, "removeTags": {"amenity": "fuel", "brand": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "Circle K"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Circle K": {"name": "Circle K", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/circlekireland/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q3268010"}, "addTags": {"amenity": "fuel", "brand": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "Circle K"}, "removeTags": {"amenity": "fuel", "brand": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "Circle K"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Citgo": {"name": "Citgo", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCitgo%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2974437"}, "addTags": {"amenity": "fuel", "brand": "Citgo", "brand:wikidata": "Q2974437", "brand:wikipedia": "en:Citgo", "name": "Citgo"}, "removeTags": {"amenity": "fuel", "brand": "Citgo", "brand:wikidata": "Q2974437", "brand:wikipedia": "en:Citgo", "name": "Citgo"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Clark": {"name": "Clark", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q5127157"}, "addTags": {"amenity": "fuel", "brand": "Clark", "brand:wikidata": "Q5127157", "brand:wikipedia": "en:Clark Brands", "name": "Clark"}, "removeTags": {"amenity": "fuel", "brand": "Clark", "brand:wikidata": "Q5127157", "brand:wikipedia": "en:Clark Brands", "name": "Clark"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Co-op": {"name": "Co-op", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSaskatoon%20Co-op%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q5440676"}, "addTags": {"amenity": "fuel", "brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op"}, "removeTags": {"amenity": "fuel", "brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Coles Express": {"name": "Coles Express", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q5144653"}, "addTags": {"amenity": "fuel", "brand": "Coles Express", "brand:wikidata": "Q5144653", "brand:wikipedia": "en:Coles Express", "name": "Coles Express"}, "removeTags": {"amenity": "fuel", "brand": "Coles Express", "brand:wikidata": "Q5144653", "brand:wikipedia": "en:Coles Express", "name": "Coles Express"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Conoco": {"name": "Conoco", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FConoco%20Inc.%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1126518"}, "addTags": {"amenity": "fuel", "brand": "Conoco", "brand:wikidata": "Q1126518", "brand:wikipedia": "en:Conoco", "name": "Conoco"}, "removeTags": {"amenity": "fuel", "brand": "Conoco", "brand:wikidata": "Q1126518", "brand:wikipedia": "en:Conoco", "name": "Conoco"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Conoco": {"name": "Conoco", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/conoco/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1126518"}, "addTags": {"amenity": "fuel", "brand": "Conoco", "brand:wikidata": "Q1126518", "brand:wikipedia": "en:Conoco", "name": "Conoco"}, "removeTags": {"amenity": "fuel", "brand": "Conoco", "brand:wikidata": "Q1126518", "brand:wikipedia": "en:Conoco", "name": "Conoco"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Copec": {"name": "Copec", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q11681461"}, "addTags": {"amenity": "fuel", "brand": "Copec", "brand:wikidata": "Q11681461", "brand:wikipedia": "en:Empresas Copec", "name": "Copec"}, "removeTags": {"amenity": "fuel", "brand": "Copec", "brand:wikidata": "Q11681461", "brand:wikipedia": "en:Empresas Copec", "name": "Copec"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Copetrol": {"name": "Copetrol", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Copetrol/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62274431"}, "addTags": {"amenity": "fuel", "brand": "Copetrol", "brand:wikidata": "Q62274431", "name": "Copetrol"}, "removeTags": {"amenity": "fuel", "brand": "Copetrol", "brand:wikidata": "Q62274431", "name": "Copetrol"}, "countryCodes": ["py"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Cosmo": {"name": "Cosmo", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCosmo%20Oil%20company%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2498318"}, "addTags": {"amenity": "fuel", "brand": "Cosmo", "brand:wikidata": "Q2498318", "brand:wikipedia": "en:Cosmo Oil Company", "name": "Cosmo"}, "removeTags": {"amenity": "fuel", "brand": "Cosmo", "brand:wikidata": "Q2498318", "brand:wikipedia": "en:Cosmo Oil Company", "name": "Cosmo"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Costco Gasoline": {"name": "Costco Gasoline", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Costco/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q715583"}, "addTags": {"amenity": "fuel", "brand": "Costco Gasoline", "brand:wikidata": "Q715583", "brand:wikipedia": "en:Costco", "name": "Costco Gasoline"}, "removeTags": {"amenity": "fuel", "brand": "Costco Gasoline", "brand:wikidata": "Q715583", "brand:wikipedia": "en:Costco", "name": "Costco Gasoline"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Couche-Tard": {"name": "Couche-Tard", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2836957"}, "addTags": {"amenity": "fuel", "brand": "Couche-Tard", "brand:wikidata": "Q2836957", "brand:wikipedia": "en:Alimentation Couche-Tard", "name": "Couche-Tard"}, "removeTags": {"amenity": "fuel", "brand": "Couche-Tard", "brand:wikidata": "Q2836957", "brand:wikipedia": "en:Alimentation Couche-Tard", "name": "Couche-Tard"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Crevier": {"name": "Crevier", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q61743451"}, "addTags": {"amenity": "fuel", "brand": "Crevier", "brand:wikidata": "Q61743451", "name": "Crevier"}, "removeTags": {"amenity": "fuel", "brand": "Crevier", "brand:wikidata": "Q61743451", "name": "Crevier"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Crodux": {"name": "Crodux", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/croduxhr/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62274622"}, "addTags": {"amenity": "fuel", "brand": "Crodux", "brand:wikidata": "Q62274622", "name": "Crodux"}, "removeTags": {"amenity": "fuel", "brand": "Crodux", "brand:wikidata": "Q62274622", "name": "Crodux"}, "countryCodes": ["hr"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Cumberland Farms": {"name": "Cumberland Farms", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1143685"}, "addTags": {"amenity": "fuel", "brand": "Cumberland Farms", "brand:wikidata": "Q1143685", "brand:wikipedia": "en:Cumberland Farms", "name": "Cumberland Farms"}, "removeTags": {"amenity": "fuel", "brand": "Cumberland Farms", "brand:wikidata": "Q1143685", "brand:wikipedia": "en:Cumberland Farms", "name": "Cumberland Farms"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Delta (Panama & Costa Rica)": {"name": "Delta (Panama & Costa Rica)", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PetroleosDelta/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62274638"}, "addTags": {"amenity": "fuel", "brand": "Delta", "brand:wikidata": "Q62274638", "name": "Delta"}, "removeTags": {"amenity": "fuel", "brand": "Delta", "brand:wikidata": "Q62274638", "name": "Delta"}, "countryCodes": ["cr", "pr"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Delta (USA)": {"name": "Delta (USA)", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62274661"}, "addTags": {"amenity": "fuel", "brand": "Delta", "brand:wikidata": "Q62274661", "name": "Delta"}, "removeTags": {"amenity": "fuel", "brand": "Delta", "brand:wikidata": "Q62274661", "name": "Delta"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Diamond Shamrock": {"name": "Diamond Shamrock", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q16973722"}, "addTags": {"amenity": "fuel", "brand": "Diamond Shamrock", "brand:wikidata": "Q16973722", "brand:wikipedia": "en:Diamond Shamrock", "name": "Diamond Shamrock"}, "removeTags": {"amenity": "fuel", "brand": "Diamond Shamrock", "brand:wikidata": "Q16973722", "brand:wikipedia": "en:Diamond Shamrock", "name": "Diamond Shamrock"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Domo": {"name": "Domo", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDOMO%20Gasoline%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q5291326"}, "addTags": {"amenity": "fuel", "brand": "Domo", "brand:wikidata": "Q5291326", "brand:wikipedia": "en:Domo Gasoline", "name": "Domo"}, "removeTags": {"amenity": "fuel", "brand": "Domo", "brand:wikidata": "Q5291326", "brand:wikipedia": "en:Domo Gasoline", "name": "Domo"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/fuel/EKO (Canada)": {"name": "EKO (Canada)", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q3045934"}, "addTags": {"amenity": "fuel", "brand": "EKO", "brand:wikidata": "Q3045934", "brand:wikipedia": "fr:EKO", "name": "EKO"}, "removeTags": {"amenity": "fuel", "brand": "EKO", "brand:wikidata": "Q3045934", "brand:wikipedia": "fr:EKO", "name": "EKO"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, @@ -1994,13 +2046,16 @@ "amenity/fuel/Esso": {"name": "Esso", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/595503093447598080/4ooH4R98_bigger.png", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q867662"}, "addTags": {"amenity": "fuel", "brand": "Esso", "brand:wikidata": "Q867662", "brand:wikipedia": "en:Esso", "name": "Esso"}, "removeTags": {"amenity": "fuel", "brand": "Esso", "brand:wikidata": "Q867662", "brand:wikipedia": "en:Esso", "name": "Esso"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Esso Express": {"name": "Esso Express", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2350336"}, "addTags": {"amenity": "fuel", "brand": "Esso Express", "brand:wikidata": "Q2350336", "brand:wikipedia": "nl:Esso Express", "name": "Esso Express"}, "removeTags": {"amenity": "fuel", "brand": "Esso Express", "brand:wikidata": "Q2350336", "brand:wikipedia": "nl:Esso Express", "name": "Esso Express"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Exxon": {"name": "Exxon", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FExxon%20logo%202016.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q4781944"}, "addTags": {"amenity": "fuel", "brand": "Exxon", "brand:wikidata": "Q4781944", "brand:wikipedia": "en:Exxon", "name": "Exxon"}, "removeTags": {"amenity": "fuel", "brand": "Exxon", "brand:wikidata": "Q4781944", "brand:wikipedia": "en:Exxon", "name": "Exxon"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/F24": {"name": "F24", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q12310853"}, "addTags": {"amenity": "fuel", "brand": "F24", "brand:wikidata": "Q12310853", "brand:wikipedia": "da:F24", "name": "F24"}, "removeTags": {"amenity": "fuel", "brand": "F24", "brand:wikidata": "Q12310853", "brand:wikipedia": "da:F24", "name": "F24"}, "countryCodes": ["dk"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Fas Gas": {"name": "Fas Gas", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q61743505"}, "addTags": {"amenity": "fuel", "brand": "Fas Gas", "brand:wikidata": "Q61743505", "brand:wikipedia": "en:Parkland Fuel", "name": "Fas Gas"}, "removeTags": {"amenity": "fuel", "brand": "Fas Gas", "brand:wikidata": "Q61743505", "brand:wikipedia": "en:Parkland Fuel", "name": "Fas Gas"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Firezone": {"name": "Firezone", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q14628080"}, "addTags": {"amenity": "fuel", "brand": "Firezone", "brand:wikidata": "Q14628080", "brand:wikipedia": "nl:Firezone", "name": "Firezone"}, "removeTags": {"amenity": "fuel", "brand": "Firezone", "brand:wikidata": "Q14628080", "brand:wikipedia": "nl:Firezone", "name": "Firezone"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Flying J": {"name": "Flying J", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFlying%20J%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1434601"}, "addTags": {"amenity": "fuel", "brand": "Flying J", "brand:wikidata": "Q1434601", "brand:wikipedia": "en:Pilot Flying J", "name": "Flying J"}, "removeTags": {"amenity": "fuel", "brand": "Flying J", "brand:wikidata": "Q1434601", "brand:wikipedia": "en:Pilot Flying J", "name": "Flying J"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Flying V": {"name": "Flying V", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/OfficialFlyingV/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62275048"}, "addTags": {"amenity": "fuel", "brand": "Flying V", "brand:wikidata": "Q62275048", "name": "Flying V"}, "removeTags": {"amenity": "fuel", "brand": "Flying V", "brand:wikidata": "Q62275048", "name": "Flying V"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Freie Tankstelle": {"name": "Freie Tankstelle", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1009104"}, "addTags": {"amenity": "fuel", "brand": "Freie Tankstelle", "brand:wikidata": "Q1009104", "brand:wikipedia": "de:Bundesverband freier Tankstellen", "name": "Freie Tankstelle"}, "removeTags": {"amenity": "fuel", "brand": "Freie Tankstelle", "brand:wikidata": "Q1009104", "brand:wikipedia": "de:Bundesverband freier Tankstellen", "name": "Freie Tankstelle"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "amenity/fuel/GALP": {"name": "GALP", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGalp.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1492739"}, "addTags": {"amenity": "fuel", "brand": "GALP", "brand:wikidata": "Q1492739", "brand:wikipedia": "en:Galp Energia", "name": "GALP"}, "removeTags": {"amenity": "fuel", "brand": "GALP", "brand:wikidata": "Q1492739", "brand:wikipedia": "en:Galp Energia", "name": "GALP"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Gazel": {"name": "Gazel", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62529885"}, "addTags": {"amenity": "fuel", "brand": "Gazel", "brand:wikidata": "Q62529885", "name": "Gazel"}, "removeTags": {"amenity": "fuel", "brand": "Gazel", "brand:wikidata": "Q62529885", "name": "Gazel"}, "countryCodes": ["co", "mx", "pe"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Gazprom": {"name": "Gazprom", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGazprom%20Avia%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q102673"}, "addTags": {"amenity": "fuel", "brand": "Gazprom", "brand:wikidata": "Q102673", "brand:wikipedia": "en:Gazprom", "name": "Gazprom"}, "removeTags": {"amenity": "fuel", "brand": "Gazprom", "brand:wikidata": "Q102673", "brand:wikipedia": "en:Gazprom", "name": "Gazprom"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/GetGo": {"name": "GetGo", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q5553766"}, "addTags": {"amenity": "fuel", "brand": "GetGo", "brand:wikidata": "Q5553766", "brand:wikipedia": "en:GetGo", "name": "GetGo"}, "removeTags": {"amenity": "fuel", "brand": "GetGo", "brand:wikidata": "Q5553766", "brand:wikipedia": "en:GetGo", "name": "GetGo"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Glusco": {"name": "Glusco", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Glusco.Ukraine/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62284719"}, "addTags": {"amenity": "fuel", "brand": "Glusco", "brand:wikidata": "Q62284719", "name": "Glusco"}, "removeTags": {"amenity": "fuel", "brand": "Glusco", "brand:wikidata": "Q62284719", "name": "Glusco"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Goil": {"name": "Goil", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q5555383"}, "addTags": {"amenity": "fuel", "brand": "Goil", "brand:wikidata": "Q5555383", "brand:wikipedia": "en:Ghana Oil Company", "name": "Goil"}, "removeTags": {"amenity": "fuel", "brand": "Goil", "brand:wikidata": "Q5555383", "brand:wikipedia": "en:Ghana Oil Company", "name": "Goil"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Gulf": {"name": "Gulf", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGulf%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1296860"}, "addTags": {"amenity": "fuel", "brand": "Gulf", "brand:wikidata": "Q1296860", "brand:wikipedia": "en:Gulf Oil", "name": "Gulf"}, "removeTags": {"amenity": "fuel", "brand": "Gulf", "brand:wikidata": "Q1296860", "brand:wikipedia": "en:Gulf Oil", "name": "Gulf"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Gull": {"name": "Gull", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q5617739"}, "addTags": {"amenity": "fuel", "brand": "Gull", "brand:wikidata": "Q5617739", "brand:wikipedia": "en:Gull Petroleum", "name": "Gull"}, "removeTags": {"amenity": "fuel", "brand": "Gull", "brand:wikidata": "Q5617739", "brand:wikipedia": "en:Gull Petroleum", "name": "Gull"}, "matchScore": 2, "suggestion": true}, @@ -2011,32 +2066,39 @@ "amenity/fuel/Hess": {"name": "Hess", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHess%20Corporation%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1615684"}, "addTags": {"amenity": "fuel", "brand": "Hess", "brand:wikidata": "Q1615684", "brand:wikipedia": "en:Hess Corporation", "name": "Hess"}, "removeTags": {"amenity": "fuel", "brand": "Hess", "brand:wikidata": "Q1615684", "brand:wikipedia": "en:Hess Corporation", "name": "Hess"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Hofer": {"name": "Hofer", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/HOFER.AT/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q15815751"}, "addTags": {"amenity": "fuel", "brand": "Hofer", "brand:wikidata": "Q15815751", "brand:wikipedia": "de:Hofer KG", "name": "Hofer"}, "removeTags": {"amenity": "fuel", "brand": "Hofer", "brand:wikidata": "Q15815751", "brand:wikipedia": "de:Hofer KG", "name": "Hofer"}, "countryCodes": ["at", "si"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Holiday": {"name": "Holiday", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q5880490"}, "addTags": {"amenity": "fuel", "brand": "Holiday", "brand:wikidata": "Q5880490", "brand:wikipedia": "en:Holiday Stationstores", "name": "Holiday"}, "removeTags": {"amenity": "fuel", "brand": "Holiday", "brand:wikidata": "Q5880490", "brand:wikipedia": "en:Holiday Stationstores", "name": "Holiday"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/IES": {"name": "IES", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62287387"}, "addTags": {"amenity": "fuel", "brand": "IES", "brand:wikidata": "Q62287387", "name": "IES"}, "removeTags": {"amenity": "fuel", "brand": "IES", "brand:wikidata": "Q62287387", "name": "IES"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, "amenity/fuel/IP": {"name": "IP", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q646807"}, "addTags": {"amenity": "fuel", "brand": "IP", "brand:wikidata": "Q646807", "brand:wikipedia": "en:Anonima Petroli Italiana", "name": "IP"}, "removeTags": {"amenity": "fuel", "brand": "IP", "brand:wikidata": "Q646807", "brand:wikipedia": "en:Anonima Petroli Italiana", "name": "IP"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Indian Oil": {"name": "Indian Oil", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FIndian%20Oil%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1289348"}, "addTags": {"amenity": "fuel", "brand": "Indian Oil", "brand:wikidata": "Q1289348", "brand:wikipedia": "en:Indian Oil Corporation", "name": "Indian Oil"}, "removeTags": {"amenity": "fuel", "brand": "Indian Oil", "brand:wikidata": "Q1289348", "brand:wikipedia": "en:Indian Oil Corporation", "name": "Indian Oil"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Ingo": {"name": "Ingo", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q17048617"}, "addTags": {"amenity": "fuel", "brand": "Ingo", "brand:wikidata": "Q17048617", "brand:wikipedia": "en:Ingo (brand)", "name": "Ingo"}, "removeTags": {"amenity": "fuel", "brand": "Ingo", "brand:wikidata": "Q17048617", "brand:wikipedia": "en:Ingo (brand)", "name": "Ingo"}, "matchScore": 2, "suggestion": true}, - "amenity/fuel/Intermarché": {"name": "Intermarché", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q3153200"}, "addTags": {"amenity": "fuel", "brand": "Intermarché", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché"}, "removeTags": {"amenity": "fuel", "brand": "Intermarché", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Intermarché": {"name": "Intermarché", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/tousuniscontrelaviechere/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q3153200"}, "addTags": {"amenity": "fuel", "brand": "Intermarché", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché"}, "removeTags": {"amenity": "fuel", "brand": "Intermarché", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Ipiranga": {"name": "Ipiranga", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2081136"}, "addTags": {"amenity": "fuel", "brand": "Ipiranga", "brand:wikidata": "Q2081136", "brand:wikipedia": "pt:Ipiranga (empresa)", "name": "Ipiranga"}, "removeTags": {"amenity": "fuel", "brand": "Ipiranga", "brand:wikidata": "Q2081136", "brand:wikipedia": "pt:Ipiranga (empresa)", "name": "Ipiranga"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Irving": {"name": "Irving", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FIrving%20Oil%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1673286"}, "addTags": {"amenity": "fuel", "brand": "Irving", "brand:wikidata": "Q1673286", "brand:wikipedia": "en:Irving Oil", "name": "Irving"}, "removeTags": {"amenity": "fuel", "brand": "Irving", "brand:wikidata": "Q1673286", "brand:wikipedia": "en:Irving Oil", "name": "Irving"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/JA-SS": {"name": "JA-SS", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q11225213"}, "addTags": {"amenity": "fuel", "brand": "JA-SS", "brand:wikidata": "Q11225213", "brand:wikipedia": "ja:JA-SS", "name": "JA-SS"}, "removeTags": {"amenity": "fuel", "brand": "JA-SS", "brand:wikidata": "Q11225213", "brand:wikipedia": "ja:JA-SS", "name": "JA-SS"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Jet": {"name": "Jet", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q568940"}, "addTags": {"amenity": "fuel", "brand": "Jet", "brand:wikidata": "Q568940", "brand:wikipedia": "en:Jet (brand)", "name": "Jet"}, "removeTags": {"amenity": "fuel", "brand": "Jet", "brand:wikidata": "Q568940", "brand:wikipedia": "en:Jet (brand)", "name": "Jet"}, "matchScore": 2, "suggestion": true}, - "amenity/fuel/Kobil": {"name": "Kobil", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q22906119"}, "addTags": {"amenity": "fuel", "brand": "Kobil", "brand:wikidata": "Q22906119", "brand:wikipedia": "en:KenolKobil", "name": "Kobil"}, "removeTags": {"amenity": "fuel", "brand": "Kobil", "brand:wikidata": "Q22906119", "brand:wikipedia": "en:KenolKobil", "name": "Kobil"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Jetti": {"name": "Jetti", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Jetti-Petroleum-Inc-1733916930229227/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62288720"}, "addTags": {"amenity": "fuel", "brand": "Jetti", "brand:wikidata": "Q62288720", "name": "Jetti"}, "removeTags": {"amenity": "fuel", "brand": "Jetti", "brand:wikidata": "Q62288720", "name": "Jetti"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Kobil": {"name": "Kobil", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/kenolkobil/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q22906119"}, "addTags": {"amenity": "fuel", "brand": "Kobil", "brand:wikidata": "Q22906119", "brand:wikipedia": "en:KenolKobil", "name": "Kobil"}, "removeTags": {"amenity": "fuel", "brand": "Kobil", "brand:wikidata": "Q22906119", "brand:wikipedia": "en:KenolKobil", "name": "Kobil"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Kroger": {"name": "Kroger", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Kroger/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q153417"}, "addTags": {"amenity": "fuel", "brand": "Kroger", "brand:wikidata": "Q153417", "brand:wikipedia": "en:Kroger", "name": "Kroger"}, "removeTags": {"amenity": "fuel", "brand": "Kroger", "brand:wikidata": "Q153417", "brand:wikipedia": "en:Kroger", "name": "Kroger"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Kum & Go": {"name": "Kum & Go", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q6443340"}, "addTags": {"amenity": "fuel", "brand": "Kum & Go", "brand:wikidata": "Q6443340", "brand:wikipedia": "en:Kum & Go", "name": "Kum & Go"}, "removeTags": {"amenity": "fuel", "brand": "Kum & Go", "brand:wikidata": "Q6443340", "brand:wikipedia": "en:Kum & Go", "name": "Kum & Go"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Kwik Trip": {"name": "Kwik Trip", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q6450420"}, "addTags": {"amenity": "fuel", "brand": "Kwik Trip", "brand:wikidata": "Q6450420", "brand:wikipedia": "en:Kwik Trip", "name": "Kwik Trip"}, "removeTags": {"amenity": "fuel", "brand": "Kwik Trip", "brand:wikidata": "Q6450420", "brand:wikipedia": "en:Kwik Trip", "name": "Kwik Trip"}, "matchScore": 2, "suggestion": true}, - "amenity/fuel/Lotos": {"name": "Lotos", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1256909"}, "addTags": {"amenity": "fuel", "brand": "Lotos", "brand:wikidata": "Q1256909", "brand:wikipedia": "en:Grupa Lotos", "name": "Lotos"}, "removeTags": {"amenity": "fuel", "brand": "Lotos", "brand:wikidata": "Q1256909", "brand:wikipedia": "en:Grupa Lotos", "name": "Lotos"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Kwik Trip": {"name": "Kwik Trip", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/KwikTrip/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q6450420"}, "addTags": {"amenity": "fuel", "brand": "Kwik Trip", "brand:wikidata": "Q6450420", "brand:wikipedia": "en:Kwik Trip", "name": "Kwik Trip"}, "removeTags": {"amenity": "fuel", "brand": "Kwik Trip", "brand:wikidata": "Q6450420", "brand:wikipedia": "en:Kwik Trip", "name": "Kwik Trip"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Lotos": {"name": "Lotos", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/GrupaLOTOS/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1256909"}, "addTags": {"amenity": "fuel", "brand": "Lotos", "brand:wikidata": "Q1256909", "brand:wikipedia": "en:Grupa Lotos", "name": "Lotos"}, "removeTags": {"amenity": "fuel", "brand": "Lotos", "brand:wikidata": "Q1256909", "brand:wikipedia": "en:Grupa Lotos", "name": "Lotos"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Lotos Optima": {"name": "Lotos Optima", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/GrupaLOTOS/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1256909"}, "addTags": {"amenity": "fuel", "brand": "Lotos Optima", "brand:wikidata": "Q1256909", "brand:wikipedia": "en:Grupa Lotos", "name": "Lotos Optima"}, "removeTags": {"amenity": "fuel", "brand": "Lotos Optima", "brand:wikidata": "Q1256909", "brand:wikipedia": "en:Grupa Lotos", "name": "Lotos Optima"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Love's": {"name": "Love's", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLove%E2%80%99s%20Travel%20Stops%20%26%20Country%20Stores%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1872496"}, "addTags": {"amenity": "fuel", "brand": "Love's", "brand:wikidata": "Q1872496", "brand:wikipedia": "en:Love's Travel Stops & Country Stores", "name": "Love's"}, "removeTags": {"amenity": "fuel", "brand": "Love's", "brand:wikidata": "Q1872496", "brand:wikipedia": "en:Love's Travel Stops & Country Stores", "name": "Love's"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Lukoil": {"name": "Lukoil", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLUK%20OIL%20Logo%20kyr.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q329347"}, "addTags": {"amenity": "fuel", "brand": "Lukoil", "brand:wikidata": "Q329347", "brand:wikipedia": "en:Lukoil", "name": "Lukoil"}, "removeTags": {"amenity": "fuel", "brand": "Lukoil", "brand:wikidata": "Q329347", "brand:wikipedia": "en:Lukoil", "name": "Lukoil"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/MEROIL": {"name": "MEROIL", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62292559"}, "addTags": {"amenity": "fuel", "brand": "MEROIL", "brand:wikidata": "Q62292559", "name": "MEROIL"}, "removeTags": {"amenity": "fuel", "brand": "MEROIL", "brand:wikidata": "Q62292559", "name": "MEROIL"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, "amenity/fuel/MOL": {"name": "MOL", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/mymolo/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q549181"}, "addTags": {"amenity": "fuel", "brand": "MOL", "brand:wikidata": "Q549181", "brand:wikipedia": "en:MOL (company)", "name": "MOL"}, "removeTags": {"amenity": "fuel", "brand": "MOL", "brand:wikidata": "Q549181", "brand:wikipedia": "en:MOL (company)", "name": "MOL"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/MRS": {"name": "MRS", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q56274919"}, "addTags": {"amenity": "fuel", "brand": "MRS", "brand:wikidata": "Q56274919", "brand:wikipedia": "en:MRS Oil Nigeria Plc", "name": "MRS"}, "removeTags": {"amenity": "fuel", "brand": "MRS", "brand:wikidata": "Q56274919", "brand:wikipedia": "en:MRS Oil Nigeria Plc", "name": "MRS"}, "countryCodes": ["ng"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Mac's": {"name": "Mac's", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q4043527"}, "addTags": {"amenity": "fuel", "brand": "Mac's", "brand:wikidata": "Q4043527", "brand:wikipedia": "en:Mac's Convenience Stores", "name": "Mac's"}, "removeTags": {"amenity": "fuel", "brand": "Mac's", "brand:wikidata": "Q4043527", "brand:wikipedia": "en:Mac's Convenience Stores", "name": "Mac's"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/fuel/MacEwen": {"name": "MacEwen", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q61740335"}, "addTags": {"amenity": "fuel", "brand": "MacEwen", "brand:wikidata": "Q61740335", "name": "MacEwen"}, "removeTags": {"amenity": "fuel", "brand": "MacEwen", "brand:wikidata": "Q61740335", "name": "MacEwen"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Marathon": {"name": "Marathon", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMarathon%20Oil%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q458363"}, "addTags": {"amenity": "fuel", "brand": "Marathon", "brand:wikidata": "Q458363", "brand:wikipedia": "en:Marathon Petroleum", "name": "Marathon"}, "removeTags": {"amenity": "fuel", "brand": "Marathon", "brand:wikidata": "Q458363", "brand:wikipedia": "en:Marathon Petroleum", "name": "Marathon"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Marathon": {"name": "Marathon", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/MarathonPetroleumCorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q458363"}, "addTags": {"amenity": "fuel", "brand": "Marathon", "brand:wikidata": "Q458363", "brand:wikipedia": "en:Marathon Petroleum", "name": "Marathon"}, "removeTags": {"amenity": "fuel", "brand": "Marathon", "brand:wikidata": "Q458363", "brand:wikipedia": "en:Marathon Petroleum", "name": "Marathon"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Maverik": {"name": "Maverik", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q16974822"}, "addTags": {"amenity": "fuel", "brand": "Maverik", "brand:wikidata": "Q16974822", "brand:wikipedia": "en:FJ Management", "name": "Maverik"}, "removeTags": {"amenity": "fuel", "brand": "Maverik", "brand:wikidata": "Q16974822", "brand:wikipedia": "en:FJ Management", "name": "Maverik"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Maxol": {"name": "Maxol", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q3302837"}, "addTags": {"amenity": "fuel", "brand": "Maxol", "brand:wikidata": "Q3302837", "brand:wikipedia": "en:Maxol", "name": "Maxol"}, "removeTags": {"amenity": "fuel", "brand": "Maxol", "brand:wikidata": "Q3302837", "brand:wikipedia": "en:Maxol", "name": "Maxol"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Metano": {"name": "Metano", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62294765"}, "addTags": {"amenity": "fuel", "brand": "Metano", "brand:wikidata": "Q62294765", "name": "Metano"}, "removeTags": {"amenity": "fuel", "brand": "Metano", "brand:wikidata": "Q62294765", "name": "Metano"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Migrol": {"name": "Migrol", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Migrol.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1747771"}, "addTags": {"amenity": "fuel", "brand": "Migrol", "brand:wikidata": "Q1747771", "brand:wikipedia": "de:Migrol", "name": "Migrol"}, "removeTags": {"amenity": "fuel", "brand": "Migrol", "brand:wikidata": "Q1747771", "brand:wikipedia": "de:Migrol", "name": "Migrol"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Mobil": {"name": "Mobil", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMobil%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q3088656"}, "addTags": {"amenity": "fuel", "brand": "Mobil", "brand:wikidata": "Q3088656", "brand:wikipedia": "en:Mobil", "name": "Mobil"}, "removeTags": {"amenity": "fuel", "brand": "Mobil", "brand:wikidata": "Q3088656", "brand:wikipedia": "en:Mobil", "name": "Mobil"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Moil": {"name": "Moil", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/milanpetrol/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62296914"}, "addTags": {"amenity": "fuel", "brand": "Moil", "brand:wikidata": "Q62296914", "name": "Moil"}, "removeTags": {"amenity": "fuel", "brand": "Moil", "brand:wikidata": "Q62296914", "name": "Moil"}, "countryCodes": ["tr"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Morrisons": {"name": "Morrisons", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/1069883324204769280/cbPhjnwc_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q922344"}, "addTags": {"amenity": "fuel", "brand": "Morrisons", "brand:wikidata": "Q922344", "brand:wikipedia": "en:Morrisons", "name": "Morrisons"}, "removeTags": {"amenity": "fuel", "brand": "Morrisons", "brand:wikidata": "Q922344", "brand:wikipedia": "en:Morrisons", "name": "Morrisons"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Murphy USA": {"name": "Murphy USA", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMurphylogo3d2.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q19604459"}, "addTags": {"amenity": "fuel", "brand": "Murphy USA", "brand:wikidata": "Q19604459", "brand:wikipedia": "en:Murphy USA", "name": "Murphy USA"}, "removeTags": {"amenity": "fuel", "brand": "Murphy USA", "brand:wikidata": "Q19604459", "brand:wikipedia": "en:Murphy USA", "name": "Murphy USA"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Moya": {"name": "Moya", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/moyastacja/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62297700"}, "addTags": {"amenity": "fuel", "brand": "Moya", "brand:wikidata": "Q62297700", "name": "Moya"}, "removeTags": {"amenity": "fuel", "brand": "Moya", "brand:wikidata": "Q62297700", "name": "Moya"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Murphy USA": {"name": "Murphy USA", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/MurphyUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q19604459"}, "addTags": {"amenity": "fuel", "brand": "Murphy USA", "brand:wikidata": "Q19604459", "brand:wikipedia": "en:Murphy USA", "name": "Murphy USA"}, "removeTags": {"amenity": "fuel", "brand": "Murphy USA", "brand:wikidata": "Q19604459", "brand:wikipedia": "en:Murphy USA", "name": "Murphy USA"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/NP": {"name": "NP", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7842382"}, "addTags": {"amenity": "fuel", "brand": "NP", "brand:wikidata": "Q7842382", "brand:wikipedia": "en:Trinidad & Tobago National Petroleum Marketing Company Limited", "name": "NP"}, "removeTags": {"amenity": "fuel", "brand": "NP", "brand:wikidata": "Q7842382", "brand:wikipedia": "en:Trinidad & Tobago National Petroleum Marketing Company Limited", "name": "NP"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Neste": {"name": "Neste", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/1015138866095906816/Va1aA79Z_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q616376"}, "addTags": {"amenity": "fuel", "brand": "Neste", "brand:wikidata": "Q616376", "brand:wikipedia": "en:Neste", "name": "Neste"}, "removeTags": {"amenity": "fuel", "brand": "Neste", "brand:wikidata": "Q616376", "brand:wikipedia": "en:Neste", "name": "Neste"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/OIL!": {"name": "OIL!", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20OIL!.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2007561"}, "addTags": {"amenity": "fuel", "brand": "OIL!", "brand:wikidata": "Q2007561", "brand:wikipedia": "de:OIL! Tankstellen", "name": "OIL!"}, "removeTags": {"amenity": "fuel", "brand": "OIL!", "brand:wikidata": "Q2007561", "brand:wikipedia": "de:OIL! Tankstellen", "name": "OIL!"}, "matchScore": 2, "suggestion": true}, @@ -2045,15 +2107,17 @@ "amenity/fuel/OMV": {"name": "OMV", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FOmv%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q168238"}, "addTags": {"amenity": "fuel", "brand": "OMV", "brand:wikidata": "Q168238", "brand:wikipedia": "en:OMV", "name": "OMV"}, "removeTags": {"amenity": "fuel", "brand": "OMV", "brand:wikidata": "Q168238", "brand:wikipedia": "en:OMV", "name": "OMV"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Oilibya": {"name": "Oilibya", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7081491"}, "addTags": {"amenity": "fuel", "brand": "Oilibya", "brand:wikidata": "Q7081491", "brand:wikipedia": "en:Oilibya", "name": "Oilibya", "name:ar": "أويليبيا"}, "removeTags": {"amenity": "fuel", "brand": "Oilibya", "brand:wikidata": "Q7081491", "brand:wikipedia": "en:Oilibya", "name": "Oilibya", "name:ar": "أويليبيا"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Opet": {"name": "Opet", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20of%20Opet.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7072824"}, "addTags": {"amenity": "fuel", "brand": "Opet", "brand:wikidata": "Q7072824", "brand:wikipedia": "en:Opet", "name": "Opet"}, "removeTags": {"amenity": "fuel", "brand": "Opet", "brand:wikidata": "Q7072824", "brand:wikipedia": "en:Opet", "name": "Opet"}, "countryCodes": ["tr"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Orlen": {"name": "Orlen", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q971649"}, "addTags": {"amenity": "fuel", "brand": "Orlen", "brand:wikidata": "Q971649", "brand:wikipedia": "en:PKN Orlen", "name": "Orlen"}, "removeTags": {"amenity": "fuel", "brand": "Orlen", "brand:wikidata": "Q971649", "brand:wikipedia": "en:PKN Orlen", "name": "Orlen"}, "matchScore": 2, "suggestion": true}, - "amenity/fuel/Oxxo": {"name": "Oxxo", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FOxxo%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1342538"}, "addTags": {"amenity": "fuel", "brand": "Oxxo", "brand:wikidata": "Q1342538", "brand:wikipedia": "es:Oxxo", "name": "Oxxo"}, "removeTags": {"amenity": "fuel", "brand": "Oxxo", "brand:wikidata": "Q1342538", "brand:wikipedia": "es:Oxxo", "name": "Oxxo"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Orlen": {"name": "Orlen", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ORLENOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q971649"}, "addTags": {"amenity": "fuel", "brand": "Orlen", "brand:wikidata": "Q971649", "brand:wikipedia": "en:PKN Orlen", "name": "Orlen"}, "removeTags": {"amenity": "fuel", "brand": "Orlen", "brand:wikidata": "Q971649", "brand:wikipedia": "en:PKN Orlen", "name": "Orlen"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Oxxo": {"name": "Oxxo", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/OXXOTiendas/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1342538"}, "addTags": {"amenity": "fuel", "brand": "Oxxo", "brand:wikidata": "Q1342538", "brand:wikipedia": "es:Oxxo", "name": "Oxxo"}, "removeTags": {"amenity": "fuel", "brand": "Oxxo", "brand:wikidata": "Q1342538", "brand:wikipedia": "es:Oxxo", "name": "Oxxo"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/PSO": {"name": "PSO", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2741455"}, "addTags": {"amenity": "fuel", "brand": "PSO", "brand:wikidata": "Q2741455", "brand:wikipedia": "en:Pakistan State Oil", "name": "PSO"}, "removeTags": {"amenity": "fuel", "brand": "PSO", "brand:wikidata": "Q2741455", "brand:wikipedia": "en:Pakistan State Oil", "name": "PSO"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/PT": {"name": "PT", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ptstation/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62298612"}, "addTags": {"amenity": "fuel", "brand": "PT", "brand:wikidata": "Q62298612", "name": "PT"}, "removeTags": {"amenity": "fuel", "brand": "PT", "brand:wikidata": "Q62298612", "name": "PT"}, "countryCodes": ["th"], "matchScore": 2, "suggestion": true}, "amenity/fuel/PTT": {"name": "PTT", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1810389"}, "addTags": {"amenity": "fuel", "brand": "PTT", "brand:wikidata": "Q1810389", "brand:wikipedia": "en:PTT Public Company Limited", "name": "PTT"}, "removeTags": {"amenity": "fuel", "brand": "PTT", "brand:wikidata": "Q1810389", "brand:wikipedia": "en:PTT Public Company Limited", "name": "PTT"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/PV Oil": {"name": "PV Oil", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2089536"}, "addTags": {"amenity": "fuel", "brand": "PV Oil", "brand:wikidata": "Q2089536", "brand:wikipedia": "en:Petrovietnam", "name": "PV Oil"}, "removeTags": {"amenity": "fuel", "brand": "PV Oil", "brand:wikidata": "Q2089536", "brand:wikipedia": "en:Petrovietnam", "name": "PV Oil"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Pacific Pride": {"name": "Pacific Pride", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7122637"}, "addTags": {"amenity": "fuel", "brand": "Pacific Pride", "brand:wikidata": "Q7122637", "brand:wikipedia": "en:Pacific Pride", "name": "Pacific Pride"}, "removeTags": {"amenity": "fuel", "brand": "Pacific Pride", "brand:wikidata": "Q7122637", "brand:wikipedia": "en:Pacific Pride", "name": "Pacific Pride"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Pecsa": {"name": "Pecsa", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PecsaPeru/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62299262"}, "addTags": {"amenity": "fuel", "brand": "Pecsa", "brand:wikidata": "Q62299262", "name": "Pecsa"}, "removeTags": {"amenity": "fuel", "brand": "Pecsa", "brand:wikidata": "Q62299262", "name": "Pecsa"}, "countryCodes": ["pe"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Pemex": {"name": "Pemex", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Petr%C3%B3leos%20Mexicanos.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q871308"}, "addTags": {"amenity": "fuel", "brand": "Pemex", "brand:wikidata": "Q871308", "brand:wikipedia": "en:Pemex", "name": "Pemex"}, "removeTags": {"amenity": "fuel", "brand": "Pemex", "brand:wikidata": "Q871308", "brand:wikipedia": "en:Pemex", "name": "Pemex"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Pertamina": {"name": "Pertamina", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPertamina%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1641044"}, "addTags": {"amenity": "fuel", "brand": "Pertamina", "brand:wikidata": "Q1641044", "brand:wikipedia": "en:Pertamina", "name": "Pertamina"}, "removeTags": {"amenity": "fuel", "brand": "Pertamina", "brand:wikidata": "Q1641044", "brand:wikipedia": "en:Pertamina", "name": "Pertamina"}, "matchScore": 2, "suggestion": true}, - "amenity/fuel/Petro-Canada": {"name": "Petro-Canada", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPetro%20canada%20logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1208279"}, "addTags": {"amenity": "fuel", "brand": "Petro-Canada", "brand:wikidata": "Q1208279", "brand:wikipedia": "en:Petro-Canada", "name": "Petro-Canada"}, "removeTags": {"amenity": "fuel", "brand": "Petro-Canada", "brand:wikidata": "Q1208279", "brand:wikipedia": "en:Petro-Canada", "name": "Petro-Canada"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Petro-Canada": {"name": "Petro-Canada", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/petrocanada/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1208279"}, "addTags": {"amenity": "fuel", "brand": "Petro-Canada", "brand:wikidata": "Q1208279", "brand:wikipedia": "en:Petro-Canada", "name": "Petro-Canada"}, "removeTags": {"amenity": "fuel", "brand": "Petro-Canada", "brand:wikidata": "Q1208279", "brand:wikipedia": "en:Petro-Canada", "name": "Petro-Canada"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Petro-T": {"name": "Petro-T", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q61743540"}, "addTags": {"amenity": "fuel", "brand": "Petro-T", "brand:wikidata": "Q61743540", "name": "Petro-T"}, "removeTags": {"amenity": "fuel", "brand": "Petro-T", "brand:wikidata": "Q61743540", "name": "Petro-T"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/PetroPerú": {"name": "PetroPerú", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Petroperu%20vertical%20negativo.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2506390"}, "addTags": {"amenity": "fuel", "brand": "PetroPerú", "brand:wikidata": "Q2506390", "brand:wikipedia": "es:Petroperú", "name": "PetroPerú"}, "removeTags": {"amenity": "fuel", "brand": "PetroPerú", "brand:wikidata": "Q2506390", "brand:wikipedia": "es:Petroperú", "name": "PetroPerú"}, "countryCodes": ["pe"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Petrochina": {"name": "Petrochina", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q503182"}, "addTags": {"amenity": "fuel", "brand": "Petrochina", "brand:wikidata": "Q503182", "brand:wikipedia": "en:PetroChina", "name": "Petrochina"}, "removeTags": {"amenity": "fuel", "brand": "Petrochina", "brand:wikidata": "Q503182", "brand:wikipedia": "en:PetroChina", "name": "Petrochina"}, "countryCodes": ["cn"], "matchScore": 2, "suggestion": true}, @@ -2065,19 +2129,23 @@ "amenity/fuel/Petron": {"name": "Petron", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PetronCorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7179011"}, "addTags": {"amenity": "fuel", "brand": "Petron", "brand:wikidata": "Q7179011", "brand:wikipedia": "en:Petron Corporation", "name": "Petron"}, "removeTags": {"amenity": "fuel", "brand": "Petron", "brand:wikidata": "Q7179011", "brand:wikipedia": "en:Petron Corporation", "name": "Petron"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Petronas": {"name": "Petronas", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPetronas%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q221692"}, "addTags": {"amenity": "fuel", "brand": "Petronas", "brand:wikidata": "Q221692", "brand:wikipedia": "en:Petronas", "name": "Petronas"}, "removeTags": {"amenity": "fuel", "brand": "Petronas", "brand:wikidata": "Q221692", "brand:wikipedia": "en:Petronas", "name": "Petronas"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Petronor": {"name": "Petronor", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1726547"}, "addTags": {"amenity": "fuel", "brand": "Petronor", "brand:wikidata": "Q1726547", "brand:wikipedia": "es:Petronor", "name": "Petronor"}, "removeTags": {"amenity": "fuel", "brand": "Petronor", "brand:wikidata": "Q1726547", "brand:wikipedia": "es:Petronor", "name": "Petronor"}, "matchScore": 2, "suggestion": true}, - "amenity/fuel/Phillips 66": {"name": "Phillips 66", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPhillips%2066%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1656230"}, "addTags": {"amenity": "fuel", "brand": "Phillips 66", "brand:wikidata": "Q1656230", "brand:wikipedia": "en:Phillips 66", "name": "Phillips 66"}, "removeTags": {"amenity": "fuel", "brand": "Phillips 66", "brand:wikidata": "Q1656230", "brand:wikipedia": "en:Phillips 66", "name": "Phillips 66"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Phillips 66": {"name": "Phillips 66", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Phillips66Co/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1656230"}, "addTags": {"amenity": "fuel", "brand": "Phillips 66", "brand:wikidata": "Q1656230", "brand:wikipedia": "en:Phillips 66", "name": "Phillips 66"}, "removeTags": {"amenity": "fuel", "brand": "Phillips 66", "brand:wikidata": "Q1656230", "brand:wikipedia": "en:Phillips 66", "name": "Phillips 66"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Phoenix": {"name": "Phoenix", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7186949"}, "addTags": {"amenity": "fuel", "brand": "Phoenix", "brand:wikidata": "Q7186949", "brand:wikipedia": "en:Phoenix Petroleum", "name": "Phoenix"}, "removeTags": {"amenity": "fuel", "brand": "Phoenix", "brand:wikidata": "Q7186949", "brand:wikipedia": "en:Phoenix Petroleum", "name": "Phoenix"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Pilot": {"name": "Pilot", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/pilottravelcenters/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1434601"}, "addTags": {"amenity": "fuel", "brand": "Pilot", "brand:wikidata": "Q1434601", "brand:wikipedia": "en:Pilot Flying J", "name": "Pilot"}, "removeTags": {"amenity": "fuel", "brand": "Pilot", "brand:wikidata": "Q1434601", "brand:wikipedia": "en:Pilot Flying J", "name": "Pilot"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Pioneer": {"name": "Pioneer", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7196684"}, "addTags": {"amenity": "fuel", "brand": "Pioneer", "brand:wikidata": "Q7196684", "brand:wikipedia": "en:Pioneer Energy", "name": "Pioneer"}, "removeTags": {"amenity": "fuel", "brand": "Pioneer", "brand:wikidata": "Q7196684", "brand:wikipedia": "en:Pioneer Energy", "name": "Pioneer"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Preem": {"name": "Preem", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q598835"}, "addTags": {"amenity": "fuel", "brand": "Preem", "brand:wikidata": "Q598835", "brand:wikipedia": "en:Preem", "name": "Preem"}, "removeTags": {"amenity": "fuel", "brand": "Preem", "brand:wikidata": "Q598835", "brand:wikipedia": "en:Preem", "name": "Preem"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Primax (Ecuador)": {"name": "Primax (Ecuador)", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PrimaxEcuador/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62332857"}, "addTags": {"amenity": "fuel", "brand": "Primax", "brand:wikidata": "Q62332857", "name": "Primax"}, "removeTags": {"amenity": "fuel", "brand": "Primax", "brand:wikidata": "Q62332857", "name": "Primax"}, "countryCodes": ["ec"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Primax (Peru)": {"name": "Primax (Peru)", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PrimaxPeru/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62332638"}, "addTags": {"amenity": "fuel", "brand": "Primax", "brand:wikidata": "Q62332638", "name": "Primax"}, "removeTags": {"amenity": "fuel", "brand": "Primax", "brand:wikidata": "Q62332638", "name": "Primax"}, "countryCodes": ["pe"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Prio": {"name": "Prio", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PrioEnergy/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62530421"}, "addTags": {"amenity": "fuel", "brand": "Prio", "brand:wikidata": "Q62530421", "name": "Prio"}, "removeTags": {"amenity": "fuel", "brand": "Prio", "brand:wikidata": "Q62530421", "name": "Prio"}, "countryCodes": ["pt"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Puma": {"name": "Puma", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPuma%20Energy%20Logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7259769"}, "addTags": {"amenity": "fuel", "brand": "Puma", "brand:wikidata": "Q7259769", "brand:wikipedia": "en:Puma Energy", "name": "Puma"}, "removeTags": {"amenity": "fuel", "brand": "Puma", "brand:wikidata": "Q7259769", "brand:wikipedia": "en:Puma Energy", "name": "Puma"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Q1": {"name": "Q1", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Q1EnergieAG/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62086498"}, "addTags": {"amenity": "fuel", "brand": "Q1", "brand:wikidata": "Q62086498", "name": "Q1", "operator": "Q1 Energie AG", "operator:wikidata": "Q2121146", "operator:wikipedia": "de:Q1 Energie"}, "removeTags": {"amenity": "fuel", "brand": "Q1", "brand:wikidata": "Q62086498", "name": "Q1", "operator": "Q1 Energie AG", "operator:wikidata": "Q2121146", "operator:wikipedia": "de:Q1 Energie"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Q8": {"name": "Q8", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1634762"}, "addTags": {"amenity": "fuel", "brand": "Q8", "brand:wikidata": "Q1634762", "brand:wikipedia": "en:Kuwait Petroleum Corporation", "name": "Q8"}, "removeTags": {"amenity": "fuel", "brand": "Q8", "brand:wikidata": "Q1634762", "brand:wikipedia": "en:Kuwait Petroleum Corporation", "name": "Q8"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Q8 Easy": {"name": "Q8 Easy", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1806948"}, "addTags": {"amenity": "fuel", "brand": "Q8 Easy", "brand:wikidata": "Q1806948", "brand:wikipedia": "nl:Q8 Easy", "name": "Q8 Easy"}, "removeTags": {"amenity": "fuel", "brand": "Q8 Easy", "brand:wikidata": "Q1806948", "brand:wikipedia": "nl:Q8 Easy", "name": "Q8 Easy"}, "matchScore": 2, "suggestion": true}, - "amenity/fuel/QT": {"name": "QT", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/978987077554581504/R7x8NTvv_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7271953"}, "addTags": {"amenity": "fuel", "brand": "QT", "brand:wikidata": "Q7271953", "brand:wikipedia": "en:QuikTrip", "name": "QT"}, "removeTags": {"amenity": "fuel", "brand": "QT", "brand:wikidata": "Q7271953", "brand:wikipedia": "en:QuikTrip", "name": "QT"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Qstar": {"name": "Qstar", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q10647961"}, "addTags": {"amenity": "fuel", "brand": "Qstar", "brand:wikidata": "Q10647961", "brand:wikipedia": "sv:Qstar", "name": "Qstar"}, "removeTags": {"amenity": "fuel", "brand": "Qstar", "brand:wikidata": "Q10647961", "brand:wikipedia": "sv:Qstar", "name": "Qstar"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, "amenity/fuel/QuikTrip": {"name": "QuikTrip", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/978987077554581504/R7x8NTvv_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7271953"}, "addTags": {"amenity": "fuel", "brand": "QuikTrip", "brand:wikidata": "Q7271953", "brand:wikipedia": "en:QuikTrip", "name": "QuikTrip"}, "removeTags": {"amenity": "fuel", "brand": "QuikTrip", "brand:wikidata": "Q7271953", "brand:wikipedia": "en:QuikTrip", "name": "QuikTrip"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Race Trac": {"name": "Race Trac", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/RaceTrac/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q735942"}, "addTags": {"amenity": "fuel", "brand": "Race Trac", "brand:wikidata": "Q735942", "brand:wikipedia": "en:RaceTrac", "name": "Race Trac"}, "removeTags": {"amenity": "fuel", "brand": "Race Trac", "brand:wikidata": "Q735942", "brand:wikipedia": "en:RaceTrac", "name": "Race Trac"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Repsol": {"name": "Repsol", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20de%20Repsol.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q174747"}, "addTags": {"amenity": "fuel", "brand": "Repsol", "brand:wikidata": "Q174747", "brand:wikipedia": "es:Repsol", "name": "Repsol"}, "removeTags": {"amenity": "fuel", "brand": "Repsol", "brand:wikidata": "Q174747", "brand:wikipedia": "es:Repsol", "name": "Repsol"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Revoil": {"name": "Revoil", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/revoil/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62530755"}, "addTags": {"amenity": "fuel", "brand": "Revoil", "brand:wikidata": "Q62530755", "name": "Revoil"}, "removeTags": {"amenity": "fuel", "brand": "Revoil", "brand:wikidata": "Q62530755", "name": "Revoil"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Rompetrol": {"name": "Rompetrol", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo-Rompetrol%20KMG%20colored%20approved.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1788862"}, "addTags": {"amenity": "fuel", "brand": "Rompetrol", "brand:wikidata": "Q1788862", "brand:wikipedia": "en:Rompetrol", "name": "Rompetrol"}, "removeTags": {"amenity": "fuel", "brand": "Rompetrol", "brand:wikidata": "Q1788862", "brand:wikipedia": "en:Rompetrol", "name": "Rompetrol"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Royal Farms": {"name": "Royal Farms", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7374169"}, "addTags": {"amenity": "fuel", "brand": "Royal Farms", "brand:wikidata": "Q7374169", "brand:wikipedia": "en:Royal Farms", "name": "Royal Farms"}, "removeTags": {"amenity": "fuel", "brand": "Royal Farms", "brand:wikidata": "Q7374169", "brand:wikipedia": "en:Royal Farms", "name": "Royal Farms"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Rubis": {"name": "Rubis", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q3446514"}, "addTags": {"amenity": "fuel", "brand": "Rubis", "brand:wikidata": "Q3446514", "brand:wikipedia": "en:Rubis (company)", "name": "Rubis"}, "removeTags": {"amenity": "fuel", "brand": "Rubis", "brand:wikidata": "Q3446514", "brand:wikipedia": "en:Rubis (company)", "name": "Rubis"}, "matchScore": 2, "suggestion": true}, @@ -2086,7 +2154,7 @@ "amenity/fuel/Sam's Club": {"name": "Sam's Club", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/samsclub/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1972120"}, "addTags": {"amenity": "fuel", "brand": "Sam's Club", "brand:wikidata": "Q1972120", "brand:wikipedia": "en:Sam's Club", "name": "Sam's Club", "operator": "Walmart", "operator:wikidata": "Q483551", "operator:wikipedia": "en:Walmart"}, "removeTags": {"amenity": "fuel", "brand": "Sam's Club", "brand:wikidata": "Q1972120", "brand:wikipedia": "en:Sam's Club", "name": "Sam's Club", "operator": "Walmart", "operator:wikidata": "Q483551", "operator:wikipedia": "en:Walmart"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Sasol": {"name": "Sasol", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q905998"}, "addTags": {"amenity": "fuel", "brand": "Sasol", "brand:wikidata": "Q905998", "brand:wikipedia": "en:Sasol", "name": "Sasol"}, "removeTags": {"amenity": "fuel", "brand": "Sasol", "brand:wikidata": "Q905998", "brand:wikipedia": "en:Sasol", "name": "Sasol"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Sea Oil": {"name": "Sea Oil", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7389549"}, "addTags": {"amenity": "fuel", "brand": "Sea Oil", "brand:wikidata": "Q7389549", "brand:wikipedia": "en:Seaoil Philippines", "name": "Sea Oil"}, "removeTags": {"amenity": "fuel", "brand": "Sea Oil", "brand:wikidata": "Q7389549", "brand:wikipedia": "en:Seaoil Philippines", "name": "Sea Oil"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Sheetz": {"name": "Sheetz", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7492551"}, "addTags": {"amenity": "fuel", "brand": "Sheetz", "brand:wikidata": "Q7492551", "brand:wikipedia": "en:Sheetz", "name": "Sheetz"}, "removeTags": {"amenity": "fuel", "brand": "Sheetz", "brand:wikidata": "Q7492551", "brand:wikipedia": "en:Sheetz", "name": "Sheetz"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Sheetz": {"name": "Sheetz", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/sheetz/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7492551"}, "addTags": {"amenity": "fuel", "brand": "Sheetz", "brand:wikidata": "Q7492551", "brand:wikipedia": "en:Sheetz", "name": "Sheetz"}, "removeTags": {"amenity": "fuel", "brand": "Sheetz", "brand:wikidata": "Q7492551", "brand:wikipedia": "en:Sheetz", "name": "Sheetz"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Shell": {"name": "Shell", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Shell/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q154950"}, "addTags": {"amenity": "fuel", "brand": "Shell", "brand:wikidata": "Q154950", "brand:wikipedia": "en:Royal Dutch Shell", "name": "Shell"}, "removeTags": {"amenity": "fuel", "brand": "Shell", "brand:wikidata": "Q154950", "brand:wikipedia": "en:Royal Dutch Shell", "name": "Shell"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Shell Express": {"name": "Shell Express", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2289188"}, "addTags": {"amenity": "fuel", "brand": "Shell Express", "brand:wikidata": "Q2289188", "brand:wikipedia": "nl:Shell Express", "name": "Shell Express"}, "removeTags": {"amenity": "fuel", "brand": "Shell Express", "brand:wikidata": "Q2289188", "brand:wikipedia": "nl:Shell Express", "name": "Shell Express"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Sinclair": {"name": "Sinclair", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1290900"}, "addTags": {"amenity": "fuel", "brand": "Sinclair", "brand:wikidata": "Q1290900", "brand:wikipedia": "en:Sinclair Oil Corporation", "name": "Sinclair"}, "removeTags": {"amenity": "fuel", "brand": "Sinclair", "brand:wikidata": "Q1290900", "brand:wikipedia": "en:Sinclair Oil Corporation", "name": "Sinclair"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, @@ -2094,7 +2162,7 @@ "amenity/fuel/Slovnaft": {"name": "Slovnaft", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F%D0%A1%D0%BB%D0%BE%D0%B2%D0%BD%D0%B0%D1%84%D1%82.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1587563"}, "addTags": {"amenity": "fuel", "brand": "Slovnaft", "brand:wikidata": "Q1587563", "brand:wikipedia": "en:Slovnaft", "name": "Slovnaft"}, "removeTags": {"amenity": "fuel", "brand": "Slovnaft", "brand:wikidata": "Q1587563", "brand:wikipedia": "en:Slovnaft", "name": "Slovnaft"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Socar": {"name": "Socar", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FState%20Oil%20Company%20of%20Azerbaijan%20Republic%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1622293"}, "addTags": {"amenity": "fuel", "brand": "Socar", "brand:wikidata": "Q1622293", "brand:wikipedia": "en:SOCAR", "name": "Socar"}, "removeTags": {"amenity": "fuel", "brand": "Socar", "brand:wikidata": "Q1622293", "brand:wikipedia": "en:SOCAR", "name": "Socar"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Sokimex": {"name": "Sokimex", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1149575"}, "addTags": {"amenity": "fuel", "brand": "Sokimex", "brand:wikidata": "Q1149575", "brand:wikipedia": "en:Sokimex", "name": "Sokimex"}, "removeTags": {"amenity": "fuel", "brand": "Sokimex", "brand:wikidata": "Q1149575", "brand:wikipedia": "en:Sokimex", "name": "Sokimex"}, "matchScore": 2, "suggestion": true}, - "amenity/fuel/Speedway": {"name": "Speedway", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7575683"}, "addTags": {"amenity": "fuel", "brand": "Speedway", "brand:wikidata": "Q7575683", "brand:wikipedia": "en:Speedway LLC", "name": "Speedway"}, "removeTags": {"amenity": "fuel", "brand": "Speedway", "brand:wikidata": "Q7575683", "brand:wikipedia": "en:Speedway LLC", "name": "Speedway"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Speedway": {"name": "Speedway", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/SpeedwayStores/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7575683"}, "addTags": {"amenity": "fuel", "brand": "Speedway", "brand:wikidata": "Q7575683", "brand:wikipedia": "en:Speedway LLC", "name": "Speedway"}, "removeTags": {"amenity": "fuel", "brand": "Speedway", "brand:wikidata": "Q7575683", "brand:wikipedia": "en:Speedway LLC", "name": "Speedway"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Sprint": {"name": "Sprint", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q57588452"}, "addTags": {"amenity": "fuel", "brand": "Sprint", "brand:wikidata": "Q57588452", "name": "Sprint"}, "removeTags": {"amenity": "fuel", "brand": "Sprint", "brand:wikidata": "Q57588452", "name": "Sprint"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "amenity/fuel/St1": {"name": "St1", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSt1%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7592214"}, "addTags": {"amenity": "fuel", "brand": "St1", "brand:wikidata": "Q7592214", "brand:wikipedia": "en:St1", "name": "St1"}, "removeTags": {"amenity": "fuel", "brand": "St1", "brand:wikidata": "Q7592214", "brand:wikipedia": "en:St1", "name": "St1"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Star": {"name": "Star", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2031095"}, "addTags": {"amenity": "fuel", "brand": "Star", "brand:wikidata": "Q2031095", "brand:wikipedia": "de:Orlen Deutschland", "name": "Star"}, "removeTags": {"amenity": "fuel", "brand": "Star", "brand:wikidata": "Q2031095", "brand:wikipedia": "de:Orlen Deutschland", "name": "Star"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, @@ -2102,30 +2170,37 @@ "amenity/fuel/Statoil": {"name": "Statoil", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Equinor/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1776022"}, "addTags": {"amenity": "fuel", "brand": "Statoil", "brand:wikidata": "Q1776022", "brand:wikipedia": "en:Equinor", "name": "Statoil"}, "removeTags": {"amenity": "fuel", "brand": "Statoil", "brand:wikidata": "Q1776022", "brand:wikipedia": "en:Equinor", "name": "Statoil"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Stewart's": {"name": "Stewart's", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7615690"}, "addTags": {"amenity": "fuel", "brand": "Stewart's", "brand:wikidata": "Q7615690", "brand:wikipedia": "en:Stewart's Shops", "name": "Stewart's"}, "removeTags": {"amenity": "fuel", "brand": "Stewart's", "brand:wikidata": "Q7615690", "brand:wikipedia": "en:Stewart's Shops", "name": "Stewart's"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Sunoco": {"name": "Sunoco", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1423218"}, "addTags": {"amenity": "fuel", "brand": "Sunoco", "brand:wikidata": "Q1423218", "brand:wikipedia": "en:Sunoco", "name": "Sunoco"}, "removeTags": {"amenity": "fuel", "brand": "Sunoco", "brand:wikidata": "Q1423218", "brand:wikipedia": "en:Sunoco", "name": "Sunoco"}, "matchScore": 2, "suggestion": true}, - "amenity/fuel/Super U": {"name": "Super U", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2529029"}, "addTags": {"amenity": "fuel", "brand": "Super U", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Super U"}, "removeTags": {"amenity": "fuel", "brand": "Super U", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Super U"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Super U": {"name": "Super U", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ULesCommercants/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2529029"}, "addTags": {"amenity": "fuel", "brand": "Super U", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Super U"}, "removeTags": {"amenity": "fuel", "brand": "Super U", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Super U"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Tamoil": {"name": "Tamoil", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTamoil.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q706793"}, "addTags": {"amenity": "fuel", "brand": "Tamoil", "brand:wikidata": "Q706793", "brand:wikipedia": "en:Tamoil", "name": "Tamoil"}, "removeTags": {"amenity": "fuel", "brand": "Tamoil", "brand:wikidata": "Q706793", "brand:wikipedia": "en:Tamoil", "name": "Tamoil"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Tango": {"name": "Tango", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2423920"}, "addTags": {"amenity": "fuel", "brand": "Tango", "brand:wikidata": "Q2423920", "brand:wikipedia": "nl:Tango CV", "name": "Tango"}, "removeTags": {"amenity": "fuel", "brand": "Tango", "brand:wikidata": "Q2423920", "brand:wikipedia": "nl:Tango CV", "name": "Tango"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Tanka": {"name": "Tanka", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q10690640"}, "addTags": {"amenity": "fuel", "brand": "Tanka", "brand:wikidata": "Q10690640", "brand:wikipedia": "sv:Tanka (bensinstationskedja)", "name": "Tanka"}, "removeTags": {"amenity": "fuel", "brand": "Tanka", "brand:wikidata": "Q10690640", "brand:wikipedia": "sv:Tanka (bensinstationskedja)", "name": "Tanka"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Teboil": {"name": "Teboil", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTeboil%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7692079"}, "addTags": {"amenity": "fuel", "brand": "Teboil", "brand:wikidata": "Q7692079", "brand:wikipedia": "en:Teboil", "name": "Teboil"}, "removeTags": {"amenity": "fuel", "brand": "Teboil", "brand:wikidata": "Q7692079", "brand:wikipedia": "en:Teboil", "name": "Teboil"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Tela": {"name": "Tela", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/TelaCompany/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62534875"}, "addTags": {"amenity": "fuel", "brand": "Tela", "brand:wikidata": "Q62534875", "name": "Tela"}, "removeTags": {"amenity": "fuel", "brand": "Tela", "brand:wikidata": "Q62534875", "name": "Tela"}, "countryCodes": ["kh"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Tempo": {"name": "Tempo", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62535175"}, "addTags": {"amenity": "fuel", "brand": "Tempo", "brand:wikidata": "Q62535175", "name": "Tempo"}, "removeTags": {"amenity": "fuel", "brand": "Tempo", "brand:wikidata": "Q62535175", "name": "Tempo"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Terpel": {"name": "Terpel", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7703003"}, "addTags": {"amenity": "fuel", "brand": "Terpel", "brand:wikidata": "Q7703003", "brand:wikipedia": "en:Terpel", "name": "Terpel"}, "removeTags": {"amenity": "fuel", "brand": "Terpel", "brand:wikidata": "Q7703003", "brand:wikipedia": "en:Terpel", "name": "Terpel"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Tesco": {"name": "Tesco", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q17145596"}, "addTags": {"amenity": "fuel", "brand": "Tesco", "brand:wikidata": "Q17145596", "brand:wikipedia": "en:Tesco Corporation", "name": "Tesco"}, "removeTags": {"amenity": "fuel", "brand": "Tesco", "brand:wikidata": "Q17145596", "brand:wikipedia": "en:Tesco Corporation", "name": "Tesco"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Texaco": {"name": "Texaco", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTexaco%20textlogo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q775060"}, "addTags": {"amenity": "fuel", "brand": "Texaco", "brand:wikidata": "Q775060", "brand:wikipedia": "en:Texaco", "name": "Texaco"}, "removeTags": {"amenity": "fuel", "brand": "Texaco", "brand:wikidata": "Q775060", "brand:wikipedia": "en:Texaco", "name": "Texaco"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Tinq": {"name": "Tinq", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2132028"}, "addTags": {"amenity": "fuel", "brand": "Tinq", "brand:wikidata": "Q2132028", "brand:wikipedia": "nl:Tinq", "name": "Tinq"}, "removeTags": {"amenity": "fuel", "brand": "Tinq", "brand:wikidata": "Q2132028", "brand:wikipedia": "nl:Tinq", "name": "Tinq"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Topaz": {"name": "Topaz", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7824764"}, "addTags": {"amenity": "fuel", "brand": "Topaz", "brand:wikidata": "Q7824764", "brand:wikipedia": "en:Topaz Energy", "name": "Topaz"}, "removeTags": {"amenity": "fuel", "brand": "Topaz", "brand:wikidata": "Q7824764", "brand:wikipedia": "en:Topaz Energy", "name": "Topaz"}, "countryCodes": ["ie"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Total": {"name": "Total", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/876776431543615489/1QCXAxs1_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q154037"}, "addTags": {"amenity": "fuel", "brand": "Total", "brand:wikidata": "Q154037", "brand:wikipedia": "fr:Total (entreprise)", "name": "Total"}, "removeTags": {"amenity": "fuel", "brand": "Total", "brand:wikidata": "Q154037", "brand:wikipedia": "fr:Total (entreprise)", "name": "Total"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Total Access": {"name": "Total Access", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/876776431543615489/1QCXAxs1_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q154037"}, "addTags": {"amenity": "fuel", "brand": "Total Access", "brand:wikidata": "Q154037", "brand:wikipedia": "fr:Total (entreprise)", "name": "Total Access"}, "removeTags": {"amenity": "fuel", "brand": "Total Access", "brand:wikidata": "Q154037", "brand:wikipedia": "fr:Total (entreprise)", "name": "Total Access"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/TotalErg": {"name": "TotalErg", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTotalerg%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q3995933"}, "addTags": {"amenity": "fuel", "brand": "TotalErg", "brand:wikidata": "Q3995933", "brand:wikipedia": "it:TotalErg", "name": "TotalErg"}, "removeTags": {"amenity": "fuel", "brand": "TotalErg", "brand:wikidata": "Q3995933", "brand:wikipedia": "it:TotalErg", "name": "TotalErg"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Turkey Hill": {"name": "Turkey Hill", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q42376970"}, "addTags": {"amenity": "fuel", "brand": "Turkey Hill", "brand:wikidata": "Q42376970", "brand:wikipedia": "en:Turkey Hill Minit Markets", "name": "Turkey Hill"}, "removeTags": {"amenity": "fuel", "brand": "Turkey Hill", "brand:wikidata": "Q42376970", "brand:wikipedia": "en:Turkey Hill Minit Markets", "name": "Turkey Hill"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Turmöl": {"name": "Turmöl", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20turmoel%20hoch.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1473279"}, "addTags": {"amenity": "fuel", "brand": "Turmöl", "brand:wikidata": "Q1473279", "brand:wikipedia": "de:Turmöl", "name": "Turmöl"}, "removeTags": {"amenity": "fuel", "brand": "Turmöl", "brand:wikidata": "Q1473279", "brand:wikipedia": "de:Turmöl", "name": "Turmöl"}, "matchScore": 2, "suggestion": true}, - "amenity/fuel/UDF Fuel": {"name": "UDF Fuel", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/955843755151564801/JvOosZxX_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7887677"}, "addTags": {"amenity": "fuel", "brand": "United Dairy Farmers", "brand:wikidata": "Q7887677", "brand:wikipedia": "en:United Dairy Farmers", "name": "UDF Fuel", "short_name": "UDF"}, "removeTags": {"amenity": "fuel", "brand": "United Dairy Farmers", "brand:wikidata": "Q7887677", "brand:wikipedia": "en:United Dairy Farmers", "name": "UDF Fuel", "short_name": "UDF"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/UDF Fuel": {"name": "UDF Fuel", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/UnitedDairyFarmers/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7887677"}, "addTags": {"amenity": "fuel", "brand": "United Dairy Farmers", "brand:wikidata": "Q7887677", "brand:wikipedia": "en:United Dairy Farmers", "name": "UDF Fuel", "short_name": "UDF"}, "removeTags": {"amenity": "fuel", "brand": "United Dairy Farmers", "brand:wikidata": "Q7887677", "brand:wikipedia": "en:United Dairy Farmers", "name": "UDF Fuel", "short_name": "UDF"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Ultramar": {"name": "Ultramar", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q3548078"}, "addTags": {"amenity": "fuel", "brand": "Ultramar", "brand:wikidata": "Q3548078", "brand:wikipedia": "en:Ultramar", "name": "Ultramar"}, "removeTags": {"amenity": "fuel", "brand": "Ultramar", "brand:wikidata": "Q3548078", "brand:wikipedia": "en:Ultramar", "name": "Ultramar"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/United": {"name": "United", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q28224393"}, "addTags": {"amenity": "fuel", "brand": "United", "brand:wikidata": "Q28224393", "brand:wikipedia": "en:United Petroleum", "name": "United"}, "removeTags": {"amenity": "fuel", "brand": "United", "brand:wikidata": "Q28224393", "brand:wikipedia": "en:United Petroleum", "name": "United"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Uno": {"name": "Uno", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/UnoGasolineras/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62535574"}, "addTags": {"amenity": "fuel", "brand": "Uno", "brand:wikidata": "Q62535574", "name": "Uno"}, "removeTags": {"amenity": "fuel", "brand": "Uno", "brand:wikidata": "Q62535574", "name": "Uno"}, "countryCodes": ["bz", "cr", "gt", "hn", "ni", "sv"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Uno-X": {"name": "Uno-X", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FUno-X%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q3362746"}, "addTags": {"amenity": "fuel", "brand": "Uno-X", "brand:wikidata": "Q3362746", "brand:wikipedia": "en:Uno-X", "name": "Uno-X"}, "removeTags": {"amenity": "fuel", "brand": "Uno-X", "brand:wikidata": "Q3362746", "brand:wikipedia": "en:Uno-X", "name": "Uno-X"}, "countryCodes": ["dk"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Valero": {"name": "Valero", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/valeroenergy/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1283291"}, "addTags": {"amenity": "fuel", "brand": "Valero", "brand:wikidata": "Q1283291", "brand:wikipedia": "en:Valero Energy", "name": "Valero"}, "removeTags": {"amenity": "fuel", "brand": "Valero", "brand:wikidata": "Q1283291", "brand:wikipedia": "en:Valero Energy", "name": "Valero"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Viada": {"name": "Viada", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q12663942"}, "addTags": {"amenity": "fuel", "brand": "Viada", "brand:wikidata": "Q12663942", "brand:wikipedia": "en:Lukoil Baltija", "name": "Viada"}, "removeTags": {"amenity": "fuel", "brand": "Viada", "brand:wikidata": "Q12663942", "brand:wikipedia": "en:Lukoil Baltija", "name": "Viada"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Vito": {"name": "Vito", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/VITOCORSICA/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62536473"}, "addTags": {"amenity": "fuel", "brand": "Vito", "brand:wikidata": "Q62536473", "name": "Vito"}, "removeTags": {"amenity": "fuel", "brand": "Vito", "brand:wikidata": "Q62536473", "name": "Vito"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "amenity/fuel/WOG": {"name": "WOG", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWOG%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q12072939"}, "addTags": {"amenity": "fuel", "brand": "WOG", "brand:wikidata": "Q12072939", "brand:wikipedia": "en:WOG (gas stations)", "name": "WOG"}, "removeTags": {"amenity": "fuel", "brand": "WOG", "brand:wikidata": "Q12072939", "brand:wikipedia": "en:WOG (gas stations)", "name": "WOG"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Walmart": {"name": "Walmart", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62606411"}, "addTags": {"amenity": "fuel", "brand": "Walmart", "brand:wikidata": "Q62606411", "brand:wikipedia": "en:Walmart", "name": "Walmart"}, "removeTags": {"amenity": "fuel", "brand": "Walmart", "brand:wikidata": "Q62606411", "brand:wikipedia": "en:Walmart", "name": "Walmart"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Wawa": {"name": "Wawa", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/wawa/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q5936320"}, "addTags": {"amenity": "fuel", "brand": "Wawa", "brand:wikidata": "Q5936320", "brand:wikipedia": "en:Wawa (company)", "name": "Wawa"}, "removeTags": {"amenity": "fuel", "brand": "Wawa", "brand:wikidata": "Q5936320", "brand:wikipedia": "en:Wawa (company)", "name": "Wawa"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Westfalen": {"name": "Westfalen", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1411209"}, "addTags": {"amenity": "fuel", "brand": "Westfalen", "brand:wikidata": "Q1411209", "brand:wikipedia": "en:Westfalen AG", "name": "Westfalen"}, "removeTags": {"amenity": "fuel", "brand": "Westfalen", "brand:wikidata": "Q1411209", "brand:wikipedia": "en:Westfalen AG", "name": "Westfalen"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Woolworths Petrol": {"name": "Woolworths Petrol", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q5023980"}, "addTags": {"amenity": "fuel", "brand": "Caltex", "brand:wikidata": "Q5023980", "brand:wikipedia": "en:Caltex Woolworths", "name": "Woolworths Petrol"}, "removeTags": {"amenity": "fuel", "brand": "Caltex", "brand:wikidata": "Q5023980", "brand:wikipedia": "en:Caltex Woolworths", "name": "Woolworths Petrol"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Woolworths Petrol": {"name": "Woolworths Petrol", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/woolworths/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q5023980"}, "addTags": {"amenity": "fuel", "brand": "Caltex", "brand:wikidata": "Q5023980", "brand:wikipedia": "en:Caltex Woolworths", "name": "Woolworths Petrol"}, "removeTags": {"amenity": "fuel", "brand": "Caltex", "brand:wikidata": "Q5023980", "brand:wikipedia": "en:Caltex Woolworths", "name": "Woolworths Petrol"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/XTR": {"name": "XTR", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/XTRenergy/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62537250"}, "addTags": {"amenity": "fuel", "brand": "XTR", "brand:wikidata": "Q62537250", "name": "XTR"}, "removeTags": {"amenity": "fuel", "brand": "XTR", "brand:wikidata": "Q62537250", "name": "XTR"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/fuel/YPF": {"name": "YPF", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FYpf%20logo13.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2006989"}, "addTags": {"amenity": "fuel", "brand": "YPF", "brand:wikidata": "Q2006989", "brand:wikipedia": "en:YPF", "name": "YPF"}, "removeTags": {"amenity": "fuel", "brand": "YPF", "brand:wikidata": "Q2006989", "brand:wikipedia": "en:YPF", "name": "YPF"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Z": {"name": "Z", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FZEnergylogo.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q8063337"}, "addTags": {"amenity": "fuel", "brand": "Z", "brand:wikidata": "Q8063337", "brand:wikipedia": "en:Z Energy", "name": "Z"}, "removeTags": {"amenity": "fuel", "brand": "Z", "brand:wikidata": "Q8063337", "brand:wikipedia": "en:Z Energy", "name": "Z"}, "countryCodes": ["nz"], "matchScore": 2, "suggestion": true}, "amenity/fuel/bft": {"name": "bft", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1009104"}, "addTags": {"amenity": "fuel", "brand": "bft", "brand:wikidata": "Q1009104", "brand:wikipedia": "de:Bundesverband freier Tankstellen", "name": "bft"}, "removeTags": {"amenity": "fuel", "brand": "bft", "brand:wikidata": "Q1009104", "brand:wikipedia": "de:Bundesverband freier Tankstellen", "name": "bft"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, @@ -2135,11 +2210,16 @@ "amenity/fuel/Башнефть": {"name": "Башнефть", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBashneft%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q809985"}, "addTags": {"amenity": "fuel", "brand": "Башнефть", "brand:en": "Bashneft", "brand:wikidata": "Q809985", "brand:wikipedia": "en:Bashneft", "name": "Башнефть", "name:en": "Bashneft"}, "removeTags": {"amenity": "fuel", "brand": "Башнефть", "brand:en": "Bashneft", "brand:wikidata": "Q809985", "brand:wikipedia": "en:Bashneft", "name": "Башнефть", "name:en": "Bashneft"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Белоруснефть": {"name": "Белоруснефть", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q4082693"}, "addTags": {"amenity": "fuel", "brand": "Белоруснефть", "brand:wikidata": "Q4082693", "brand:wikipedia": "ru:Белоруснефть", "name": "Белоруснефть"}, "removeTags": {"amenity": "fuel", "brand": "Белоруснефть", "brand:wikidata": "Q4082693", "brand:wikipedia": "ru:Белоруснефть", "name": "Белоруснефть"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Газпромнефть": {"name": "Газпромнефть", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1461799"}, "addTags": {"amenity": "fuel", "brand": "Газпромнефть", "brand:wikidata": "Q1461799", "brand:wikipedia": "en:Gazprom Neft", "name": "Газпромнефть"}, "removeTags": {"amenity": "fuel", "brand": "Газпромнефть", "brand:wikidata": "Q1461799", "brand:wikipedia": "en:Gazprom Neft", "name": "Газпромнефть"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/Гелиос": {"name": "Гелиос", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62286471"}, "addTags": {"amenity": "fuel", "brand": "Гелиос", "brand:en": "Helios", "brand:wikidata": "Q62286471", "name": "Гелиос", "name:en": "Helios"}, "removeTags": {"amenity": "fuel", "brand": "Гелиос", "brand:en": "Helios", "brand:wikidata": "Q62286471", "name": "Гелиос", "name:en": "Helios"}, "countryCodes": ["kz"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/ЕКА": {"name": "ЕКА", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62543029"}, "addTags": {"amenity": "fuel", "brand": "ЕКА", "brand:wikidata": "Q62543029", "name": "ЕКА"}, "removeTags": {"amenity": "fuel", "brand": "ЕКА", "brand:wikidata": "Q62543029", "name": "ЕКА"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/КЛО": {"name": "КЛО", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q60966526"}, "addTags": {"amenity": "fuel", "brand": "КЛО", "brand:en": "Klo", "brand:wikidata": "Q60966526", "brand:wikipedia": "ru:КЛО (сеть АЗС)", "name": "КЛО", "name:en": "Klo"}, "removeTags": {"amenity": "fuel", "brand": "КЛО", "brand:en": "Klo", "brand:wikidata": "Q60966526", "brand:wikipedia": "ru:КЛО (сеть АЗС)", "name": "КЛО", "name:en": "Klo"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, "amenity/fuel/КазМунайГаз": {"name": "КазМунайГаз", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1417227"}, "addTags": {"amenity": "fuel", "brand": "КазМунайГаз", "brand:wikidata": "Q1417227", "brand:wikipedia": "en:KazMunayGas", "name": "КазМунайГаз"}, "removeTags": {"amenity": "fuel", "brand": "КазМунайГаз", "brand:wikidata": "Q1417227", "brand:wikipedia": "en:KazMunayGas", "name": "КазМунайГаз"}, "countryCodes": ["kz"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Лукойл": {"name": "Лукойл", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLUK%20OIL%20Logo%20kyr.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q329347"}, "addTags": {"amenity": "fuel", "brand": "Лукойл", "brand:wikidata": "Q329347", "brand:wikipedia": "ru:Лукойл", "name": "Лукойл"}, "removeTags": {"amenity": "fuel", "brand": "Лукойл", "brand:wikidata": "Q329347", "brand:wikipedia": "ru:Лукойл", "name": "Лукойл"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Макпетрол": {"name": "Макпетрол", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1886438"}, "addTags": {"amenity": "fuel", "brand": "Макпетрол", "brand:wikidata": "Q1886438", "brand:wikipedia": "en:Makpetrol", "name": "Макпетрол"}, "removeTags": {"amenity": "fuel", "brand": "Макпетрол", "brand:wikidata": "Q1886438", "brand:wikipedia": "en:Makpetrol", "name": "Макпетрол"}, "countryCodes": ["mk"], "matchScore": 2, "suggestion": true}, "amenity/fuel/НК Альянс": {"name": "НК Альянс", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q4063700"}, "addTags": {"amenity": "fuel", "brand": "НК Альянс", "brand:wikidata": "Q4063700", "brand:wikipedia": "ru:Альянс (компания)", "name": "НК Альянс"}, "removeTags": {"amenity": "fuel", "brand": "НК Альянс", "brand:wikidata": "Q4063700", "brand:wikipedia": "ru:Альянс (компания)", "name": "НК Альянс"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/Нефтьмагистраль": {"name": "Нефтьмагистраль", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/neftm.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q62544323"}, "addTags": {"amenity": "fuel", "brand": "Нефтьмагистраль", "brand:wikidata": "Q62544323", "name": "Нефтьмагистраль"}, "removeTags": {"amenity": "fuel", "brand": "Нефтьмагистраль", "brand:wikidata": "Q62544323", "name": "Нефтьмагистраль"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "amenity/fuel/ОККО": {"name": "ОККО", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/okkoua/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q7072617"}, "addTags": {"amenity": "fuel", "brand": "ОККО", "brand:en": "OKKO", "brand:wikidata": "Q7072617", "brand:wikipedia": "en:OKKO", "name": "ОККО", "name:en": "OKKO"}, "removeTags": {"amenity": "fuel", "brand": "ОККО", "brand:en": "OKKO", "brand:wikidata": "Q7072617", "brand:wikipedia": "en:OKKO", "name": "ОККО", "name:en": "OKKO"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/ОМВ": {"name": "ОМВ", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FOmv%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q168238"}, "addTags": {"amenity": "fuel", "brand": "ОМВ", "brand:wikidata": "Q168238", "brand:wikipedia": "en:OMV", "name": "ОМВ"}, "removeTags": {"amenity": "fuel", "brand": "ОМВ", "brand:wikidata": "Q168238", "brand:wikipedia": "en:OMV", "name": "ОМВ"}, "countryCodes": ["bg", "rs"], "matchScore": 2, "suggestion": true}, "amenity/fuel/ПТК": {"name": "ПТК", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F%D0%9B%D0%BE%D0%B3%D0%BE%D1%82%D0%B8%D0%BF%20%D0%9F%D0%B5%D1%82%D0%B5%D1%80%D0%B1%D1%83%D1%80%D0%B3%D1%81%D0%BA%D0%BE%D0%B9%20%D1%82%D0%BE%D0%BF%D0%BB%D0%B8%D0%B2%D0%BD%D0%BE%D0%B9%20%D0%BA%D0%BE%D0%BC%D0%BF%D0%B0%D0%BD%D0%B8%D0%B8.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q4360193"}, "addTags": {"amenity": "fuel", "brand": "ПТК", "brand:en": "The Petersburg Fuel Company", "brand:wikidata": "Q4360193", "brand:wikipedia": "en:Petersburg Fuel Company", "name": "ПТК", "name:en": "The Petersburg Fuel Company"}, "removeTags": {"amenity": "fuel", "brand": "ПТК", "brand:en": "The Petersburg Fuel Company", "brand:wikidata": "Q4360193", "brand:wikipedia": "en:Petersburg Fuel Company", "name": "ПТК", "name:en": "The Petersburg Fuel Company"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Петрол": {"name": "Петрол", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q24315"}, "addTags": {"amenity": "fuel", "brand": "Петрол", "brand:wikidata": "Q24315", "brand:wikipedia": "en:Petrol AD", "name": "Петрол"}, "removeTags": {"amenity": "fuel", "brand": "Петрол", "brand:wikidata": "Q24315", "brand:wikipedia": "en:Petrol AD", "name": "Петрол"}, "countryCodes": ["bg"], "matchScore": 2, "suggestion": true}, "amenity/fuel/Роснефть": {"name": "Роснефть", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRosneft%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1141123"}, "addTags": {"amenity": "fuel", "brand": "Роснефть", "brand:en": "Rosneft", "brand:wikidata": "Q1141123", "brand:wikipedia": "en:Rosneft", "name": "Роснефть", "name:en": "Rosneft"}, "removeTags": {"amenity": "fuel", "brand": "Роснефть", "brand:en": "Rosneft", "brand:wikidata": "Q1141123", "brand:wikipedia": "en:Rosneft", "name": "Роснефть", "name:en": "Rosneft"}, "matchScore": 2, "suggestion": true}, @@ -2147,6 +2227,7 @@ "amenity/fuel/ТНК": {"name": "ТНК", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2298901"}, "addTags": {"amenity": "fuel", "brand": "ТНК", "brand:wikidata": "Q2298901", "brand:wikipedia": "en:TNK-BP", "name": "ТНК"}, "removeTags": {"amenity": "fuel", "brand": "ТНК", "brand:wikidata": "Q2298901", "brand:wikipedia": "en:TNK-BP", "name": "ТНК"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Татнефть": {"name": "Татнефть", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTatneft%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q1616858"}, "addTags": {"amenity": "fuel", "brand": "Татнефть", "brand:en": "Tatneft", "brand:wikidata": "Q1616858", "brand:wikipedia": "en:Tatneft", "name": "Татнефть", "name:en": "Tatneft"}, "removeTags": {"amenity": "fuel", "brand": "Татнефть", "brand:en": "Tatneft", "brand:wikidata": "Q1616858", "brand:wikipedia": "en:Tatneft", "name": "Татнефть", "name:en": "Tatneft"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/Укрнафта": {"name": "Укрнафта", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FUkrnafta.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2447961"}, "addTags": {"amenity": "fuel", "brand": "Укрнафта", "brand:en": "Ukrnafta", "brand:wikidata": "Q2447961", "brand:wikipedia": "en:Ukrnafta", "name": "Укрнафта", "name:en": "Ukrnafta"}, "removeTags": {"amenity": "fuel", "brand": "Укрнафта", "brand:en": "Ukrnafta", "brand:wikidata": "Q2447961", "brand:wikipedia": "en:Ukrnafta", "name": "Укрнафта", "name:en": "Ukrnafta"}, "matchScore": 2, "suggestion": true}, + "amenity/fuel/דור אלון": {"name": "דור אלון", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/dor.alon.il/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q16130352"}, "addTags": {"amenity": "fuel", "brand": "דור אלון", "brand:en": "Dor Alon", "brand:he": "דור אלון", "brand:wikidata": "Q16130352", "brand:wikipedia": "he:דור אלון אנרגיה בישראל (1988)", "name": "דור אלון", "name:en": "Dor Alon", "name:he": "דור אלון"}, "removeTags": {"amenity": "fuel", "brand": "דור אלון", "brand:en": "Dor Alon", "brand:he": "דור אלון", "brand:wikidata": "Q16130352", "brand:wikipedia": "he:דור אלון אנרגיה בישראל (1988)", "name": "דור אלון", "name:en": "Dor Alon", "name:he": "דור אלון"}, "countryCodes": ["il"], "matchScore": 2, "suggestion": true}, "amenity/fuel/סונול": {"name": "סונול", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q3701622"}, "addTags": {"amenity": "fuel", "brand": "סונול", "brand:en": "Sonol", "brand:he": "סונול", "brand:wikidata": "Q3701622", "brand:wikipedia": "en:Sonol", "name": "סונול", "name:en": "Sonol", "name:he": "סונול"}, "removeTags": {"amenity": "fuel", "brand": "סונול", "brand:en": "Sonol", "brand:he": "סונול", "brand:wikidata": "Q3701622", "brand:wikipedia": "en:Sonol", "name": "סונול", "name:en": "Sonol", "name:he": "סונול"}, "countryCodes": ["il"], "matchScore": 2, "suggestion": true}, "amenity/fuel/פז": {"name": "פז", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2211731"}, "addTags": {"amenity": "fuel", "brand": "פז", "brand:he": "פז", "brand:wikidata": "Q2211731", "brand:wikipedia": "en:Paz Oil Company", "name": "פז", "name:he": "פז"}, "removeTags": {"amenity": "fuel", "brand": "פז", "brand:he": "פז", "brand:wikidata": "Q2211731", "brand:wikipedia": "en:Paz Oil Company", "name": "פז", "name:he": "פז"}, "countryCodes": ["il"], "matchScore": 2, "suggestion": true}, "amenity/fuel/บางจาก": {"name": "บางจาก", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q6579719"}, "addTags": {"amenity": "fuel", "brand": "บางจาก", "brand:th": "บางจาก", "brand:wikidata": "Q6579719", "brand:wikipedia": "th:บางจาก คอร์ปอเรชัน", "name": "บางจาก", "name:th": "บางจาก"}, "removeTags": {"amenity": "fuel", "brand": "บางจาก", "brand:th": "บางจาก", "brand:wikidata": "Q6579719", "brand:wikipedia": "th:บางจาก คอร์ปอเรชัน", "name": "บางจาก", "name:th": "บางจาก"}, "countryCodes": ["th"], "matchScore": 2, "suggestion": true}, @@ -2161,7 +2242,7 @@ "amenity/fuel/中国石化 Sinopec": {"name": "中国石化 Sinopec", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Sinopec/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q831445"}, "addTags": {"amenity": "fuel", "brand": "中国石化 Sinopec", "brand:wikidata": "Q831445", "brand:wikipedia": "zh:中国石化", "name": "中国石化 Sinopec"}, "removeTags": {"amenity": "fuel", "brand": "中国石化 Sinopec", "brand:wikidata": "Q831445", "brand:wikipedia": "zh:中国石化", "name": "中国石化 Sinopec"}, "countryCodes": ["cn"], "matchScore": 2, "suggestion": true}, "amenity/fuel/中国石油": {"name": "中国石油", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q503182"}, "addTags": {"amenity": "fuel", "brand": "中国石油", "brand:en": "PetroChina", "brand:wikidata": "Q503182", "brand:wikipedia": "en:PetroChina", "name": "中国石油", "name:en": "PetroChina"}, "removeTags": {"amenity": "fuel", "brand": "中国石油", "brand:en": "PetroChina", "brand:wikidata": "Q503182", "brand:wikipedia": "en:PetroChina", "name": "中国石油", "name:en": "PetroChina"}, "matchScore": 2, "suggestion": true}, "amenity/fuel/出光": {"name": "出光", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q2216770"}, "addTags": {"amenity": "fuel", "brand": "出光", "brand:en": "Idemitsu Kosan", "brand:wikidata": "Q2216770", "brand:wikipedia": "en:Idemitsu Kosan", "name": "出光", "name:en": "Idemitsu Kosan"}, "removeTags": {"amenity": "fuel", "brand": "出光", "brand:en": "Idemitsu Kosan", "brand:wikidata": "Q2216770", "brand:wikipedia": "en:Idemitsu Kosan", "name": "出光", "name:en": "Idemitsu Kosan"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/台灣中油": {"name": "台灣中油", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q21527177"}, "addTags": {"amenity": "fuel", "brand": "台灣中油", "brand:en": "CPC Corporation, Taiwan", "brand:wikidata": "Q21527177", "brand:wikipedia": "en:CPC Corporation", "name": "台灣中油", "name:en": "CPC Corporation, Taiwan"}, "removeTags": {"amenity": "fuel", "brand": "台灣中油", "brand:en": "CPC Corporation, Taiwan", "brand:wikidata": "Q21527177", "brand:wikipedia": "en:CPC Corporation", "name": "台灣中油", "name:en": "CPC Corporation, Taiwan"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, + "amenity/fuel/台灣中油": {"name": "台灣中油", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q21527177"}, "addTags": {"amenity": "fuel", "brand": "台灣中油", "brand:en": "CPC Corporation, Taiwan", "brand:wikidata": "Q21527177", "brand:wikipedia": "en:CPC Corporation, Taiwan", "name": "台灣中油", "name:en": "CPC Corporation, Taiwan"}, "removeTags": {"amenity": "fuel", "brand": "台灣中油", "brand:en": "CPC Corporation, Taiwan", "brand:wikidata": "Q21527177", "brand:wikipedia": "en:CPC Corporation, Taiwan", "name": "台灣中油", "name:en": "CPC Corporation, Taiwan"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "amenity/fuel/昭和シェル": {"name": "昭和シェル", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"amenity": "fuel", "brand:wikidata": "Q277115"}, "addTags": {"amenity": "fuel", "brand": "昭和シェル", "brand:en": "Showa Shell Sekiyu", "brand:ja": "昭和シェル", "brand:wikidata": "Q277115", "brand:wikipedia": "en:Showa Shell Sekiyu", "name": "昭和シェル", "name:en": "Showa Shell Sekiyu", "name:ja": "昭和シェル"}, "removeTags": {"amenity": "fuel", "brand": "昭和シェル", "brand:en": "Showa Shell Sekiyu", "brand:ja": "昭和シェル", "brand:wikidata": "Q277115", "brand:wikipedia": "en:Showa Shell Sekiyu", "name": "昭和シェル", "name:en": "Showa Shell Sekiyu", "name:ja": "昭和シェル"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/ice_cream/Baskin-Robbins": {"name": "Baskin-Robbins", "icon": "maki-ice-cream", "imageURL": "https://graph.facebook.com/baskinrobbinsUS/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "ice_cream", "brand:wikidata": "Q584601"}, "addTags": {"amenity": "ice_cream", "brand": "Baskin-Robbins", "brand:wikidata": "Q584601", "brand:wikipedia": "en:Baskin-Robbins", "cuisine": "ice_cream", "name": "Baskin-Robbins"}, "removeTags": {"amenity": "ice_cream", "brand": "Baskin-Robbins", "brand:wikidata": "Q584601", "brand:wikipedia": "en:Baskin-Robbins", "cuisine": "ice_cream", "name": "Baskin-Robbins"}, "matchScore": 2, "suggestion": true}, "amenity/ice_cream/Ben & Jerry's": {"name": "Ben & Jerry's", "icon": "maki-ice-cream", "imageURL": "https://graph.facebook.com/BenandJerryAustralia/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "ice_cream", "brand:wikidata": "Q816412"}, "addTags": {"amenity": "ice_cream", "brand": "Ben & Jerry's", "brand:wikidata": "Q816412", "brand:wikipedia": "en:Ben & Jerry's", "cuisine": "ice_cream", "name": "Ben & Jerry's"}, "removeTags": {"amenity": "ice_cream", "brand": "Ben & Jerry's", "brand:wikidata": "Q816412", "brand:wikipedia": "en:Ben & Jerry's", "cuisine": "ice_cream", "name": "Ben & Jerry's"}, "matchScore": 2, "suggestion": true}, @@ -2169,6 +2250,7 @@ "amenity/ice_cream/D'Onofrio": {"name": "D'Onofrio", "icon": "maki-ice-cream", "imageURL": "https://graph.facebook.com/DonofrioDOficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "ice_cream", "brand:wikidata": "Q5203166"}, "addTags": {"amenity": "ice_cream", "brand": "D'Onofrio", "brand:wikidata": "Q5203166", "brand:wikipedia": "es:D'Onofrio", "cuisine": "ice_cream", "name": "D'Onofrio"}, "removeTags": {"amenity": "ice_cream", "brand": "D'Onofrio", "brand:wikidata": "Q5203166", "brand:wikipedia": "es:D'Onofrio", "cuisine": "ice_cream", "name": "D'Onofrio"}, "countryCodes": ["pe"], "matchScore": 2, "suggestion": true}, "amenity/ice_cream/Freddo": {"name": "Freddo", "icon": "maki-ice-cream", "imageURL": "https://graph.facebook.com/FreddoUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "ice_cream", "brand:wikidata": "Q28823999"}, "addTags": {"amenity": "ice_cream", "brand": "Freddo", "brand:wikidata": "Q28823999", "brand:wikipedia": "es:Freddo", "cuisine": "ice_cream", "name": "Freddo"}, "removeTags": {"amenity": "ice_cream", "brand": "Freddo", "brand:wikidata": "Q28823999", "brand:wikipedia": "es:Freddo", "cuisine": "ice_cream", "name": "Freddo"}, "matchScore": 2, "suggestion": true}, "amenity/ice_cream/Grido": {"name": "Grido", "icon": "maki-ice-cream", "imageURL": "https://graph.facebook.com/GridoHelados/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "ice_cream", "brand:wikidata": "Q5885724"}, "addTags": {"amenity": "ice_cream", "brand": "Grido", "brand:wikidata": "Q5885724", "brand:wikipedia": "es:Grido Helado", "cuisine": "ice_cream", "name": "Grido"}, "removeTags": {"amenity": "ice_cream", "brand": "Grido", "brand:wikidata": "Q5885724", "brand:wikipedia": "es:Grido Helado", "cuisine": "ice_cream", "name": "Grido"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, + "amenity/ice_cream/Ralph's Italian Ices": {"name": "Ralph's Italian Ices", "icon": "maki-ice-cream", "imageURL": "https://graph.facebook.com/RalphsFamous/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "ice_cream", "brand:wikidata": "Q62576909"}, "addTags": {"amenity": "ice_cream", "brand": "Ralph's Italian Ices", "brand:wikidata": "Q62576909", "cuisine": "ice_cream", "name": "Ralph's Italian Ices", "official_name": "Ralph's Famous Italian Ices"}, "removeTags": {"amenity": "ice_cream", "brand": "Ralph's Italian Ices", "brand:wikidata": "Q62576909", "cuisine": "ice_cream", "name": "Ralph's Italian Ices", "official_name": "Ralph's Famous Italian Ices"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/ice_cream/Rita's Italian Ice": {"name": "Rita's Italian Ice", "icon": "maki-ice-cream", "imageURL": "https://graph.facebook.com/RitasItalianIceCompany/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "ice_cream", "brand:wikidata": "Q7336456"}, "addTags": {"amenity": "ice_cream", "brand": "Rita's Italian Ice", "brand:wikidata": "Q7336456", "brand:wikipedia": "en:Rita's Italian Ice", "cuisine": "ice_cream", "name": "Rita's Italian Ice"}, "removeTags": {"amenity": "ice_cream", "brand": "Rita's Italian Ice", "brand:wikidata": "Q7336456", "brand:wikipedia": "en:Rita's Italian Ice", "cuisine": "ice_cream", "name": "Rita's Italian Ice"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/ice_cream/sweetFrog": {"name": "sweetFrog", "icon": "maki-ice-cream", "imageURL": "https://graph.facebook.com/sweetfrogfroyo/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "ice_cream", "brand:wikidata": "Q16952110"}, "addTags": {"amenity": "ice_cream", "brand": "sweetFrog", "brand:wikidata": "Q16952110", "brand:wikipedia": "en:Sweet Frog", "cuisine": "frozen_yogurt", "name": "sweetFrog"}, "removeTags": {"amenity": "ice_cream", "brand": "sweetFrog", "brand:wikidata": "Q16952110", "brand:wikipedia": "en:Sweet Frog", "cuisine": "frozen_yogurt", "name": "sweetFrog"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/ice_cream/サーティワンアイスクリーム": {"name": "サーティワンアイスクリーム", "icon": "maki-ice-cream", "imageURL": "https://graph.facebook.com/baskinrobbinsUS/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "ice_cream", "brand:wikidata": "Q584601"}, "addTags": {"amenity": "ice_cream", "brand": "バスキン・ロビンス", "brand:en": "Baskin-Robbins", "brand:ja": "バスキン・ロビンス", "brand:wikidata": "Q584601", "brand:wikipedia": "ja:バスキン・ロビンス", "cuisine": "ice_cream", "name": "サーティワンアイスクリーム", "name:en": "Baskin-Robbins", "name:ja": "サーティワンアイスクリーム"}, "removeTags": {"amenity": "ice_cream", "brand": "バスキン・ロビンス", "brand:en": "Baskin-Robbins", "brand:ja": "バスキン・ロビンス", "brand:wikidata": "Q584601", "brand:wikipedia": "ja:バスキン・ロビンス", "cuisine": "ice_cream", "name": "サーティワンアイスクリーム", "name:en": "Baskin-Robbins", "name:ja": "サーティワンアイスクリーム"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, @@ -2181,16 +2263,24 @@ "amenity/payment_terminal/ПриватБанк": {"name": "ПриватБанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/privatbank/picture?type=large", "geometry": ["point"], "tags": {"amenity": "payment_terminal", "brand:wikidata": "Q1515015"}, "addTags": {"amenity": "payment_terminal", "brand": "ПриватБанк", "brand:wikidata": "Q1515015", "brand:wikipedia": "en:PrivatBank", "name": "ПриватБанк"}, "removeTags": {"amenity": "payment_terminal", "brand": "ПриватБанк", "brand:wikidata": "Q1515015", "brand:wikipedia": "en:PrivatBank", "name": "ПриватБанк"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, "amenity/payment_terminal/Элекснет": {"name": "Элекснет", "icon": "maki-bank", "geometry": ["point"], "tags": {"amenity": "payment_terminal", "brand:wikidata": "Q4530795"}, "addTags": {"amenity": "payment_terminal", "brand": "Элекснет", "brand:wikidata": "Q4530795", "brand:wikipedia": "ru:Элекснет", "name": "Элекснет"}, "removeTags": {"amenity": "payment_terminal", "brand": "Элекснет", "brand:wikidata": "Q4530795", "brand:wikipedia": "ru:Элекснет", "name": "Элекснет"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/36,6": {"name": "36,6", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q226889"}, "addTags": {"amenity": "pharmacy", "brand": "36,6", "brand:wikidata": "Q226889", "brand:wikipedia": "ru:36,6 (аптечная сеть)", "healthcare": "pharmacy", "name": "36,6"}, "removeTags": {"amenity": "pharmacy", "brand": "36,6", "brand:wikidata": "Q226889", "brand:wikipedia": "ru:36,6 (аптечная сеть)", "healthcare": "pharmacy", "name": "36,6"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Apollo Pharmacy": {"name": "Apollo Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/ApolloPharmacy/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62562612"}, "addTags": {"amenity": "pharmacy", "brand": "Apollo Pharmacy", "brand:wikidata": "Q62562612", "healthcare": "pharmacy", "name": "Apollo Pharmacy", "operator": "Apollo Hospitals", "operator:wikidata": "Q4780321", "operator:wikipedia": "en:Apollo Hospitals"}, "removeTags": {"amenity": "pharmacy", "brand": "Apollo Pharmacy", "brand:wikidata": "Q62562612", "healthcare": "pharmacy", "name": "Apollo Pharmacy", "operator": "Apollo Hospitals", "operator:wikidata": "Q4780321", "operator:wikipedia": "en:Apollo Hospitals"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["in"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Apotek Hjärtat": {"name": "Apotek Hjärtat", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q10416114"}, "addTags": {"amenity": "pharmacy", "brand": "Apotek Hjärtat", "brand:wikidata": "Q10416114", "brand:wikipedia": "sv:Apotek Hjärtat", "healthcare": "pharmacy", "name": "Apotek Hjärtat"}, "removeTags": {"amenity": "pharmacy", "brand": "Apotek Hjärtat", "brand:wikidata": "Q10416114", "brand:wikipedia": "sv:Apotek Hjärtat", "healthcare": "pharmacy", "name": "Apotek Hjärtat"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Bartell Drugs": {"name": "Bartell Drugs", "icon": "maki-pharmacy", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBartell%20Drugs%20(logo).gif&width=100", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q4865152"}, "addTags": {"amenity": "pharmacy", "brand": "Bartell Drugs", "brand:wikidata": "Q4865152", "brand:wikipedia": "en:Bartell Drugs", "healthcare": "pharmacy", "name": "Bartell Drugs"}, "removeTags": {"amenity": "pharmacy", "brand": "Bartell Drugs", "brand:wikidata": "Q4865152", "brand:wikipedia": "en:Bartell Drugs", "healthcare": "pharmacy", "name": "Bartell Drugs"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Benavides": {"name": "Benavides", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q5435613"}, "addTags": {"amenity": "pharmacy", "brand": "Benavides", "brand:wikidata": "Q5435613", "brand:wikipedia": "en:Farmacias Benavides", "healthcare": "pharmacy", "name": "Benavides"}, "removeTags": {"amenity": "pharmacy", "brand": "Benavides", "brand:wikidata": "Q5435613", "brand:wikipedia": "en:Farmacias Benavides", "healthcare": "pharmacy", "name": "Benavides"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["mx"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Benu": {"name": "Benu", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62562792"}, "addTags": {"amenity": "pharmacy", "brand": "Benu", "brand:wikidata": "Q62562792", "healthcare": "pharmacy", "name": "Benu"}, "removeTags": {"amenity": "pharmacy", "brand": "Benu", "brand:wikidata": "Q62562792", "healthcare": "pharmacy", "name": "Benu"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Boots": {"name": "Boots", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/bootsuk/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q6123139"}, "addTags": {"amenity": "pharmacy", "brand": "Boots", "brand:wikidata": "Q6123139", "brand:wikipedia": "en:Boots UK", "healthcare": "pharmacy", "name": "Boots"}, "removeTags": {"amenity": "pharmacy", "brand": "Boots", "brand:wikidata": "Q6123139", "brand:wikipedia": "en:Boots UK", "healthcare": "pharmacy", "name": "Boots"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Brookshire Brothers Pharmacy": {"name": "Brookshire Brothers Pharmacy", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q4975084"}, "addTags": {"amenity": "pharmacy", "brand": "Brookshire Brothers Pharmacy", "brand:wikidata": "Q4975084", "brand:wikipedia": "en:Brookshire Brothers", "healthcare": "pharmacy", "name": "Brookshire Brothers Pharmacy"}, "removeTags": {"amenity": "pharmacy", "brand": "Brookshire Brothers Pharmacy", "brand:wikidata": "Q4975084", "brand:wikipedia": "en:Brookshire Brothers", "healthcare": "pharmacy", "name": "Brookshire Brothers Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Boticas y Salud": {"name": "Boticas y Salud", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Boticas-Salud-844038768993601/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62563126"}, "addTags": {"amenity": "pharmacy", "brand": "Boticas y Salud", "brand:wikidata": "Q62563126", "healthcare": "pharmacy", "name": "Boticas y Salud"}, "removeTags": {"amenity": "pharmacy", "brand": "Boticas y Salud", "brand:wikidata": "Q62563126", "healthcare": "pharmacy", "name": "Boticas y Salud"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["pe"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Brookshire Brothers Pharmacy": {"name": "Brookshire Brothers Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/BrookshireBros/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q4975084"}, "addTags": {"amenity": "pharmacy", "brand": "Brookshire Brothers Pharmacy", "brand:wikidata": "Q4975084", "brand:wikipedia": "en:Brookshire Brothers", "healthcare": "pharmacy", "name": "Brookshire Brothers Pharmacy"}, "removeTags": {"amenity": "pharmacy", "brand": "Brookshire Brothers Pharmacy", "brand:wikidata": "Q4975084", "brand:wikipedia": "en:Brookshire Brothers", "healthcare": "pharmacy", "name": "Brookshire Brothers Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/CVS": {"name": "CVS", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/CVS/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q2078880"}, "addTags": {"amenity": "pharmacy", "brand": "CVS", "brand:wikidata": "Q2078880", "brand:wikipedia": "en:CVS Pharmacy", "healthcare": "pharmacy", "name": "CVS"}, "removeTags": {"amenity": "pharmacy", "brand": "CVS", "brand:wikidata": "Q2078880", "brand:wikipedia": "en:CVS Pharmacy", "healthcare": "pharmacy", "name": "CVS"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Catena": {"name": "Catena", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q24035728"}, "addTags": {"amenity": "pharmacy", "brand": "Catena", "brand:wikidata": "Q24035728", "brand:wikipedia": "ro:Farmacia Catena", "healthcare": "pharmacy", "name": "Catena"}, "removeTags": {"amenity": "pharmacy", "brand": "Catena", "brand:wikidata": "Q24035728", "brand:wikipedia": "ro:Farmacia Catena", "healthcare": "pharmacy", "name": "Catena"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ro"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Camelia": {"name": "Camelia", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/camelia.vaistine/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q15867413"}, "addTags": {"amenity": "pharmacy", "brand": "Camelia", "brand:wikidata": "Q15867413", "brand:wikipedia": "lt:Nemuno vaistinė", "healthcare": "pharmacy", "name": "Camelia"}, "removeTags": {"amenity": "pharmacy", "brand": "Camelia", "brand:wikidata": "Q15867413", "brand:wikipedia": "lt:Nemuno vaistinė", "healthcare": "pharmacy", "name": "Camelia"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["lt"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Catena": {"name": "Catena", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmaciaCatena/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q24035728"}, "addTags": {"amenity": "pharmacy", "brand": "Catena", "brand:wikidata": "Q24035728", "brand:wikipedia": "ro:Farmacia Catena", "healthcare": "pharmacy", "name": "Catena"}, "removeTags": {"amenity": "pharmacy", "brand": "Catena", "brand:wikidata": "Q24035728", "brand:wikipedia": "ro:Farmacia Catena", "healthcare": "pharmacy", "name": "Catena"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ro"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Chemist Warehouse": {"name": "Chemist Warehouse", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q48782120"}, "addTags": {"amenity": "pharmacy", "brand": "Chemist Warehouse", "brand:wikidata": "Q48782120", "brand:wikipedia": "en:Chemist Warehouse", "healthcare": "pharmacy", "name": "Chemist Warehouse"}, "removeTags": {"amenity": "pharmacy", "brand": "Chemist Warehouse", "brand:wikidata": "Q48782120", "brand:wikipedia": "en:Chemist Warehouse", "healthcare": "pharmacy", "name": "Chemist Warehouse"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Clicks": {"name": "Clicks", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/ClicksSouthAfrica/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62563622"}, "addTags": {"amenity": "pharmacy", "brand": "Clicks", "brand:wikidata": "Q62563622", "healthcare": "pharmacy", "name": "Clicks"}, "removeTags": {"amenity": "pharmacy", "brand": "Clicks", "brand:wikidata": "Q62563622", "healthcare": "pharmacy", "name": "Clicks"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["za"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Costco Pharmacy": {"name": "Costco Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Costco/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q715583"}, "addTags": {"amenity": "pharmacy", "brand": "Costco Pharmacy", "brand:wikidata": "Q715583", "brand:wikipedia": "en:Costco", "healthcare": "pharmacy", "name": "Costco Pharmacy"}, "removeTags": {"amenity": "pharmacy", "brand": "Costco Pharmacy", "brand:wikidata": "Q715583", "brand:wikipedia": "en:Costco", "healthcare": "pharmacy", "name": "Costco Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Cruz Verde": {"name": "Cruz Verde", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q5856071"}, "addTags": {"amenity": "pharmacy", "brand": "Cruz Verde", "brand:wikidata": "Q5856071", "brand:wikipedia": "es:Farmacias Cruz Verde", "healthcare": "pharmacy", "name": "Cruz Verde"}, "removeTags": {"amenity": "pharmacy", "brand": "Cruz Verde", "brand:wikidata": "Q5856071", "brand:wikipedia": "es:Farmacias Cruz Verde", "healthcare": "pharmacy", "name": "Cruz Verde"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Cruz Azul": {"name": "Cruz Azul", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/CruzAzul.Farmacias/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62108219"}, "addTags": {"amenity": "pharmacy", "brand": "Cruz Azul", "brand:wikidata": "Q62108219", "healthcare": "pharmacy", "name": "Cruz Azul"}, "removeTags": {"amenity": "pharmacy", "brand": "Cruz Azul", "brand:wikidata": "Q62108219", "healthcare": "pharmacy", "name": "Cruz Azul"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ec"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Cruz Verde": {"name": "Cruz Verde", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmaciasCruzVerde1/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q5856071"}, "addTags": {"amenity": "pharmacy", "brand": "Cruz Verde", "brand:wikidata": "Q5856071", "brand:wikipedia": "es:Farmacias Cruz Verde", "healthcare": "pharmacy", "name": "Cruz Verde"}, "removeTags": {"amenity": "pharmacy", "brand": "Cruz Verde", "brand:wikidata": "Q5856071", "brand:wikipedia": "es:Farmacias Cruz Verde", "healthcare": "pharmacy", "name": "Cruz Verde"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Day Lewis Pharmacy": {"name": "Day Lewis Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/DayLewisPharmacy/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62563772"}, "addTags": {"amenity": "pharmacy", "brand": "Day Lewis Pharmacy", "brand:wikidata": "Q62563772", "healthcare": "pharmacy", "name": "Day Lewis Pharmacy"}, "removeTags": {"amenity": "pharmacy", "brand": "Day Lewis Pharmacy", "brand:wikidata": "Q62563772", "healthcare": "pharmacy", "name": "Day Lewis Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Dbam o Zdrowie": {"name": "Dbam o Zdrowie", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/dbamozdrowie/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62563833"}, "addTags": {"amenity": "pharmacy", "brand": "Dbam o Zdrowie", "brand:wikidata": "Q62563833", "healthcare": "pharmacy", "name": "Dbam o Zdrowie"}, "removeTags": {"amenity": "pharmacy", "brand": "Dbam o Zdrowie", "brand:wikidata": "Q62563833", "healthcare": "pharmacy", "name": "Dbam o Zdrowie"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Dr. Max": {"name": "Dr. Max", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q56317371"}, "addTags": {"amenity": "pharmacy", "brand": "Dr. Max", "brand:wikidata": "Q56317371", "brand:wikipedia": "fr:Dr.Max", "healthcare": "pharmacy", "name": "Dr. Max"}, "removeTags": {"amenity": "pharmacy", "brand": "Dr. Max", "brand:wikidata": "Q56317371", "brand:wikipedia": "fr:Dr.Max", "healthcare": "pharmacy", "name": "Dr. Max"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Droga Raia": {"name": "Droga Raia", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q10357101"}, "addTags": {"amenity": "pharmacy", "brand": "Droga Raia", "brand:wikidata": "Q10357101", "brand:wikipedia": "pt:RaiaDrogasil", "healthcare": "pharmacy", "name": "Droga Raia"}, "removeTags": {"amenity": "pharmacy", "brand": "Droga Raia", "brand:wikidata": "Q10357101", "brand:wikipedia": "pt:RaiaDrogasil", "healthcare": "pharmacy", "name": "Droga Raia"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Drogaria São Paulo": {"name": "Drogaria São Paulo", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/drogariasaoapaulo/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q5308184"}, "addTags": {"amenity": "pharmacy", "brand": "Drogaria São Paulo", "brand:wikidata": "Q5308184", "brand:wikipedia": "en:Grupo DPSP", "healthcare": "pharmacy", "name": "Drogaria São Paulo"}, "removeTags": {"amenity": "pharmacy", "brand": "Drogaria São Paulo", "brand:wikidata": "Q5308184", "brand:wikipedia": "en:Grupo DPSP", "healthcare": "pharmacy", "name": "Drogaria São Paulo"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, @@ -2199,21 +2289,25 @@ "amenity/pharmacy/Eurovaistinė": {"name": "Eurovaistinė", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q267205"}, "addTags": {"amenity": "pharmacy", "brand": "Eurovaistinė", "brand:wikidata": "Q267205", "brand:wikipedia": "en:Euroapotheca", "healthcare": "pharmacy", "name": "Eurovaistinė"}, "removeTags": {"amenity": "pharmacy", "brand": "Eurovaistinė", "brand:wikidata": "Q267205", "brand:wikipedia": "en:Euroapotheca", "healthcare": "pharmacy", "name": "Eurovaistinė"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["lt"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Extrafarma": {"name": "Extrafarma", "icon": "maki-pharmacy", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FExtrafarma%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q20055480"}, "addTags": {"amenity": "pharmacy", "brand": "Extrafarma", "brand:wikidata": "Q20055480", "brand:wikipedia": "pt:Extrafarma", "healthcare": "pharmacy", "name": "Extrafarma"}, "removeTags": {"amenity": "pharmacy", "brand": "Extrafarma", "brand:wikidata": "Q20055480", "brand:wikipedia": "pt:Extrafarma", "healthcare": "pharmacy", "name": "Extrafarma"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Familiprix": {"name": "Familiprix", "icon": "maki-pharmacy", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFamiliprix.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q3064881"}, "addTags": {"amenity": "pharmacy", "brand": "Familiprix", "brand:wikidata": "Q3064881", "brand:wikipedia": "en:Familiprix", "healthcare": "pharmacy", "name": "Familiprix"}, "removeTags": {"amenity": "pharmacy", "brand": "Familiprix", "brand:wikidata": "Q3064881", "brand:wikipedia": "en:Familiprix", "healthcare": "pharmacy", "name": "Familiprix"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Farmacenter (Colombia)": {"name": "Farmacenter (Colombia)", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmacenterCo/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62563928"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacenter", "brand:wikidata": "Q62563928", "healthcare": "pharmacy", "name": "Farmacenter"}, "removeTags": {"amenity": "pharmacy", "brand": "Farmacenter", "brand:wikidata": "Q62563928", "healthcare": "pharmacy", "name": "Farmacenter"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["co"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Farmacia Benavides": {"name": "Farmacia Benavides", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q5435613"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacia Benavides", "brand:wikidata": "Q5435613", "brand:wikipedia": "en:Farmacias Benavides", "healthcare": "pharmacy", "name": "Farmacia Benavides"}, "removeTags": {"amenity": "pharmacy", "brand": "Farmacia Benavides", "brand:wikidata": "Q5435613", "brand:wikipedia": "en:Farmacias Benavides", "healthcare": "pharmacy", "name": "Farmacia Benavides"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Farmacia Guadalajara": {"name": "Farmacia Guadalajara", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q5435609"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacia Guadalajara", "brand:wikidata": "Q5435609", "brand:wikipedia": "en:Farmacias Guadalajara", "healthcare": "pharmacy", "name": "Farmacia Guadalajara"}, "removeTags": {"amenity": "pharmacy", "brand": "Farmacia Guadalajara", "brand:wikidata": "Q5435609", "brand:wikipedia": "en:Farmacias Guadalajara", "healthcare": "pharmacy", "name": "Farmacia Guadalajara"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["mx"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Farmacias Ahumada": {"name": "Farmacias Ahumada", "icon": "maki-pharmacy", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFarmacias%20ahumada.jpg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q5856069"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacias Ahumada", "brand:wikidata": "Q5856069", "brand:wikipedia": "es:Farmacias Ahumada", "healthcare": "pharmacy", "name": "Farmacias Ahumada"}, "removeTags": {"amenity": "pharmacy", "brand": "Farmacias Ahumada", "brand:wikidata": "Q5856069", "brand:wikipedia": "es:Farmacias Ahumada", "healthcare": "pharmacy", "name": "Farmacias Ahumada"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmacias Cruz Azul": {"name": "Farmacias Cruz Azul", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/CruzAzul.Farmacias/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62108219"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacias Cruz Azul", "brand:wikidata": "Q62108219", "healthcare": "pharmacy", "name": "Farmacias Cruz Azul"}, "removeTags": {"amenity": "pharmacy", "brand": "Farmacias Cruz Azul", "brand:wikidata": "Q62108219", "healthcare": "pharmacy", "name": "Farmacias Cruz Azul"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ec"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmacias Cruz Verde": {"name": "Farmacias Cruz Verde", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q5856071"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacias Cruz Verde", "brand:wikidata": "Q5856071", "brand:wikipedia": "es:Farmacias Cruz Verde", "healthcare": "pharmacy", "name": "Farmacias Cruz Verde"}, "removeTags": {"amenity": "pharmacy", "brand": "Farmacias Cruz Verde", "brand:wikidata": "Q5856071", "brand:wikipedia": "es:Farmacias Cruz Verde", "healthcare": "pharmacy", "name": "Farmacias Cruz Verde"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Farmacias Económicas (Ecuador)": {"name": "Farmacias Económicas (Ecuador)", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmaciasEconomicasEc/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62108380"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacias Económicas", "brand:wikidata": "Q62108380", "healthcare": "pharmacy", "name": "Farmacias Económicas"}, "removeTags": {"amenity": "pharmacy", "brand": "Farmacias Económicas", "brand:wikidata": "Q62108380", "healthcare": "pharmacy", "name": "Farmacias Económicas"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ec"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Farmacias Económicas (El Salvador)": {"name": "Farmacias Económicas (El Salvador)", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmaciasEconomicas/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62108397"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacias Económicas", "brand:wikidata": "Q62108397", "healthcare": "pharmacy", "name": "Farmacias Económicas"}, "removeTags": {"amenity": "pharmacy", "brand": "Farmacias Económicas", "brand:wikidata": "Q62108397", "healthcare": "pharmacy", "name": "Farmacias Económicas"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["sv"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Farmacias SalcoBrand": {"name": "Farmacias SalcoBrand", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q2877054"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacias SalcoBrand", "brand:wikidata": "Q2877054", "brand:wikipedia": "es:Farmacias Salcobrand", "healthcare": "pharmacy", "name": "Farmacias SalcoBrand"}, "removeTags": {"amenity": "pharmacy", "brand": "Farmacias SalcoBrand", "brand:wikidata": "Q2877054", "brand:wikipedia": "es:Farmacias Salcobrand", "healthcare": "pharmacy", "name": "Farmacias SalcoBrand"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Farmacias Similares": {"name": "Farmacias Similares", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/DrSimiChile/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62564610"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacias Similares", "brand:wikidata": "Q62564610", "healthcare": "pharmacy", "name": "Farmacias Similares"}, "removeTags": {"amenity": "pharmacy", "brand": "Farmacias Similares", "brand:wikidata": "Q62564610", "healthcare": "pharmacy", "name": "Farmacias Similares"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["cl", "gt", "mx"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Farmacias del Ahorro": {"name": "Farmacias del Ahorro", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FAhorro/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62086647"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacias del Ahorro", "brand:wikidata": "Q62086647", "healthcare": "pharmacy", "name": "Farmacias del Ahorro"}, "removeTags": {"amenity": "pharmacy", "brand": "Farmacias del Ahorro", "brand:wikidata": "Q62086647", "healthcare": "pharmacy", "name": "Farmacias del Ahorro"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["mx"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Farmacias del Dr. Simi": {"name": "Farmacias del Dr. Simi", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/DrSimiChile/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62564610"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacias del Dr. Simi", "brand:wikidata": "Q62564610", "healthcare": "pharmacy", "name": "Farmacias del Dr. Simi"}, "removeTags": {"amenity": "pharmacy", "brand": "Farmacias del Dr. Simi", "brand:wikidata": "Q62564610", "healthcare": "pharmacy", "name": "Farmacias del Dr. Simi"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["cl", "gt", "mx"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Farmacity": {"name": "Farmacity", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Farmacity/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q5856076"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacity", "brand:wikidata": "Q5856076", "brand:wikipedia": "es:Farmacity", "healthcare": "pharmacy", "name": "Farmacity"}, "removeTags": {"amenity": "pharmacy", "brand": "Farmacity", "brand:wikidata": "Q5856076", "brand:wikipedia": "es:Farmacity", "healthcare": "pharmacy", "name": "Farmacity"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ra"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Farmahorro": {"name": "Farmahorro", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q20015002"}, "addTags": {"amenity": "pharmacy", "brand": "Farmahorro", "brand:wikidata": "Q20015002", "brand:wikipedia": "es:Farmahorro", "healthcare": "pharmacy", "name": "Farmahorro"}, "removeTags": {"amenity": "pharmacy", "brand": "Farmahorro", "brand:wikidata": "Q20015002", "brand:wikipedia": "es:Farmahorro", "healthcare": "pharmacy", "name": "Farmahorro"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Farmatodo": {"name": "Farmatodo", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q5856092"}, "addTags": {"amenity": "pharmacy", "brand": "Farmatodo", "brand:wikidata": "Q5856092", "brand:wikipedia": "es:Farmatodo", "healthcare": "pharmacy", "name": "Farmatodo"}, "removeTags": {"amenity": "pharmacy", "brand": "Farmatodo", "brand:wikidata": "Q5856092", "brand:wikipedia": "es:Farmatodo", "healthcare": "pharmacy", "name": "Farmatodo"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Felicia": {"name": "Felicia", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/farmaciafelicia/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62564805"}, "addTags": {"amenity": "pharmacy", "brand": "Felicia", "brand:wikidata": "Q62564805", "healthcare": "pharmacy", "name": "Felicia"}, "removeTags": {"amenity": "pharmacy", "brand": "Felicia", "brand:wikidata": "Q62564805", "healthcare": "pharmacy", "name": "Felicia"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["md"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Fybeca": {"name": "Fybeca", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/fybeca/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62564822"}, "addTags": {"amenity": "pharmacy", "brand": "Fybeca", "brand:wikidata": "Q62564822", "healthcare": "pharmacy", "name": "Fybeca"}, "removeTags": {"amenity": "pharmacy", "brand": "Fybeca", "brand:wikidata": "Q62564822", "healthcare": "pharmacy", "name": "Fybeca"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ec"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Generika": {"name": "Generika", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62564876"}, "addTags": {"amenity": "pharmacy", "brand": "Generika", "brand:wikidata": "Q62564876", "healthcare": "pharmacy", "name": "Generika"}, "removeTags": {"amenity": "pharmacy", "brand": "Generika", "brand:wikidata": "Q62564876", "healthcare": "pharmacy", "name": "Generika"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Gintarinė vaistinė": {"name": "Gintarinė vaistinė", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q15857801"}, "addTags": {"amenity": "pharmacy", "brand": "Gintarinė vaistinė", "brand:wikidata": "Q15857801", "brand:wikipedia": "lt:Gintarinė vaistinė", "healthcare": "pharmacy", "name": "Gintarinė vaistinė"}, "removeTags": {"amenity": "pharmacy", "brand": "Gintarinė vaistinė", "brand:wikidata": "Q15857801", "brand:wikipedia": "lt:Gintarinė vaistinė", "healthcare": "pharmacy", "name": "Gintarinė vaistinė"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["lt"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Guardian": {"name": "Guardian", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q13646560"}, "addTags": {"amenity": "pharmacy", "brand": "Guardian", "brand:wikidata": "Q13646560", "brand:wikipedia": "en:Mannings", "healthcare": "pharmacy", "name": "Guardian"}, "removeTags": {"amenity": "pharmacy", "brand": "Guardian", "brand:wikidata": "Q13646560", "brand:wikipedia": "en:Mannings", "healthcare": "pharmacy", "name": "Guardian"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/H-E-B Pharmacy": {"name": "H-E-B Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20of%20the%20HEB%20Grocery%20Company%2C%20LP.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q830621"}, "addTags": {"amenity": "pharmacy", "brand": "H-E-B Pharmacy", "brand:wikidata": "Q830621", "brand:wikipedia": "en:H-E-B", "healthcare": "pharmacy", "name": "H-E-B Pharmacy"}, "removeTags": {"amenity": "pharmacy", "brand": "H-E-B Pharmacy", "brand:wikidata": "Q830621", "brand:wikipedia": "en:H-E-B", "healthcare": "pharmacy", "name": "H-E-B Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/H-E-B Pharmacy": {"name": "H-E-B Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20of%20the%20HEB%20Grocery%20Company%2C%20LP.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q830621"}, "addTags": {"amenity": "pharmacy", "brand": "H-E-B Pharmacy", "brand:wikidata": "Q830621", "brand:wikipedia": "en:H-E-B", "healthcare": "pharmacy", "name": "H-E-B Pharmacy"}, "removeTags": {"amenity": "pharmacy", "brand": "H-E-B Pharmacy", "brand:wikidata": "Q830621", "brand:wikipedia": "en:H-E-B", "healthcare": "pharmacy", "name": "H-E-B Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Hy-Vee Pharmacy": {"name": "Hy-Vee Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/HyVee/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q1639719"}, "addTags": {"amenity": "pharmacy", "brand": "Hy-Vee Pharmacy", "brand:wikidata": "Q1639719", "brand:wikipedia": "en:Hy-Vee", "healthcare": "pharmacy", "name": "Hy-Vee Pharmacy"}, "removeTags": {"amenity": "pharmacy", "brand": "Hy-Vee Pharmacy", "brand:wikidata": "Q1639719", "brand:wikipedia": "en:Hy-Vee", "healthcare": "pharmacy", "name": "Hy-Vee Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Inkafarma": {"name": "Inkafarma", "icon": "maki-pharmacy", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20de%20Inkafarma.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q10997748"}, "addTags": {"amenity": "pharmacy", "brand": "Inkafarma", "brand:wikidata": "Q10997748", "brand:wikipedia": "es:Inkafarma", "healthcare": "pharmacy", "name": "Inkafarma"}, "removeTags": {"amenity": "pharmacy", "brand": "Inkafarma", "brand:wikidata": "Q10997748", "brand:wikipedia": "es:Inkafarma", "healthcare": "pharmacy", "name": "Inkafarma"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Jean Coutu": {"name": "Jean Coutu", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q3117457"}, "addTags": {"amenity": "pharmacy", "brand": "Jean Coutu", "brand:wikidata": "Q3117457", "brand:wikipedia": "en:Jean Coutu Group", "healthcare": "pharmacy", "name": "Jean Coutu"}, "removeTags": {"amenity": "pharmacy", "brand": "Jean Coutu", "brand:wikidata": "Q3117457", "brand:wikipedia": "en:Jean Coutu Group", "healthcare": "pharmacy", "name": "Jean Coutu"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, @@ -2222,28 +2316,40 @@ "amenity/pharmacy/Lloyds Pharmacy": {"name": "Lloyds Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://pbs.twimg.com/profile_images/3785151714/bacbe389277bb2f5477016a7fde79bcd_bigger.jpeg", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q6662870"}, "addTags": {"amenity": "pharmacy", "brand": "Lloyds Pharmacy", "brand:wikidata": "Q6662870", "brand:wikipedia": "en:LloydsPharmacy", "healthcare": "pharmacy", "name": "Lloyds Pharmacy"}, "removeTags": {"amenity": "pharmacy", "brand": "Lloyds Pharmacy", "brand:wikidata": "Q6662870", "brand:wikipedia": "en:LloydsPharmacy", "healthcare": "pharmacy", "name": "Lloyds Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, "amenity/pharmacy/London Drugs": {"name": "London Drugs", "icon": "maki-pharmacy", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLondon%20Drugs%20Logo%20-%20with%20border.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q3258955"}, "addTags": {"amenity": "pharmacy", "brand": "London Drugs", "brand:wikidata": "Q3258955", "brand:wikipedia": "en:London Drugs", "healthcare": "pharmacy", "name": "London Drugs"}, "removeTags": {"amenity": "pharmacy", "brand": "London Drugs", "brand:wikidata": "Q3258955", "brand:wikipedia": "en:London Drugs", "healthcare": "pharmacy", "name": "London Drugs"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Mercury Drug": {"name": "Mercury Drug", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q6818610"}, "addTags": {"amenity": "pharmacy", "brand": "Mercury Drug", "brand:wikidata": "Q6818610", "brand:wikipedia": "en:Mercury Drug", "healthcare": "pharmacy", "name": "Mercury Drug"}, "removeTags": {"amenity": "pharmacy", "brand": "Mercury Drug", "brand:wikidata": "Q6818610", "brand:wikipedia": "en:Mercury Drug", "healthcare": "pharmacy", "name": "Mercury Drug"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Mifarma": {"name": "Mifarma", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62564998"}, "addTags": {"amenity": "pharmacy", "brand": "Mifarma", "brand:wikidata": "Q62564998", "healthcare": "pharmacy", "name": "Mifarma"}, "removeTags": {"amenity": "pharmacy", "brand": "Mifarma", "brand:wikidata": "Q62564998", "healthcare": "pharmacy", "name": "Mifarma"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["pe"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Multipharma": {"name": "Multipharma", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Multipharma.be/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62565018"}, "addTags": {"amenity": "pharmacy", "brand": "Multipharma", "brand:wikidata": "Q62565018", "healthcare": "pharmacy", "name": "Multipharma"}, "removeTags": {"amenity": "pharmacy", "brand": "Multipharma", "brand:wikidata": "Q62565018", "healthcare": "pharmacy", "name": "Multipharma"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["be"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Mēness aptieka": {"name": "Mēness aptieka", "icon": "maki-pharmacy", "imageURL": "https://pbs.twimg.com/profile_images/854306359071961089/tyVjOiXp_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q57583051"}, "addTags": {"amenity": "pharmacy", "brand": "Mēness aptieka", "brand:wikidata": "Q57583051", "healthcare": "pharmacy", "name": "Mēness aptieka"}, "removeTags": {"amenity": "pharmacy", "brand": "Mēness aptieka", "brand:wikidata": "Q57583051", "healthcare": "pharmacy", "name": "Mēness aptieka"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["lv"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Pague Menos": {"name": "Pague Menos", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q7124466"}, "addTags": {"amenity": "pharmacy", "brand": "Pague Menos", "brand:wikidata": "Q7124466", "brand:wikipedia": "pt:Pague Menos", "healthcare": "pharmacy", "name": "Pague Menos"}, "removeTags": {"amenity": "pharmacy", "brand": "Pague Menos", "brand:wikidata": "Q7124466", "brand:wikipedia": "pt:Pague Menos", "healthcare": "pharmacy", "name": "Pague Menos"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Pharmacie Principale": {"name": "Pharmacie Principale", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q1547749"}, "addTags": {"amenity": "pharmacy", "brand": "Pharmacie Principale", "brand:wikidata": "Q1547749", "brand:wikipedia": "fr:PP Holding Group", "healthcare": "pharmacy", "name": "Pharmacie Principale"}, "removeTags": {"amenity": "pharmacy", "brand": "Pharmacie Principale", "brand:wikidata": "Q1547749", "brand:wikipedia": "fr:PP Holding Group", "healthcare": "pharmacy", "name": "Pharmacie Principale"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Pharmacie Principale": {"name": "Pharmacie Principale", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q1547749"}, "addTags": {"amenity": "pharmacy", "brand": "Pharmacie Principale", "brand:wikidata": "Q1547749", "brand:wikipedia": "fr:Groupe PP Holding", "healthcare": "pharmacy", "name": "Pharmacie Principale"}, "removeTags": {"amenity": "pharmacy", "brand": "Pharmacie Principale", "brand:wikidata": "Q1547749", "brand:wikipedia": "fr:Groupe PP Holding", "healthcare": "pharmacy", "name": "Pharmacie Principale"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Pharmaprix": {"name": "Pharmaprix", "icon": "maki-pharmacy", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FShoppers-Drug-Mart-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q1820137"}, "addTags": {"amenity": "pharmacy", "brand": "Pharmaprix", "brand:wikidata": "Q1820137", "brand:wikipedia": "en:Shoppers Drug Mart", "healthcare": "pharmacy", "name": "Pharmaprix"}, "removeTags": {"amenity": "pharmacy", "brand": "Pharmaprix", "brand:wikidata": "Q1820137", "brand:wikipedia": "en:Shoppers Drug Mart", "healthcare": "pharmacy", "name": "Pharmaprix"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Pharmasave": {"name": "Pharmasave", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q17093822"}, "addTags": {"amenity": "pharmacy", "brand": "Pharmasave", "brand:wikidata": "Q17093822", "brand:wikipedia": "en:Pharmasave", "healthcare": "pharmacy", "name": "Pharmasave"}, "removeTags": {"amenity": "pharmacy", "brand": "Pharmasave", "brand:wikidata": "Q17093822", "brand:wikipedia": "en:Pharmasave", "healthcare": "pharmacy", "name": "Pharmasave"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Punto Farma (Colombia)": {"name": "Punto Farma (Colombia)", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62595271"}, "addTags": {"amenity": "pharmacy", "brand": "Punto Farma", "brand:wikidata": "Q62595271", "healthcare": "pharmacy", "name": "Punto Farma"}, "removeTags": {"amenity": "pharmacy", "brand": "Punto Farma", "brand:wikidata": "Q62595271", "healthcare": "pharmacy", "name": "Punto Farma"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["co"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Punto Farma (Honduras)": {"name": "Punto Farma (Honduras)", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmaciasPuntoFarma/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62595229"}, "addTags": {"amenity": "pharmacy", "brand": "Punto Farma", "brand:wikidata": "Q62595229", "healthcare": "pharmacy", "name": "Punto Farma"}, "removeTags": {"amenity": "pharmacy", "brand": "Punto Farma", "brand:wikidata": "Q62595229", "healthcare": "pharmacy", "name": "Punto Farma"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["hn"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Punto Farma (Paraguay)": {"name": "Punto Farma (Paraguay)", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Puntofarmapy/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62595220"}, "addTags": {"amenity": "pharmacy", "brand": "Punto Farma", "brand:wikidata": "Q62595220", "healthcare": "pharmacy", "name": "Punto Farma"}, "removeTags": {"amenity": "pharmacy", "brand": "Punto Farma", "brand:wikidata": "Q62595220", "healthcare": "pharmacy", "name": "Punto Farma"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["py"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Rexall": {"name": "Rexall", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q7319360"}, "addTags": {"amenity": "pharmacy", "brand": "Rexall", "brand:wikidata": "Q7319360", "brand:wikipedia": "en:Rexall", "healthcare": "pharmacy", "name": "Rexall"}, "removeTags": {"amenity": "pharmacy", "brand": "Rexall", "brand:wikidata": "Q7319360", "brand:wikipedia": "en:Rexall", "healthcare": "pharmacy", "name": "Rexall"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Rite Aid": {"name": "Rite Aid", "icon": "maki-pharmacy", "imageURL": "https://pbs.twimg.com/profile_images/1096082254231613441/2lYTJj1d_bigger.png", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q3433273"}, "addTags": {"amenity": "pharmacy", "brand": "Rite Aid", "brand:wikidata": "Q3433273", "brand:wikipedia": "en:Rite Aid", "healthcare": "pharmacy", "name": "Rite Aid"}, "removeTags": {"amenity": "pharmacy", "brand": "Rite Aid", "brand:wikidata": "Q3433273", "brand:wikipedia": "en:Rite Aid", "healthcare": "pharmacy", "name": "Rite Aid"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Rose Pharmacy": {"name": "Rose Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/RosePharmacyInc/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62663208"}, "addTags": {"amenity": "pharmacy", "brand": "Rose Pharmacy", "brand:wikidata": "Q62663208", "healthcare": "pharmacy", "name": "Rose Pharmacy"}, "removeTags": {"amenity": "pharmacy", "brand": "Rose Pharmacy", "brand:wikidata": "Q62663208", "healthcare": "pharmacy", "name": "Rose Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["pi"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Rowlands Pharmacy": {"name": "Rowlands Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/RowlandsPharmacy/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62663235"}, "addTags": {"amenity": "pharmacy", "brand": "Rowlands Pharmacy", "brand:wikidata": "Q62663235", "healthcare": "pharmacy", "name": "Rowlands Pharmacy"}, "removeTags": {"amenity": "pharmacy", "brand": "Rowlands Pharmacy", "brand:wikidata": "Q62663235", "healthcare": "pharmacy", "name": "Rowlands Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/SalcoBrand": {"name": "SalcoBrand", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q2877054"}, "addTags": {"amenity": "pharmacy", "brand": "SalcoBrand", "brand:wikidata": "Q2877054", "brand:wikipedia": "es:Farmacias Salcobrand", "healthcare": "pharmacy", "name": "SalcoBrand"}, "removeTags": {"amenity": "pharmacy", "brand": "SalcoBrand", "brand:wikidata": "Q2877054", "brand:wikipedia": "es:Farmacias Salcobrand", "healthcare": "pharmacy", "name": "SalcoBrand"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Sana Sana": {"name": "Sana Sana", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmaciasSanaSanaEc/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62564499"}, "addTags": {"amenity": "pharmacy", "brand": "Sana Sana", "brand:wikidata": "Q62564499", "healthcare": "pharmacy", "name": "Sana Sana"}, "removeTags": {"amenity": "pharmacy", "brand": "Sana Sana", "brand:wikidata": "Q62564499", "healthcare": "pharmacy", "name": "Sana Sana"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ec"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Sensiblu": {"name": "Sensiblu", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q12740640"}, "addTags": {"amenity": "pharmacy", "brand": "Sensiblu", "brand:wikidata": "Q12740640", "brand:wikipedia": "ro:Sensiblu", "healthcare": "pharmacy", "name": "Sensiblu"}, "removeTags": {"amenity": "pharmacy", "brand": "Sensiblu", "brand:wikidata": "Q12740640", "brand:wikipedia": "ro:Sensiblu", "healthcare": "pharmacy", "name": "Sensiblu"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ro"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Shoppers Drug Mart": {"name": "Shoppers Drug Mart", "icon": "maki-pharmacy", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FShoppers-Drug-Mart-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q1820137"}, "addTags": {"amenity": "pharmacy", "brand": "Shoppers Drug Mart", "brand:wikidata": "Q1820137", "brand:wikipedia": "en:Shoppers Drug Mart", "healthcare": "pharmacy", "name": "Shoppers Drug Mart"}, "removeTags": {"amenity": "pharmacy", "brand": "Shoppers Drug Mart", "brand:wikidata": "Q1820137", "brand:wikipedia": "en:Shoppers Drug Mart", "healthcare": "pharmacy", "name": "Shoppers Drug Mart"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/South Star Drug": {"name": "South Star Drug", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q7568544"}, "addTags": {"amenity": "pharmacy", "brand": "South Star Drug", "brand:wikidata": "Q7568544", "brand:wikipedia": "en:South Star Drug", "healthcare": "pharmacy", "name": "South Star Drug"}, "removeTags": {"amenity": "pharmacy", "brand": "South Star Drug", "brand:wikidata": "Q7568544", "brand:wikipedia": "en:South Star Drug", "healthcare": "pharmacy", "name": "South Star Drug"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Superdrug": {"name": "Superdrug", "icon": "maki-pharmacy", "imageURL": "https://pbs.twimg.com/profile_images/1010086590536929280/Dy5TpFig_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q7643261"}, "addTags": {"amenity": "pharmacy", "brand": "Superdrug", "brand:wikidata": "Q7643261", "brand:wikipedia": "en:Superdrug", "healthcare": "pharmacy", "name": "Superdrug"}, "removeTags": {"amenity": "pharmacy", "brand": "Superdrug", "brand:wikidata": "Q7643261", "brand:wikipedia": "en:Superdrug", "healthcare": "pharmacy", "name": "Superdrug"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/São João": {"name": "São João", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/farmaciassaojoao/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62663306"}, "addTags": {"amenity": "pharmacy", "brand": "São João", "brand:wikidata": "Q62663306", "healthcare": "pharmacy", "name": "São João"}, "removeTags": {"amenity": "pharmacy", "brand": "São João", "brand:wikidata": "Q62663306", "healthcare": "pharmacy", "name": "São João"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/TGP": {"name": "TGP", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q61948677"}, "addTags": {"amenity": "pharmacy", "brand": "The Generics Pharmacy", "brand:wikidata": "Q61948677", "healthcare": "pharmacy", "name": "TGP", "official_name": "The Generics Pharmacy"}, "removeTags": {"amenity": "pharmacy", "brand": "The Generics Pharmacy", "brand:wikidata": "Q61948677", "healthcare": "pharmacy", "name": "TGP", "official_name": "The Generics Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Unichem Pharmacy": {"name": "Unichem Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/UnichemNZ/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62663379"}, "addTags": {"amenity": "pharmacy", "brand": "Unichem Pharmacy", "brand:wikidata": "Q62663379", "healthcare": "pharmacy", "name": "Unichem Pharmacy"}, "removeTags": {"amenity": "pharmacy", "brand": "Unichem Pharmacy", "brand:wikidata": "Q62663379", "healthcare": "pharmacy", "name": "Unichem Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["nz"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Uniprix": {"name": "Uniprix", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q683265"}, "addTags": {"amenity": "pharmacy", "brand": "Uniprix", "brand:wikidata": "Q683265", "brand:wikipedia": "en:Uniprix", "healthcare": "pharmacy", "name": "Uniprix"}, "removeTags": {"amenity": "pharmacy", "brand": "Uniprix", "brand:wikidata": "Q683265", "brand:wikipedia": "en:Uniprix", "healthcare": "pharmacy", "name": "Uniprix"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Walgreens": {"name": "Walgreens", "icon": "maki-pharmacy", "imageURL": "https://pbs.twimg.com/profile_images/875789275668918273/7l9RDOnl_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q1591889"}, "addTags": {"amenity": "pharmacy", "brand": "Walgreens", "brand:wikidata": "Q1591889", "brand:wikipedia": "en:Walgreens", "healthcare": "pharmacy", "name": "Walgreens"}, "removeTags": {"amenity": "pharmacy", "brand": "Walgreens", "brand:wikidata": "Q1591889", "brand:wikipedia": "en:Walgreens", "healthcare": "pharmacy", "name": "Walgreens"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Walmart Pharmacy": {"name": "Walmart Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/walmart/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q483551"}, "addTags": {"amenity": "pharmacy", "brand": "Walmart", "brand:wikidata": "Q483551", "brand:wikipedia": "en:Walmart", "healthcare": "pharmacy", "name": "Walmart Pharmacy", "operator": "Walmart", "operator:wikidata": "Q483551", "operator:wikipedia": "en:Walmart"}, "removeTags": {"amenity": "pharmacy", "brand": "Walmart", "brand:wikidata": "Q483551", "brand:wikipedia": "en:Walmart", "healthcare": "pharmacy", "name": "Walmart Pharmacy", "operator": "Walmart", "operator:wikidata": "Q483551", "operator:wikipedia": "en:Walmart"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Watsons": {"name": "Watsons", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/WatsonsPH/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q7974785"}, "addTags": {"amenity": "pharmacy", "brand": "Watsons", "brand:wikidata": "Q7974785", "brand:wikipedia": "en:Watsons", "healthcare": "pharmacy", "name": "Watsons"}, "removeTags": {"amenity": "pharmacy", "brand": "Watsons", "brand:wikidata": "Q7974785", "brand:wikipedia": "en:Watsons", "healthcare": "pharmacy", "name": "Watsons"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Well Pharmacy": {"name": "Well Pharmacy", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q7726524"}, "addTags": {"amenity": "pharmacy", "brand": "Well Pharmacy", "brand:wikidata": "Q7726524", "brand:wikipedia": "en:Well Pharmacy", "healthcare": "pharmacy", "name": "Well Pharmacy"}, "removeTags": {"amenity": "pharmacy", "brand": "Well Pharmacy", "brand:wikidata": "Q7726524", "brand:wikipedia": "en:Well Pharmacy", "healthcare": "pharmacy", "name": "Well Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/А5": {"name": "А5", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/apteka5/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62663476"}, "addTags": {"amenity": "pharmacy", "brand": "А5", "brand:wikidata": "Q62663476", "healthcare": "pharmacy", "name": "А5"}, "removeTags": {"amenity": "pharmacy", "brand": "А5", "brand:wikidata": "Q62663476", "healthcare": "pharmacy", "name": "А5"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/Бережная аптека": {"name": "Бережная аптека", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/BereznayaApteka/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q62664194"}, "addTags": {"amenity": "pharmacy", "brand": "Бережная аптека", "brand:wikidata": "Q62664194", "healthcare": "pharmacy", "name": "Бережная аптека"}, "removeTags": {"amenity": "pharmacy", "brand": "Бережная аптека", "brand:wikidata": "Q62664194", "healthcare": "pharmacy", "name": "Бережная аптека"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Ригла": {"name": "Ригла", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q4394431"}, "addTags": {"amenity": "pharmacy", "brand": "Ригла", "brand:wikidata": "Q4394431", "brand:wikipedia": "ru:Ригла", "healthcare": "pharmacy", "name": "Ригла"}, "removeTags": {"amenity": "pharmacy", "brand": "Ригла", "brand:wikidata": "Q4394431", "brand:wikipedia": "ru:Ригла", "healthcare": "pharmacy", "name": "Ригла"}, "reference": {"key": "amenity", "value": "pharmacy"}, "matchScore": 2, "suggestion": true}, "amenity/pharmacy/סופר-פארם": {"name": "סופר-פארם", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q13220217"}, "addTags": {"amenity": "pharmacy", "brand": "סופר-פארם", "brand:he": "סופר-פארם", "brand:wikidata": "Q13220217", "brand:wikipedia": "en:Super-Pharm", "healthcare": "pharmacy", "name": "סופר-פארם", "name:he": "סופר-פארם"}, "removeTags": {"amenity": "pharmacy", "brand": "סופר-פארם", "brand:he": "סופר-פארם", "brand:wikidata": "Q13220217", "brand:wikipedia": "en:Super-Pharm", "healthcare": "pharmacy", "name": "סופר-פארם", "name:he": "סופר-פארם"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["il"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/くすりの福太郎": {"name": "くすりの福太郎", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q17214460"}, "addTags": {"amenity": "pharmacy", "brand": "くすりの福太郎", "brand:en": "Kusurino FUKUTARO", "brand:ja": "くすりの福太郎", "brand:wikidata": "Q17214460", "brand:wikipedia": "ja:くすりの福太郎", "healthcare": "pharmacy", "name": "くすりの福太郎", "name:en": "Kusurino Fukutaro", "name:ja": "くすりの福太郎"}, "removeTags": {"amenity": "pharmacy", "brand": "くすりの福太郎", "brand:en": "Kusurino FUKUTARO", "brand:ja": "くすりの福太郎", "brand:wikidata": "Q17214460", "brand:wikipedia": "ja:くすりの福太郎", "healthcare": "pharmacy", "name": "くすりの福太郎", "name:en": "Kusurino Fukutaro", "name:ja": "くすりの福太郎"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/ウェルパーク": {"name": "ウェルパーク", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q11288610"}, "addTags": {"amenity": "pharmacy", "brand": "ウェルパーク", "brand:wikidata": "Q11288610", "brand:wikipedia": "ja:ウェルパーク", "healthcare": "pharmacy", "name": "ウェルパーク", "name:en": "Welpark"}, "removeTags": {"amenity": "pharmacy", "brand": "ウェルパーク", "brand:wikidata": "Q11288610", "brand:wikipedia": "ja:ウェルパーク", "healthcare": "pharmacy", "name": "ウェルパーク", "name:en": "Welpark"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/ウェルパーク": {"name": "ウェルパーク", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q11288610"}, "addTags": {"amenity": "pharmacy", "brand": "ウェルパーク", "brand:ja": "ウェルパーク", "brand:wikidata": "Q11288610", "brand:wikipedia": "ja:ウェルパーク", "healthcare": "pharmacy", "name": "ウェルパーク", "name:en": "Welpark", "name:ja": "ウェルパーク"}, "removeTags": {"amenity": "pharmacy", "brand": "ウェルパーク", "brand:ja": "ウェルパーク", "brand:wikidata": "Q11288610", "brand:wikipedia": "ja:ウェルパーク", "healthcare": "pharmacy", "name": "ウェルパーク", "name:en": "Welpark", "name:ja": "ウェルパーク"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/ウエルシア": {"name": "ウエルシア", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q11288684"}, "addTags": {"amenity": "pharmacy", "brand": "ウエルシア", "brand:en": "Welcia", "brand:ja": "ウエルシア", "brand:wikidata": "Q11288684", "brand:wikipedia": "ja:ウエルシアホールディングス", "healthcare": "pharmacy", "name": "ウエルシア", "name:en": "Welcia", "name:ja": "ウエルシア"}, "removeTags": {"amenity": "pharmacy", "brand": "ウエルシア", "brand:en": "Welcia", "brand:ja": "ウエルシア", "brand:wikidata": "Q11288684", "brand:wikipedia": "ja:ウエルシアホールディングス", "healthcare": "pharmacy", "name": "ウエルシア", "name:en": "Welcia", "name:ja": "ウエルシア"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/ウエルシア薬局": {"name": "ウエルシア薬局", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q11288687"}, "addTags": {"amenity": "pharmacy", "brand": "ウエルシア薬局", "brand:en": "Welcia Yakkyoku", "brand:ja": "ウエルシア薬局", "brand:wikidata": "Q11288687", "brand:wikipedia": "ja:ウエルシア薬局", "healthcare": "pharmacy", "name": "ウエルシア薬局", "name:en": "Welcia Yakkyoku", "name:ja": "ウエルシア薬局"}, "removeTags": {"amenity": "pharmacy", "brand": "ウエルシア薬局", "brand:en": "Welcia Yakkyoku", "brand:ja": "ウエルシア薬局", "brand:wikidata": "Q11288687", "brand:wikipedia": "ja:ウエルシア薬局", "healthcare": "pharmacy", "name": "ウエルシア薬局", "name:en": "Welcia Yakkyoku", "name:ja": "ウエルシア薬局"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/カワチ薬品": {"name": "カワチ薬品", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q11295397"}, "addTags": {"amenity": "pharmacy", "brand": "カワチ薬品", "brand:en": "Cawachi", "brand:ja": "カワチ薬品", "brand:wikidata": "Q11295397", "brand:wikipedia": "ja:カワチ薬品", "healthcare": "pharmacy", "name": "カワチ薬品", "name:en": "Cawachi", "name:ja": "カワチ薬品"}, "removeTags": {"amenity": "pharmacy", "brand": "カワチ薬品", "brand:en": "Cawachi", "brand:ja": "カワチ薬品", "brand:wikidata": "Q11295397", "brand:wikipedia": "ja:カワチ薬品", "healthcare": "pharmacy", "name": "カワチ薬品", "name:en": "Cawachi", "name:ja": "カワチ薬品"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, @@ -2254,49 +2360,50 @@ "amenity/pharmacy/スギ薬局": {"name": "スギ薬局", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q11311460"}, "addTags": {"amenity": "pharmacy", "brand": "スギ薬局", "brand:en": "Sugi Pharmacy", "brand:ja": "スギ薬局", "brand:wikidata": "Q11311460", "brand:wikipedia": "ja:スギ薬局", "healthcare": "pharmacy", "name": "スギ薬局", "name:en": "Sugi Pharmacy", "name:ja": "スギ薬局"}, "removeTags": {"amenity": "pharmacy", "brand": "スギ薬局", "brand:en": "Sugi Pharmacy", "brand:ja": "スギ薬局", "brand:wikidata": "Q11311460", "brand:wikipedia": "ja:スギ薬局", "healthcare": "pharmacy", "name": "スギ薬局", "name:en": "Sugi Pharmacy", "name:ja": "スギ薬局"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/セイジョー": {"name": "セイジョー", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q11314133"}, "addTags": {"amenity": "pharmacy", "brand": "セイジョー", "brand:en": "Seijo", "brand:ja": "セイジョー", "brand:wikidata": "Q11314133", "brand:wikipedia": "ja:セイジョー", "healthcare": "pharmacy", "name": "セイジョー", "name:en": "Seijo", "name:ja": "セイジョー"}, "removeTags": {"amenity": "pharmacy", "brand": "セイジョー", "brand:en": "Seijo", "brand:ja": "セイジョー", "brand:wikidata": "Q11314133", "brand:wikipedia": "ja:セイジョー", "healthcare": "pharmacy", "name": "セイジョー", "name:en": "Seijo", "name:ja": "セイジョー"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/ダイコクドラッグ": {"name": "ダイコクドラッグ", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q11316754"}, "addTags": {"amenity": "pharmacy", "brand": "ダイコクドラッグ", "brand:en": "Daikoku Drug", "brand:ja": "ダイコクドラッグ", "brand:wikidata": "Q11316754", "brand:wikipedia": "ja:ダイコク", "healthcare": "pharmacy", "name": "ダイコクドラッグ", "name:en": "Daikoku Drug", "name:ja": "ダイコクドラッグ"}, "removeTags": {"amenity": "pharmacy", "brand": "ダイコクドラッグ", "brand:en": "Daikoku Drug", "brand:ja": "ダイコクドラッグ", "brand:wikidata": "Q11316754", "brand:wikipedia": "ja:ダイコク", "healthcare": "pharmacy", "name": "ダイコクドラッグ", "name:en": "Daikoku Drug", "name:ja": "ダイコクドラッグ"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/ツルハドラッグ": {"name": "ツルハドラッグ", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q11318826"}, "addTags": {"amenity": "pharmacy", "brand": "ツルハドラッグ", "brand:en": "Tsuruha", "brand:ja": "ツルハドラッグ", "brand:wikidata": "Q11318826", "brand:wikipedia": "ja:ツルハドラッグ", "healthcare": "pharmacy", "name": "ツルハドラッグ", "name:en": "Tsuruha", "name:ja": "ツルハドラッグ"}, "removeTags": {"amenity": "pharmacy", "brand": "ツルハドラッグ", "brand:en": "Tsuruha", "brand:ja": "ツルハドラッグ", "brand:wikidata": "Q11318826", "brand:wikipedia": "ja:ツルハドラッグ", "healthcare": "pharmacy", "name": "ツルハドラッグ", "name:en": "Tsuruha", "name:ja": "ツルハドラッグ"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/pharmacy/ツルハドラッグ": {"name": "ツルハドラッグ", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q11318826"}, "addTags": {"amenity": "pharmacy", "brand": "ツルハドラッグ", "brand:en": "Tsuruha", "brand:ja": "ツルハドラッグ", "brand:wikidata": "Q11318826", "brand:wikipedia": "ja:ツルハ", "healthcare": "pharmacy", "name": "ツルハドラッグ", "name:en": "Tsuruha", "name:ja": "ツルハドラッグ"}, "removeTags": {"amenity": "pharmacy", "brand": "ツルハドラッグ", "brand:en": "Tsuruha", "brand:ja": "ツルハドラッグ", "brand:wikidata": "Q11318826", "brand:wikipedia": "ja:ツルハ", "healthcare": "pharmacy", "name": "ツルハドラッグ", "name:en": "Tsuruha", "name:ja": "ツルハドラッグ"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/トモズ": {"name": "トモズ", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q7820097"}, "addTags": {"amenity": "pharmacy", "brand": "トモズ", "brand:en": "Tomod's", "brand:ja": "トモズ", "brand:wikidata": "Q7820097", "brand:wikipedia": "ja:トモズ", "healthcare": "pharmacy", "name": "トモズ", "name:en": "Tomod's", "name:ja": "トモズ"}, "removeTags": {"amenity": "pharmacy", "brand": "トモズ", "brand:en": "Tomod's", "brand:ja": "トモズ", "brand:wikidata": "Q7820097", "brand:wikipedia": "ja:トモズ", "healthcare": "pharmacy", "name": "トモズ", "name:en": "Tomod's", "name:ja": "トモズ"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/マツモトキヨシ": {"name": "マツモトキヨシ", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q8014776"}, "addTags": {"amenity": "pharmacy", "brand": "マツモトキヨシ", "brand:en": "Matsukiyo", "brand:ja": "マツモトキヨシ", "brand:wikidata": "Q8014776", "brand:wikipedia": "ja:マツモトキヨシ", "healthcare": "pharmacy", "name": "マツモトキヨシ", "name:en": "Matsukiyo", "name:ja": "マツモトキヨシ"}, "removeTags": {"amenity": "pharmacy", "brand": "マツモトキヨシ", "brand:en": "Matsukiyo", "brand:ja": "マツモトキヨシ", "brand:wikidata": "Q8014776", "brand:wikipedia": "ja:マツモトキヨシ", "healthcare": "pharmacy", "name": "マツモトキヨシ", "name:en": "Matsukiyo", "name:ja": "マツモトキヨシ"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/post_box/Deutsche Post": {"name": "Deutsche Post", "icon": "temaki-post_box", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Deutsche%20Post%20DHL.svg&width=100", "geometry": ["point", "vertex"], "tags": {"amenity": "post_box", "brand:wikidata": "Q157645"}, "addTags": {"amenity": "post_box", "brand": "Deutsche Post", "brand:wikidata": "Q157645", "brand:wikipedia": "en:Deutsche Post", "name": "Deutsche Post"}, "removeTags": {"amenity": "post_box", "brand": "Deutsche Post", "brand:wikidata": "Q157645", "brand:wikipedia": "en:Deutsche Post", "name": "Deutsche Post"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "amenity/post_box/Deutsche Post": {"name": "Deutsche Post", "icon": "temaki-post_box", "imageURL": "https://graph.facebook.com/deutschepost/picture?type=large", "geometry": ["point", "vertex"], "tags": {"amenity": "post_box", "brand:wikidata": "Q157645"}, "addTags": {"amenity": "post_box", "brand": "Deutsche Post", "brand:wikidata": "Q157645", "brand:wikipedia": "en:Deutsche Post", "name": "Deutsche Post"}, "removeTags": {"amenity": "post_box", "brand": "Deutsche Post", "brand:wikidata": "Q157645", "brand:wikipedia": "en:Deutsche Post", "name": "Deutsche Post"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "amenity/post_box/USPS": {"name": "USPS", "icon": "temaki-post_box", "imageURL": "https://graph.facebook.com/USPS/picture?type=large", "geometry": ["point", "vertex"], "tags": {"amenity": "post_box", "brand:wikidata": "Q668687"}, "addTags": {"amenity": "post_box", "brand": "USPS", "brand:wikidata": "Q668687", "brand:wikipedia": "en:United States Postal Service", "name": "USPS", "operator": "USPS"}, "removeTags": {"amenity": "post_box", "brand": "USPS", "brand:wikidata": "Q668687", "brand:wikipedia": "en:United States Postal Service", "name": "USPS", "operator": "USPS"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/post_office/Australia Post": {"name": "Australia Post", "icon": "maki-post", "imageURL": "https://pbs.twimg.com/profile_images/1050581738009718785/uXnrUC3X_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q1142936"}, "addTags": {"amenity": "post_office", "brand": "Australia Post", "brand:wikidata": "Q1142936", "brand:wikipedia": "en:Australia Post", "name": "Australia Post"}, "removeTags": {"amenity": "post_office", "brand": "Australia Post", "brand:wikidata": "Q1142936", "brand:wikipedia": "en:Australia Post", "name": "Australia Post"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, "amenity/post_office/CTT": {"name": "CTT", "icon": "maki-post", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMacau%20DSC.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q909429"}, "addTags": {"amenity": "post_office", "brand": "CTT", "brand:wikidata": "Q909429", "brand:wikipedia": "en:CTT (Macau)", "name": "CTT"}, "removeTags": {"amenity": "post_office", "brand": "CTT", "brand:wikidata": "Q909429", "brand:wikipedia": "en:CTT (Macau)", "name": "CTT"}, "countryCodes": ["mo"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Canada Post": {"name": "Canada Post", "icon": "maki-post", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q1032001"}, "addTags": {"amenity": "post_office", "brand": "Canada Post", "brand:wikidata": "Q1032001", "brand:wikipedia": "en:Canada Post", "name": "Canada Post"}, "removeTags": {"amenity": "post_office", "brand": "Canada Post", "brand:wikidata": "Q1032001", "brand:wikipedia": "en:Canada Post", "name": "Canada Post"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "amenity/post_office/Canada Post": {"name": "Canada Post", "icon": "maki-post", "imageURL": "https://graph.facebook.com/canadapost/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q1032001"}, "addTags": {"amenity": "post_office", "brand": "Canada Post", "brand:wikidata": "Q1032001", "brand:wikipedia": "en:Canada Post", "name": "Canada Post"}, "removeTags": {"amenity": "post_office", "brand": "Canada Post", "brand:wikidata": "Q1032001", "brand:wikipedia": "en:Canada Post", "name": "Canada Post"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/post_office/Correios": {"name": "Correios", "icon": "maki-post", "imageURL": "https://graph.facebook.com/correiosoficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q3375004"}, "addTags": {"amenity": "post_office", "brand": "Correios", "brand:wikidata": "Q3375004", "brand:wikipedia": "en:Correios", "name": "Correios"}, "removeTags": {"amenity": "post_office", "brand": "Correios", "brand:wikidata": "Q3375004", "brand:wikipedia": "en:Correios", "name": "Correios"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Correo Argentino": {"name": "Correo Argentino", "icon": "maki-post", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCorreo%20arg%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q4036566"}, "addTags": {"amenity": "post_office", "brand": "Correo Argentino", "brand:wikidata": "Q4036566", "brand:wikipedia": "en:Correo Argentino", "name": "Correo Argentino"}, "removeTags": {"amenity": "post_office", "brand": "Correo Argentino", "brand:wikidata": "Q4036566", "brand:wikipedia": "en:Correo Argentino", "name": "Correo Argentino"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Correos de Chile": {"name": "Correos de Chile", "icon": "maki-post", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q5172893"}, "addTags": {"amenity": "post_office", "brand": "Correos de Chile", "brand:wikidata": "Q5172893", "brand:wikipedia": "en:Correos de Chile", "name": "Correos de Chile"}, "removeTags": {"amenity": "post_office", "brand": "Correos de Chile", "brand:wikidata": "Q5172893", "brand:wikipedia": "en:Correos de Chile", "name": "Correos de Chile"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Correos de Costa Rica": {"name": "Correos de Costa Rica", "icon": "maki-post", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q5172894"}, "addTags": {"amenity": "post_office", "brand": "Correos de Costa Rica", "brand:wikidata": "Q5172894", "brand:wikipedia": "en:Correos de Costa Rica", "name": "Correos de Costa Rica"}, "removeTags": {"amenity": "post_office", "brand": "Correos de Costa Rica", "brand:wikidata": "Q5172894", "brand:wikipedia": "en:Correos de Costa Rica", "name": "Correos de Costa Rica"}, "countryCodes": ["cr"], "matchScore": 2, "suggestion": true}, + "amenity/post_office/Correo Argentino": {"name": "Correo Argentino", "icon": "maki-post", "imageURL": "https://graph.facebook.com/CorreoOficialSA/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q4036566"}, "addTags": {"amenity": "post_office", "brand": "Correo Argentino", "brand:wikidata": "Q4036566", "brand:wikipedia": "en:Correo Argentino", "name": "Correo Argentino"}, "removeTags": {"amenity": "post_office", "brand": "Correo Argentino", "brand:wikidata": "Q4036566", "brand:wikipedia": "en:Correo Argentino", "name": "Correo Argentino"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, + "amenity/post_office/Correos de Chile": {"name": "Correos de Chile", "icon": "maki-post", "imageURL": "https://graph.facebook.com/correoschile/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q5172893"}, "addTags": {"amenity": "post_office", "brand": "Correos de Chile", "brand:wikidata": "Q5172893", "brand:wikipedia": "en:Correos de Chile", "name": "Correos de Chile"}, "removeTags": {"amenity": "post_office", "brand": "Correos de Chile", "brand:wikidata": "Q5172893", "brand:wikipedia": "en:Correos de Chile", "name": "Correos de Chile"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, + "amenity/post_office/Correos de Costa Rica": {"name": "Correos de Costa Rica", "icon": "maki-post", "imageURL": "https://graph.facebook.com/CorreosdeCostaRica/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q5172894"}, "addTags": {"amenity": "post_office", "brand": "Correos de Costa Rica", "brand:wikidata": "Q5172894", "brand:wikipedia": "en:Correos de Costa Rica", "name": "Correos de Costa Rica"}, "removeTags": {"amenity": "post_office", "brand": "Correos de Costa Rica", "brand:wikidata": "Q5172894", "brand:wikipedia": "en:Correos de Costa Rica", "name": "Correos de Costa Rica"}, "countryCodes": ["cr"], "matchScore": 2, "suggestion": true}, "amenity/post_office/DHL": {"name": "DHL", "icon": "maki-post", "imageURL": "https://graph.facebook.com/dhl/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q489815"}, "addTags": {"amenity": "post_office", "brand": "DHL", "brand:wikidata": "Q489815", "brand:wikipedia": "en:DHL Express", "name": "DHL", "operator": "DHL"}, "removeTags": {"amenity": "post_office", "brand": "DHL", "brand:wikidata": "Q489815", "brand:wikipedia": "en:DHL Express", "name": "DHL", "operator": "DHL"}, "matchScore": 2, "suggestion": true}, "amenity/post_office/DPD Paketshop": {"name": "DPD Paketshop", "icon": "maki-post", "imageURL": "https://graph.facebook.com/350375105088695/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q541030"}, "addTags": {"amenity": "post_office", "brand": "DPD Paketshop", "brand:wikidata": "Q541030", "brand:wikipedia": "en:DPDgroup", "name": "DPD Paketshop"}, "removeTags": {"amenity": "post_office", "brand": "DPD Paketshop", "brand:wikidata": "Q541030", "brand:wikipedia": "en:DPDgroup", "name": "DPD Paketshop"}, "matchScore": 2, "suggestion": true}, - "amenity/post_office/Deutsche Post": {"name": "Deutsche Post", "icon": "maki-post", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Deutsche%20Post%20DHL.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q157645"}, "addTags": {"amenity": "post_office", "brand": "Deutsche Post", "brand:wikidata": "Q157645", "brand:wikipedia": "en:Deutsche Post", "name": "Deutsche Post"}, "removeTags": {"amenity": "post_office", "brand": "Deutsche Post", "brand:wikidata": "Q157645", "brand:wikipedia": "en:Deutsche Post", "name": "Deutsche Post"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "amenity/post_office/Deutsche Post": {"name": "Deutsche Post", "icon": "maki-post", "imageURL": "https://graph.facebook.com/deutschepost/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q157645"}, "addTags": {"amenity": "post_office", "brand": "Deutsche Post", "brand:wikidata": "Q157645", "brand:wikipedia": "en:Deutsche Post", "name": "Deutsche Post"}, "removeTags": {"amenity": "post_office", "brand": "Deutsche Post", "brand:wikidata": "Q157645", "brand:wikipedia": "en:Deutsche Post", "name": "Deutsche Post"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "amenity/post_office/Fancourier": {"name": "Fancourier", "icon": "maki-post", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q12727984"}, "addTags": {"amenity": "post_office", "brand": "Fancourier", "brand:wikidata": "Q12727984", "brand:wikipedia": "ro:FAN Courier Express", "name": "Fancourier"}, "removeTags": {"amenity": "post_office", "brand": "Fancourier", "brand:wikidata": "Q12727984", "brand:wikipedia": "ro:FAN Courier Express", "name": "Fancourier"}, "countryCodes": ["ro"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/FedEx": {"name": "FedEx", "icon": "maki-post", "imageURL": "https://pbs.twimg.com/profile_images/1080508748810973184/XDOvWBz0_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q459477"}, "addTags": {"amenity": "post_office", "brand": "FedEx", "brand:wikidata": "Q459477", "brand:wikipedia": "en:FedEx", "name": "FedEx"}, "removeTags": {"amenity": "post_office", "brand": "FedEx", "brand:wikidata": "Q459477", "brand:wikipedia": "en:FedEx", "name": "FedEx"}, "matchScore": 2, "suggestion": true}, + "amenity/post_office/FedEx": {"name": "FedEx", "icon": "maki-post", "imageURL": "https://graph.facebook.com/FedEx/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q459477"}, "addTags": {"amenity": "post_office", "brand": "FedEx", "brand:wikidata": "Q459477", "brand:wikipedia": "en:FedEx", "name": "FedEx"}, "removeTags": {"amenity": "post_office", "brand": "FedEx", "brand:wikidata": "Q459477", "brand:wikipedia": "en:FedEx", "name": "FedEx"}, "matchScore": 2, "suggestion": true}, "amenity/post_office/Hermes Paketshop": {"name": "Hermes Paketshop", "icon": "maki-post", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q1613532"}, "addTags": {"amenity": "post_office", "brand": "Hermes Paketshop", "brand:wikidata": "Q1613532", "brand:wikipedia": "en:Hermes Group", "name": "Hermes Paketshop"}, "removeTags": {"amenity": "post_office", "brand": "Hermes Paketshop", "brand:wikidata": "Q1613532", "brand:wikipedia": "en:Hermes Group", "name": "Hermes Paketshop"}, "matchScore": 2, "suggestion": true}, "amenity/post_office/LBC": {"name": "LBC", "icon": "maki-post", "imageURL": "https://graph.facebook.com/LBCexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q17075584"}, "addTags": {"amenity": "post_office", "brand": "LBC", "brand:wikidata": "Q17075584", "brand:wikipedia": "en:LBC Express", "name": "LBC"}, "removeTags": {"amenity": "post_office", "brand": "LBC", "brand:wikidata": "Q17075584", "brand:wikipedia": "en:LBC Express", "name": "LBC"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, "amenity/post_office/La Poste": {"name": "La Poste", "icon": "maki-post", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLaurent%20Vincenti%20La%20Poste.JPG&width=100", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q373724"}, "addTags": {"amenity": "post_office", "brand": "La Poste", "brand:wikidata": "Q373724", "brand:wikipedia": "fr:La Poste (entreprise française)", "name": "La Poste"}, "removeTags": {"amenity": "post_office", "brand": "La Poste", "brand:wikidata": "Q373724", "brand:wikipedia": "fr:La Poste (entreprise française)", "name": "La Poste"}, "matchScore": 2, "suggestion": true}, - "amenity/post_office/MRW": {"name": "MRW", "icon": "maki-post", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q23767821"}, "addTags": {"amenity": "post_office", "brand": "MRW", "brand:wikidata": "Q23767821", "brand:wikipedia": "es:MRW", "name": "MRW"}, "removeTags": {"amenity": "post_office", "brand": "MRW", "brand:wikidata": "Q23767821", "brand:wikipedia": "es:MRW", "name": "MRW"}, "matchScore": 2, "suggestion": true}, + "amenity/post_office/MRW": {"name": "MRW", "icon": "maki-post", "imageURL": "https://graph.facebook.com/mrwespana/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q23767821"}, "addTags": {"amenity": "post_office", "brand": "MRW", "brand:wikidata": "Q23767821", "brand:wikipedia": "es:MRW", "name": "MRW"}, "removeTags": {"amenity": "post_office", "brand": "MRW", "brand:wikidata": "Q23767821", "brand:wikipedia": "es:MRW", "name": "MRW"}, "matchScore": 2, "suggestion": true}, "amenity/post_office/Oficina de Correos": {"name": "Oficina de Correos", "icon": "maki-post", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCorreos%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q776605"}, "addTags": {"amenity": "post_office", "brand": "Oficina de Correos", "brand:wikidata": "Q776605", "brand:wikipedia": "es:Correos (España)", "name": "Oficina de Correos"}, "removeTags": {"amenity": "post_office", "brand": "Oficina de Correos", "brand:wikidata": "Q776605", "brand:wikipedia": "es:Correos (España)", "name": "Oficina de Correos"}, "matchScore": 2, "suggestion": true}, - "amenity/post_office/Poczta Polska": {"name": "Poczta Polska", "icon": "maki-post", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPoczta%20Polska.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q168833"}, "addTags": {"amenity": "post_office", "brand": "Poczta Polska", "brand:wikidata": "Q168833", "brand:wikipedia": "pl:Poczta Polska", "name": "Poczta Polska"}, "removeTags": {"amenity": "post_office", "brand": "Poczta Polska", "brand:wikidata": "Q168833", "brand:wikipedia": "pl:Poczta Polska", "name": "Poczta Polska"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "amenity/post_office/Poczta Polska": {"name": "Poczta Polska", "icon": "maki-post", "imageURL": "https://graph.facebook.com/pocztapolska/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q168833"}, "addTags": {"amenity": "post_office", "brand": "Poczta Polska", "brand:wikidata": "Q168833", "brand:wikipedia": "pl:Poczta Polska", "name": "Poczta Polska"}, "removeTags": {"amenity": "post_office", "brand": "Poczta Polska", "brand:wikidata": "Q168833", "brand:wikipedia": "pl:Poczta Polska", "name": "Poczta Polska"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "amenity/post_office/PostalAnnex": {"name": "PostalAnnex", "icon": "maki-post", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q61960357"}, "addTags": {"amenity": "post_office", "brand": "PostalAnnex", "brand:wikidata": "Q61960357", "name": "PostalAnnex"}, "removeTags": {"amenity": "post_office", "brand": "PostalAnnex", "brand:wikidata": "Q61960357", "name": "PostalAnnex"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/post_office/Poste Italiane": {"name": "Poste Italiane", "icon": "maki-post", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPoste-Italiane-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q495026"}, "addTags": {"amenity": "post_office", "brand": "Poste Italiane", "brand:wikidata": "Q495026", "brand:wikipedia": "en:Poste italiane", "name": "Poste Italiane"}, "removeTags": {"amenity": "post_office", "brand": "Poste Italiane", "brand:wikidata": "Q495026", "brand:wikipedia": "en:Poste italiane", "name": "Poste Italiane"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Serpost": {"name": "Serpost", "icon": "maki-post", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q19521863"}, "addTags": {"amenity": "post_office", "brand": "Serpost", "brand:wikidata": "Q19521863", "brand:wikipedia": "en:Servicios Postales del Perú", "name": "Serpost"}, "removeTags": {"amenity": "post_office", "brand": "Serpost", "brand:wikidata": "Q19521863", "brand:wikipedia": "en:Servicios Postales del Perú", "name": "Serpost"}, "countryCodes": ["pe"], "matchScore": 2, "suggestion": true}, + "amenity/post_office/Serpost": {"name": "Serpost", "icon": "maki-post", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q19521863"}, "addTags": {"amenity": "post_office", "brand": "Serpost", "brand:wikidata": "Q19521863", "brand:wikipedia": "es:Servicios Postales del Perú", "name": "Serpost"}, "removeTags": {"amenity": "post_office", "brand": "Serpost", "brand:wikidata": "Q19521863", "brand:wikipedia": "es:Servicios Postales del Perú", "name": "Serpost"}, "countryCodes": ["pe"], "matchScore": 2, "suggestion": true}, "amenity/post_office/Slovenská pošta": {"name": "Slovenská pošta", "icon": "maki-post", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogoSlovakPost.gif&width=100", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q1191849"}, "addTags": {"amenity": "post_office", "brand": "Slovenská pošta", "brand:wikidata": "Q1191849", "brand:wikipedia": "en:Slovenská pošta", "name": "Slovenská pošta"}, "removeTags": {"amenity": "post_office", "brand": "Slovenská pošta", "brand:wikidata": "Q1191849", "brand:wikipedia": "en:Slovenská pošta", "name": "Slovenská pošta"}, "countryCodes": ["sk"], "matchScore": 2, "suggestion": true}, "amenity/post_office/The UPS Store": {"name": "The UPS Store", "icon": "maki-post", "imageURL": "https://pbs.twimg.com/profile_images/1080841709934780417/MTIJnZHk_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q7771029"}, "addTags": {"amenity": "post_office", "brand": "The UPS Store", "brand:wikidata": "Q7771029", "brand:wikipedia": "en:The UPS Store", "name": "The UPS Store"}, "removeTags": {"amenity": "post_office", "brand": "The UPS Store", "brand:wikidata": "Q7771029", "brand:wikipedia": "en:The UPS Store", "name": "The UPS Store"}, "matchScore": 2, "suggestion": true}, "amenity/post_office/US Post Office": {"name": "US Post Office", "icon": "maki-post", "imageURL": "https://graph.facebook.com/USPS/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q668687"}, "addTags": {"amenity": "post_office", "brand": "US Post Office", "brand:wikidata": "Q668687", "brand:wikipedia": "en:United States Postal Service", "name": "US Post Office", "operator": "USPS"}, "removeTags": {"amenity": "post_office", "brand": "US Post Office", "brand:wikidata": "Q668687", "brand:wikipedia": "en:United States Postal Service", "name": "US Post Office", "operator": "USPS"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/post_office/ΕΛΤΑ": {"name": "ΕΛΤΑ", "icon": "maki-post", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q1275135"}, "addTags": {"amenity": "post_office", "brand": "ΕΛΤΑ", "brand:wikidata": "Q1275135", "brand:wikipedia": "el:Ελληνικά Ταχυδρομεία", "name": "ΕΛΤΑ"}, "removeTags": {"amenity": "post_office", "brand": "ΕΛΤΑ", "brand:wikidata": "Q1275135", "brand:wikipedia": "el:Ελληνικά Ταχυδρομεία", "name": "ΕΛΤΑ"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Белпочта": {"name": "Белпочта", "icon": "maki-post", "imageURL": "https://pbs.twimg.com/profile_images/982167195567308800/SuBW3-NV_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q2662336"}, "addTags": {"amenity": "post_office", "brand": "Белпочта", "brand:wikidata": "Q2662336", "brand:wikipedia": "en:Belposhta", "name": "Белпочта"}, "removeTags": {"amenity": "post_office", "brand": "Белпочта", "brand:wikidata": "Q2662336", "brand:wikipedia": "en:Belposhta", "name": "Белпочта"}, "countryCodes": ["by"], "matchScore": 2, "suggestion": true}, + "amenity/post_office/Белпошта": {"name": "Белпошта", "icon": "maki-post", "imageURL": "https://graph.facebook.com/belpost.by/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q2662336"}, "addTags": {"amenity": "post_office", "brand": "Белпошта", "brand:be": "Белпошта", "brand:en": "Belposhta", "brand:ru": "Белпочта", "brand:wikidata": "Q2662336", "brand:wikipedia": "be:Белпошта", "name": "Белпошта", "name:be": "Белпошта", "name:en": "Belposhta", "name:ru": "Белпочта"}, "removeTags": {"amenity": "post_office", "brand": "Белпошта", "brand:be": "Белпошта", "brand:en": "Belposhta", "brand:ru": "Белпочта", "brand:wikidata": "Q2662336", "brand:wikipedia": "be:Белпошта", "name": "Белпошта", "name:be": "Белпошта", "name:en": "Belposhta", "name:ru": "Белпочта"}, "countryCodes": ["by"], "matchScore": 2, "suggestion": true}, "amenity/post_office/Казпочта": {"name": "Казпочта", "icon": "maki-post", "imageURL": "https://graph.facebook.com/Kazpost/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q746263"}, "addTags": {"amenity": "post_office", "brand": "Казпочта", "brand:wikidata": "Q746263", "brand:wikipedia": "ru:Казпочта", "name": "Казпочта"}, "removeTags": {"amenity": "post_office", "brand": "Казпочта", "brand:wikidata": "Q746263", "brand:wikipedia": "ru:Казпочта", "name": "Казпочта"}, "countryCodes": ["kz"], "matchScore": 2, "suggestion": true}, "amenity/post_office/Нова Пошта №1": {"name": "Нова Пошта №1", "icon": "maki-post", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FNova%20Poshta%202014%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q12133863"}, "addTags": {"amenity": "post_office", "brand": "Нова Пошта №1", "brand:wikidata": "Q12133863", "brand:wikipedia": "uk:Нова пошта", "name": "Нова Пошта №1"}, "removeTags": {"amenity": "post_office", "brand": "Нова Пошта №1", "brand:wikidata": "Q12133863", "brand:wikipedia": "uk:Нова пошта", "name": "Нова Пошта №1"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, "amenity/post_office/Почта России": {"name": "Почта России", "icon": "maki-post", "imageURL": "https://graph.facebook.com/ruspost/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q1502763"}, "addTags": {"amenity": "post_office", "brand": "Почта России", "brand:wikidata": "Q1502763", "brand:wikipedia": "ru:Почта России", "name": "Почта России"}, "removeTags": {"amenity": "post_office", "brand": "Почта России", "brand:wikidata": "Q1502763", "brand:wikipedia": "ru:Почта России", "name": "Почта России"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "amenity/post_office/СДЭК": {"name": "СДЭК", "icon": "maki-post", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q28665980"}, "addTags": {"amenity": "post_office", "brand": "СДЭК", "brand:wikidata": "Q28665980", "brand:wikipedia": "ru:СДЭК", "name": "СДЭК"}, "removeTags": {"amenity": "post_office", "brand": "СДЭК", "brand:wikidata": "Q28665980", "brand:wikipedia": "ru:СДЭК", "name": "СДЭК"}, "matchScore": 2, "suggestion": true}, "amenity/post_office/Укрпошта": {"name": "Укрпошта", "icon": "maki-post", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FUkrposhta.svg&width=100", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q2470783"}, "addTags": {"amenity": "post_office", "brand": "Укрпошта", "brand:wikidata": "Q2470783", "brand:wikipedia": "en:Ukrposhta", "name": "Укрпошта"}, "removeTags": {"amenity": "post_office", "brand": "Укрпошта", "brand:wikidata": "Q2470783", "brand:wikipedia": "en:Ukrposhta", "name": "Укрпошта"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, "amenity/post_office/中国邮政": {"name": "中国邮政", "icon": "maki-post", "geometry": ["point", "area"], "tags": {"amenity": "post_office", "brand:wikidata": "Q1066476"}, "addTags": {"amenity": "post_office", "brand": "中国邮政", "brand:en": "China Post", "brand:wikidata": "Q1066476", "brand:wikipedia": "en:China Post", "name": "中国邮政", "name:en": "China Post"}, "removeTags": {"amenity": "post_office", "brand": "中国邮政", "brand:en": "China Post", "brand:wikidata": "Q1066476", "brand:wikipedia": "en:China Post", "name": "中国邮政", "name:en": "China Post"}, "countryCodes": ["cn"], "matchScore": 2, "suggestion": true}, "amenity/public_bookcase/Little Free Library": {"name": "Little Free Library", "icon": "maki-library", "imageURL": "https://graph.facebook.com/LittleFreeLibrary/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "public_bookcase", "brand:wikidata": "Q6650101"}, "addTags": {"amenity": "public_bookcase", "brand": "Little Free Library", "brand:wikidata": "Q6650101", "brand:wikipedia": "en:Little Free Library", "name": "Little Free Library"}, "removeTags": {"amenity": "public_bookcase", "brand": "Little Free Library", "brand:wikidata": "Q6650101", "brand:wikipedia": "en:Little Free Library", "name": "Little Free Library"}, "matchScore": 2, "suggestion": true}, - "amenity/restaurant/100 Montaditos": {"name": "100 Montaditos", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/100MontaditosSpain/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q8355805"}, "addTags": {"amenity": "restaurant", "brand": "100 Montaditos", "brand:wikidata": "Q8355805", "brand:wikipedia": "en:Cervecería 100 Montaditos", "name": "100 Montaditos"}, "removeTags": {"amenity": "restaurant", "brand": "100 Montaditos", "brand:wikidata": "Q8355805", "brand:wikipedia": "en:Cervecería 100 Montaditos", "name": "100 Montaditos"}, "matchScore": 2, "suggestion": true}, + "amenity/restaurant/100 Montaditos": {"name": "100 Montaditos", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/100MontaditosSpain/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q8355805"}, "addTags": {"amenity": "restaurant", "brand": "100 Montaditos", "brand:wikidata": "Q8355805", "brand:wikipedia": "en:Cervecería 100 Montaditos", "cuisine": "sandwich", "name": "100 Montaditos"}, "removeTags": {"amenity": "restaurant", "brand": "100 Montaditos", "brand:wikidata": "Q8355805", "brand:wikipedia": "en:Cervecería 100 Montaditos", "cuisine": "sandwich", "name": "100 Montaditos"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/italian/ASK Italian": {"name": "ASK Italian", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/ASKItalian/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "italian", "brand:wikidata": "Q4807056"}, "addTags": {"amenity": "restaurant", "brand": "ASK Italian", "brand:wikidata": "Q4807056", "brand:wikipedia": "en:ASK Italian", "cuisine": "italian", "name": "ASK Italian"}, "removeTags": {"amenity": "restaurant", "brand": "ASK Italian", "brand:wikidata": "Q4807056", "brand:wikipedia": "en:ASK Italian", "cuisine": "italian", "name": "ASK Italian"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/american/Applebee's": {"name": "Applebee's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Applebeesmundoe/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q621532"}, "addTags": {"amenity": "restaurant", "brand": "Applebee's Neighborhood Grill & Bar", "brand:wikidata": "Q621532", "brand:wikipedia": "en:Applebee's", "cuisine": "american", "name": "Applebee's", "official_name": "Applebee's Neighborhood Grill & Bar"}, "removeTags": {"amenity": "restaurant", "brand": "Applebee's Neighborhood Grill & Bar", "brand:wikidata": "Q621532", "brand:wikipedia": "en:Applebee's", "cuisine": "american", "name": "Applebee's", "official_name": "Applebee's Neighborhood Grill & Bar"}, "reference": {"key": "cuisine", "value": "american"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/Autogrill": {"name": "Autogrill", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/AutogrillOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q786790"}, "addTags": {"amenity": "restaurant", "brand": "Autogrill", "brand:wikidata": "Q786790", "brand:wikipedia": "en:Autogrill", "name": "Autogrill"}, "removeTags": {"amenity": "restaurant", "brand": "Autogrill", "brand:wikidata": "Q786790", "brand:wikipedia": "en:Autogrill", "name": "Autogrill"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/american/BJ's": {"name": "BJ's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/BJsRestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q4835755"}, "addTags": {"amenity": "restaurant", "brand": "BJ's", "brand:wikidata": "Q4835755", "brand:wikipedia": "en:BJ's Restaurants", "cuisine": "american", "name": "BJ's", "official_name": "BJ's Restaurant & Brewhouse"}, "removeTags": {"amenity": "restaurant", "brand": "BJ's", "brand:wikidata": "Q4835755", "brand:wikipedia": "en:BJ's Restaurants", "cuisine": "american", "name": "BJ's", "official_name": "BJ's Restaurant & Brewhouse"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Bella Italia": {"name": "Bella Italia", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/bellaitalia.co.uk/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q4883362"}, "addTags": {"amenity": "restaurant", "brand": "Bella Italia", "brand:wikidata": "Q4883362", "brand:wikipedia": "en:Bella Italia", "name": "Bella Italia"}, "removeTags": {"amenity": "restaurant", "brand": "Bella Italia", "brand:wikidata": "Q4883362", "brand:wikipedia": "en:Bella Italia", "name": "Bella Italia"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "amenity/restaurant/italian/Bella Italia": {"name": "Bella Italia", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/bellaitalia.co.uk/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "italian", "brand:wikidata": "Q4883362"}, "addTags": {"amenity": "restaurant", "brand": "Bella Italia", "brand:wikidata": "Q4883362", "brand:wikipedia": "en:Bella Italia", "cuisine": "italian", "name": "Bella Italia"}, "removeTags": {"amenity": "restaurant", "brand": "Bella Italia", "brand:wikidata": "Q4883362", "brand:wikipedia": "en:Bella Italia", "cuisine": "italian", "name": "Bella Italia"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/Big Boy": {"name": "Big Boy", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/bigboyrestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q4386779"}, "addTags": {"amenity": "restaurant", "brand": "Big Boy", "brand:wikidata": "Q4386779", "brand:wikipedia": "en:Big Boy Restaurants", "cuisine": "burger", "name": "Big Boy", "official_name": "Big Boy Restaurant & Bakery"}, "removeTags": {"amenity": "restaurant", "brand": "Big Boy", "brand:wikidata": "Q4386779", "brand:wikipedia": "en:Big Boy Restaurants", "cuisine": "burger", "name": "Big Boy", "official_name": "Big Boy Restaurant & Bakery"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/american/Black Bear Diner": {"name": "Black Bear Diner", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/BlackBearDiner/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q4920343"}, "addTags": {"amenity": "restaurant", "brand": "Black Bear Diner", "brand:wikidata": "Q4920343", "brand:wikipedia": "en:Black Bear Diner", "cuisine": "american", "name": "Black Bear Diner"}, "removeTags": {"amenity": "restaurant", "brand": "Black Bear Diner", "brand:wikidata": "Q4920343", "brand:wikipedia": "en:Black Bear Diner", "cuisine": "american", "name": "Black Bear Diner"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/pizza/Blaze Pizza": {"name": "Blaze Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/BlazePizza/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "pizza", "brand:wikidata": "Q23016666"}, "addTags": {"amenity": "restaurant", "brand": "Blaze Pizza", "brand:wikidata": "Q23016666", "brand:wikipedia": "en:Blaze Pizza", "cuisine": "pizza", "name": "Blaze Pizza"}, "removeTags": {"amenity": "restaurant", "brand": "Blaze Pizza", "brand:wikidata": "Q23016666", "brand:wikipedia": "en:Blaze Pizza", "cuisine": "pizza", "name": "Blaze Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["bh", "ca", "kw", "sa", "us"], "matchScore": 2, "suggestion": true}, @@ -2323,12 +2430,14 @@ "amenity/restaurant/Dickey's Barbecue Pit": {"name": "Dickey's Barbecue Pit", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/dickeysbarbecuepit/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q19880747"}, "addTags": {"amenity": "restaurant", "brand": "Dickey's Barbecue Pit", "brand:wikidata": "Q19880747", "brand:wikipedia": "en:Dickey's Barbecue Pit", "cuisine": "barbecue", "name": "Dickey's Barbecue Pit"}, "removeTags": {"amenity": "restaurant", "brand": "Dickey's Barbecue Pit", "brand:wikidata": "Q19880747", "brand:wikipedia": "en:Dickey's Barbecue Pit", "cuisine": "barbecue", "name": "Dickey's Barbecue Pit"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/italian/East Side Mario's": {"name": "East Side Mario's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/eastsidemarios/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "italian", "brand:wikidata": "Q5329375"}, "addTags": {"amenity": "restaurant", "brand": "East Side Mario's", "brand:wikidata": "Q5329375", "brand:wikipedia": "en:East Side Mario's", "cuisine": "italian", "name": "East Side Mario's"}, "removeTags": {"amenity": "restaurant", "brand": "East Side Mario's", "brand:wikidata": "Q5329375", "brand:wikipedia": "en:East Side Mario's", "cuisine": "italian", "name": "East Side Mario's"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/Famous Dave's": {"name": "Famous Dave's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/famousdaves/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q5433448"}, "addTags": {"amenity": "restaurant", "brand": "Famous Dave's", "brand:wikidata": "Q5433448", "brand:wikipedia": "en:Famous Dave's", "cuisine": "barbecue", "name": "Famous Dave's"}, "removeTags": {"amenity": "restaurant", "brand": "Famous Dave's", "brand:wikidata": "Q5433448", "brand:wikipedia": "en:Famous Dave's", "cuisine": "barbecue", "name": "Famous Dave's"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/restaurant/american/First Watch": {"name": "First Watch", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q5454064"}, "addTags": {"amenity": "restaurant", "brand": "First Watch", "brand:wikidata": "Q5454064", "brand:wikipedia": "en:First Watch (restaurant chain)", "cuisine": "american", "name": "First Watch"}, "removeTags": {"amenity": "restaurant", "brand": "First Watch", "brand:wikidata": "Q5454064", "brand:wikipedia": "en:First Watch (restaurant chain)", "cuisine": "american", "name": "First Watch"}, "reference": {"key": "cuisine", "value": "american"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/french/Flunch": {"name": "Flunch", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/flunch/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "french", "brand:wikidata": "Q629326"}, "addTags": {"amenity": "restaurant", "brand": "Flunch", "brand:wikidata": "Q629326", "brand:wikipedia": "en:Flunch", "cuisine": "french", "name": "Flunch"}, "removeTags": {"amenity": "restaurant", "brand": "Flunch", "brand:wikidata": "Q629326", "brand:wikipedia": "en:Flunch", "cuisine": "french", "name": "Flunch"}, "reference": {"key": "cuisine", "value": "french"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/american/Foster's Hollywood": {"name": "Foster's Hollywood", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/fostershollywood/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q5864366"}, "addTags": {"amenity": "restaurant", "brand": "Foster's Hollywood", "brand:wikidata": "Q5864366", "brand:wikipedia": "en:Foster's Hollywood", "cuisine": "american", "name": "Foster's Hollywood"}, "removeTags": {"amenity": "restaurant", "brand": "Foster's Hollywood", "brand:wikidata": "Q5864366", "brand:wikipedia": "en:Foster's Hollywood", "cuisine": "american", "name": "Foster's Hollywood"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/italian/Frankie & Benny's": {"name": "Frankie & Benny's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/frankiebennys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "italian", "brand:wikidata": "Q5490892"}, "addTags": {"amenity": "restaurant", "brand": "Frankie & Benny's", "brand:wikidata": "Q5490892", "brand:wikipedia": "en:Frankie & Benny's", "cuisine": "italian", "name": "Frankie & Benny's"}, "removeTags": {"amenity": "restaurant", "brand": "Frankie & Benny's", "brand:wikidata": "Q5490892", "brand:wikipedia": "en:Frankie & Benny's", "cuisine": "italian", "name": "Frankie & Benny's"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/Freshii": {"name": "Freshii", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/freshii/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q5503051"}, "addTags": {"amenity": "restaurant", "brand": "Freshii", "brand:wikidata": "Q5503051", "brand:wikipedia": "en:Freshii", "cuisine": "salad", "name": "Freshii"}, "removeTags": {"amenity": "restaurant", "brand": "Freshii", "brand:wikidata": "Q5503051", "brand:wikipedia": "en:Freshii", "cuisine": "salad", "name": "Freshii"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/american/Friendly's": {"name": "Friendly's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/friendlys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q1464513"}, "addTags": {"amenity": "restaurant", "brand": "Friendly's", "brand:wikidata": "Q1464513", "brand:wikipedia": "en:Friendly's", "cuisine": "american", "name": "Friendly's"}, "removeTags": {"amenity": "restaurant", "brand": "Friendly's", "brand:wikidata": "Q1464513", "brand:wikipedia": "en:Friendly's", "cuisine": "american", "name": "Friendly's"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/Fuddruckers": {"name": "Fuddruckers", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/fuddruckers/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q5507056"}, "addTags": {"amenity": "restaurant", "brand": "Fuddruckers", "brand:wikidata": "Q5507056", "brand:wikipedia": "en:Fuddruckers", "cuisine": "burger", "name": "Fuddruckers"}, "removeTags": {"amenity": "restaurant", "brand": "Fuddruckers", "brand:wikidata": "Q5507056", "brand:wikipedia": "en:Fuddruckers", "cuisine": "burger", "name": "Fuddruckers"}, "matchScore": 2, "suggestion": true}, + "amenity/restaurant/pizza/Godfather's Pizza": {"name": "Godfather's Pizza", "icon": "maki-restaurant-pizza", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "pizza", "brand:wikidata": "Q5576353"}, "addTags": {"amenity": "restaurant", "brand": "Godfather's Pizza", "brand:wikidata": "Q5576353", "brand:wikipedia": "en:Godfather's Pizza", "cuisine": "pizza", "name": "Godfather's Pizza"}, "removeTags": {"amenity": "restaurant", "brand": "Godfather's Pizza", "brand:wikidata": "Q5576353", "brand:wikipedia": "en:Godfather's Pizza", "cuisine": "pizza", "name": "Godfather's Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/american/Golden Corral": {"name": "Golden Corral", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/goldencorral/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q4039560"}, "addTags": {"amenity": "restaurant", "brand": "Golden Corral", "brand:wikidata": "Q4039560", "brand:wikipedia": "en:Golden Corral", "cuisine": "american", "name": "Golden Corral"}, "removeTags": {"amenity": "restaurant", "brand": "Golden Corral", "brand:wikidata": "Q4039560", "brand:wikipedia": "en:Golden Corral", "cuisine": "american", "name": "Golden Corral"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/Gourmet Burger Kitchen": {"name": "Gourmet Burger Kitchen", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/gourmetburgerkitchen/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q5588445"}, "addTags": {"amenity": "restaurant", "brand": "Gourmet Burger Kitchen", "brand:wikidata": "Q5588445", "brand:wikipedia": "en:Gourmet Burger Kitchen", "cuisine": "burger", "name": "Gourmet Burger Kitchen"}, "removeTags": {"amenity": "restaurant", "brand": "Gourmet Burger Kitchen", "brand:wikidata": "Q5588445", "brand:wikipedia": "en:Gourmet Burger Kitchen", "cuisine": "burger", "name": "Gourmet Burger Kitchen"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/american/Hard Rock Cafe": {"name": "Hard Rock Cafe", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/hardrock/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q918151"}, "addTags": {"amenity": "restaurant", "brand": "Hard Rock Cafe", "brand:wikidata": "Q918151", "brand:wikipedia": "en:Hard Rock Cafe", "cuisine": "american", "name": "Hard Rock Cafe"}, "removeTags": {"amenity": "restaurant", "brand": "Hard Rock Cafe", "brand:wikidata": "Q918151", "brand:wikipedia": "en:Hard Rock Cafe", "cuisine": "american", "name": "Hard Rock Cafe"}, "reference": {"key": "cuisine", "value": "american"}, "matchScore": 2, "suggestion": true}, @@ -2336,13 +2445,13 @@ "amenity/restaurant/Hippopotamus": {"name": "Hippopotamus", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Hippopotamus/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q3136174"}, "addTags": {"amenity": "restaurant", "brand": "Hippopotamus", "brand:wikidata": "Q3136174", "brand:wikipedia": "fr:Hippopotamus (restaurant)", "cuisine": "steak_house", "name": "Hippopotamus"}, "removeTags": {"amenity": "restaurant", "brand": "Hippopotamus", "brand:wikidata": "Q3136174", "brand:wikipedia": "fr:Hippopotamus (restaurant)", "cuisine": "steak_house", "name": "Hippopotamus"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/Hooters": {"name": "Hooters", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/hooters/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q1025921"}, "addTags": {"amenity": "restaurant", "brand": "Hooters", "brand:wikidata": "Q1025921", "brand:wikipedia": "en:Hooters", "cuisine": "burger", "name": "Hooters"}, "removeTags": {"amenity": "restaurant", "brand": "Hooters", "brand:wikidata": "Q1025921", "brand:wikipedia": "en:Hooters", "cuisine": "burger", "name": "Hooters"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/american/Huddle House": {"name": "Huddle House", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/HuddleHouse/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q5928324"}, "addTags": {"amenity": "restaurant", "brand": "Huddle House", "brand:wikidata": "Q5928324", "brand:wikipedia": "en:Huddle House", "cuisine": "american", "name": "Huddle House"}, "removeTags": {"amenity": "restaurant", "brand": "Huddle House", "brand:wikidata": "Q5928324", "brand:wikipedia": "en:Huddle House", "cuisine": "american", "name": "Huddle House"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/IHOP": {"name": "IHOP", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/IHOP/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q1185675"}, "addTags": {"amenity": "restaurant", "brand": "IHOP", "brand:wikidata": "Q1185675", "brand:wikipedia": "en:IHOP", "cuisine": "pancake", "name": "IHOP"}, "removeTags": {"amenity": "restaurant", "brand": "IHOP", "brand:wikidata": "Q1185675", "brand:wikipedia": "en:IHOP", "cuisine": "pancake", "name": "IHOP"}, "matchScore": 2, "suggestion": true}, + "amenity/restaurant/IHOP": {"name": "IHOP", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/IHOP/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q1185675"}, "addTags": {"amenity": "restaurant", "brand": "IHOP", "brand:wikidata": "Q1185675", "brand:wikipedia": "en:IHOP", "cuisine": "breakfast;pancake", "name": "IHOP"}, "removeTags": {"amenity": "restaurant", "brand": "IHOP", "brand:wikidata": "Q1185675", "brand:wikipedia": "en:IHOP", "cuisine": "breakfast;pancake", "name": "IHOP"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/american/IL Патио": {"name": "IL Патио", "icon": "maki-restaurant", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRosInter.png&width=100", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q4397763"}, "addTags": {"amenity": "restaurant", "brand": "IL Патио", "brand:wikidata": "Q4397763", "brand:wikipedia": "en:Росинтер", "cuisine": "american", "name": "IL Патио"}, "removeTags": {"amenity": "restaurant", "brand": "IL Патио", "brand:wikidata": "Q4397763", "brand:wikipedia": "en:Росинтер", "cuisine": "american", "name": "IL Патио"}, "reference": {"key": "cuisine", "value": "american"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/Jason's Deli": {"name": "Jason's Deli", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/JasonsDeli/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q16997641"}, "addTags": {"amenity": "restaurant", "brand": "Jason's Deli", "brand:wikidata": "Q16997641", "brand:wikipedia": "en:Jason's Deli", "cuisine": "sandwich", "name": "Jason's Deli"}, "removeTags": {"amenity": "restaurant", "brand": "Jason's Deli", "brand:wikidata": "Q16997641", "brand:wikipedia": "en:Jason's Deli", "cuisine": "sandwich", "name": "Jason's Deli"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/pizza/Jet's Pizza": {"name": "Jet's Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/JetsPizza/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "pizza", "brand:wikidata": "Q16997713"}, "addTags": {"amenity": "restaurant", "brand": "Jet's Pizza", "brand:wikidata": "Q16997713", "brand:wikipedia": "en:Jet's Pizza", "cuisine": "pizza", "name": "Jet's Pizza"}, "removeTags": {"amenity": "restaurant", "brand": "Jet's Pizza", "brand:wikidata": "Q16997713", "brand:wikipedia": "en:Jet's Pizza", "cuisine": "pizza", "name": "Jet's Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/seafood/Joe's Crab Shack": {"name": "Joe's Crab Shack", "icon": "maki-restaurant-seafood", "imageURL": "https://graph.facebook.com/joescrabshack/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "seafood", "brand:wikidata": "Q6208210"}, "addTags": {"amenity": "restaurant", "brand": "Joe's Crab Shack", "brand:wikidata": "Q6208210", "brand:wikipedia": "en:Joe's Crab Shack", "cuisine": "seafood", "name": "Joe's Crab Shack"}, "removeTags": {"amenity": "restaurant", "brand": "Joe's Crab Shack", "brand:wikidata": "Q6208210", "brand:wikipedia": "en:Joe's Crab Shack", "cuisine": "seafood", "name": "Joe's Crab Shack"}, "reference": {"key": "cuisine", "value": "seafood"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/italian/Johnny Carino’s": {"name": "Johnny Carino’s", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/carinositalian/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "italian", "brand:wikidata": "Q5039637"}, "addTags": {"amenity": "restaurant", "brand": "Johnny Carino’s", "brand:wikidata": "Q5039637", "brand:wikipedia": "en:Carino's Italian", "cuisine": "italian", "name": "Johnny Carino’s"}, "removeTags": {"amenity": "restaurant", "brand": "Johnny Carino’s", "brand:wikidata": "Q5039637", "brand:wikipedia": "en:Carino's Italian", "cuisine": "italian", "name": "Johnny Carino’s"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Johnny Rockets": {"name": "Johnny Rockets", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/johnnyrockets/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q1051593"}, "addTags": {"amenity": "restaurant", "brand": "Johnny Rockets", "brand:wikidata": "Q1051593", "brand:wikipedia": "en:Johnny Rockets", "name": "Johnny Rockets"}, "removeTags": {"amenity": "restaurant", "brand": "Johnny Rockets", "brand:wikidata": "Q1051593", "brand:wikipedia": "en:Johnny Rockets", "name": "Johnny Rockets"}, "matchScore": 2, "suggestion": true}, + "amenity/restaurant/Johnny Rockets": {"name": "Johnny Rockets", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/johnnyrockets/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q1051593"}, "addTags": {"amenity": "restaurant", "brand": "Johnny Rockets", "brand:wikidata": "Q1051593", "brand:wikipedia": "en:Johnny Rockets", "cuisine": "burger", "name": "Johnny Rockets"}, "removeTags": {"amenity": "restaurant", "brand": "Johnny Rockets", "brand:wikidata": "Q1051593", "brand:wikipedia": "en:Johnny Rockets", "cuisine": "burger", "name": "Johnny Rockets"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/american/Kelsey's": {"name": "Kelsey's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/KelseysRestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q6386459"}, "addTags": {"amenity": "restaurant", "brand": "Kelsey's", "brand:wikidata": "Q6386459", "brand:wikipedia": "en:Kelseys Original Roadhouse", "cuisine": "american", "name": "Kelsey's"}, "removeTags": {"amenity": "restaurant", "brand": "Kelsey's", "brand:wikidata": "Q6386459", "brand:wikipedia": "en:Kelseys Original Roadhouse", "cuisine": "american", "name": "Kelsey's"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/Kudu": {"name": "Kudu", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/KuduRestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q6441777"}, "addTags": {"amenity": "restaurant", "brand": "Kudu", "brand:wikidata": "Q6441777", "brand:wikipedia": "en:Kudu (restaurant)", "cuisine": "sandwich", "name": "Kudu"}, "removeTags": {"amenity": "restaurant", "brand": "Kudu", "brand:wikidata": "Q6441777", "brand:wikipedia": "en:Kudu (restaurant)", "cuisine": "sandwich", "name": "Kudu"}, "countryCodes": ["sa"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/american/Logan's Roadhouse": {"name": "Logan's Roadhouse", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Logans.Roadhouse/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q6666872"}, "addTags": {"amenity": "restaurant", "brand": "Logan's Roadhouse", "brand:wikidata": "Q6666872", "brand:wikipedia": "en:Logan's Roadhouse", "cuisine": "american", "name": "Logan's Roadhouse"}, "removeTags": {"amenity": "restaurant", "brand": "Logan's Roadhouse", "brand:wikidata": "Q6666872", "brand:wikipedia": "en:Logan's Roadhouse", "cuisine": "american", "name": "Logan's Roadhouse"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, @@ -2384,12 +2493,12 @@ "amenity/restaurant/pizza/Shakey's": {"name": "Shakey's", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/shakeyspizzaparlorusa/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "pizza", "brand:wikidata": "Q6134929"}, "addTags": {"amenity": "restaurant", "brand": "Shakey's", "brand:wikidata": "Q6134929", "brand:wikipedia": "en:Shakey's Pizza", "cuisine": "pizza", "name": "Shakey's"}, "removeTags": {"amenity": "restaurant", "brand": "Shakey's", "brand:wikidata": "Q6134929", "brand:wikipedia": "en:Shakey's Pizza", "cuisine": "pizza", "name": "Shakey's"}, "reference": {"key": "cuisine", "value": "pizza"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/american/Shari's": {"name": "Shari's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/SharisPies/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q7489612"}, "addTags": {"amenity": "restaurant", "brand": "Shari's", "brand:wikidata": "Q7489612", "brand:wikipedia": "en:Shari's Cafe & Pies", "cuisine": "american", "name": "Shari's"}, "removeTags": {"amenity": "restaurant", "brand": "Shari's", "brand:wikidata": "Q7489612", "brand:wikipedia": "en:Shari's Cafe & Pies", "cuisine": "american", "name": "Shari's"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/american/Shoney's": {"name": "Shoney's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/shoneys/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q7500392"}, "addTags": {"amenity": "restaurant", "brand": "Shoney's", "brand:wikidata": "Q7500392", "brand:wikipedia": "en:Shoney's", "cuisine": "american", "name": "Shoney's"}, "removeTags": {"amenity": "restaurant", "brand": "Shoney's", "brand:wikidata": "Q7500392", "brand:wikipedia": "en:Shoney's", "cuisine": "american", "name": "Shoney's"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Sizzler": {"name": "Sizzler", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/sizzler/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q1848822"}, "addTags": {"amenity": "restaurant", "brand": "Sizzler", "brand:wikidata": "Q1848822", "brand:wikipedia": "en:Sizzler", "name": "Sizzler"}, "removeTags": {"amenity": "restaurant", "brand": "Sizzler", "brand:wikidata": "Q1848822", "brand:wikipedia": "en:Sizzler", "name": "Sizzler"}, "matchScore": 2, "suggestion": true}, + "amenity/restaurant/Sizzler": {"name": "Sizzler", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/sizzler/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q1848822"}, "addTags": {"amenity": "restaurant", "brand": "Sizzler", "brand:wikidata": "Q1848822", "brand:wikipedia": "en:Sizzler", "cuisine": "steak_house", "name": "Sizzler"}, "removeTags": {"amenity": "restaurant", "brand": "Sizzler", "brand:wikidata": "Q1848822", "brand:wikipedia": "en:Sizzler", "cuisine": "steak_house", "name": "Sizzler"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/american/Skyline Chili": {"name": "Skyline Chili", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/SkylineChili/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q151224"}, "addTags": {"amenity": "restaurant", "brand": "Skyline Chili", "brand:wikidata": "Q151224", "brand:wikipedia": "en:Skyline Chili", "cuisine": "american", "name": "Skyline Chili"}, "removeTags": {"amenity": "restaurant", "brand": "Skyline Chili", "brand:wikidata": "Q151224", "brand:wikipedia": "en:Skyline Chili", "cuisine": "american", "name": "Skyline Chili"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/Smitty's": {"name": "Smitty's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/SmittysRestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q7545728"}, "addTags": {"amenity": "restaurant", "brand": "Smitty's", "brand:wikidata": "Q7545728", "brand:wikipedia": "en:Smitty's", "cuisine": "pancake", "name": "Smitty's"}, "removeTags": {"amenity": "restaurant", "brand": "Smitty's", "brand:wikidata": "Q7545728", "brand:wikipedia": "en:Smitty's", "cuisine": "pancake", "name": "Smitty's"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/Spur": {"name": "Spur", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/SpurSteakRanches/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q7581546"}, "addTags": {"amenity": "restaurant", "brand": "Spur", "brand:wikidata": "Q7581546", "brand:wikipedia": "en:Spur Steak Ranches", "cuisine": "steak_house", "name": "Spur"}, "removeTags": {"amenity": "restaurant", "brand": "Spur", "brand:wikidata": "Q7581546", "brand:wikipedia": "en:Spur Steak Ranches", "cuisine": "steak_house", "name": "Spur"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/Steak 'n Shake": {"name": "Steak 'n Shake", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/steaknshake/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q7605233"}, "addTags": {"amenity": "restaurant", "brand": "Steak 'n Shake", "brand:wikidata": "Q7605233", "brand:wikipedia": "en:Steak 'n Shake", "cuisine": "burger", "name": "Steak 'n Shake"}, "removeTags": {"amenity": "restaurant", "brand": "Steak 'n Shake", "brand:wikidata": "Q7605233", "brand:wikipedia": "en:Steak 'n Shake", "cuisine": "burger", "name": "Steak 'n Shake"}, "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Sunset Grill": {"name": "Sunset Grill", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/SunsetGrillBreakfast/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q62112489"}, "addTags": {"amenity": "restaurant", "brand": "Sunset Grill", "brand:wikidata": "Q62112489", "brand:wikipedia": "en:Sunset Grill (Canadian restaurant chain)", "name": "Sunset Grill"}, "removeTags": {"amenity": "restaurant", "brand": "Sunset Grill", "brand:wikidata": "Q62112489", "brand:wikipedia": "en:Sunset Grill (Canadian restaurant chain)", "name": "Sunset Grill"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, + "amenity/restaurant/american/Sunset Grill": {"name": "Sunset Grill", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/SunsetGrillBreakfast/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q62112489"}, "addTags": {"amenity": "restaurant", "brand": "Sunset Grill", "brand:wikidata": "Q62112489", "brand:wikipedia": "en:Sunset Grill (Canadian restaurant chain)", "cuisine": "american", "name": "Sunset Grill"}, "removeTags": {"amenity": "restaurant", "brand": "Sunset Grill", "brand:wikidata": "Q62112489", "brand:wikipedia": "en:Sunset Grill (Canadian restaurant chain)", "cuisine": "american", "name": "Sunset Grill"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/Swiss Chalet": {"name": "Swiss Chalet", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/SwissChalet/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q2372909"}, "addTags": {"amenity": "restaurant", "brand": "Swiss Chalet", "brand:wikidata": "Q2372909", "brand:wikipedia": "en:Swiss Chalet", "cuisine": "chicken", "name": "Swiss Chalet"}, "removeTags": {"amenity": "restaurant", "brand": "Swiss Chalet", "brand:wikidata": "Q2372909", "brand:wikipedia": "en:Swiss Chalet", "cuisine": "chicken", "name": "Swiss Chalet"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/american/TGI Friday's": {"name": "TGI Friday's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/TGIFridays/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q1524184"}, "addTags": {"amenity": "restaurant", "brand": "TGI Friday's", "brand:wikidata": "Q1524184", "brand:wikipedia": "en:TGI Fridays", "cuisine": "american", "name": "TGI Friday's"}, "removeTags": {"amenity": "restaurant", "brand": "TGI Friday's", "brand:wikidata": "Q1524184", "brand:wikipedia": "en:TGI Fridays", "cuisine": "american", "name": "TGI Friday's"}, "reference": {"key": "cuisine", "value": "american"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/Texas Roadhouse": {"name": "Texas Roadhouse", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/texasroadhouse/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q7707945"}, "addTags": {"amenity": "restaurant", "brand": "Texas Roadhouse", "brand:wikidata": "Q7707945", "brand:wikipedia": "en:Texas Roadhouse", "cuisine": "steak_house", "name": "Texas Roadhouse"}, "removeTags": {"amenity": "restaurant", "brand": "Texas Roadhouse", "brand:wikidata": "Q7707945", "brand:wikipedia": "en:Texas Roadhouse", "cuisine": "steak_house", "name": "Texas Roadhouse"}, "matchScore": 2, "suggestion": true}, @@ -2402,22 +2511,25 @@ "amenity/restaurant/italian/Vapiano": {"name": "Vapiano", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Vapiano/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "italian", "brand:wikidata": "Q506252"}, "addTags": {"amenity": "restaurant", "brand": "Vapiano", "brand:wikidata": "Q506252", "brand:wikipedia": "en:Vapiano", "cuisine": "italian", "name": "Vapiano"}, "removeTags": {"amenity": "restaurant", "brand": "Vapiano", "brand:wikidata": "Q506252", "brand:wikipedia": "en:Vapiano", "cuisine": "italian", "name": "Vapiano"}, "reference": {"key": "cuisine", "value": "italian"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/american/Village Inn": {"name": "Village Inn", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/villageinnrestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q7930659"}, "addTags": {"amenity": "restaurant", "brand": "Village Inn", "brand:wikidata": "Q7930659", "brand:wikipedia": "en:Village Inn", "cuisine": "american", "name": "Village Inn"}, "removeTags": {"amenity": "restaurant", "brand": "Village Inn", "brand:wikidata": "Q7930659", "brand:wikipedia": "en:Village Inn", "cuisine": "american", "name": "Village Inn"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/Vips": {"name": "Vips", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/ivips/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q12599540"}, "addTags": {"amenity": "restaurant", "brand": "Vips", "brand:wikidata": "Q12599540", "brand:wikipedia": "en:VIPS (restaurant)", "name": "Vips"}, "removeTags": {"amenity": "restaurant", "brand": "Vips", "brand:wikidata": "Q12599540", "brand:wikipedia": "en:VIPS (restaurant)", "name": "Vips"}, "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Waffle House": {"name": "Waffle House", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/WaffleHouse/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q1701206"}, "addTags": {"amenity": "restaurant", "brand": "Waffle House", "brand:wikidata": "Q1701206", "brand:wikipedia": "en:Waffle House", "cuisine": "american", "name": "Waffle House"}, "removeTags": {"amenity": "restaurant", "brand": "Waffle House", "brand:wikidata": "Q1701206", "brand:wikipedia": "en:Waffle House", "cuisine": "american", "name": "Waffle House"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/restaurant/american/Waffle House": {"name": "Waffle House", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/WaffleHouse/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "american", "brand:wikidata": "Q1701206"}, "addTags": {"amenity": "restaurant", "brand": "Waffle House", "brand:wikidata": "Q1701206", "brand:wikipedia": "en:Waffle House", "cuisine": "american", "name": "Waffle House", "opening_hours": "24/7"}, "removeTags": {"amenity": "restaurant", "brand": "Waffle House", "brand:wikidata": "Q1701206", "brand:wikipedia": "en:Waffle House", "cuisine": "american", "name": "Waffle House", "opening_hours": "24/7"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/asian/Wagamama": {"name": "Wagamama", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/wagamama.spain/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "asian", "brand:wikidata": "Q503715"}, "addTags": {"amenity": "restaurant", "brand": "Wagamama", "brand:wikidata": "Q503715", "brand:wikipedia": "en:Wagamama", "cuisine": "asian", "name": "Wagamama"}, "removeTags": {"amenity": "restaurant", "brand": "Wagamama", "brand:wikidata": "Q503715", "brand:wikipedia": "en:Wagamama", "cuisine": "asian", "name": "Wagamama"}, "reference": {"key": "cuisine", "value": "asian"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/japanese/Wasabi": {"name": "Wasabi", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/WasabiUK/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "japanese", "brand:wikidata": "Q23891278"}, "addTags": {"amenity": "restaurant", "brand": "Wasabi", "brand:wikidata": "Q23891278", "brand:wikipedia": "en:Wasabi (restaurant)", "cuisine": "japanese", "name": "Wasabi"}, "removeTags": {"amenity": "restaurant", "brand": "Wasabi", "brand:wikidata": "Q23891278", "brand:wikipedia": "en:Wasabi (restaurant)", "cuisine": "japanese", "name": "Wasabi"}, "reference": {"key": "cuisine", "value": "japanese"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/White Spot": {"name": "White Spot", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/whitespot/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q7995414"}, "addTags": {"amenity": "restaurant", "brand": "White Spot", "brand:wikidata": "Q7995414", "brand:wikipedia": "en:White Spot", "cuisine": "burger", "name": "White Spot"}, "removeTags": {"amenity": "restaurant", "brand": "White Spot", "brand:wikidata": "Q7995414", "brand:wikipedia": "en:White Spot", "cuisine": "burger", "name": "White Spot"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/Wingstop": {"name": "Wingstop", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Wingstop/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q8025339"}, "addTags": {"amenity": "restaurant", "brand": "Wingstop", "brand:wikidata": "Q8025339", "brand:wikipedia": "en:Wingstop", "cuisine": "wings", "name": "Wingstop"}, "removeTags": {"amenity": "restaurant", "brand": "Wingstop", "brand:wikidata": "Q8025339", "brand:wikipedia": "en:Wingstop", "cuisine": "wings", "name": "Wingstop"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/sushi/YO! Sushi": {"name": "YO! Sushi", "icon": "fas-fish", "imageURL": "https://graph.facebook.com/YOSushi/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "sushi", "brand:wikidata": "Q3105441"}, "addTags": {"amenity": "restaurant", "brand": "YO! Sushi", "brand:wikidata": "Q3105441", "brand:wikipedia": "en:YO! Sushi", "cuisine": "sushi", "name": "YO! Sushi"}, "removeTags": {"amenity": "restaurant", "brand": "YO! Sushi", "brand:wikidata": "Q3105441", "brand:wikipedia": "en:YO! Sushi", "cuisine": "sushi", "name": "YO! Sushi"}, "reference": {"key": "cuisine", "value": "sushi"}, "matchScore": 2, "suggestion": true}, "amenity/restaurant/italian/Zizzi": {"name": "Zizzi", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/wearezizzi/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "italian", "brand:wikidata": "Q8072944"}, "addTags": {"amenity": "restaurant", "brand": "Zizzi", "brand:wikidata": "Q8072944", "brand:wikipedia": "en:Zizzi", "cuisine": "italian", "name": "Zizzi"}, "removeTags": {"amenity": "restaurant", "brand": "Zizzi", "brand:wikidata": "Q8072944", "brand:wikipedia": "en:Zizzi", "cuisine": "italian", "name": "Zizzi"}, "reference": {"key": "cuisine", "value": "italian"}, "matchScore": 2, "suggestion": true}, - "amenity/restaurant/いきなり!ステーキ": {"name": "いきなり!ステーキ", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/ikinari.steak/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q21652405"}, "addTags": {"amenity": "restaurant", "brand": "いきなり!ステーキ", "brand:en": "Ikinari Steak", "brand:ja": "いきなり!ステーキ", "brand:wikidata": "Q21652405", "brand:wikipedia": "ja:いきなり!ステーキ", "cusine": "steak_house", "name": "いきなり!ステーキ", "name:en": "Ikinari Steak", "name:ja": "いきなり!ステーキ"}, "removeTags": {"amenity": "restaurant", "brand": "いきなり!ステーキ", "brand:en": "Ikinari Steak", "brand:ja": "いきなり!ステーキ", "brand:wikidata": "Q21652405", "brand:wikipedia": "ja:いきなり!ステーキ", "cusine": "steak_house", "name": "いきなり!ステーキ", "name:en": "Ikinari Steak", "name:ja": "いきなり!ステーキ"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/restaurant/sushi/Планета Суши": {"name": "Планета Суши", "icon": "fas-fish", "imageURL": "https://graph.facebook.com/sushiplanet.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "sushi", "brand:wikidata": "Q62739250"}, "addTags": {"amenity": "restaurant", "brand": "Планета Суши", "brand:wikidata": "Q62739250", "cuisine": "sushi", "name": "Планета Суши", "name:en": "Planet Sushi"}, "removeTags": {"amenity": "restaurant", "brand": "Планета Суши", "brand:wikidata": "Q62739250", "cuisine": "sushi", "name": "Планета Суши", "name:en": "Planet Sushi"}, "reference": {"key": "cuisine", "value": "sushi"}, "matchScore": 2, "suggestion": true}, + "amenity/restaurant/japanese/Тануки": {"name": "Тануки", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/tanuki.official/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "japanese", "brand:wikidata": "Q62758690"}, "addTags": {"amenity": "restaurant", "brand": "Тануки", "brand:wikidata": "Q62758690", "cuisine": "japanese", "name": "Тануки", "name:en": "Tanuki", "name:ru": "Тануки"}, "removeTags": {"amenity": "restaurant", "brand": "Тануки", "brand:wikidata": "Q62758690", "cuisine": "japanese", "name": "Тануки", "name:en": "Tanuki", "name:ru": "Тануки"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["kz", "ru", "ua"], "matchScore": 2, "suggestion": true}, + "amenity/restaurant/いきなり!ステーキ": {"name": "いきなり!ステーキ", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/ikinari.steak/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q21652405"}, "addTags": {"amenity": "restaurant", "brand": "いきなり!ステーキ", "brand:en": "Ikinari Steak", "brand:ja": "いきなり!ステーキ", "brand:wikidata": "Q21652405", "brand:wikipedia": "ja:いきなり!ステーキ", "cuisine": "steak_house", "name": "いきなり!ステーキ", "name:en": "Ikinari Steak", "name:ja": "いきなり!ステーキ"}, "removeTags": {"amenity": "restaurant", "brand": "いきなり!ステーキ", "brand:en": "Ikinari Steak", "brand:ja": "いきなり!ステーキ", "brand:wikidata": "Q21652405", "brand:wikipedia": "ja:いきなり!ステーキ", "cuisine": "steak_house", "name": "いきなり!ステーキ", "name:en": "Ikinari Steak", "name:ja": "いきなり!ステーキ"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/はなまるうどん": {"name": "はなまるうどん", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/hanamaruudon.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q11275674"}, "addTags": {"amenity": "restaurant", "brand": "はなまるうどん", "brand:en": "Hanamarūdon", "brand:ja": "はなまるうどん", "brand:wikidata": "Q11275674", "brand:wikipedia": "ja:はなまるうどん", "name": "はなまるうどん", "name:en": "Hanamarūdon", "name:ja": "はなまるうどん"}, "removeTags": {"amenity": "restaurant", "brand": "はなまるうどん", "brand:en": "Hanamarūdon", "brand:ja": "はなまるうどん", "brand:wikidata": "Q11275674", "brand:wikipedia": "ja:はなまるうどん", "name": "はなまるうどん", "name:en": "Hanamarūdon", "name:ja": "はなまるうどん"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/びっくりドンキー": {"name": "びっくりドンキー", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q11276815"}, "addTags": {"amenity": "restaurant", "brand": "びっくりドンキー", "brand:en": "Bikkuri Donkey", "brand:ja": "びっくりドンキー", "brand:wikidata": "Q11276815", "brand:wikipedia": "ja:びっくりドンキー", "name": "びっくりドンキー", "name:en": "Bikkuri Donkey", "name:ja": "びっくりドンキー"}, "removeTags": {"amenity": "restaurant", "brand": "びっくりドンキー", "brand:en": "Bikkuri Donkey", "brand:ja": "びっくりドンキー", "brand:wikidata": "Q11276815", "brand:wikipedia": "ja:びっくりドンキー", "name": "びっくりドンキー", "name:en": "Bikkuri Donkey", "name:ja": "びっくりドンキー"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/やよい軒": {"name": "やよい軒", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/yayoiphilippines/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q11280577"}, "addTags": {"amenity": "restaurant", "brand": "やよい軒", "brand:en": "Yayoiken", "brand:ja": "やよい軒", "brand:wikidata": "Q11280577", "brand:wikipedia": "ja:やよい軒", "name": "やよい軒", "name:en": "Yayoiken", "name:ja": "やよい軒"}, "removeTags": {"amenity": "restaurant", "brand": "やよい軒", "brand:en": "Yayoiken", "brand:ja": "やよい軒", "brand:wikidata": "Q11280577", "brand:wikipedia": "ja:やよい軒", "name": "やよい軒", "name:en": "Yayoiken", "name:ja": "やよい軒"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/カプリチョーザ": {"name": "カプリチョーザ", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/capricciosa.restaurant/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q11294660"}, "addTags": {"amenity": "restaurant", "brand": "カプリチョーザ", "brand:en": "Capricciosa", "brand:wikidata": "Q11294660", "brand:wikipedia": "ja:カプリチョーザ", "cusine": "italian", "name": "カプリチョーザ", "name:en": "Capricciosa"}, "removeTags": {"amenity": "restaurant", "brand": "カプリチョーザ", "brand:en": "Capricciosa", "brand:wikidata": "Q11294660", "brand:wikipedia": "ja:カプリチョーザ", "cusine": "italian", "name": "カプリチョーザ", "name:en": "Capricciosa"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/restaurant/italian/カプリチョーザ": {"name": "カプリチョーザ", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/capricciosa.restaurant/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "italian", "brand:wikidata": "Q11294660"}, "addTags": {"amenity": "restaurant", "brand": "カプリチョーザ", "brand:en": "Capricciosa", "brand:ja": "カプリチョーザ", "brand:wikidata": "Q11294660", "brand:wikipedia": "ja:カプリチョーザ", "cuisine": "italian", "name": "カプリチョーザ", "name:en": "Capricciosa", "name:ja": "カプリチョーザ"}, "removeTags": {"amenity": "restaurant", "brand": "カプリチョーザ", "brand:en": "Capricciosa", "brand:ja": "カプリチョーザ", "brand:wikidata": "Q11294660", "brand:wikipedia": "ja:カプリチョーザ", "cuisine": "italian", "name": "カプリチョーザ", "name:en": "Capricciosa", "name:ja": "カプリチョーザ"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/ココス": {"name": "ココス", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/875584429069959169/5l38DoS7_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q11301951"}, "addTags": {"amenity": "restaurant", "brand": "ココス", "brand:en": "Coco's", "brand:ja": "ココス", "brand:wikidata": "Q11301951", "brand:wikipedia": "ja:ココスジャパン", "name": "ココス", "name:en": "Coco's", "name:ja": "ココス"}, "removeTags": {"amenity": "restaurant", "brand": "ココス", "brand:en": "Coco's", "brand:ja": "ココス", "brand:wikidata": "Q11301951", "brand:wikipedia": "ja:ココスジャパン", "name": "ココス", "name:en": "Coco's", "name:ja": "ココス"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/サイゼリヤ": {"name": "サイゼリヤ", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Saizeriya4Fun/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q886564"}, "addTags": {"amenity": "restaurant", "brand": "サイゼリヤ", "brand:en": "Saizeriya", "brand:ja": "サイゼリヤ", "brand:wikidata": "Q886564", "brand:wikipedia": "en:Saizeriya", "name": "サイゼリヤ", "name:en": "Saizeriya", "name:ja": "サイゼリヤ"}, "removeTags": {"amenity": "restaurant", "brand": "サイゼリヤ", "brand:en": "Saizeriya", "brand:ja": "サイゼリヤ", "brand:wikidata": "Q886564", "brand:wikipedia": "en:Saizeriya", "name": "サイゼリヤ", "name:en": "Saizeriya", "name:ja": "サイゼリヤ"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/ジョイフル": {"name": "ジョイフル", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q11310517"}, "addTags": {"amenity": "restaurant", "brand": "ジョイフル", "brand:en": "Joyfull", "brand:ja": "ジョイフル", "brand:wikidata": "Q11310517", "brand:wikipedia": "ja:ジョイフル", "name": "ジョイフル", "name:en": "Joyfull", "name:ja": "ジョイフル"}, "removeTags": {"amenity": "restaurant", "brand": "ジョイフル", "brand:en": "Joyfull", "brand:ja": "ジョイフル", "brand:wikidata": "Q11310517", "brand:wikipedia": "ja:ジョイフル", "name": "ジョイフル", "name:en": "Joyfull", "name:ja": "ジョイフル"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/ジョナサン": {"name": "ジョナサン", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/1098912743497711618/uM80VkgK_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q11310628"}, "addTags": {"amenity": "restaurant", "brand": "ジョナサン", "brand:en": "Jonathan's", "brand:ja": "ジョナサン", "brand:wikidata": "Q11310628", "brand:wikipedia": "ja:ジョナサン (ファミリーレストラン)", "name": "ジョナサン", "name:en": "Jonathan's", "name:ja": "ジョナサン"}, "removeTags": {"amenity": "restaurant", "brand": "ジョナサン", "brand:en": "Jonathan's", "brand:ja": "ジョナサン", "brand:wikidata": "Q11310628", "brand:wikipedia": "ja:ジョナサン (ファミリーレストラン)", "name": "ジョナサン", "name:en": "Jonathan's", "name:ja": "ジョナサン"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/restaurant/ジョリーパスタ": {"name": "ジョリーパスタ", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q10852718"}, "addTags": {"amenity": "restaurant", "brand": "ジョリーパスタ", "brand:en": "Jolly-Pasta", "brand:ja": "ジョリーパスタ", "brand:wikidata": "Q10852718", "brand:wikipedia": "ja:ジョリーパスタ", "cuisine": "pasta", "name": "ジョリーパスタ", "name:en": "Jolly-Pasta", "name:ja": "ジョリーパスタ"}, "removeTags": {"amenity": "restaurant", "brand": "ジョリーパスタ", "brand:en": "Jolly-Pasta", "brand:ja": "ジョリーパスタ", "brand:wikidata": "Q10852718", "brand:wikipedia": "ja:ジョリーパスタ", "cuisine": "pasta", "name": "ジョリーパスタ", "name:en": "Jolly-Pasta", "name:ja": "ジョリーパスタ"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/デニーズ": {"name": "デニーズ", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q11320661"}, "addTags": {"amenity": "restaurant", "brand": "デニーズ", "brand:en": "Denny's", "brand:ja": "デニーズ", "brand:wikidata": "Q11320661", "brand:wikipedia": "ja:デニーズ (日本)", "name": "デニーズ", "name:en": "Denny's", "name:ja": "デニーズ"}, "removeTags": {"amenity": "restaurant", "brand": "デニーズ", "brand:en": "Denny's", "brand:ja": "デニーズ", "brand:wikidata": "Q11320661", "brand:wikipedia": "ja:デニーズ (日本)", "name": "デニーズ", "name:en": "Denny's", "name:ja": "デニーズ"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/バーミヤン": {"name": "バーミヤン", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/1098907474789163010/uXiRaQ9S_bigger.jpg", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q11328598"}, "addTags": {"amenity": "restaurant", "brand": "バーミヤン", "brand:en": "Bamiyan", "brand:ja": "バーミヤン", "brand:wikidata": "Q11328598", "brand:wikipedia": "ja:バーミヤン (レストランチェーン)", "name": "バーミヤン", "name:en": "Bamiyan", "name:ja": "バーミヤン"}, "removeTags": {"amenity": "restaurant", "brand": "バーミヤン", "brand:en": "Bamiyan", "brand:ja": "バーミヤン", "brand:wikidata": "Q11328598", "brand:wikipedia": "ja:バーミヤン (レストランチェーン)", "name": "バーミヤン", "name:en": "Bamiyan", "name:ja": "バーミヤン"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/ビッグボーイ": {"name": "ビッグボーイ", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/bigboyrestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q4386779"}, "addTags": {"amenity": "restaurant", "brand": "ビッグボーイ", "brand:en": "Big Boy Restaurants", "brand:ja": "ビッグボーイ", "brand:wikidata": "Q4386779", "brand:wikipedia": "en:Big Boy Restaurants", "name": "ビッグボーイ", "name:en": "Big Boy Restaurants", "name:ja": "ビッグボーイ"}, "removeTags": {"amenity": "restaurant", "brand": "ビッグボーイ", "brand:en": "Big Boy Restaurants", "brand:ja": "ビッグボーイ", "brand:wikidata": "Q4386779", "brand:wikipedia": "en:Big Boy Restaurants", "name": "ビッグボーイ", "name:en": "Big Boy Restaurants", "name:ja": "ビッグボーイ"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, @@ -2430,16 +2542,18 @@ "amenity/restaurant/天下一品": {"name": "天下一品", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q11442172"}, "addTags": {"amenity": "restaurant", "brand": "天下一品", "brand:en": "Tenkaippin", "brand:wikidata": "Q11442172", "brand:wikipedia": "en:Tenkaippin", "name": "天下一品", "name:en": "Tenkaippin"}, "removeTags": {"amenity": "restaurant", "brand": "天下一品", "brand:en": "Tenkaippin", "brand:wikidata": "Q11442172", "brand:wikipedia": "en:Tenkaippin", "name": "天下一品", "name:en": "Tenkaippin"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/安楽亭": {"name": "安楽亭", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q11450866"}, "addTags": {"amenity": "restaurant", "brand": "安楽亭", "brand:en": "Anrakutei", "brand:wikidata": "Q11450866", "brand:wikipedia": "ja:安楽亭", "cuisine": "barbecue", "name": "安楽亭", "name:en": "Anrakutei"}, "removeTags": {"amenity": "restaurant", "brand": "安楽亭", "brand:en": "Anrakutei", "brand:wikidata": "Q11450866", "brand:wikipedia": "ja:安楽亭", "cuisine": "barbecue", "name": "安楽亭", "name:en": "Anrakutei"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/noodle/日高屋": {"name": "日高屋", "icon": "maki-restaurant-noodle", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "noodle", "brand:wikidata": "Q11326050"}, "addTags": {"amenity": "restaurant", "brand": "日高屋", "brand:en": "Hidakaya", "brand:wikidata": "Q11326050", "brand:wikipedia": "ja:ハイデイ日高", "cuisine": "noodle", "name": "日高屋", "name:en": "Hidakaya"}, "removeTags": {"amenity": "restaurant", "brand": "日高屋", "brand:en": "Hidakaya", "brand:wikidata": "Q11326050", "brand:wikipedia": "ja:ハイデイ日高", "cuisine": "noodle", "name": "日高屋", "name:en": "Hidakaya"}, "reference": {"key": "cuisine", "value": "noodle"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/永和豆漿": {"name": "永和豆漿", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q11131335"}, "addTags": {"amenity": "restaurant", "brand": "永和豆漿", "brand:en": "Yonghe Soy Milk", "brand:wikidata": "Q11131335", "brand:wikipedia": "zh:永和豆浆", "name": "永和豆漿", "name:en": "Yonghe Soy Milk"}, "removeTags": {"amenity": "restaurant", "brand": "永和豆漿", "brand:en": "Yonghe Soy Milk", "brand:wikidata": "Q11131335", "brand:wikipedia": "zh:永和豆浆", "name": "永和豆漿", "name:en": "Yonghe Soy Milk"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, + "amenity/restaurant/永和豆漿": {"name": "永和豆漿", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q11131335"}, "addTags": {"amenity": "restaurant", "brand": "永和豆漿", "brand:en": "Yonghe Soy Milk", "brand:wikidata": "Q11131335", "brand:wikipedia": "zh:永和豆漿", "name": "永和豆漿", "name:en": "Yonghe Soy Milk"}, "removeTags": {"amenity": "restaurant", "brand": "永和豆漿", "brand:en": "Yonghe Soy Milk", "brand:wikidata": "Q11131335", "brand:wikipedia": "zh:永和豆漿", "name": "永和豆漿", "name:en": "Yonghe Soy Milk"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/牛角": {"name": "牛角", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q11349387"}, "addTags": {"amenity": "restaurant", "brand": "牛角", "brand:en": "Gyū-Kaku", "brand:wikidata": "Q11349387", "brand:wikipedia": "en:Gyu-Kaku", "cuisine": "barbecue", "name": "牛角", "name:en": "Gyū-Kaku"}, "removeTags": {"amenity": "restaurant", "brand": "牛角", "brand:en": "Gyū-Kaku", "brand:wikidata": "Q11349387", "brand:wikipedia": "en:Gyu-Kaku", "cuisine": "barbecue", "name": "牛角", "name:en": "Gyū-Kaku"}, "matchScore": 2, "suggestion": true}, - "amenity/restaurant/華屋与兵衛": {"name": "華屋与兵衛", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q11620063"}, "addTags": {"amenity": "restaurant", "brand": "華屋与兵衛", "brand:en": "Hanaya Yohei", "brand:ja": "華屋与兵衛", "brand:wikidata": "Q11620063", "brand:wikipedia": "ja:華屋与兵衛 (レストラン)", "cusine": "japanese", "name": "華屋与兵衛", "name:en": "Hanaya Yohei", "name:ja": "華屋与兵衛", "operator": "株式会社ゼンショーホールディングス", "operator:en": "Zensho Holdings Co., Ltd.", "operator:ja": "株式会社ゼンショーホールディングス", "operator:wikidata": "Q8069229", "operator:wikipedia": "ja:ゼンショー"}, "removeTags": {"amenity": "restaurant", "brand": "華屋与兵衛", "brand:en": "Hanaya Yohei", "brand:ja": "華屋与兵衛", "brand:wikidata": "Q11620063", "brand:wikipedia": "ja:華屋与兵衛 (レストラン)", "cusine": "japanese", "name": "華屋与兵衛", "name:en": "Hanaya Yohei", "name:ja": "華屋与兵衛", "operator": "株式会社ゼンショーホールディングス", "operator:en": "Zensho Holdings Co., Ltd.", "operator:ja": "株式会社ゼンショーホールディングス", "operator:wikidata": "Q8069229", "operator:wikipedia": "ja:ゼンショー"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "amenity/restaurant/japanese/華屋与兵衛": {"name": "華屋与兵衛", "icon": "maki-restaurant-noodle", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "cuisine": "japanese", "brand:wikidata": "Q11620063"}, "addTags": {"amenity": "restaurant", "brand": "華屋与兵衛", "brand:en": "Hanaya Yohei", "brand:ja": "華屋与兵衛", "brand:wikidata": "Q11620063", "brand:wikipedia": "ja:華屋与兵衛 (レストラン)", "cuisine": "japanese", "name": "華屋与兵衛", "name:en": "Hanaya Yohei", "name:ja": "華屋与兵衛", "operator": "株式会社ゼンショーホールディングス", "operator:en": "Zensho Holdings Co., Ltd.", "operator:ja": "株式会社ゼンショーホールディングス", "operator:wikidata": "Q8069229", "operator:wikipedia": "ja:ゼンショー"}, "removeTags": {"amenity": "restaurant", "brand": "華屋与兵衛", "brand:en": "Hanaya Yohei", "brand:ja": "華屋与兵衛", "brand:wikidata": "Q11620063", "brand:wikipedia": "ja:華屋与兵衛 (レストラン)", "cuisine": "japanese", "name": "華屋与兵衛", "name:en": "Hanaya Yohei", "name:ja": "華屋与兵衛", "operator": "株式会社ゼンショーホールディングス", "operator:en": "Zensho Holdings Co., Ltd.", "operator:ja": "株式会社ゼンショーホールディングス", "operator:wikidata": "Q8069229", "operator:wikipedia": "ja:ゼンショー"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "amenity/restaurant/餃子の王将": {"name": "餃子の王将", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/ohshosaiyo/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "restaurant", "brand:wikidata": "Q11666805"}, "addTags": {"amenity": "restaurant", "brand": "餃子の王将", "brand:en": "Gyoza no Ohsho", "brand:ja": "餃子の王将", "brand:wikidata": "Q11666805", "brand:wikipedia": "en:Gyoza no Ohsho", "name": "餃子の王将", "name:en": "Gyoza no Ohsho", "name:ja": "餃子の王将"}, "removeTags": {"amenity": "restaurant", "brand": "餃子の王将", "brand:en": "Gyoza no Ohsho", "brand:ja": "餃子の王将", "brand:wikidata": "Q11666805", "brand:wikipedia": "en:Gyoza no Ohsho", "name": "餃子の王将", "name:en": "Gyoza no Ohsho", "name:ja": "餃子の王将"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "amenity/social_centre/American Legion": {"name": "American Legion", "icon": "fas-handshake", "imageURL": "https://graph.facebook.com/americanlegionhq/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "social_centre", "brand:wikidata": "Q468865"}, "addTags": {"amenity": "social_centre", "brand": "American Legion", "brand:wikidata": "Q468865", "brand:wikipedia": "en:American Legion", "name": "American Legion", "social_centre:for": "veterans"}, "removeTags": {"amenity": "social_centre", "brand": "American Legion", "brand:wikidata": "Q468865", "brand:wikipedia": "en:American Legion", "name": "American Legion", "social_centre:for": "veterans"}, "matchScore": 2, "suggestion": true}, + "amenity/social_centre/American Legion": {"name": "American Legion", "icon": "fas-handshake", "imageURL": "https://graph.facebook.com/americanlegionhq/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "social_centre", "brand:wikidata": "Q468865"}, "addTags": {"amenity": "social_centre", "brand": "American Legion", "brand:wikidata": "Q468865", "brand:wikipedia": "en:American Legion", "name": "American Legion", "social_centre:for": "veterans"}, "removeTags": {"amenity": "social_centre", "brand": "American Legion", "brand:wikidata": "Q468865", "brand:wikipedia": "en:American Legion", "name": "American Legion", "social_centre:for": "veterans"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "amenity/vending_machine/parcel_pickup/Amazon Locker": {"name": "Amazon Locker", "icon": "temaki-vending_machine", "imageURL": "https://graph.facebook.com/amazon/picture?type=large", "geometry": ["point"], "tags": {"amenity": "vending_machine", "vending": "parcel_pickup", "brand:wikidata": "Q16974764"}, "addTags": {"amenity": "vending_machine", "brand": "Amazon Locker", "brand:wikidata": "Q16974764", "brand:wikipedia": "en:Amazon Locker", "name": "Amazon Locker", "vending": "parcel_pickup"}, "removeTags": {"amenity": "vending_machine", "brand": "Amazon Locker", "brand:wikidata": "Q16974764", "brand:wikipedia": "en:Amazon Locker", "name": "Amazon Locker", "vending": "parcel_pickup"}, "reference": {"key": "vending", "value": "parcel_pickup"}, "matchScore": 2, "suggestion": true}, + "amenity/vending_machine/public_transport_tickets/Automat ŚKUP": {"name": "Automat ŚKUP", "icon": "temaki-vending_machine", "geometry": ["point"], "tags": {"amenity": "vending_machine", "vending": "public_transport_tickets", "brand:wikidata": "Q24945427"}, "addTags": {"amenity": "vending_machine", "brand": "Automat ŚKUP", "brand:wikidata": "Q24945427", "brand:wikipedia": "pl:Śląska Karta Usług Publicznych", "name": "Automat ŚKUP", "vending": "public_transport_tickets"}, "removeTags": {"amenity": "vending_machine", "brand": "Automat ŚKUP", "brand:wikidata": "Q24945427", "brand:wikipedia": "pl:Śląska Karta Usług Publicznych", "name": "Automat ŚKUP", "vending": "public_transport_tickets"}, "reference": {"key": "vending", "value": "public_transport_tickets"}, "matchScore": 2, "suggestion": true}, "amenity/vending_machine/parcel_pickup_dropoff/DHL Packstation": {"name": "DHL Packstation", "icon": "temaki-vending_machine", "geometry": ["point"], "tags": {"amenity": "vending_machine", "vending": "parcel_pickup;parcel_mail_in", "brand:wikidata": "Q1766703"}, "addTags": {"amenity": "vending_machine", "brand": "Packstation", "brand:wikidata": "Q1766703", "brand:wikipedia": "en:Packstation", "name": "DHL Packstation", "operator": "DHL", "operator:wikidata": "Q489815", "operator:wikipedia": "en:DHL Express", "vending": "parcel_pickup;parcel_mail_in"}, "removeTags": {"amenity": "vending_machine", "brand": "Packstation", "brand:wikidata": "Q1766703", "brand:wikipedia": "en:Packstation", "name": "DHL Packstation", "operator": "DHL", "operator:wikidata": "Q489815", "operator:wikipedia": "en:DHL Express", "vending": "parcel_pickup;parcel_mail_in"}, "reference": {"key": "vending", "value": "parcel_pickup;parcel_mail_in"}, "matchScore": 2, "suggestion": true}, "amenity/vending_machine/DHL Paketbox": {"name": "DHL Paketbox", "icon": "temaki-vending_machine", "geometry": ["point"], "tags": {"amenity": "vending_machine", "brand:wikidata": "Q2046604"}, "addTags": {"amenity": "vending_machine", "brand": "Paketbox", "brand:wikidata": "Q2046604", "brand:wikipedia": "de:Paketbox", "name": "DHL Paketbox", "operator": "DHL", "operator:wikidata": "Q489815", "operator:wikipedia": "de:DHL", "vending": "parcel_mail_in"}, "removeTags": {"amenity": "vending_machine", "brand": "Paketbox", "brand:wikidata": "Q2046604", "brand:wikipedia": "de:Paketbox", "name": "DHL Paketbox", "operator": "DHL", "operator:wikidata": "Q489815", "operator:wikipedia": "de:DHL", "vending": "parcel_mail_in"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "amenity/vending_machine/public_transport_tickets/KKM": {"name": "KKM", "icon": "temaki-vending_machine", "geometry": ["point"], "tags": {"amenity": "vending_machine", "vending": "public_transport_tickets", "brand:wikidata": "Q57515549"}, "addTags": {"amenity": "vending_machine", "brand": "KKM", "brand:wikidata": "Q57515549", "name": "KKM", "vending": "public_transport_tickets"}, "removeTags": {"amenity": "vending_machine", "brand": "KKM", "brand:wikidata": "Q57515549", "name": "KKM", "vending": "public_transport_tickets"}, "reference": {"key": "vending", "value": "public_transport_tickets"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/parcel_pickup_dropoff/Paczkomat InPost": {"name": "Paczkomat InPost", "icon": "temaki-vending_machine", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FInPost%20logo.svg&width=100", "geometry": ["point"], "tags": {"amenity": "vending_machine", "vending": "parcel_pickup;parcel_mail_in", "brand:wikidata": "Q3182097"}, "addTags": {"amenity": "vending_machine", "brand": "InPost", "brand:wikidata": "Q3182097", "brand:wikipedia": "pl:InPost", "name": "Paczkomat InPost", "vending": "parcel_pickup;parcel_mail_in"}, "removeTags": {"amenity": "vending_machine", "brand": "InPost", "brand:wikidata": "Q3182097", "brand:wikipedia": "pl:InPost", "name": "Paczkomat InPost", "vending": "parcel_pickup;parcel_mail_in"}, "reference": {"key": "vending", "value": "parcel_pickup;parcel_mail_in"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/Redbox": {"name": "Redbox", "icon": "temaki-vending_machine", "imageURL": "https://pbs.twimg.com/profile_images/1034645214764453888/g48C6W9j_bigger.jpg", "geometry": ["point"], "tags": {"amenity": "vending_machine", "brand:wikidata": "Q7305489"}, "addTags": {"amenity": "vending_machine", "brand": "Redbox", "brand:wikidata": "Q7305489", "brand:wikipedia": "en:Redbox", "name": "Redbox", "vending": "dvd"}, "removeTags": {"amenity": "vending_machine", "brand": "Redbox", "brand:wikidata": "Q7305489", "brand:wikipedia": "en:Redbox", "name": "Redbox", "vending": "dvd"}, "matchScore": 2, "suggestion": true}, + "amenity/vending_machine/parcel_pickup_dropoff/Paczkomat InPost": {"name": "Paczkomat InPost", "icon": "temaki-vending_machine", "imageURL": "https://graph.facebook.com/paczkomaty/picture?type=large", "geometry": ["point"], "tags": {"amenity": "vending_machine", "vending": "parcel_pickup;parcel_mail_in", "brand:wikidata": "Q3182097"}, "addTags": {"amenity": "vending_machine", "brand": "InPost", "brand:wikidata": "Q3182097", "brand:wikipedia": "pl:InPost", "name": "Paczkomat InPost", "vending": "parcel_pickup;parcel_mail_in"}, "removeTags": {"amenity": "vending_machine", "brand": "InPost", "brand:wikidata": "Q3182097", "brand:wikipedia": "pl:InPost", "name": "Paczkomat InPost", "vending": "parcel_pickup;parcel_mail_in"}, "reference": {"key": "vending", "value": "parcel_pickup;parcel_mail_in"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "amenity/vending_machine/Redbox": {"name": "Redbox", "icon": "temaki-vending_machine", "imageURL": "https://graph.facebook.com/redbox/picture?type=large", "geometry": ["point"], "tags": {"amenity": "vending_machine", "brand:wikidata": "Q7305489"}, "addTags": {"amenity": "vending_machine", "brand": "Redbox", "brand:wikidata": "Q7305489", "brand:wikipedia": "en:Redbox", "name": "Redbox", "vending": "dvd"}, "removeTags": {"amenity": "vending_machine", "brand": "Redbox", "brand:wikidata": "Q7305489", "brand:wikipedia": "en:Redbox", "name": "Redbox", "vending": "dvd"}, "matchScore": 2, "suggestion": true}, "amenity/vending_machine/excrement_bags/Robidog": {"name": "Robidog", "icon": "temaki-vending_machine", "geometry": ["point"], "tags": {"amenity": "vending_machine", "vending": "excrement_bags", "brand:wikidata": "Q2159689"}, "addTags": {"amenity": "vending_machine", "brand": "Robidog", "brand:wikidata": "Q2159689", "brand:wikipedia": "de:Robidog", "name": "Robidog", "vending": "excrement_bags"}, "removeTags": {"amenity": "vending_machine", "brand": "Robidog", "brand:wikidata": "Q2159689", "brand:wikipedia": "de:Robidog", "name": "Robidog", "vending": "excrement_bags"}, "reference": {"key": "vending", "value": "excrement_bags"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, "amenity/vending_machine/cigarettes/Tobaccoland": {"name": "Tobaccoland", "icon": "temaki-vending_machine", "geometry": ["point"], "tags": {"amenity": "vending_machine", "vending": "cigarettes", "brand:wikidata": "Q1439872"}, "addTags": {"amenity": "vending_machine", "brand": "Tobaccoland", "brand:wikidata": "Q1439872", "brand:wikipedia": "de:Tobaccoland Automatengesellschaft", "name": "Tobaccoland", "vending": "cigarettes"}, "removeTags": {"amenity": "vending_machine", "brand": "Tobaccoland", "brand:wikidata": "Q1439872", "brand:wikipedia": "de:Tobaccoland Automatengesellschaft", "name": "Tobaccoland", "vending": "cigarettes"}, "reference": {"key": "vending", "value": "cigarettes"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "amenity/veterinary/Banfield Pet Hospital": {"name": "Banfield Pet Hospital", "icon": "temaki-veterinary_care", "imageURL": "https://graph.facebook.com/BanfieldPetHospital/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "veterinary", "brand:wikidata": "Q2882416"}, "addTags": {"amenity": "veterinary", "brand": "Banfield Pet Hospital", "brand:wikidata": "Q2882416", "brand:wikipedia": "en:Banfield Pet Hospital", "name": "Banfield Pet Hospital"}, "removeTags": {"amenity": "veterinary", "brand": "Banfield Pet Hospital", "brand:wikidata": "Q2882416", "brand:wikipedia": "en:Banfield Pet Hospital", "name": "Banfield Pet Hospital"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, @@ -2450,9 +2564,10 @@ "leisure/fitness_centre/Curves": {"name": "Curves", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/Curves/picture?type=large", "geometry": ["point", "area"], "tags": {"leisure": "fitness_centre", "brand:wikidata": "Q5196080"}, "addTags": {"brand": "Curves", "brand:wikidata": "Q5196080", "brand:wikipedia": "en:Curves International", "leisure": "fitness_centre", "name": "Curves"}, "removeTags": {"brand": "Curves", "brand:wikidata": "Q5196080", "brand:wikipedia": "en:Curves International", "leisure": "fitness_centre", "name": "Curves"}, "matchScore": 2, "suggestion": true}, "leisure/fitness_centre/Gold's Gym": {"name": "Gold's Gym", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/goldsgym/picture?type=large", "geometry": ["point", "area"], "tags": {"leisure": "fitness_centre", "brand:wikidata": "Q1536234"}, "addTags": {"brand": "Gold's Gym", "brand:wikidata": "Q1536234", "brand:wikipedia": "en:Gold's Gym", "leisure": "fitness_centre", "name": "Gold's Gym"}, "removeTags": {"brand": "Gold's Gym", "brand:wikidata": "Q1536234", "brand:wikipedia": "en:Gold's Gym", "leisure": "fitness_centre", "name": "Gold's Gym"}, "matchScore": 2, "suggestion": true}, "leisure/fitness_centre/LA Fitness": {"name": "LA Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/LAFitness/picture?type=large", "geometry": ["point", "area"], "tags": {"leisure": "fitness_centre", "brand:wikidata": "Q6457180"}, "addTags": {"brand": "LA Fitness", "brand:wikidata": "Q6457180", "brand:wikipedia": "en:LA Fitness", "leisure": "fitness_centre", "name": "LA Fitness"}, "removeTags": {"brand": "LA Fitness", "brand:wikidata": "Q6457180", "brand:wikipedia": "en:LA Fitness", "leisure": "fitness_centre", "name": "LA Fitness"}, "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Planet Fitness": {"name": "Planet Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/planetfitness/picture?type=large", "geometry": ["point", "area"], "tags": {"leisure": "fitness_centre", "brand:wikidata": "Q7201095"}, "addTags": {"brand": "Planet Fitness", "brand:wikidata": "Q7201095", "brand:wikipedia": "en:Planet Fitness", "leisure": "fitness_centre", "name": "Planet Fitness"}, "removeTags": {"brand": "Planet Fitness", "brand:wikidata": "Q7201095", "brand:wikipedia": "en:Planet Fitness", "leisure": "fitness_centre", "name": "Planet Fitness"}, "matchScore": 2, "suggestion": true}, + "leisure/fitness_centre/Orangetheory Fitness": {"name": "Orangetheory Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/OrangeTheoryFitness/picture?type=large", "geometry": ["point", "area"], "tags": {"leisure": "fitness_centre", "brand:wikidata": "Q25005163"}, "addTags": {"brand": "Orangetheory Fitness", "brand:wikidata": "Q25005163", "brand:wikipedia": "en:Orangetheory Fitness", "leisure": "fitness_centre", "name": "Orangetheory Fitness"}, "removeTags": {"brand": "Orangetheory Fitness", "brand:wikidata": "Q25005163", "brand:wikipedia": "en:Orangetheory Fitness", "leisure": "fitness_centre", "name": "Orangetheory Fitness"}, "matchScore": 2, "suggestion": true}, + "leisure/fitness_centre/Planet Fitness": {"name": "Planet Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/planetfitness/picture?type=large", "geometry": ["point", "area"], "tags": {"leisure": "fitness_centre", "brand:wikidata": "Q7201095"}, "addTags": {"brand": "Planet Fitness", "brand:wikidata": "Q7201095", "brand:wikipedia": "en:Planet Fitness", "leisure": "fitness_centre", "name": "Planet Fitness"}, "removeTags": {"brand": "Planet Fitness", "brand:wikidata": "Q7201095", "brand:wikipedia": "en:Planet Fitness", "leisure": "fitness_centre", "name": "Planet Fitness"}, "countryCodes": ["ae", "au", "ca", "cl", "cn", "co", "cr", "de", "do", "es", "gb", "gt", "il", "jp", "kw", "mx", "nz", "pa", "pe", "pl", "pr", "sa", "sg", "us"], "matchScore": 2, "suggestion": true}, "leisure/fitness_centre/PureGym": {"name": "PureGym", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/puregym/picture?type=large", "geometry": ["point", "area"], "tags": {"leisure": "fitness_centre", "brand:wikidata": "Q18345898"}, "addTags": {"brand": "PureGym", "brand:wikidata": "Q18345898", "brand:wikipedia": "en:PureGym", "leisure": "fitness_centre", "name": "PureGym"}, "removeTags": {"brand": "PureGym", "brand:wikidata": "Q18345898", "brand:wikipedia": "en:PureGym", "leisure": "fitness_centre", "name": "PureGym"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Retro Fitness": {"name": "Retro Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/RetroFitness/picture?type=large", "geometry": ["point", "area"], "tags": {"leisure": "fitness_centre", "brand:wikidata": "Q61994955"}, "addTags": {"brand": "Retro Fitness", "brand:wikidata": "Q61994955", "leisure": "fitness_centre", "name": "Retro Fitness"}, "removeTags": {"brand": "Retro Fitness", "brand:wikidata": "Q61994955", "leisure": "fitness_centre", "name": "Retro Fitness"}, "matchScore": 2, "suggestion": true}, + "leisure/fitness_centre/Retro Fitness": {"name": "Retro Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/RetroFitness/picture?type=large", "geometry": ["point", "area"], "tags": {"leisure": "fitness_centre", "brand:wikidata": "Q61994955"}, "addTags": {"brand": "Retro Fitness", "brand:wikidata": "Q61994955", "leisure": "fitness_centre", "name": "Retro Fitness"}, "removeTags": {"brand": "Retro Fitness", "brand:wikidata": "Q61994955", "leisure": "fitness_centre", "name": "Retro Fitness"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "leisure/fitness_centre/Snap Fitness": {"name": "Snap Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/SnapFitness247/picture?type=large", "geometry": ["point", "area"], "tags": {"leisure": "fitness_centre", "brand:wikidata": "Q7547254"}, "addTags": {"brand": "Snap Fitness", "brand:wikidata": "Q7547254", "brand:wikipedia": "en:Snap Fitness", "leisure": "fitness_centre", "name": "Snap Fitness"}, "removeTags": {"brand": "Snap Fitness", "brand:wikidata": "Q7547254", "brand:wikipedia": "en:Snap Fitness", "leisure": "fitness_centre", "name": "Snap Fitness"}, "matchScore": 2, "suggestion": true}, "leisure/fitness_centre/YMCA": {"name": "YMCA", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/YMCA/picture?type=large", "geometry": ["point", "area"], "tags": {"leisure": "fitness_centre", "brand:wikidata": "Q157169"}, "addTags": {"brand": "YMCA", "brand:wikidata": "Q157169", "brand:wikipedia": "en:YMCA", "leisure": "fitness_centre", "name": "YMCA"}, "removeTags": {"brand": "YMCA", "brand:wikidata": "Q157169", "brand:wikipedia": "en:YMCA", "leisure": "fitness_centre", "name": "YMCA"}, "matchScore": 2, "suggestion": true}, "shop/alcohol/Alko": {"name": "Alko", "icon": "maki-alcohol-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAlko.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q1849187"}, "addTags": {"brand": "Alko", "brand:wikidata": "Q1849187", "brand:wikipedia": "en:Alko", "name": "Alko", "shop": "alcohol"}, "removeTags": {"brand": "Alko", "brand:wikidata": "Q1849187", "brand:wikipedia": "en:Alko", "name": "Alko", "shop": "alcohol"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, @@ -2470,11 +2585,11 @@ "shop/alcohol/Systembolaget": {"name": "Systembolaget", "icon": "maki-alcohol-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSystembolaget%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q1476113"}, "addTags": {"brand": "Systembolaget", "brand:wikidata": "Q1476113", "brand:wikipedia": "en:Systembolaget", "name": "Systembolaget", "shop": "alcohol"}, "removeTags": {"brand": "Systembolaget", "brand:wikidata": "Q1476113", "brand:wikipedia": "en:Systembolaget", "name": "Systembolaget", "shop": "alcohol"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, "shop/alcohol/The Beer Store": {"name": "The Beer Store", "icon": "maki-alcohol-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FThe%20Beer%20Store%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q16243674"}, "addTags": {"brand": "The Beer Store", "brand:wikidata": "Q16243674", "brand:wikipedia": "en:The Beer Store", "name": "The Beer Store", "shop": "alcohol"}, "removeTags": {"brand": "The Beer Store", "brand:wikidata": "Q16243674", "brand:wikipedia": "en:The Beer Store", "name": "The Beer Store", "shop": "alcohol"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "shop/alcohol/Total Wine": {"name": "Total Wine", "icon": "maki-alcohol-shop", "imageURL": "https://pbs.twimg.com/profile_images/3095579292/69f5115c869a3b0f73bfb7ad25ba2a37_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q7828084"}, "addTags": {"brand": "Total Wine", "brand:wikidata": "Q7828084", "brand:wikipedia": "en:Total Wine & More", "name": "Total Wine", "shop": "alcohol"}, "removeTags": {"brand": "Total Wine", "brand:wikidata": "Q7828084", "brand:wikipedia": "en:Total Wine & More", "name": "Total Wine", "shop": "alcohol"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Vinmonopolet": {"name": "Vinmonopolet", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q1740534"}, "addTags": {"brand": "Vinmonopolet", "brand:wikidata": "Q1740534", "brand:wikipedia": "en:Vinmonopolet", "name": "Vinmonopolet", "shop": "alcohol"}, "removeTags": {"brand": "Vinmonopolet", "brand:wikidata": "Q1740534", "brand:wikipedia": "en:Vinmonopolet", "name": "Vinmonopolet", "shop": "alcohol"}, "countryCodes": ["no"], "matchScore": 2, "suggestion": true}, "shop/alcohol/Virginia ABC": {"name": "Virginia ABC", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q7934236"}, "addTags": {"brand": "Virginia ABC", "brand:wikidata": "Q7934236", "brand:wikipedia": "en:Virginia Alcoholic Beverage Control Authority", "name": "Virginia ABC", "shop": "alcohol"}, "removeTags": {"brand": "Virginia ABC", "brand:wikidata": "Q7934236", "brand:wikipedia": "en:Virginia Alcoholic Beverage Control Authority", "name": "Virginia ABC", "shop": "alcohol"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/alcohol/Бристоль": {"name": "Бристоль", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q59155583"}, "addTags": {"brand": "Бристоль", "brand:wikidata": "Q59155583", "brand:wikipedia": "ru:Бристоль (сеть магазинов)", "name": "Бристоль", "shop": "alcohol"}, "removeTags": {"brand": "Бристоль", "brand:wikidata": "Q59155583", "brand:wikipedia": "ru:Бристоль (сеть магазинов)", "name": "Бристоль", "shop": "alcohol"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Красное & Белое": {"name": "Красное & Белое", "icon": "maki-alcohol-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKrasnoe%26Beloe.%20Logotip.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q24933790"}, "addTags": {"brand": "Красное & Белое", "brand:en": "Red&White", "brand:wikidata": "Q24933790", "brand:wikipedia": "en:Red&White", "name": "Красное & Белое", "name:en": "Red&White", "shop": "alcohol"}, "removeTags": {"brand": "Красное & Белое", "brand:en": "Red&White", "brand:wikidata": "Q24933790", "brand:wikipedia": "en:Red&White", "name": "Красное & Белое", "name:en": "Red&White", "shop": "alcohol"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/Красное & Белое": {"name": "Красное & Белое", "icon": "maki-alcohol-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKrasnoe%26Beloe.%20Logotip.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q24933790"}, "addTags": {"brand": "Красное & Белое", "brand:en": "Red&White", "brand:wikidata": "Q24933790", "brand:wikipedia": "en:Krasnoe & Beloe", "name": "Красное & Белое", "name:en": "Red&White", "shop": "alcohol"}, "removeTags": {"brand": "Красное & Белое", "brand:en": "Red&White", "brand:wikidata": "Q24933790", "brand:wikipedia": "en:Krasnoe & Beloe", "name": "Красное & Белое", "name:en": "Red&White", "shop": "alcohol"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/alcohol/Лион": {"name": "Лион", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q3241775"}, "addTags": {"brand": "Лион", "brand:wikidata": "Q3241775", "brand:wikipedia": "en:Lion (Australasian company)", "name": "Лион", "shop": "alcohol"}, "removeTags": {"brand": "Лион", "brand:wikidata": "Q3241775", "brand:wikipedia": "en:Lion (Australasian company)", "name": "Лион", "shop": "alcohol"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/baby_goods/Aubert": {"name": "Aubert", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/Aubert/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q62964657"}, "addTags": {"brand": "Aubert", "brand:wikidata": "Q62964657", "name": "Aubert", "shop": "baby_goods"}, "removeTags": {"brand": "Aubert", "brand:wikidata": "Q62964657", "name": "Aubert", "shop": "baby_goods"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/baby_goods/Babies R Us": {"name": "Babies R Us", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/babiesrus/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q17232036"}, "addTags": {"brand": "Babies R Us", "brand:wikidata": "Q17232036", "name": "Babies R Us", "shop": "baby_goods"}, "removeTags": {"brand": "Babies R Us", "brand:wikidata": "Q17232036", "name": "Babies R Us", "shop": "baby_goods"}, "matchScore": 2, "suggestion": true}, "shop/baby_goods/BabyOne": {"name": "BabyOne", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/BabyOne/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q57540408"}, "addTags": {"brand": "BabyOne", "brand:wikidata": "Q57540408", "name": "BabyOne", "shop": "baby_goods"}, "removeTags": {"brand": "BabyOne", "brand:wikidata": "Q57540408", "name": "BabyOne", "shop": "baby_goods"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/baby_goods/Buy Buy Baby": {"name": "Buy Buy Baby", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/buybuyBABY/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q5003352"}, "addTags": {"brand": "Buy Buy Baby", "brand:wikidata": "Q5003352", "brand:wikipedia": "en:Buy Buy Baby", "name": "Buy Buy Baby", "shop": "baby_goods"}, "removeTags": {"brand": "Buy Buy Baby", "brand:wikidata": "Q5003352", "brand:wikipedia": "en:Buy Buy Baby", "name": "Buy Buy Baby", "shop": "baby_goods"}, "matchScore": 2, "suggestion": true}, @@ -2485,13 +2600,14 @@ "shop/bag/Kipling": {"name": "Kipling", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/KiplingU.S.A/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q6414641"}, "addTags": {"brand": "Kipling", "brand:wikidata": "Q6414641", "brand:wikipedia": "en:Kipling (brand)", "name": "Kipling", "shop": "bag"}, "removeTags": {"brand": "Kipling", "brand:wikidata": "Q6414641", "brand:wikipedia": "en:Kipling (brand)", "name": "Kipling", "shop": "bag"}, "matchScore": 2, "suggestion": true}, "shop/bag/Samsonite": {"name": "Samsonite", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Samsonite/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q1203426"}, "addTags": {"brand": "Samsonite", "brand:wikidata": "Q1203426", "brand:wikipedia": "en:Samsonite", "name": "Samsonite", "shop": "bag"}, "removeTags": {"brand": "Samsonite", "brand:wikidata": "Q1203426", "brand:wikipedia": "en:Samsonite", "name": "Samsonite", "shop": "bag"}, "matchScore": 2, "suggestion": true}, "shop/bag/Tumi": {"name": "Tumi", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/TumiTravel/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q4465402"}, "addTags": {"brand": "Tumi", "brand:wikidata": "Q4465402", "brand:wikipedia": "en:Tumi Inc.", "name": "Tumi", "shop": "bag"}, "removeTags": {"brand": "Tumi", "brand:wikidata": "Q4465402", "brand:wikipedia": "en:Tumi Inc.", "name": "Tumi", "shop": "bag"}, "matchScore": 2, "suggestion": true}, - "shop/bag/Vera Bradley": {"name": "Vera Bradley", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/VeraBradley/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q7920749"}, "addTags": {"brand": "Vera Bradley", "brand:wikidata": "Q7920749", "brand:wikipedia": "en:Vera Bradley", "name": "Vera Bradley", "shop": "bag"}, "removeTags": {"brand": "Vera Bradley", "brand:wikidata": "Q7920749", "brand:wikipedia": "en:Vera Bradley", "name": "Vera Bradley", "shop": "bag"}, "matchScore": 2, "suggestion": true}, + "shop/bag/Vera Bradley": {"name": "Vera Bradley", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/VeraBradley/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q7920749"}, "addTags": {"brand": "Vera Bradley", "brand:wikidata": "Q7920749", "brand:wikipedia": "en:Vera Bradley", "name": "Vera Bradley", "shop": "bag"}, "removeTags": {"brand": "Vera Bradley", "brand:wikidata": "Q7920749", "brand:wikipedia": "en:Vera Bradley", "name": "Vera Bradley", "shop": "bag"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/bakery/Anker": {"name": "Anker", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q557116"}, "addTags": {"brand": "Anker", "brand:wikidata": "Q557116", "brand:wikipedia": "de:Ankerbrot", "name": "Anker", "shop": "bakery"}, "removeTags": {"brand": "Anker", "brand:wikidata": "Q557116", "brand:wikipedia": "de:Ankerbrot", "name": "Anker", "shop": "bakery"}, "matchScore": 2, "suggestion": true}, "shop/bakery/Awiteks": {"name": "Awiteks", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q62054190"}, "addTags": {"brand": "Awiteks", "brand:wikidata": "Q62054190", "name": "Awiteks", "shop": "bakery"}, "removeTags": {"brand": "Awiteks", "brand:wikidata": "Q62054190", "name": "Awiteks", "shop": "bakery"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "shop/bakery/Backwerk": {"name": "Backwerk", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/155997891116938/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q798298"}, "addTags": {"brand": "BackWerk", "brand:wikidata": "Q798298", "brand:wikipedia": "de:BackWerk", "name": "Backwerk", "shop": "bakery"}, "removeTags": {"brand": "BackWerk", "brand:wikidata": "Q798298", "brand:wikipedia": "de:BackWerk", "name": "Backwerk", "shop": "bakery"}, "countryCodes": ["at", "ch", "de", "gb", "nl"], "matchScore": 2, "suggestion": true}, "shop/bakery/Bakers Delight": {"name": "Bakers Delight", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q4849261"}, "addTags": {"brand": "Bakers Delight", "brand:wikidata": "Q4849261", "brand:wikipedia": "en:Bakers Delight", "name": "Bakers Delight", "shop": "bakery"}, "removeTags": {"brand": "Bakers Delight", "brand:wikidata": "Q4849261", "brand:wikipedia": "en:Bakers Delight", "name": "Bakers Delight", "shop": "bakery"}, "countryCodes": ["au", "ca", "nz", "us"], "matchScore": 2, "suggestion": true}, "shop/bakery/Bakker Bart": {"name": "Bakker Bart", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q2177445"}, "addTags": {"brand": "Bakker Bart", "brand:wikidata": "Q2177445", "brand:wikipedia": "nl:Bakker Bart", "name": "Bakker Bart", "shop": "bakery"}, "removeTags": {"brand": "Bakker Bart", "brand:wikidata": "Q2177445", "brand:wikipedia": "nl:Bakker Bart", "name": "Bakker Bart", "shop": "bakery"}, "countryCodes": ["be", "nl"], "matchScore": 2, "suggestion": true}, "shop/bakery/Banette": {"name": "Banette", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q2882405"}, "addTags": {"brand": "Banette", "brand:wikidata": "Q2882405", "brand:wikipedia": "fr:Banette (entreprise)", "name": "Banette", "shop": "bakery"}, "removeTags": {"brand": "Banette", "brand:wikidata": "Q2882405", "brand:wikipedia": "fr:Banette (entreprise)", "name": "Banette", "shop": "bakery"}, "matchScore": 2, "suggestion": true}, + "shop/bakery/Birds": {"name": "Birds", "icon": "maki-bakery", "imageURL": "https://pbs.twimg.com/profile_images/590867289953738753/OftDrPao_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q63001935"}, "addTags": {"brand": "Birds", "brand:wikidata": "Q63001935", "brand:wikipedia": "en:Birds Bakery", "name": "Birds", "official_name": "Birds Bakery", "shop": "bakery"}, "removeTags": {"brand": "Birds", "brand:wikidata": "Q63001935", "brand:wikipedia": "en:Birds Bakery", "name": "Birds", "official_name": "Birds Bakery", "shop": "bakery"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "shop/bakery/Bäckerei Fuchs": {"name": "Bäckerei Fuchs", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q42825993"}, "addTags": {"brand": "Bäckerei Fuchs", "brand:wikidata": "Q42825993", "brand:wikipedia": "de:Harald Fuchs Bäckerei – Konditorei", "name": "Bäckerei Fuchs", "shop": "bakery"}, "removeTags": {"brand": "Bäckerei Fuchs", "brand:wikidata": "Q42825993", "brand:wikipedia": "de:Harald Fuchs Bäckerei – Konditorei", "name": "Bäckerei Fuchs", "shop": "bakery"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/bakery/Cadera": {"name": "Cadera", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/Cadera1853/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q62086410"}, "addTags": {"brand": "Cadera", "brand:wikidata": "Q62086410", "name": "Cadera", "shop": "bakery"}, "removeTags": {"brand": "Cadera", "brand:wikidata": "Q62086410", "name": "Cadera", "shop": "bakery"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/bakery/Cooplands": {"name": "Cooplands", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q5167971"}, "addTags": {"brand": "Cooplands", "brand:wikidata": "Q5167971", "brand:wikipedia": "en:Cooplands", "name": "Cooplands", "shop": "bakery"}, "removeTags": {"brand": "Cooplands", "brand:wikidata": "Q5167971", "brand:wikipedia": "en:Cooplands", "name": "Cooplands", "shop": "bakery"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, @@ -2507,7 +2623,7 @@ "shop/bakery/Kamps": {"name": "Kamps", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/417008548362119/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q1723381"}, "addTags": {"brand": "Kamps", "brand:wikidata": "Q1723381", "brand:wikipedia": "de:Kamps (Unternehmen)", "name": "Kamps", "shop": "bakery"}, "removeTags": {"brand": "Kamps", "brand:wikidata": "Q1723381", "brand:wikipedia": "de:Kamps (Unternehmen)", "name": "Kamps", "shop": "bakery"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/bakery/La Mie Câline": {"name": "La Mie Câline", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q3210704"}, "addTags": {"brand": "La Mie Câline", "brand:wikidata": "Q3210704", "brand:wikipedia": "fr:La Mie câline", "name": "La Mie Câline", "shop": "bakery"}, "removeTags": {"brand": "La Mie Câline", "brand:wikidata": "Q3210704", "brand:wikipedia": "fr:La Mie câline", "name": "La Mie Câline", "shop": "bakery"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/bakery/Le Crobag": {"name": "Le Crobag", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q1558025"}, "addTags": {"brand": "Le Crobag", "brand:wikidata": "Q1558025", "brand:wikipedia": "de:Le Crobag", "name": "Le Crobag", "shop": "bakery"}, "removeTags": {"brand": "Le Crobag", "brand:wikidata": "Q1558025", "brand:wikipedia": "de:Le Crobag", "name": "Le Crobag", "shop": "bakery"}, "countryCodes": ["at", "de", "pl", "ru"], "matchScore": 2, "suggestion": true}, - "shop/bakery/Lila Bäcker": {"name": "Lila Bäcker", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q57516591"}, "addTags": {"brand": "Lila Bäcker", "brand:wikidata": "Q57516591", "name": "Lila Bäcker", "shop": "bakery"}, "removeTags": {"brand": "Lila Bäcker", "brand:wikidata": "Q57516591", "name": "Lila Bäcker", "shop": "bakery"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/bakery/Lila Bäcker": {"name": "Lila Bäcker", "icon": "maki-bakery", "imageURL": "https://pbs.twimg.com/profile_images/1145260042/logo_up_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q57516591"}, "addTags": {"brand": "Lila Bäcker", "brand:wikidata": "Q57516591", "name": "Lila Bäcker", "shop": "bakery"}, "removeTags": {"brand": "Lila Bäcker", "brand:wikidata": "Q57516591", "name": "Lila Bäcker", "shop": "bakery"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/bakery/Löwenbäcker Schaper": {"name": "Löwenbäcker Schaper", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/LoewenbaeckerSchaper/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q62075965"}, "addTags": {"brand": "Löwenbäcker Schaper", "brand:wikidata": "Q62075965", "name": "Löwenbäcker Schaper", "shop": "bakery"}, "removeTags": {"brand": "Löwenbäcker Schaper", "brand:wikidata": "Q62075965", "name": "Löwenbäcker Schaper", "shop": "bakery"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/bakery/Marie Blachère": {"name": "Marie Blachère", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/marieblachereusa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q62082410"}, "addTags": {"brand": "Marie Blachère", "brand:wikidata": "Q62082410", "name": "Marie Blachère", "shop": "bakery"}, "removeTags": {"brand": "Marie Blachère", "brand:wikidata": "Q62082410", "name": "Marie Blachère", "shop": "bakery"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/bakery/Mlinar": {"name": "Mlinar", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/MlinarHrvatska/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q62082464"}, "addTags": {"brand": "Mlinar", "brand:wikidata": "Q62082464", "name": "Mlinar", "shop": "bakery"}, "removeTags": {"brand": "Mlinar", "brand:wikidata": "Q62082464", "name": "Mlinar", "shop": "bakery"}, "countryCodes": ["ba", "hr", "sl"], "matchScore": 2, "suggestion": true}, @@ -2518,17 +2634,18 @@ "shop/bakery/Ronde des Pains": {"name": "Ronde des Pains", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q3441707"}, "addTags": {"brand": "Ronde des Pains", "brand:wikidata": "Q3441707", "brand:wikipedia": "fr:Ronde des Pains", "name": "Ronde des Pains", "shop": "bakery"}, "removeTags": {"brand": "Ronde des Pains", "brand:wikidata": "Q3441707", "brand:wikipedia": "fr:Ronde des Pains", "name": "Ronde des Pains", "shop": "bakery"}, "matchScore": 2, "suggestion": true}, "shop/bakery/Schäfer's": {"name": "Schäfer's", "icon": "maki-bakery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSch%C3%A4fers%20Brot%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q1464562"}, "addTags": {"brand": "Schäfer's", "brand:wikidata": "Q1464562", "brand:wikipedia": "de:Schäfers Brot", "name": "Schäfer's", "shop": "bakery"}, "removeTags": {"brand": "Schäfer's", "brand:wikidata": "Q1464562", "brand:wikipedia": "de:Schäfers Brot", "name": "Schäfer's", "shop": "bakery"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/bakery/Sehne": {"name": "Sehne", "icon": "maki-bakery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSehne%20Backwaren%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q1314761"}, "addTags": {"brand": "Sehne", "brand:wikidata": "Q1314761", "brand:wikipedia": "de:Sehne Backwaren", "name": "Sehne", "shop": "bakery"}, "removeTags": {"brand": "Sehne", "brand:wikidata": "Q1314761", "brand:wikipedia": "de:Sehne Backwaren", "name": "Sehne", "shop": "bakery"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/bakery/Steinecke": {"name": "Steinecke", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/brotmeisterei.steinecke/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q57516278"}, "addTags": {"brand": "Steinecke", "brand:wikidata": "Q57516278", "name": "Steinecke", "shop": "bakery"}, "removeTags": {"brand": "Steinecke", "brand:wikidata": "Q57516278", "name": "Steinecke", "shop": "bakery"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/bakery/Steinecke": {"name": "Steinecke", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/brotmeisterei.steinecke/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q57516278"}, "addTags": {"brand": "Steinecke", "brand:wikidata": "Q57516278", "brand:wikipedia": "de:Meisterbäckerei Steinecke", "name": "Steinecke", "shop": "bakery"}, "removeTags": {"brand": "Steinecke", "brand:wikidata": "Q57516278", "brand:wikipedia": "de:Meisterbäckerei Steinecke", "name": "Steinecke", "shop": "bakery"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/bakery/Sternenbäck": {"name": "Sternenbäck", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/sternenbaeck/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q62595021"}, "addTags": {"brand": "Sternenbäck", "brand:wikidata": "Q62595021", "name": "Sternenbäck", "shop": "bakery"}, "removeTags": {"brand": "Sternenbäck", "brand:wikidata": "Q62595021", "name": "Sternenbäck", "shop": "bakery"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/bakery/Ströck": {"name": "Ströck", "icon": "maki-bakery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%204C.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q2357607"}, "addTags": {"brand": "Ströck", "brand:wikidata": "Q2357607", "brand:wikipedia": "de:Ströck-Brot", "name": "Ströck", "shop": "bakery"}, "removeTags": {"brand": "Ströck", "brand:wikidata": "Q2357607", "brand:wikipedia": "de:Ströck-Brot", "name": "Ströck", "shop": "bakery"}, "countryCodes": ["at"], "matchScore": 2, "suggestion": true}, "shop/bakery/Wiener Feinbäcker": {"name": "Wiener Feinbäcker", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q15854357"}, "addTags": {"brand": "Wiener Feinbäcker", "brand:wikidata": "Q15854357", "brand:wikipedia": "de:Wiener Feinbäckerei Heberer", "name": "Wiener Feinbäcker", "shop": "bakery"}, "removeTags": {"brand": "Wiener Feinbäcker", "brand:wikidata": "Q15854357", "brand:wikipedia": "de:Wiener Feinbäckerei Heberer", "name": "Wiener Feinbäcker", "shop": "bakery"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/bakery/von Allwörden": {"name": "von Allwörden", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/allwoerden/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q60411349"}, "addTags": {"brand": "von Allwörden", "brand:wikidata": "Q60411349", "brand:wikipedia": "nds:Heinrich von Allwörden GmbH", "name": "von Allwörden", "shop": "bakery"}, "removeTags": {"brand": "von Allwörden", "brand:wikidata": "Q60411349", "brand:wikipedia": "nds:Heinrich von Allwörden GmbH", "name": "von Allwörden", "shop": "bakery"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/bakery/뚜레쥬르": {"name": "뚜레쥬르", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/TousLesJoursUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q3535609"}, "addTags": {"brand": "뚜레쥬르", "brand:en": "Tous Les Jours", "brand:wikidata": "Q3535609", "brand:wikipedia": "ko:뚜레쥬르", "name": "뚜레쥬르", "name:en": "Tous Les Jours", "shop": "bakery"}, "removeTags": {"brand": "뚜레쥬르", "brand:en": "Tous Les Jours", "brand:wikidata": "Q3535609", "brand:wikipedia": "ko:뚜레쥬르", "name": "뚜레쥬르", "name:en": "Tous Les Jours", "shop": "bakery"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, + "shop/bakery/뚜레쥬르": {"name": "뚜레쥬르", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/TousLesJoursUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q3535609"}, "addTags": {"brand": "뚜레쥬르", "brand:en": "Tous Les Jours", "brand:ko": "뚜레쥬르", "brand:wikidata": "Q3535609", "brand:wikipedia": "ko:뚜레쥬르", "name": "뚜레쥬르", "name:en": "Tous Les Jours", "name:ko": "뚜레쥬르", "shop": "bakery"}, "removeTags": {"brand": "뚜레쥬르", "brand:en": "Tous Les Jours", "brand:ko": "뚜레쥬르", "brand:wikidata": "Q3535609", "brand:wikipedia": "ko:뚜레쥬르", "name": "뚜레쥬르", "name:en": "Tous Les Jours", "name:ko": "뚜레쥬르", "shop": "bakery"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, "shop/beauty/Bath & Body Works": {"name": "Bath & Body Works", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1077920705352777733/OtRwUUoo_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "beauty", "brand:wikidata": "Q810773"}, "addTags": {"brand": "Bath & Body Works", "brand:wikidata": "Q810773", "brand:wikipedia": "en:Bath & Body Works", "name": "Bath & Body Works", "shop": "beauty"}, "removeTags": {"brand": "Bath & Body Works", "brand:wikidata": "Q810773", "brand:wikipedia": "en:Bath & Body Works", "name": "Bath & Body Works", "shop": "beauty"}, "matchScore": 2, "suggestion": true}, - "shop/beauty/European Wax Center": {"name": "European Wax Center", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "beauty", "brand:wikidata": "Q5413426"}, "addTags": {"brand": "European Wax Center", "brand:wikidata": "Q5413426", "brand:wikipedia": "en:European Wax Center", "name": "European Wax Center", "shop": "beauty"}, "removeTags": {"brand": "European Wax Center", "brand:wikidata": "Q5413426", "brand:wikipedia": "en:European Wax Center", "name": "European Wax Center", "shop": "beauty"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/beauty/European Wax Center": {"name": "European Wax Center", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "beauty", "brand:wikidata": "Q5413426"}, "addTags": {"beauty": "waxing", "brand": "European Wax Center", "brand:wikidata": "Q5413426", "brand:wikipedia": "en:European Wax Center", "name": "European Wax Center", "shop": "beauty"}, "removeTags": {"beauty": "waxing", "brand": "European Wax Center", "brand:wikidata": "Q5413426", "brand:wikipedia": "en:European Wax Center", "name": "European Wax Center", "shop": "beauty"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/beauty/Marionnaud": {"name": "Marionnaud", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Marionnaud.France/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "beauty", "brand:wikidata": "Q1129073"}, "addTags": {"brand": "Marionnaud", "brand:wikidata": "Q1129073", "brand:wikipedia": "fr:Marionnaud", "name": "Marionnaud", "shop": "beauty"}, "removeTags": {"brand": "Marionnaud", "brand:wikidata": "Q1129073", "brand:wikipedia": "fr:Marionnaud", "name": "Marionnaud", "shop": "beauty"}, "matchScore": 2, "suggestion": true}, "shop/beauty/Ulta Beauty": {"name": "Ulta Beauty", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/UltaBeauty/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "beauty", "brand:wikidata": "Q7880076"}, "addTags": {"brand": "Ulta Beauty", "brand:wikidata": "Q7880076", "brand:wikipedia": "en:Ulta Beauty", "name": "Ulta Beauty", "shop": "beauty"}, "removeTags": {"brand": "Ulta Beauty", "brand:wikidata": "Q7880076", "brand:wikipedia": "en:Ulta Beauty", "name": "Ulta Beauty", "shop": "beauty"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/beauty/Yves Rocher": {"name": "Yves Rocher", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/YvesRocherUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "beauty", "brand:wikidata": "Q28496595"}, "addTags": {"brand": "Yves Rocher", "brand:wikidata": "Q28496595", "brand:wikipedia": "en:Yves Rocher (company)", "name": "Yves Rocher", "shop": "beauty"}, "removeTags": {"brand": "Yves Rocher", "brand:wikidata": "Q28496595", "brand:wikipedia": "en:Yves Rocher (company)", "name": "Yves Rocher", "shop": "beauty"}, "matchScore": 2, "suggestion": true}, - "shop/bed/Dreams": {"name": "Dreams", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/dreamsbeds/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bed", "brand:wikidata": "Q5306688"}, "addTags": {"brand": "Dreams", "brand:wikidata": "Q5306688", "brand:wikipedia": "en:Dreams (bed retailer)", "name": "Dreams", "shop": "bed"}, "removeTags": {"brand": "Dreams", "brand:wikidata": "Q5306688", "brand:wikipedia": "en:Dreams (bed retailer)", "name": "Dreams", "shop": "bed"}, "countryCodes": ["uk"], "matchScore": 2, "suggestion": true}, + "shop/bed/Dreams": {"name": "Dreams", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/dreamsbeds/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bed", "brand:wikidata": "Q5306688"}, "addTags": {"brand": "Dreams", "brand:wikidata": "Q5306688", "brand:wikipedia": "en:Dreams (bed retailer)", "name": "Dreams", "shop": "bed"}, "removeTags": {"brand": "Dreams", "brand:wikidata": "Q5306688", "brand:wikipedia": "en:Dreams (bed retailer)", "name": "Dreams", "shop": "bed"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "shop/bed/Matratzen Concord": {"name": "Matratzen Concord", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/MatratzenConcord/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bed", "brand:wikidata": "Q18629057"}, "addTags": {"brand": "Matratzen Concord", "brand:wikidata": "Q18629057", "brand:wikipedia": "de:Matratzen Concord", "name": "Matratzen Concord", "shop": "bed"}, "removeTags": {"brand": "Matratzen Concord", "brand:wikidata": "Q18629057", "brand:wikipedia": "de:Matratzen Concord", "name": "Matratzen Concord", "shop": "bed"}, "countryCodes": ["at", "ch", "de"], "matchScore": 2, "suggestion": true}, "shop/bed/Mattress Firm": {"name": "Mattress Firm", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/MattressFirm/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bed", "brand:wikidata": "Q6791878"}, "addTags": {"brand": "Mattress Firm", "brand:wikidata": "Q6791878", "brand:wikipedia": "en:Mattress Firm", "name": "Mattress Firm", "shop": "bed"}, "removeTags": {"brand": "Mattress Firm", "brand:wikidata": "Q6791878", "brand:wikipedia": "en:Mattress Firm", "name": "Mattress Firm", "shop": "bed"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/bed/Mattress Warehouse": {"name": "Mattress Warehouse", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/mattresswhse/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bed", "brand:wikidata": "Q61995079"}, "addTags": {"brand": "Mattress Warehouse", "brand:wikidata": "Q61995079", "name": "Mattress Warehouse", "shop": "bed"}, "removeTags": {"brand": "Mattress Warehouse", "brand:wikidata": "Q61995079", "name": "Mattress Warehouse", "shop": "bed"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, @@ -2538,12 +2655,13 @@ "shop/beverages/Dursty": {"name": "Dursty", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDursty%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "beverages", "brand:wikidata": "Q1267518"}, "addTags": {"brand": "Dursty", "brand:wikidata": "Q1267518", "brand:wikipedia": "de:Dursty Getränkemärkte", "name": "Dursty", "shop": "beverages"}, "removeTags": {"brand": "Dursty", "brand:wikidata": "Q1267518", "brand:wikipedia": "de:Dursty Getränkemärkte", "name": "Dursty", "shop": "beverages"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/beverages/Edeka Getränkemarkt": {"name": "Edeka Getränkemarkt", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "beverages", "brand:wikidata": "Q57450576"}, "addTags": {"brand": "Edeka Getränkemarkt", "brand:wikidata": "Q57450576", "name": "Edeka Getränkemarkt", "shop": "beverages"}, "removeTags": {"brand": "Edeka Getränkemarkt", "brand:wikidata": "Q57450576", "name": "Edeka Getränkemarkt", "shop": "beverages"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/beverages/Fristo": {"name": "Fristo", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "beverages", "brand:wikidata": "Q1465151"}, "addTags": {"brand": "Fristo", "brand:wikidata": "Q1465151", "brand:wikipedia": "de:Fristo", "name": "Fristo", "shop": "beverages"}, "removeTags": {"brand": "Fristo", "brand:wikidata": "Q1465151", "brand:wikipedia": "de:Fristo", "name": "Fristo", "shop": "beverages"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, - "shop/beverages/Getränke Hoffmann": {"name": "Getränke Hoffmann", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGetr%C3%A4nke%20Hoffmann%20Logo.tif&width=100", "geometry": ["point", "area"], "tags": {"shop": "beverages", "brand:wikidata": "Q19284021"}, "addTags": {"brand": "Getränke Hoffmann", "brand:wikidata": "Q19284021", "brand:wikipedia": "de:Getränke Hoffmann", "name": "Getränke Hoffmann", "shop": "beverages"}, "removeTags": {"brand": "Getränke Hoffmann", "brand:wikidata": "Q19284021", "brand:wikipedia": "de:Getränke Hoffmann", "name": "Getränke Hoffmann", "shop": "beverages"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/beverages/Getränke Hoffmann": {"name": "Getränke Hoffmann", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/getraenkehoffmann/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "beverages", "brand:wikidata": "Q19284021"}, "addTags": {"brand": "Getränke Hoffmann", "brand:wikidata": "Q19284021", "brand:wikipedia": "de:Getränke Hoffmann", "name": "Getränke Hoffmann", "shop": "beverages"}, "removeTags": {"brand": "Getränke Hoffmann", "brand:wikidata": "Q19284021", "brand:wikipedia": "de:Getränke Hoffmann", "name": "Getränke Hoffmann", "shop": "beverages"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/beverages/Getränkeland": {"name": "Getränkeland", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Getraenkeland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "beverages", "brand:wikidata": "Q62594849"}, "addTags": {"brand": "Getränkeland", "brand:wikidata": "Q62594849", "name": "Getränkeland", "shop": "beverages"}, "removeTags": {"brand": "Getränkeland", "brand:wikidata": "Q62594849", "name": "Getränkeland", "shop": "beverages"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/beverages/Hol'ab": {"name": "Hol'ab", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20hol%20ab.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "beverages", "brand:wikidata": "Q57557270"}, "addTags": {"brand": "Hol'ab", "brand:wikidata": "Q57557270", "name": "Hol'ab", "shop": "beverages"}, "removeTags": {"brand": "Hol'ab", "brand:wikidata": "Q57557270", "name": "Hol'ab", "shop": "beverages"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/beverages/Orterer Getränkemarkt": {"name": "Orterer Getränkemarkt", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "beverages", "brand:wikidata": "Q23787118"}, "addTags": {"brand": "Orterer Getränkemarkt", "brand:wikidata": "Q23787118", "brand:wikipedia": "de:Orterer Gruppe", "name": "Orterer Getränkemarkt", "shop": "beverages"}, "removeTags": {"brand": "Orterer Getränkemarkt", "brand:wikidata": "Q23787118", "brand:wikipedia": "de:Orterer Gruppe", "name": "Orterer Getränkemarkt", "shop": "beverages"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/beverages/Rewe Getränkemarkt": {"name": "Rewe Getränkemarkt", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "beverages", "brand:wikidata": "Q57519344"}, "addTags": {"brand": "Rewe Getränkemarkt", "brand:wikidata": "Q57519344", "name": "Rewe Getränkemarkt", "shop": "beverages"}, "removeTags": {"brand": "Rewe Getränkemarkt", "brand:wikidata": "Q57519344", "name": "Rewe Getränkemarkt", "shop": "beverages"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/beverages/Trinkgut": {"name": "Trinkgut", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTrinkgut%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "beverages", "brand:wikidata": "Q2453627"}, "addTags": {"brand": "Trinkgut", "brand:wikidata": "Q2453627", "brand:wikipedia": "de:Trinkgut", "name": "Trinkgut", "shop": "beverages"}, "removeTags": {"brand": "Trinkgut", "brand:wikidata": "Q2453627", "brand:wikipedia": "de:Trinkgut", "name": "Trinkgut", "shop": "beverages"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/beverages/清心福全": {"name": "清心福全", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "beverages", "brand:wikidata": "Q10391229"}, "addTags": {"brand": "清心福全", "brand:wikidata": "Q10391229", "brand:wikipedia": "zh:清心福全冷飲站", "name": "清心福全", "shop": "beverages"}, "removeTags": {"brand": "清心福全", "brand:wikidata": "Q10391229", "brand:wikipedia": "zh:清心福全冷飲站", "name": "清心福全", "shop": "beverages"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, + "shop/beverages/Trinkgut": {"name": "Trinkgut", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/trinkgut/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "beverages", "brand:wikidata": "Q2453627"}, "addTags": {"brand": "Trinkgut", "brand:wikidata": "Q2453627", "brand:wikipedia": "de:Trinkgut", "name": "Trinkgut", "shop": "beverages"}, "removeTags": {"brand": "Trinkgut", "brand:wikidata": "Q2453627", "brand:wikipedia": "de:Trinkgut", "name": "Trinkgut", "shop": "beverages"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/beverages/清心福全": {"name": "清心福全", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/chingshin1987/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "beverages", "brand:wikidata": "Q10391229"}, "addTags": {"brand": "清心福全", "brand:wikidata": "Q10391229", "brand:wikipedia": "zh:清心福全冷飲站", "name": "清心福全", "shop": "beverages"}, "removeTags": {"brand": "清心福全", "brand:wikidata": "Q10391229", "brand:wikipedia": "zh:清心福全冷飲站", "name": "清心福全", "shop": "beverages"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "shop/bicycle/Evans Cycles": {"name": "Evans Cycles", "icon": "maki-bicycle", "imageURL": "https://graph.facebook.com/evanscycles/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bicycle", "brand:wikidata": "Q5415901"}, "addTags": {"brand": "Evans Cycles", "brand:wikidata": "Q5415901", "brand:wikipedia": "en:Evans Cycles", "name": "Evans Cycles", "shop": "bicycle"}, "removeTags": {"brand": "Evans Cycles", "brand:wikidata": "Q5415901", "brand:wikipedia": "en:Evans Cycles", "name": "Evans Cycles", "shop": "bicycle"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "shop/bicycle/Fri BikeShop": {"name": "Fri BikeShop", "icon": "maki-bicycle", "imageURL": "https://graph.facebook.com/Cykelbutikken/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bicycle", "brand:wikidata": "Q26721030"}, "addTags": {"brand": "Fri BikeShop", "brand:wikidata": "Q26721030", "name": "Fri BikeShop", "shop": "bicycle"}, "removeTags": {"brand": "Fri BikeShop", "brand:wikidata": "Q26721030", "name": "Fri BikeShop", "shop": "bicycle"}, "countryCodes": ["dk"], "matchScore": 2, "suggestion": true}, "shop/bicycle/Giant": {"name": "Giant", "icon": "maki-bicycle", "imageURL": "https://graph.facebook.com/giantbicycles/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bicycle", "brand:wikidata": "Q703557"}, "addTags": {"brand": "Giant", "brand:wikidata": "Q703557", "brand:wikipedia": "en:Giant Bicycles", "name": "Giant", "shop": "bicycle"}, "removeTags": {"brand": "Giant", "brand:wikidata": "Q703557", "brand:wikipedia": "en:Giant Bicycles", "name": "Giant", "shop": "bicycle"}, "matchScore": 2, "suggestion": true}, @@ -2558,31 +2676,32 @@ "shop/bookmaker/ΟΠΑΠ": {"name": "ΟΠΑΠ", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "bookmaker", "brand:wikidata": "Q2007823"}, "addTags": {"brand": "ΟΠΑΠ", "brand:el": "ΟΠΑΠ", "brand:en": "OPAP", "brand:wikidata": "Q2007823", "brand:wikipedia": "en:OPAP", "name": "ΟΠΑΠ", "name:el": "ΟΠΑΠ", "name:en": "OPAP", "shop": "bookmaker"}, "removeTags": {"brand": "ΟΠΑΠ", "brand:el": "ΟΠΑΠ", "brand:en": "OPAP", "brand:wikidata": "Q2007823", "brand:wikipedia": "en:OPAP", "name": "ΟΠΑΠ", "name:el": "ΟΠΑΠ", "name:en": "OPAP", "shop": "bookmaker"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, "shop/bookmaker/Лига ставок": {"name": "Лига ставок", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "bookmaker", "brand:wikidata": "Q6545804"}, "addTags": {"brand": "Лига ставок", "brand:en": "Liga Stavok", "brand:ru": "Лига ставок", "brand:wikidata": "Q6545804", "brand:wikipedia": "ru:Лига Ставок", "name": "Лига ставок", "name:en": "Liga Stavok", "name:ru": "Лига ставок", "shop": "bookmaker"}, "removeTags": {"brand": "Лига ставок", "brand:en": "Liga Stavok", "brand:ru": "Лига ставок", "brand:wikidata": "Q6545804", "brand:wikipedia": "ru:Лига Ставок", "name": "Лига ставок", "name:en": "Liga Stavok", "name:ru": "Лига ставок", "shop": "bookmaker"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/bookmaker/Фонбет": {"name": "Фонбет", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFonbet%20logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "bookmaker", "brand:wikidata": "Q49137910"}, "addTags": {"brand": "Фонбет", "brand:en": "Fonbet", "brand:ru": "Фонбет", "brand:wikidata": "Q49137910", "brand:wikipedia": "ru:Фонбет", "name": "Фонбет", "name:en": "Fonbet", "name:ru": "Фонбет", "shop": "bookmaker"}, "removeTags": {"brand": "Фонбет", "brand:en": "Fonbet", "brand:ru": "Фонбет", "brand:wikidata": "Q49137910", "brand:wikipedia": "ru:Фонбет", "name": "Фонбет", "name:en": "Fonbet", "name:ru": "Фонбет", "shop": "bookmaker"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/books/Akademibokhandeln": {"name": "Akademibokhandeln", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q10403918"}, "addTags": {"brand": "Akademibokhandeln", "brand:wikidata": "Q10403918", "brand:wikipedia": "sv:Akademibokhandeln", "name": "Akademibokhandeln", "shop": "books"}, "removeTags": {"brand": "Akademibokhandeln", "brand:wikidata": "Q10403918", "brand:wikipedia": "sv:Akademibokhandeln", "name": "Akademibokhandeln", "shop": "books"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, - "shop/books/Barnes & Noble": {"name": "Barnes & Noble", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1093981584842207232/tlsafBnB_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q795454"}, "addTags": {"brand": "Barnes & Noble", "brand:wikidata": "Q795454", "brand:wikipedia": "en:Barnes & Noble", "name": "Barnes & Noble", "shop": "books"}, "removeTags": {"brand": "Barnes & Noble", "brand:wikidata": "Q795454", "brand:wikipedia": "en:Barnes & Noble", "name": "Barnes & Noble", "shop": "books"}, "matchScore": 2, "suggestion": true}, - "shop/books/Bruna": {"name": "Bruna", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q3317555"}, "addTags": {"brand": "Bruna", "brand:wikidata": "Q3317555", "brand:wikipedia": "en:Bruna (company)", "name": "Bruna", "shop": "books"}, "removeTags": {"brand": "Bruna", "brand:wikidata": "Q3317555", "brand:wikipedia": "en:Bruna (company)", "name": "Bruna", "shop": "books"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, + "shop/books/Akademibokhandeln": {"name": "Akademibokhandeln", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Akademibokhandeln/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q10403918"}, "addTags": {"brand": "Akademibokhandeln", "brand:wikidata": "Q10403918", "brand:wikipedia": "sv:Akademibokhandeln", "name": "Akademibokhandeln", "shop": "books"}, "removeTags": {"brand": "Akademibokhandeln", "brand:wikidata": "Q10403918", "brand:wikipedia": "sv:Akademibokhandeln", "name": "Akademibokhandeln", "shop": "books"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, + "shop/books/Barnes & Noble": {"name": "Barnes & Noble", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/barnesandnoble/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q795454"}, "addTags": {"brand": "Barnes & Noble", "brand:wikidata": "Q795454", "brand:wikipedia": "en:Barnes & Noble", "name": "Barnes & Noble", "shop": "books"}, "removeTags": {"brand": "Barnes & Noble", "brand:wikidata": "Q795454", "brand:wikipedia": "en:Barnes & Noble", "name": "Barnes & Noble", "shop": "books"}, "matchScore": 2, "suggestion": true}, + "shop/books/Bruna": {"name": "Bruna", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Brunawinkels/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q3317555"}, "addTags": {"brand": "Bruna", "brand:wikidata": "Q3317555", "brand:wikipedia": "en:Bruna (company)", "name": "Bruna", "shop": "books"}, "removeTags": {"brand": "Bruna", "brand:wikidata": "Q3317555", "brand:wikipedia": "en:Bruna (company)", "name": "Bruna", "shop": "books"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, "shop/books/Chapters": {"name": "Chapters", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChapters%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q5073540"}, "addTags": {"brand": "Chapters", "brand:wikidata": "Q5073540", "brand:wikipedia": "en:Chapters (bookstore)", "name": "Chapters", "shop": "books"}, "removeTags": {"brand": "Chapters", "brand:wikidata": "Q5073540", "brand:wikipedia": "en:Chapters (bookstore)", "name": "Chapters", "shop": "books"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, - "shop/books/Empik": {"name": "Empik", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogoEmpik.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q3045978"}, "addTags": {"brand": "Empik", "brand:wikidata": "Q3045978", "brand:wikipedia": "pl:Empik", "name": "Empik", "shop": "books"}, "removeTags": {"brand": "Empik", "brand:wikidata": "Q3045978", "brand:wikipedia": "pl:Empik", "name": "Empik", "shop": "books"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/books/Fnac": {"name": "Fnac", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1020280617630674944/ZhhGv6rx_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q676585"}, "addTags": {"brand": "Fnac", "brand:wikidata": "Q676585", "brand:wikipedia": "en:Fnac", "name": "Fnac", "shop": "books"}, "removeTags": {"brand": "Fnac", "brand:wikidata": "Q676585", "brand:wikipedia": "en:Fnac", "name": "Fnac", "shop": "books"}, "countryCodes": ["be", "ch", "es", "fr", "nl", "pt"], "matchScore": 2, "suggestion": true}, - "shop/books/Half Price Books": {"name": "Half Price Books", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q5641744"}, "addTags": {"brand": "Half Price Books", "brand:wikidata": "Q5641744", "brand:wikipedia": "en:Half Price Books", "name": "Half Price Books", "shop": "books"}, "removeTags": {"brand": "Half Price Books", "brand:wikidata": "Q5641744", "brand:wikipedia": "en:Half Price Books", "name": "Half Price Books", "shop": "books"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/books/Cultura": {"name": "Cultura", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/culturafr/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q3007154"}, "addTags": {"brand": "Cultura", "brand:wikidata": "Q3007154", "brand:wikipedia": "fr:Cultura", "name": "Cultura", "shop": "books"}, "removeTags": {"brand": "Cultura", "brand:wikidata": "Q3007154", "brand:wikipedia": "fr:Cultura", "name": "Cultura", "shop": "books"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/books/Empik": {"name": "Empik", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/empikcom/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q3045978"}, "addTags": {"brand": "Empik", "brand:wikidata": "Q3045978", "brand:wikipedia": "pl:Empik", "name": "Empik", "shop": "books"}, "removeTags": {"brand": "Empik", "brand:wikidata": "Q3045978", "brand:wikipedia": "pl:Empik", "name": "Empik", "shop": "books"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/books/Fnac": {"name": "Fnac", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Fnac/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q676585"}, "addTags": {"brand": "Fnac", "brand:wikidata": "Q676585", "brand:wikipedia": "en:Fnac", "name": "Fnac", "shop": "books"}, "removeTags": {"brand": "Fnac", "brand:wikidata": "Q676585", "brand:wikipedia": "en:Fnac", "name": "Fnac", "shop": "books"}, "countryCodes": ["be", "ch", "es", "fr", "nl", "pt"], "matchScore": 2, "suggestion": true}, + "shop/books/Half Price Books": {"name": "Half Price Books", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/halfpricebooks/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q5641744"}, "addTags": {"brand": "Half Price Books", "brand:wikidata": "Q5641744", "brand:wikipedia": "en:Half Price Books", "name": "Half Price Books", "shop": "books"}, "removeTags": {"brand": "Half Price Books", "brand:wikidata": "Q5641744", "brand:wikipedia": "en:Half Price Books", "name": "Half Price Books", "shop": "books"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/books/Hugendubel": {"name": "Hugendubel", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/hugendubelbuchhandlungen/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q1634142"}, "addTags": {"brand": "Hugendubel", "brand:wikidata": "Q1634142", "brand:wikipedia": "en:Hugendubel", "name": "Hugendubel", "shop": "books"}, "removeTags": {"brand": "Hugendubel", "brand:wikidata": "Q1634142", "brand:wikipedia": "en:Hugendubel", "name": "Hugendubel", "shop": "books"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/books/Mondadori": {"name": "Mondadori", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMondadori.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q85355"}, "addTags": {"brand": "Mondadori", "brand:wikidata": "Q85355", "brand:wikipedia": "en:Arnoldo Mondadori Editore", "name": "Mondadori", "shop": "books"}, "removeTags": {"brand": "Mondadori", "brand:wikidata": "Q85355", "brand:wikipedia": "en:Arnoldo Mondadori Editore", "name": "Mondadori", "shop": "books"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, + "shop/books/Mondadori": {"name": "Mondadori", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/GruppoMondadori/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q85355"}, "addTags": {"brand": "Mondadori", "brand:wikidata": "Q85355", "brand:wikipedia": "en:Arnoldo Mondadori Editore", "name": "Mondadori", "shop": "books"}, "removeTags": {"brand": "Mondadori", "brand:wikidata": "Q85355", "brand:wikipedia": "en:Arnoldo Mondadori Editore", "name": "Mondadori", "shop": "books"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, "shop/books/National Book Store": {"name": "National Book Store", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/nbsalert/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q6971094"}, "addTags": {"brand": "National Book Store", "brand:wikidata": "Q6971094", "brand:wikipedia": "en:National Book Store", "name": "National Book Store", "shop": "books"}, "removeTags": {"brand": "National Book Store", "brand:wikidata": "Q6971094", "brand:wikipedia": "en:National Book Store", "name": "National Book Store", "shop": "books"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, - "shop/books/Standaard Boekhandel": {"name": "Standaard Boekhandel", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q3496554"}, "addTags": {"brand": "Standaard Boekhandel", "brand:wikidata": "Q3496554", "brand:wikipedia": "nl:Standaard Boekhandel", "name": "Standaard Boekhandel", "shop": "books"}, "removeTags": {"brand": "Standaard Boekhandel", "brand:wikidata": "Q3496554", "brand:wikipedia": "nl:Standaard Boekhandel", "name": "Standaard Boekhandel", "shop": "books"}, "countryCodes": ["be"], "matchScore": 2, "suggestion": true}, - "shop/books/TSUTAYA": {"name": "TSUTAYA", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCulture%20Convenience%20Club%20(CCC)%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q5193457"}, "addTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "books"}, "removeTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/books/Thalia": {"name": "Thalia", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20thalia%20rgb%2004%2009%202018.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q2408854"}, "addTags": {"brand": "Thalia", "brand:wikidata": "Q2408854", "brand:wikipedia": "de:Thalia Bücher", "name": "Thalia", "shop": "books"}, "removeTags": {"brand": "Thalia", "brand:wikidata": "Q2408854", "brand:wikipedia": "de:Thalia Bücher", "name": "Thalia", "shop": "books"}, "countryCodes": ["at", "ch", "de"], "matchScore": 2, "suggestion": true}, - "shop/books/The Works": {"name": "The Works", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1066979738982461440/rTCTlJHQ_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q7775853"}, "addTags": {"brand": "The Works", "brand:wikidata": "Q7775853", "brand:wikipedia": "en:The Works (retailer)", "name": "The Works", "shop": "books"}, "removeTags": {"brand": "The Works", "brand:wikidata": "Q7775853", "brand:wikipedia": "en:The Works (retailer)", "name": "The Works", "shop": "books"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, - "shop/books/WHSmith": {"name": "WHSmith", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWHSmith.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q1548712"}, "addTags": {"brand": "WHSmith", "brand:wikidata": "Q1548712", "brand:wikipedia": "en:WHSmith", "name": "WHSmith", "shop": "books"}, "removeTags": {"brand": "WHSmith", "brand:wikidata": "Q1548712", "brand:wikipedia": "en:WHSmith", "name": "WHSmith", "shop": "books"}, "countryCodes": ["au", "bh", "br", "cn", "de", "dk", "fi", "fj", "fr", "gi", "gr", "id", "ie", "in", "it", "jo", "kw", "mt", "my", "nl", "no"], "matchScore": 2, "suggestion": true}, - "shop/books/Waterstones": {"name": "Waterstones", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1079909723644837888/HfOKyVNn_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q151779"}, "addTags": {"brand": "Waterstones", "brand:wikidata": "Q151779", "brand:wikipedia": "en:Waterstones", "name": "Waterstones", "shop": "books"}, "removeTags": {"brand": "Waterstones", "brand:wikidata": "Q151779", "brand:wikipedia": "en:Waterstones", "name": "Waterstones", "shop": "books"}, "countryCodes": ["be", "gb", "ie", "je", "nl"], "matchScore": 2, "suggestion": true}, + "shop/books/Standaard Boekhandel": {"name": "Standaard Boekhandel", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/standaardboekhandel/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q3496554"}, "addTags": {"brand": "Standaard Boekhandel", "brand:wikidata": "Q3496554", "brand:wikipedia": "nl:Standaard Boekhandel", "name": "Standaard Boekhandel", "shop": "books"}, "removeTags": {"brand": "Standaard Boekhandel", "brand:wikidata": "Q3496554", "brand:wikipedia": "nl:Standaard Boekhandel", "name": "Standaard Boekhandel", "shop": "books"}, "countryCodes": ["be"], "matchScore": 2, "suggestion": true}, + "shop/books/TSUTAYA": {"name": "TSUTAYA", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1016247734720851968/R9agm3pA_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q5193457"}, "addTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "books"}, "removeTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/books/Thalia": {"name": "Thalia", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/thalia.de/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q2408854"}, "addTags": {"brand": "Thalia", "brand:wikidata": "Q2408854", "brand:wikipedia": "de:Thalia Bücher", "name": "Thalia", "shop": "books"}, "removeTags": {"brand": "Thalia", "brand:wikidata": "Q2408854", "brand:wikipedia": "de:Thalia Bücher", "name": "Thalia", "shop": "books"}, "countryCodes": ["at", "ch", "de"], "matchScore": 2, "suggestion": true}, + "shop/books/The Works": {"name": "The Works", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/TheWorksStores/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q7775853"}, "addTags": {"brand": "The Works", "brand:wikidata": "Q7775853", "brand:wikipedia": "en:The Works (retailer)", "name": "The Works", "shop": "books"}, "removeTags": {"brand": "The Works", "brand:wikidata": "Q7775853", "brand:wikipedia": "en:The Works (retailer)", "name": "The Works", "shop": "books"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, + "shop/books/WHSmith": {"name": "WHSmith", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/WHSmithuk/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q1548712"}, "addTags": {"brand": "WHSmith", "brand:wikidata": "Q1548712", "brand:wikipedia": "en:WHSmith", "name": "WHSmith", "shop": "books"}, "removeTags": {"brand": "WHSmith", "brand:wikidata": "Q1548712", "brand:wikipedia": "en:WHSmith", "name": "WHSmith", "shop": "books"}, "countryCodes": ["au", "bh", "br", "cn", "de", "dk", "fi", "fj", "fr", "gi", "gr", "id", "ie", "in", "it", "jo", "kw", "mt", "my", "nl", "no"], "matchScore": 2, "suggestion": true}, + "shop/books/Waterstones": {"name": "Waterstones", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/waterstones/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q151779"}, "addTags": {"brand": "Waterstones", "brand:wikidata": "Q151779", "brand:wikipedia": "en:Waterstones", "name": "Waterstones", "shop": "books"}, "removeTags": {"brand": "Waterstones", "brand:wikidata": "Q151779", "brand:wikipedia": "en:Waterstones", "name": "Waterstones", "shop": "books"}, "countryCodes": ["be", "gb", "ie", "je", "nl"], "matchScore": 2, "suggestion": true}, "shop/books/Weltbild": {"name": "Weltbild", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/weltbild/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q883522"}, "addTags": {"brand": "Weltbild", "brand:wikidata": "Q883522", "brand:wikipedia": "en:Weltbild Publishing Group", "name": "Weltbild", "shop": "books"}, "removeTags": {"brand": "Weltbild", "brand:wikidata": "Q883522", "brand:wikipedia": "en:Weltbild Publishing Group", "name": "Weltbild", "shop": "books"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/books/Буквоед": {"name": "Буквоед", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q4098549"}, "addTags": {"brand": "Буквоед", "brand:wikidata": "Q4098549", "brand:wikipedia": "ru:Буквоед", "name": "Буквоед", "shop": "books"}, "removeTags": {"brand": "Буквоед", "brand:wikidata": "Q4098549", "brand:wikipedia": "ru:Буквоед", "name": "Буквоед", "shop": "books"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/books/Дом книги": {"name": "Дом книги", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q48950742"}, "addTags": {"brand": "Дом книги", "brand:wikidata": "Q48950742", "brand:wikipedia": "ru:Московский дом книги", "name": "Дом книги", "shop": "books"}, "removeTags": {"brand": "Дом книги", "brand:wikidata": "Q48950742", "brand:wikipedia": "ru:Московский дом книги", "name": "Дом книги", "shop": "books"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/books/Читай-город": {"name": "Читай-город", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q4516645"}, "addTags": {"brand": "Читай-город", "brand:wikidata": "Q4516645", "brand:wikipedia": "ru:Читай-город", "name": "Читай-город", "shop": "books"}, "removeTags": {"brand": "Читай-город", "brand:wikidata": "Q4516645", "brand:wikipedia": "ru:Читай-город", "name": "Читай-город", "shop": "books"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/books/Буквоед": {"name": "Буквоед", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/SuperBookvoed/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q4098549"}, "addTags": {"brand": "Буквоед", "brand:wikidata": "Q4098549", "brand:wikipedia": "ru:Буквоед", "name": "Буквоед", "shop": "books"}, "removeTags": {"brand": "Буквоед", "brand:wikidata": "Q4098549", "brand:wikipedia": "ru:Буквоед", "name": "Буквоед", "shop": "books"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/books/Дом книги": {"name": "Дом книги", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/spbdk/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q48950742"}, "addTags": {"brand": "Дом книги", "brand:wikidata": "Q48950742", "brand:wikipedia": "ru:Московский дом книги", "name": "Дом книги", "shop": "books"}, "removeTags": {"brand": "Дом книги", "brand:wikidata": "Q48950742", "brand:wikipedia": "ru:Московский дом книги", "name": "Дом книги", "shop": "books"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/books/Читай-город": {"name": "Читай-город", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/chitaigorod/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q4516645"}, "addTags": {"brand": "Читай-город", "brand:wikidata": "Q4516645", "brand:wikipedia": "ru:Читай-город", "name": "Читай-город", "shop": "books"}, "removeTags": {"brand": "Читай-город", "brand:wikidata": "Q4516645", "brand:wikipedia": "ru:Читай-город", "name": "Читай-город", "shop": "books"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/books/あおい書店": {"name": "あおい書店", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/aoi.bookstore/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q11256783"}, "addTags": {"brand": "あおい書店", "brand:en": "AOI", "brand:ja": "あおい書店", "brand:wikidata": "Q11256783", "brand:wikipedia": "ja:あおい書店", "name": "あおい書店", "name:en": "AOI", "name:ja": "あおい書店", "shop": "books"}, "removeTags": {"brand": "あおい書店", "brand:en": "AOI", "brand:ja": "あおい書店", "brand:wikidata": "Q11256783", "brand:wikipedia": "ja:あおい書店", "name": "あおい書店", "name:en": "AOI", "name:ja": "あおい書店", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/books/ブックオフ": {"name": "ブックオフ", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/bookoffcorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q893011"}, "addTags": {"brand": "ブックオフ", "brand:en": "Book Off", "brand:ja": "ブックオフ", "brand:wikidata": "Q893011", "brand:wikipedia": "en:Book Off", "name": "ブックオフ", "name:en": "Book Off", "name:ja": "ブックオフ", "shop": "books"}, "removeTags": {"brand": "ブックオフ", "brand:en": "Book Off", "brand:ja": "ブックオフ", "brand:wikidata": "Q893011", "brand:wikipedia": "en:Book Off", "name": "ブックオフ", "name:en": "Book Off", "name:ja": "ブックオフ", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/books/メロンブックス": {"name": "メロンブックス", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/877364475304714240/Ael4G2BP_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q10851653"}, "addTags": {"brand": "メロンブックス", "brand:en": "Melonbooks", "brand:ja": "メロンブックス", "brand:wikidata": "Q10851653", "brand:wikipedia": "ja:メロンブックス", "name": "メロンブックス", "name:en": "Melonbooks", "name:ja": "メロンブックス", "shop": "books"}, "removeTags": {"brand": "メロンブックス", "brand:en": "Melonbooks", "brand:ja": "メロンブックス", "brand:wikidata": "Q10851653", "brand:wikipedia": "ja:メロンブックス", "name": "メロンブックス", "name:en": "Melonbooks", "name:ja": "メロンブックス", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/books/リブロ": {"name": "リブロ", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q6542768"}, "addTags": {"brand": "リブロ", "brand:en": "LIBRO", "brand:ja": "リブロ", "brand:wikidata": "Q6542768", "brand:wikipedia": "ja:リブロ", "name": "リブロ", "name:en": "Libro", "name:ja": "リブロ", "shop": "books"}, "removeTags": {"brand": "リブロ", "brand:en": "LIBRO", "brand:ja": "リブロ", "brand:wikidata": "Q6542768", "brand:wikipedia": "ja:リブロ", "name": "リブロ", "name:en": "Libro", "name:ja": "リブロ", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/books/三省堂書店": {"name": "三省堂書店", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q10866539"}, "addTags": {"brand": "三省堂書店", "brand:en": "Books Sanseido", "brand:ja": "三省堂書店", "brand:wikidata": "Q10866539", "brand:wikipedia": "ja:三省堂書店", "name": "三省堂書店", "name:en": "Books Sanseido", "name:ja": "三省堂書店", "shop": "books"}, "removeTags": {"brand": "三省堂書店", "brand:en": "Books Sanseido", "brand:ja": "三省堂書店", "brand:wikidata": "Q10866539", "brand:wikipedia": "ja:三省堂書店", "name": "三省堂書店", "name:en": "Books Sanseido", "name:ja": "三省堂書店", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/books/リブロ": {"name": "リブロ", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/624022283103801344/YjAC-2vv_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q6542768"}, "addTags": {"brand": "リブロ", "brand:en": "LIBRO", "brand:ja": "リブロ", "brand:wikidata": "Q6542768", "brand:wikipedia": "ja:リブロ", "name": "リブロ", "name:en": "Libro", "name:ja": "リブロ", "shop": "books"}, "removeTags": {"brand": "リブロ", "brand:en": "LIBRO", "brand:ja": "リブロ", "brand:wikidata": "Q6542768", "brand:wikipedia": "ja:リブロ", "name": "リブロ", "name:en": "Libro", "name:ja": "リブロ", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/books/三省堂書店": {"name": "三省堂書店", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/books.sanseido/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q10866539"}, "addTags": {"brand": "三省堂書店", "brand:en": "Books Sanseido", "brand:ja": "三省堂書店", "brand:wikidata": "Q10866539", "brand:wikipedia": "ja:三省堂書店", "name": "三省堂書店", "name:en": "Books Sanseido", "name:ja": "三省堂書店", "shop": "books"}, "removeTags": {"brand": "三省堂書店", "brand:en": "Books Sanseido", "brand:ja": "三省堂書店", "brand:wikidata": "Q10866539", "brand:wikipedia": "ja:三省堂書店", "name": "三省堂書店", "name:en": "Books Sanseido", "name:ja": "三省堂書店", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/books/文教堂": {"name": "文教堂", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q11499974"}, "addTags": {"brand": "文教堂", "brand:en": "Bunkyodo", "brand:ja": "文教堂", "brand:wikidata": "Q11499974", "brand:wikipedia": "ja:文教堂", "name": "文教堂", "name:en": "Bunkyodo", "name:ja": "文教堂", "shop": "books"}, "removeTags": {"brand": "文教堂", "brand:en": "Bunkyodo", "brand:ja": "文教堂", "brand:wikidata": "Q11499974", "brand:wikipedia": "ja:文教堂", "name": "文教堂", "name:en": "Bunkyodo", "name:ja": "文教堂", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/books/新华书店": {"name": "新华书店", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q6124193"}, "addTags": {"brand": "新华书店", "brand:en": "Xinhua Bookstore", "brand:wikidata": "Q6124193", "brand:wikipedia": "en:Xinhua Bookstore", "brand:zh": "新华书店", "name": "新华书店", "name:en": "Xinhua Bookstore", "name:zh": "新华书店", "shop": "books"}, "removeTags": {"brand": "新华书店", "brand:en": "Xinhua Bookstore", "brand:wikidata": "Q6124193", "brand:wikipedia": "en:Xinhua Bookstore", "brand:zh": "新华书店", "name": "新华书店", "name:en": "Xinhua Bookstore", "name:zh": "新华书店", "shop": "books"}, "countryCodes": ["cn"], "matchScore": 2, "suggestion": true}, "shop/books/未来屋書店": {"name": "未来屋書店", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/miraiyashoten/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q11519563"}, "addTags": {"brand": "未来屋書店", "brand:en": "Miraiya Shoten", "brand:ja": "未来屋書店", "brand:wikidata": "Q11519563", "brand:wikipedia": "ja:未来屋書店", "name": "未来屋書店", "name:en": "Miraiya Shoten", "name:ja": "未来屋書店", "shop": "books"}, "removeTags": {"brand": "未来屋書店", "brand:en": "Miraiya Shoten", "brand:ja": "未来屋書店", "brand:wikidata": "Q11519563", "brand:wikipedia": "ja:未来屋書店", "name": "未来屋書店", "name:en": "Miraiya Shoten", "name:ja": "未来屋書店", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, @@ -2592,26 +2711,27 @@ "shop/butcher/Великолукский мясокомбинат": {"name": "Великолукский мясокомбинат", "icon": "fas-bacon", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F%D0%92%D0%B5%D0%BB%D0%B8%D0%BA%D0%BE%D0%BB%D1%83%D0%BA%D1%81%D0%BA%D0%B8%D0%B9%20%D0%BC%D1%8F%D1%81%D0%BE%D0%BA%D0%BE%D0%BC%D0%B1%D0%B8%D0%BD%D0%B0%D1%82.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "butcher", "brand:wikidata": "Q18401767"}, "addTags": {"brand": "Великолукский мясокомбинат", "brand:wikidata": "Q18401767", "brand:wikipedia": "ru:Великолукский мясокомбинат", "name": "Великолукский мясокомбинат", "shop": "butcher"}, "removeTags": {"brand": "Великолукский мясокомбинат", "brand:wikidata": "Q18401767", "brand:wikipedia": "ru:Великолукский мясокомбинат", "name": "Великолукский мясокомбинат", "shop": "butcher"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/butcher/Родинна ковбаска": {"name": "Родинна ковбаска", "icon": "fas-bacon", "geometry": ["point", "area"], "tags": {"shop": "butcher", "brand:wikidata": "Q30969660"}, "addTags": {"brand": "Родинна ковбаска", "brand:en": "Rodynna-kovbaska", "brand:wikidata": "Q30969660", "brand:wikipedia": "uk:ТзОВ «Барком»", "name": "Родинна ковбаска", "name:en": "Rodynna-kovbaska", "shop": "butcher"}, "removeTags": {"brand": "Родинна ковбаска", "brand:en": "Rodynna-kovbaska", "brand:wikidata": "Q30969660", "brand:wikipedia": "uk:ТзОВ «Барком»", "name": "Родинна ковбаска", "name:en": "Rodynna-kovbaska", "shop": "butcher"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, "shop/butcher/肉のハナマサ": {"name": "肉のハナマサ", "icon": "fas-bacon", "geometry": ["point", "area"], "tags": {"shop": "butcher", "brand:wikidata": "Q11326564"}, "addTags": {"brand": "ハナマサ", "brand:en": "Hanamasa", "brand:ja": "ハナマサ", "brand:wikidata": "Q11326564", "brand:wikipedia": "ja:ハナマサ", "butcher": "beef", "name": "肉のハナマサ", "name:en": "Hanamasa Meat", "name:ja": "肉のハナマサ", "shop": "butcher"}, "removeTags": {"brand": "ハナマサ", "brand:en": "Hanamasa", "brand:ja": "ハナマサ", "brand:wikidata": "Q11326564", "brand:wikipedia": "ja:ハナマサ", "butcher": "beef", "name": "肉のハナマサ", "name:en": "Hanamasa Meat", "name:ja": "肉のハナマサ", "shop": "butcher"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Advance Auto Parts": {"name": "Advance Auto Parts", "icon": "fas-car-battery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20of%20Advance%20Auto%20Parts.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q4686051"}, "addTags": {"brand": "Advance Auto Parts", "brand:wikidata": "Q4686051", "brand:wikipedia": "en:Advance Auto Parts", "name": "Advance Auto Parts", "shop": "car_parts"}, "removeTags": {"brand": "Advance Auto Parts", "brand:wikidata": "Q4686051", "brand:wikipedia": "en:Advance Auto Parts", "name": "Advance Auto Parts", "shop": "car_parts"}, "countryCodes": ["ca", "pr", "us", "vi"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/AutoZone": {"name": "AutoZone", "icon": "fas-car-battery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20of%20AutoZone.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q4826087"}, "addTags": {"brand": "AutoZone", "brand:wikidata": "Q4826087", "brand:wikipedia": "en:AutoZone", "name": "AutoZone", "shop": "car_parts"}, "removeTags": {"brand": "AutoZone", "brand:wikidata": "Q4826087", "brand:wikipedia": "en:AutoZone", "name": "AutoZone", "shop": "car_parts"}, "countryCodes": ["br", "mx", "us"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Halfords": {"name": "Halfords", "icon": "fas-car-battery", "imageURL": "https://pbs.twimg.com/profile_images/894829428764704768/XprrrJyW_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q3398786"}, "addTags": {"brand": "Halfords", "brand:wikidata": "Q3398786", "brand:wikipedia": "en:Halfords", "name": "Halfords", "service:bicycle:retail": "yes", "shop": "car_parts"}, "removeTags": {"brand": "Halfords", "brand:wikidata": "Q3398786", "brand:wikipedia": "en:Halfords", "name": "Halfords", "service:bicycle:retail": "yes", "shop": "car_parts"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/NAPA Auto Parts": {"name": "NAPA Auto Parts", "icon": "fas-car-battery", "imageURL": "https://pbs.twimg.com/profile_images/877735026703519744/4gppscV7_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q6970842"}, "addTags": {"brand": "NAPA Auto Parts", "brand:wikidata": "Q6970842", "brand:wikipedia": "en:National Automotive Parts Association", "name": "NAPA Auto Parts", "operator": "Genuine Parts Company", "operator:wikidata": "Q5533818", "operator:wikipedia": "en:Genuine Parts Company", "shop": "car_parts"}, "removeTags": {"brand": "NAPA Auto Parts", "brand:wikidata": "Q6970842", "brand:wikipedia": "en:National Automotive Parts Association", "name": "NAPA Auto Parts", "operator": "Genuine Parts Company", "operator:wikidata": "Q5533818", "operator:wikipedia": "en:Genuine Parts Company", "shop": "car_parts"}, "countryCodes": ["ca", "mx", "us"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/O'Reilly Auto Parts": {"name": "O'Reilly Auto Parts", "icon": "fas-car-battery", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q7071951"}, "addTags": {"brand": "O'Reilly Auto Parts", "brand:wikidata": "Q7071951", "brand:wikipedia": "en:O'Reilly Auto Parts", "name": "O'Reilly Auto Parts", "shop": "car_parts"}, "removeTags": {"brand": "O'Reilly Auto Parts", "brand:wikidata": "Q7071951", "brand:wikipedia": "en:O'Reilly Auto Parts", "name": "O'Reilly Auto Parts", "shop": "car_parts"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Repco": {"name": "Repco", "icon": "fas-car-battery", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q173425"}, "addTags": {"brand": "Repco", "brand:wikidata": "Q173425", "brand:wikipedia": "en:Repco", "name": "Repco", "shop": "car_parts"}, "removeTags": {"brand": "Repco", "brand:wikidata": "Q173425", "brand:wikipedia": "en:Repco", "name": "Repco", "shop": "car_parts"}, "countryCodes": ["au", "nz"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Supercheap Auto": {"name": "Supercheap Auto", "icon": "fas-car-battery", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q7643119"}, "addTags": {"brand": "Supercheap Auto", "brand:wikidata": "Q7643119", "brand:wikipedia": "en:Supercheap Auto", "name": "Supercheap Auto", "shop": "car_parts"}, "removeTags": {"brand": "Supercheap Auto", "brand:wikidata": "Q7643119", "brand:wikipedia": "en:Supercheap Auto", "name": "Supercheap Auto", "shop": "car_parts"}, "countryCodes": ["au", "nz"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Автомир": {"name": "Автомир", "icon": "fas-car-battery", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q4056321"}, "addTags": {"brand": "Автомир", "brand:wikidata": "Q4056321", "brand:wikipedia": "ru:Автомир (автодилер)", "name": "Автомир", "shop": "car_parts"}, "removeTags": {"brand": "Автомир", "brand:wikidata": "Q4056321", "brand:wikipedia": "ru:Автомир (автодилер)", "name": "Автомир", "shop": "car_parts"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/イエローハット": {"name": "イエローハット", "icon": "fas-car-battery", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q11285915"}, "addTags": {"brand": "イエローハット", "brand:en": "Yellow Hat", "brand:ja": "イエローハット", "brand:wikidata": "Q11285915", "brand:wikipedia": "ja:イエローハット", "name": "イエローハット", "name:en": "Yellow Hat", "name:ja": "イエローハット", "shop": "car_parts"}, "removeTags": {"brand": "イエローハット", "brand:en": "Yellow Hat", "brand:ja": "イエローハット", "brand:wikidata": "Q11285915", "brand:wikipedia": "ja:イエローハット", "name": "イエローハット", "name:en": "Yellow Hat", "name:ja": "イエローハット", "shop": "car_parts"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/オートバックス": {"name": "オートバックス", "icon": "fas-car-battery", "imageURL": "https://pbs.twimg.com/profile_images/898398595002417154/CgR8Rgjd_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q7886426"}, "addTags": {"brand": "オートバックス", "brand:en": "Autobacs", "brand:ja": "オートバックス", "brand:wikidata": "Q7886426", "brand:wikipedia": "ja:オートバックスセブン", "name": "オートバックス", "name:en": "Autobacs", "name:ja": "オートバックス", "shop": "car_parts"}, "removeTags": {"brand": "オートバックス", "brand:en": "Autobacs", "brand:ja": "オートバックス", "brand:wikidata": "Q7886426", "brand:wikipedia": "ja:オートバックスセブン", "name": "オートバックス", "name:en": "Autobacs", "name:ja": "オートバックス", "shop": "car_parts"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/タイヤ館": {"name": "タイヤ館", "icon": "fas-car-battery", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q11315808"}, "addTags": {"brand": "タイヤ館", "brand:en": "Taiyakan", "brand:ja": "タイヤ館", "brand:wikidata": "Q11315808", "brand:wikipedia": "ja:タイヤ館", "name": "タイヤ館", "name:en": "Taiyakan", "name:ja": "タイヤ館", "shop": "car_parts"}, "removeTags": {"brand": "タイヤ館", "brand:en": "Taiyakan", "brand:ja": "タイヤ館", "brand:wikidata": "Q11315808", "brand:wikipedia": "ja:タイヤ館", "name": "タイヤ館", "name:en": "Taiyakan", "name:ja": "タイヤ館", "shop": "car_parts"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/candles/Yankee Candle": {"name": "Yankee Candle", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Yankeecandle/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "candles", "brand:wikidata": "Q8048733"}, "addTags": {"brand": "Yankee Candle", "brand:wikidata": "Q8048733", "brand:wikipedia": "en:Yankee Candle", "name": "Yankee Candle", "shop": "candles"}, "removeTags": {"brand": "Yankee Candle", "brand:wikidata": "Q8048733", "brand:wikipedia": "en:Yankee Candle", "name": "Yankee Candle", "shop": "candles"}, "matchScore": 2, "suggestion": true}, + "shop/car_parts/Advance Auto Parts": {"name": "Advance Auto Parts", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/advanceautoparts/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q4686051"}, "addTags": {"brand": "Advance Auto Parts", "brand:wikidata": "Q4686051", "brand:wikipedia": "en:Advance Auto Parts", "name": "Advance Auto Parts", "shop": "car_parts"}, "removeTags": {"brand": "Advance Auto Parts", "brand:wikidata": "Q4686051", "brand:wikipedia": "en:Advance Auto Parts", "name": "Advance Auto Parts", "shop": "car_parts"}, "countryCodes": ["ca", "pr", "us", "vi"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/AutoZone": {"name": "AutoZone", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/autozone/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q4826087"}, "addTags": {"brand": "AutoZone", "brand:wikidata": "Q4826087", "brand:wikipedia": "en:AutoZone", "name": "AutoZone", "shop": "car_parts"}, "removeTags": {"brand": "AutoZone", "brand:wikidata": "Q4826087", "brand:wikipedia": "en:AutoZone", "name": "AutoZone", "shop": "car_parts"}, "countryCodes": ["br", "mx", "us"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/Halfords": {"name": "Halfords", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/HalfordsUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q3398786"}, "addTags": {"brand": "Halfords", "brand:wikidata": "Q3398786", "brand:wikipedia": "en:Halfords", "name": "Halfords", "service:bicycle:retail": "yes", "shop": "car_parts"}, "removeTags": {"brand": "Halfords", "brand:wikidata": "Q3398786", "brand:wikipedia": "en:Halfords", "name": "Halfords", "service:bicycle:retail": "yes", "shop": "car_parts"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/NAPA Auto Parts": {"name": "NAPA Auto Parts", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/NAPAAUTOPARTS/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q6970842"}, "addTags": {"brand": "NAPA Auto Parts", "brand:wikidata": "Q6970842", "brand:wikipedia": "en:National Automotive Parts Association", "name": "NAPA Auto Parts", "operator": "Genuine Parts Company", "operator:wikidata": "Q5533818", "operator:wikipedia": "en:Genuine Parts Company", "shop": "car_parts"}, "removeTags": {"brand": "NAPA Auto Parts", "brand:wikidata": "Q6970842", "brand:wikipedia": "en:National Automotive Parts Association", "name": "NAPA Auto Parts", "operator": "Genuine Parts Company", "operator:wikidata": "Q5533818", "operator:wikipedia": "en:Genuine Parts Company", "shop": "car_parts"}, "countryCodes": ["ca", "mx", "us"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/O'Reilly Auto Parts": {"name": "O'Reilly Auto Parts", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/oreillyautoparts/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q7071951"}, "addTags": {"brand": "O'Reilly Auto Parts", "brand:wikidata": "Q7071951", "brand:wikipedia": "en:O'Reilly Auto Parts", "name": "O'Reilly Auto Parts", "shop": "car_parts"}, "removeTags": {"brand": "O'Reilly Auto Parts", "brand:wikidata": "Q7071951", "brand:wikipedia": "en:O'Reilly Auto Parts", "name": "O'Reilly Auto Parts", "shop": "car_parts"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/Repco": {"name": "Repco", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/RepcoAusCareers/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q173425"}, "addTags": {"brand": "Repco", "brand:wikidata": "Q173425", "brand:wikipedia": "en:Repco", "name": "Repco", "shop": "car_parts"}, "removeTags": {"brand": "Repco", "brand:wikidata": "Q173425", "brand:wikipedia": "en:Repco", "name": "Repco", "shop": "car_parts"}, "countryCodes": ["au", "nz"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/Supercheap Auto": {"name": "Supercheap Auto", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/scauto/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q7643119"}, "addTags": {"brand": "Supercheap Auto", "brand:wikidata": "Q7643119", "brand:wikipedia": "en:Supercheap Auto", "name": "Supercheap Auto", "shop": "car_parts"}, "removeTags": {"brand": "Supercheap Auto", "brand:wikidata": "Q7643119", "brand:wikipedia": "en:Supercheap Auto", "name": "Supercheap Auto", "shop": "car_parts"}, "countryCodes": ["au", "nz"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/Автомир": {"name": "Автомир", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/avtomir.cars/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q4056321"}, "addTags": {"brand": "Автомир", "brand:wikidata": "Q4056321", "brand:wikipedia": "ru:Автомир (автодилер)", "name": "Автомир", "shop": "car_parts"}, "removeTags": {"brand": "Автомир", "brand:wikidata": "Q4056321", "brand:wikipedia": "ru:Автомир (автодилер)", "name": "Автомир", "shop": "car_parts"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/イエローハット": {"name": "イエローハット", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/YellowHatUAE/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q11285915"}, "addTags": {"brand": "イエローハット", "brand:en": "Yellow Hat", "brand:ja": "イエローハット", "brand:wikidata": "Q11285915", "brand:wikipedia": "ja:イエローハット", "name": "イエローハット", "name:en": "Yellow Hat", "name:ja": "イエローハット", "shop": "car_parts"}, "removeTags": {"brand": "イエローハット", "brand:en": "Yellow Hat", "brand:ja": "イエローハット", "brand:wikidata": "Q11285915", "brand:wikipedia": "ja:イエローハット", "name": "イエローハット", "name:en": "Yellow Hat", "name:ja": "イエローハット", "shop": "car_parts"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/オートバックス": {"name": "オートバックス", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/autobacs.seven/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q7886426"}, "addTags": {"brand": "オートバックス", "brand:en": "Autobacs", "brand:ja": "オートバックス", "brand:wikidata": "Q7886426", "brand:wikipedia": "ja:オートバックスセブン", "name": "オートバックス", "name:en": "Autobacs", "name:ja": "オートバックス", "shop": "car_parts"}, "removeTags": {"brand": "オートバックス", "brand:en": "Autobacs", "brand:ja": "オートバックス", "brand:wikidata": "Q7886426", "brand:wikipedia": "ja:オートバックスセブン", "name": "オートバックス", "name:en": "Autobacs", "name:ja": "オートバックス", "shop": "car_parts"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/car_parts/タイヤ館": {"name": "タイヤ館", "icon": "fas-car-battery", "imageURL": "https://pbs.twimg.com/profile_images/1069402555938037761/aK6lJYjW_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car_parts", "brand:wikidata": "Q11315808"}, "addTags": {"brand": "タイヤ館", "brand:en": "Taiyakan", "brand:ja": "タイヤ館", "brand:wikidata": "Q11315808", "brand:wikipedia": "ja:タイヤ館", "name": "タイヤ館", "name:en": "Taiyakan", "name:ja": "タイヤ館", "shop": "car_parts"}, "removeTags": {"brand": "タイヤ館", "brand:en": "Taiyakan", "brand:ja": "タイヤ館", "brand:wikidata": "Q11315808", "brand:wikipedia": "ja:タイヤ館", "name": "タイヤ館", "name:en": "Taiyakan", "name:ja": "タイヤ館", "shop": "car_parts"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/car_repair/A.T.U": {"name": "A.T.U", "icon": "maki-car-repair", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAuto-Teile-Unger%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q784721"}, "addTags": {"brand": "A.T.U", "brand:wikidata": "Q784721", "brand:wikipedia": "de:Auto-Teile-Unger", "name": "A.T.U", "shop": "car_repair"}, "removeTags": {"brand": "A.T.U", "brand:wikidata": "Q784721", "brand:wikipedia": "de:Auto-Teile-Unger", "name": "A.T.U", "shop": "car_repair"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, "shop/car_repair/ATS Euromaster": {"name": "ATS Euromaster", "icon": "maki-car-repair", "imageURL": "https://pbs.twimg.com/profile_images/572348690115751936/8zWGjm2u_bigger.jpeg", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q4654920"}, "addTags": {"brand": "ATS Euromaster", "brand:wikidata": "Q4654920", "brand:wikipedia": "en:ATS Euromaster", "name": "ATS Euromaster", "shop": "car_repair"}, "removeTags": {"brand": "ATS Euromaster", "brand:wikidata": "Q4654920", "brand:wikipedia": "en:ATS Euromaster", "name": "ATS Euromaster", "shop": "car_repair"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "shop/car_repair/Bosch Car Service": {"name": "Bosch Car Service", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/BoschGlobal/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q234021"}, "addTags": {"brand": "Bosch Car Service", "brand:wikidata": "Q234021", "brand:wikipedia": "en:Robert Bosch GmbH", "name": "Bosch Car Service", "shop": "car_repair"}, "removeTags": {"brand": "Bosch Car Service", "brand:wikidata": "Q234021", "brand:wikipedia": "en:Robert Bosch GmbH", "name": "Bosch Car Service", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, "shop/car_repair/Brakes Plus": {"name": "Brakes Plus", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/BrakesPlus.CompleteAutoService/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q62075246"}, "addTags": {"brand": "Brakes Plus", "brand:wikidata": "Q62075246", "name": "Brakes Plus", "shop": "car_repair"}, "removeTags": {"brand": "Brakes Plus", "brand:wikidata": "Q62075246", "name": "Brakes Plus", "shop": "car_repair"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/car_repair/Carglass": {"name": "Carglass", "icon": "maki-car-repair", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCarglass-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q1035997"}, "addTags": {"brand": "Carglass", "brand:wikidata": "Q1035997", "brand:wikipedia": "de:Carglass", "name": "Carglass", "shop": "car_repair"}, "removeTags": {"brand": "Carglass", "brand:wikidata": "Q1035997", "brand:wikipedia": "de:Carglass", "name": "Carglass", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, - "shop/car_repair/Citroën": {"name": "Citroën", "icon": "maki-car-repair", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCitroen%202016%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q6746"}, "addTags": {"brand": "Citroën", "brand:wikidata": "Q6746", "brand:wikipedia": "fr:Citroën", "name": "Citroën", "shop": "car_repair"}, "removeTags": {"brand": "Citroën", "brand:wikidata": "Q6746", "brand:wikipedia": "fr:Citroën", "name": "Citroën", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, + "shop/car_repair/Citroën": {"name": "Citroën", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/Citroen/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q6746"}, "addTags": {"brand": "Citroën", "brand:wikidata": "Q6746", "brand:wikipedia": "fr:Citroën", "name": "Citroën", "shop": "car_repair"}, "removeTags": {"brand": "Citroën", "brand:wikidata": "Q6746", "brand:wikipedia": "fr:Citroën", "name": "Citroën", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, "shop/car_repair/Dekra": {"name": "Dekra", "icon": "maki-car-repair", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q383711"}, "addTags": {"brand": "Dekra", "brand:wikidata": "Q383711", "brand:wikipedia": "en:Dekra", "name": "Dekra", "shop": "car_repair"}, "removeTags": {"brand": "Dekra", "brand:wikidata": "Q383711", "brand:wikipedia": "en:Dekra", "name": "Dekra", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, "shop/car_repair/Euromaster": {"name": "Euromaster", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/ATSEUROMASTER/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q3060668"}, "addTags": {"brand": "Euromaster", "brand:wikidata": "Q3060668", "brand:wikipedia": "de:Euromaster", "name": "Euromaster", "shop": "car_repair"}, "removeTags": {"brand": "Euromaster", "brand:wikidata": "Q3060668", "brand:wikipedia": "de:Euromaster", "name": "Euromaster", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, - "shop/car_repair/Feu Vert": {"name": "Feu Vert", "icon": "maki-car-repair", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q3070922"}, "addTags": {"brand": "Feu Vert", "brand:wikidata": "Q3070922", "brand:wikipedia": "fr:Feu Vert (entreprise)", "name": "Feu Vert", "shop": "car_repair"}, "removeTags": {"brand": "Feu Vert", "brand:wikidata": "Q3070922", "brand:wikipedia": "fr:Feu Vert (entreprise)", "name": "Feu Vert", "shop": "car_repair"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/car_repair/Feu Vert": {"name": "Feu Vert", "icon": "maki-car-repair", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q3070922"}, "addTags": {"brand": "Feu Vert", "brand:wikidata": "Q3070922", "brand:wikipedia": "fr:Feu vert (entreprise)", "name": "Feu Vert", "shop": "car_repair"}, "removeTags": {"brand": "Feu Vert", "brand:wikidata": "Q3070922", "brand:wikipedia": "fr:Feu vert (entreprise)", "name": "Feu Vert", "shop": "car_repair"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/car_repair/Firestone": {"name": "Firestone", "icon": "maki-car-repair", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFirestone.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q420837"}, "addTags": {"brand": "Firestone", "brand:wikidata": "Q420837", "brand:wikipedia": "en:Firestone Tire and Rubber Company", "name": "Firestone", "shop": "car_repair"}, "removeTags": {"brand": "Firestone", "brand:wikidata": "Q420837", "brand:wikipedia": "en:Firestone Tire and Rubber Company", "name": "Firestone", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, "shop/car_repair/Ford": {"name": "Ford", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/ford/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q44294"}, "addTags": {"brand": "Ford", "brand:wikidata": "Q44294", "brand:wikipedia": "en:Ford Motor Company", "name": "Ford", "shop": "car_repair"}, "removeTags": {"brand": "Ford", "brand:wikidata": "Q44294", "brand:wikipedia": "en:Ford Motor Company", "name": "Ford", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, "shop/car_repair/Goodyear": {"name": "Goodyear", "icon": "maki-car-repair", "imageURL": "https://pbs.twimg.com/profile_images/954462463201693697/KjS76bom_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q620875"}, "addTags": {"brand": "Goodyear", "brand:wikidata": "Q620875", "brand:wikipedia": "en:Goodyear Tire and Rubber Company", "name": "Goodyear", "shop": "car_repair"}, "removeTags": {"brand": "Goodyear", "brand:wikidata": "Q620875", "brand:wikipedia": "en:Goodyear Tire and Rubber Company", "name": "Goodyear", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, @@ -2622,79 +2742,80 @@ "shop/car_repair/Meineke": {"name": "Meineke", "icon": "maki-car-repair", "imageURL": "https://pbs.twimg.com/profile_images/724988942840266755/kpMpvs5I_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q6810159"}, "addTags": {"brand": "Meineke", "brand:wikidata": "Q6810159", "brand:wikipedia": "en:Meineke Car Care Centers", "name": "Meineke", "shop": "car_repair"}, "removeTags": {"brand": "Meineke", "brand:wikidata": "Q6810159", "brand:wikipedia": "en:Meineke Car Care Centers", "name": "Meineke", "shop": "car_repair"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/car_repair/Mekonomen": {"name": "Mekonomen", "icon": "maki-car-repair", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q10580079"}, "addTags": {"brand": "Mekonomen", "brand:wikidata": "Q10580079", "brand:wikipedia": "sv:Mekonomen", "name": "Mekonomen", "shop": "car_repair"}, "removeTags": {"brand": "Mekonomen", "brand:wikidata": "Q10580079", "brand:wikipedia": "sv:Mekonomen", "name": "Mekonomen", "shop": "car_repair"}, "countryCodes": ["dk", "no", "se"], "matchScore": 2, "suggestion": true}, "shop/car_repair/Midas": {"name": "Midas", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/Midas/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q3312613"}, "addTags": {"brand": "Midas", "brand:wikidata": "Q3312613", "brand:wikipedia": "en:Midas (automotive service)", "name": "Midas", "shop": "car_repair"}, "removeTags": {"brand": "Midas", "brand:wikidata": "Q3312613", "brand:wikipedia": "en:Midas (automotive service)", "name": "Midas", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, + "shop/car_repair/Monro Muffler Brake": {"name": "Monro Muffler Brake", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/MonroAutoServiceTire/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q6902090"}, "addTags": {"brand": "Monro Muffler Brake", "brand:wikidata": "Q6902090", "brand:wikipedia": "en:Monro Muffler Brake", "name": "Monro Muffler Brake", "shop": "car_repair"}, "removeTags": {"brand": "Monro Muffler Brake", "brand:wikidata": "Q6902090", "brand:wikipedia": "en:Monro Muffler Brake", "name": "Monro Muffler Brake", "shop": "car_repair"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/car_repair/Mr. Lube": {"name": "Mr. Lube", "icon": "maki-car-repair", "imageURL": "https://pbs.twimg.com/profile_images/448587010475692032/6J-h3__O_bigger.jpeg", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q17104067"}, "addTags": {"brand": "Mr. Lube", "brand:wikidata": "Q17104067", "brand:wikipedia": "en:Mr. Lube", "name": "Mr. Lube", "shop": "car_repair"}, "removeTags": {"brand": "Mr. Lube", "brand:wikidata": "Q17104067", "brand:wikipedia": "en:Mr. Lube", "name": "Mr. Lube", "shop": "car_repair"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "shop/car_repair/Norauto": {"name": "Norauto", "icon": "maki-car-repair", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q3317698"}, "addTags": {"brand": "Norauto", "brand:wikidata": "Q3317698", "brand:wikipedia": "en:Mobivia Groupe", "name": "Norauto", "shop": "car_repair"}, "removeTags": {"brand": "Norauto", "brand:wikidata": "Q3317698", "brand:wikipedia": "en:Mobivia Groupe", "name": "Norauto", "shop": "car_repair"}, "countryCodes": ["ar", "es", "fr", "hu", "it", "pl", "pt", "ro"], "matchScore": 2, "suggestion": true}, "shop/car_repair/Pep Boys": {"name": "Pep Boys", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/pepboysauto/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q3375007"}, "addTags": {"brand": "Pep Boys", "brand:wikidata": "Q3375007", "brand:wikipedia": "en:Pep Boys", "name": "Pep Boys", "shop": "car_repair"}, "removeTags": {"brand": "Pep Boys", "brand:wikidata": "Q3375007", "brand:wikipedia": "en:Pep Boys", "name": "Pep Boys", "shop": "car_repair"}, "countryCodes": ["pr", "us"], "matchScore": 2, "suggestion": true}, "shop/car_repair/Peugeot": {"name": "Peugeot", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/Peugeot/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q6742"}, "addTags": {"brand": "Peugeot", "brand:wikidata": "Q6742", "brand:wikipedia": "en:Peugeot", "name": "Peugeot", "shop": "car_repair"}, "removeTags": {"brand": "Peugeot", "brand:wikidata": "Q6742", "brand:wikipedia": "en:Peugeot", "name": "Peugeot", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, "shop/car_repair/Point S": {"name": "Point S", "icon": "maki-car-repair", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPointS%204c%20klein.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q3393358"}, "addTags": {"brand": "Point S", "brand:wikidata": "Q3393358", "brand:wikipedia": "fr:Point S", "name": "Point S", "shop": "car_repair"}, "removeTags": {"brand": "Point S", "brand:wikidata": "Q3393358", "brand:wikipedia": "fr:Point S", "name": "Point S", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, - "shop/car_repair/Renault": {"name": "Renault", "icon": "maki-car-repair", "imageURL": "https://pbs.twimg.com/profile_images/841673482903670784/cwyLm740_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q6686"}, "addTags": {"brand": "Renault", "brand:wikidata": "Q6686", "brand:wikipedia": "en:Renault", "name": "Renault", "shop": "car_repair"}, "removeTags": {"brand": "Renault", "brand:wikidata": "Q6686", "brand:wikipedia": "en:Renault", "name": "Renault", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, + "shop/car_repair/Renault": {"name": "Renault", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/Renault/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q6686"}, "addTags": {"brand": "Renault", "brand:wikidata": "Q6686", "brand:wikipedia": "en:Renault", "name": "Renault", "shop": "car_repair"}, "removeTags": {"brand": "Renault", "brand:wikidata": "Q6686", "brand:wikipedia": "en:Renault", "name": "Renault", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, "shop/car_repair/Roady": {"name": "Roady", "icon": "maki-car-repair", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q3434112"}, "addTags": {"brand": "Roady", "brand:wikidata": "Q3434112", "brand:wikipedia": "en:Roady (Mousquetaires)", "name": "Roady", "shop": "car_repair"}, "removeTags": {"brand": "Roady", "brand:wikidata": "Q3434112", "brand:wikipedia": "en:Roady (Mousquetaires)", "name": "Roady", "shop": "car_repair"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/car_repair/Safelite AutoGlass": {"name": "Safelite AutoGlass", "icon": "maki-car-repair", "imageURL": "https://pbs.twimg.com/profile_images/941319713149333505/oSj6thH6_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q28797369"}, "addTags": {"brand": "Safelite AutoGlass", "brand:wikidata": "Q28797369", "brand:wikipedia": "en:Safelite", "name": "Safelite AutoGlass", "operator": "Belron", "operator:wikidata": "Q785614", "operator:wikipedia": "en:Belron", "shop": "car_repair"}, "removeTags": {"brand": "Safelite AutoGlass", "brand:wikidata": "Q28797369", "brand:wikipedia": "en:Safelite", "name": "Safelite AutoGlass", "operator": "Belron", "operator:wikidata": "Q785614", "operator:wikipedia": "en:Belron", "shop": "car_repair"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/car_repair/Speedy": {"name": "Speedy", "icon": "maki-car-repair", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSpeedy%20France%20logo%20officiel.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q3492969"}, "addTags": {"brand": "Speedy", "brand:wikidata": "Q3492969", "brand:wikipedia": "fr:Speedy (entreprise)", "name": "Speedy", "shop": "car_repair"}, "removeTags": {"brand": "Speedy", "brand:wikidata": "Q3492969", "brand:wikipedia": "fr:Speedy (entreprise)", "name": "Speedy", "shop": "car_repair"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/car_repair/Speedy Auto Service": {"name": "Speedy Auto Service", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/SpeedyAutoServiceCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q22318193"}, "addTags": {"brand": "Speedy Auto Service", "brand:wikidata": "Q22318193", "name": "Speedy Auto Service", "shop": "car_repair"}, "removeTags": {"brand": "Speedy Auto Service", "brand:wikidata": "Q22318193", "name": "Speedy Auto Service", "shop": "car_repair"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Toyota": {"name": "Toyota", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/ToyotaSpecialShowroom/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q53268"}, "addTags": {"brand": "Toyota", "brand:wikidata": "Q53268", "brand:wikipedia": "en:Toyota", "name": "Toyota", "shop": "car_repair"}, "removeTags": {"brand": "Toyota", "brand:wikidata": "Q53268", "brand:wikipedia": "en:Toyota", "name": "Toyota", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, + "shop/car_repair/Toyota": {"name": "Toyota", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/toyota/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q53268"}, "addTags": {"brand": "Toyota", "brand:wikidata": "Q53268", "brand:wikipedia": "en:Toyota", "name": "Toyota", "shop": "car_repair"}, "removeTags": {"brand": "Toyota", "brand:wikidata": "Q53268", "brand:wikipedia": "en:Toyota", "name": "Toyota", "shop": "car_repair"}, "matchScore": 2, "suggestion": true}, "shop/car_repair/Valvoline": {"name": "Valvoline", "icon": "maki-car-repair", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q7912852"}, "addTags": {"brand": "Valvoline", "brand:wikidata": "Q7912852", "brand:wikipedia": "en:Valvoline Instant Oil Change", "name": "Valvoline", "shop": "car_repair"}, "removeTags": {"brand": "Valvoline", "brand:wikidata": "Q7912852", "brand:wikipedia": "en:Valvoline Instant Oil Change", "name": "Valvoline", "shop": "car_repair"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/car_repair/ÖAMTC": {"name": "ÖAMTC", "icon": "maki-car-repair", "geometry": ["point", "area"], "tags": {"shop": "car_repair", "brand:wikidata": "Q306057"}, "addTags": {"brand": "ÖAMTC", "brand:wikidata": "Q306057", "brand:wikipedia": "de:Österreichischer Automobil-, Motorrad- und Touring Club", "name": "ÖAMTC", "shop": "car_repair"}, "removeTags": {"brand": "ÖAMTC", "brand:wikidata": "Q306057", "brand:wikipedia": "de:Österreichischer Automobil-, Motorrad- und Touring Club", "name": "ÖAMTC", "shop": "car_repair"}, "countryCodes": ["at"], "matchScore": 2, "suggestion": true}, "shop/car/Audi": {"name": "Audi", "icon": "maki-car", "imageURL": "https://graph.facebook.com/audi.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q23317"}, "addTags": {"brand": "Audi", "brand:wikidata": "Q23317", "brand:wikipedia": "en:Audi", "name": "Audi", "shop": "car"}, "removeTags": {"brand": "Audi", "brand:wikidata": "Q23317", "brand:wikipedia": "en:Audi", "name": "Audi", "shop": "car"}, "matchScore": 2, "suggestion": true}, "shop/car/BMW": {"name": "BMW", "icon": "maki-car", "imageURL": "https://graph.facebook.com/BMWGroup/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q26678"}, "addTags": {"brand": "BMW", "brand:wikidata": "Q26678", "brand:wikipedia": "en:BMW", "name": "BMW", "shop": "car"}, "removeTags": {"brand": "BMW", "brand:wikidata": "Q26678", "brand:wikipedia": "en:BMW", "name": "BMW", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Chevrolet": {"name": "Chevrolet", "icon": "maki-car", "imageURL": "https://pbs.twimg.com/profile_images/1058000376866136064/GWdNyYFl_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q29570"}, "addTags": {"brand": "Chevrolet", "brand:wikidata": "Q29570", "brand:wikipedia": "en:Chevrolet", "name": "Chevrolet", "shop": "car"}, "removeTags": {"brand": "Chevrolet", "brand:wikidata": "Q29570", "brand:wikipedia": "en:Chevrolet", "name": "Chevrolet", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Citroën": {"name": "Citroën", "icon": "maki-car", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCitroen%202016%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q6746"}, "addTags": {"brand": "Citroën", "brand:wikidata": "Q6746", "brand:wikipedia": "fr:Citroën", "name": "Citroën", "shop": "car"}, "removeTags": {"brand": "Citroën", "brand:wikidata": "Q6746", "brand:wikipedia": "fr:Citroën", "name": "Citroën", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Dacia": {"name": "Dacia", "icon": "maki-car", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDacia%20Logo%20new.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q27460"}, "addTags": {"brand": "Dacia", "brand:wikidata": "Q27460", "brand:wikipedia": "en:Automobile Dacia", "name": "Dacia", "shop": "car"}, "removeTags": {"brand": "Dacia", "brand:wikidata": "Q27460", "brand:wikipedia": "en:Automobile Dacia", "name": "Dacia", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Fiat": {"name": "Fiat", "icon": "maki-car", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFiat%20Automobiles%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q27597"}, "addTags": {"brand": "Fiat", "brand:wikidata": "Q27597", "brand:wikipedia": "en:Fiat Automobiles", "name": "Fiat", "shop": "car"}, "removeTags": {"brand": "Fiat", "brand:wikidata": "Q27597", "brand:wikipedia": "en:Fiat Automobiles", "name": "Fiat", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Chevrolet": {"name": "Chevrolet", "icon": "maki-car", "imageURL": "https://graph.facebook.com/chevrolet/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q29570"}, "addTags": {"brand": "Chevrolet", "brand:wikidata": "Q29570", "brand:wikipedia": "en:Chevrolet", "name": "Chevrolet", "shop": "car"}, "removeTags": {"brand": "Chevrolet", "brand:wikidata": "Q29570", "brand:wikipedia": "en:Chevrolet", "name": "Chevrolet", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Citroën": {"name": "Citroën", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Citroen/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q6746"}, "addTags": {"brand": "Citroën", "brand:wikidata": "Q6746", "brand:wikipedia": "fr:Citroën", "name": "Citroën", "shop": "car"}, "removeTags": {"brand": "Citroën", "brand:wikidata": "Q6746", "brand:wikipedia": "fr:Citroën", "name": "Citroën", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Dacia": {"name": "Dacia", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Dacia/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q27460"}, "addTags": {"brand": "Dacia", "brand:wikidata": "Q27460", "brand:wikipedia": "en:Automobile Dacia", "name": "Dacia", "shop": "car"}, "removeTags": {"brand": "Dacia", "brand:wikidata": "Q27460", "brand:wikipedia": "en:Automobile Dacia", "name": "Dacia", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Fiat": {"name": "Fiat", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Fiat/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q27597"}, "addTags": {"brand": "Fiat", "brand:wikidata": "Q27597", "brand:wikipedia": "en:Fiat Automobiles", "name": "Fiat", "shop": "car"}, "removeTags": {"brand": "Fiat", "brand:wikidata": "Q27597", "brand:wikipedia": "en:Fiat Automobiles", "name": "Fiat", "shop": "car"}, "matchScore": 2, "suggestion": true}, "shop/car/Ford": {"name": "Ford", "icon": "maki-car", "imageURL": "https://graph.facebook.com/ford/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q44294"}, "addTags": {"brand": "Ford", "brand:wikidata": "Q44294", "brand:wikipedia": "en:Ford Motor Company", "name": "Ford", "shop": "car"}, "removeTags": {"brand": "Ford", "brand:wikidata": "Q44294", "brand:wikipedia": "en:Ford Motor Company", "name": "Ford", "shop": "car"}, "matchScore": 2, "suggestion": true}, "shop/car/Honda": {"name": "Honda", "icon": "maki-car", "imageURL": "https://graph.facebook.com/HondaJP/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q9584"}, "addTags": {"brand": "Honda", "brand:wikidata": "Q9584", "brand:wikipedia": "en:Honda", "name": "Honda", "shop": "car"}, "removeTags": {"brand": "Honda", "brand:wikidata": "Q9584", "brand:wikipedia": "en:Honda", "name": "Honda", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Hyundai": {"name": "Hyundai", "icon": "maki-car", "imageURL": "https://pbs.twimg.com/profile_images/821433960639008768/_M06NaeP_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q55931"}, "addTags": {"brand": "Hyundai", "brand:wikidata": "Q55931", "brand:wikipedia": "en:Hyundai Motor Company", "name": "Hyundai", "shop": "car"}, "removeTags": {"brand": "Hyundai", "brand:wikidata": "Q55931", "brand:wikipedia": "en:Hyundai Motor Company", "name": "Hyundai", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Isuzu": {"name": "Isuzu", "icon": "maki-car", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FIsuzu.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q29803"}, "addTags": {"brand": "Isuzu", "brand:wikidata": "Q29803", "brand:wikipedia": "en:Isuzu Motors", "name": "Isuzu", "shop": "car"}, "removeTags": {"brand": "Isuzu", "brand:wikidata": "Q29803", "brand:wikipedia": "en:Isuzu Motors", "name": "Isuzu", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Kia": {"name": "Kia", "icon": "maki-car", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKIA%20logo2.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q35349"}, "addTags": {"brand": "Kia", "brand:wikidata": "Q35349", "brand:wikipedia": "en:Kia Motors", "name": "Kia", "shop": "car"}, "removeTags": {"brand": "Kia", "brand:wikidata": "Q35349", "brand:wikipedia": "en:Kia Motors", "name": "Kia", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Land Rover": {"name": "Land Rover", "icon": "maki-car", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20of%20Land%20Rover%2C%20a%20British%20marque.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q35907"}, "addTags": {"brand": "Land Rover", "brand:wikidata": "Q35907", "brand:wikipedia": "en:Land Rover", "name": "Land Rover", "shop": "car"}, "removeTags": {"brand": "Land Rover", "brand:wikidata": "Q35907", "brand:wikipedia": "en:Land Rover", "name": "Land Rover", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Hyundai": {"name": "Hyundai", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Hyundai/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q55931"}, "addTags": {"brand": "Hyundai", "brand:wikidata": "Q55931", "brand:wikipedia": "en:Hyundai Motor Company", "name": "Hyundai", "shop": "car"}, "removeTags": {"brand": "Hyundai", "brand:wikidata": "Q55931", "brand:wikipedia": "en:Hyundai Motor Company", "name": "Hyundai", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Isuzu": {"name": "Isuzu", "icon": "maki-car", "imageURL": "https://graph.facebook.com/isuzumex/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q29803"}, "addTags": {"brand": "Isuzu", "brand:wikidata": "Q29803", "brand:wikipedia": "en:Isuzu Motors", "name": "Isuzu", "shop": "car"}, "removeTags": {"brand": "Isuzu", "brand:wikidata": "Q29803", "brand:wikipedia": "en:Isuzu Motors", "name": "Isuzu", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Kia": {"name": "Kia", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Kiamotorsworldwide/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q35349"}, "addTags": {"brand": "Kia", "brand:wikidata": "Q35349", "brand:wikipedia": "en:Kia Motors", "name": "Kia", "shop": "car"}, "removeTags": {"brand": "Kia", "brand:wikidata": "Q35349", "brand:wikipedia": "en:Kia Motors", "name": "Kia", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Land Rover": {"name": "Land Rover", "icon": "maki-car", "imageURL": "https://graph.facebook.com/landroverusa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q35907"}, "addTags": {"brand": "Land Rover", "brand:wikidata": "Q35907", "brand:wikipedia": "en:Land Rover", "name": "Land Rover", "shop": "car"}, "removeTags": {"brand": "Land Rover", "brand:wikidata": "Q35907", "brand:wikipedia": "en:Land Rover", "name": "Land Rover", "shop": "car"}, "matchScore": 2, "suggestion": true}, "shop/car/Lexus": {"name": "Lexus", "icon": "maki-car", "imageURL": "https://graph.facebook.com/lexus/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q35919"}, "addTags": {"brand": "Lexus", "brand:wikidata": "Q35919", "brand:wikipedia": "en:Lexus", "name": "Lexus", "shop": "car"}, "removeTags": {"brand": "Lexus", "brand:wikidata": "Q35919", "brand:wikipedia": "en:Lexus", "name": "Lexus", "shop": "car"}, "matchScore": 2, "suggestion": true}, "shop/car/Mazda": {"name": "Mazda", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Mazda.Japan/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q35996"}, "addTags": {"brand": "Mazda", "brand:wikidata": "Q35996", "brand:wikipedia": "en:Mazda", "name": "Mazda", "shop": "car"}, "removeTags": {"brand": "Mazda", "brand:wikidata": "Q35996", "brand:wikipedia": "en:Mazda", "name": "Mazda", "shop": "car"}, "matchScore": 2, "suggestion": true}, "shop/car/Mercedes-Benz": {"name": "Mercedes-Benz", "icon": "maki-car", "imageURL": "https://graph.facebook.com/MercedesBenz/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q36008"}, "addTags": {"brand": "Mercedes-Benz", "brand:wikidata": "Q36008", "brand:wikipedia": "en:Mercedes-Benz", "name": "Mercedes-Benz", "shop": "car"}, "removeTags": {"brand": "Mercedes-Benz", "brand:wikidata": "Q36008", "brand:wikipedia": "en:Mercedes-Benz", "name": "Mercedes-Benz", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Mitsubishi": {"name": "Mitsubishi", "icon": "maki-car", "imageURL": "https://pbs.twimg.com/profile_images/1075283142733426689/T2x4sWd0_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q36033"}, "addTags": {"brand": "Mitsubishi", "brand:wikidata": "Q36033", "brand:wikipedia": "en:Mitsubishi Motors", "name": "Mitsubishi", "shop": "car"}, "removeTags": {"brand": "Mitsubishi", "brand:wikidata": "Q36033", "brand:wikipedia": "en:Mitsubishi Motors", "name": "Mitsubishi", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Mitsubishi": {"name": "Mitsubishi", "icon": "maki-car", "imageURL": "https://graph.facebook.com/MitsubishiMotors.en/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q36033"}, "addTags": {"brand": "Mitsubishi", "brand:wikidata": "Q36033", "brand:wikipedia": "en:Mitsubishi Motors", "name": "Mitsubishi", "shop": "car"}, "removeTags": {"brand": "Mitsubishi", "brand:wikidata": "Q36033", "brand:wikipedia": "en:Mitsubishi Motors", "name": "Mitsubishi", "shop": "car"}, "matchScore": 2, "suggestion": true}, "shop/car/Netz": {"name": "Netz", "icon": "maki-car", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q11325416"}, "addTags": {"brand": "Netz", "brand:wikidata": "Q11325416", "brand:wikipedia": "ja:ネッツ店", "name": "Netz", "shop": "car"}, "removeTags": {"brand": "Netz", "brand:wikidata": "Q11325416", "brand:wikipedia": "ja:ネッツ店", "name": "Netz", "shop": "car"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/car/Nissan": {"name": "Nissan", "icon": "maki-car", "imageURL": "https://graph.facebook.com/NissanJP/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q20165"}, "addTags": {"brand": "Nissan", "brand:wikidata": "Q20165", "brand:wikipedia": "ja:日産自動車", "name": "Nissan", "shop": "car"}, "removeTags": {"brand": "Nissan", "brand:wikidata": "Q20165", "brand:wikipedia": "ja:日産自動車", "name": "Nissan", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Opel": {"name": "Opel", "icon": "maki-car", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FOpel-Logo%202017.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q40966"}, "addTags": {"brand": "Opel", "brand:wikidata": "Q40966", "brand:wikipedia": "en:Opel", "name": "Opel", "shop": "car"}, "removeTags": {"brand": "Opel", "brand:wikidata": "Q40966", "brand:wikipedia": "en:Opel", "name": "Opel", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Opel": {"name": "Opel", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Opel/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q40966"}, "addTags": {"brand": "Opel", "brand:wikidata": "Q40966", "brand:wikipedia": "en:Opel", "name": "Opel", "shop": "car"}, "removeTags": {"brand": "Opel", "brand:wikidata": "Q40966", "brand:wikipedia": "en:Opel", "name": "Opel", "shop": "car"}, "matchScore": 2, "suggestion": true}, "shop/car/Peugeot": {"name": "Peugeot", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Peugeot/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q6742"}, "addTags": {"brand": "Peugeot", "brand:wikidata": "Q6742", "brand:wikipedia": "en:Peugeot", "name": "Peugeot", "shop": "car"}, "removeTags": {"brand": "Peugeot", "brand:wikidata": "Q6742", "brand:wikipedia": "en:Peugeot", "name": "Peugeot", "shop": "car"}, "matchScore": 2, "suggestion": true}, "shop/car/Porsche": {"name": "Porsche", "icon": "maki-car", "imageURL": "https://graph.facebook.com/porsche/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q40993"}, "addTags": {"brand": "Porsche", "brand:wikidata": "Q40993", "brand:wikipedia": "en:Porsche", "name": "Porsche", "shop": "car"}, "removeTags": {"brand": "Porsche", "brand:wikidata": "Q40993", "brand:wikipedia": "en:Porsche", "name": "Porsche", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Renault": {"name": "Renault", "icon": "maki-car", "imageURL": "https://pbs.twimg.com/profile_images/841673482903670784/cwyLm740_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q6686"}, "addTags": {"brand": "Renault", "brand:wikidata": "Q6686", "brand:wikipedia": "en:Renault", "name": "Renault", "shop": "car"}, "removeTags": {"brand": "Renault", "brand:wikidata": "Q6686", "brand:wikipedia": "en:Renault", "name": "Renault", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Seat": {"name": "Seat", "icon": "maki-car", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSEAT%20Logo%20from%202017.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q188217"}, "addTags": {"brand": "Seat", "brand:wikidata": "Q188217", "brand:wikipedia": "en:SEAT", "name": "Seat", "shop": "car"}, "removeTags": {"brand": "Seat", "brand:wikidata": "Q188217", "brand:wikipedia": "en:SEAT", "name": "Seat", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Skoda": {"name": "Skoda", "icon": "maki-car", "imageURL": "https://pbs.twimg.com/profile_images/1104125296272465921/WPVz8wy9_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q29637"}, "addTags": {"brand": "Skoda", "brand:wikidata": "Q29637", "brand:wikipedia": "en:Škoda Auto", "name": "Skoda", "shop": "car"}, "removeTags": {"brand": "Skoda", "brand:wikidata": "Q29637", "brand:wikipedia": "en:Škoda Auto", "name": "Skoda", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Renault": {"name": "Renault", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Renault/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q6686"}, "addTags": {"brand": "Renault", "brand:wikidata": "Q6686", "brand:wikipedia": "en:Renault", "name": "Renault", "shop": "car"}, "removeTags": {"brand": "Renault", "brand:wikidata": "Q6686", "brand:wikipedia": "en:Renault", "name": "Renault", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Seat": {"name": "Seat", "icon": "maki-car", "imageURL": "https://graph.facebook.com/SEAT.Official/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q188217"}, "addTags": {"brand": "Seat", "brand:wikidata": "Q188217", "brand:wikipedia": "en:SEAT", "name": "Seat", "shop": "car"}, "removeTags": {"brand": "Seat", "brand:wikidata": "Q188217", "brand:wikipedia": "en:SEAT", "name": "Seat", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Skoda": {"name": "Skoda", "icon": "maki-car", "imageURL": "https://graph.facebook.com/skoda/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q29637"}, "addTags": {"brand": "Skoda", "brand:wikidata": "Q29637", "brand:wikipedia": "en:Škoda Auto", "name": "Skoda", "shop": "car"}, "removeTags": {"brand": "Skoda", "brand:wikidata": "Q29637", "brand:wikipedia": "en:Škoda Auto", "name": "Skoda", "shop": "car"}, "matchScore": 2, "suggestion": true}, "shop/car/Subaru": {"name": "Subaru", "icon": "maki-car", "imageURL": "https://graph.facebook.com/SUBARU.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q172741"}, "addTags": {"brand": "Subaru", "brand:wikidata": "Q172741", "brand:wikipedia": "en:Subaru", "name": "Subaru", "shop": "car"}, "removeTags": {"brand": "Subaru", "brand:wikidata": "Q172741", "brand:wikipedia": "en:Subaru", "name": "Subaru", "shop": "car"}, "matchScore": 2, "suggestion": true}, "shop/car/Suzuki": {"name": "Suzuki", "icon": "maki-car", "imageURL": "https://graph.facebook.com/SuzukiGlobalOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q181642"}, "addTags": {"brand": "Suzuki", "brand:wikidata": "Q181642", "brand:wikipedia": "en:Suzuki", "name": "Suzuki", "shop": "car"}, "removeTags": {"brand": "Suzuki", "brand:wikidata": "Q181642", "brand:wikipedia": "en:Suzuki", "name": "Suzuki", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Tesla": {"name": "Tesla", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Official-Tesla-Motors-163049757692185/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q478214"}, "addTags": {"brand": "Tesla", "brand:wikidata": "Q478214", "brand:wikipedia": "en:Tesla, Inc.", "name": "Tesla", "shop": "car"}, "removeTags": {"brand": "Tesla", "brand:wikidata": "Q478214", "brand:wikipedia": "en:Tesla, Inc.", "name": "Tesla", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Toyota": {"name": "Toyota", "icon": "maki-car", "imageURL": "https://graph.facebook.com/ToyotaSpecialShowroom/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q53268"}, "addTags": {"brand": "Toyota", "brand:wikidata": "Q53268", "brand:wikipedia": "en:Toyota", "name": "Toyota", "shop": "car"}, "removeTags": {"brand": "Toyota", "brand:wikidata": "Q53268", "brand:wikipedia": "en:Toyota", "name": "Toyota", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Volkswagen": {"name": "Volkswagen", "icon": "maki-car", "imageURL": "https://pbs.twimg.com/profile_images/918741546735824896/stA-WNRI_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q246"}, "addTags": {"brand": "Volkswagen", "brand:wikidata": "Q246", "brand:wikipedia": "en:Volkswagen", "name": "Volkswagen", "shop": "car"}, "removeTags": {"brand": "Volkswagen", "brand:wikidata": "Q246", "brand:wikipedia": "en:Volkswagen", "name": "Volkswagen", "shop": "car"}, "matchScore": 2, "suggestion": true}, - "shop/car/Volvo": {"name": "Volvo", "icon": "maki-car", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FVolvo%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q215293"}, "addTags": {"brand": "Volvo", "brand:wikidata": "Q215293", "brand:wikipedia": "en:Volvo Cars", "name": "Volvo", "shop": "car"}, "removeTags": {"brand": "Volvo", "brand:wikidata": "Q215293", "brand:wikipedia": "en:Volvo Cars", "name": "Volvo", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Tesla": {"name": "Tesla", "icon": "maki-car", "imageURL": "https://graph.facebook.com/163049757692185/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q478214"}, "addTags": {"brand": "Tesla", "brand:wikidata": "Q478214", "brand:wikipedia": "en:Tesla, Inc.", "name": "Tesla", "shop": "car"}, "removeTags": {"brand": "Tesla", "brand:wikidata": "Q478214", "brand:wikipedia": "en:Tesla, Inc.", "name": "Tesla", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Toyota": {"name": "Toyota", "icon": "maki-car", "imageURL": "https://graph.facebook.com/toyota/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q53268"}, "addTags": {"brand": "Toyota", "brand:wikidata": "Q53268", "brand:wikipedia": "en:Toyota", "name": "Toyota", "shop": "car"}, "removeTags": {"brand": "Toyota", "brand:wikidata": "Q53268", "brand:wikipedia": "en:Toyota", "name": "Toyota", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Volkswagen": {"name": "Volkswagen", "icon": "maki-car", "imageURL": "https://graph.facebook.com/VW/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q246"}, "addTags": {"brand": "Volkswagen", "brand:wikidata": "Q246", "brand:wikipedia": "en:Volkswagen", "name": "Volkswagen", "shop": "car"}, "removeTags": {"brand": "Volkswagen", "brand:wikidata": "Q246", "brand:wikipedia": "en:Volkswagen", "name": "Volkswagen", "shop": "car"}, "matchScore": 2, "suggestion": true}, + "shop/car/Volvo": {"name": "Volvo", "icon": "maki-car", "imageURL": "https://graph.facebook.com/volvocars/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q215293"}, "addTags": {"brand": "Volvo", "brand:wikidata": "Q215293", "brand:wikipedia": "en:Volvo Cars", "name": "Volvo", "shop": "car"}, "removeTags": {"brand": "Volvo", "brand:wikidata": "Q215293", "brand:wikipedia": "en:Volvo Cars", "name": "Volvo", "shop": "car"}, "matchScore": 2, "suggestion": true}, "shop/car/ホンダ": {"name": "ホンダ", "icon": "maki-car", "imageURL": "https://graph.facebook.com/HondaJP/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "car", "brand:wikidata": "Q9584"}, "addTags": {"brand": "ホンダ", "brand:en": "Honda", "brand:ja": "ホンダ", "brand:wikidata": "Q9584", "brand:wikipedia": "ja:本田技研工業", "name": "ホンダ", "name:en": "Honda", "name:ja": "ホンダ", "shop": "car"}, "removeTags": {"brand": "ホンダ", "brand:en": "Honda", "brand:ja": "ホンダ", "brand:wikidata": "Q9584", "brand:wikipedia": "ja:本田技研工業", "name": "ホンダ", "name:en": "Honda", "name:ja": "ホンダ", "shop": "car"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/carpet/Carpetright": {"name": "Carpetright", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/carpetright/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "carpet", "brand:wikidata": "Q5045782"}, "addTags": {"brand": "Carpetright", "brand:wikidata": "Q5045782", "brand:wikipedia": "en:Carpetright", "name": "Carpetright", "shop": "carpet"}, "removeTags": {"brand": "Carpetright", "brand:wikidata": "Q5045782", "brand:wikipedia": "en:Carpetright", "name": "Carpetright", "shop": "carpet"}, "countryCodes": ["be", "gb", "ie", "nl"], "matchScore": 2, "suggestion": true}, "shop/catalogue/Argos": {"name": "Argos", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/argos/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "catalogue", "brand:wikidata": "Q4789707"}, "addTags": {"brand": "Argos", "brand:wikidata": "Q4789707", "brand:wikipedia": "en:Argos (retailer)", "name": "Argos", "shop": "catalogue"}, "removeTags": {"brand": "Argos", "brand:wikidata": "Q4789707", "brand:wikipedia": "en:Argos (retailer)", "name": "Argos", "shop": "catalogue"}, "matchScore": 2, "suggestion": true}, - "shop/charity/Age UK": {"name": "Age UK", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1062640403890012160/sKLJr0LV_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q4691850"}, "addTags": {"brand": "Age UK", "brand:wikidata": "Q4691850", "brand:wikipedia": "en:Age UK", "name": "Age UK", "shop": "charity"}, "removeTags": {"brand": "Age UK", "brand:wikidata": "Q4691850", "brand:wikipedia": "en:Age UK", "name": "Age UK", "shop": "charity"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/charity/Barnardo's": {"name": "Barnardo's", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/773811120717062144/-LlJgkGP_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q2884670"}, "addTags": {"brand": "Barnardo's", "brand:wikidata": "Q2884670", "brand:wikipedia": "en:Barnardo's", "name": "Barnardo's", "shop": "charity"}, "removeTags": {"brand": "Barnardo's", "brand:wikidata": "Q2884670", "brand:wikipedia": "en:Barnardo's", "name": "Barnardo's", "shop": "charity"}, "matchScore": 2, "suggestion": true}, - "shop/charity/British Heart Foundation": {"name": "British Heart Foundation", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1018581043832672256/pFxu3S-U_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q4970039"}, "addTags": {"brand": "British Heart Foundation", "brand:wikidata": "Q4970039", "brand:wikipedia": "en:British Heart Foundation", "name": "British Heart Foundation", "shop": "charity"}, "removeTags": {"brand": "British Heart Foundation", "brand:wikidata": "Q4970039", "brand:wikipedia": "en:British Heart Foundation", "name": "British Heart Foundation", "shop": "charity"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/charity/Age UK": {"name": "Age UK", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/ageuk/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q4691850"}, "addTags": {"brand": "Age UK", "brand:wikidata": "Q4691850", "brand:wikipedia": "en:Age UK", "name": "Age UK", "shop": "charity"}, "removeTags": {"brand": "Age UK", "brand:wikidata": "Q4691850", "brand:wikipedia": "en:Age UK", "name": "Age UK", "shop": "charity"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/charity/Barnardo's": {"name": "Barnardo's", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/barnardos/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q2884670"}, "addTags": {"brand": "Barnardo's", "brand:wikidata": "Q2884670", "brand:wikipedia": "en:Barnardo's", "name": "Barnardo's", "shop": "charity"}, "removeTags": {"brand": "Barnardo's", "brand:wikidata": "Q2884670", "brand:wikipedia": "en:Barnardo's", "name": "Barnardo's", "shop": "charity"}, "matchScore": 2, "suggestion": true}, + "shop/charity/British Heart Foundation": {"name": "British Heart Foundation", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/bhf/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q4970039"}, "addTags": {"brand": "British Heart Foundation", "brand:wikidata": "Q4970039", "brand:wikipedia": "en:British Heart Foundation", "name": "British Heart Foundation", "shop": "charity"}, "removeTags": {"brand": "British Heart Foundation", "brand:wikidata": "Q4970039", "brand:wikipedia": "en:British Heart Foundation", "name": "British Heart Foundation", "shop": "charity"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "shop/charity/British Red Cross": {"name": "British Red Cross", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/britishredcross/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q4970966"}, "addTags": {"brand": "British Red Cross", "brand:wikidata": "Q4970966", "brand:wikipedia": "en:British Red Cross", "name": "British Red Cross", "shop": "charity"}, "removeTags": {"brand": "British Red Cross", "brand:wikidata": "Q4970966", "brand:wikipedia": "en:British Red Cross", "name": "British Red Cross", "shop": "charity"}, "matchScore": 2, "suggestion": true}, - "shop/charity/Cancer Research UK": {"name": "Cancer Research UK", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/948495800971259904/YTVv7Ma9_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q326079"}, "addTags": {"brand": "Cancer Research UK", "brand:wikidata": "Q326079", "brand:wikipedia": "en:Cancer Research UK", "name": "Cancer Research UK", "shop": "charity"}, "removeTags": {"brand": "Cancer Research UK", "brand:wikidata": "Q326079", "brand:wikipedia": "en:Cancer Research UK", "name": "Cancer Research UK", "shop": "charity"}, "matchScore": 2, "suggestion": true}, - "shop/charity/Goodwill": {"name": "Goodwill", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q5583655"}, "addTags": {"brand": "Goodwill", "brand:wikidata": "Q5583655", "brand:wikipedia": "en:Goodwill Industries", "name": "Goodwill", "shop": "charity"}, "removeTags": {"brand": "Goodwill", "brand:wikidata": "Q5583655", "brand:wikipedia": "en:Goodwill Industries", "name": "Goodwill", "shop": "charity"}, "matchScore": 2, "suggestion": true}, - "shop/charity/Mind": {"name": "Mind", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/700296365285310464/nxkGt-oH_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q3314763"}, "addTags": {"brand": "Mind", "brand:wikidata": "Q3314763", "brand:wikipedia": "en:Mind (charity)", "name": "Mind", "shop": "charity"}, "removeTags": {"brand": "Mind", "brand:wikidata": "Q3314763", "brand:wikipedia": "en:Mind (charity)", "name": "Mind", "shop": "charity"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/charity/Myrorna": {"name": "Myrorna", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q10592609"}, "addTags": {"brand": "Myrorna", "brand:wikidata": "Q10592609", "brand:wikipedia": "sv:Myrorna", "name": "Myrorna", "shop": "charity"}, "removeTags": {"brand": "Myrorna", "brand:wikidata": "Q10592609", "brand:wikipedia": "sv:Myrorna", "name": "Myrorna", "shop": "charity"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, - "shop/charity/Oxfam": {"name": "Oxfam", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/880508743183716355/oGLYlweY_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q267941"}, "addTags": {"brand": "Oxfam", "brand:wikidata": "Q267941", "brand:wikipedia": "en:Oxfam", "name": "Oxfam", "shop": "charity"}, "removeTags": {"brand": "Oxfam", "brand:wikidata": "Q267941", "brand:wikipedia": "en:Oxfam", "name": "Oxfam", "shop": "charity"}, "matchScore": 2, "suggestion": true}, - "shop/charity/RSPCA": {"name": "RSPCA", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/798101205729808384/d2QZlyR3_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q584819"}, "addTags": {"brand": "RSPCA", "brand:wikidata": "Q584819", "brand:wikipedia": "en:Royal Society for the Prevention of Cruelty to Animals", "name": "RSPCA", "shop": "charity"}, "removeTags": {"brand": "RSPCA", "brand:wikidata": "Q584819", "brand:wikipedia": "en:Royal Society for the Prevention of Cruelty to Animals", "name": "RSPCA", "shop": "charity"}, "matchScore": 2, "suggestion": true}, - "shop/charity/Salvation Army": {"name": "Salvation Army", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1002949313830371328/7sdeOFFk_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q188307"}, "addTags": {"brand": "Salvation Army", "brand:wikidata": "Q188307", "brand:wikipedia": "en:The Salvation Army", "name": "Salvation Army", "shop": "charity"}, "removeTags": {"brand": "Salvation Army", "brand:wikidata": "Q188307", "brand:wikipedia": "en:The Salvation Army", "name": "Salvation Army", "shop": "charity"}, "matchScore": 2, "suggestion": true}, - "shop/charity/Scope": {"name": "Scope", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1098320113835610113/WisJatSW_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q7434435"}, "addTags": {"brand": "Scope", "brand:wikidata": "Q7434435", "brand:wikipedia": "en:Scope (charity)", "name": "Scope", "shop": "charity"}, "removeTags": {"brand": "Scope", "brand:wikidata": "Q7434435", "brand:wikipedia": "en:Scope (charity)", "name": "Scope", "shop": "charity"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/charity/Sue Ryder": {"name": "Sue Ryder", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1103043966751133698/BJk80NfX_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q7634271"}, "addTags": {"brand": "Sue Ryder", "brand:wikidata": "Q7634271", "brand:wikipedia": "en:Sue Ryder (charity)", "name": "Sue Ryder", "shop": "charity"}, "removeTags": {"brand": "Sue Ryder", "brand:wikidata": "Q7634271", "brand:wikipedia": "en:Sue Ryder (charity)", "name": "Sue Ryder", "shop": "charity"}, "matchScore": 2, "suggestion": true}, - "shop/charity/The Salvation Army": {"name": "The Salvation Army", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1002949313830371328/7sdeOFFk_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q188307"}, "addTags": {"brand": "The Salvation Army", "brand:wikidata": "Q188307", "brand:wikipedia": "en:The Salvation Army", "name": "The Salvation Army", "shop": "charity"}, "removeTags": {"brand": "The Salvation Army", "brand:wikidata": "Q188307", "brand:wikipedia": "en:The Salvation Army", "name": "The Salvation Army", "shop": "charity"}, "matchScore": 2, "suggestion": true}, + "shop/charity/Cancer Research UK": {"name": "Cancer Research UK", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/cancerresearchuk/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q326079"}, "addTags": {"brand": "Cancer Research UK", "brand:wikidata": "Q326079", "brand:wikipedia": "en:Cancer Research UK", "name": "Cancer Research UK", "shop": "charity"}, "removeTags": {"brand": "Cancer Research UK", "brand:wikidata": "Q326079", "brand:wikipedia": "en:Cancer Research UK", "name": "Cancer Research UK", "shop": "charity"}, "matchScore": 2, "suggestion": true}, + "shop/charity/Goodwill": {"name": "Goodwill", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/GoodwillIntl/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q5583655"}, "addTags": {"brand": "Goodwill", "brand:wikidata": "Q5583655", "brand:wikipedia": "en:Goodwill Industries", "name": "Goodwill", "shop": "charity"}, "removeTags": {"brand": "Goodwill", "brand:wikidata": "Q5583655", "brand:wikipedia": "en:Goodwill Industries", "name": "Goodwill", "shop": "charity"}, "matchScore": 2, "suggestion": true}, + "shop/charity/Mind": {"name": "Mind", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/mindforbettermentalhealth/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q3314763"}, "addTags": {"brand": "Mind", "brand:wikidata": "Q3314763", "brand:wikipedia": "en:Mind (charity)", "name": "Mind", "shop": "charity"}, "removeTags": {"brand": "Mind", "brand:wikidata": "Q3314763", "brand:wikipedia": "en:Mind (charity)", "name": "Mind", "shop": "charity"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/charity/Myrorna": {"name": "Myrorna", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Myrorna/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q10592609"}, "addTags": {"brand": "Myrorna", "brand:wikidata": "Q10592609", "brand:wikipedia": "sv:Myrorna", "name": "Myrorna", "shop": "charity"}, "removeTags": {"brand": "Myrorna", "brand:wikidata": "Q10592609", "brand:wikipedia": "sv:Myrorna", "name": "Myrorna", "shop": "charity"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, + "shop/charity/Oxfam": {"name": "Oxfam", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/oxfamGB/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q267941"}, "addTags": {"brand": "Oxfam", "brand:wikidata": "Q267941", "brand:wikipedia": "en:Oxfam", "name": "Oxfam", "shop": "charity"}, "removeTags": {"brand": "Oxfam", "brand:wikidata": "Q267941", "brand:wikipedia": "en:Oxfam", "name": "Oxfam", "shop": "charity"}, "matchScore": 2, "suggestion": true}, + "shop/charity/RSPCA": {"name": "RSPCA", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/RSPCA/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q584819"}, "addTags": {"brand": "RSPCA", "brand:wikidata": "Q584819", "brand:wikipedia": "en:Royal Society for the Prevention of Cruelty to Animals", "name": "RSPCA", "shop": "charity"}, "removeTags": {"brand": "RSPCA", "brand:wikidata": "Q584819", "brand:wikipedia": "en:Royal Society for the Prevention of Cruelty to Animals", "name": "RSPCA", "shop": "charity"}, "matchScore": 2, "suggestion": true}, + "shop/charity/Scope": {"name": "Scope", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Scope/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q7434435"}, "addTags": {"brand": "Scope", "brand:wikidata": "Q7434435", "brand:wikipedia": "en:Scope (charity)", "name": "Scope", "shop": "charity"}, "removeTags": {"brand": "Scope", "brand:wikidata": "Q7434435", "brand:wikipedia": "en:Scope (charity)", "name": "Scope", "shop": "charity"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/charity/Sue Ryder": {"name": "Sue Ryder", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/SueRyderNational/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q7634271"}, "addTags": {"brand": "Sue Ryder", "brand:wikidata": "Q7634271", "brand:wikipedia": "en:Sue Ryder (charity)", "name": "Sue Ryder", "shop": "charity"}, "removeTags": {"brand": "Sue Ryder", "brand:wikidata": "Q7634271", "brand:wikipedia": "en:Sue Ryder (charity)", "name": "Sue Ryder", "shop": "charity"}, "matchScore": 2, "suggestion": true}, + "shop/charity/The Salvation Army": {"name": "The Salvation Army", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/SalvationArmyUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q188307"}, "addTags": {"brand": "The Salvation Army", "brand:wikidata": "Q188307", "brand:wikipedia": "en:The Salvation Army", "name": "The Salvation Army", "shop": "charity"}, "removeTags": {"brand": "The Salvation Army", "brand:wikidata": "Q188307", "brand:wikipedia": "en:The Salvation Army", "name": "The Salvation Army", "shop": "charity"}, "matchScore": 2, "suggestion": true}, "shop/chemist/Bipa": {"name": "Bipa", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBipa%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q864933"}, "addTags": {"brand": "Bipa", "brand:wikidata": "Q864933", "brand:wikipedia": "de:Bipa", "name": "Bipa", "shop": "chemist"}, "removeTags": {"brand": "Bipa", "brand:wikidata": "Q864933", "brand:wikipedia": "de:Bipa", "name": "Bipa", "shop": "chemist"}, "countryCodes": ["at", "hr"], "matchScore": 2, "suggestion": true}, "shop/chemist/Budnikowsky": {"name": "Budnikowsky", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BUDNI/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q1001516"}, "addTags": {"brand": "Budnikowsky", "brand:wikidata": "Q1001516", "brand:wikipedia": "de:Budnikowsky", "name": "Budnikowsky", "shop": "chemist"}, "removeTags": {"brand": "Budnikowsky", "brand:wikidata": "Q1001516", "brand:wikipedia": "de:Budnikowsky", "name": "Budnikowsky", "shop": "chemist"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/chemist/Drogeria Natura": {"name": "Drogeria Natura", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q9212032"}, "addTags": {"brand": "Drogeria Natura", "brand:wikidata": "Q9212032", "brand:wikipedia": "pl:Drogerie Natura", "name": "Drogeria Natura", "shop": "chemist"}, "removeTags": {"brand": "Drogeria Natura", "brand:wikidata": "Q9212032", "brand:wikipedia": "pl:Drogerie Natura", "name": "Drogeria Natura", "shop": "chemist"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "shop/chemist/Etos": {"name": "Etos", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FEtos%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q2609459"}, "addTags": {"brand": "Etos", "brand:wikidata": "Q2609459", "brand:wikipedia": "en:Etos", "name": "Etos", "shop": "chemist"}, "removeTags": {"brand": "Etos", "brand:wikidata": "Q2609459", "brand:wikipedia": "en:Etos", "name": "Etos", "shop": "chemist"}, "matchScore": 2, "suggestion": true}, "shop/chemist/Kruidvat": {"name": "Kruidvat", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKruidvat%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q2226366"}, "addTags": {"brand": "Kruidvat", "brand:wikidata": "Q2226366", "brand:wikipedia": "en:Kruidvat", "name": "Kruidvat", "shop": "chemist"}, "removeTags": {"brand": "Kruidvat", "brand:wikidata": "Q2226366", "brand:wikipedia": "en:Kruidvat", "name": "Kruidvat", "shop": "chemist"}, "matchScore": 2, "suggestion": true}, "shop/chemist/Matas": {"name": "Matas", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q6786143"}, "addTags": {"brand": "Matas", "brand:wikidata": "Q6786143", "brand:wikipedia": "en:Matas (drug store)", "name": "Matas", "shop": "chemist"}, "removeTags": {"brand": "Matas", "brand:wikidata": "Q6786143", "brand:wikipedia": "en:Matas (drug store)", "name": "Matas", "shop": "chemist"}, "countryCodes": ["dk"], "matchScore": 2, "suggestion": true}, + "shop/chemist/Müller": {"name": "Müller", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Drogerie%20Mueller.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q1958759"}, "addTags": {"brand": "Müller", "brand:wikidata": "Q1958759", "brand:wikipedia": "en:Müller (German trade company)", "name": "Müller", "shop": "chemist"}, "removeTags": {"brand": "Müller", "brand:wikidata": "Q1958759", "brand:wikipedia": "en:Müller (German trade company)", "name": "Müller", "shop": "chemist"}, "matchScore": 2, "suggestion": true}, "shop/chemist/Rossmann": {"name": "Rossmann", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/rossmann.gmbh/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q316004"}, "addTags": {"brand": "Rossmann", "brand:wikidata": "Q316004", "brand:wikipedia": "de:Dirk Rossmann GmbH", "name": "Rossmann", "shop": "chemist"}, "removeTags": {"brand": "Rossmann", "brand:wikidata": "Q316004", "brand:wikipedia": "de:Dirk Rossmann GmbH", "name": "Rossmann", "shop": "chemist"}, "matchScore": 2, "suggestion": true}, "shop/chemist/Teta": {"name": "Teta", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q20860823"}, "addTags": {"brand": "Teta", "brand:wikidata": "Q20860823", "brand:wikipedia": "cs:Teta drogerie", "name": "Teta", "shop": "chemist"}, "removeTags": {"brand": "Teta", "brand:wikidata": "Q20860823", "brand:wikipedia": "cs:Teta drogerie", "name": "Teta", "shop": "chemist"}, "matchScore": 2, "suggestion": true}, "shop/chemist/Trekpleister": {"name": "Trekpleister", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTrekpleister%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q2551576"}, "addTags": {"brand": "Trekpleister", "brand:wikidata": "Q2551576", "brand:wikipedia": "nl:Trekpleister (drogisterij)", "name": "Trekpleister", "shop": "chemist"}, "removeTags": {"brand": "Trekpleister", "brand:wikidata": "Q2551576", "brand:wikipedia": "nl:Trekpleister (drogisterij)", "name": "Trekpleister", "shop": "chemist"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, "shop/chemist/dm": {"name": "dm", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/dm.Deutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q266572"}, "addTags": {"brand": "dm", "brand:wikidata": "Q266572", "brand:wikipedia": "en:Dm-drogerie markt", "name": "dm", "shop": "chemist"}, "removeTags": {"brand": "dm", "brand:wikidata": "Q266572", "brand:wikipedia": "en:Dm-drogerie markt", "name": "dm", "shop": "chemist"}, "countryCodes": ["at", "ba", "bg", "cz", "de", "hr", "hu", "it", "mk", "ro", "rs", "si", "sk"], "matchScore": 2, "suggestion": true}, "shop/chemist/康是美": {"name": "康是美", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q11063876"}, "addTags": {"brand": "康是美", "brand:wikidata": "Q11063876", "brand:wikipedia": "zh:康是美藥妝店", "name": "康是美", "shop": "chemist"}, "removeTags": {"brand": "康是美", "brand:wikidata": "Q11063876", "brand:wikipedia": "zh:康是美藥妝店", "name": "康是美", "shop": "chemist"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, - "shop/chocolate/Cacau Show": {"name": "Cacau Show", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "chocolate", "brand:wikidata": "Q9671713"}, "addTags": {"brand": "Cacau Show", "brand:wikidata": "Q9671713", "brand:wikipedia": "en:Cacau show", "name": "Cacau Show", "shop": "chocolate"}, "removeTags": {"brand": "Cacau Show", "brand:wikidata": "Q9671713", "brand:wikipedia": "en:Cacau show", "name": "Cacau Show", "shop": "chocolate"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, - "shop/chocolate/Leonidas": {"name": "Leonidas", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "chocolate", "brand:wikidata": "Q80335"}, "addTags": {"brand": "Leonidas", "brand:wikidata": "Q80335", "brand:wikipedia": "en:Leonidas (chocolate maker)", "name": "Leonidas", "shop": "chocolate"}, "removeTags": {"brand": "Leonidas", "brand:wikidata": "Q80335", "brand:wikipedia": "en:Leonidas (chocolate maker)", "name": "Leonidas", "shop": "chocolate"}, "matchScore": 2, "suggestion": true}, + "shop/chocolate/Cacau Show": {"name": "Cacau Show", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/CacauShow/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "chocolate", "brand:wikidata": "Q9671713"}, "addTags": {"brand": "Cacau Show", "brand:wikidata": "Q9671713", "brand:wikipedia": "en:Cacau Show", "name": "Cacau Show", "shop": "chocolate"}, "removeTags": {"brand": "Cacau Show", "brand:wikidata": "Q9671713", "brand:wikipedia": "en:Cacau Show", "name": "Cacau Show", "shop": "chocolate"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, + "shop/chocolate/Leonidas": {"name": "Leonidas", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Leonidas.Official/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "chocolate", "brand:wikidata": "Q80335"}, "addTags": {"brand": "Leonidas", "brand:wikidata": "Q80335", "brand:wikipedia": "en:Leonidas (chocolate maker)", "name": "Leonidas", "shop": "chocolate"}, "removeTags": {"brand": "Leonidas", "brand:wikidata": "Q80335", "brand:wikipedia": "en:Leonidas (chocolate maker)", "name": "Leonidas", "shop": "chocolate"}, "matchScore": 2, "suggestion": true}, "shop/clothes/AOKI": {"name": "AOKI", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q11189480"}, "addTags": {"brand": "AOKI", "brand:wikidata": "Q11189480", "brand:wikipedia": "ja:AOKIホールディングス", "clothes": "men", "name": "AOKI", "name:ja": "アオキ", "operator": "株式会社AOKIホールディングス", "operator:en": "AOKI Holdings Inc.", "shop": "clothes"}, "removeTags": {"brand": "AOKI", "brand:wikidata": "Q11189480", "brand:wikipedia": "ja:AOKIホールディングス", "clothes": "men", "name": "AOKI", "name:ja": "アオキ", "operator": "株式会社AOKIホールディングス", "operator:en": "AOKI Holdings Inc.", "shop": "clothes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/clothes/Abercrombie & Fitch": {"name": "Abercrombie & Fitch", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1090830222302298112/W60h63qk_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q319344"}, "addTags": {"brand": "Abercrombie & Fitch", "brand:wikidata": "Q319344", "brand:wikipedia": "en:Abercrombie & Fitch", "name": "Abercrombie & Fitch", "shop": "clothes"}, "removeTags": {"brand": "Abercrombie & Fitch", "brand:wikidata": "Q319344", "brand:wikipedia": "en:Abercrombie & Fitch", "name": "Abercrombie & Fitch", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Accessorize": {"name": "Accessorize", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1014248943121813505/qNRJq7zh_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q3069980"}, "addTags": {"brand": "Accessorize", "brand:wikidata": "Q3069980", "brand:wikipedia": "en:Monsoon Accessorize", "name": "Accessorize", "shop": "clothes"}, "removeTags": {"brand": "Accessorize", "brand:wikidata": "Q3069980", "brand:wikipedia": "en:Monsoon Accessorize", "name": "Accessorize", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, @@ -2714,28 +2835,30 @@ "shop/clothes/Bonita": {"name": "Bonita", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q945463"}, "addTags": {"brand": "Bonita", "brand:wikidata": "Q945463", "brand:wikipedia": "en:Bonia (fashion)", "name": "Bonita", "shop": "clothes"}, "removeTags": {"brand": "Bonita", "brand:wikidata": "Q945463", "brand:wikipedia": "en:Bonia (fashion)", "name": "Bonita", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Bonobo": {"name": "Bonobo", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBonobos%20LogoGrey%20April13.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q4942546"}, "addTags": {"brand": "Bonobo", "brand:wikidata": "Q4942546", "brand:wikipedia": "en:Bonobos (apparel)", "name": "Bonobo", "shop": "clothes"}, "removeTags": {"brand": "Bonobo", "brand:wikidata": "Q4942546", "brand:wikipedia": "en:Bonobos (apparel)", "name": "Bonobo", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Brice": {"name": "Brice", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLOGO%20BRICE%20Noir.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q2925067"}, "addTags": {"brand": "Brice", "brand:wikidata": "Q2925067", "brand:wikipedia": "fr:Brice (enseigne)", "name": "Brice", "shop": "clothes"}, "removeTags": {"brand": "Brice", "brand:wikidata": "Q2925067", "brand:wikipedia": "fr:Brice (enseigne)", "name": "Brice", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/Brooks Brothers": {"name": "Brooks Brothers", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1085664744818860032/1GmuBSB0_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q929722"}, "addTags": {"brand": "Brooks Brothers", "brand:wikidata": "Q929722", "brand:wikipedia": "en:Brooks Brothers", "name": "Brooks Brothers", "shop": "clothes"}, "removeTags": {"brand": "Brooks Brothers", "brand:wikidata": "Q929722", "brand:wikipedia": "en:Brooks Brothers", "name": "Brooks Brothers", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/Brooks Brothers": {"name": "Brooks Brothers", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1114169945510817792/dRtsPBbN_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q929722"}, "addTags": {"brand": "Brooks Brothers", "brand:wikidata": "Q929722", "brand:wikipedia": "en:Brooks Brothers", "name": "Brooks Brothers", "shop": "clothes"}, "removeTags": {"brand": "Brooks Brothers", "brand:wikidata": "Q929722", "brand:wikipedia": "en:Brooks Brothers", "name": "Brooks Brothers", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Burberry": {"name": "Burberry", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1024961047009157121/2xSmZUHV_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q390107"}, "addTags": {"brand": "Burberry", "brand:wikidata": "Q390107", "brand:wikipedia": "en:Burberry", "name": "Burberry", "shop": "clothes"}, "removeTags": {"brand": "Burberry", "brand:wikidata": "Q390107", "brand:wikipedia": "en:Burberry", "name": "Burberry", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/Burlington Coat Factory": {"name": "Burlington Coat Factory", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/851496565118205953/l8vJaRWh_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q4999220"}, "addTags": {"brand": "Burlington Coat Factory", "brand:wikidata": "Q4999220", "brand:wikipedia": "en:Burlington (department store)", "name": "Burlington Coat Factory", "shop": "clothes"}, "removeTags": {"brand": "Burlington Coat Factory", "brand:wikidata": "Q4999220", "brand:wikipedia": "en:Burlington (department store)", "name": "Burlington Coat Factory", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/Burlington Coat Factory": {"name": "Burlington Coat Factory", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/851496565118205953/l8vJaRWh_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q4999220"}, "addTags": {"brand": "Burlington Coat Factory", "brand:wikidata": "Q4999220", "brand:wikipedia": "en:Burlington (department store)", "name": "Burlington Coat Factory", "shop": "clothes"}, "removeTags": {"brand": "Burlington Coat Factory", "brand:wikidata": "Q4999220", "brand:wikipedia": "en:Burlington (department store)", "name": "Burlington Coat Factory", "shop": "clothes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/clothes/Burton": {"name": "Burton", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/966321347923271680/THD9mE6x_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q5000795"}, "addTags": {"brand": "Burton", "brand:wikidata": "Q5000795", "brand:wikipedia": "en:Burton (retailer)", "name": "Burton", "shop": "clothes"}, "removeTags": {"brand": "Burton", "brand:wikidata": "Q5000795", "brand:wikipedia": "en:Burton (retailer)", "name": "Burton", "shop": "clothes"}, "countryCodes": ["fr", "gb"], "matchScore": 2, "suggestion": true}, "shop/clothes/C&A": {"name": "C&A", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FC-und-A-Logo-2011.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q701338"}, "addTags": {"brand": "C&A", "brand:wikidata": "Q701338", "brand:wikipedia": "en:C&A", "name": "C&A", "shop": "clothes"}, "removeTags": {"brand": "C&A", "brand:wikidata": "Q701338", "brand:wikipedia": "en:C&A", "name": "C&A", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/COS": {"name": "COS", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q60772401"}, "addTags": {"brand": "COS", "brand:wikidata": "Q60772401", "brand:wikipedia": "en:COS (Collection Of Style)", "name": "COS", "shop": "clothes"}, "removeTags": {"brand": "COS", "brand:wikidata": "Q60772401", "brand:wikipedia": "en:COS (Collection Of Style)", "name": "COS", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/Calvin Klein": {"name": "Calvin Klein", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/889490770687905792/N8mVqffO_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q1068628"}, "addTags": {"brand": "Calvin Klein", "brand:wikidata": "Q1068628", "brand:wikipedia": "en:Calvin Klein", "name": "Calvin Klein", "shop": "clothes"}, "removeTags": {"brand": "Calvin Klein", "brand:wikidata": "Q1068628", "brand:wikipedia": "en:Calvin Klein", "name": "Calvin Klein", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/COS": {"name": "COS", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q60772401"}, "addTags": {"brand": "COS", "brand:wikidata": "Q60772401", "brand:wikipedia": "en:COS (clothing)", "name": "COS", "shop": "clothes"}, "removeTags": {"brand": "COS", "brand:wikidata": "Q60772401", "brand:wikipedia": "en:COS (clothing)", "name": "COS", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/Calvin Klein": {"name": "Calvin Klein", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/889490770687905792/N8mVqffO_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q1068628"}, "addTags": {"brand": "Calvin Klein", "brand:wikidata": "Q1068628", "brand:wikipedia": "en:Calvin Klein (company)", "name": "Calvin Klein", "shop": "clothes"}, "removeTags": {"brand": "Calvin Klein", "brand:wikidata": "Q1068628", "brand:wikipedia": "en:Calvin Klein (company)", "name": "Calvin Klein", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Calzedonia": {"name": "Calzedonia", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/calzedonia/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q1027874"}, "addTags": {"brand": "Calzedonia", "brand:wikidata": "Q1027874", "brand:wikipedia": "en:Calzedonia", "name": "Calzedonia", "shop": "clothes"}, "removeTags": {"brand": "Calzedonia", "brand:wikidata": "Q1027874", "brand:wikipedia": "en:Calzedonia", "name": "Calzedonia", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Camaïeu": {"name": "Camaïeu", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q2934647"}, "addTags": {"brand": "Camaïeu", "brand:wikidata": "Q2934647", "brand:wikipedia": "en:Camaïeu (company)", "name": "Camaïeu", "shop": "clothes"}, "removeTags": {"brand": "Camaïeu", "brand:wikidata": "Q2934647", "brand:wikipedia": "en:Camaïeu (company)", "name": "Camaïeu", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Camp David": {"name": "Camp David", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q50540636"}, "addTags": {"brand": "Camp David", "brand:wikidata": "Q50540636", "brand:wikipedia": "en:Camp David (fashion)", "name": "Camp David", "shop": "clothes"}, "removeTags": {"brand": "Camp David", "brand:wikidata": "Q50540636", "brand:wikipedia": "en:Camp David (fashion)", "name": "Camp David", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/Carhartt": {"name": "Carhartt", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1101238172233752577/ngKE1Yid_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q527877"}, "addTags": {"brand": "Carhartt", "brand:wikidata": "Q527877", "brand:wikipedia": "en:Carhartt", "name": "Carhartt", "shop": "clothes"}, "removeTags": {"brand": "Carhartt", "brand:wikidata": "Q527877", "brand:wikipedia": "en:Carhartt", "name": "Carhartt", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Carter's": {"name": "Carter's", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q5047083"}, "addTags": {"brand": "Carter's", "brand:wikidata": "Q5047083", "brand:wikipedia": "en:Carter's", "name": "Carter's", "shop": "clothes"}, "removeTags": {"brand": "Carter's", "brand:wikidata": "Q5047083", "brand:wikipedia": "en:Carter's", "name": "Carter's", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/Cato": {"name": "Cato", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q16956136"}, "addTags": {"brand": "Cato", "brand:wikidata": "Q16956136", "brand:wikipedia": "en:Cato Corporation", "name": "Cato", "shop": "clothes"}, "removeTags": {"brand": "Cato", "brand:wikidata": "Q16956136", "brand:wikipedia": "en:Cato Corporation", "name": "Cato", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/Cato": {"name": "Cato", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q16956136"}, "addTags": {"brand": "Cato", "brand:wikidata": "Q16956136", "brand:wikipedia": "en:Cato Corporation", "name": "Cato", "shop": "clothes"}, "removeTags": {"brand": "Cato", "brand:wikidata": "Q16956136", "brand:wikipedia": "en:Cato Corporation", "name": "Cato", "shop": "clothes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/clothes/Celio": {"name": "Celio", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20celio%20RVB.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q2672003"}, "addTags": {"brand": "Celio", "brand:wikidata": "Q2672003", "brand:wikipedia": "en:Celio (retailer)", "name": "Celio", "shop": "clothes"}, "removeTags": {"brand": "Celio", "brand:wikidata": "Q2672003", "brand:wikipedia": "en:Celio (retailer)", "name": "Celio", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Charles Vögele": {"name": "Charles Vögele", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCharles%20Voegele%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q1066326"}, "addTags": {"brand": "Charles Vögele", "brand:wikidata": "Q1066326", "brand:wikipedia": "de:Charles Vögele Holding", "name": "Charles Vögele", "shop": "clothes"}, "removeTags": {"brand": "Charles Vögele", "brand:wikidata": "Q1066326", "brand:wikipedia": "de:Charles Vögele Holding", "name": "Charles Vögele", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/Charlotte Russe": {"name": "Charlotte Russe", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCharlotte%20russe.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q5086126"}, "addTags": {"brand": "Charlotte Russe", "brand:wikidata": "Q5086126", "brand:wikipedia": "en:Charlotte Russe (clothing retailer)", "name": "Charlotte Russe", "shop": "clothes"}, "removeTags": {"brand": "Charlotte Russe", "brand:wikidata": "Q5086126", "brand:wikipedia": "en:Charlotte Russe (clothing retailer)", "name": "Charlotte Russe", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/Charlotte Russe": {"name": "Charlotte Russe", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCharlotte%20russe.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q5086126"}, "addTags": {"brand": "Charlotte Russe", "brand:wikidata": "Q5086126", "brand:wikipedia": "en:Charlotte Russe (clothing retailer)", "name": "Charlotte Russe", "shop": "clothes"}, "removeTags": {"brand": "Charlotte Russe", "brand:wikidata": "Q5086126", "brand:wikipedia": "en:Charlotte Russe (clothing retailer)", "name": "Charlotte Russe", "shop": "clothes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/clothes/Chico's": {"name": "Chico's", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChico's%20FAS%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q5096393"}, "addTags": {"brand": "Chico's", "brand:wikidata": "Q5096393", "brand:wikipedia": "en:Chico's (clothing retailer)", "name": "Chico's", "shop": "clothes"}, "removeTags": {"brand": "Chico's", "brand:wikidata": "Q5096393", "brand:wikipedia": "en:Chico's (clothing retailer)", "name": "Chico's", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Christopher & Banks": {"name": "Christopher & Banks", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChristopher%20%26%20Banks%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q5111816"}, "addTags": {"brand": "Christopher & Banks", "brand:wikidata": "Q5111816", "brand:wikipedia": "en:Christopher & Banks", "name": "Christopher & Banks", "shop": "clothes"}, "removeTags": {"brand": "Christopher & Banks", "brand:wikidata": "Q5111816", "brand:wikipedia": "en:Christopher & Banks", "name": "Christopher & Banks", "shop": "clothes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/clothes/Club Monaco": {"name": "Club Monaco", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FClub-monaco-logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q2979949"}, "addTags": {"brand": "Club Monaco", "brand:wikidata": "Q2979949", "brand:wikipedia": "en:Club Monaco", "name": "Club Monaco", "shop": "clothes"}, "removeTags": {"brand": "Club Monaco", "brand:wikidata": "Q2979949", "brand:wikipedia": "en:Club Monaco", "name": "Club Monaco", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Colin's": {"name": "Colin's", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q28729658"}, "addTags": {"brand": "Colin's", "brand:wikidata": "Q28729658", "name": "Colin's", "shop": "clothes"}, "removeTags": {"brand": "Colin's", "brand:wikidata": "Q28729658", "name": "Colin's", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Columbia": {"name": "Columbia", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/378800000507623403/444cd8e60cf59b6fab58ba06c80c2a6c_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q1112588"}, "addTags": {"brand": "Columbia", "brand:wikidata": "Q1112588", "brand:wikipedia": "en:Columbia Sportswear", "name": "Columbia", "shop": "clothes"}, "removeTags": {"brand": "Columbia", "brand:wikidata": "Q1112588", "brand:wikipedia": "en:Columbia Sportswear", "name": "Columbia", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/Cropp": {"name": "Cropp", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q9196793"}, "addTags": {"brand": "Cropp", "brand:wikidata": "Q9196793", "brand:wikipedia": "pl:Cropp", "name": "Cropp", "shop": "clothes"}, "removeTags": {"brand": "Cropp", "brand:wikidata": "Q9196793", "brand:wikipedia": "pl:Cropp", "name": "Cropp", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Cubus": {"name": "Cubus", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q3439593"}, "addTags": {"brand": "Cubus", "brand:wikidata": "Q3439593", "brand:wikipedia": "no:Cubus", "name": "Cubus", "shop": "clothes"}, "removeTags": {"brand": "Cubus", "brand:wikidata": "Q3439593", "brand:wikipedia": "no:Cubus", "name": "Cubus", "shop": "clothes"}, "countryCodes": ["de", "fi", "lv", "no", "pl", "se"], "matchScore": 2, "suggestion": true}, - "shop/clothes/DXL Men's Apparel": {"name": "DXL Men's Apparel", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q61981830"}, "addTags": {"brand": "DXL Men's Apparel", "brand:wikidata": "Q61981830", "clothes": "oversize;men", "name": "DXL Men's Apparel", "operator:wikidata": "Q5050852", "operator:wikipedia": "en:Destination XL Group", "shop": "clothes"}, "removeTags": {"brand": "DXL Men's Apparel", "brand:wikidata": "Q61981830", "clothes": "oversize;men", "name": "DXL Men's Apparel", "operator:wikidata": "Q5050852", "operator:wikipedia": "en:Destination XL Group", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/DXL Men's Apparel": {"name": "DXL Men's Apparel", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q61981830"}, "addTags": {"brand": "DXL Men's Apparel", "brand:wikidata": "Q61981830", "clothes": "oversize;men", "name": "DXL Men's Apparel", "operator:wikidata": "Q5050852", "operator:wikipedia": "en:Destination XL Group", "shop": "clothes"}, "removeTags": {"brand": "DXL Men's Apparel", "brand:wikidata": "Q61981830", "clothes": "oversize;men", "name": "DXL Men's Apparel", "operator:wikidata": "Q5050852", "operator:wikipedia": "en:Destination XL Group", "shop": "clothes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/clothes/Damart": {"name": "Damart", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q3012602"}, "addTags": {"brand": "Damart", "brand:wikidata": "Q3012602", "brand:wikipedia": "en:Damart", "name": "Damart", "shop": "clothes"}, "removeTags": {"brand": "Damart", "brand:wikidata": "Q3012602", "brand:wikipedia": "en:Damart", "name": "Damart", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/David's Bridal": {"name": "David's Bridal", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/899743614934421505/tuKy4f_-_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q5230388"}, "addTags": {"brand": "David's Bridal", "brand:wikidata": "Q5230388", "brand:wikipedia": "en:David's Bridal", "name": "David's Bridal", "shop": "clothes"}, "removeTags": {"brand": "David's Bridal", "brand:wikidata": "Q5230388", "brand:wikipedia": "en:David's Bridal", "name": "David's Bridal", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Desigual": {"name": "Desigual", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1105077887680548864/MXN9rGjm_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q83750"}, "addTags": {"brand": "Desigual", "brand:wikidata": "Q83750", "brand:wikipedia": "en:Desigual", "name": "Desigual", "shop": "clothes"}, "removeTags": {"brand": "Desigual", "brand:wikidata": "Q83750", "brand:wikipedia": "en:Desigual", "name": "Desigual", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, @@ -2779,7 +2902,7 @@ "shop/clothes/Jennyfer": {"name": "Jennyfer", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q3177174"}, "addTags": {"brand": "Jennyfer", "brand:wikidata": "Q3177174", "brand:wikipedia": "fr:Jennyfer", "name": "Jennyfer", "shop": "clothes"}, "removeTags": {"brand": "Jennyfer", "brand:wikidata": "Q3177174", "brand:wikipedia": "fr:Jennyfer", "name": "Jennyfer", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Jet": {"name": "Jet", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q61995123"}, "addTags": {"brand": "Jet", "brand:wikidata": "Q61995123", "name": "Jet", "shop": "clothes"}, "removeTags": {"brand": "Jet", "brand:wikidata": "Q61995123", "name": "Jet", "shop": "clothes"}, "countryCodes": ["za"], "matchScore": 2, "suggestion": true}, "shop/clothes/Jigsaw": {"name": "Jigsaw", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/728543220158836736/01mbnkez_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q6192383"}, "addTags": {"brand": "Jigsaw", "brand:wikidata": "Q6192383", "brand:wikipedia": "en:Jigsaw (clothing retailer)", "name": "Jigsaw", "shop": "clothes"}, "removeTags": {"brand": "Jigsaw", "brand:wikidata": "Q6192383", "brand:wikipedia": "en:Jigsaw (clothing retailer)", "name": "Jigsaw", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/Jos. A. Bank": {"name": "Jos. A. Bank", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1001953978790313984/rZx5Eh6N_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q6204078"}, "addTags": {"brand": "Jos. A. Bank", "brand:wikidata": "Q6204078", "brand:wikipedia": "en: JoS. A. Bank Clothiers", "name": "Jos. A. Bank", "shop": "clothes"}, "removeTags": {"brand": "Jos. A. Bank", "brand:wikidata": "Q6204078", "brand:wikipedia": "en: JoS. A. Bank Clothiers", "name": "Jos. A. Bank", "shop": "clothes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/clothes/Jos. A. Bank": {"name": "Jos. A. Bank", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1001953978790313984/rZx5Eh6N_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q6204078"}, "addTags": {"brand": "Jos. A. Bank", "brand:wikidata": "Q6204078", "brand:wikipedia": "en:JoS. A. Bank Clothiers", "name": "Jos. A. Bank", "shop": "clothes"}, "removeTags": {"brand": "Jos. A. Bank", "brand:wikidata": "Q6204078", "brand:wikipedia": "en:JoS. A. Bank Clothiers", "name": "Jos. A. Bank", "shop": "clothes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/clothes/Joules": {"name": "Joules", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Joules/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q25351738"}, "addTags": {"brand": "Joules", "brand:wikidata": "Q25351738", "brand:wikipedia": "en:Joules (clothing)", "name": "Joules", "shop": "clothes"}, "removeTags": {"brand": "Joules", "brand:wikidata": "Q25351738", "brand:wikipedia": "en:Joules (clothing)", "name": "Joules", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Justice": {"name": "Justice", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q7857512"}, "addTags": {"brand": "Justice", "brand:wikidata": "Q7857512", "brand:wikipedia": "en:Tween Brands", "name": "Justice", "shop": "clothes"}, "removeTags": {"brand": "Justice", "brand:wikidata": "Q7857512", "brand:wikipedia": "en:Tween Brands", "name": "Justice", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/KappAhl": {"name": "KappAhl", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/kappahl/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q4349016"}, "addTags": {"brand": "KappAhl", "brand:wikidata": "Q4349016", "brand:wikipedia": "sv:Kappahl", "name": "KappAhl", "shop": "clothes"}, "removeTags": {"brand": "KappAhl", "brand:wikidata": "Q4349016", "brand:wikipedia": "sv:Kappahl", "name": "KappAhl", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, @@ -2787,7 +2910,7 @@ "shop/clothes/KiK": {"name": "KiK", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKiK-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q883965"}, "addTags": {"brand": "KiK", "brand:wikidata": "Q883965", "brand:wikipedia": "en:KiK", "name": "KiK", "shop": "clothes"}, "removeTags": {"brand": "KiK", "brand:wikidata": "Q883965", "brand:wikipedia": "en:KiK", "name": "KiK", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Kiabi": {"name": "Kiabi", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q3196299"}, "addTags": {"brand": "Kiabi", "brand:wikidata": "Q3196299", "brand:wikipedia": "fr:Kiabi", "name": "Kiabi", "shop": "clothes"}, "removeTags": {"brand": "Kiabi", "brand:wikidata": "Q3196299", "brand:wikipedia": "fr:Kiabi", "name": "Kiabi", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/LC Waikiki": {"name": "LC Waikiki", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/lcwaikiki/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q3205965"}, "addTags": {"brand": "LC Waikiki", "brand:wikidata": "Q3205965", "brand:wikipedia": "fr:LC Waikiki", "name": "LC Waikiki", "shop": "clothes"}, "removeTags": {"brand": "LC Waikiki", "brand:wikidata": "Q3205965", "brand:wikipedia": "fr:LC Waikiki", "name": "LC Waikiki", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/La Senza": {"name": "La Senza", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1107690098836017153/7mnYg3gd_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q3212802"}, "addTags": {"brand": "La Senza", "brand:wikidata": "Q3212802", "brand:wikipedia": "en:La Senza", "name": "La Senza", "shop": "clothes"}, "removeTags": {"brand": "La Senza", "brand:wikidata": "Q3212802", "brand:wikipedia": "en:La Senza", "name": "La Senza", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/La Senza": {"name": "La Senza", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1112757964300083208/j-i4NaSr_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q3212802"}, "addTags": {"brand": "La Senza", "brand:wikidata": "Q3212802", "brand:wikipedia": "en:La Senza", "name": "La Senza", "shop": "clothes"}, "removeTags": {"brand": "La Senza", "brand:wikidata": "Q3212802", "brand:wikipedia": "en:La Senza", "name": "La Senza", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Lacoste": {"name": "Lacoste", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Lacoste/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q309031"}, "addTags": {"brand": "Lacoste", "brand:wikidata": "Q309031", "brand:wikipedia": "en:Lacoste", "name": "Lacoste", "shop": "clothes"}, "removeTags": {"brand": "Lacoste", "brand:wikidata": "Q309031", "brand:wikipedia": "en:Lacoste", "name": "Lacoste", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Lane Bryant": {"name": "Lane Bryant", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q6485350"}, "addTags": {"brand": "Lane Bryant", "brand:wikidata": "Q6485350", "brand:wikipedia": "en:Lane Bryant", "clothes": "oversize;women", "name": "Lane Bryant", "shop": "clothes"}, "removeTags": {"brand": "Lane Bryant", "brand:wikidata": "Q6485350", "brand:wikipedia": "en:Lane Bryant", "clothes": "oversize;women", "name": "Lane Bryant", "shop": "clothes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/clothes/Levi's": {"name": "Levi's", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLevi's%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q127962"}, "addTags": {"brand": "Levi's", "brand:wikidata": "Q127962", "brand:wikipedia": "en:Levi Strauss & Co.", "clothes": "denim;men;women", "name": "Levi's", "shop": "clothes"}, "removeTags": {"brand": "Levi's", "brand:wikidata": "Q127962", "brand:wikipedia": "en:Levi Strauss & Co.", "clothes": "denim;men;women", "name": "Levi's", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, @@ -2806,7 +2929,7 @@ "shop/clothes/Max Mara": {"name": "Max Mara", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q1151774"}, "addTags": {"brand": "Max Mara", "brand:wikidata": "Q1151774", "brand:wikipedia": "en:Max Mara", "name": "Max Mara", "shop": "clothes"}, "removeTags": {"brand": "Max Mara", "brand:wikidata": "Q1151774", "brand:wikipedia": "en:Max Mara", "name": "Max Mara", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Men's Wearhouse": {"name": "Men's Wearhouse", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q57405513"}, "addTags": {"brand": "Men's Wearhouse", "brand:wikidata": "Q57405513", "clothes": "suits", "name": "Men's Wearhouse", "shop": "clothes"}, "removeTags": {"brand": "Men's Wearhouse", "brand:wikidata": "Q57405513", "clothes": "suits", "name": "Men's Wearhouse", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Mexx": {"name": "Mexx", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMexx%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q1837290"}, "addTags": {"brand": "Mexx", "brand:wikidata": "Q1837290", "brand:wikipedia": "en:Mexx", "name": "Mexx", "shop": "clothes"}, "removeTags": {"brand": "Mexx", "brand:wikidata": "Q1837290", "brand:wikipedia": "en:Mexx", "name": "Mexx", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/Michael Kors": {"name": "Michael Kors", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMichael%20Kors%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q19572998"}, "addTags": {"brand": "Michael Kors", "brand:wikidata": "Q19572998", "brand:wikipedia": "en:Michael Kors (brand)", "name": "Michael Kors", "shop": "clothes"}, "removeTags": {"brand": "Michael Kors", "brand:wikidata": "Q19572998", "brand:wikipedia": "en:Michael Kors (brand)", "name": "Michael Kors", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/Michael Kors": {"name": "Michael Kors", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMichael%20Kors%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q19572998"}, "addTags": {"brand": "Michael Kors", "brand:wikidata": "Q19572998", "brand:wikipedia": "en:Capri Holdings", "name": "Michael Kors", "shop": "clothes"}, "removeTags": {"brand": "Michael Kors", "brand:wikidata": "Q19572998", "brand:wikipedia": "en:Capri Holdings", "name": "Michael Kors", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Monsoon": {"name": "Monsoon", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1014248943121813505/qNRJq7zh_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q3069980"}, "addTags": {"brand": "Monsoon", "brand:wikidata": "Q3069980", "brand:wikipedia": "en:Monsoon Accessorize", "name": "Monsoon", "shop": "clothes"}, "removeTags": {"brand": "Monsoon", "brand:wikidata": "Q3069980", "brand:wikipedia": "en:Monsoon Accessorize", "name": "Monsoon", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Mr Price": {"name": "Mr Price", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q6929120"}, "addTags": {"brand": "Mr Price", "brand:wikidata": "Q6929120", "brand:wikipedia": "en:Mr. Price", "name": "Mr Price", "shop": "clothes"}, "removeTags": {"brand": "Mr Price", "brand:wikidata": "Q6929120", "brand:wikipedia": "en:Mr. Price", "name": "Mr Price", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/NKD": {"name": "NKD", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F150707%20NKD%20Logog%20Wikipedia.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q927272"}, "addTags": {"brand": "NKD", "brand:wikidata": "Q927272", "brand:wikipedia": "de:NKD", "name": "NKD", "shop": "clothes"}, "removeTags": {"brand": "NKD", "brand:wikidata": "Q927272", "brand:wikipedia": "de:NKD", "name": "NKD", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, @@ -2819,7 +2942,7 @@ "shop/clothes/OVS": {"name": "OVS", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/OVS/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q2042514"}, "addTags": {"brand": "OVS", "brand:wikidata": "Q2042514", "brand:wikipedia": "en:OVS (company)", "name": "OVS", "shop": "clothes"}, "removeTags": {"brand": "OVS", "brand:wikidata": "Q2042514", "brand:wikipedia": "en:OVS (company)", "name": "OVS", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Okaïdi": {"name": "Okaïdi", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q3350027"}, "addTags": {"brand": "Okaïdi", "brand:wikidata": "Q3350027", "brand:wikipedia": "fr:Okaïdi", "name": "Okaïdi", "shop": "clothes"}, "removeTags": {"brand": "Okaïdi", "brand:wikidata": "Q3350027", "brand:wikipedia": "fr:Okaïdi", "name": "Okaïdi", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Old Navy": {"name": "Old Navy", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FOld%20Navy%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q2735242"}, "addTags": {"brand": "Old Navy", "brand:wikidata": "Q2735242", "brand:wikipedia": "en:Old Navy", "name": "Old Navy", "shop": "clothes"}, "removeTags": {"brand": "Old Navy", "brand:wikidata": "Q2735242", "brand:wikipedia": "en:Old Navy", "name": "Old Navy", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/Only": {"name": "Only", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q61799370"}, "addTags": {"brand": "Only", "brand:wikidata": "Q61799370", "name": "Only", "operator:wikidata": "Q28172489", "operator:wikipedia": "Bestseller (company)", "shop": "clothes"}, "removeTags": {"brand": "Only", "brand:wikidata": "Q61799370", "name": "Only", "operator:wikidata": "Q28172489", "operator:wikipedia": "Bestseller (company)", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/Only": {"name": "Only", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q61799370"}, "addTags": {"brand": "Only", "brand:wikidata": "Q61799370", "name": "Only", "operator:wikidata": "Q28172489", "operator:wikipedia": "en:Bestseller (company)", "shop": "clothes"}, "removeTags": {"brand": "Only", "brand:wikidata": "Q61799370", "name": "Only", "operator:wikidata": "Q28172489", "operator:wikipedia": "en:Bestseller (company)", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Orchestra": {"name": "Orchestra", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q28042940"}, "addTags": {"brand": "Orchestra", "brand:wikidata": "Q28042940", "brand:wikipedia": "fr:Orchestra Prémaman", "name": "Orchestra", "shop": "clothes"}, "removeTags": {"brand": "Orchestra", "brand:wikidata": "Q28042940", "brand:wikipedia": "fr:Orchestra Prémaman", "name": "Orchestra", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Orsay": {"name": "Orsay", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FORSAY.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q883245"}, "addTags": {"brand": "Orsay", "brand:wikidata": "Q883245", "brand:wikipedia": "de:Orsay (Modeunternehmen)", "name": "Orsay", "shop": "clothes"}, "removeTags": {"brand": "Orsay", "brand:wikidata": "Q883245", "brand:wikipedia": "de:Orsay (Modeunternehmen)", "name": "Orsay", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Outfit": {"name": "Outfit", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q7112061"}, "addTags": {"brand": "Outfit", "brand:wikidata": "Q7112061", "brand:wikipedia": "en:Outfit (retailer)", "name": "Outfit", "shop": "clothes"}, "removeTags": {"brand": "Outfit", "brand:wikidata": "Q7112061", "brand:wikipedia": "en:Outfit (retailer)", "name": "Outfit", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, @@ -2837,22 +2960,23 @@ "shop/clothes/Primark": {"name": "Primark", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Primark/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q137023"}, "addTags": {"brand": "Primark", "brand:wikidata": "Q137023", "brand:wikipedia": "en:Primark", "name": "Primark", "shop": "clothes"}, "removeTags": {"brand": "Primark", "brand:wikidata": "Q137023", "brand:wikipedia": "en:Primark", "name": "Primark", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Promod": {"name": "Promod", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPromod-Boutique%20Francaise.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q3407429"}, "addTags": {"brand": "Promod", "brand:wikidata": "Q3407429", "brand:wikipedia": "en:Promod", "name": "Promod", "shop": "clothes"}, "removeTags": {"brand": "Promod", "brand:wikidata": "Q3407429", "brand:wikipedia": "en:Promod", "name": "Promod", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Pull & Bear": {"name": "Pull & Bear", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1065168584450674690/8NL1vlQR_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q691029"}, "addTags": {"brand": "Pull & Bear", "brand:wikidata": "Q691029", "brand:wikipedia": "en:Pull&Bear", "name": "Pull & Bear", "shop": "clothes"}, "removeTags": {"brand": "Pull & Bear", "brand:wikidata": "Q691029", "brand:wikipedia": "en:Pull&Bear", "name": "Pull & Bear", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/Puma": {"name": "Puma", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q7203029"}, "addTags": {"brand": "Puma", "brand:wikidata": "Q7203029", "brand:wikipedia": "en:Puma (brand)", "name": "Puma", "shop": "clothes"}, "removeTags": {"brand": "Puma", "brand:wikidata": "Q7203029", "brand:wikipedia": "en:Puma (brand)", "name": "Puma", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/Puma": {"name": "Puma", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/playitagainsports/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q7203029"}, "addTags": {"brand": "Puma", "brand:wikidata": "Q7203029", "brand:wikipedia": "en:Puma (brand)", "name": "Puma", "shop": "clothes"}, "removeTags": {"brand": "Puma", "brand:wikidata": "Q7203029", "brand:wikipedia": "en:Puma (brand)", "name": "Puma", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Rainbow": {"name": "Rainbow", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRainbow-logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q7284708"}, "addTags": {"brand": "Rainbow", "brand:wikidata": "Q7284708", "brand:wikipedia": "en:Rainbow Shops", "name": "Rainbow", "shop": "clothes"}, "removeTags": {"brand": "Rainbow", "brand:wikidata": "Q7284708", "brand:wikipedia": "en:Rainbow Shops", "name": "Rainbow", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Reebok": {"name": "Reebok", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/ReebokUS/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q466183"}, "addTags": {"brand": "Reebok", "brand:wikidata": "Q466183", "brand:wikipedia": "en:Reebok", "name": "Reebok", "shop": "clothes"}, "removeTags": {"brand": "Reebok", "brand:wikidata": "Q466183", "brand:wikipedia": "en:Reebok", "name": "Reebok", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Reitmans": {"name": "Reitmans", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q7310506"}, "addTags": {"brand": "Reitmans", "brand:wikidata": "Q7310506", "brand:wikipedia": "en:Reitmans", "name": "Reitmans", "shop": "clothes"}, "removeTags": {"brand": "Reitmans", "brand:wikidata": "Q7310506", "brand:wikipedia": "en:Reitmans", "name": "Reitmans", "shop": "clothes"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Reserved": {"name": "Reserved", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Reserved/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q21809354"}, "addTags": {"brand": "Reserved", "brand:wikidata": "Q21809354", "brand:wikipedia": "en:Reserved (retail)", "name": "Reserved", "shop": "clothes"}, "removeTags": {"brand": "Reserved", "brand:wikidata": "Q21809354", "brand:wikipedia": "en:Reserved (retail)", "name": "Reserved", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/Reserved": {"name": "Reserved", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Reserved/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q21809354"}, "addTags": {"brand": "Reserved", "brand:wikidata": "Q21809354", "brand:wikipedia": "en:Reserved", "name": "Reserved", "shop": "clothes"}, "removeTags": {"brand": "Reserved", "brand:wikidata": "Q21809354", "brand:wikipedia": "en:Reserved", "name": "Reserved", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/River Island": {"name": "River Island", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1072101180791287814/Y0vBqxNn_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q2670328"}, "addTags": {"brand": "River Island", "brand:wikidata": "Q2670328", "brand:wikipedia": "en:River Island", "name": "River Island", "shop": "clothes"}, "removeTags": {"brand": "River Island", "brand:wikidata": "Q2670328", "brand:wikipedia": "en:River Island", "name": "River Island", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/Ross": {"name": "Ross", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/666413791169503233/rCEE7G_S_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q3442791"}, "addTags": {"brand": "Ross", "brand:wikidata": "Q3442791", "brand:wikipedia": "en:Ross Stores", "name": "Ross", "official_name": "Ross Dress for Less", "shop": "clothes"}, "removeTags": {"brand": "Ross", "brand:wikidata": "Q3442791", "brand:wikipedia": "en:Ross Stores", "name": "Ross", "official_name": "Ross Dress for Less", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/Ross": {"name": "Ross", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/666413791169503233/rCEE7G_S_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q3442791"}, "addTags": {"brand": "Ross", "brand:wikidata": "Q3442791", "brand:wikipedia": "en:Ross Stores", "name": "Ross", "official_name": "Ross Dress for Less", "shop": "clothes"}, "removeTags": {"brand": "Ross", "brand:wikidata": "Q3442791", "brand:wikipedia": "en:Ross Stores", "name": "Ross", "official_name": "Ross Dress for Less", "shop": "clothes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/clothes/Sela": {"name": "Sela", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/sela.shop/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q62075111"}, "addTags": {"brand": "Sela", "brand:wikidata": "Q62075111", "name": "Sela", "shop": "clothes"}, "removeTags": {"brand": "Sela", "brand:wikidata": "Q62075111", "name": "Sela", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/Sergent Major": {"name": "Sergent Major", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/sergent.major.officiel/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q62521738"}, "addTags": {"brand": "Sergent Major", "brand:wikidata": "Q62521738", "brand:wikipedia": "fr:Sergent Major (entreprise)", "clothes": "babies;children", "name": "Sergent Major", "shop": "clothes"}, "removeTags": {"brand": "Sergent Major", "brand:wikidata": "Q62521738", "brand:wikipedia": "fr:Sergent Major (entreprise)", "clothes": "babies;children", "name": "Sergent Major", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Sisley": {"name": "Sisley", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSisley%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q12054325"}, "addTags": {"brand": "Sisley", "brand:wikidata": "Q12054325", "brand:wikipedia": "cs:Sisley", "name": "Sisley", "operator": "Benetton Group", "operator:wikidata": "Q817139", "operator:wikipedia": "en:Benetton Group", "shop": "clothes"}, "removeTags": {"brand": "Sisley", "brand:wikidata": "Q12054325", "brand:wikipedia": "cs:Sisley", "name": "Sisley", "operator": "Benetton Group", "operator:wikidata": "Q817139", "operator:wikipedia": "en:Benetton Group", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Springfield": {"name": "Springfield", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMarca-springfield.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q958209"}, "addTags": {"brand": "Springfield", "brand:wikidata": "Q958209", "brand:wikipedia": "es:Springfield (cadena de tiendas)", "name": "Springfield", "shop": "clothes"}, "removeTags": {"brand": "Springfield", "brand:wikidata": "Q958209", "brand:wikipedia": "es:Springfield (cadena de tiendas)", "name": "Springfield", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Stefanel": {"name": "Stefanel", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Stefanel.Official/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q2338087"}, "addTags": {"brand": "Stefanel", "brand:wikidata": "Q2338087", "brand:wikipedia": "ro:Stefanel (companie)", "name": "Stefanel", "shop": "clothes"}, "removeTags": {"brand": "Stefanel", "brand:wikidata": "Q2338087", "brand:wikipedia": "ro:Stefanel (companie)", "name": "Stefanel", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/Stradivarius": {"name": "Stradivarius", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/971352713517821952/SvetxMXi_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q3322945"}, "addTags": {"brand": "Stradivarius", "brand:wikidata": "Q3322945", "brand:wikipedia": "en:Stradivarius (clothing brand)", "name": "Stradivarius", "shop": "clothes"}, "removeTags": {"brand": "Stradivarius", "brand:wikidata": "Q3322945", "brand:wikipedia": "en:Stradivarius (clothing brand)", "name": "Stradivarius", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/Stradivarius": {"name": "Stradivarius", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1110919224480931841/ptq3UAwr_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q3322945"}, "addTags": {"brand": "Stradivarius", "brand:wikidata": "Q3322945", "brand:wikipedia": "en:Stradivarius (clothing brand)", "name": "Stradivarius", "shop": "clothes"}, "removeTags": {"brand": "Stradivarius", "brand:wikidata": "Q3322945", "brand:wikipedia": "en:Stradivarius (clothing brand)", "name": "Stradivarius", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Street One": {"name": "Street One", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q61997265"}, "addTags": {"brand": "Street One", "brand:wikidata": "Q61997265", "name": "Street One", "operator": "CBR Fashion Holding", "operator:wikidata": "Q1022989", "operator:wikipedia": "de:CBR Fashion Holding", "shop": "clothes"}, "removeTags": {"brand": "Street One", "brand:wikidata": "Q61997265", "name": "Street One", "operator": "CBR Fashion Holding", "operator:wikidata": "Q1022989", "operator:wikipedia": "de:CBR Fashion Holding", "shop": "clothes"}, "countryCodes": ["at", "be", "bg", "ch", "cz", "de", "dk", "es", "fi", "fr", "hr", "hu", "ie", "it", "lt", "lu", "lv", "nl", "no", "pl", "ro", "se", "si", "sk"], "matchScore": 2, "suggestion": true}, "shop/clothes/Suburbia": {"name": "Suburbia", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q6134992"}, "addTags": {"brand": "Suburbia", "brand:wikidata": "Q6134992", "brand:wikipedia": "en:Suburbia (department store)", "name": "Suburbia", "shop": "clothes"}, "removeTags": {"brand": "Suburbia", "brand:wikidata": "Q6134992", "brand:wikipedia": "en:Suburbia (department store)", "name": "Suburbia", "shop": "clothes"}, "countryCodes": ["mx"], "matchScore": 2, "suggestion": true}, "shop/clothes/Superdry": {"name": "Superdry", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1021773831546056704/C5cZqYeP_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q1684445"}, "addTags": {"brand": "Superdry", "brand:wikidata": "Q1684445", "brand:wikipedia": "en:Superdry", "name": "Superdry", "shop": "clothes"}, "removeTags": {"brand": "Superdry", "brand:wikidata": "Q1684445", "brand:wikipedia": "en:Superdry", "name": "Superdry", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/TJ Maxx": {"name": "TJ Maxx", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/578229320994295808/nAHcV1yx_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q10860683"}, "addTags": {"brand": "TJ Maxx", "brand:wikidata": "Q10860683", "brand:wikipedia": "en:TJ Maxx", "name": "TJ Maxx", "shop": "clothes"}, "removeTags": {"brand": "TJ Maxx", "brand:wikidata": "Q10860683", "brand:wikipedia": "en:TJ Maxx", "name": "TJ Maxx", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/TJ Maxx": {"name": "TJ Maxx", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/578229320994295808/nAHcV1yx_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q10860683"}, "addTags": {"brand": "TJ Maxx", "brand:wikidata": "Q10860683", "brand:wikipedia": "en:TJ Maxx", "name": "TJ Maxx", "shop": "clothes"}, "removeTags": {"brand": "TJ Maxx", "brand:wikidata": "Q10860683", "brand:wikipedia": "en:TJ Maxx", "name": "TJ Maxx", "shop": "clothes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/clothes/TK Maxx": {"name": "TK Maxx", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1078275977426468866/QgWrQjee_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q23823668"}, "addTags": {"brand": "TK Maxx", "brand:wikidata": "Q23823668", "brand:wikipedia": "en:TK Maxx", "name": "TK Maxx", "shop": "clothes"}, "removeTags": {"brand": "TK Maxx", "brand:wikidata": "Q23823668", "brand:wikipedia": "en:TK Maxx", "name": "TK Maxx", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Takko": {"name": "Takko", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTakkoLogo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q1371302"}, "addTags": {"brand": "Takko", "brand:wikidata": "Q1371302", "brand:wikipedia": "de:Takko", "name": "Takko", "shop": "clothes"}, "removeTags": {"brand": "Takko", "brand:wikidata": "Q1371302", "brand:wikipedia": "de:Takko", "name": "Takko", "shop": "clothes"}, "countryCodes": ["at", "cz", "de", "hu", "nl"], "matchScore": 2, "suggestion": true}, "shop/clothes/Talbots": {"name": "Talbots", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/648526811479961600/EcfZDBkl_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q7679064"}, "addTags": {"brand": "Talbots", "brand:wikidata": "Q7679064", "brand:wikipedia": "en:Talbots", "name": "Talbots", "shop": "clothes"}, "removeTags": {"brand": "Talbots", "brand:wikidata": "Q7679064", "brand:wikipedia": "en:Talbots", "name": "Talbots", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, @@ -2882,23 +3006,23 @@ "shop/clothes/White Stuff": {"name": "White Stuff", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/633617979469524993/ydbUTjT3_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q7995442"}, "addTags": {"brand": "White Stuff", "brand:wikidata": "Q7995442", "brand:wikipedia": "en:White Stuff Clothing", "name": "White Stuff", "shop": "clothes"}, "removeTags": {"brand": "White Stuff", "brand:wikidata": "Q7995442", "brand:wikipedia": "en:White Stuff Clothing", "name": "White Stuff", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Wibra": {"name": "Wibra", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWibra%20Wallonie%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q943405"}, "addTags": {"brand": "Wibra", "brand:wikidata": "Q943405", "brand:wikipedia": "en:Wibra", "name": "Wibra", "shop": "clothes"}, "removeTags": {"brand": "Wibra", "brand:wikidata": "Q943405", "brand:wikipedia": "en:Wibra", "name": "Wibra", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Winners": {"name": "Winners", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWinners%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q845257"}, "addTags": {"brand": "Winners", "brand:wikidata": "Q845257", "brand:wikipedia": "en:Winners", "name": "Winners", "shop": "clothes"}, "removeTags": {"brand": "Winners", "brand:wikidata": "Q845257", "brand:wikipedia": "en:Winners", "name": "Winners", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/Woolworths": {"name": "Woolworths", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q8033997"}, "addTags": {"brand": "Woolworths", "brand:wikidata": "Q8033997", "brand:wikipedia": "en:Woolworths (South Africa)", "name": "Woolworths", "shop": "clothes"}, "removeTags": {"brand": "Woolworths", "brand:wikidata": "Q8033997", "brand:wikipedia": "en:Woolworths (South Africa)", "name": "Woolworths", "shop": "clothes"}, "countryCodes": ["za"], "matchScore": 2, "suggestion": true}, + "shop/clothes/Woolworths": {"name": "Woolworths", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q8033997"}, "addTags": {"brand": "Woolworths", "brand:wikidata": "Q8033997", "brand:wikipedia": "en:Woolworths Holdings Limited", "name": "Woolworths", "shop": "clothes"}, "removeTags": {"brand": "Woolworths", "brand:wikidata": "Q8033997", "brand:wikipedia": "en:Woolworths Holdings Limited", "name": "Woolworths", "shop": "clothes"}, "countryCodes": ["za"], "matchScore": 2, "suggestion": true}, "shop/clothes/Yamamay": {"name": "Yamamay", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FYamamay%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q2599214"}, "addTags": {"brand": "Yamamay", "brand:wikidata": "Q2599214", "brand:wikipedia": "it:Yamamay", "name": "Yamamay", "shop": "clothes"}, "removeTags": {"brand": "Yamamay", "brand:wikidata": "Q2599214", "brand:wikipedia": "it:Yamamay", "name": "Yamamay", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Zara": {"name": "Zara", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/zara/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q147662"}, "addTags": {"brand": "Zara", "brand:wikidata": "Q147662", "brand:wikipedia": "en:Zara (retailer)", "name": "Zara", "shop": "clothes"}, "removeTags": {"brand": "Zara", "brand:wikidata": "Q147662", "brand:wikipedia": "en:Zara (retailer)", "name": "Zara", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Zeeman": {"name": "Zeeman", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/zeemantextielsupers/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q184399"}, "addTags": {"brand": "Zeeman", "brand:wikidata": "Q184399", "brand:wikipedia": "en:Zeeman (store)", "name": "Zeeman", "shop": "clothes"}, "removeTags": {"brand": "Zeeman", "brand:wikidata": "Q184399", "brand:wikipedia": "en:Zeeman (store)", "name": "Zeeman", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/Zumiez": {"name": "Zumiez", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q8075252"}, "addTags": {"brand": "Zumiez", "brand:wikidata": "Q8075252", "brand:wikipedia": "en:Zumiez", "name": "Zumiez", "shop": "clothes"}, "removeTags": {"brand": "Zumiez", "brand:wikidata": "Q8075252", "brand:wikipedia": "en:Zumiez", "name": "Zumiez", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/mister*lady": {"name": "mister*lady", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Mister*lady.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q18640136"}, "addTags": {"brand": "mister*lady", "brand:wikidata": "Q18640136", "brand:wikipedia": "de:mister*lady", "name": "mister*lady", "shop": "clothes"}, "removeTags": {"brand": "mister*lady", "brand:wikidata": "Q18640136", "brand:wikipedia": "de:mister*lady", "name": "mister*lady", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, - "shop/clothes/rue21": {"name": "rue21", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/793801428380835840/XsjVskJq_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q7377762"}, "addTags": {"brand": "rue21", "brand:wikidata": "Q7377762", "brand:wikipedia": "en:rue21", "name": "rue21", "shop": "clothes"}, "removeTags": {"brand": "rue21", "brand:wikidata": "Q7377762", "brand:wikipedia": "en:rue21", "name": "rue21", "shop": "clothes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/clothes/mister*lady": {"name": "mister*lady", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Mister*lady.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q18640136"}, "addTags": {"brand": "mister*lady", "brand:wikidata": "Q18640136", "brand:wikipedia": "de:Mister*lady", "name": "mister*lady", "shop": "clothes"}, "removeTags": {"brand": "mister*lady", "brand:wikidata": "Q18640136", "brand:wikipedia": "de:Mister*lady", "name": "mister*lady", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, + "shop/clothes/rue21": {"name": "rue21", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/793801428380835840/XsjVskJq_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q7377762"}, "addTags": {"brand": "rue21", "brand:wikidata": "Q7377762", "brand:wikipedia": "en:Rue21", "name": "rue21", "shop": "clothes"}, "removeTags": {"brand": "rue21", "brand:wikidata": "Q7377762", "brand:wikipedia": "en:Rue21", "name": "rue21", "shop": "clothes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/clothes/s.Oliver": {"name": "s.Oliver", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FS.Oliver.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q265056"}, "addTags": {"brand": "s.Oliver", "brand:wikidata": "Q265056", "brand:wikipedia": "en:S.Oliver", "name": "s.Oliver", "shop": "clothes"}, "removeTags": {"brand": "s.Oliver", "brand:wikidata": "Q265056", "brand:wikipedia": "en:S.Oliver", "name": "s.Oliver", "shop": "clothes"}, "matchScore": 2, "suggestion": true}, "shop/clothes/しまむら": {"name": "しまむら", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q7758173"}, "addTags": {"brand": "しまむら", "brand:en": "Shimamura", "brand:ja": "しまむら", "brand:wikidata": "Q7758173", "brand:wikipedia": "ja:しまむら", "name": "しまむら", "name:en": "Shimamura", "name:ja": "しまむら", "shop": "clothes"}, "removeTags": {"brand": "しまむら", "brand:en": "Shimamura", "brand:ja": "しまむら", "brand:wikidata": "Q7758173", "brand:wikipedia": "ja:しまむら", "name": "しまむら", "name:en": "Shimamura", "name:ja": "しまむら", "shop": "clothes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/clothes/はるやま": {"name": "はるやま", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q11275918"}, "addTags": {"brand": "はるやま", "brand:en": "Haruyama", "brand:ja": "はるやま", "brand:wikidata": "Q11275918", "brand:wikipedia": "ja:はるやま商事", "name": "はるやま", "name:en": "Haruyama", "name:ja": "はるやま", "shop": "clothes"}, "removeTags": {"brand": "はるやま", "brand:en": "Haruyama", "brand:ja": "はるやま", "brand:wikidata": "Q11275918", "brand:wikipedia": "ja:はるやま商事", "name": "はるやま", "name:en": "Haruyama", "name:ja": "はるやま", "shop": "clothes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/clothes/ユニクロ": {"name": "ユニクロ", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/uniqlo/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q26070"}, "addTags": {"brand": "ユニクロ", "brand:en": "UNIQLO", "brand:ja": "ユニクロ", "brand:wikidata": "Q26070", "brand:wikipedia": "en:Uniqlo", "name": "ユニクロ", "name:en": "UNIQLO", "name:ja": "ユニクロ", "shop": "clothes"}, "removeTags": {"brand": "ユニクロ", "brand:en": "UNIQLO", "brand:ja": "ユニクロ", "brand:wikidata": "Q26070", "brand:wikipedia": "en:Uniqlo", "name": "ユニクロ", "name:en": "UNIQLO", "name:ja": "ユニクロ", "shop": "clothes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/clothes/ライトオン": {"name": "ライトオン", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/righton.co.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q11346416"}, "addTags": {"brand": "ライトオン", "brand:en": "Right-on", "brand:wikidata": "Q11346416", "brand:wikipedia": "ja:ライトオン", "name": "ライトオン", "name:en": "Right-on", "shop": "clothes"}, "removeTags": {"brand": "ライトオン", "brand:en": "Right-on", "brand:wikidata": "Q11346416", "brand:wikipedia": "ja:ライトオン", "name": "ライトオン", "name:en": "Right-on", "shop": "clothes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/clothes/ライトオン": {"name": "ライトオン", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/righton.co.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q11346416"}, "addTags": {"brand": "ライトオン", "brand:en": "Right-on", "brand:ja": "ライトオン", "brand:wikidata": "Q11346416", "brand:wikipedia": "ja:ライトオン", "name": "ライトオン", "name:en": "Right-on", "name:ja": "ライトオン", "shop": "clothes"}, "removeTags": {"brand": "ライトオン", "brand:en": "Right-on", "brand:ja": "ライトオン", "brand:wikidata": "Q11346416", "brand:wikipedia": "ja:ライトオン", "name": "ライトオン", "name:en": "Right-on", "name:ja": "ライトオン", "shop": "clothes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/clothes/ワークマン": {"name": "ワークマン", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q11351660"}, "addTags": {"brand": "ワークマン", "brand:en": "Workman", "brand:ja": "ワークマン", "brand:wikidata": "Q11351660", "brand:wikipedia": "ja:ワークマン", "name": "ワークマン", "name:en": "Workman", "name:ja": "ワークマン", "shop": "clothes"}, "removeTags": {"brand": "ワークマン", "brand:en": "Workman", "brand:ja": "ワークマン", "brand:wikidata": "Q11351660", "brand:wikipedia": "ja:ワークマン", "name": "ワークマン", "name:en": "Workman", "name:ja": "ワークマン", "shop": "clothes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/clothes/洋服の青山": {"name": "洋服の青山", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/AoyamaOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q11661241"}, "addTags": {"brand": "洋服の青山", "brand:en": "Aoyama Tailor", "brand:ja": "洋服の青山", "brand:wikidata": "Q11661241", "brand:wikipedia": "ja:青山商事", "name": "洋服の青山", "name:en": "Aoyama Tailor", "name:ja": "洋服の青山", "shop": "clothes"}, "removeTags": {"brand": "洋服の青山", "brand:en": "Aoyama Tailor", "brand:ja": "洋服の青山", "brand:wikidata": "Q11661241", "brand:wikipedia": "ja:青山商事", "name": "洋服の青山", "name:en": "Aoyama Tailor", "name:ja": "洋服の青山", "shop": "clothes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/coffee/Nespresso": {"name": "Nespresso", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/nespresso/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "coffee", "brand:wikidata": "Q301301"}, "addTags": {"brand": "Nespresso", "brand:wikidata": "Q301301", "brand:wikipedia": "en:Nespresso", "name": "Nespresso", "shop": "coffee"}, "removeTags": {"brand": "Nespresso", "brand:wikidata": "Q301301", "brand:wikipedia": "en:Nespresso", "name": "Nespresso", "shop": "coffee"}, "matchScore": 2, "suggestion": true}, "shop/coffee/Tchibo": {"name": "Tchibo", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/tchibo.de/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "coffee", "brand:wikidata": "Q564213"}, "addTags": {"brand": "Tchibo", "brand:wikidata": "Q564213", "brand:wikipedia": "de:Tchibo", "name": "Tchibo", "shop": "coffee"}, "removeTags": {"brand": "Tchibo", "brand:wikidata": "Q564213", "brand:wikipedia": "de:Tchibo", "name": "Tchibo", "shop": "coffee"}, "matchScore": 2, "suggestion": true}, - "shop/computer/PC World": {"name": "PC World", "icon": "fas-laptop", "geometry": ["point", "area"], "tags": {"shop": "computer", "brand:wikidata": "Q7118727"}, "addTags": {"brand": "PC World", "brand:wikidata": "Q7118727", "brand:wikipedia": "en:PC World (retailer)", "name": "PC World", "shop": "computer"}, "removeTags": {"brand": "PC World", "brand:wikidata": "Q7118727", "brand:wikipedia": "en:PC World (retailer)", "name": "PC World", "shop": "computer"}, "matchScore": 2, "suggestion": true}, + "shop/computer/PC World": {"name": "PC World", "icon": "fas-laptop", "imageURL": "https://graph.facebook.com/curryspcworld/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "computer", "brand:wikidata": "Q7118727"}, "addTags": {"brand": "PC World", "brand:wikidata": "Q7118727", "brand:wikipedia": "en:PC World (retailer)", "name": "PC World", "shop": "computer"}, "removeTags": {"brand": "PC World", "brand:wikidata": "Q7118727", "brand:wikipedia": "en:PC World (retailer)", "name": "PC World", "shop": "computer"}, "matchScore": 2, "suggestion": true}, "shop/confectionery/Adyar Ananda Bhavan": {"name": "Adyar Ananda Bhavan", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/a2b.officialpage/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "confectionery", "brand:wikidata": "Q15178238"}, "addTags": {"brand": "Adyar Ananda Bhavan", "brand:wikidata": "Q15178238", "brand:wikipedia": "en:Adyar Ananda Bhavan", "name": "Adyar Ananda Bhavan", "shop": "confectionery"}, "removeTags": {"brand": "Adyar Ananda Bhavan", "brand:wikidata": "Q15178238", "brand:wikipedia": "en:Adyar Ananda Bhavan", "name": "Adyar Ananda Bhavan", "shop": "confectionery"}, "countryCodes": ["in"], "matchScore": 2, "suggestion": true}, "shop/confectionery/Hemmakvall": {"name": "Hemmakvall", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/hemmakvall/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "confectionery", "brand:wikidata": "Q10521791"}, "addTags": {"brand:wikidata": "Q10521791", "brand:wikipedia": "sv:Hemmakväll", "name": "Hemmakväll", "shop": "confectionery"}, "removeTags": {"brand:wikidata": "Q10521791", "brand:wikipedia": "sv:Hemmakväll", "name": "Hemmakväll", "shop": "confectionery"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, "shop/confectionery/Hussel": {"name": "Hussel", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/HusselConfiserie/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "confectionery", "brand:wikidata": "Q17123688"}, "addTags": {"brand": "Hussel", "brand:wikidata": "Q17123688", "brand:wikipedia": "de:Hussel", "name": "Hussel", "shop": "confectionery"}, "removeTags": {"brand": "Hussel", "brand:wikidata": "Q17123688", "brand:wikipedia": "de:Hussel", "name": "Hussel", "shop": "confectionery"}, "matchScore": 2, "suggestion": true}, @@ -2907,116 +3031,136 @@ "shop/confectionery/Вацак": {"name": "Вацак", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/Vatsak.KD/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "confectionery", "brand:wikidata": "Q30966576"}, "addTags": {"brand": "Вацак", "brand:wikidata": "Q30966576", "brand:wikipedia": "uk:Кондитерський Дім «Вацак»", "name": "Вацак", "shop": "confectionery"}, "removeTags": {"brand": "Вацак", "brand:wikidata": "Q30966576", "brand:wikipedia": "uk:Кондитерський Дім «Вацак»", "name": "Вацак", "shop": "confectionery"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, "shop/confectionery/シャトレーゼ": {"name": "シャトレーゼ", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/chateraise.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "confectionery", "brand:wikidata": "Q11307696"}, "addTags": {"brand": "シャトレーゼ", "brand:en": "Chateraise", "brand:ja": "シャトレーゼ", "brand:wikidata": "Q11307696", "brand:wikipedia": "ja:シャトレーゼ", "name": "シャトレーゼ", "name:en": "Chateraise", "name:ja": "シャトレーゼ", "shop": "confectionery"}, "removeTags": {"brand": "シャトレーゼ", "brand:en": "Chateraise", "brand:ja": "シャトレーゼ", "brand:wikidata": "Q11307696", "brand:wikipedia": "ja:シャトレーゼ", "name": "シャトレーゼ", "name:en": "Chateraise", "name:ja": "シャトレーゼ", "shop": "confectionery"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/convenience/7-Eleven": {"name": "7-Eleven", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/7ElevenMexico/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q259340"}, "addTags": {"brand": "7-Eleven", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "7-Eleven", "shop": "convenience"}, "removeTags": {"brand": "7-Eleven", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "7-Eleven", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/8 à Huit": {"name": "8 à Huit", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2818601"}, "addTags": {"brand": "8 à Huit", "brand:wikidata": "Q2818601", "brand:wikipedia": "en:8 à Huit", "name": "8 à Huit", "shop": "convenience"}, "removeTags": {"brand": "8 à Huit", "brand:wikidata": "Q2818601", "brand:wikipedia": "en:8 à Huit", "name": "8 à Huit", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/76": {"name": "76", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/76gas/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1658320"}, "addTags": {"brand": "76", "brand:wikidata": "Q1658320", "brand:wikipedia": "en:76 (gas station)", "name": "76", "shop": "convenience"}, "removeTags": {"brand": "76", "brand:wikidata": "Q1658320", "brand:wikipedia": "en:76 (gas station)", "name": "76", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/8 à Huit": {"name": "8 à Huit", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2818601"}, "addTags": {"brand": "8 à Huit", "brand:wikidata": "Q2818601", "brand:wikipedia": "fr:8 à Huit", "name": "8 à Huit", "shop": "convenience"}, "removeTags": {"brand": "8 à Huit", "brand:wikidata": "Q2818601", "brand:wikipedia": "fr:8 à Huit", "name": "8 à Huit", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, "shop/convenience/99 Speedmart": {"name": "99 Speedmart", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/99speedmart/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q62075061"}, "addTags": {"brand": "99 Speedmart", "brand:wikidata": "Q62075061", "name": "99 Speedmart", "shop": "convenience"}, "removeTags": {"brand": "99 Speedmart", "brand:wikidata": "Q62075061", "name": "99 Speedmart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/ABC (Hawaii)": {"name": "ABC (Hawaii)", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q4650251"}, "addTags": {"brand": "ABC", "brand:wikidata": "Q4650251", "brand:wikipedia": "en:ABC Stores (Hawaii)", "name": "ABC", "shop": "convenience"}, "removeTags": {"brand": "ABC", "brand:wikidata": "Q4650251", "brand:wikipedia": "en:ABC Stores (Hawaii)", "name": "ABC", "shop": "convenience"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/convenience/ABC (Hawaii)": {"name": "ABC (Hawaii)", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/abcstores/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q4650251"}, "addTags": {"brand": "ABC", "brand:wikidata": "Q4650251", "brand:wikipedia": "en:ABC Stores (Hawaii)", "name": "ABC", "shop": "convenience"}, "removeTags": {"brand": "ABC", "brand:wikidata": "Q4650251", "brand:wikipedia": "en:ABC Stores (Hawaii)", "name": "ABC", "shop": "convenience"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/convenience/Aibė": {"name": "Aibė", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1022952"}, "addTags": {"brand": "Aibė", "brand:wikidata": "Q1022952", "brand:wikipedia": "de:Aibė", "name": "Aibė", "shop": "convenience"}, "removeTags": {"brand": "Aibė", "brand:wikidata": "Q1022952", "brand:wikipedia": "de:Aibė", "name": "Aibė", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Albert Heijn to go": {"name": "Albert Heijn to go", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAlbert%20heijn.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1653985"}, "addTags": {"brand": "Albert Heijn to go", "brand:wikidata": "Q1653985", "brand:wikipedia": "en:Albert Heijn", "name": "Albert Heijn to go", "shop": "convenience"}, "removeTags": {"brand": "Albert Heijn to go", "brand:wikidata": "Q1653985", "brand:wikipedia": "en:Albert Heijn", "name": "Albert Heijn to go", "shop": "convenience"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Alfamidi": {"name": "Alfamidi", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q12471462"}, "addTags": {"brand": "Alfamidi", "brand:wikidata": "Q12471462", "brand:wikipedia": "id:Alfamidi", "name": "Alfamidi", "shop": "convenience"}, "removeTags": {"brand": "Alfamidi", "brand:wikidata": "Q12471462", "brand:wikipedia": "id:Alfamidi", "name": "Alfamidi", "shop": "convenience"}, "countryCodes": ["id"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Albert Heijn to go": {"name": "Albert Heijn to go", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/albertheijn/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1653985"}, "addTags": {"brand": "Albert Heijn to go", "brand:wikidata": "Q1653985", "brand:wikipedia": "en:Albert Heijn", "name": "Albert Heijn to go", "shop": "convenience"}, "removeTags": {"brand": "Albert Heijn to go", "brand:wikidata": "Q1653985", "brand:wikipedia": "en:Albert Heijn", "name": "Albert Heijn to go", "shop": "convenience"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Alfamidi": {"name": "Alfamidi", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/alfamidiku/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q12471462"}, "addTags": {"brand": "Alfamidi", "brand:wikidata": "Q12471462", "brand:wikipedia": "id:Alfamidi", "name": "Alfamidi", "shop": "convenience"}, "removeTags": {"brand": "Alfamidi", "brand:wikidata": "Q12471462", "brand:wikipedia": "id:Alfamidi", "name": "Alfamidi", "shop": "convenience"}, "countryCodes": ["id"], "matchScore": 2, "suggestion": true}, "shop/convenience/BP Shop": {"name": "BP Shop", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/bp/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q152057"}, "addTags": {"brand": "BP Shop", "brand:wikidata": "Q152057", "brand:wikipedia": "en:BP", "name": "BP Shop", "shop": "convenience"}, "removeTags": {"brand": "BP Shop", "brand:wikidata": "Q152057", "brand:wikipedia": "en:BP", "name": "BP Shop", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Buc-ee's": {"name": "Buc-ee's", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q4982335"}, "addTags": {"brand": "Buc-ee's", "brand:wikidata": "Q4982335", "brand:wikipedia": "en:Buc-ee's", "name": "Buc-ee's", "shop": "convenience"}, "removeTags": {"brand": "Buc-ee's", "brand:wikidata": "Q4982335", "brand:wikipedia": "en:Buc-ee's", "name": "Buc-ee's", "shop": "convenience"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/convenience/COOP Jednota": {"name": "COOP Jednota", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q41629254"}, "addTags": {"brand": "COOP Jednota", "brand:wikidata": "Q41629254", "brand:wikipedia": "sk:COOP Jednota Slovensko", "name": "COOP Jednota", "shop": "convenience"}, "removeTags": {"brand": "COOP Jednota", "brand:wikidata": "Q41629254", "brand:wikipedia": "sk:COOP Jednota Slovensko", "name": "COOP Jednota", "shop": "convenience"}, "countryCodes": ["cz", "sk"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Circle K": {"name": "Circle K", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCircle%20k%20logo%20detail.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3268010"}, "addTags": {"brand": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "Circle K", "shop": "convenience"}, "removeTags": {"brand": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "Circle K", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Co-op": {"name": "Co-op", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSaskatoon%20Co-op%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5440676"}, "addTags": {"brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op", "shop": "convenience"}, "removeTags": {"brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Buc-ee's": {"name": "Buc-ee's", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/bucees/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q4982335"}, "addTags": {"brand": "Buc-ee's", "brand:wikidata": "Q4982335", "brand:wikipedia": "en:Buc-ee's", "name": "Buc-ee's", "shop": "convenience"}, "removeTags": {"brand": "Buc-ee's", "brand:wikidata": "Q4982335", "brand:wikipedia": "en:Buc-ee's", "name": "Buc-ee's", "shop": "convenience"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/convenience/CBA": {"name": "CBA", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/cbaboltok/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q779845"}, "addTags": {"brand": "CBA", "brand:wikidata": "Q779845", "brand:wikipedia": "en:CBA (food retail)", "name": "CBA", "shop": "convenience"}, "removeTags": {"brand": "CBA", "brand:wikidata": "Q779845", "brand:wikipedia": "en:CBA (food retail)", "name": "CBA", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/COOP Jednota": {"name": "COOP Jednota", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/COOPJednota/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q41629254"}, "addTags": {"brand": "COOP Jednota", "brand:wikidata": "Q41629254", "brand:wikipedia": "sk:COOP Jednota Slovensko", "name": "COOP Jednota", "shop": "convenience"}, "removeTags": {"brand": "COOP Jednota", "brand:wikidata": "Q41629254", "brand:wikipedia": "sk:COOP Jednota Slovensko", "name": "COOP Jednota", "shop": "convenience"}, "countryCodes": ["cz", "sk"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Chata Polska": {"name": "Chata Polska", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q61994406"}, "addTags": {"brand": "Chata Polska", "brand:wikidata": "Q61994406", "name": "Chata Polska", "shop": "convenience"}, "removeTags": {"brand": "Chata Polska", "brand:wikidata": "Q61994406", "name": "Chata Polska", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Circle K": {"name": "Circle K", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/circlekireland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3268010"}, "addTags": {"brand": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "Circle K", "shop": "convenience"}, "removeTags": {"brand": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "Circle K", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Co-op": {"name": "Co-op", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSaskatoon%20Co-op%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5440676"}, "addTags": {"brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op", "shop": "convenience"}, "removeTags": {"brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op", "shop": "convenience"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "shop/convenience/Coop Pronto": {"name": "Coop Pronto", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1129777"}, "addTags": {"brand": "Coop Pronto", "brand:wikidata": "Q1129777", "brand:wikipedia": "de:Coop Mineraloel", "name": "Coop Pronto", "shop": "convenience"}, "removeTags": {"brand": "Coop Pronto", "brand:wikidata": "Q1129777", "brand:wikipedia": "de:Coop Mineraloel", "name": "Coop Pronto", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Costcutter": {"name": "Costcutter", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/costcutter/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5175072"}, "addTags": {"brand": "Costcutter", "brand:wikidata": "Q5175072", "brand:wikipedia": "en:Costcutter", "name": "Costcutter", "shop": "convenience"}, "removeTags": {"brand": "Costcutter", "brand:wikidata": "Q5175072", "brand:wikipedia": "en:Costcutter", "name": "Costcutter", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, "shop/convenience/Daisy Mart": {"name": "Daisy Mart", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q61994934"}, "addTags": {"brand": "Daisy Mart", "brand:wikidata": "Q61994934", "name": "Daisy Mart", "shop": "convenience"}, "removeTags": {"brand": "Daisy Mart", "brand:wikidata": "Q61994934", "name": "Daisy Mart", "shop": "convenience"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/convenience/FamilyMart": {"name": "FamilyMart", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/880365539968798721/yNVr_BFn_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1191685"}, "addTags": {"brand": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "FamilyMart", "shop": "convenience"}, "removeTags": {"brand": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "FamilyMart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Four Square": {"name": "Four Square", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5475558"}, "addTags": {"brand": "Four Square", "brand:wikidata": "Q5475558", "brand:wikipedia": "en:Four Square (supermarket)", "name": "Four Square", "shop": "convenience"}, "removeTags": {"brand": "Four Square", "brand:wikidata": "Q5475558", "brand:wikipedia": "en:Four Square (supermarket)", "name": "Four Square", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Groszek": {"name": "Groszek", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBrd%C3%B3w%20-%20sklep2.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q9280965"}, "addTags": {"brand": "Groszek", "brand:wikidata": "Q9280965", "brand:wikipedia": "pl:Groszek (sieć sklepów)", "name": "Groszek", "shop": "convenience"}, "removeTags": {"brand": "Groszek", "brand:wikidata": "Q9280965", "brand:wikipedia": "pl:Groszek (sieć sklepów)", "name": "Groszek", "shop": "convenience"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/convenience/FamilyMart": {"name": "FamilyMart", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/familymart.japan/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1191685"}, "addTags": {"brand": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "FamilyMart", "shop": "convenience"}, "removeTags": {"brand": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "FamilyMart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Four Square": {"name": "Four Square", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/FourSquareNZ/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5475558"}, "addTags": {"brand": "Four Square", "brand:wikidata": "Q5475558", "brand:wikipedia": "en:Four Square (supermarket)", "name": "Four Square", "shop": "convenience"}, "removeTags": {"brand": "Four Square", "brand:wikidata": "Q5475558", "brand:wikipedia": "en:Four Square (supermarket)", "name": "Four Square", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Franprix": {"name": "Franprix", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/franprix/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2420096"}, "addTags": {"brand": "Franprix", "brand:wikidata": "Q2420096", "brand:wikipedia": "fr:Franprix", "name": "Franprix", "shop": "convenience"}, "removeTags": {"brand": "Franprix", "brand:wikidata": "Q2420096", "brand:wikipedia": "fr:Franprix", "name": "Franprix", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Groszek": {"name": "Groszek", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Sklepy.Groszek/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q9280965"}, "addTags": {"brand": "Groszek", "brand:wikidata": "Q9280965", "brand:wikipedia": "pl:Groszek (sieć sklepów)", "name": "Groszek", "shop": "convenience"}, "removeTags": {"brand": "Groszek", "brand:wikidata": "Q9280965", "brand:wikipedia": "pl:Groszek (sieć sklepów)", "name": "Groszek", "shop": "convenience"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "shop/convenience/Hasty Market": {"name": "Hasty Market", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q58022603"}, "addTags": {"brand": "Hasty Market", "brand:wikidata": "Q58022603", "name": "Hasty Market", "shop": "convenience"}, "removeTags": {"brand": "Hasty Market", "brand:wikidata": "Q58022603", "name": "Hasty Market", "shop": "convenience"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Intermarché Contact": {"name": "Intermarché Contact", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3153200"}, "addTags": {"brand": "Intermarché Contact", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché Contact", "shop": "convenience"}, "removeTags": {"brand": "Intermarché Contact", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché Contact", "shop": "convenience"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Intermarché Contact": {"name": "Intermarché Contact", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/tousuniscontrelaviechere/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3153200"}, "addTags": {"brand": "Intermarché Contact", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché Contact", "shop": "convenience"}, "removeTags": {"brand": "Intermarché Contact", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché Contact", "shop": "convenience"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/convenience/Jacksons": {"name": "Jacksons", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q6117880"}, "addTags": {"brand": "Jacksons", "brand:wikidata": "Q6117880", "brand:wikipedia": "en:Jacksons Stores", "name": "Jacksons", "shop": "convenience"}, "removeTags": {"brand": "Jacksons", "brand:wikidata": "Q6117880", "brand:wikipedia": "en:Jacksons Stores", "name": "Jacksons", "shop": "convenience"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/convenience/K-Market": {"name": "K-Market", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11868562"}, "addTags": {"brand": "K-Market", "brand:wikidata": "Q11868562", "brand:wikipedia": "fi:K-Market", "name": "K-Market", "shop": "convenience"}, "removeTags": {"brand": "K-Market", "brand:wikidata": "Q11868562", "brand:wikipedia": "fi:K-Market", "name": "K-Market", "shop": "convenience"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Kwik Trip": {"name": "Kwik Trip", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q6450420"}, "addTags": {"brand": "Kwik Trip", "brand:wikidata": "Q6450420", "brand:wikipedia": "en:Kwik Trip", "name": "Kwik Trip", "shop": "convenience"}, "removeTags": {"brand": "Kwik Trip", "brand:wikidata": "Q6450420", "brand:wikipedia": "en:Kwik Trip", "name": "Kwik Trip", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/K-Market": {"name": "K-Market", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/KMarketSuomi/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11868562"}, "addTags": {"brand": "K-Market", "brand:wikidata": "Q11868562", "brand:wikipedia": "fi:K-Market", "name": "K-Market", "shop": "convenience"}, "removeTags": {"brand": "K-Market", "brand:wikidata": "Q11868562", "brand:wikipedia": "fi:K-Market", "name": "K-Market", "shop": "convenience"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Kwik Trip": {"name": "Kwik Trip", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/KwikTrip/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q6450420"}, "addTags": {"brand": "Kwik Trip", "brand:wikidata": "Q6450420", "brand:wikipedia": "en:Kwik Trip", "name": "Kwik Trip", "shop": "convenience"}, "removeTags": {"brand": "Kwik Trip", "brand:wikidata": "Q6450420", "brand:wikipedia": "en:Kwik Trip", "name": "Kwik Trip", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, "shop/convenience/Lawson": {"name": "Lawson", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/lawson.fanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1557223"}, "addTags": {"brand": "Lawson", "brand:wikidata": "Q1557223", "brand:wikipedia": "en:Lawson (store)", "name": "Lawson", "shop": "convenience"}, "removeTags": {"brand": "Lawson", "brand:wikidata": "Q1557223", "brand:wikipedia": "en:Lawson (store)", "name": "Lawson", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Lewiatan": {"name": "Lewiatan", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/psh.lewiatan/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11755396"}, "addTags": {"brand": "Lewiatan", "brand:wikidata": "Q11755396", "brand:wikipedia": "pl:Lewiatan (sieć handlowa)", "name": "Lewiatan", "shop": "convenience"}, "removeTags": {"brand": "Lewiatan", "brand:wikidata": "Q11755396", "brand:wikipedia": "pl:Lewiatan (sieć handlowa)", "name": "Lewiatan", "shop": "convenience"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "shop/convenience/Lifestyle Express": {"name": "Lifestyle Express", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q61994869"}, "addTags": {"brand": "Lifestyle Express", "brand:wikidata": "Q61994869", "name": "Lifestyle Express", "shop": "convenience"}, "removeTags": {"brand": "Lifestyle Express", "brand:wikidata": "Q61994869", "name": "Lifestyle Express", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Mace": {"name": "Mace", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q17089386"}, "addTags": {"brand": "Mace", "brand:wikidata": "Q17089386", "brand:wikipedia": "en:Mace (shop)", "name": "Mace", "shop": "convenience"}, "removeTags": {"brand": "Mace", "brand:wikidata": "Q17089386", "brand:wikipedia": "en:Mace (shop)", "name": "Mace", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Marathon": {"name": "Marathon", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMarathon%20Oil%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q458363"}, "addTags": {"brand": "Marathon", "brand:wikidata": "Q458363", "brand:wikipedia": "en:Marathon Petroleum", "name": "Marathon", "shop": "convenience"}, "removeTags": {"brand": "Marathon", "brand:wikidata": "Q458363", "brand:wikipedia": "en:Marathon Petroleum", "name": "Marathon", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Małpka Express": {"name": "Małpka Express", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSklep%20Ma%C5%82pka%20Express.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q18431946"}, "addTags": {"brand": "Małpka Express", "brand:wikidata": "Q18431946", "brand:wikipedia": "pl:Małpka Express", "name": "Małpka Express", "shop": "convenience"}, "removeTags": {"brand": "Małpka Express", "brand:wikidata": "Q18431946", "brand:wikipedia": "pl:Małpka Express", "name": "Małpka Express", "shop": "convenience"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/convenience/McColl's": {"name": "McColl's", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16997477"}, "addTags": {"brand": "McColl's", "brand:wikidata": "Q16997477", "brand:wikipedia": "en:McColl's", "name": "McColl's", "shop": "convenience"}, "removeTags": {"brand": "McColl's", "brand:wikidata": "Q16997477", "brand:wikipedia": "en:McColl's", "name": "McColl's", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Migrolino": {"name": "Migrolino", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMlino%20logo%204c%20co.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q56745088"}, "addTags": {"brand": "Migrolino", "brand:wikidata": "Q56745088", "brand:wikipedia": "de:Migrolino", "name": "Migrolino", "shop": "convenience"}, "removeTags": {"brand": "Migrolino", "brand:wikidata": "Q56745088", "brand:wikipedia": "de:Migrolino", "name": "Migrolino", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Ministop": {"name": "Ministop", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMINISTOP%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1038929"}, "addTags": {"brand": "Ministop", "brand:wikidata": "Q1038929", "brand:wikipedia": "en:Ministop", "name": "Ministop", "shop": "convenience"}, "removeTags": {"brand": "Ministop", "brand:wikidata": "Q1038929", "brand:wikipedia": "en:Ministop", "name": "Ministop", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Mace": {"name": "Mace", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/maces.stores/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q17089386"}, "addTags": {"brand": "Mace", "brand:wikidata": "Q17089386", "brand:wikipedia": "en:Mace (shop)", "name": "Mace", "shop": "convenience"}, "removeTags": {"brand": "Mace", "brand:wikidata": "Q17089386", "brand:wikipedia": "en:Mace (shop)", "name": "Mace", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Marathon": {"name": "Marathon", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/MarathonPetroleumCorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q458363"}, "addTags": {"brand": "Marathon", "brand:wikidata": "Q458363", "brand:wikipedia": "en:Marathon Petroleum", "name": "Marathon", "shop": "convenience"}, "removeTags": {"brand": "Marathon", "brand:wikidata": "Q458363", "brand:wikipedia": "en:Marathon Petroleum", "name": "Marathon", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Małpka Express": {"name": "Małpka Express", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/malpkaexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q18431946"}, "addTags": {"brand": "Małpka Express", "brand:wikidata": "Q18431946", "brand:wikipedia": "pl:Małpka Express", "name": "Małpka Express", "shop": "convenience"}, "removeTags": {"brand": "Małpka Express", "brand:wikidata": "Q18431946", "brand:wikipedia": "pl:Małpka Express", "name": "Małpka Express", "shop": "convenience"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/convenience/McColl's": {"name": "McColl's", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/YourMcColls/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16997477"}, "addTags": {"brand": "McColl's", "brand:wikidata": "Q16997477", "brand:wikipedia": "en:McColl's", "name": "McColl's", "shop": "convenience"}, "removeTags": {"brand": "McColl's", "brand:wikidata": "Q16997477", "brand:wikipedia": "en:McColl's", "name": "McColl's", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Migrolino": {"name": "Migrolino", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/migrolino/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q56745088"}, "addTags": {"brand": "Migrolino", "brand:wikidata": "Q56745088", "brand:wikipedia": "de:Migrolino", "name": "Migrolino", "shop": "convenience"}, "removeTags": {"brand": "Migrolino", "brand:wikidata": "Q56745088", "brand:wikipedia": "de:Migrolino", "name": "Migrolino", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Ministop": {"name": "Ministop", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/MiniStop-374173965530/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1038929"}, "addTags": {"brand": "Ministop", "brand:wikidata": "Q1038929", "brand:wikipedia": "en:Ministop", "name": "Ministop", "shop": "convenience"}, "removeTags": {"brand": "Ministop", "brand:wikidata": "Q1038929", "brand:wikipedia": "en:Ministop", "name": "Ministop", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, "shop/convenience/Mobil Mart": {"name": "Mobil Mart", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMobil%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3088656"}, "addTags": {"brand": "Mobil Mart", "brand:wikidata": "Q3088656", "brand:wikipedia": "en:Mobil", "name": "Mobil Mart", "shop": "convenience"}, "removeTags": {"brand": "Mobil Mart", "brand:wikidata": "Q3088656", "brand:wikipedia": "en:Mobil", "name": "Mobil Mart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, "shop/convenience/Nasz Sklep": {"name": "Nasz Sklep", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q62070369"}, "addTags": {"brand": "Nasz Sklep", "brand:wikidata": "Q62070369", "name": "Nasz Sklep", "shop": "convenience"}, "removeTags": {"brand": "Nasz Sklep", "brand:wikidata": "Q62070369", "name": "Nasz Sklep", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Nisa": {"name": "Nisa", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/1091320703633248257/cj3S7Oqu_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16999069"}, "addTags": {"brand": "Nisa", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa", "shop": "convenience"}, "removeTags": {"brand": "Nisa", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Nisa Local": {"name": "Nisa Local", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/1091320703633248257/cj3S7Oqu_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16999069"}, "addTags": {"brand": "Nisa Local", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa Local", "shop": "convenience"}, "removeTags": {"brand": "Nisa Local", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa Local", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/convenience/OK便利商店": {"name": "OK便利商店", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCircle%20k%20logo%20detail.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3268010"}, "addTags": {"brand": "OK便利商店", "brand:en": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "zh:OK便利店", "name": "OK便利商店", "name:en": "Circle K", "shop": "convenience"}, "removeTags": {"brand": "OK便利商店", "brand:en": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "zh:OK便利店", "name": "OK便利商店", "name:en": "Circle K", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/On the Run": {"name": "On the Run", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16931259"}, "addTags": {"brand": "On the Run", "brand:wikidata": "Q16931259", "brand:wikipedia": "en:On the Run (convenience store)", "name": "On the Run", "shop": "convenience"}, "removeTags": {"brand": "On the Run", "brand:wikidata": "Q16931259", "brand:wikipedia": "en:On the Run (convenience store)", "name": "On the Run", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Oxxo": {"name": "Oxxo", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FOxxo%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1342538"}, "addTags": {"brand": "Oxxo", "brand:wikidata": "Q1342538", "brand:wikipedia": "es:Oxxo", "name": "Oxxo", "shop": "convenience"}, "removeTags": {"brand": "Oxxo", "brand:wikidata": "Q1342538", "brand:wikipedia": "es:Oxxo", "name": "Oxxo", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Petro-Canada": {"name": "Petro-Canada", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPetro%20canada%20logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1208279"}, "addTags": {"brand": "Petro-Canada", "brand:wikidata": "Q1208279", "brand:wikipedia": "en:Petro-Canada", "name": "Petro-Canada", "shop": "convenience"}, "removeTags": {"brand": "Petro-Canada", "brand:wikidata": "Q1208279", "brand:wikipedia": "en:Petro-Canada", "name": "Petro-Canada", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Plaid Pantry": {"name": "Plaid Pantry", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7200591"}, "addTags": {"brand": "Plaid Pantry", "brand:wikidata": "Q7200591", "brand:wikipedia": "en:Plaid Pantry", "name": "Plaid Pantry", "shop": "convenience"}, "removeTags": {"brand": "Plaid Pantry", "brand:wikidata": "Q7200591", "brand:wikipedia": "en:Plaid Pantry", "name": "Plaid Pantry", "shop": "convenience"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Nisa": {"name": "Nisa", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/nisalocally/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16999069"}, "addTags": {"brand": "Nisa", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa", "shop": "convenience"}, "removeTags": {"brand": "Nisa", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Nisa Local": {"name": "Nisa Local", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/nisalocally/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16999069"}, "addTags": {"brand": "Nisa Local", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa Local", "shop": "convenience"}, "removeTags": {"brand": "Nisa Local", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa Local", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/convenience/OK便利商店": {"name": "OK便利商店", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/circlekireland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3268010"}, "addTags": {"brand": "OK便利商店", "brand:en": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "zh:OK便利店", "name": "OK便利商店", "name:en": "Circle K", "shop": "convenience"}, "removeTags": {"brand": "OK便利商店", "brand:en": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "zh:OK便利店", "name": "OK便利商店", "name:en": "Circle K", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/On the Run": {"name": "On the Run", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/OntheRunUS/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16931259"}, "addTags": {"brand": "On the Run", "brand:wikidata": "Q16931259", "brand:wikipedia": "en:On the Run (convenience store)", "name": "On the Run", "shop": "convenience"}, "removeTags": {"brand": "On the Run", "brand:wikidata": "Q16931259", "brand:wikipedia": "en:On the Run (convenience store)", "name": "On the Run", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Oxxo": {"name": "Oxxo", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/OXXOTiendas/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1342538"}, "addTags": {"brand": "Oxxo", "brand:wikidata": "Q1342538", "brand:wikipedia": "es:Oxxo", "name": "Oxxo", "shop": "convenience"}, "removeTags": {"brand": "Oxxo", "brand:wikidata": "Q1342538", "brand:wikipedia": "es:Oxxo", "name": "Oxxo", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Petro-Canada": {"name": "Petro-Canada", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/petrocanada/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1208279"}, "addTags": {"brand": "Petro-Canada", "brand:wikidata": "Q1208279", "brand:wikipedia": "en:Petro-Canada", "name": "Petro-Canada", "shop": "convenience"}, "removeTags": {"brand": "Petro-Canada", "brand:wikidata": "Q1208279", "brand:wikipedia": "en:Petro-Canada", "name": "Petro-Canada", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Plaid Pantry": {"name": "Plaid Pantry", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/plaidpantryOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7200591"}, "addTags": {"brand": "Plaid Pantry", "brand:wikidata": "Q7200591", "brand:wikipedia": "en:Plaid Pantry", "name": "Plaid Pantry", "shop": "convenience"}, "removeTags": {"brand": "Plaid Pantry", "brand:wikidata": "Q7200591", "brand:wikipedia": "en:Plaid Pantry", "name": "Plaid Pantry", "shop": "convenience"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/convenience/Premier": {"name": "Premier", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/552086468839997441/Ok2vWsQl_bigger.jpeg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7240340"}, "addTags": {"brand": "Premier", "brand:wikidata": "Q7240340", "brand:wikipedia": "en:Premier Stores", "name": "Premier", "shop": "convenience"}, "removeTags": {"brand": "Premier", "brand:wikidata": "Q7240340", "brand:wikipedia": "en:Premier Stores", "name": "Premier", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Sainsbury's Local": {"name": "Sainsbury's Local", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q13218434"}, "addTags": {"brand": "Sainsbury's Local", "brand:wikidata": "Q13218434", "brand:wikipedia": "en:Sainsbury's Local", "name": "Sainsbury's Local", "shop": "convenience"}, "removeTags": {"brand": "Sainsbury's Local", "brand:wikidata": "Q13218434", "brand:wikipedia": "en:Sainsbury's Local", "name": "Sainsbury's Local", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Sheetz": {"name": "Sheetz", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7492551"}, "addTags": {"brand": "Sheetz", "brand:wikidata": "Q7492551", "brand:wikipedia": "en:Sheetz", "name": "Sheetz", "shop": "convenience"}, "removeTags": {"brand": "Sheetz", "brand:wikidata": "Q7492551", "brand:wikipedia": "en:Sheetz", "name": "Sheetz", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Proxi": {"name": "Proxi", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3408522"}, "addTags": {"brand": "Proxi", "brand:wikidata": "Q3408522", "brand:wikipedia": "fr:Proxi", "name": "Proxi", "shop": "convenience"}, "removeTags": {"brand": "Proxi", "brand:wikidata": "Q3408522", "brand:wikipedia": "fr:Proxi", "name": "Proxi", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Sainsbury's Local": {"name": "Sainsbury's Local", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/sainsburys/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q13218434"}, "addTags": {"brand": "Sainsbury's Local", "brand:wikidata": "Q13218434", "brand:wikipedia": "en:Sainsbury's Local", "name": "Sainsbury's Local", "shop": "convenience"}, "removeTags": {"brand": "Sainsbury's Local", "brand:wikidata": "Q13218434", "brand:wikipedia": "en:Sainsbury's Local", "name": "Sainsbury's Local", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Sheetz": {"name": "Sheetz", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/sheetz/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7492551"}, "addTags": {"brand": "Sheetz", "brand:wikidata": "Q7492551", "brand:wikipedia": "en:Sheetz", "name": "Sheetz", "shop": "convenience"}, "removeTags": {"brand": "Sheetz", "brand:wikidata": "Q7492551", "brand:wikipedia": "en:Sheetz", "name": "Sheetz", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, "shop/convenience/Shell Select": {"name": "Shell Select", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Shell/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q154950"}, "addTags": {"brand": "Shell Select", "brand:wikidata": "Q154950", "brand:wikipedia": "en:Royal Dutch Shell", "name": "Shell Select", "shop": "convenience"}, "removeTags": {"brand": "Shell Select", "brand:wikidata": "Q154950", "brand:wikipedia": "en:Royal Dutch Shell", "name": "Shell Select", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Siwa": {"name": "Siwa", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11893827"}, "addTags": {"brand": "Siwa", "brand:wikidata": "Q11893827", "name": "Siwa", "shop": "convenience"}, "removeTags": {"brand": "Siwa", "brand:wikidata": "Q11893827", "name": "Siwa", "shop": "convenience"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Spar": {"name": "Spar", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/753867353469886464/aFA06xb-_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q610492"}, "addTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar", "shop": "convenience"}, "removeTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Spar Express": {"name": "Spar Express", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/753867353469886464/aFA06xb-_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q610492"}, "addTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar Express", "shop": "convenience"}, "removeTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar Express", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Speedway": {"name": "Speedway", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7575683"}, "addTags": {"brand": "Speedway", "brand:wikidata": "Q7575683", "brand:wikipedia": "en:Speedway LLC", "name": "Speedway", "shop": "convenience"}, "removeTags": {"brand": "Speedway", "brand:wikidata": "Q7575683", "brand:wikipedia": "en:Speedway LLC", "name": "Speedway", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Społem": {"name": "Społem", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11826043"}, "addTags": {"brand": "Społem", "brand:wikidata": "Q11826043", "brand:wikipedia": "pl:Powszechna Spółdzielnia Spożywców „Społem”", "name": "Społem", "shop": "convenience"}, "removeTags": {"brand": "Społem", "brand:wikidata": "Q11826043", "brand:wikipedia": "pl:Powszechna Spółdzielnia Spożywców „Społem”", "name": "Społem", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Siwa": {"name": "Siwa", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11893827"}, "addTags": {"brand": "Siwa", "brand:wikidata": "Q11893827", "brand:wikipedia": "fi:Siwa", "name": "Siwa", "shop": "convenience"}, "removeTags": {"brand": "Siwa", "brand:wikidata": "Q11893827", "brand:wikipedia": "fi:Siwa", "name": "Siwa", "shop": "convenience"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Spar": {"name": "Spar", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/SPARintheUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q610492"}, "addTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar", "shop": "convenience"}, "removeTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Spar Express": {"name": "Spar Express", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/SPARintheUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q610492"}, "addTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar Express", "shop": "convenience"}, "removeTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar Express", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Speedway": {"name": "Speedway", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/SpeedwayStores/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7575683"}, "addTags": {"brand": "Speedway", "brand:wikidata": "Q7575683", "brand:wikipedia": "en:Speedway LLC", "name": "Speedway", "shop": "convenience"}, "removeTags": {"brand": "Speedway", "brand:wikidata": "Q7575683", "brand:wikipedia": "en:Speedway LLC", "name": "Speedway", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Społem": {"name": "Społem", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/SpolemSpoldzielczoscSpozywcow/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11826043"}, "addTags": {"brand": "Społem", "brand:wikidata": "Q11826043", "brand:wikipedia": "pl:Powszechna Spółdzielnia Spożywców „Społem”", "name": "Społem", "shop": "convenience"}, "removeTags": {"brand": "Społem", "brand:wikidata": "Q11826043", "brand:wikipedia": "pl:Powszechna Spółdzielnia Spożywców „Społem”", "name": "Społem", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, "shop/convenience/Star Mart": {"name": "Star Mart", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q61994857"}, "addTags": {"brand": "Star Mart", "brand:wikidata": "Q61994857", "name": "Star Mart", "shop": "convenience"}, "removeTags": {"brand": "Star Mart", "brand:wikidata": "Q61994857", "name": "Star Mart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Stripes": {"name": "Stripes", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7624135"}, "addTags": {"brand": "Stripes", "brand:wikidata": "Q7624135", "brand:wikipedia": "en:Stripes Convenience Stores", "name": "Stripes", "shop": "convenience"}, "removeTags": {"brand": "Stripes", "brand:wikidata": "Q7624135", "brand:wikipedia": "en:Stripes Convenience Stores", "name": "Stripes", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/The Co-operative Food": {"name": "The Co-operative Food", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/1034360565127409665/V4fCWHgw_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3277439"}, "addTags": {"brand": "The Co-operative Food", "brand:wikidata": "Q3277439", "brand:wikipedia": "en:Co-op Food", "name": "The Co-operative Food", "shop": "convenience"}, "removeTags": {"brand": "The Co-operative Food", "brand:wikidata": "Q3277439", "brand:wikipedia": "en:Co-op Food", "name": "The Co-operative Food", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Stripes": {"name": "Stripes", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/stripesstores/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7624135"}, "addTags": {"brand": "Stripes", "brand:wikidata": "Q7624135", "brand:wikipedia": "en:Stripes Convenience Stores", "name": "Stripes", "shop": "convenience"}, "removeTags": {"brand": "Stripes", "brand:wikidata": "Q7624135", "brand:wikipedia": "en:Stripes Convenience Stores", "name": "Stripes", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Tesco": {"name": "Tesco", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/tesco/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q487494"}, "addTags": {"brand": "Tesco", "brand:wikidata": "Q487494", "brand:wikipedia": "en:Tesco", "name": "Tesco", "shop": "convenience"}, "removeTags": {"brand": "Tesco", "brand:wikidata": "Q487494", "brand:wikipedia": "en:Tesco", "name": "Tesco", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Tesco Express": {"name": "Tesco Express", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/tesco/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q487494"}, "addTags": {"brand": "Tesco Express", "brand:wikidata": "Q487494", "brand:wikipedia": "en:Tesco", "name": "Tesco Express", "shop": "convenience"}, "removeTags": {"brand": "Tesco Express", "brand:wikidata": "Q487494", "brand:wikipedia": "en:Tesco", "name": "Tesco Express", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/The Co-operative Food": {"name": "The Co-operative Food", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/coopukfood/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3277439"}, "addTags": {"brand": "The Co-operative Food", "brand:wikidata": "Q3277439", "brand:wikipedia": "en:Co-op Food", "name": "The Co-operative Food", "shop": "convenience"}, "removeTags": {"brand": "The Co-operative Food", "brand:wikidata": "Q3277439", "brand:wikipedia": "en:Co-op Food", "name": "The Co-operative Food", "shop": "convenience"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "shop/convenience/Tiger Mart": {"name": "Tiger Mart", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q57643977"}, "addTags": {"brand": "Tiger Mart", "brand:wikidata": "Q57643977", "name": "Tiger Mart", "shop": "convenience"}, "removeTags": {"brand": "Tiger Mart", "brand:wikidata": "Q57643977", "name": "Tiger Mart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/United Dairy Farmers": {"name": "United Dairy Farmers", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/955843755151564801/JvOosZxX_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7887677"}, "addTags": {"amenity": "ice_cream", "brand": "United Dairy Farmers", "brand:wikidata": "Q7887677", "brand:wikipedia": "en:United Dairy Farmers", "name": "United Dairy Farmers", "shop": "convenience", "short_name": "UDF"}, "removeTags": {"amenity": "ice_cream", "brand": "United Dairy Farmers", "brand:wikidata": "Q7887677", "brand:wikipedia": "en:United Dairy Farmers", "name": "United Dairy Farmers", "shop": "convenience", "short_name": "UDF"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Utile": {"name": "Utile", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2529029"}, "addTags": {"brand": "Utile", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Utile", "shop": "convenience"}, "removeTags": {"brand": "Utile", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Utile", "shop": "convenience"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/convenience/VinMart+": {"name": "VinMart+", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q60245505"}, "addTags": {"brand": "VinMart", "brand:wikidata": "Q60245505", "brand:wikipedia": "vi:VinMart", "name": "VinMart+", "shop": "convenience"}, "removeTags": {"brand": "VinMart", "brand:wikidata": "Q60245505", "brand:wikipedia": "vi:VinMart", "name": "VinMart+", "shop": "convenience"}, "countryCodes": ["vn"], "matchScore": 2, "suggestion": true}, + "shop/convenience/United Dairy Farmers": {"name": "United Dairy Farmers", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/UnitedDairyFarmers/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7887677"}, "addTags": {"amenity": "ice_cream", "brand": "United Dairy Farmers", "brand:wikidata": "Q7887677", "brand:wikipedia": "en:United Dairy Farmers", "name": "United Dairy Farmers", "shop": "convenience", "short_name": "UDF"}, "removeTags": {"amenity": "ice_cream", "brand": "United Dairy Farmers", "brand:wikidata": "Q7887677", "brand:wikipedia": "en:United Dairy Farmers", "name": "United Dairy Farmers", "shop": "convenience", "short_name": "UDF"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Utile": {"name": "Utile", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/ULesCommercants/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2529029"}, "addTags": {"brand": "Utile", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Utile", "shop": "convenience"}, "removeTags": {"brand": "Utile", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Utile", "shop": "convenience"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/convenience/VinMart+": {"name": "VinMart+", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/sieuthivinmart/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q60245505"}, "addTags": {"brand": "VinMart", "brand:wikidata": "Q60245505", "brand:wikipedia": "vi:VinMart", "name": "VinMart+", "shop": "convenience"}, "removeTags": {"brand": "VinMart", "brand:wikidata": "Q60245505", "brand:wikipedia": "vi:VinMart", "name": "VinMart+", "shop": "convenience"}, "countryCodes": ["vn"], "matchScore": 2, "suggestion": true}, "shop/convenience/Vival": {"name": "Vival", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7937525"}, "addTags": {"brand": "Vival", "brand:wikidata": "Q7937525", "brand:wikipedia": "en:Vival (shop)", "name": "Vival", "shop": "convenience"}, "removeTags": {"brand": "Vival", "brand:wikidata": "Q7937525", "brand:wikipedia": "en:Vival (shop)", "name": "Vival", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, "shop/convenience/Wawa": {"name": "Wawa", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/wawa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5936320"}, "addTags": {"brand": "Wawa", "brand:wikidata": "Q5936320", "brand:wikipedia": "en:Wawa (company)", "name": "Wawa", "shop": "convenience"}, "removeTags": {"brand": "Wawa", "brand:wikidata": "Q5936320", "brand:wikipedia": "en:Wawa (company)", "name": "Wawa", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, "shop/convenience/Weltladen": {"name": "Weltladen", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1640782"}, "addTags": {"brand": "Weltladen", "brand:wikidata": "Q1640782", "brand:wikipedia": "de:Weltladen", "name": "Weltladen", "shop": "convenience"}, "removeTags": {"brand": "Weltladen", "brand:wikidata": "Q1640782", "brand:wikipedia": "de:Weltladen", "name": "Weltladen", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/Woolworths Petrol": {"name": "Woolworths Petrol", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5023980"}, "addTags": {"brand": "Caltex", "brand:wikidata": "Q5023980", "brand:wikipedia": "en:Caltex Woolworths", "name": "Woolworths Petrol", "shop": "convenience"}, "removeTags": {"brand": "Caltex", "brand:wikidata": "Q5023980", "brand:wikipedia": "en:Caltex Woolworths", "name": "Woolworths Petrol", "shop": "convenience"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, - "shop/convenience/abc (Poland)": {"name": "abc (Poland)", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11683985"}, "addTags": {"brand": "abc", "brand:wikidata": "Q11683985", "brand:wikipedia": "pl:abc (sieć handlowa)", "name": "abc", "shop": "convenience"}, "removeTags": {"brand": "abc", "brand:wikidata": "Q11683985", "brand:wikipedia": "pl:abc (sieć handlowa)", "name": "abc", "shop": "convenience"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ampm": {"name": "ampm", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q306960"}, "addTags": {"brand": "ampm", "brand:wikidata": "Q306960", "brand:wikipedia": "en:Ampm", "name": "ampm", "shop": "convenience"}, "removeTags": {"brand": "ampm", "brand:wikidata": "Q306960", "brand:wikipedia": "en:Ampm", "name": "ampm", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/miniピアゴ": {"name": "miniピアゴ", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11188499"}, "addTags": {"brand": "miniピアゴ", "brand:en": "mini Piago", "brand:wikidata": "Q11188499", "brand:wikipedia": "ja:miniピアゴ", "name": "miniピアゴ", "name:en": "mini Piago", "shop": "convenience"}, "removeTags": {"brand": "miniピアゴ", "brand:en": "mini Piago", "brand:wikidata": "Q11188499", "brand:wikipedia": "ja:miniピアゴ", "name": "miniピアゴ", "name:en": "mini Piago", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Żabka": {"name": "Żabka", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2589061"}, "addTags": {"brand": "Żabka", "brand:wikidata": "Q2589061", "brand:wikipedia": "en:Żabka (convenience store)", "name": "Żabka", "shop": "convenience"}, "removeTags": {"brand": "Żabka", "brand:wikidata": "Q2589061", "brand:wikipedia": "en:Żabka (convenience store)", "name": "Żabka", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/ВкусВилл": {"name": "ВкусВилл", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FVkusVill%20textlogo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q57271676"}, "addTags": {"brand": "ВкусВилл", "brand:wikidata": "Q57271676", "brand:wikipedia": "ru:ВкусВилл", "name": "ВкусВилл", "shop": "convenience"}, "removeTags": {"brand": "ВкусВилл", "brand:wikidata": "Q57271676", "brand:wikipedia": "ru:ВкусВилл", "name": "ВкусВилл", "shop": "convenience"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Доброном": {"name": "Доброном", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/996280002529447936/Dg7yPzqo_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2565040"}, "addTags": {"brand": "Доброном", "brand:wikidata": "Q2565040", "brand:wikipedia": "be:Eurotorg", "name": "Доброном", "shop": "convenience"}, "removeTags": {"brand": "Доброном", "brand:wikidata": "Q2565040", "brand:wikipedia": "be:Eurotorg", "name": "Доброном", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/Woolworths Petrol": {"name": "Woolworths Petrol", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/woolworths/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5023980"}, "addTags": {"brand": "Caltex", "brand:wikidata": "Q5023980", "brand:wikipedia": "en:Caltex Woolworths", "name": "Woolworths Petrol", "shop": "convenience"}, "removeTags": {"brand": "Caltex", "brand:wikidata": "Q5023980", "brand:wikipedia": "en:Caltex Woolworths", "name": "Woolworths Petrol", "shop": "convenience"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, + "shop/convenience/abc (Poland)": {"name": "abc (Poland)", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11683985"}, "addTags": {"brand": "abc", "brand:wikidata": "Q11683985", "brand:wikipedia": "pl:Abc (sieć handlowa)", "name": "abc", "shop": "convenience"}, "removeTags": {"brand": "abc", "brand:wikidata": "Q11683985", "brand:wikipedia": "pl:Abc (sieć handlowa)", "name": "abc", "shop": "convenience"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/convenience/ampm": {"name": "ampm", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/ampm/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q306960"}, "addTags": {"brand": "ampm", "brand:wikidata": "Q306960", "brand:wikipedia": "en:Ampm", "name": "ampm", "shop": "convenience"}, "removeTags": {"brand": "ampm", "brand:wikidata": "Q306960", "brand:wikipedia": "en:Ampm", "name": "ampm", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/miniピアゴ": {"name": "miniピアゴ", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11188499"}, "addTags": {"brand": "miniピアゴ", "brand:en": "mini Piago", "brand:ja": "miniピアゴ", "brand:wikidata": "Q11188499", "brand:wikipedia": "ja:Miniピアゴ", "name": "miniピアゴ", "name:en": "mini Piago", "name:ja": "miniピアゴ", "shop": "convenience"}, "removeTags": {"brand": "miniピアゴ", "brand:en": "mini Piago", "brand:ja": "miniピアゴ", "brand:wikidata": "Q11188499", "brand:wikipedia": "ja:Miniピアゴ", "name": "miniピアゴ", "name:en": "mini Piago", "name:ja": "miniピアゴ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Żabka": {"name": "Żabka", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/zabkapolska/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2589061"}, "addTags": {"brand": "Żabka", "brand:wikidata": "Q2589061", "brand:wikipedia": "en:Żabka (convenience store)", "name": "Żabka", "shop": "convenience"}, "removeTags": {"brand": "Żabka", "brand:wikidata": "Q2589061", "brand:wikipedia": "en:Żabka (convenience store)", "name": "Żabka", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/ВкусВилл": {"name": "ВкусВилл", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/izbenka/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q57271676"}, "addTags": {"brand": "ВкусВилл", "brand:wikidata": "Q57271676", "brand:wikipedia": "ru:Вкусвилл", "name": "ВкусВилл", "shop": "convenience"}, "removeTags": {"brand": "ВкусВилл", "brand:wikidata": "Q57271676", "brand:wikipedia": "ru:Вкусвилл", "name": "ВкусВилл", "shop": "convenience"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/convenience/Доброном": {"name": "Доброном", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Eurooptby/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q2565040"}, "addTags": {"brand": "Доброном", "brand:wikidata": "Q2565040", "brand:wikipedia": "be:Eurotorg", "name": "Доброном", "shop": "convenience"}, "removeTags": {"brand": "Доброном", "brand:wikidata": "Q2565040", "brand:wikipedia": "be:Eurotorg", "name": "Доброном", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, "shop/convenience/Копейка": {"name": "Копейка", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1783878"}, "addTags": {"brand": "Копейка", "brand:en": "Kopeyka", "brand:wikidata": "Q1783878", "brand:wikipedia": "en:Kopeyka (supermarket)", "name": "Копейка", "name:en": "Kopeyka", "shop": "convenience"}, "removeTags": {"brand": "Копейка", "brand:en": "Kopeyka", "brand:wikidata": "Q1783878", "brand:wikipedia": "en:Kopeyka (supermarket)", "name": "Копейка", "name:en": "Kopeyka", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, "shop/convenience/Магнит": {"name": "Магнит", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/1098477357390856192/wILY9KdL_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q940518"}, "addTags": {"brand": "Магнит", "brand:en": "Magnit", "brand:wikidata": "Q940518", "brand:wikipedia": "ru:Магнит (сеть магазинов)", "name": "Магнит", "name:en": "Magnit", "shop": "convenience"}, "removeTags": {"brand": "Магнит", "brand:en": "Magnit", "brand:wikidata": "Q940518", "brand:wikipedia": "ru:Магнит (сеть магазинов)", "name": "Магнит", "name:en": "Magnit", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, "shop/convenience/Сельпо": {"name": "Сельпо", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSilpo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q4419434"}, "addTags": {"brand": "Сельпо", "brand:wikidata": "Q4419434", "brand:wikipedia": "ru:Сильпо", "name": "Сельпо", "shop": "convenience"}, "removeTags": {"brand": "Сельпо", "brand:wikidata": "Q4419434", "brand:wikipedia": "ru:Сильпо", "name": "Сельпо", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, - "shop/convenience/アンスリー": {"name": "アンスリー", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q17192555"}, "addTags": {"brand": "アンスリー", "brand:en": "Ansuri", "brand:wikidata": "Q17192555", "brand:wikipedia": "ja:アンスリー", "name": "アンスリー", "name:en": "Ansuri", "shop": "convenience"}, "removeTags": {"brand": "アンスリー", "brand:en": "Ansuri", "brand:wikidata": "Q17192555", "brand:wikipedia": "ja:アンスリー", "name": "アンスリー", "name:en": "Ansuri", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/アンスリー": {"name": "アンスリー", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q17192555"}, "addTags": {"brand": "アンスリー", "brand:en": "Ansuri", "brand:ja": "アンスリー", "brand:wikidata": "Q17192555", "brand:wikipedia": "ja:アンスリー", "name": "アンスリー", "name:en": "Ansuri", "name:ja": "アンスリー", "shop": "convenience"}, "removeTags": {"brand": "アンスリー", "brand:en": "Ansuri", "brand:ja": "アンスリー", "brand:wikidata": "Q17192555", "brand:wikipedia": "ja:アンスリー", "name": "アンスリー", "name:en": "Ansuri", "name:ja": "アンスリー", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/convenience/サンクス": {"name": "サンクス", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/875617750923616257/dCryLWcX_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q16141064"}, "addTags": {"brand": "サンクス", "brand:en": "Sunkus", "brand:ja": "サンクス", "brand:wikidata": "Q16141064", "brand:wikipedia": "ja:サークルKサンクス", "name": "サンクス", "name:en": "Sunkus", "name:ja": "サンクス", "shop": "convenience"}, "removeTags": {"brand": "サンクス", "brand:en": "Sunkus", "brand:ja": "サンクス", "brand:wikidata": "Q16141064", "brand:wikipedia": "ja:サークルKサンクス", "name": "サンクス", "name:en": "Sunkus", "name:ja": "サンクス", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/サークルK": {"name": "サークルK", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCircle%20k%20logo%20detail.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3268010"}, "addTags": {"brand": "サークルK", "brand:en": "Circle K", "brand:ja": "サークルK", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "サークルK", "name:en": "Circle K", "name:ja": "サークルK", "shop": "convenience"}, "removeTags": {"brand": "サークルK", "brand:en": "Circle K", "brand:ja": "サークルK", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "サークルK", "name:en": "Circle K", "name:ja": "サークルK", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/サークルK": {"name": "サークルK", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/circlekireland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q3268010"}, "addTags": {"brand": "サークルK", "brand:en": "Circle K", "brand:ja": "サークルK", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "サークルK", "name:en": "Circle K", "name:ja": "サークルK", "shop": "convenience"}, "removeTags": {"brand": "サークルK", "brand:en": "Circle K", "brand:ja": "サークルK", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "サークルK", "name:en": "Circle K", "name:ja": "サークルK", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/convenience/スリーエフ": {"name": "スリーエフ", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/875645560073539585/X1oFVQef_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11313419"}, "addTags": {"brand": "スリーエフ", "brand:en": "Three F", "brand:ja": "スリーエフ", "brand:wikidata": "Q11313419", "brand:wikipedia": "ja:スリーエフ", "name": "スリーエフ", "name:en": "Three F", "name:ja": "スリーエフ", "shop": "convenience"}, "removeTags": {"brand": "スリーエフ", "brand:en": "Three F", "brand:ja": "スリーエフ", "brand:wikidata": "Q11313419", "brand:wikipedia": "ja:スリーエフ", "name": "スリーエフ", "name:en": "Three F", "name:ja": "スリーエフ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/convenience/セイコーマート": {"name": "セイコーマート", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11314123"}, "addTags": {"brand": "セイコーマート", "brand:en": "Seicomart", "brand:ja": "セイコーマート", "brand:wikidata": "Q11314123", "brand:wikipedia": "ja:セイコーマート", "name": "セイコーマート", "name:en": "Seicomart", "name:ja": "セイコーマート", "shop": "convenience"}, "removeTags": {"brand": "セイコーマート", "brand:en": "Seicomart", "brand:ja": "セイコーマート", "brand:wikidata": "Q11314123", "brand:wikipedia": "ja:セイコーマート", "name": "セイコーマート", "name:en": "Seicomart", "name:ja": "セイコーマート", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/convenience/セブン-イレブン": {"name": "セブン-イレブン", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/7ElevenMexico/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q259340"}, "addTags": {"brand": "セブン-イレブン", "brand:en": "7-Eleven", "brand:ja": "セブン-イレブン", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "セブン-イレブン", "name:en": "7-Eleven", "name:ja": "セブン-イレブン", "official_name:en": "Seven-Eleven", "operator": "株式会社セブン&アイ・ホールディングス", "operator:en": "Seven & I Holdings Co., Ltd.", "operator:wikidata": "Q639447", "operator:wikipedia": "en:Seven & I Holdings Co.", "shop": "convenience"}, "removeTags": {"brand": "セブン-イレブン", "brand:en": "7-Eleven", "brand:ja": "セブン-イレブン", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "セブン-イレブン", "name:en": "7-Eleven", "name:ja": "セブン-イレブン", "official_name:en": "Seven-Eleven", "operator": "株式会社セブン&アイ・ホールディングス", "operator:en": "Seven & I Holdings Co., Ltd.", "operator:wikidata": "Q639447", "operator:wikipedia": "en:Seven & I Holdings Co.", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/convenience/セーブオン": {"name": "セーブオン", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11314868"}, "addTags": {"brand": "セーブオン", "brand:en": "Save On", "brand:ja": "セーブオン", "brand:wikidata": "Q11314868", "brand:wikipedia": "ja:セーブオン", "name": "セーブオン", "name:en": "Save On", "name:ja": "セーブオン", "shop": "convenience"}, "removeTags": {"brand": "セーブオン", "brand:en": "Save On", "brand:ja": "セーブオン", "brand:wikidata": "Q11314868", "brand:wikipedia": "ja:セーブオン", "name": "セーブオン", "name:en": "Save On", "name:ja": "セーブオン", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/convenience/デイリーヤマザキ": {"name": "デイリーヤマザキ", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q5209392"}, "addTags": {"brand": "デイリーヤマザキ", "brand:en": "Daily Yamazaki", "brand:ja": "デイリーヤマザキ", "brand:wikidata": "Q5209392", "brand:wikipedia": "en:Daily Yamazaki", "name": "デイリーヤマザキ", "name:en": "Daily Yamazaki", "name:ja": "デイリーヤマザキ", "shop": "convenience"}, "removeTags": {"brand": "デイリーヤマザキ", "brand:en": "Daily Yamazaki", "brand:ja": "デイリーヤマザキ", "brand:wikidata": "Q5209392", "brand:wikipedia": "en:Daily Yamazaki", "name": "デイリーヤマザキ", "name:en": "Daily Yamazaki", "name:ja": "デイリーヤマザキ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ナチュラルローソン": {"name": "ナチュラルローソン", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11323850"}, "addTags": {"brand": "ナチュラルローソン", "brand:en": "NATURAL LAWSON", "brand:wikidata": "Q11323850", "brand:wikipedia": "ja:ナチュラルローソン", "name": "ナチュラルローソン", "name:en": "Natural Lawson", "shop": "convenience"}, "removeTags": {"brand": "ナチュラルローソン", "brand:en": "NATURAL LAWSON", "brand:wikidata": "Q11323850", "brand:wikipedia": "ja:ナチュラルローソン", "name": "ナチュラルローソン", "name:en": "Natural Lawson", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ファミリーマート": {"name": "ファミリーマート", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/880365539968798721/yNVr_BFn_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1191685"}, "addTags": {"brand": "ファミリーマート", "brand:en": "FamilyMart", "brand:ja": "ファミリーマート", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "ファミリーマート", "name:en": "FamilyMart", "name:ja": "ファミリーマート", "shop": "convenience"}, "removeTags": {"brand": "ファミリーマート", "brand:en": "FamilyMart", "brand:ja": "ファミリーマート", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "ファミリーマート", "name:en": "FamilyMart", "name:ja": "ファミリーマート", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/ナチュラルローソン": {"name": "ナチュラルローソン", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11323850"}, "addTags": {"brand": "ナチュラルローソン", "brand:en": "NATURAL LAWSON", "brand:ja": "ナチュラルローソン", "brand:wikidata": "Q11323850", "brand:wikipedia": "ja:ナチュラルローソン", "name": "ナチュラルローソン", "name:en": "Natural Lawson", "name:ja": "ナチュラルローソン", "shop": "convenience"}, "removeTags": {"brand": "ナチュラルローソン", "brand:en": "NATURAL LAWSON", "brand:ja": "ナチュラルローソン", "brand:wikidata": "Q11323850", "brand:wikipedia": "ja:ナチュラルローソン", "name": "ナチュラルローソン", "name:en": "Natural Lawson", "name:ja": "ナチュラルローソン", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/ファミリーマート": {"name": "ファミリーマート", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/familymart.japan/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1191685"}, "addTags": {"brand": "ファミリーマート", "brand:en": "FamilyMart", "brand:ja": "ファミリーマート", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "ファミリーマート", "name:en": "FamilyMart", "name:ja": "ファミリーマート", "shop": "convenience"}, "removeTags": {"brand": "ファミリーマート", "brand:en": "FamilyMart", "brand:ja": "ファミリーマート", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "ファミリーマート", "name:en": "FamilyMart", "name:ja": "ファミリーマート", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/convenience/ポプラ": {"name": "ポプラ", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/826586791058644992/chXkmxnQ_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q7229380"}, "addTags": {"brand": "ポプラ", "brand:en": "Poplar", "brand:ja": "ポプラ", "brand:wikidata": "Q7229380", "brand:wikipedia": "ja:ポプラ (コンビニエンスストア)", "name": "ポプラ", "name:en": "Poplar", "name:ja": "ポプラ", "shop": "convenience"}, "removeTags": {"brand": "ポプラ", "brand:en": "Poplar", "brand:ja": "ポプラ", "brand:wikidata": "Q7229380", "brand:wikipedia": "ja:ポプラ (コンビニエンスストア)", "name": "ポプラ", "name:en": "Poplar", "name:ja": "ポプラ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ミニストップ": {"name": "ミニストップ", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMINISTOP%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1038929"}, "addTags": {"brand": "ミニストップ", "brand:en": "Ministop", "brand:ja": "ミニストップ", "brand:wikidata": "Q1038929", "brand:wikipedia": "ja:ミニストップ", "name": "ミニストップ", "name:en": "Ministop", "name:ja": "ミニストップ", "shop": "convenience"}, "removeTags": {"brand": "ミニストップ", "brand:en": "Ministop", "brand:ja": "ミニストップ", "brand:wikidata": "Q1038929", "brand:wikipedia": "ja:ミニストップ", "name": "ミニストップ", "name:en": "Ministop", "name:ja": "ミニストップ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/ミニストップ": {"name": "ミニストップ", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/MiniStop-374173965530/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1038929"}, "addTags": {"brand": "ミニストップ", "brand:en": "Ministop", "brand:ja": "ミニストップ", "brand:wikidata": "Q1038929", "brand:wikipedia": "ja:ミニストップ", "name": "ミニストップ", "name:en": "Ministop", "name:ja": "ミニストップ", "shop": "convenience"}, "removeTags": {"brand": "ミニストップ", "brand:en": "Ministop", "brand:ja": "ミニストップ", "brand:wikidata": "Q1038929", "brand:wikipedia": "ja:ミニストップ", "name": "ミニストップ", "name:en": "Ministop", "name:ja": "ミニストップ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/convenience/ヤマザキショップ": {"name": "ヤマザキショップ", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11345131"}, "addTags": {"brand": "ヤマザキショップ", "brand:ja": "ヤマザキショップ", "brand:wikidata": "Q11345131", "brand:wikipedia": "ja:ヤマザキショップ", "name": "ヤマザキショップ", "name:en": "Yamazaki Shop", "name:ja": "ヤマザキショップ", "shop": "convenience"}, "removeTags": {"brand": "ヤマザキショップ", "brand:ja": "ヤマザキショップ", "brand:wikidata": "Q11345131", "brand:wikipedia": "ja:ヤマザキショップ", "name": "ヤマザキショップ", "name:en": "Yamazaki Shop", "name:ja": "ヤマザキショップ", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/convenience/ローソン": {"name": "ローソン", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/lawson.fanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1557223"}, "addTags": {"brand": "ローソン", "brand:en": "LAWSON", "brand:ja": "ローソン", "brand:wikidata": "Q1557223", "brand:wikipedia": "ja:ローソン", "name": "ローソン", "name:en": "Lawson", "name:ja": "ローソン", "shop": "convenience"}, "removeTags": {"brand": "ローソン", "brand:en": "LAWSON", "brand:ja": "ローソン", "brand:wikidata": "Q1557223", "brand:wikipedia": "ja:ローソン", "name": "ローソン", "name:en": "Lawson", "name:ja": "ローソン", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/convenience/ローソンストア100": {"name": "ローソンストア100", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11350960"}, "addTags": {"brand": "ローソンストア100", "brand:en": "LAWSON STORE 100", "brand:ja": "ローソンストア100", "brand:wikidata": "Q11350960", "brand:wikipedia": "ja:ローソンストア100", "name": "ローソンストア100", "name:en": "Lawson Store 100", "name:ja": "ローソンストア100", "shop": "convenience"}, "removeTags": {"brand": "ローソンストア100", "brand:en": "LAWSON STORE 100", "brand:ja": "ローソンストア100", "brand:wikidata": "Q11350960", "brand:wikipedia": "ja:ローソンストア100", "name": "ローソンストア100", "name:en": "Lawson Store 100", "name:ja": "ローソンストア100", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ローソン・スリーエフ": {"name": "ローソン・スリーエフ", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q24866804"}, "addTags": {"brand": "ローソン・スリーエフ", "brand:en": "LAWSON・Three F", "brand:wikidata": "Q24866804", "brand:wikipedia": "ja:ローソン・スリーエフ", "name": "ローソン・スリーエフ", "name:en": "Lawson・Three F", "operator": "株式会社エル・ティーエフ", "operator:en": "L・TF Co., Ltd.", "shop": "convenience"}, "removeTags": {"brand": "ローソン・スリーエフ", "brand:en": "LAWSON・Three F", "brand:wikidata": "Q24866804", "brand:wikipedia": "ja:ローソン・スリーエフ", "name": "ローソン・スリーエフ", "name:en": "Lawson・Three F", "operator": "株式会社エル・ティーエフ", "operator:en": "L・TF Co., Ltd.", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/convenience/全家": {"name": "全家", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/880365539968798721/yNVr_BFn_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1191685"}, "addTags": {"brand": "全家", "brand:en": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "全家", "name:en": "FamilyMart", "shop": "convenience"}, "removeTags": {"brand": "全家", "brand:en": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "全家", "name:en": "FamilyMart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, + "shop/convenience/ローソン・スリーエフ": {"name": "ローソン・スリーエフ", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q24866804"}, "addTags": {"brand": "ローソン・スリーエフ", "brand:en": "LAWSON・Three F", "brand:ja": "ローソン・スリーエフ", "brand:wikidata": "Q24866804", "brand:wikipedia": "ja:ローソン・スリーエフ", "name": "ローソン・スリーエフ", "name:en": "Lawson・Three F", "name:ja": "ローソン・スリーエフ", "operator": "株式会社エル・ティーエフ", "operator:en": "L・TF Co., Ltd.", "shop": "convenience"}, "removeTags": {"brand": "ローソン・スリーエフ", "brand:en": "LAWSON・Three F", "brand:ja": "ローソン・スリーエフ", "brand:wikidata": "Q24866804", "brand:wikipedia": "ja:ローソン・スリーエフ", "name": "ローソン・スリーエフ", "name:en": "Lawson・Three F", "name:ja": "ローソン・スリーエフ", "operator": "株式会社エル・ティーエフ", "operator:en": "L・TF Co., Ltd.", "shop": "convenience"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/convenience/全家": {"name": "全家", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/familymart.japan/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q1191685"}, "addTags": {"brand": "全家", "brand:en": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "全家", "name:en": "FamilyMart", "shop": "convenience"}, "removeTags": {"brand": "全家", "brand:en": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "全家", "name:en": "FamilyMart", "shop": "convenience"}, "matchScore": 2, "suggestion": true}, "shop/convenience/全家便利商店": {"name": "全家便利商店", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q10891564"}, "addTags": {"brand": "全家便利商店", "brand:wikidata": "Q10891564", "brand:wikipedia": "zh:全家便利商店", "name": "全家便利商店", "shop": "convenience"}, "removeTags": {"brand": "全家便利商店", "brand:wikidata": "Q10891564", "brand:wikipedia": "zh:全家便利商店", "name": "全家便利商店", "shop": "convenience"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "shop/convenience/萊爾富": {"name": "萊爾富", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q11326216"}, "addTags": {"brand": "萊爾富", "brand:wikidata": "Q11326216", "brand:wikipedia": "zh:萊爾富", "name": "萊爾富", "shop": "convenience"}, "removeTags": {"brand": "萊爾富", "brand:wikidata": "Q11326216", "brand:wikipedia": "zh:萊爾富", "name": "萊爾富", "shop": "convenience"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "shop/convenience/세븐일레븐": {"name": "세븐일레븐", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/7ElevenMexico/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "convenience", "brand:wikidata": "Q259340"}, "addTags": {"brand": "세븐일레븐", "brand:en": "7-Eleven", "brand:ko": "세븐일레븐", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "세븐일레븐", "name:en": "7-Eleven", "name:ko": "세븐일레븐", "shop": "convenience"}, "removeTags": {"brand": "세븐일레븐", "brand:en": "7-Eleven", "brand:ko": "세븐일레븐", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "세븐일레븐", "name:en": "7-Eleven", "name:ko": "세븐일레븐", "shop": "convenience"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, "shop/copyshop/FedEx Office": {"name": "FedEx Office", "icon": "fas-print", "imageURL": "https://graph.facebook.com/FedExOffice/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "copyshop", "brand:wikidata": "Q474379"}, "addTags": {"brand": "FedEx Office", "brand:wikidata": "Q474379", "brand:wikipedia": "en:FedEx Office", "name": "FedEx Office", "shop": "copyshop"}, "removeTags": {"brand": "FedEx Office", "brand:wikidata": "Q474379", "brand:wikipedia": "en:FedEx Office", "name": "FedEx Office", "shop": "copyshop"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/KIKO Milano": {"name": "KIKO Milano", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/952897224551346176/E2KWgQTi_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q3812045"}, "addTags": {"brand": "KIKO Milano", "brand:wikidata": "Q3812045", "brand:wikipedia": "it:KIKO", "name": "KIKO Milano", "shop": "cosmetics"}, "removeTags": {"brand": "KIKO Milano", "brand:wikidata": "Q3812045", "brand:wikipedia": "it:KIKO", "name": "KIKO Milano", "shop": "cosmetics"}, "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Kiehl's": {"name": "Kiehl's", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/KiehlsSince1851/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q3196447"}, "addTags": {"brand": "Kiehl's", "brand:wikidata": "Q3196447", "brand:wikipedia": "en:Kiehl's", "name": "Kiehl's", "shop": "cosmetics"}, "removeTags": {"brand": "Kiehl's", "brand:wikidata": "Q3196447", "brand:wikipedia": "en:Kiehl's", "name": "Kiehl's", "shop": "cosmetics"}, "matchScore": 2, "suggestion": true}, - "shop/cosmetics/L'Occitane": {"name": "L'Occitane", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/693118702431178753/PFN6k3Gb_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q1880676"}, "addTags": {"brand": "L'Occitane", "brand:wikidata": "Q1880676", "brand:wikipedia": "en:L'Occitane en Provence", "name": "L'Occitane", "shop": "cosmetics"}, "removeTags": {"brand": "L'Occitane", "brand:wikidata": "Q1880676", "brand:wikipedia": "en:L'Occitane en Provence", "name": "L'Occitane", "shop": "cosmetics"}, "matchScore": 2, "suggestion": true}, + "shop/cosmetics/KIKO Milano": {"name": "KIKO Milano", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/KikoMilanoGlobal/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q3812045"}, "addTags": {"brand": "KIKO Milano", "brand:wikidata": "Q3812045", "brand:wikipedia": "it:KIKO", "name": "KIKO Milano", "shop": "cosmetics"}, "removeTags": {"brand": "KIKO Milano", "brand:wikidata": "Q3812045", "brand:wikipedia": "it:KIKO", "name": "KIKO Milano", "shop": "cosmetics"}, "matchScore": 2, "suggestion": true}, + "shop/cosmetics/Kiehl's": {"name": "Kiehl's", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/KiehlsUS/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q3196447"}, "addTags": {"brand": "Kiehl's", "brand:wikidata": "Q3196447", "brand:wikipedia": "en:Kiehl's", "name": "Kiehl's", "shop": "cosmetics"}, "removeTags": {"brand": "Kiehl's", "brand:wikidata": "Q3196447", "brand:wikipedia": "en:Kiehl's", "name": "Kiehl's", "shop": "cosmetics"}, "matchScore": 2, "suggestion": true}, + "shop/cosmetics/L'Occitane": {"name": "L'Occitane", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/loccitaneusa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q1880676"}, "addTags": {"brand": "L'Occitane", "brand:wikidata": "Q1880676", "brand:wikipedia": "en:L'Occitane en Provence", "name": "L'Occitane", "shop": "cosmetics"}, "removeTags": {"brand": "L'Occitane", "brand:wikidata": "Q1880676", "brand:wikipedia": "en:L'Occitane en Provence", "name": "L'Occitane", "shop": "cosmetics"}, "matchScore": 2, "suggestion": true}, "shop/cosmetics/Lush": {"name": "Lush", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/LUSHJAPAN/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q1585448"}, "addTags": {"brand": "Lush", "brand:wikidata": "Q1585448", "brand:wikipedia": "en:Lush (company)", "name": "Lush", "shop": "cosmetics"}, "removeTags": {"brand": "Lush", "brand:wikidata": "Q1585448", "brand:wikipedia": "en:Lush (company)", "name": "Lush", "shop": "cosmetics"}, "matchScore": 2, "suggestion": true}, "shop/cosmetics/MAC Cosmetics": {"name": "MAC Cosmetics", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/MACcosmetics/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q2624442"}, "addTags": {"brand": "MAC Cosmetics", "brand:wikidata": "Q2624442", "brand:wikipedia": "en:MAC Cosmetics", "name": "MAC Cosmetics", "shop": "cosmetics", "short_name": "M·A·C"}, "removeTags": {"brand": "MAC Cosmetics", "brand:wikidata": "Q2624442", "brand:wikipedia": "en:MAC Cosmetics", "name": "MAC Cosmetics", "shop": "cosmetics", "short_name": "M·A·C"}, "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Nocibé": {"name": "Nocibé", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Nocib%C3%A9.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q3342592"}, "addTags": {"brand": "Nocibé", "brand:wikidata": "Q3342592", "brand:wikipedia": "fr:Nocibé", "name": "Nocibé", "shop": "cosmetics"}, "removeTags": {"brand": "Nocibé", "brand:wikidata": "Q3342592", "brand:wikipedia": "fr:Nocibé", "name": "Nocibé", "shop": "cosmetics"}, "matchScore": 2, "suggestion": true}, + "shop/cosmetics/Nocibé": {"name": "Nocibé", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/nocibe/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q3342592"}, "addTags": {"brand": "Nocibé", "brand:wikidata": "Q3342592", "brand:wikipedia": "fr:Nocibé", "name": "Nocibé", "shop": "cosmetics"}, "removeTags": {"brand": "Nocibé", "brand:wikidata": "Q3342592", "brand:wikipedia": "fr:Nocibé", "name": "Nocibé", "shop": "cosmetics"}, "matchScore": 2, "suggestion": true}, "shop/cosmetics/Origins": {"name": "Origins", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Origins/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q6643229"}, "addTags": {"brand": "Origins", "brand:wikidata": "Q6643229", "brand:wikipedia": "en:Origins (cosmetics)", "name": "Origins", "shop": "cosmetics"}, "removeTags": {"brand": "Origins", "brand:wikidata": "Q6643229", "brand:wikipedia": "en:Origins (cosmetics)", "name": "Origins", "shop": "cosmetics"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/cosmetics/Sephora": {"name": "Sephora", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/sephora/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q2408041"}, "addTags": {"brand": "Sephora", "brand:wikidata": "Q2408041", "brand:wikipedia": "en:Sephora", "name": "Sephora", "shop": "cosmetics"}, "removeTags": {"brand": "Sephora", "brand:wikidata": "Q2408041", "brand:wikipedia": "en:Sephora", "name": "Sephora", "shop": "cosmetics"}, "matchScore": 2, "suggestion": true}, - "shop/cosmetics/The Body Shop": {"name": "The Body Shop", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/997798602809532417/NNF6_rus_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q837851"}, "addTags": {"brand": "The Body Shop", "brand:wikidata": "Q837851", "brand:wikipedia": "en:The Body Shop", "name": "The Body Shop", "shop": "cosmetics"}, "removeTags": {"brand": "The Body Shop", "brand:wikidata": "Q837851", "brand:wikipedia": "en:The Body Shop", "name": "The Body Shop", "shop": "cosmetics"}, "matchScore": 2, "suggestion": true}, + "shop/cosmetics/The Body Shop": {"name": "The Body Shop", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/TheBodyShopUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q837851"}, "addTags": {"brand": "The Body Shop", "brand:wikidata": "Q837851", "brand:wikipedia": "en:The Body Shop", "name": "The Body Shop", "shop": "cosmetics"}, "removeTags": {"brand": "The Body Shop", "brand:wikidata": "Q837851", "brand:wikipedia": "en:The Body Shop", "name": "The Body Shop", "shop": "cosmetics"}, "matchScore": 2, "suggestion": true}, "shop/cosmetics/Watsons": {"name": "Watsons", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/WatsonsPH/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q7974785"}, "addTags": {"brand": "Watsons", "brand:wikidata": "Q7974785", "brand:wikipedia": "en:Watsons", "name": "Watsons", "operator": "A.S. Watson Group", "operator:wikidata": "Q4647401", "operator:wikipedia": "en:A.S. Watson Group", "shop": "cosmetics"}, "removeTags": {"brand": "Watsons", "brand:wikidata": "Q7974785", "brand:wikipedia": "en:Watsons", "name": "Watsons", "operator": "A.S. Watson Group", "operator:wikidata": "Q4647401", "operator:wikipedia": "en:A.S. Watson Group", "shop": "cosmetics"}, "matchScore": 2, "suggestion": true}, "shop/cosmetics/Yves Rocher": {"name": "Yves Rocher", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/YvesRocher/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q1477321"}, "addTags": {"brand": "Yves Rocher", "brand:wikidata": "Q1477321", "brand:wikipedia": "en:Yves Rocher (company)", "name": "Yves Rocher", "shop": "cosmetics"}, "removeTags": {"brand": "Yves Rocher", "brand:wikidata": "Q1477321", "brand:wikipedia": "en:Yves Rocher (company)", "name": "Yves Rocher", "shop": "cosmetics"}, "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Л'Этуаль": {"name": "Л'Этуаль", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q18400706"}, "addTags": {"brand": "Л'Этуаль", "brand:wikidata": "Q18400706", "brand:wikipedia": "ru:Л’Этуаль", "name": "Л'Этуаль", "shop": "cosmetics"}, "removeTags": {"brand": "Л'Этуаль", "brand:wikidata": "Q18400706", "brand:wikipedia": "ru:Л’Этуаль", "name": "Л'Этуаль", "shop": "cosmetics"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/cosmetics/Л'Этуаль": {"name": "Л'Этуаль", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/letoile.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q18400706"}, "addTags": {"brand": "Л'Этуаль", "brand:wikidata": "Q18400706", "brand:wikipedia": "ru:Л’Этуаль", "name": "Л'Этуаль", "shop": "cosmetics"}, "removeTags": {"brand": "Л'Этуаль", "brand:wikidata": "Q18400706", "brand:wikipedia": "ru:Л’Этуаль", "name": "Л'Этуаль", "shop": "cosmetics"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/cosmetics/Магнит Косметик": {"name": "Магнит Косметик", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1098477357390856192/wILY9KdL_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "cosmetics", "brand:wikidata": "Q940518"}, "addTags": {"brand": "Магнит Косметик", "brand:en": "Magnit Cosmetics", "brand:wikidata": "Q940518", "brand:wikipedia": "ru:Магнит (сеть магазинов)", "name": "Магнит Косметик", "name:en": "Magnit Cosmetics", "shop": "cosmetics"}, "removeTags": {"brand": "Магнит Косметик", "brand:en": "Magnit Cosmetics", "brand:wikidata": "Q940518", "brand:wikipedia": "ru:Магнит (сеть магазинов)", "name": "Магнит Косметик", "name:en": "Magnit Cosmetics", "shop": "cosmetics"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/country_store/Atwoods": {"name": "Atwoods", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Atwoods.Ranch.and.Home.Stores/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q4818874"}, "addTags": {"brand": "Atwoods", "brand:wikidata": "Q4818874", "brand:wikipedia": "en:Atwoods", "name": "Atwoods", "shop": "country_store"}, "removeTags": {"brand": "Atwoods", "brand:wikidata": "Q4818874", "brand:wikipedia": "en:Atwoods", "name": "Atwoods", "shop": "country_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/country_store/Blain's Farm & Fleet": {"name": "Blain's Farm & Fleet", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/BlainsFarmandFleet/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q4923906"}, "addTags": {"brand": "Blain's Farm & Fleet", "brand:wikidata": "Q4923906", "brand:wikipedia": "en:Blain's Farm & Fleet", "name": "Blain's Farm & Fleet", "shop": "country_store"}, "removeTags": {"brand": "Blain's Farm & Fleet", "brand:wikidata": "Q4923906", "brand:wikipedia": "en:Blain's Farm & Fleet", "name": "Blain's Farm & Fleet", "shop": "country_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/country_store/Rural King": {"name": "Rural King", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/RuralKing/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q7380525"}, "addTags": {"brand": "Rural King", "brand:wikidata": "Q7380525", "brand:wikipedia": "en:Rural King", "name": "Rural King", "shop": "country_store"}, "removeTags": {"brand": "Rural King", "brand:wikidata": "Q7380525", "brand:wikipedia": "en:Rural King", "name": "Rural King", "shop": "country_store"}, "matchScore": 2, "suggestion": true}, - "shop/country_store/Tractor Supply Company": {"name": "Tractor Supply Company", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/TractorSupplyCo/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q15109925"}, "addTags": {"brand": "Tractor Supply Company", "brand:wikidata": "Q15109925", "brand:wikipedia": "en:Tractor Supply Company", "name": "Tractor Supply Company", "shop": "country_store"}, "removeTags": {"brand": "Tractor Supply Company", "brand:wikidata": "Q15109925", "brand:wikipedia": "en:Tractor Supply Company", "name": "Tractor Supply Company", "shop": "country_store"}, "matchScore": 2, "suggestion": true}, + "shop/country_store/Bomgaars": {"name": "Bomgaars", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/BomgaarsSupply.Corporate/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q22059070"}, "addTags": {"brand": "Bomgaars", "brand:wikidata": "Q22059070", "brand:wikipedia": "en:Bomgaars", "name": "Bomgaars", "shop": "country_store"}, "removeTags": {"brand": "Bomgaars", "brand:wikidata": "Q22059070", "brand:wikipedia": "en:Bomgaars", "name": "Bomgaars", "shop": "country_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/country_store/Fleet Farm": {"name": "Fleet Farm", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/fleetfarm/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q6859973"}, "addTags": {"brand": "Fleet Farm", "brand:wikidata": "Q6859973", "brand:wikipedia": "en:Fleet Farm", "name": "Fleet Farm", "shop": "country_store"}, "removeTags": {"brand": "Fleet Farm", "brand:wikidata": "Q6859973", "brand:wikipedia": "en:Fleet Farm", "name": "Fleet Farm", "shop": "country_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/country_store/Grange Co-op": {"name": "Grange Co-op", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/grangecoop/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q5595639"}, "addTags": {"brand": "Grange Co-op", "brand:wikidata": "Q5595639", "brand:wikipedia": "en:Grange Cooperative", "name": "Grange Co-op", "shop": "country_store"}, "removeTags": {"brand": "Grange Co-op", "brand:wikidata": "Q5595639", "brand:wikipedia": "en:Grange Cooperative", "name": "Grange Co-op", "shop": "country_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/country_store/Home of Economy": {"name": "Home of Economy", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Homeofeconomy/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q5889100"}, "addTags": {"brand": "Home of Economy", "brand:wikidata": "Q5889100", "brand:wikipedia": "en:Home of Economy", "name": "Home of Economy", "shop": "country_store"}, "removeTags": {"brand": "Home of Economy", "brand:wikidata": "Q5889100", "brand:wikipedia": "en:Home of Economy", "name": "Home of Economy", "shop": "country_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/country_store/Norbys Farm Fleet": {"name": "Norbys Farm Fleet", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/norbysfarmfleet/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q7050461"}, "addTags": {"brand": "Norbys Farm Fleet", "brand:wikidata": "Q7050461", "brand:wikipedia": "en:Norby's Farm Fleet", "name": "Norbys Farm Fleet", "shop": "country_store"}, "removeTags": {"brand": "Norbys Farm Fleet", "brand:wikidata": "Q7050461", "brand:wikipedia": "en:Norby's Farm Fleet", "name": "Norbys Farm Fleet", "shop": "country_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/country_store/Orscheln Farm & Home": {"name": "Orscheln Farm & Home", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/orschelnfarmandhome/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q22060331"}, "addTags": {"brand": "Orscheln Farm & Home", "brand:wikidata": "Q22060331", "brand:wikipedia": "en:Orscheln Farm & Home", "name": "Orscheln Farm & Home", "shop": "country_store"}, "removeTags": {"brand": "Orscheln Farm & Home", "brand:wikidata": "Q22060331", "brand:wikipedia": "en:Orscheln Farm & Home", "name": "Orscheln Farm & Home", "shop": "country_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/country_store/Peavey Mart": {"name": "Peavey Mart", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/PeaveyMart/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q7158483"}, "addTags": {"brand": "Peavey Mart", "brand:wikidata": "Q7158483", "brand:wikipedia": "en:Peavey Mart", "name": "Peavey Mart", "shop": "country_store"}, "removeTags": {"brand": "Peavey Mart", "brand:wikidata": "Q7158483", "brand:wikipedia": "en:Peavey Mart", "name": "Peavey Mart", "shop": "country_store"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/country_store/Rural King": {"name": "Rural King", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/RuralKing/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q7380525"}, "addTags": {"brand": "Rural King", "brand:wikidata": "Q7380525", "brand:wikipedia": "en:Rural King", "name": "Rural King", "shop": "country_store"}, "removeTags": {"brand": "Rural King", "brand:wikidata": "Q7380525", "brand:wikipedia": "en:Rural King", "name": "Rural King", "shop": "country_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/country_store/TSC Stores": {"name": "TSC Stores", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/TSCStoresCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q62720230"}, "addTags": {"brand": "TSC Stores", "brand:wikidata": "Q62720230", "name": "TSC Stores", "shop": "country_store"}, "removeTags": {"brand": "TSC Stores", "brand:wikidata": "Q62720230", "name": "TSC Stores", "shop": "country_store"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/country_store/Theisen's": {"name": "Theisen's", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/743446346414227456/6V3KBxMe_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q7777850"}, "addTags": {"brand": "Theisen's", "brand:wikidata": "Q7777850", "brand:wikipedia": "en:Theisen's", "name": "Theisen's", "shop": "country_store"}, "removeTags": {"brand": "Theisen's", "brand:wikidata": "Q7777850", "brand:wikipedia": "en:Theisen's", "name": "Theisen's", "shop": "country_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/country_store/Tractor Supply Company": {"name": "Tractor Supply Company", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/TractorSupplyCo/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q15109925"}, "addTags": {"brand": "Tractor Supply Company", "brand:wikidata": "Q15109925", "brand:wikipedia": "en:Tractor Supply Company", "name": "Tractor Supply Company", "shop": "country_store"}, "removeTags": {"brand": "Tractor Supply Company", "brand:wikidata": "Q15109925", "brand:wikipedia": "en:Tractor Supply Company", "name": "Tractor Supply Company", "shop": "country_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/country_store/Wynnstay": {"name": "Wynnstay", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/WynnstayGroup/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "country_store", "brand:wikidata": "Q63016351"}, "addTags": {"brand": "Wynnstay", "brand:wikidata": "Q63016351", "name": "Wynnstay", "shop": "country_store"}, "removeTags": {"brand": "Wynnstay", "brand:wikidata": "Q63016351", "name": "Wynnstay", "shop": "country_store"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "shop/craft/Hobby Lobby": {"name": "Hobby Lobby", "icon": "fas-palette", "imageURL": "https://graph.facebook.com/HobbyLobby/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "craft", "brand:wikidata": "Q5874938"}, "addTags": {"brand": "Hobby Lobby", "brand:wikidata": "Q5874938", "brand:wikipedia": "en:Hobby Lobby", "name": "Hobby Lobby", "shop": "craft"}, "removeTags": {"brand": "Hobby Lobby", "brand:wikidata": "Q5874938", "brand:wikipedia": "en:Hobby Lobby", "name": "Hobby Lobby", "shop": "craft"}, "matchScore": 2, "suggestion": true}, "shop/craft/Hobbycraft": {"name": "Hobbycraft", "icon": "fas-palette", "imageURL": "https://graph.facebook.com/HobbycraftUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "craft", "brand:wikidata": "Q16984508"}, "addTags": {"brand": "Hobbycraft", "brand:wikidata": "Q16984508", "brand:wikipedia": "en:Hobbycraft", "name": "Hobbycraft", "shop": "craft"}, "removeTags": {"brand": "Hobbycraft", "brand:wikidata": "Q16984508", "brand:wikipedia": "en:Hobbycraft", "name": "Hobbycraft", "shop": "craft"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "shop/craft/Jo-Ann": {"name": "Jo-Ann", "icon": "fas-palette", "imageURL": "https://graph.facebook.com/JoAnn/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "craft", "brand:wikidata": "Q6203968"}, "addTags": {"brand": "Jo-Ann", "brand:wikidata": "Q6203968", "brand:wikipedia": "en:Jo-Ann Stores", "name": "Jo-Ann", "shop": "craft"}, "removeTags": {"brand": "Jo-Ann", "brand:wikidata": "Q6203968", "brand:wikipedia": "en:Jo-Ann Stores", "name": "Jo-Ann", "shop": "craft"}, "matchScore": 2, "suggestion": true}, "shop/craft/Michaels": {"name": "Michaels", "icon": "fas-palette", "imageURL": "https://graph.facebook.com/Michaels/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "craft", "brand:wikidata": "Q6835667"}, "addTags": {"brand": "Michaels", "brand:wikidata": "Q6835667", "brand:wikipedia": "en:Michaels", "name": "Michaels", "shop": "craft"}, "removeTags": {"brand": "Michaels", "brand:wikidata": "Q6835667", "brand:wikipedia": "en:Michaels", "name": "Michaels", "shop": "craft"}, "matchScore": 2, "suggestion": true}, "shop/deli/ほっともっと": {"name": "ほっともっと", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/hottomotto/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "deli", "brand:wikidata": "Q10850949"}, "addTags": {"brand": "ほっともっと", "brand:en": "Hotto Motto", "brand:ja": "ほっともっと", "brand:wikidata": "Q10850949", "brand:wikipedia": "ja:ほっともっと", "name": "ほっともっと", "name:en": "Hotto Motto", "name:ja": "ほっともっと", "shop": "deli"}, "removeTags": {"brand": "ほっともっと", "brand:en": "Hotto Motto", "brand:ja": "ほっともっと", "brand:wikidata": "Q10850949", "brand:wikipedia": "ja:ほっともっと", "name": "ほっともっと", "name:en": "Hotto Motto", "name:ja": "ほっともっと", "shop": "deli"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/deli/京樽": {"name": "京樽", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"shop": "deli", "brand:wikidata": "Q11374503"}, "addTags": {"brand": "京樽", "brand:en": "Kyotaru", "brand:ja": "京樽", "brand:wikidata": "Q11374503", "brand:wikipedia": "ja:京樽", "name": "京樽", "name:en": "Kyotaru", "name:ja": "京樽", "shop": "deli"}, "removeTags": {"brand": "京樽", "brand:en": "Kyotaru", "brand:ja": "京樽", "brand:wikidata": "Q11374503", "brand:wikipedia": "ja:京樽", "name": "京樽", "name:en": "Kyotaru", "name:ja": "京樽", "shop": "deli"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/deli/京樽": {"name": "京樽", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/kyotaru.sushi/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "deli", "brand:wikidata": "Q11374503"}, "addTags": {"brand": "京樽", "brand:en": "Kyotaru", "brand:ja": "京樽", "brand:wikidata": "Q11374503", "brand:wikipedia": "ja:京樽", "name": "京樽", "name:en": "Kyotaru", "name:ja": "京樽", "shop": "deli"}, "removeTags": {"brand": "京樽", "brand:en": "Kyotaru", "brand:ja": "京樽", "brand:wikidata": "Q11374503", "brand:wikipedia": "ja:京樽", "name": "京樽", "name:en": "Kyotaru", "name:ja": "京樽", "shop": "deli"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/department_store/Barneys New York": {"name": "Barneys New York", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/BarneysNY/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "department_store", "brand:wikidata": "Q59465"}, "addTags": {"brand": "Barneys New York", "brand:wikidata": "Q59465", "brand:wikipedia": "en:Barneys New York", "name": "Barneys New York", "shop": "department_store"}, "removeTags": {"brand": "Barneys New York", "brand:wikidata": "Q59465", "brand:wikipedia": "en:Barneys New York", "name": "Barneys New York", "shop": "department_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/department_store/Belk": {"name": "Belk", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Belk/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "department_store", "brand:wikidata": "Q127428"}, "addTags": {"brand": "Belk", "brand:wikidata": "Q127428", "brand:wikipedia": "en:Belk", "name": "Belk", "shop": "department_store"}, "removeTags": {"brand": "Belk", "brand:wikidata": "Q127428", "brand:wikipedia": "en:Belk", "name": "Belk", "shop": "department_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/department_store/Bi-Mart": {"name": "Bi-Mart", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBi-Mart.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "department_store", "brand:wikidata": "Q4902331"}, "addTags": {"brand": "Bi-Mart", "brand:wikidata": "Q4902331", "brand:wikipedia": "en:Bi-Mart", "name": "Bi-Mart", "shop": "department_store"}, "removeTags": {"brand": "Bi-Mart", "brand:wikidata": "Q4902331", "brand:wikipedia": "en:Bi-Mart", "name": "Bi-Mart", "shop": "department_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, @@ -3064,110 +3208,110 @@ "shop/department_store/Woolworth": {"name": "Woolworth", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/WoolworthDeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "department_store", "brand:wikidata": "Q183538"}, "addTags": {"brand": "Woolworth", "brand:wikidata": "Q183538", "brand:wikipedia": "de:Woolworth Deutschland", "name": "Woolworth", "shop": "department_store"}, "removeTags": {"brand": "Woolworth", "brand:wikidata": "Q183538", "brand:wikipedia": "de:Woolworth Deutschland", "name": "Woolworth", "shop": "department_store"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/department_store/Åhléns": {"name": "Åhléns", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/ahlens/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "department_store", "brand:wikidata": "Q270851"}, "addTags": {"brand": "Åhléns", "brand:wikidata": "Q270851", "brand:wikipedia": "sv:Åhléns", "name": "Åhléns", "shop": "department_store"}, "removeTags": {"brand": "Åhléns", "brand:wikidata": "Q270851", "brand:wikipedia": "sv:Åhléns", "name": "Åhléns", "shop": "department_store"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, "shop/department_store/東急ハンズ": {"name": "東急ハンズ", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/TokyuHandsInc/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "department_store", "brand:wikidata": "Q859212"}, "addTags": {"brand": "東急ハンズ", "brand:en": "Tokyu Hands", "brand:ja": "東急ハンズ", "brand:wikidata": "Q859212", "brand:wikipedia": "ja:東急ハンズ", "name": "東急ハンズ", "name:en": "Tokyu Hands", "name:ja": "東急ハンズ", "shop": "department_store"}, "removeTags": {"brand": "東急ハンズ", "brand:en": "Tokyu Hands", "brand:ja": "東急ハンズ", "brand:wikidata": "Q859212", "brand:wikipedia": "ja:東急ハンズ", "name": "東急ハンズ", "name:en": "Tokyu Hands", "name:ja": "東急ハンズ", "shop": "department_store"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Ace Hardware": {"name": "Ace Hardware", "icon": "temaki-tools", "imageURL": "https://pbs.twimg.com/profile_images/461877115663552513/uGdYfwOo_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q4672981"}, "addTags": {"brand": "Ace Hardware", "brand:wikidata": "Q4672981", "brand:wikipedia": "en:Ace Hardware", "name": "Ace Hardware", "shop": "doityourself"}, "removeTags": {"brand": "Ace Hardware", "brand:wikidata": "Q4672981", "brand:wikipedia": "en:Ace Hardware", "name": "Ace Hardware", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/B&Q": {"name": "B&Q", "icon": "temaki-tools", "imageURL": "https://pbs.twimg.com/profile_images/821677485687500801/WHJQ3YtP_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q707602"}, "addTags": {"brand": "B&Q", "brand:wikidata": "Q707602", "brand:wikipedia": "en:B&Q", "name": "B&Q", "shop": "doityourself"}, "removeTags": {"brand": "B&Q", "brand:wikidata": "Q707602", "brand:wikipedia": "en:B&Q", "name": "B&Q", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Ace Hardware": {"name": "Ace Hardware", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/acehardware/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q4672981"}, "addTags": {"brand": "Ace Hardware", "brand:wikidata": "Q4672981", "brand:wikipedia": "en:Ace Hardware", "name": "Ace Hardware", "shop": "doityourself"}, "removeTags": {"brand": "Ace Hardware", "brand:wikidata": "Q4672981", "brand:wikipedia": "en:Ace Hardware", "name": "Ace Hardware", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/B&Q": {"name": "B&Q", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/bandq/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q707602"}, "addTags": {"brand": "B&Q", "brand:wikidata": "Q707602", "brand:wikipedia": "en:B&Q", "name": "B&Q", "shop": "doityourself"}, "removeTags": {"brand": "B&Q", "brand:wikidata": "Q707602", "brand:wikipedia": "en:B&Q", "name": "B&Q", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, "shop/doityourself/Bauhaus": {"name": "Bauhaus", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/137379942944322/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q672043"}, "addTags": {"brand": "Bauhaus", "brand:wikidata": "Q672043", "brand:wikipedia": "en:Bauhaus (company)", "name": "Bauhaus", "shop": "doityourself"}, "removeTags": {"brand": "Bauhaus", "brand:wikidata": "Q672043", "brand:wikipedia": "en:Bauhaus (company)", "name": "Bauhaus", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Biltema": {"name": "Biltema", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBiltema%203.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q3355552"}, "addTags": {"brand": "Biltema", "brand:wikidata": "Q3355552", "brand:wikipedia": "en:Biltema", "name": "Biltema", "shop": "doityourself"}, "removeTags": {"brand": "Biltema", "brand:wikidata": "Q3355552", "brand:wikipedia": "en:Biltema", "name": "Biltema", "shop": "doityourself"}, "countryCodes": ["dk", "fi", "no", "se"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Brico": {"name": "Brico", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBrico%20logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2510786"}, "addTags": {"brand": "Brico", "brand:wikidata": "Q2510786", "brand:wikipedia": "en:Brico", "name": "Brico", "shop": "doityourself"}, "removeTags": {"brand": "Brico", "brand:wikidata": "Q2510786", "brand:wikipedia": "en:Brico", "name": "Brico", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Brico Dépôt": {"name": "Brico Dépôt", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBricodepot.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2889702"}, "addTags": {"brand": "Brico Dépôt", "brand:wikidata": "Q2889702", "brand:wikipedia": "en:Brico Dépôt", "name": "Brico Dépôt", "shop": "doityourself"}, "removeTags": {"brand": "Brico Dépôt", "brand:wikidata": "Q2889702", "brand:wikipedia": "en:Brico Dépôt", "name": "Brico Dépôt", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Bricoman": {"name": "Bricoman", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBricoman%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2925142"}, "addTags": {"brand": "Bricoman", "brand:wikidata": "Q2925142", "brand:wikipedia": "it:Bricoman", "name": "Bricoman", "shop": "doityourself"}, "removeTags": {"brand": "Bricoman", "brand:wikidata": "Q2925142", "brand:wikipedia": "it:Bricoman", "name": "Bricoman", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Bricomarché": {"name": "Bricomarché", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2925147"}, "addTags": {"brand": "Bricomarché", "brand:wikidata": "Q2925147", "brand:wikipedia": "en:Bricomarché", "name": "Bricomarché", "shop": "doityourself"}, "removeTags": {"brand": "Bricomarché", "brand:wikidata": "Q2925147", "brand:wikipedia": "en:Bricomarché", "name": "Bricomarché", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Bricorama": {"name": "Bricorama", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2925146"}, "addTags": {"brand": "Bricorama", "brand:wikidata": "Q2925146", "brand:wikipedia": "en:Bricorama", "name": "Bricorama", "shop": "doityourself"}, "removeTags": {"brand": "Bricorama", "brand:wikidata": "Q2925146", "brand:wikipedia": "en:Bricorama", "name": "Bricorama", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Bunnings Warehouse": {"name": "Bunnings Warehouse", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBunnings%202005%20SeanMcClean.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q4997829"}, "addTags": {"brand": "Bunnings Warehouse", "brand:wikidata": "Q4997829", "brand:wikipedia": "en:Bunnings Warehouse", "name": "Bunnings Warehouse", "shop": "doityourself"}, "removeTags": {"brand": "Bunnings Warehouse", "brand:wikidata": "Q4997829", "brand:wikipedia": "en:Bunnings Warehouse", "name": "Bunnings Warehouse", "shop": "doityourself"}, "countryCodes": ["au", "nz"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Castorama": {"name": "Castorama", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q966971"}, "addTags": {"brand": "Castorama", "brand:wikidata": "Q966971", "brand:wikipedia": "en:Castorama", "name": "Castorama", "shop": "doityourself"}, "removeTags": {"brand": "Castorama", "brand:wikidata": "Q966971", "brand:wikipedia": "en:Castorama", "name": "Castorama", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Clas Ohlson": {"name": "Clas Ohlson", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FClas%20Ohlson.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q3356220"}, "addTags": {"brand": "Clas Ohlson", "brand:wikidata": "Q3356220", "brand:wikipedia": "en:Clas Ohlson", "name": "Clas Ohlson", "shop": "doityourself"}, "removeTags": {"brand": "Clas Ohlson", "brand:wikidata": "Q3356220", "brand:wikipedia": "en:Clas Ohlson", "name": "Clas Ohlson", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Easy": {"name": "Easy", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Easy%20Cencosud.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q5331091"}, "addTags": {"brand": "Easy", "brand:wikidata": "Q5331091", "brand:wikipedia": "en:Easy (store)", "name": "Easy", "shop": "doityourself"}, "removeTags": {"brand": "Easy", "brand:wikidata": "Q5331091", "brand:wikipedia": "en:Easy (store)", "name": "Easy", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Gamma": {"name": "Gamma", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGamma%20logo%202010.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2294120"}, "addTags": {"brand": "Gamma", "brand:wikidata": "Q2294120", "brand:wikipedia": "en:Gamma (store)", "name": "Gamma", "shop": "doityourself"}, "removeTags": {"brand": "Gamma", "brand:wikidata": "Q2294120", "brand:wikipedia": "en:Gamma (store)", "name": "Gamma", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Globus Baumarkt": {"name": "Globus Baumarkt", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGlobus%20SB-Warenhaus%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q457503"}, "addTags": {"brand": "Globus Baumarkt", "brand:wikidata": "Q457503", "brand:wikipedia": "de:Globus Holding", "name": "Globus Baumarkt", "shop": "doityourself"}, "removeTags": {"brand": "Globus Baumarkt", "brand:wikidata": "Q457503", "brand:wikipedia": "de:Globus Holding", "name": "Globus Baumarkt", "shop": "doityourself"}, "countryCodes": ["de", "lu"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Hagebaumarkt": {"name": "Hagebaumarkt", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F8Eck%203D%204c%2005cm.tif&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q1568279"}, "addTags": {"brand": "Hagebaumarkt", "brand:wikidata": "Q1568279", "brand:wikipedia": "de:Hagebau", "name": "Hagebaumarkt", "shop": "doityourself"}, "removeTags": {"brand": "Hagebaumarkt", "brand:wikidata": "Q1568279", "brand:wikipedia": "de:Hagebau", "name": "Hagebaumarkt", "shop": "doityourself"}, "countryCodes": ["at", "be", "ch", "de", "es", "fr", "lu", "nl"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Hammer": {"name": "Hammer", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q52159668"}, "addTags": {"brand": "Hammer", "brand:wikidata": "Q52159668", "brand:wikipedia": "de:Hammer (Fachmarktkette)", "name": "Hammer", "shop": "doityourself"}, "removeTags": {"brand": "Hammer", "brand:wikidata": "Q52159668", "brand:wikipedia": "de:Hammer (Fachmarktkette)", "name": "Hammer", "shop": "doityourself"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Hellweg": {"name": "Hellweg", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHELLWEG%20Logo%202017.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q1603084"}, "addTags": {"brand": "Hellweg", "brand:wikidata": "Q1603084", "brand:wikipedia": "de:Hellweg (Baumarkt)", "name": "Hellweg", "shop": "doityourself"}, "removeTags": {"brand": "Hellweg", "brand:wikidata": "Q1603084", "brand:wikipedia": "de:Hellweg (Baumarkt)", "name": "Hellweg", "shop": "doityourself"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Home Building Centre": {"name": "Home Building Centre", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHome%20Hardware%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q3139611"}, "addTags": {"brand": "Home Hardware", "brand:wikidata": "Q3139611", "brand:wikipedia": "en:Home Hardware", "name": "Home Building Centre", "shop": "doityourself"}, "removeTags": {"brand": "Home Hardware", "brand:wikidata": "Q3139611", "brand:wikipedia": "en:Home Hardware", "name": "Home Building Centre", "shop": "doityourself"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/Biltema": {"name": "Biltema", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/BiltemaSverige/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q3355552"}, "addTags": {"brand": "Biltema", "brand:wikidata": "Q3355552", "brand:wikipedia": "en:Biltema", "name": "Biltema", "shop": "doityourself"}, "removeTags": {"brand": "Biltema", "brand:wikidata": "Q3355552", "brand:wikipedia": "en:Biltema", "name": "Biltema", "shop": "doityourself"}, "countryCodes": ["dk", "fi", "no", "se"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/Brico": {"name": "Brico", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/brico.be/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2510786"}, "addTags": {"brand": "Brico", "brand:wikidata": "Q2510786", "brand:wikipedia": "en:Brico", "name": "Brico", "shop": "doityourself"}, "removeTags": {"brand": "Brico", "brand:wikidata": "Q2510786", "brand:wikipedia": "en:Brico", "name": "Brico", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Brico Dépôt": {"name": "Brico Dépôt", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/BricoDepotFrance/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2889702"}, "addTags": {"brand": "Brico Dépôt", "brand:wikidata": "Q2889702", "brand:wikipedia": "en:Brico Dépôt", "name": "Brico Dépôt", "shop": "doityourself"}, "removeTags": {"brand": "Brico Dépôt", "brand:wikidata": "Q2889702", "brand:wikipedia": "en:Brico Dépôt", "name": "Brico Dépôt", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Bricoman": {"name": "Bricoman", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/BricomanFrance/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2925142"}, "addTags": {"brand": "Bricoman", "brand:wikidata": "Q2925142", "brand:wikipedia": "it:Bricoman", "name": "Bricoman", "shop": "doityourself"}, "removeTags": {"brand": "Bricoman", "brand:wikidata": "Q2925142", "brand:wikipedia": "it:Bricoman", "name": "Bricoman", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Bricomarché": {"name": "Bricomarché", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/Bricomarche/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2925147"}, "addTags": {"brand": "Bricomarché", "brand:wikidata": "Q2925147", "brand:wikipedia": "en:Bricomarché", "name": "Bricomarché", "shop": "doityourself"}, "removeTags": {"brand": "Bricomarché", "brand:wikidata": "Q2925147", "brand:wikipedia": "en:Bricomarché", "name": "Bricomarché", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Bricorama": {"name": "Bricorama", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/BricoramaFR/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2925146"}, "addTags": {"brand": "Bricorama", "brand:wikidata": "Q2925146", "brand:wikipedia": "en:Bricorama", "name": "Bricorama", "shop": "doityourself"}, "removeTags": {"brand": "Bricorama", "brand:wikidata": "Q2925146", "brand:wikipedia": "en:Bricorama", "name": "Bricorama", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Bunnings Warehouse": {"name": "Bunnings Warehouse", "icon": "temaki-tools", "imageURL": "https://pbs.twimg.com/profile_images/1405732718/hammer_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q4997829"}, "addTags": {"brand": "Bunnings Warehouse", "brand:wikidata": "Q4997829", "brand:wikipedia": "en:Bunnings Warehouse", "name": "Bunnings Warehouse", "shop": "doityourself"}, "removeTags": {"brand": "Bunnings Warehouse", "brand:wikidata": "Q4997829", "brand:wikipedia": "en:Bunnings Warehouse", "name": "Bunnings Warehouse", "shop": "doityourself"}, "countryCodes": ["au", "nz"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/Castorama": {"name": "Castorama", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/castorama/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q966971"}, "addTags": {"brand": "Castorama", "brand:wikidata": "Q966971", "brand:wikipedia": "en:Castorama", "name": "Castorama", "shop": "doityourself"}, "removeTags": {"brand": "Castorama", "brand:wikidata": "Q966971", "brand:wikipedia": "en:Castorama", "name": "Castorama", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Clas Ohlson": {"name": "Clas Ohlson", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/clasohlsonsverige/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q3356220"}, "addTags": {"brand": "Clas Ohlson", "brand:wikidata": "Q3356220", "brand:wikipedia": "en:Clas Ohlson", "name": "Clas Ohlson", "shop": "doityourself"}, "removeTags": {"brand": "Clas Ohlson", "brand:wikidata": "Q3356220", "brand:wikipedia": "en:Clas Ohlson", "name": "Clas Ohlson", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Easy": {"name": "Easy", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/EasyHomecenter/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q5331091"}, "addTags": {"brand": "Easy", "brand:wikidata": "Q5331091", "brand:wikipedia": "en:Easy (store)", "name": "Easy", "shop": "doityourself"}, "removeTags": {"brand": "Easy", "brand:wikidata": "Q5331091", "brand:wikipedia": "en:Easy (store)", "name": "Easy", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Gamma": {"name": "Gamma", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/gamma.be/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2294120"}, "addTags": {"brand": "Gamma", "brand:wikidata": "Q2294120", "brand:wikipedia": "en:Gamma (store)", "name": "Gamma", "shop": "doityourself"}, "removeTags": {"brand": "Gamma", "brand:wikidata": "Q2294120", "brand:wikipedia": "en:Gamma (store)", "name": "Gamma", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Globus Baumarkt": {"name": "Globus Baumarkt", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/Globus.de/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q457503"}, "addTags": {"brand": "Globus Baumarkt", "brand:wikidata": "Q457503", "brand:wikipedia": "de:Globus Holding", "name": "Globus Baumarkt", "shop": "doityourself"}, "removeTags": {"brand": "Globus Baumarkt", "brand:wikidata": "Q457503", "brand:wikipedia": "de:Globus Holding", "name": "Globus Baumarkt", "shop": "doityourself"}, "countryCodes": ["de", "lu"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/Hagebaumarkt": {"name": "Hagebaumarkt", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/hagebau/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q1568279"}, "addTags": {"brand": "Hagebaumarkt", "brand:wikidata": "Q1568279", "brand:wikipedia": "de:Hagebau", "name": "Hagebaumarkt", "shop": "doityourself"}, "removeTags": {"brand": "Hagebaumarkt", "brand:wikidata": "Q1568279", "brand:wikipedia": "de:Hagebau", "name": "Hagebaumarkt", "shop": "doityourself"}, "countryCodes": ["at", "be", "ch", "de", "es", "fr", "lu", "nl"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/Hammer": {"name": "Hammer", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/hammerzuhause/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q52159668"}, "addTags": {"brand": "Hammer", "brand:wikidata": "Q52159668", "brand:wikipedia": "de:Hammer (Fachmarktkette)", "name": "Hammer", "shop": "doityourself"}, "removeTags": {"brand": "Hammer", "brand:wikidata": "Q52159668", "brand:wikipedia": "de:Hammer (Fachmarktkette)", "name": "Hammer", "shop": "doityourself"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/Hellweg": {"name": "Hellweg", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/Hellweg.de/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q1603084"}, "addTags": {"brand": "Hellweg", "brand:wikidata": "Q1603084", "brand:wikipedia": "de:Hellweg (Baumarkt)", "name": "Hellweg", "shop": "doityourself"}, "removeTags": {"brand": "Hellweg", "brand:wikidata": "Q1603084", "brand:wikipedia": "de:Hellweg (Baumarkt)", "name": "Hellweg", "shop": "doityourself"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/Home Building Centre": {"name": "Home Building Centre", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/homehardwarestores/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q3139611"}, "addTags": {"brand": "Home Hardware", "brand:wikidata": "Q3139611", "brand:wikipedia": "en:Home Hardware", "name": "Home Building Centre", "shop": "doityourself"}, "removeTags": {"brand": "Home Hardware", "brand:wikidata": "Q3139611", "brand:wikipedia": "en:Home Hardware", "name": "Home Building Centre", "shop": "doityourself"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "shop/doityourself/Home Depot": {"name": "Home Depot", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/homedepot/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q864407"}, "addTags": {"brand": "Home Depot", "brand:wikidata": "Q864407", "brand:wikipedia": "en:The Home Depot", "name": "Home Depot", "shop": "doityourself"}, "removeTags": {"brand": "Home Depot", "brand:wikidata": "Q864407", "brand:wikipedia": "en:The Home Depot", "name": "Home Depot", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Home Hardware Building Centre": {"name": "Home Hardware Building Centre", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHome%20Hardware%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q3139611"}, "addTags": {"brand": "Home Hardware", "brand:wikidata": "Q3139611", "brand:wikipedia": "en:Home Hardware", "name": "Home Hardware Building Centre", "shop": "doityourself"}, "removeTags": {"brand": "Home Hardware", "brand:wikidata": "Q3139611", "brand:wikipedia": "en:Home Hardware", "name": "Home Hardware Building Centre", "shop": "doityourself"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Homebase": {"name": "Homebase", "icon": "temaki-tools", "imageURL": "https://pbs.twimg.com/profile_images/1064463197271412736/s2AywY2R_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q9293447"}, "addTags": {"brand": "Homebase", "brand:wikidata": "Q9293447", "brand:wikipedia": "en:Homebase", "name": "Homebase", "shop": "doityourself"}, "removeTags": {"brand": "Homebase", "brand:wikidata": "Q9293447", "brand:wikipedia": "en:Homebase", "name": "Homebase", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Hornbach": {"name": "Hornbach", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHornbach%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q685926"}, "addTags": {"brand": "Hornbach", "brand:wikidata": "Q685926", "brand:wikipedia": "en:Hornbach (retailer)", "name": "Hornbach", "shop": "doityourself"}, "removeTags": {"brand": "Hornbach", "brand:wikidata": "Q685926", "brand:wikipedia": "en:Hornbach (retailer)", "name": "Hornbach", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Hubo": {"name": "Hubo", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHubo%20Belgique%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q3142153"}, "addTags": {"brand": "Hubo", "brand:wikidata": "Q3142153", "brand:wikipedia": "en:Hubo Belgium", "name": "Hubo", "shop": "doityourself"}, "removeTags": {"brand": "Hubo", "brand:wikidata": "Q3142153", "brand:wikipedia": "en:Hubo Belgium", "name": "Hubo", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Jewson": {"name": "Jewson", "icon": "temaki-tools", "imageURL": "https://pbs.twimg.com/profile_images/458888840157995008/QRQLxYuE_bigger.jpeg", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q6190226"}, "addTags": {"brand": "Jewson", "brand:wikidata": "Q6190226", "brand:wikipedia": "en:Jewson", "name": "Jewson", "shop": "doityourself"}, "removeTags": {"brand": "Jewson", "brand:wikidata": "Q6190226", "brand:wikipedia": "en:Jewson", "name": "Jewson", "shop": "doityourself"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Karwei": {"name": "Karwei", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2097480"}, "addTags": {"brand": "Karwei", "brand:wikidata": "Q2097480", "brand:wikipedia": "en:Karwei", "name": "Karwei", "shop": "doityourself"}, "removeTags": {"brand": "Karwei", "brand:wikidata": "Q2097480", "brand:wikipedia": "en:Karwei", "name": "Karwei", "shop": "doityourself"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Lagerhaus": {"name": "Lagerhaus", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q10553211"}, "addTags": {"brand": "Lagerhaus", "brand:wikidata": "Q10553211", "brand:wikipedia": "sv:Lagerhaus", "name": "Lagerhaus", "shop": "doityourself"}, "removeTags": {"brand": "Lagerhaus", "brand:wikidata": "Q10553211", "brand:wikipedia": "sv:Lagerhaus", "name": "Lagerhaus", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Leroy Merlin": {"name": "Leroy Merlin", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLeroy%20Merlin.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q889624"}, "addTags": {"brand": "Leroy Merlin", "brand:wikidata": "Q889624", "brand:wikipedia": "en:Leroy Merlin", "name": "Leroy Merlin", "shop": "doityourself"}, "removeTags": {"brand": "Leroy Merlin", "brand:wikidata": "Q889624", "brand:wikipedia": "en:Leroy Merlin", "name": "Leroy Merlin", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Home Hardware Building Centre": {"name": "Home Hardware Building Centre", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/homehardwarestores/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q3139611"}, "addTags": {"brand": "Home Hardware", "brand:wikidata": "Q3139611", "brand:wikipedia": "en:Home Hardware", "name": "Home Hardware Building Centre", "shop": "doityourself"}, "removeTags": {"brand": "Home Hardware", "brand:wikidata": "Q3139611", "brand:wikipedia": "en:Home Hardware", "name": "Home Hardware Building Centre", "shop": "doityourself"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/Homebase": {"name": "Homebase", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/homebase/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q9293447"}, "addTags": {"brand": "Homebase", "brand:wikidata": "Q9293447", "brand:wikipedia": "en:Homebase", "name": "Homebase", "shop": "doityourself"}, "removeTags": {"brand": "Homebase", "brand:wikidata": "Q9293447", "brand:wikipedia": "en:Homebase", "name": "Homebase", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Hornbach": {"name": "Hornbach", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/hornbach.de/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q685926"}, "addTags": {"brand": "Hornbach", "brand:wikidata": "Q685926", "brand:wikipedia": "en:Hornbach (retailer)", "name": "Hornbach", "shop": "doityourself"}, "removeTags": {"brand": "Hornbach", "brand:wikidata": "Q685926", "brand:wikipedia": "en:Hornbach (retailer)", "name": "Hornbach", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Hubo": {"name": "Hubo", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/hubo.be/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q3142153"}, "addTags": {"brand": "Hubo", "brand:wikidata": "Q3142153", "brand:wikipedia": "en:Hubo Belgium", "name": "Hubo", "shop": "doityourself"}, "removeTags": {"brand": "Hubo", "brand:wikidata": "Q3142153", "brand:wikipedia": "en:Hubo Belgium", "name": "Hubo", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Jewson": {"name": "Jewson", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/jewsonuk/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q6190226"}, "addTags": {"brand": "Jewson", "brand:wikidata": "Q6190226", "brand:wikipedia": "en:Jewson", "name": "Jewson", "shop": "doityourself"}, "removeTags": {"brand": "Jewson", "brand:wikidata": "Q6190226", "brand:wikipedia": "en:Jewson", "name": "Jewson", "shop": "doityourself"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/Karwei": {"name": "Karwei", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/karwei/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2097480"}, "addTags": {"brand": "Karwei", "brand:wikidata": "Q2097480", "brand:wikipedia": "en:Karwei", "name": "Karwei", "shop": "doityourself"}, "removeTags": {"brand": "Karwei", "brand:wikidata": "Q2097480", "brand:wikipedia": "en:Karwei", "name": "Karwei", "shop": "doityourself"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/Leroy Merlin": {"name": "Leroy Merlin", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/leroymerlin/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q889624"}, "addTags": {"brand": "Leroy Merlin", "brand:wikidata": "Q889624", "brand:wikipedia": "en:Leroy Merlin", "name": "Leroy Merlin", "shop": "doityourself"}, "removeTags": {"brand": "Leroy Merlin", "brand:wikidata": "Q889624", "brand:wikipedia": "en:Leroy Merlin", "name": "Leroy Merlin", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, "shop/doityourself/Lowe's": {"name": "Lowe's", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/lowes/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q1373493"}, "addTags": {"brand": "Lowe's", "brand:wikidata": "Q1373493", "brand:wikipedia": "en:Lowe's", "name": "Lowe's", "shop": "doityourself"}, "removeTags": {"brand": "Lowe's", "brand:wikidata": "Q1373493", "brand:wikipedia": "en:Lowe's", "name": "Lowe's", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Menards": {"name": "Menards", "icon": "temaki-tools", "imageURL": "https://pbs.twimg.com/profile_images/1080511499578290176/Bt6aub6Y_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q1639897"}, "addTags": {"brand": "Menards", "brand:wikidata": "Q1639897", "brand:wikipedia": "en:Menards", "name": "Menards", "shop": "doityourself"}, "removeTags": {"brand": "Menards", "brand:wikidata": "Q1639897", "brand:wikipedia": "en:Menards", "name": "Menards", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Mr.Bricolage": {"name": "Mr.Bricolage", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMr%20Bricolage%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q3141657"}, "addTags": {"brand": "Mr.Bricolage", "brand:wikidata": "Q3141657", "brand:wikipedia": "fr:Mr Bricolage", "name": "Mr.Bricolage", "shop": "doityourself"}, "removeTags": {"brand": "Mr.Bricolage", "brand:wikidata": "Q3141657", "brand:wikipedia": "fr:Mr Bricolage", "name": "Mr.Bricolage", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/OBI": {"name": "OBI", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FObi.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q300518"}, "addTags": {"brand": "OBI", "brand:wikidata": "Q300518", "brand:wikipedia": "en:Obi (store)", "name": "OBI", "shop": "doityourself"}, "removeTags": {"brand": "OBI", "brand:wikidata": "Q300518", "brand:wikipedia": "en:Obi (store)", "name": "OBI", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Point P": {"name": "Point P", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q3393350"}, "addTags": {"brand": "Point P", "brand:wikidata": "Q3393350", "brand:wikipedia": "fr:Saint-Gobain Distribution Bâtiment France", "name": "Point P", "shop": "doityourself"}, "removeTags": {"brand": "Point P", "brand:wikidata": "Q3393350", "brand:wikipedia": "fr:Saint-Gobain Distribution Bâtiment France", "name": "Point P", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Menards": {"name": "Menards", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/MenardsHomeImprovement/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q1639897"}, "addTags": {"brand": "Menards", "brand:wikidata": "Q1639897", "brand:wikipedia": "en:Menards", "name": "Menards", "shop": "doityourself"}, "removeTags": {"brand": "Menards", "brand:wikidata": "Q1639897", "brand:wikipedia": "en:Menards", "name": "Menards", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Mr.Bricolage": {"name": "Mr.Bricolage", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/mr.bricolagefrance/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q3141657"}, "addTags": {"brand": "Mr.Bricolage", "brand:wikidata": "Q3141657", "brand:wikipedia": "fr:Mr Bricolage", "name": "Mr.Bricolage", "shop": "doityourself"}, "removeTags": {"brand": "Mr.Bricolage", "brand:wikidata": "Q3141657", "brand:wikipedia": "fr:Mr Bricolage", "name": "Mr.Bricolage", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/OBI": {"name": "OBI", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/obirussia/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q300518"}, "addTags": {"brand": "OBI", "brand:wikidata": "Q300518", "brand:wikipedia": "en:Obi (store)", "name": "OBI", "shop": "doityourself"}, "removeTags": {"brand": "OBI", "brand:wikidata": "Q300518", "brand:wikipedia": "en:Obi (store)", "name": "OBI", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, "shop/doityourself/Praktiker": {"name": "Praktiker", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPraktiker%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q680214"}, "addTags": {"brand": "Praktiker", "brand:wikidata": "Q680214", "brand:wikipedia": "en:Praktiker", "name": "Praktiker", "shop": "doityourself"}, "removeTags": {"brand": "Praktiker", "brand:wikidata": "Q680214", "brand:wikipedia": "en:Praktiker", "name": "Praktiker", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Praxis": {"name": "Praxis", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPraxis%20Amsterdam-Zuidoost.PNG&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2741995"}, "addTags": {"brand": "Praxis", "brand:wikidata": "Q2741995", "brand:wikipedia": "nl:Praxis (winkel)", "name": "Praxis", "shop": "doityourself"}, "removeTags": {"brand": "Praxis", "brand:wikidata": "Q2741995", "brand:wikipedia": "nl:Praxis (winkel)", "name": "Praxis", "shop": "doityourself"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Promart": {"name": "Promart", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20de%20Promart.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q17626095"}, "addTags": {"brand": "Promart", "brand:wikidata": "Q17626095", "brand:wikipedia": "en:Promart", "name": "Promart", "shop": "doityourself"}, "removeTags": {"brand": "Promart", "brand:wikidata": "Q17626095", "brand:wikipedia": "en:Promart", "name": "Promart", "shop": "doityourself"}, "countryCodes": ["pe"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Rona": {"name": "Rona", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q3415283"}, "addTags": {"brand": "Rona", "brand:wikidata": "Q3415283", "brand:wikipedia": "en:Rona, Inc.", "name": "Rona", "shop": "doityourself"}, "removeTags": {"brand": "Rona", "brand:wikidata": "Q3415283", "brand:wikipedia": "en:Rona, Inc.", "name": "Rona", "shop": "doityourself"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Screwfix": {"name": "Screwfix", "icon": "temaki-tools", "imageURL": "https://pbs.twimg.com/profile_images/874568511359778816/DtUvUAY6_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q7439115"}, "addTags": {"brand": "Screwfix", "brand:wikidata": "Q7439115", "brand:wikipedia": "en:Screwfix", "name": "Screwfix", "shop": "doityourself"}, "removeTags": {"brand": "Screwfix", "brand:wikidata": "Q7439115", "brand:wikipedia": "en:Screwfix", "name": "Screwfix", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Sodimac": {"name": "Sodimac", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q7553274"}, "addTags": {"brand": "Sodimac", "brand:wikidata": "Q7553274", "brand:wikipedia": "es:Sodimac", "name": "Sodimac", "shop": "doityourself"}, "removeTags": {"brand": "Sodimac", "brand:wikidata": "Q7553274", "brand:wikipedia": "es:Sodimac", "name": "Sodimac", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Sonderpreis Baumarkt": {"name": "Sonderpreis Baumarkt", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q811530"}, "addTags": {"brand": "Sonderpreis Baumarkt", "brand:wikidata": "Q811530", "brand:wikipedia": "de:Baumarkt", "name": "Sonderpreis Baumarkt", "shop": "doityourself"}, "removeTags": {"brand": "Sonderpreis Baumarkt", "brand:wikidata": "Q811530", "brand:wikipedia": "de:Baumarkt", "name": "Sonderpreis Baumarkt", "shop": "doityourself"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Tekzen": {"name": "Tekzen", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q25475379"}, "addTags": {"brand": "Tekzen", "brand:wikidata": "Q25475379", "brand:wikipedia": "tr:Tekzen", "name": "Tekzen", "shop": "doityourself"}, "removeTags": {"brand": "Tekzen", "brand:wikidata": "Q25475379", "brand:wikipedia": "tr:Tekzen", "name": "Tekzen", "shop": "doityourself"}, "countryCodes": ["tr"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/Praxis": {"name": "Praxis", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/praxis/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2741995"}, "addTags": {"brand": "Praxis", "brand:wikidata": "Q2741995", "brand:wikipedia": "nl:Praxis (winkel)", "name": "Praxis", "shop": "doityourself"}, "removeTags": {"brand": "Praxis", "brand:wikidata": "Q2741995", "brand:wikipedia": "nl:Praxis (winkel)", "name": "Praxis", "shop": "doityourself"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/Promart": {"name": "Promart", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/PROMARTHomecenter/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q17626095"}, "addTags": {"brand": "Promart", "brand:wikidata": "Q17626095", "brand:wikipedia": "en:Promart", "name": "Promart", "shop": "doityourself"}, "removeTags": {"brand": "Promart", "brand:wikidata": "Q17626095", "brand:wikipedia": "en:Promart", "name": "Promart", "shop": "doityourself"}, "countryCodes": ["pe"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/Rona": {"name": "Rona", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/ronainc/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q3415283"}, "addTags": {"brand": "Rona", "brand:wikidata": "Q3415283", "brand:wikipedia": "en:Rona, Inc.", "name": "Rona", "shop": "doityourself"}, "removeTags": {"brand": "Rona", "brand:wikidata": "Q3415283", "brand:wikipedia": "en:Rona, Inc.", "name": "Rona", "shop": "doityourself"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/Screwfix": {"name": "Screwfix", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/Screwfix/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q7439115"}, "addTags": {"brand": "Screwfix", "brand:wikidata": "Q7439115", "brand:wikipedia": "en:Screwfix", "name": "Screwfix", "shop": "doityourself"}, "removeTags": {"brand": "Screwfix", "brand:wikidata": "Q7439115", "brand:wikipedia": "en:Screwfix", "name": "Screwfix", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Sodimac": {"name": "Sodimac", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/homecenter/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q7553274"}, "addTags": {"brand": "Sodimac", "brand:wikidata": "Q7553274", "brand:wikipedia": "es:Sodimac", "name": "Sodimac", "shop": "doityourself"}, "removeTags": {"brand": "Sodimac", "brand:wikidata": "Q7553274", "brand:wikipedia": "es:Sodimac", "name": "Sodimac", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Tekzen": {"name": "Tekzen", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/tekzenturkiye/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q25475379"}, "addTags": {"brand": "Tekzen", "brand:wikidata": "Q25475379", "brand:wikipedia": "tr:Tekzen", "name": "Tekzen", "shop": "doityourself"}, "removeTags": {"brand": "Tekzen", "brand:wikidata": "Q25475379", "brand:wikipedia": "tr:Tekzen", "name": "Tekzen", "shop": "doityourself"}, "countryCodes": ["tr"], "matchScore": 2, "suggestion": true}, "shop/doityourself/Toom Baumarkt": {"name": "Toom Baumarkt", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/192246064148765/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2442970"}, "addTags": {"brand": "Toom Baumarkt", "brand:wikidata": "Q2442970", "brand:wikipedia": "de:Toom Baumarkt", "name": "Toom Baumarkt", "shop": "doityourself"}, "removeTags": {"brand": "Toom Baumarkt", "brand:wikidata": "Q2442970", "brand:wikipedia": "de:Toom Baumarkt", "name": "Toom Baumarkt", "shop": "doityourself"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Travis Perkins": {"name": "Travis Perkins", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTravis-Perkins-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2450664"}, "addTags": {"brand": "Travis Perkins", "brand:wikidata": "Q2450664", "brand:wikipedia": "en:Travis Perkins", "name": "Travis Perkins", "shop": "doityourself"}, "removeTags": {"brand": "Travis Perkins", "brand:wikidata": "Q2450664", "brand:wikipedia": "en:Travis Perkins", "name": "Travis Perkins", "shop": "doityourself"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Weldom": {"name": "Weldom", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q16683226"}, "addTags": {"brand": "Weldom", "brand:wikidata": "Q16683226", "brand:wikipedia": "fr:Weldom", "name": "Weldom", "shop": "doityourself"}, "removeTags": {"brand": "Weldom", "brand:wikidata": "Q16683226", "brand:wikipedia": "fr:Weldom", "name": "Weldom", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, - "shop/doityourself/Wickes": {"name": "Wickes", "icon": "temaki-tools", "imageURL": "https://pbs.twimg.com/profile_images/1034485397030612992/QbzJLMs8_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q7998350"}, "addTags": {"brand": "Wickes", "brand:wikidata": "Q7998350", "brand:wikipedia": "en:Wickes", "name": "Wickes", "shop": "doityourself"}, "removeTags": {"brand": "Wickes", "brand:wikidata": "Q7998350", "brand:wikipedia": "en:Wickes", "name": "Wickes", "shop": "doityourself"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/jem & fix": {"name": "jem & fix", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q12319200"}, "addTags": {"brand": "jem & fix", "brand:wikidata": "Q12319200", "brand:wikipedia": "da:jem & fix", "name": "jem & fix", "shop": "doityourself"}, "removeTags": {"brand": "jem & fix", "brand:wikidata": "Q12319200", "brand:wikipedia": "da:jem & fix", "name": "jem & fix", "shop": "doityourself"}, "countryCodes": ["dk"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Леруа Мерлен": {"name": "Леруа Мерлен", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLeroy%20Merlin.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q889624"}, "addTags": {"brand": "Леруа Мерлен", "brand:en": "Leroy Merlin", "brand:wikidata": "Q889624", "brand:wikipedia": "en:Leroy Merlin", "name": "Леруа Мерлен", "name:en": "Leroy Merlin", "shop": "doityourself"}, "removeTags": {"brand": "Леруа Мерлен", "brand:en": "Leroy Merlin", "brand:wikidata": "Q889624", "brand:wikipedia": "en:Leroy Merlin", "name": "Леруа Мерлен", "name:en": "Leroy Merlin", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Travis Perkins": {"name": "Travis Perkins", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/TravisPerkinsPlcUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q2450664"}, "addTags": {"brand": "Travis Perkins", "brand:wikidata": "Q2450664", "brand:wikipedia": "en:Travis Perkins", "name": "Travis Perkins", "shop": "doityourself"}, "removeTags": {"brand": "Travis Perkins", "brand:wikidata": "Q2450664", "brand:wikipedia": "en:Travis Perkins", "name": "Travis Perkins", "shop": "doityourself"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/Weldom": {"name": "Weldom", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/Weldom/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q16683226"}, "addTags": {"brand": "Weldom", "brand:wikidata": "Q16683226", "brand:wikipedia": "fr:Weldom", "name": "Weldom", "shop": "doityourself"}, "removeTags": {"brand": "Weldom", "brand:wikidata": "Q16683226", "brand:wikipedia": "fr:Weldom", "name": "Weldom", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, + "shop/doityourself/Wickes": {"name": "Wickes", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/Wickes.co.uk/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q7998350"}, "addTags": {"brand": "Wickes", "brand:wikidata": "Q7998350", "brand:wikipedia": "en:Wickes", "name": "Wickes", "shop": "doityourself"}, "removeTags": {"brand": "Wickes", "brand:wikidata": "Q7998350", "brand:wikipedia": "en:Wickes", "name": "Wickes", "shop": "doityourself"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/jem & fix": {"name": "jem & fix", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/jemogfix/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q12319200"}, "addTags": {"brand": "jem & fix", "brand:wikidata": "Q12319200", "brand:wikipedia": "da:Jem & fix", "name": "jem & fix", "shop": "doityourself"}, "removeTags": {"brand": "jem & fix", "brand:wikidata": "Q12319200", "brand:wikipedia": "da:Jem & fix", "name": "jem & fix", "shop": "doityourself"}, "countryCodes": ["dk"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/Леруа Мерлен": {"name": "Леруа Мерлен", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/leroymerlin/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q889624"}, "addTags": {"brand": "Леруа Мерлен", "brand:en": "Leroy Merlin", "brand:wikidata": "Q889624", "brand:wikipedia": "en:Leroy Merlin", "name": "Леруа Мерлен", "name:en": "Leroy Merlin", "shop": "doityourself"}, "removeTags": {"brand": "Леруа Мерлен", "brand:en": "Leroy Merlin", "brand:wikidata": "Q889624", "brand:wikipedia": "en:Leroy Merlin", "name": "Леруа Мерлен", "name:en": "Leroy Merlin", "shop": "doityourself"}, "matchScore": 2, "suggestion": true}, "shop/doityourself/カインズホーム": {"name": "カインズホーム", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/cainzfun/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q11293852"}, "addTags": {"brand": "カインズホーム", "brand:en": "Cainz Home", "brand:ja": "カインズホーム", "brand:wikidata": "Q11293852", "brand:wikipedia": "ja:カインズ", "name": "カインズホーム", "name:en": "Cainz Home", "name:ja": "カインズホーム", "shop": "doityourself"}, "removeTags": {"brand": "カインズホーム", "brand:en": "Cainz Home", "brand:ja": "カインズホーム", "brand:wikidata": "Q11293852", "brand:wikipedia": "ja:カインズ", "name": "カインズホーム", "name:en": "Cainz Home", "name:ja": "カインズホーム", "shop": "doityourself"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/doityourself/コメリ": {"name": "コメリ", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKOMERI%20LOGO.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q11302690"}, "addTags": {"brand": "コメリ", "brand:ja": "コメリ", "brand:wikidata": "Q11302690", "brand:wikipedia": "ja:コメリ", "name": "コメリ", "name:en": "Komeri", "name:ja": "コメリ", "shop": "doityourself"}, "removeTags": {"brand": "コメリ", "brand:ja": "コメリ", "brand:wikidata": "Q11302690", "brand:wikipedia": "ja:コメリ", "name": "コメリ", "name:en": "Komeri", "name:ja": "コメリ", "shop": "doityourself"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/コーナン": {"name": "コーナン", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q11303403"}, "addTags": {"brand": "コーナン", "brand:ja": "コーナン", "brand:wikidata": "Q11303403", "brand:wikipedia": "ja:コーナン", "name": "コーナン", "name:en": "Kohnan", "name:ja": "コーナン", "shop": "doityourself"}, "removeTags": {"brand": "コーナン", "brand:ja": "コーナン", "brand:wikidata": "Q11303403", "brand:wikipedia": "ja:コーナン", "name": "コーナン", "name:en": "Kohnan", "name:ja": "コーナン", "shop": "doityourself"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/doityourself/コーナン": {"name": "コーナン", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/kohnan.official/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "doityourself", "brand:wikidata": "Q11303403"}, "addTags": {"brand": "コーナン", "brand:ja": "コーナン", "brand:wikidata": "Q11303403", "brand:wikipedia": "ja:コーナン", "name": "コーナン", "name:en": "Kohnan", "name:ja": "コーナン", "shop": "doityourself"}, "removeTags": {"brand": "コーナン", "brand:ja": "コーナン", "brand:wikidata": "Q11303403", "brand:wikipedia": "ja:コーナン", "name": "コーナン", "name:en": "Kohnan", "name:ja": "コーナン", "shop": "doityourself"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/dry_cleaning/Диана": {"name": "Диана", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/diana.dryclean/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "dry_cleaning", "brand:wikidata": "Q62105088"}, "addTags": {"brand": "Диана", "brand:wikidata": "Q62105088", "name": "Диана", "shop": "dry_cleaning"}, "removeTags": {"brand": "Диана", "brand:wikidata": "Q62105088", "name": "Диана", "shop": "dry_cleaning"}, "matchScore": 2, "suggestion": true}, "shop/dry_cleaning/ホワイト急便": {"name": "ホワイト急便", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "dry_cleaning", "brand:wikidata": "Q11505557"}, "addTags": {"brand": "ホワイト急便", "brand:en": "White Kyuubin", "brand:ja": "ホワイト急便", "brand:wikidata": "Q11505557", "brand:wikipedia": "ja:日本さわやかグループ", "name": "ホワイト急便", "name:en": "White Kyuubin", "name:ja": "ホワイト急便", "shop": "dry_cleaning"}, "removeTags": {"brand": "ホワイト急便", "brand:en": "White Kyuubin", "brand:ja": "ホワイト急便", "brand:wikidata": "Q11505557", "brand:wikipedia": "ja:日本さわやかグループ", "name": "ホワイト急便", "name:en": "White Kyuubin", "name:ja": "ホワイト急便", "shop": "dry_cleaning"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/dry_cleaning/白洋舎": {"name": "白洋舎", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "dry_cleaning", "brand:wikidata": "Q11579995"}, "addTags": {"brand": "白洋舎", "brand:en": "Hakuyosha", "brand:wikidata": "Q11579995", "brand:wikipedia": "ja:白洋舎", "name": "白洋舎", "name:en": "Hakuyosha", "shop": "dry_cleaning"}, "removeTags": {"brand": "白洋舎", "brand:en": "Hakuyosha", "brand:wikidata": "Q11579995", "brand:wikipedia": "ja:白洋舎", "name": "白洋舎", "name:en": "Hakuyosha", "shop": "dry_cleaning"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Apple Store": {"name": "Apple Store", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FApple%20Store.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q421253"}, "addTags": {"brand": "Apple Store", "brand:wikidata": "Q421253", "brand:wikipedia": "en:Apple Store", "name": "Apple Store", "shop": "electronics"}, "removeTags": {"brand": "Apple Store", "brand:wikidata": "Q421253", "brand:wikipedia": "en:Apple Store", "name": "Apple Store", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Batteries Plus Bulbs": {"name": "Batteries Plus Bulbs", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBatteries%20Plus%20Bulbs%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q17005157"}, "addTags": {"brand": "Batteries Plus Bulbs", "brand:wikidata": "Q17005157", "name": "Batteries Plus Bulbs", "shop": "electronics"}, "removeTags": {"brand": "Batteries Plus Bulbs", "brand:wikidata": "Q17005157", "name": "Batteries Plus Bulbs", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Best Buy": {"name": "Best Buy", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBest%20Buy%20logo%202018.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q533415"}, "addTags": {"brand": "Best Buy", "brand:wikidata": "Q533415", "brand:wikipedia": "en:Best Buy", "name": "Best Buy", "shop": "electronics"}, "removeTags": {"brand": "Best Buy", "brand:wikidata": "Q533415", "brand:wikipedia": "en:Best Buy", "name": "Best Buy", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Boulanger": {"name": "Boulanger", "icon": "fas-plug", "imageURL": "https://pbs.twimg.com/profile_images/995934742775255040/Golp0sMi_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q2921695"}, "addTags": {"brand": "Boulanger", "brand:wikidata": "Q2921695", "brand:wikipedia": "fr:Boulanger (entreprise)", "name": "Boulanger", "shop": "electronics"}, "removeTags": {"brand": "Boulanger", "brand:wikidata": "Q2921695", "brand:wikipedia": "fr:Boulanger (entreprise)", "name": "Boulanger", "shop": "electronics"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/electronics/CeX": {"name": "CeX", "icon": "fas-plug", "imageURL": "https://pbs.twimg.com/profile_images/919907430158479362/BEbGhbXs_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q5055676"}, "addTags": {"brand": "CeX", "brand:wikidata": "Q5055676", "brand:wikipedia": "en:CeX (company)", "name": "CeX", "shop": "electronics"}, "removeTags": {"brand": "CeX", "brand:wikidata": "Q5055676", "brand:wikipedia": "en:CeX (company)", "name": "CeX", "shop": "electronics"}, "countryCodes": ["au", "es", "gb", "ie", "in", "it", "mx", "nl", "pl", "pt"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Apple Store": {"name": "Apple Store", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/apple/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q421253"}, "addTags": {"brand": "Apple Store", "brand:wikidata": "Q421253", "brand:wikipedia": "en:Apple Store", "name": "Apple Store", "shop": "electronics"}, "removeTags": {"brand": "Apple Store", "brand:wikidata": "Q421253", "brand:wikipedia": "en:Apple Store", "name": "Apple Store", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Batteries Plus Bulbs": {"name": "Batteries Plus Bulbs", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/batterieprofessionnelcom-1734242166818176/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q17005157"}, "addTags": {"brand": "Batteries Plus Bulbs", "brand:wikidata": "Q17005157", "brand:wikipedia": "en:Batteries Plus Bulbs", "name": "Batteries Plus Bulbs", "shop": "electronics"}, "removeTags": {"brand": "Batteries Plus Bulbs", "brand:wikidata": "Q17005157", "brand:wikipedia": "en:Batteries Plus Bulbs", "name": "Batteries Plus Bulbs", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Best Buy": {"name": "Best Buy", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/bestbuy/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q533415"}, "addTags": {"brand": "Best Buy", "brand:wikidata": "Q533415", "brand:wikipedia": "en:Best Buy", "name": "Best Buy", "shop": "electronics"}, "removeTags": {"brand": "Best Buy", "brand:wikidata": "Q533415", "brand:wikipedia": "en:Best Buy", "name": "Best Buy", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Boulanger": {"name": "Boulanger", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/Boulanger.Electromenager.Multimedia/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q2921695"}, "addTags": {"brand": "Boulanger", "brand:wikidata": "Q2921695", "brand:wikipedia": "fr:Boulanger (entreprise)", "name": "Boulanger", "shop": "electronics"}, "removeTags": {"brand": "Boulanger", "brand:wikidata": "Q2921695", "brand:wikipedia": "fr:Boulanger (entreprise)", "name": "Boulanger", "shop": "electronics"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/electronics/CeX": {"name": "CeX", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/CeX/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q5055676"}, "addTags": {"brand": "CeX", "brand:wikidata": "Q5055676", "brand:wikipedia": "en:CeX (company)", "name": "CeX", "shop": "electronics"}, "removeTags": {"brand": "CeX", "brand:wikidata": "Q5055676", "brand:wikipedia": "en:CeX (company)", "name": "CeX", "shop": "electronics"}, "countryCodes": ["au", "es", "gb", "ie", "in", "it", "mx", "nl", "pl", "pt"], "matchScore": 2, "suggestion": true}, "shop/electronics/Currys": {"name": "Currys", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/curryspcworld/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3246464"}, "addTags": {"brand": "Currys", "brand:wikidata": "Q3246464", "brand:wikipedia": "en:Currys", "name": "Currys", "shop": "electronics"}, "removeTags": {"brand": "Currys", "brand:wikidata": "Q3246464", "brand:wikipedia": "en:Currys", "name": "Currys", "shop": "electronics"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Currys PC World": {"name": "Currys PC World", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q7118727"}, "addTags": {"brand": "Currys PC World", "brand:wikidata": "Q7118727", "brand:wikipedia": "en:PC World (retailer)", "name": "Currys PC World", "shop": "electronics"}, "removeTags": {"brand": "Currys PC World", "brand:wikidata": "Q7118727", "brand:wikipedia": "en:PC World (retailer)", "name": "Currys PC World", "shop": "electronics"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Darty": {"name": "Darty", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Fnac%20Darty.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3117381"}, "addTags": {"brand": "Darty", "brand:wikidata": "Q3117381", "brand:wikipedia": "en:Groupe Fnac Darty", "name": "Darty", "shop": "electronics"}, "removeTags": {"brand": "Darty", "brand:wikidata": "Q3117381", "brand:wikipedia": "en:Groupe Fnac Darty", "name": "Darty", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Elgiganten": {"name": "Elgiganten", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FElgiganten.PNG&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q17050121"}, "addTags": {"brand": "Elgiganten", "brand:wikidata": "Q17050121", "brand:wikipedia": "en:Elgiganten", "name": "Elgiganten", "shop": "electronics"}, "removeTags": {"brand": "Elgiganten", "brand:wikidata": "Q17050121", "brand:wikipedia": "en:Elgiganten", "name": "Elgiganten", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Currys PC World": {"name": "Currys PC World", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/curryspcworld/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q7118727"}, "addTags": {"brand": "Currys PC World", "brand:wikidata": "Q7118727", "brand:wikipedia": "en:PC World (retailer)", "name": "Currys PC World", "shop": "electronics"}, "removeTags": {"brand": "Currys PC World", "brand:wikidata": "Q7118727", "brand:wikipedia": "en:PC World (retailer)", "name": "Currys PC World", "shop": "electronics"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Darty": {"name": "Darty", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/darty/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3117381"}, "addTags": {"brand": "Darty", "brand:wikidata": "Q3117381", "brand:wikipedia": "en:Groupe Fnac Darty", "name": "Darty", "shop": "electronics"}, "removeTags": {"brand": "Darty", "brand:wikidata": "Q3117381", "brand:wikipedia": "en:Groupe Fnac Darty", "name": "Darty", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Elgiganten": {"name": "Elgiganten", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/elgiganten.dk/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q17050121"}, "addTags": {"brand": "Elgiganten", "brand:wikidata": "Q17050121", "brand:wikipedia": "en:Elgiganten", "name": "Elgiganten", "shop": "electronics"}, "removeTags": {"brand": "Elgiganten", "brand:wikidata": "Q17050121", "brand:wikipedia": "en:Elgiganten", "name": "Elgiganten", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, "shop/electronics/Euronics": {"name": "Euronics", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/EuronicsItalia/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q184860"}, "addTags": {"brand": "Euronics", "brand:wikidata": "Q184860", "brand:wikipedia": "en:Euronics", "name": "Euronics", "shop": "electronics"}, "removeTags": {"brand": "Euronics", "brand:wikidata": "Q184860", "brand:wikipedia": "en:Euronics", "name": "Euronics", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Expert": {"name": "Expert", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q680990"}, "addTags": {"brand": "Expert", "brand:wikidata": "Q680990", "brand:wikipedia": "en:Expert (company)", "name": "Expert", "shop": "electronics"}, "removeTags": {"brand": "Expert", "brand:wikidata": "Q680990", "brand:wikipedia": "en:Expert (company)", "name": "Expert", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Hartlauer": {"name": "Hartlauer", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q1587223"}, "addTags": {"brand": "Hartlauer", "brand:wikidata": "Q1587223", "brand:wikipedia": "de:Hartlauer", "name": "Hartlauer", "shop": "electronics"}, "removeTags": {"brand": "Hartlauer", "brand:wikidata": "Q1587223", "brand:wikipedia": "de:Hartlauer", "name": "Hartlauer", "shop": "electronics"}, "countryCodes": ["at"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Interdiscount": {"name": "Interdiscount", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Interdiscount.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q1665980"}, "addTags": {"brand": "Interdiscount", "brand:wikidata": "Q1665980", "brand:wikipedia": "de:Interdiscount", "name": "Interdiscount", "shop": "electronics"}, "removeTags": {"brand": "Interdiscount", "brand:wikidata": "Q1665980", "brand:wikipedia": "de:Interdiscount", "name": "Interdiscount", "shop": "electronics"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, - "shop/electronics/JB Hi-Fi": {"name": "JB Hi-Fi", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FJB%20Hi-Fi%20Wagga%20Wagga.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3310113"}, "addTags": {"brand": "JB Hi-Fi", "brand:wikidata": "Q3310113", "brand:wikipedia": "en:JB Hi-Fi", "name": "JB Hi-Fi", "shop": "electronics"}, "removeTags": {"brand": "JB Hi-Fi", "brand:wikidata": "Q3310113", "brand:wikipedia": "en:JB Hi-Fi", "name": "JB Hi-Fi", "shop": "electronics"}, "countryCodes": ["au", "nz"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Kjell & Company": {"name": "Kjell & Company", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6419332"}, "addTags": {"brand": "Kjell & Company", "brand:wikidata": "Q6419332", "brand:wikipedia": "en:Kjell & Company", "name": "Kjell & Company", "shop": "electronics"}, "removeTags": {"brand": "Kjell & Company", "brand:wikidata": "Q6419332", "brand:wikipedia": "en:Kjell & Company", "name": "Kjell & Company", "shop": "electronics"}, "countryCodes": ["no", "se"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Komputronik": {"name": "Komputronik", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11742085"}, "addTags": {"brand": "Komputronik", "brand:wikidata": "Q11742085", "brand:wikipedia": "pl:Komputronik", "name": "Komputronik", "shop": "electronics"}, "removeTags": {"brand": "Komputronik", "brand:wikidata": "Q11742085", "brand:wikipedia": "pl:Komputronik", "name": "Komputronik", "shop": "electronics"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/electronics/La Curacao": {"name": "La Curacao", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q5194599"}, "addTags": {"brand": "La Curacao", "brand:wikidata": "Q5194599", "brand:wikipedia": "en:Curacao (retail store)", "name": "La Curacao", "shop": "electronics"}, "removeTags": {"brand": "La Curacao", "brand:wikidata": "Q5194599", "brand:wikipedia": "en:Curacao (retail store)", "name": "La Curacao", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Maplin": {"name": "Maplin", "icon": "fas-plug", "imageURL": "https://pbs.twimg.com/profile_images/814044033483948032/IozUMsvp_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6754124"}, "addTags": {"brand": "Maplin", "brand:wikidata": "Q6754124", "brand:wikipedia": "en:Maplin (retailer)", "name": "Maplin", "shop": "electronics"}, "removeTags": {"brand": "Maplin", "brand:wikidata": "Q6754124", "brand:wikipedia": "en:Maplin (retailer)", "name": "Maplin", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Media Expert": {"name": "Media Expert", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11776794"}, "addTags": {"brand": "Media Expert", "brand:wikidata": "Q11776794", "brand:wikipedia": "pl:Media Expert", "name": "Media Expert", "shop": "electronics"}, "removeTags": {"brand": "Media Expert", "brand:wikidata": "Q11776794", "brand:wikipedia": "pl:Media Expert", "name": "Media Expert", "shop": "electronics"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Expert": {"name": "Expert", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/expert.de/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q680990"}, "addTags": {"brand": "Expert", "brand:wikidata": "Q680990", "brand:wikipedia": "en:Expert (company)", "name": "Expert", "shop": "electronics"}, "removeTags": {"brand": "Expert", "brand:wikidata": "Q680990", "brand:wikipedia": "en:Expert (company)", "name": "Expert", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Hartlauer": {"name": "Hartlauer", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/loewennews/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q1587223"}, "addTags": {"brand": "Hartlauer", "brand:wikidata": "Q1587223", "brand:wikipedia": "de:Hartlauer", "name": "Hartlauer", "shop": "electronics"}, "removeTags": {"brand": "Hartlauer", "brand:wikidata": "Q1587223", "brand:wikipedia": "de:Hartlauer", "name": "Hartlauer", "shop": "electronics"}, "countryCodes": ["at"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Interdiscount": {"name": "Interdiscount", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/interdiscount/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q1665980"}, "addTags": {"brand": "Interdiscount", "brand:wikidata": "Q1665980", "brand:wikipedia": "de:Interdiscount", "name": "Interdiscount", "shop": "electronics"}, "removeTags": {"brand": "Interdiscount", "brand:wikidata": "Q1665980", "brand:wikipedia": "de:Interdiscount", "name": "Interdiscount", "shop": "electronics"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, + "shop/electronics/JB Hi-Fi": {"name": "JB Hi-Fi", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/JBHiFi/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3310113"}, "addTags": {"brand": "JB Hi-Fi", "brand:wikidata": "Q3310113", "brand:wikipedia": "en:JB Hi-Fi", "name": "JB Hi-Fi", "shop": "electronics"}, "removeTags": {"brand": "JB Hi-Fi", "brand:wikidata": "Q3310113", "brand:wikipedia": "en:JB Hi-Fi", "name": "JB Hi-Fi", "shop": "electronics"}, "countryCodes": ["au", "nz"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Kjell & Company": {"name": "Kjell & Company", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/kjellcoSverige/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6419332"}, "addTags": {"brand": "Kjell & Company", "brand:wikidata": "Q6419332", "brand:wikipedia": "en:Kjell & Company", "name": "Kjell & Company", "shop": "electronics"}, "removeTags": {"brand": "Kjell & Company", "brand:wikidata": "Q6419332", "brand:wikipedia": "en:Kjell & Company", "name": "Kjell & Company", "shop": "electronics"}, "countryCodes": ["no", "se"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Komputronik": {"name": "Komputronik", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/komputronik/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11742085"}, "addTags": {"brand": "Komputronik", "brand:wikidata": "Q11742085", "brand:wikipedia": "pl:Komputronik", "name": "Komputronik", "shop": "electronics"}, "removeTags": {"brand": "Komputronik", "brand:wikidata": "Q11742085", "brand:wikipedia": "pl:Komputronik", "name": "Komputronik", "shop": "electronics"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/electronics/La Curacao": {"name": "La Curacao", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/CuracaoUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q5194599"}, "addTags": {"brand": "La Curacao", "brand:wikidata": "Q5194599", "brand:wikipedia": "en:Curacao (retail store)", "name": "La Curacao", "shop": "electronics"}, "removeTags": {"brand": "La Curacao", "brand:wikidata": "Q5194599", "brand:wikipedia": "en:Curacao (retail store)", "name": "La Curacao", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Maplin": {"name": "Maplin", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/Maplin/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6754124"}, "addTags": {"brand": "Maplin", "brand:wikidata": "Q6754124", "brand:wikipedia": "en:Maplin (retailer)", "name": "Maplin", "shop": "electronics"}, "removeTags": {"brand": "Maplin", "brand:wikidata": "Q6754124", "brand:wikipedia": "en:Maplin (retailer)", "name": "Maplin", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Media Expert": {"name": "Media Expert", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/mediaexpert/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11776794"}, "addTags": {"brand": "Media Expert", "brand:wikidata": "Q11776794", "brand:wikipedia": "pl:Media Expert", "name": "Media Expert", "shop": "electronics"}, "removeTags": {"brand": "Media Expert", "brand:wikidata": "Q11776794", "brand:wikipedia": "pl:Media Expert", "name": "Media Expert", "shop": "electronics"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "shop/electronics/Media Markt": {"name": "Media Markt", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/mediamarkt/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q2381223"}, "addTags": {"brand": "Media Markt", "brand:wikidata": "Q2381223", "brand:wikipedia": "en:Media Markt", "name": "Media Markt", "shop": "electronics"}, "removeTags": {"brand": "Media Markt", "brand:wikidata": "Q2381223", "brand:wikipedia": "en:Media Markt", "name": "Media Markt", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Musimundo": {"name": "Musimundo", "icon": "fas-plug", "imageURL": "https://pbs.twimg.com/profile_images/1098565316609748992/J7JMYhTN_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6034719"}, "addTags": {"brand": "Musimundo", "brand:wikidata": "Q6034719", "brand:wikipedia": "es:Musimundo", "name": "Musimundo", "shop": "electronics"}, "removeTags": {"brand": "Musimundo", "brand:wikidata": "Q6034719", "brand:wikipedia": "es:Musimundo", "name": "Musimundo", "shop": "electronics"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Neonet": {"name": "Neonet", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11790622"}, "addTags": {"brand": "Neonet", "brand:wikidata": "Q11790622", "brand:wikipedia": "pl:Neonet", "name": "Neonet", "shop": "electronics"}, "removeTags": {"brand": "Neonet", "brand:wikidata": "Q11790622", "brand:wikipedia": "pl:Neonet", "name": "Neonet", "shop": "electronics"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Musimundo": {"name": "Musimundo", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/musimundo/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6034719"}, "addTags": {"brand": "Musimundo", "brand:wikidata": "Q6034719", "brand:wikipedia": "es:Musimundo", "name": "Musimundo", "shop": "electronics"}, "removeTags": {"brand": "Musimundo", "brand:wikidata": "Q6034719", "brand:wikipedia": "es:Musimundo", "name": "Musimundo", "shop": "electronics"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Neonet": {"name": "Neonet", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/Neonetpl/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11790622"}, "addTags": {"brand": "Neonet", "brand:wikidata": "Q11790622", "brand:wikipedia": "pl:Neonet", "name": "Neonet", "shop": "electronics"}, "removeTags": {"brand": "Neonet", "brand:wikidata": "Q11790622", "brand:wikipedia": "pl:Neonet", "name": "Neonet", "shop": "electronics"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "shop/electronics/RTV Euro AGD": {"name": "RTV Euro AGD", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/rtveuroagd/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q7277895"}, "addTags": {"brand": "RTV Euro AGD", "brand:wikidata": "Q7277895", "brand:wikipedia": "pl:RTV Euro AGD", "name": "RTV Euro AGD", "shop": "electronics"}, "removeTags": {"brand": "RTV Euro AGD", "brand:wikidata": "Q7277895", "brand:wikipedia": "pl:RTV Euro AGD", "name": "RTV Euro AGD", "shop": "electronics"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/electronics/RadioShack": {"name": "RadioShack", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRadioShack%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q1195490"}, "addTags": {"brand": "RadioShack", "brand:wikidata": "Q1195490", "brand:wikipedia": "en:RadioShack", "name": "RadioShack", "shop": "electronics"}, "removeTags": {"brand": "RadioShack", "brand:wikidata": "Q1195490", "brand:wikipedia": "en:RadioShack", "name": "RadioShack", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/RadioShack": {"name": "RadioShack", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/RadioShack/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q1195490"}, "addTags": {"brand": "RadioShack", "brand:wikidata": "Q1195490", "brand:wikipedia": "en:RadioShack", "name": "RadioShack", "shop": "electronics"}, "removeTags": {"brand": "RadioShack", "brand:wikidata": "Q1195490", "brand:wikipedia": "en:RadioShack", "name": "RadioShack", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, "shop/electronics/Samsung": {"name": "Samsung", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/SamsungNewsroom/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q20718"}, "addTags": {"brand": "Samsung", "brand:wikidata": "Q20718", "brand:wikipedia": "en:Samsung Electronics", "name": "Samsung", "shop": "electronics"}, "removeTags": {"brand": "Samsung", "brand:wikidata": "Q20718", "brand:wikipedia": "en:Samsung Electronics", "name": "Samsung", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, "shop/electronics/Saturn": {"name": "Saturn", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/SaturnDE/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q2543504"}, "addTags": {"brand": "Saturn", "brand:wikidata": "Q2543504", "brand:wikipedia": "en:Saturn (retailer)", "name": "Saturn", "shop": "electronics"}, "removeTags": {"brand": "Saturn", "brand:wikidata": "Q2543504", "brand:wikipedia": "en:Saturn (retailer)", "name": "Saturn", "shop": "electronics"}, "countryCodes": ["at", "de", "lu", "pl"], "matchScore": 2, "suggestion": true}, "shop/electronics/Sony": {"name": "Sony", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/sony.jpn/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q41187"}, "addTags": {"brand": "Sony", "brand:wikidata": "Q41187", "brand:wikipedia": "en:Sony", "name": "Sony", "shop": "electronics"}, "removeTags": {"brand": "Sony", "brand:wikidata": "Q41187", "brand:wikipedia": "en:Sony", "name": "Sony", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, - "shop/electronics/Teknikmagasinet": {"name": "Teknikmagasinet", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3357520"}, "addTags": {"brand": "Teknikmagasinet", "brand:wikidata": "Q3357520", "brand:wikipedia": "en:Teknikmagasinet", "name": "Teknikmagasinet", "shop": "electronics"}, "removeTags": {"brand": "Teknikmagasinet", "brand:wikidata": "Q3357520", "brand:wikipedia": "en:Teknikmagasinet", "name": "Teknikmagasinet", "shop": "electronics"}, "countryCodes": ["fi", "no", "se"], "matchScore": 2, "suggestion": true}, - "shop/electronics/The Source": {"name": "The Source", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FThe%20Source%20logo%20en-fr.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3212934"}, "addTags": {"brand": "The Source", "brand:wikidata": "Q3212934", "brand:wikipedia": "en:The Source (retailer)", "name": "The Source", "shop": "electronics"}, "removeTags": {"brand": "The Source", "brand:wikidata": "Q3212934", "brand:wikipedia": "en:The Source (retailer)", "name": "The Source", "shop": "electronics"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Unieuro": {"name": "Unieuro", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q4004687"}, "addTags": {"brand": "Unieuro", "brand:wikidata": "Q4004687", "brand:wikipedia": "en:Unieuro", "name": "Unieuro", "shop": "electronics"}, "removeTags": {"brand": "Unieuro", "brand:wikidata": "Q4004687", "brand:wikipedia": "en:Unieuro", "name": "Unieuro", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, + "shop/electronics/Teknikmagasinet": {"name": "Teknikmagasinet", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/TeknikmagasinetNorge/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3357520"}, "addTags": {"brand": "Teknikmagasinet", "brand:wikidata": "Q3357520", "brand:wikipedia": "en:Teknikmagasinet", "name": "Teknikmagasinet", "shop": "electronics"}, "removeTags": {"brand": "Teknikmagasinet", "brand:wikidata": "Q3357520", "brand:wikipedia": "en:Teknikmagasinet", "name": "Teknikmagasinet", "shop": "electronics"}, "countryCodes": ["fi", "no", "se"], "matchScore": 2, "suggestion": true}, + "shop/electronics/The Source": {"name": "The Source", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/thesourcecanada/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q3212934"}, "addTags": {"brand": "The Source", "brand:wikidata": "Q3212934", "brand:wikipedia": "en:The Source (retailer)", "name": "The Source", "shop": "electronics"}, "removeTags": {"brand": "The Source", "brand:wikidata": "Q3212934", "brand:wikipedia": "en:The Source (retailer)", "name": "The Source", "shop": "electronics"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Unieuro": {"name": "Unieuro", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/unieuro/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q4004687"}, "addTags": {"brand": "Unieuro", "brand:wikidata": "Q4004687", "brand:wikipedia": "en:Unieuro", "name": "Unieuro", "shop": "electronics"}, "removeTags": {"brand": "Unieuro", "brand:wikidata": "Q4004687", "brand:wikipedia": "en:Unieuro", "name": "Unieuro", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, "shop/electronics/Worten": {"name": "Worten", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/WortenES/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q10394039"}, "addTags": {"brand": "Worten", "brand:wikidata": "Q10394039", "brand:wikipedia": "pt:Worten", "name": "Worten", "shop": "electronics"}, "removeTags": {"brand": "Worten", "brand:wikidata": "Q10394039", "brand:wikipedia": "pt:Worten", "name": "Worten", "shop": "electronics"}, "countryCodes": ["es", "pt"], "matchScore": 2, "suggestion": true}, - "shop/electronics/М.Видео": {"name": "М.Видео", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMvideo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6558800"}, "addTags": {"brand": "М.Видео", "brand:en": "M.video", "brand:wikidata": "Q6558800", "brand:wikipedia": "en:M.video", "name": "М.Видео", "name:en": "M.video", "shop": "electronics"}, "removeTags": {"brand": "М.Видео", "brand:en": "M.video", "brand:wikidata": "Q6558800", "brand:wikipedia": "en:M.video", "name": "М.Видео", "name:en": "M.video", "shop": "electronics"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Фокстрот": {"name": "Фокстрот", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q16721578"}, "addTags": {"brand": "Фокстрот", "brand:wikidata": "Q16721578", "brand:wikipedia": "uk:Фокстрот (торгова мережа)", "name": "Фокстрот", "shop": "electronics"}, "removeTags": {"brand": "Фокстрот", "brand:wikidata": "Q16721578", "brand:wikipedia": "uk:Фокстрот (торгова мережа)", "name": "Фокстрот", "shop": "electronics"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, + "shop/electronics/М.Видео": {"name": "М.Видео", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/mvideo.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6558800"}, "addTags": {"brand": "М.Видео", "brand:en": "M.video", "brand:wikidata": "Q6558800", "brand:wikipedia": "en:M.video", "name": "М.Видео", "name:en": "M.video", "shop": "electronics"}, "removeTags": {"brand": "М.Видео", "brand:en": "M.video", "brand:wikidata": "Q6558800", "brand:wikipedia": "en:M.video", "name": "М.Видео", "name:en": "M.video", "shop": "electronics"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/electronics/Фокстрот": {"name": "Фокстрот", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/foxtrotinfo/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q16721578"}, "addTags": {"brand": "Фокстрот", "brand:wikidata": "Q16721578", "brand:wikipedia": "uk:Фокстрот (торгова мережа)", "name": "Фокстрот", "shop": "electronics"}, "removeTags": {"brand": "Фокстрот", "brand:wikidata": "Q16721578", "brand:wikipedia": "uk:Фокстрот (торгова мережа)", "name": "Фокстрот", "shop": "electronics"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, "shop/electronics/Эльдорадо": {"name": "Эльдорадо", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/Eldorado.Stores/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q4531492"}, "addTags": {"brand": "Эльдорадо", "brand:wikidata": "Q4531492", "brand:wikipedia": "ru:Эльдорадо (сеть магазинов)", "name": "Эльдорадо", "shop": "electronics"}, "removeTags": {"brand": "Эльдорадо", "brand:wikidata": "Q4531492", "brand:wikipedia": "ru:Эльдорадо (сеть магазинов)", "name": "Эльдорадо", "shop": "electronics"}, "matchScore": 2, "suggestion": true}, "shop/electronics/エディオン": {"name": "エディオン", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/edion.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11290252"}, "addTags": {"brand": "エディオン", "brand:en": "EDION", "brand:ja": "エディオン", "brand:wikidata": "Q11290252", "brand:wikipedia": "ja:エディオン", "name": "エディオン", "name:en": "EDION", "name:ja": "エディオン", "shop": "electronics"}, "removeTags": {"brand": "エディオン", "brand:en": "EDION", "brand:ja": "エディオン", "brand:wikidata": "Q11290252", "brand:wikipedia": "ja:エディオン", "name": "エディオン", "name:en": "EDION", "name:ja": "エディオン", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/electronics/ケーズデンキ": {"name": "ケーズデンキ", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q6322472"}, "addTags": {"brand": "ケーズデンキ", "brand:en": "K's Denki", "brand:ja": "ケーズデンキ", "brand:wikidata": "Q6322472", "brand:wikipedia": "ja:ケーズホールディングス", "name": "ケーズデンキ", "name:en": "K's Denki", "name:ja": "ケーズデンキ", "shop": "electronics"}, "removeTags": {"brand": "ケーズデンキ", "brand:en": "K's Denki", "brand:ja": "ケーズデンキ", "brand:wikidata": "Q6322472", "brand:wikipedia": "ja:ケーズホールディングス", "name": "ケーズデンキ", "name:en": "K's Denki", "name:ja": "ケーズデンキ", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/electronics/コジマ": {"name": "コジマ", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/kojima.official/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11302052"}, "addTags": {"brand": "コジマ", "brand:en": "Kojima", "brand:ja": "コジマ", "brand:wikidata": "Q11302052", "brand:wikipedia": "ja:コジマ", "name": "コジマ", "name:en": "Kojima", "name:ja": "コジマ", "shop": "electronics"}, "removeTags": {"brand": "コジマ", "brand:en": "Kojima", "brand:ja": "コジマ", "brand:wikidata": "Q11302052", "brand:wikipedia": "ja:コジマ", "name": "コジマ", "name:en": "Kojima", "name:ja": "コジマ", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/electronics/ソフマップ": {"name": "ソフマップ", "icon": "fas-plug", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSofmap%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q7553789"}, "addTags": {"brand": "ソフマップ", "brand:en": "Sofmap", "brand:wikidata": "Q7553789", "brand:wikipedia": "ja:ソフマップ", "name": "ソフマップ", "name:en": "Sofmap", "shop": "electronics"}, "removeTags": {"brand": "ソフマップ", "brand:en": "Sofmap", "brand:wikidata": "Q7553789", "brand:wikipedia": "ja:ソフマップ", "name": "ソフマップ", "name:en": "Sofmap", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/electronics/ビックカメラ": {"name": "ビックカメラ", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/biccamera.page/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q4903531"}, "addTags": {"brand": "ビックカメラ", "brand:en": "Bic Camera", "brand:wikidata": "Q4903531", "brand:wikipedia": "ja:ビックカメラ", "name": "ビックカメラ", "name:en": "Bic Camera", "shop": "electronics"}, "removeTags": {"brand": "ビックカメラ", "brand:en": "Bic Camera", "brand:wikidata": "Q4903531", "brand:wikipedia": "ja:ビックカメラ", "name": "ビックカメラ", "name:en": "Bic Camera", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/electronics/ソフマップ": {"name": "ソフマップ", "icon": "fas-plug", "imageURL": "https://pbs.twimg.com/profile_images/1073173217404043266/fIyrfOW-_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q7553789"}, "addTags": {"brand": "ソフマップ", "brand:en": "Sofmap", "brand:ja": "ソフマップ", "brand:wikidata": "Q7553789", "brand:wikipedia": "ja:ソフマップ", "name": "ソフマップ", "name:en": "Sofmap", "name:ja": "ソフマップ", "shop": "electronics"}, "removeTags": {"brand": "ソフマップ", "brand:en": "Sofmap", "brand:ja": "ソフマップ", "brand:wikidata": "Q7553789", "brand:wikipedia": "ja:ソフマップ", "name": "ソフマップ", "name:en": "Sofmap", "name:ja": "ソフマップ", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/electronics/ビックカメラ": {"name": "ビックカメラ", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/biccamera.page/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q4903531"}, "addTags": {"brand": "ビックカメラ", "brand:en": "Bic Camera", "brand:ja": "ビックカメラ", "brand:wikidata": "Q4903531", "brand:wikipedia": "ja:ビックカメラ", "name": "ビックカメラ", "name:en": "Bic Camera", "name:ja": "ビックカメラ", "shop": "electronics"}, "removeTags": {"brand": "ビックカメラ", "brand:en": "Bic Camera", "brand:ja": "ビックカメラ", "brand:wikidata": "Q4903531", "brand:wikipedia": "ja:ビックカメラ", "name": "ビックカメラ", "name:en": "Bic Camera", "name:ja": "ビックカメラ", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/electronics/ヤマダ電機": {"name": "ヤマダ電機", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q1096390"}, "addTags": {"brand": "ヤマダ電機", "brand:en": "Yamada Denki", "brand:ja": "ヤマダ電機", "brand:wikidata": "Q1096390", "brand:wikipedia": "en:Yamada Denki", "name": "ヤマダ電機", "name:en": "Yamada Denki", "name:ja": "ヤマダ電機", "shop": "electronics"}, "removeTags": {"brand": "ヤマダ電機", "brand:en": "Yamada Denki", "brand:ja": "ヤマダ電機", "brand:wikidata": "Q1096390", "brand:wikipedia": "en:Yamada Denki", "name": "ヤマダ電機", "name:en": "Yamada Denki", "name:ja": "ヤマダ電機", "shop": "electronics"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/electronics/全國電子": {"name": "全國電子", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q10891540"}, "addTags": {"brand": "全國電子", "brand:en": "E-life Mall", "brand:wikidata": "Q10891540", "brand:wikipedia": "zh:全國電子", "name": "全國電子", "name:en": "E-life Mall", "shop": "electronics"}, "removeTags": {"brand": "全國電子", "brand:en": "E-life Mall", "brand:wikidata": "Q10891540", "brand:wikipedia": "zh:全國電子", "name": "全國電子", "name:en": "E-life Mall", "shop": "electronics"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, + "shop/electronics/全國電子": {"name": "全國電子", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/elifemall.com.tw/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q10891540"}, "addTags": {"brand": "全國電子", "brand:en": "E-life Mall", "brand:wikidata": "Q10891540", "brand:wikipedia": "zh:全國電子", "name": "全國電子", "name:en": "E-life Mall", "shop": "electronics"}, "removeTags": {"brand": "全國電子", "brand:en": "E-life Mall", "brand:wikidata": "Q10891540", "brand:wikipedia": "zh:全國電子", "name": "全國電子", "name:en": "E-life Mall", "shop": "electronics"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "shop/electronics/燦坤3C": {"name": "燦坤3C", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11569285"}, "addTags": {"brand": "燦坤3C", "brand:en": "Tsannkuen 3C", "brand:wikidata": "Q11569285", "brand:wikipedia": "zh:燦坤", "name": "燦坤3C", "name:en": "Tsannkuen 3C", "shop": "electronics"}, "removeTags": {"brand": "燦坤3C", "brand:en": "Tsannkuen 3C", "brand:wikidata": "Q11569285", "brand:wikipedia": "zh:燦坤", "name": "燦坤3C", "name:en": "Tsannkuen 3C", "shop": "electronics"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, + "shop/erotic/Ann Summers": {"name": "Ann Summers", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1104069397008789504/jN1FCnL5_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "erotic", "brand:wikidata": "Q579524"}, "addTags": {"brand": "Ann Summers", "brand:wikidata": "Q579524", "brand:wikipedia": "en:Ann Summers", "name": "Ann Summers", "shop": "erotic"}, "removeTags": {"brand": "Ann Summers", "brand:wikidata": "Q579524", "brand:wikipedia": "en:Ann Summers", "name": "Ann Summers", "shop": "erotic"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, "shop/erotic/Orion": {"name": "Orion", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FNoimage%20pr.gif&width=100", "geometry": ["point", "area"], "tags": {"shop": "erotic", "brand:wikidata": "Q1609577"}, "addTags": {"brand": "Orion", "brand:wikidata": "Q1609577", "brand:wikipedia": "de:Orion (Erotik)", "name": "Orion", "shop": "erotic"}, "removeTags": {"brand": "Orion", "brand:wikidata": "Q1609577", "brand:wikipedia": "de:Orion (Erotik)", "name": "Orion", "shop": "erotic"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, - "shop/fabric/Mondial Tissus": {"name": "Mondial Tissus", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "fabric", "brand:wikidata": "Q17635288"}, "addTags": {"brand": "Mondial Tissus", "brand:wikidata": "Q17635288", "brand:wikipedia": "fr:Mondial Tissus", "name": "Mondial Tissus", "shop": "fabric"}, "removeTags": {"brand": "Mondial Tissus", "brand:wikidata": "Q17635288", "brand:wikipedia": "fr:Mondial Tissus", "name": "Mondial Tissus", "shop": "fabric"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/fabric/Mondial Tissus": {"name": "Mondial Tissus", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/MondialTissus/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "fabric", "brand:wikidata": "Q17635288"}, "addTags": {"brand": "Mondial Tissus", "brand:wikidata": "Q17635288", "brand:wikipedia": "fr:Mondial Tissus", "name": "Mondial Tissus", "shop": "fabric"}, "removeTags": {"brand": "Mondial Tissus", "brand:wikidata": "Q17635288", "brand:wikipedia": "fr:Mondial Tissus", "name": "Mondial Tissus", "shop": "fabric"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/florist/Blume 2000": {"name": "Blume 2000", "icon": "maki-florist", "imageURL": "https://graph.facebook.com/Blume2000.de/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "florist", "brand:wikidata": "Q886166"}, "addTags": {"brand": "Blume 2000", "brand:wikidata": "Q886166", "brand:wikipedia": "de:Blume 2000", "name": "Blume 2000", "shop": "florist"}, "removeTags": {"brand": "Blume 2000", "brand:wikidata": "Q886166", "brand:wikipedia": "de:Blume 2000", "name": "Blume 2000", "shop": "florist"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/florist/Blumen Risse": {"name": "Blumen Risse", "icon": "maki-florist", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Blumen%20Risse.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "florist", "brand:wikidata": "Q886177"}, "addTags": {"brand": "Blumen Risse", "brand:wikidata": "Q886177", "brand:wikipedia": "de:Blumen Risse", "name": "Blumen Risse", "shop": "florist"}, "removeTags": {"brand": "Blumen Risse", "brand:wikidata": "Q886177", "brand:wikipedia": "de:Blumen Risse", "name": "Blumen Risse", "shop": "florist"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/florist/Interflora": {"name": "Interflora", "icon": "maki-florist", "imageURL": "https://graph.facebook.com/interfloraes/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "florist", "brand:wikidata": "Q692179"}, "addTags": {"brand": "Interflora", "brand:wikidata": "Q692179", "brand:wikipedia": "en:Interflora", "name": "Interflora", "shop": "florist"}, "removeTags": {"brand": "Interflora", "brand:wikidata": "Q692179", "brand:wikipedia": "en:Interflora", "name": "Interflora", "shop": "florist"}, "matchScore": 2, "suggestion": true}, + "shop/florist/Interflora": {"name": "Interflora", "icon": "maki-florist", "imageURL": "https://graph.facebook.com/Interflora.France/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "florist", "brand:wikidata": "Q692179"}, "addTags": {"brand": "Interflora", "brand:wikidata": "Q692179", "brand:wikipedia": "en:Interflora", "name": "Interflora", "shop": "florist"}, "removeTags": {"brand": "Interflora", "brand:wikidata": "Q692179", "brand:wikipedia": "en:Interflora", "name": "Interflora", "shop": "florist"}, "matchScore": 2, "suggestion": true}, "shop/florist/Monceau Fleurs": {"name": "Monceau Fleurs", "icon": "maki-florist", "geometry": ["point", "area"], "tags": {"shop": "florist", "brand:wikidata": "Q17629431"}, "addTags": {"brand": "Monceau Fleurs", "brand:wikidata": "Q17629431", "brand:wikipedia": "fr:Emova Group", "name": "Monceau Fleurs", "shop": "florist"}, "removeTags": {"brand": "Monceau Fleurs", "brand:wikidata": "Q17629431", "brand:wikipedia": "fr:Emova Group", "name": "Monceau Fleurs", "shop": "florist"}, "matchScore": 2, "suggestion": true}, "shop/frozen_food/Picard": {"name": "Picard", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/picardsurgeles/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "frozen_food", "brand:wikidata": "Q3382454"}, "addTags": {"brand": "Picard", "brand:wikidata": "Q3382454", "brand:wikipedia": "en:Picard Surgelés", "name": "Picard", "shop": "frozen_food"}, "removeTags": {"brand": "Picard", "brand:wikidata": "Q3382454", "brand:wikipedia": "en:Picard Surgelés", "name": "Picard", "shop": "frozen_food"}, "matchScore": 2, "suggestion": true}, + "shop/funeral_directors/PFG": {"name": "PFG", "icon": "maki-cemetery", "geometry": ["point", "area"], "tags": {"shop": "funeral_directors", "brand:wikidata": "Q3396087"}, "addTags": {"brand": "PFG", "brand:wikidata": "Q3396087", "brand:wikipedia": "fr:Pompes funèbres générales", "name": "PFG", "official_name": "Pompes Funèbres Générales", "shop": "funeral_directors"}, "removeTags": {"brand": "PFG", "brand:wikidata": "Q3396087", "brand:wikipedia": "fr:Pompes funèbres générales", "name": "PFG", "official_name": "Pompes Funèbres Générales", "shop": "funeral_directors"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/funeral_directors/Roc-Eclerc": {"name": "Roc-Eclerc", "icon": "maki-cemetery", "imageURL": "https://graph.facebook.com/grouperoceclerc/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "funeral_directors", "brand:wikidata": "Q62558102"}, "addTags": {"brand": "Roc-Eclerc", "brand:wikidata": "Q62558102", "name": "Roc-Eclerc", "shop": "funeral_directors"}, "removeTags": {"brand": "Roc-Eclerc", "brand:wikidata": "Q62558102", "name": "Roc-Eclerc", "shop": "funeral_directors"}, "matchScore": 2, "suggestion": true}, "shop/funeral_directors/The Co-operative Funeralcare": {"name": "The Co-operative Funeralcare", "icon": "maki-cemetery", "imageURL": "https://pbs.twimg.com/profile_images/1034361261193134080/1PfqKyVV_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "funeral_directors", "brand:wikidata": "Q7726521"}, "addTags": {"brand": "The Co-operative Funeralcare", "brand:wikidata": "Q7726521", "brand:wikipedia": "en:Co-op Funeralcare", "name": "The Co-operative Funeralcare", "shop": "funeral_directors"}, "removeTags": {"brand": "The Co-operative Funeralcare", "brand:wikidata": "Q7726521", "brand:wikipedia": "en:Co-op Funeralcare", "name": "The Co-operative Funeralcare", "shop": "funeral_directors"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/furniture/Aaron's": {"name": "Aaron's", "icon": "fas-couch", "imageURL": "https://pbs.twimg.com/profile_images/1102999101665406977/a0ukKtqR_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q10397787"}, "addTags": {"brand": "Aaron's", "brand:wikidata": "Q10397787", "brand:wikipedia": "en:Aaron's, Inc.", "name": "Aaron's", "shop": "furniture"}, "removeTags": {"brand": "Aaron's", "brand:wikidata": "Q10397787", "brand:wikipedia": "en:Aaron's, Inc.", "name": "Aaron's", "shop": "furniture"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, + "shop/furniture/Aaron's": {"name": "Aaron's", "icon": "fas-couch", "imageURL": "https://pbs.twimg.com/profile_images/1112819902178582528/GeuCBPI0_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q10397787"}, "addTags": {"brand": "Aaron's", "brand:wikidata": "Q10397787", "brand:wikipedia": "en:Aaron's, Inc.", "name": "Aaron's", "shop": "furniture"}, "removeTags": {"brand": "Aaron's", "brand:wikidata": "Q10397787", "brand:wikipedia": "en:Aaron's, Inc.", "name": "Aaron's", "shop": "furniture"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, "shop/furniture/Ashley HomeStore": {"name": "Ashley HomeStore", "icon": "fas-couch", "imageURL": "https://pbs.twimg.com/profile_images/793453568288325636/UiWzv4oc_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q4805437"}, "addTags": {"brand": "Ashley HomeStore", "brand:wikidata": "Q4805437", "brand:wikipedia": "en:Ashley HomeStore", "name": "Ashley Furniture", "shop": "furniture"}, "removeTags": {"brand": "Ashley HomeStore", "brand:wikidata": "Q4805437", "brand:wikipedia": "en:Ashley HomeStore", "name": "Ashley Furniture", "shop": "furniture"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, "shop/furniture/Black Red White": {"name": "Black Red White", "icon": "fas-couch", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q4921546"}, "addTags": {"brand": "Black Red White", "brand:wikidata": "Q4921546", "brand:wikipedia": "en:Black Red White", "name": "Black Red White", "shop": "furniture"}, "removeTags": {"brand": "Black Red White", "brand:wikidata": "Q4921546", "brand:wikipedia": "en:Black Red White", "name": "Black Red White", "shop": "furniture"}, "matchScore": 2, "suggestion": true}, "shop/furniture/BoConcept": {"name": "BoConcept", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/boconceptusa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q11338915"}, "addTags": {"brand": "BoConcept", "brand:wikidata": "Q11338915", "brand:wikipedia": "en:BoConcept", "name": "BoConcept", "shop": "furniture"}, "removeTags": {"brand": "BoConcept", "brand:wikidata": "Q11338915", "brand:wikipedia": "en:BoConcept", "name": "BoConcept", "shop": "furniture"}, "matchScore": 2, "suggestion": true}, @@ -3186,183 +3330,214 @@ "shop/furniture/IKEA": {"name": "IKEA", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/IKEA/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q54078"}, "addTags": {"brand": "IKEA", "brand:wikidata": "Q54078", "brand:wikipedia": "en:IKEA", "name": "IKEA", "shop": "furniture"}, "removeTags": {"brand": "IKEA", "brand:wikidata": "Q54078", "brand:wikipedia": "en:IKEA", "name": "IKEA", "shop": "furniture"}, "matchScore": 2, "suggestion": true}, "shop/furniture/JYSK": {"name": "JYSK", "icon": "fas-couch", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLOGO%20JYSK.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q138913"}, "addTags": {"brand": "JYSK", "brand:wikidata": "Q138913", "brand:wikipedia": "en:Jysk (store)", "name": "JYSK", "shop": "furniture"}, "removeTags": {"brand": "JYSK", "brand:wikidata": "Q138913", "brand:wikipedia": "en:Jysk (store)", "name": "JYSK", "shop": "furniture"}, "matchScore": 2, "suggestion": true}, "shop/furniture/La-Z-Boy": {"name": "La-Z-Boy", "icon": "fas-couch", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLa-Z-Boy%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q6391583"}, "addTags": {"brand": "La-Z-Boy", "brand:wikidata": "Q6391583", "brand:wikipedia": "en:La-Z-Boy", "name": "La-Z-Boy", "shop": "furniture"}, "removeTags": {"brand": "La-Z-Boy", "brand:wikidata": "Q6391583", "brand:wikipedia": "en:La-Z-Boy", "name": "La-Z-Boy", "shop": "furniture"}, "matchScore": 2, "suggestion": true}, - "shop/furniture/Pottery Barn": {"name": "Pottery Barn", "icon": "fas-couch", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q3400126"}, "addTags": {"brand": "Pottery Barn", "brand:wikidata": "Q3400126", "brand:wikipedia": "en:Pottery Barn", "name": "Pottery Barn", "shop": "furniture"}, "removeTags": {"brand": "Pottery Barn", "brand:wikidata": "Q3400126", "brand:wikipedia": "en:Pottery Barn", "name": "Pottery Barn", "shop": "furniture"}, "countryCodes": ["ca", "mx", "uk", "us"], "matchScore": 2, "suggestion": true}, + "shop/furniture/Pottery Barn": {"name": "Pottery Barn", "icon": "fas-couch", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q3400126"}, "addTags": {"brand": "Pottery Barn", "brand:wikidata": "Q3400126", "brand:wikipedia": "en:Pottery Barn", "name": "Pottery Barn", "shop": "furniture"}, "removeTags": {"brand": "Pottery Barn", "brand:wikidata": "Q3400126", "brand:wikipedia": "en:Pottery Barn", "name": "Pottery Barn", "shop": "furniture"}, "countryCodes": ["au", "ca", "mx", "ph", "us"], "matchScore": 2, "suggestion": true}, "shop/furniture/Raymour & Flanigan": {"name": "Raymour & Flanigan", "icon": "fas-couch", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRaymour%20%26%20Flanigan%20logo%202018.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q7299290"}, "addTags": {"brand": "Raymour & Flanigan", "brand:wikidata": "Q7299290", "brand:wikipedia": "en:Raymour & Flanigan", "name": "Raymour & Flanigan", "shop": "furniture"}, "removeTags": {"brand": "Raymour & Flanigan", "brand:wikidata": "Q7299290", "brand:wikipedia": "en:Raymour & Flanigan", "name": "Raymour & Flanigan", "shop": "furniture"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/furniture/Rent-A-Center": {"name": "Rent-A-Center", "icon": "fas-couch", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q7313497"}, "addTags": {"brand": "Rent-A-Center", "brand:wikidata": "Q7313497", "brand:wikipedia": "en:Rent-A-Center", "name": "Rent-A-Center", "shop": "furniture"}, "removeTags": {"brand": "Rent-A-Center", "brand:wikidata": "Q7313497", "brand:wikipedia": "en:Rent-A-Center", "name": "Rent-A-Center", "shop": "furniture"}, "matchScore": 2, "suggestion": true}, "shop/furniture/Restoration Hardware": {"name": "Restoration Hardware", "icon": "fas-couch", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20RH.gif&width=100", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q7316207"}, "addTags": {"brand": "Restoration Hardware", "brand:wikidata": "Q7316207", "brand:wikipedia": "en:Restoration Hardware", "name": "Restoration Hardware", "shop": "furniture"}, "removeTags": {"brand": "Restoration Hardware", "brand:wikidata": "Q7316207", "brand:wikipedia": "en:Restoration Hardware", "name": "Restoration Hardware", "shop": "furniture"}, "matchScore": 2, "suggestion": true}, "shop/furniture/Roller": {"name": "Roller", "icon": "fas-couch", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FROLLER%20Logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q1621286"}, "addTags": {"brand": "Roller", "brand:wikidata": "Q1621286", "brand:wikipedia": "de:Roller (Möbelhaus)", "name": "Roller", "shop": "furniture"}, "removeTags": {"brand": "Roller", "brand:wikidata": "Q1621286", "brand:wikipedia": "de:Roller (Möbelhaus)", "name": "Roller", "shop": "furniture"}, "matchScore": 2, "suggestion": true}, "shop/furniture/Rooms To Go": {"name": "Rooms To Go", "icon": "fas-couch", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q7366329"}, "addTags": {"brand": "Rooms To Go", "brand:wikidata": "Q7366329", "brand:wikipedia": "en:Rooms To Go", "name": "Rooms To Go", "shop": "furniture"}, "removeTags": {"brand": "Rooms To Go", "brand:wikidata": "Q7366329", "brand:wikipedia": "en:Rooms To Go", "name": "Rooms To Go", "shop": "furniture"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/furniture/ScS": {"name": "ScS", "icon": "fas-couch", "imageURL": "https://pbs.twimg.com/profile_images/791189440429432832/x3LQSxxn_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q19654399"}, "addTags": {"brand": "ScS", "brand:wikidata": "Q19654399", "brand:wikipedia": "en:ScS", "name": "ScS", "shop": "furniture"}, "removeTags": {"brand": "ScS", "brand:wikidata": "Q19654399", "brand:wikipedia": "en:ScS", "name": "ScS", "shop": "furniture"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/furniture/ScS": {"name": "ScS", "icon": "fas-couch", "imageURL": "https://pbs.twimg.com/profile_images/1113810857723609089/CHZevsPZ_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q19654399"}, "addTags": {"brand": "ScS", "brand:wikidata": "Q19654399", "brand:wikipedia": "en:ScS", "name": "ScS", "shop": "furniture"}, "removeTags": {"brand": "ScS", "brand:wikidata": "Q19654399", "brand:wikipedia": "en:ScS", "name": "ScS", "shop": "furniture"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "shop/furniture/The Brick": {"name": "The Brick", "icon": "fas-couch", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q7720000"}, "addTags": {"brand": "The Brick", "brand:wikidata": "Q7720000", "brand:wikipedia": "en:The Brick", "name": "The Brick", "shop": "furniture"}, "removeTags": {"brand": "The Brick", "brand:wikidata": "Q7720000", "brand:wikipedia": "en:The Brick", "name": "The Brick", "shop": "furniture"}, "matchScore": 2, "suggestion": true}, - "shop/furniture/Williams-Sonoma": {"name": "Williams-Sonoma", "icon": "fas-couch", "imageURL": "https://pbs.twimg.com/profile_images/811867470206214144/p1nrNSEb_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q2581220"}, "addTags": {"brand": "Williams-Sonoma", "brand:wikidata": "Q2581220", "brand:wikipedia": "en:Williams-Sonoma", "name": "PWilliams-Sonoma", "shop": "furniture"}, "removeTags": {"brand": "Williams-Sonoma", "brand:wikidata": "Q2581220", "brand:wikipedia": "en:Williams-Sonoma", "name": "PWilliams-Sonoma", "shop": "furniture"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, + "shop/furniture/Urban Barn": {"name": "Urban Barn", "icon": "fas-couch", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q62515207"}, "addTags": {"brand": "Urban Barn", "brand:wikidata": "Q62515207", "name": "Urban Barn", "shop": "furniture"}, "removeTags": {"brand": "Urban Barn", "brand:wikidata": "Q62515207", "name": "Urban Barn", "shop": "furniture"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/furniture/Williams-Sonoma": {"name": "Williams-Sonoma", "icon": "fas-couch", "imageURL": "https://pbs.twimg.com/profile_images/811867470206214144/p1nrNSEb_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q2581220"}, "addTags": {"brand": "Williams-Sonoma", "brand:wikidata": "Q2581220", "brand:wikipedia": "en:Williams-Sonoma", "name": "Williams-Sonoma", "shop": "furniture"}, "removeTags": {"brand": "Williams-Sonoma", "brand:wikidata": "Q2581220", "brand:wikipedia": "en:Williams-Sonoma", "name": "Williams-Sonoma", "shop": "furniture"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, "shop/furniture/ニトリ": {"name": "ニトリ", "icon": "fas-couch", "imageURL": "https://pbs.twimg.com/profile_images/911049695601991682/HCnF523x_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "furniture", "brand:wikidata": "Q10801453"}, "addTags": {"brand": "ニトリ", "brand:en": "Nitori", "brand:ja": "ニトリ", "brand:wikidata": "Q10801453", "brand:wikipedia": "en:Nitori", "name": "ニトリ", "name:en": "Nitori", "name:ja": "ニトリ", "shop": "furniture"}, "removeTags": {"brand": "ニトリ", "brand:en": "Nitori", "brand:ja": "ニトリ", "brand:wikidata": "Q10801453", "brand:wikipedia": "en:Nitori", "name": "ニトリ", "name:en": "Nitori", "name:ja": "ニトリ", "shop": "furniture"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Dehner": {"name": "Dehner", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/840717512606415/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "garden_centre", "brand:wikidata": "Q1183029"}, "addTags": {"brand": "Dehner", "brand:wikidata": "Q1183029", "brand:wikipedia": "de:Dehner", "name": "Dehner", "shop": "garden_centre"}, "removeTags": {"brand": "Dehner", "brand:wikidata": "Q1183029", "brand:wikipedia": "de:Dehner", "name": "Dehner", "shop": "garden_centre"}, "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Gamm Vert": {"name": "Gamm Vert", "icon": "maki-garden-centre", "geometry": ["point", "area"], "tags": {"shop": "garden_centre", "brand:wikidata": "Q3095006"}, "addTags": {"brand": "Gamm Vert", "brand:wikidata": "Q3095006", "brand:wikipedia": "fr:Gamm Vert", "name": "Gamm Vert", "shop": "garden_centre"}, "removeTags": {"brand": "Gamm Vert", "brand:wikidata": "Q3095006", "brand:wikipedia": "fr:Gamm Vert", "name": "Gamm Vert", "shop": "garden_centre"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Jardiland": {"name": "Jardiland", "icon": "maki-garden-centre", "imageURL": "https://pbs.twimg.com/profile_images/1082572992457121793/rwRCyllh_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "garden_centre", "brand:wikidata": "Q3162276"}, "addTags": {"brand": "Jardiland", "brand:wikidata": "Q3162276", "brand:wikipedia": "fr:Jardiland", "name": "Jardiland", "shop": "garden_centre"}, "removeTags": {"brand": "Jardiland", "brand:wikidata": "Q3162276", "brand:wikipedia": "fr:Jardiland", "name": "Jardiland", "shop": "garden_centre"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Point Vert": {"name": "Point Vert", "icon": "maki-garden-centre", "geometry": ["point", "area"], "tags": {"shop": "garden_centre", "brand:wikidata": "Q16661975"}, "addTags": {"brand": "Point Vert", "brand:wikidata": "Q16661975", "brand:wikipedia": "fr:Magasin vert", "name": "Point Vert", "shop": "garden_centre"}, "removeTags": {"brand": "Point Vert", "brand:wikidata": "Q16661975", "brand:wikipedia": "fr:Magasin vert", "name": "Point Vert", "shop": "garden_centre"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/garden_centre/Dehner": {"name": "Dehner", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/dehner/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "garden_centre", "brand:wikidata": "Q1183029"}, "addTags": {"brand": "Dehner", "brand:wikidata": "Q1183029", "brand:wikipedia": "de:Dehner", "name": "Dehner", "shop": "garden_centre"}, "removeTags": {"brand": "Dehner", "brand:wikidata": "Q1183029", "brand:wikipedia": "de:Dehner", "name": "Dehner", "shop": "garden_centre"}, "matchScore": 2, "suggestion": true}, + "shop/garden_centre/Gamm Vert": {"name": "Gamm Vert", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/gammvert.officiel/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "garden_centre", "brand:wikidata": "Q3095006"}, "addTags": {"brand": "Gamm Vert", "brand:wikidata": "Q3095006", "brand:wikipedia": "fr:Gamm Vert", "name": "Gamm Vert", "shop": "garden_centre"}, "removeTags": {"brand": "Gamm Vert", "brand:wikidata": "Q3095006", "brand:wikipedia": "fr:Gamm Vert", "name": "Gamm Vert", "shop": "garden_centre"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/garden_centre/Jardiland": {"name": "Jardiland", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/Jardiland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "garden_centre", "brand:wikidata": "Q3162276"}, "addTags": {"brand": "Jardiland", "brand:wikidata": "Q3162276", "brand:wikipedia": "fr:Jardiland", "name": "Jardiland", "shop": "garden_centre"}, "removeTags": {"brand": "Jardiland", "brand:wikidata": "Q3162276", "brand:wikipedia": "fr:Jardiland", "name": "Jardiland", "shop": "garden_centre"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/garden_centre/Point Vert": {"name": "Point Vert", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/Magasin-Point-Vert-EST-444739795728913/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "garden_centre", "brand:wikidata": "Q16661975"}, "addTags": {"brand": "Point Vert", "brand:wikidata": "Q16661975", "brand:wikipedia": "fr:Magasin vert", "name": "Point Vert", "shop": "garden_centre"}, "removeTags": {"brand": "Point Vert", "brand:wikidata": "Q16661975", "brand:wikipedia": "fr:Magasin vert", "name": "Point Vert", "shop": "garden_centre"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/gift/Card Factory": {"name": "Card Factory", "icon": "maki-gift", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCardfactorylogo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "gift", "brand:wikidata": "Q5038192"}, "addTags": {"brand": "Card Factory", "brand:wikidata": "Q5038192", "brand:wikipedia": "en:Card Factory", "name": "Card Factory", "shop": "gift"}, "removeTags": {"brand": "Card Factory", "brand:wikidata": "Q5038192", "brand:wikipedia": "en:Card Factory", "name": "Card Factory", "shop": "gift"}, "matchScore": 2, "suggestion": true}, + "shop/gift/Clintons": {"name": "Clintons", "icon": "maki-gift", "imageURL": "https://pbs.twimg.com/profile_images/979391762551668736/CpD6EAk9_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "gift", "brand:wikidata": "Q5134299"}, "addTags": {"brand": "Clintons", "brand:wikidata": "Q5134299", "brand:wikipedia": "en:Clintons", "name": "Clintons", "shop": "gift"}, "removeTags": {"brand": "Clintons", "brand:wikidata": "Q5134299", "brand:wikipedia": "en:Clintons", "name": "Clintons", "shop": "gift"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "shop/gift/Disney Store": {"name": "Disney Store", "icon": "maki-gift", "imageURL": "https://pbs.twimg.com/profile_images/378800000036541261/d457adabeec5508a3fd78d152896f12d_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "gift", "brand:wikidata": "Q1047009"}, "addTags": {"brand": "Disney Store", "brand:wikidata": "Q1047009", "brand:wikipedia": "en:Disney Store", "name": "Disney Store", "operator": "Disney Consumer Products", "operator:wikidata": "Q3030410", "operator:wikipedia": "en:Disney Consumer Products and Interactive Media", "shop": "gift"}, "removeTags": {"brand": "Disney Store", "brand:wikidata": "Q1047009", "brand:wikipedia": "en:Disney Store", "name": "Disney Store", "operator": "Disney Consumer Products", "operator:wikidata": "Q3030410", "operator:wikipedia": "en:Disney Consumer Products and Interactive Media", "shop": "gift"}, "matchScore": 2, "suggestion": true}, "shop/gift/Hallmark": {"name": "Hallmark", "icon": "maki-gift", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHallmark%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "gift", "brand:wikidata": "Q1521910"}, "addTags": {"brand": "Hallmark", "brand:wikidata": "Q1521910", "brand:wikipedia": "en:Hallmark Cards", "name": "Hallmark", "shop": "gift"}, "removeTags": {"brand": "Hallmark", "brand:wikidata": "Q1521910", "brand:wikipedia": "en:Hallmark Cards", "name": "Hallmark", "shop": "gift"}, "matchScore": 2, "suggestion": true}, "shop/gift/Nanu-Nana": {"name": "Nanu-Nana", "icon": "maki-gift", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FNanu%20Nana%20Logo%20500x417%2002.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "gift", "brand:wikidata": "Q1720245"}, "addTags": {"brand": "Nanu-Nana", "brand:wikidata": "Q1720245", "brand:wikipedia": "de:Nanu-Nana", "name": "Nanu-Nana", "shop": "gift"}, "removeTags": {"brand": "Nanu-Nana", "brand:wikidata": "Q1720245", "brand:wikipedia": "de:Nanu-Nana", "name": "Nanu-Nana", "shop": "gift"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, "shop/greengrocer/Produce Junction": {"name": "Produce Junction", "icon": "fas-carrot", "imageURL": "https://graph.facebook.com/ProduceJunction/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "greengrocer", "brand:wikidata": "Q60583541"}, "addTags": {"brand": "Produce Junction", "brand:wikidata": "Q60583541", "name": "Produce Junction", "shop": "greengrocer"}, "removeTags": {"brand": "Produce Junction", "brand:wikidata": "Q60583541", "name": "Produce Junction", "shop": "greengrocer"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/hairdresser_supply/Sally Beauty Supply": {"name": "Sally Beauty Supply", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "hairdresser_supply", "brand:wikidata": "Q7405065"}, "addTags": {"brand": "Sally Beauty Supply", "brand:wikidata": "Q7405065", "brand:wikipedia": "en:Sally Beauty Holdings", "name": "Sally Beauty Supply", "shop": "hairdresser_supply"}, "removeTags": {"brand": "Sally Beauty Supply", "brand:wikidata": "Q7405065", "brand:wikipedia": "en:Sally Beauty Holdings", "name": "Sally Beauty Supply", "shop": "hairdresser_supply"}, "countryCodes": ["ca", "mx", "us"], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Cost Cutters": {"name": "Cost Cutters", "icon": "temaki-beauty_salon", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q62029366"}, "addTags": {"brand": "Cost Cutters", "brand:wikidata": "Q62029366", "name": "Cost Cutters", "shop": "hairdresser"}, "removeTags": {"brand": "Cost Cutters", "brand:wikidata": "Q62029366", "name": "Cost Cutters", "shop": "hairdresser"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Fantastic Sams": {"name": "Fantastic Sams", "icon": "temaki-beauty_salon", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q5434222"}, "addTags": {"brand": "Fantastic Sams", "brand:wikidata": "Q5434222", "brand:wikipedia": "en:Fantastic Sams", "name": "Fantastic Sams", "shop": "hairdresser"}, "removeTags": {"brand": "Fantastic Sams", "brand:wikidata": "Q5434222", "brand:wikipedia": "en:Fantastic Sams", "name": "Fantastic Sams", "shop": "hairdresser"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/First Choice Haircutters": {"name": "First Choice Haircutters", "icon": "temaki-beauty_salon", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q5452622"}, "addTags": {"brand": "First Choice Haircutters", "brand:wikidata": "Q5452622", "brand:wikipedia": "en:First Choice Haircutters", "name": "First Choice Haircutters", "shop": "hairdresser"}, "removeTags": {"brand": "First Choice Haircutters", "brand:wikidata": "Q5452622", "brand:wikipedia": "en:First Choice Haircutters", "name": "First Choice Haircutters", "shop": "hairdresser"}, "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Great Clips": {"name": "Great Clips", "icon": "temaki-beauty_salon", "imageURL": "https://pbs.twimg.com/profile_images/819560305579597824/2iEN9-ii_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q5598967"}, "addTags": {"brand": "Great Clips", "brand:wikidata": "Q5598967", "brand:wikipedia": "en:Great Clips", "name": "Great Clips", "shop": "hairdresser"}, "removeTags": {"brand": "Great Clips", "brand:wikidata": "Q5598967", "brand:wikipedia": "en:Great Clips", "name": "Great Clips", "shop": "hairdresser"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Hair Cuttery": {"name": "Hair Cuttery", "icon": "temaki-beauty_salon", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q5639484"}, "addTags": {"brand": "Hair Cuttery", "brand:wikidata": "Q5639484", "brand:wikipedia": "en:Hair Cuttery", "name": "Hair Cuttery", "shop": "hairdresser"}, "removeTags": {"brand": "Hair Cuttery", "brand:wikidata": "Q5639484", "brand:wikipedia": "en:Hair Cuttery", "name": "Hair Cuttery", "shop": "hairdresser"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Hair Express": {"name": "Hair Express", "icon": "temaki-beauty_salon", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q57550814"}, "addTags": {"brand": "Hair Express", "brand:wikidata": "Q57550814", "name": "Hair Express", "shop": "hairdresser"}, "removeTags": {"brand": "Hair Express", "brand:wikidata": "Q57550814", "name": "Hair Express", "shop": "hairdresser"}, "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Hairkiller": {"name": "Hairkiller", "icon": "temaki-beauty_salon", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q58305998"}, "addTags": {"brand": "Hairkiller", "brand:wikidata": "Q58305998", "name": "Hairkiller", "shop": "hairdresser"}, "removeTags": {"brand": "Hairkiller", "brand:wikidata": "Q58305998", "name": "Hairkiller", "shop": "hairdresser"}, "countryCodes": ["at", "de", "lu"], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Klier": {"name": "Klier", "icon": "temaki-beauty_salon", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q1465159"}, "addTags": {"brand": "Klier", "brand:wikidata": "Q1465159", "brand:wikipedia": "de:Frisör Klier", "name": "Klier", "shop": "hairdresser"}, "removeTags": {"brand": "Klier", "brand:wikidata": "Q1465159", "brand:wikipedia": "de:Frisör Klier", "name": "Klier", "shop": "hairdresser"}, "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Klipp": {"name": "Klipp", "icon": "temaki-beauty_salon", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q1737304"}, "addTags": {"brand": "Klipp", "brand:wikidata": "Q1737304", "brand:wikipedia": "de:Klipp Frisör", "name": "Klipp", "shop": "hairdresser"}, "removeTags": {"brand": "Klipp", "brand:wikidata": "Q1737304", "brand:wikipedia": "de:Klipp Frisör", "name": "Klipp", "shop": "hairdresser"}, "matchScore": 2, "suggestion": true}, + "shop/hairdresser_supply/Sally Beauty Supply": {"name": "Sally Beauty Supply", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/sallybeauty/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser_supply", "brand:wikidata": "Q7405065"}, "addTags": {"brand": "Sally Beauty Supply", "brand:wikidata": "Q7405065", "brand:wikipedia": "en:Sally Beauty Holdings", "name": "Sally Beauty Supply", "shop": "hairdresser_supply"}, "removeTags": {"brand": "Sally Beauty Supply", "brand:wikidata": "Q7405065", "brand:wikipedia": "en:Sally Beauty Holdings", "name": "Sally Beauty Supply", "shop": "hairdresser_supply"}, "countryCodes": ["ca", "mx", "us"], "matchScore": 2, "suggestion": true}, + "shop/hairdresser/Camille Albane": {"name": "Camille Albane", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/CamilleAlbane.Paris/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q62965183"}, "addTags": {"brand": "Camille Albane", "brand:wikidata": "Q62965183", "name": "Camille Albane", "shop": "hairdresser"}, "removeTags": {"brand": "Camille Albane", "brand:wikidata": "Q62965183", "name": "Camille Albane", "shop": "hairdresser"}, "matchScore": 2, "suggestion": true}, + "shop/hairdresser/Cost Cutters": {"name": "Cost Cutters", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/CostCutters/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q62029366"}, "addTags": {"brand": "Cost Cutters", "brand:wikidata": "Q62029366", "name": "Cost Cutters", "shop": "hairdresser"}, "removeTags": {"brand": "Cost Cutters", "brand:wikidata": "Q62029366", "name": "Cost Cutters", "shop": "hairdresser"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/hairdresser/Dessange": {"name": "Dessange", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/DESSANGE.Paris/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q62979914"}, "addTags": {"brand": "Dessange", "brand:wikidata": "Q62979914", "name": "Dessange", "shop": "hairdresser"}, "removeTags": {"brand": "Dessange", "brand:wikidata": "Q62979914", "name": "Dessange", "shop": "hairdresser"}, "matchScore": 2, "suggestion": true}, + "shop/hairdresser/Fantastic Sams": {"name": "Fantastic Sams", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/fantasticsamscutandcolor/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q5434222"}, "addTags": {"brand": "Fantastic Sams", "brand:wikidata": "Q5434222", "brand:wikipedia": "en:Fantastic Sams", "name": "Fantastic Sams", "shop": "hairdresser"}, "removeTags": {"brand": "Fantastic Sams", "brand:wikidata": "Q5434222", "brand:wikipedia": "en:Fantastic Sams", "name": "Fantastic Sams", "shop": "hairdresser"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/hairdresser/First Choice Haircutters": {"name": "First Choice Haircutters", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/SignatureStyleSalons/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q5452622"}, "addTags": {"brand": "First Choice Haircutters", "brand:wikidata": "Q5452622", "brand:wikipedia": "en:First Choice Haircutters", "name": "First Choice Haircutters", "shop": "hairdresser"}, "removeTags": {"brand": "First Choice Haircutters", "brand:wikidata": "Q5452622", "brand:wikipedia": "en:First Choice Haircutters", "name": "First Choice Haircutters", "shop": "hairdresser"}, "matchScore": 2, "suggestion": true}, + "shop/hairdresser/Franck Provost": {"name": "Franck Provost", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/franck.provost.paris/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q62805922"}, "addTags": {"brand": "Franck Provost", "brand:wikidata": "Q62805922", "brand:wikipedia": "fr:Franck Provost (Salons de coiffure)", "name": "Franck Provost", "shop": "hairdresser"}, "removeTags": {"brand": "Franck Provost", "brand:wikidata": "Q62805922", "brand:wikipedia": "fr:Franck Provost (Salons de coiffure)", "name": "Franck Provost", "shop": "hairdresser"}, "matchScore": 2, "suggestion": true}, + "shop/hairdresser/Great Clips": {"name": "Great Clips", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/GreatClips/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q5598967"}, "addTags": {"brand": "Great Clips", "brand:wikidata": "Q5598967", "brand:wikipedia": "en:Great Clips", "name": "Great Clips", "shop": "hairdresser"}, "removeTags": {"brand": "Great Clips", "brand:wikidata": "Q5598967", "brand:wikipedia": "en:Great Clips", "name": "Great Clips", "shop": "hairdresser"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, + "shop/hairdresser/Hair Cuttery": {"name": "Hair Cuttery", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/haircuttery/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q5639484"}, "addTags": {"brand": "Hair Cuttery", "brand:wikidata": "Q5639484", "brand:wikipedia": "en:Hair Cuttery", "name": "Hair Cuttery", "shop": "hairdresser"}, "removeTags": {"brand": "Hair Cuttery", "brand:wikidata": "Q5639484", "brand:wikipedia": "en:Hair Cuttery", "name": "Hair Cuttery", "shop": "hairdresser"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/hairdresser/Hair Express": {"name": "Hair Express", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/hairexpressfriseur/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q57550814"}, "addTags": {"brand": "Hair Express", "brand:wikidata": "Q57550814", "name": "Hair Express", "shop": "hairdresser"}, "removeTags": {"brand": "Hair Express", "brand:wikidata": "Q57550814", "name": "Hair Express", "shop": "hairdresser"}, "matchScore": 2, "suggestion": true}, + "shop/hairdresser/Hairkiller": {"name": "Hairkiller", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/hairkillerDetmold/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q58305998"}, "addTags": {"brand": "Hairkiller", "brand:wikidata": "Q58305998", "name": "Hairkiller", "shop": "hairdresser"}, "removeTags": {"brand": "Hairkiller", "brand:wikidata": "Q58305998", "name": "Hairkiller", "shop": "hairdresser"}, "countryCodes": ["at", "de", "lu"], "matchScore": 2, "suggestion": true}, + "shop/hairdresser/Klier": {"name": "Klier", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/frisoerklier/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q1465159"}, "addTags": {"brand": "Klier", "brand:wikidata": "Q1465159", "brand:wikipedia": "de:Frisör Klier", "name": "Klier", "shop": "hairdresser"}, "removeTags": {"brand": "Klier", "brand:wikidata": "Q1465159", "brand:wikipedia": "de:Frisör Klier", "name": "Klier", "shop": "hairdresser"}, "matchScore": 2, "suggestion": true}, + "shop/hairdresser/Klipp": {"name": "Klipp", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/klipp.frisoer/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q1737304"}, "addTags": {"brand": "Klipp", "brand:wikidata": "Q1737304", "brand:wikipedia": "de:Klipp Frisör", "name": "Klipp", "shop": "hairdresser"}, "removeTags": {"brand": "Klipp", "brand:wikidata": "Q1737304", "brand:wikipedia": "de:Klipp Frisör", "name": "Klipp", "shop": "hairdresser"}, "matchScore": 2, "suggestion": true}, "shop/hairdresser/Sport Clips": {"name": "Sport Clips", "icon": "temaki-beauty_salon", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q7579310"}, "addTags": {"brand": "Sport Clips", "brand:wikidata": "Q7579310", "name": "Sport Clips", "shop": "hairdresser"}, "removeTags": {"brand": "Sport Clips", "brand:wikidata": "Q7579310", "name": "Sport Clips", "shop": "hairdresser"}, "matchScore": 2, "suggestion": true}, "shop/hairdresser/Supercuts": {"name": "Supercuts", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/Supercuts/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q7643239"}, "addTags": {"brand": "Supercuts", "brand:wikidata": "Q7643239", "brand:wikipedia": "en:Supercuts", "name": "Supercuts", "shop": "hairdresser"}, "removeTags": {"brand": "Supercuts", "brand:wikidata": "Q7643239", "brand:wikipedia": "en:Supercuts", "name": "Supercuts", "shop": "hairdresser"}, "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Toni & Guy": {"name": "Toni & Guy", "icon": "temaki-beauty_salon", "imageURL": "https://pbs.twimg.com/profile_images/940543926141964288/jQR8J2az_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q324784"}, "addTags": {"brand": "Toni & Guy", "brand:wikidata": "Q324784", "brand:wikipedia": "en:Toni & Guy", "name": "Toni & Guy", "shop": "hairdresser"}, "removeTags": {"brand": "Toni & Guy", "brand:wikidata": "Q324784", "brand:wikipedia": "en:Toni & Guy", "name": "Toni & Guy", "shop": "hairdresser"}, "matchScore": 2, "suggestion": true}, - "shop/hardware/Harbor Freight Tools": {"name": "Harbor Freight Tools", "icon": "temaki-tools", "imageURL": "https://pbs.twimg.com/profile_images/459004871165747200/5VM_h-H4_bigger.jpeg", "geometry": ["point", "area"], "tags": {"shop": "hardware", "brand:wikidata": "Q5654601"}, "addTags": {"brand": "Harbor Freight Tools", "brand:wikidata": "Q5654601", "brand:wikipedia": "en:Harbor Freight Tools", "name": "Harbor Freight Tools", "shop": "hardware"}, "removeTags": {"brand": "Harbor Freight Tools", "brand:wikidata": "Q5654601", "brand:wikipedia": "en:Harbor Freight Tools", "name": "Harbor Freight Tools", "shop": "hardware"}, "matchScore": 2, "suggestion": true}, - "shop/hardware/Home Hardware": {"name": "Home Hardware", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHome%20Hardware%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "hardware", "brand:wikidata": "Q3139611"}, "addTags": {"brand": "Home Hardware", "brand:wikidata": "Q3139611", "brand:wikipedia": "en:Home Hardware", "name": "Home Hardware", "shop": "hardware"}, "removeTags": {"brand": "Home Hardware", "brand:wikidata": "Q3139611", "brand:wikipedia": "en:Home Hardware", "name": "Home Hardware", "shop": "hardware"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/hardware/True Value": {"name": "True Value", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "hardware", "brand:wikidata": "Q7847545"}, "addTags": {"brand": "True Value", "brand:wikidata": "Q7847545", "brand:wikipedia": "en:True Value", "name": "True Value", "shop": "hardware"}, "removeTags": {"brand": "True Value", "brand:wikidata": "Q7847545", "brand:wikipedia": "en:True Value", "name": "True Value", "shop": "hardware"}, "matchScore": 2, "suggestion": true}, + "shop/hairdresser/Tchip": {"name": "Tchip", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/TCHIP.Coiffure.Officiel/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q62871250"}, "addTags": {"brand": "Tchip", "brand:wikidata": "Q62871250", "name": "Tchip", "shop": "hairdresser"}, "removeTags": {"brand": "Tchip", "brand:wikidata": "Q62871250", "name": "Tchip", "shop": "hairdresser"}, "matchScore": 2, "suggestion": true}, + "shop/hairdresser/Toni & Guy": {"name": "Toni & Guy", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/toniandguyworld/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q324784"}, "addTags": {"brand": "Toni & Guy", "brand:wikidata": "Q324784", "brand:wikipedia": "en:Toni & Guy", "name": "Toni & Guy", "shop": "hairdresser"}, "removeTags": {"brand": "Toni & Guy", "brand:wikidata": "Q324784", "brand:wikipedia": "en:Toni & Guy", "name": "Toni & Guy", "shop": "hairdresser"}, "matchScore": 2, "suggestion": true}, + "shop/hairdresser/Top Hair": {"name": "Top Hair", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/Mein.Friseur.Top.Hair/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hairdresser", "brand:wikidata": "Q62523343"}, "addTags": {"brand": "Top Hair", "brand:wikidata": "Q62523343", "name": "Top Hair", "shop": "hairdresser"}, "removeTags": {"brand": "Top Hair", "brand:wikidata": "Q62523343", "name": "Top Hair", "shop": "hairdresser"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/hardware/Harbor Freight Tools": {"name": "Harbor Freight Tools", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/harbor.f.tools/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hardware", "brand:wikidata": "Q5654601"}, "addTags": {"brand": "Harbor Freight Tools", "brand:wikidata": "Q5654601", "brand:wikipedia": "en:Harbor Freight Tools", "name": "Harbor Freight Tools", "shop": "hardware"}, "removeTags": {"brand": "Harbor Freight Tools", "brand:wikidata": "Q5654601", "brand:wikipedia": "en:Harbor Freight Tools", "name": "Harbor Freight Tools", "shop": "hardware"}, "matchScore": 2, "suggestion": true}, + "shop/hardware/Home Hardware": {"name": "Home Hardware", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/homehardwarestores/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hardware", "brand:wikidata": "Q3139611"}, "addTags": {"brand": "Home Hardware", "brand:wikidata": "Q3139611", "brand:wikipedia": "en:Home Hardware", "name": "Home Hardware", "shop": "hardware"}, "removeTags": {"brand": "Home Hardware", "brand:wikidata": "Q3139611", "brand:wikipedia": "en:Home Hardware", "name": "Home Hardware", "shop": "hardware"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/hardware/True Value": {"name": "True Value", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/TrueValue/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hardware", "brand:wikidata": "Q7847545"}, "addTags": {"brand": "True Value", "brand:wikidata": "Q7847545", "brand:wikipedia": "en:True Value", "name": "True Value", "shop": "hardware"}, "removeTags": {"brand": "True Value", "brand:wikidata": "Q7847545", "brand:wikipedia": "en:True Value", "name": "True Value", "shop": "hardware"}, "matchScore": 2, "suggestion": true}, "shop/hardware/Würth": {"name": "Würth", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/wuerth.germany/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hardware", "brand:wikidata": "Q679750"}, "addTags": {"brand": "Würth", "brand:wikidata": "Q679750", "brand:wikipedia": "de:Würth-Gruppe", "name": "Würth", "shop": "hardware"}, "removeTags": {"brand": "Würth", "brand:wikidata": "Q679750", "brand:wikipedia": "de:Würth-Gruppe", "name": "Würth", "shop": "hardware"}, "matchScore": 2, "suggestion": true}, + "shop/hardware/Мосхозторг": {"name": "Мосхозторг", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/MosHozTorg/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hardware", "brand:wikidata": "Q62499092"}, "addTags": {"brand": "Мосхозторг", "brand:wikidata": "Q62499092", "name": "Мосхозторг", "shop": "hardware"}, "removeTags": {"brand": "Мосхозторг", "brand:wikidata": "Q62499092", "name": "Мосхозторг", "shop": "hardware"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/health_food/Holland & Barrett": {"name": "Holland & Barrett", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1106856523878289408/YgV0vPoe_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "health_food", "brand:wikidata": "Q5880870"}, "addTags": {"brand": "Holland & Barrett", "brand:wikidata": "Q5880870", "brand:wikipedia": "en:Holland & Barrett", "name": "Holland & Barrett", "shop": "health_food"}, "removeTags": {"brand": "Holland & Barrett", "brand:wikidata": "Q5880870", "brand:wikipedia": "en:Holland & Barrett", "name": "Holland & Barrett", "shop": "health_food"}, "matchScore": 2, "suggestion": true}, - "shop/hearing_aids/Amplifon": {"name": "Amplifon", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAmplifon.tif&width=100", "geometry": ["point", "area"], "tags": {"shop": "hearing_aids", "brand:wikidata": "Q477222"}, "addTags": {"brand": "Amplifon", "brand:wikidata": "Q477222", "brand:wikipedia": "en:Amplifon", "name": "Amplifon", "shop": "hearing_aids"}, "removeTags": {"brand": "Amplifon", "brand:wikidata": "Q477222", "brand:wikipedia": "en:Amplifon", "name": "Amplifon", "shop": "hearing_aids"}, "matchScore": 2, "suggestion": true}, - "shop/hearing_aids/Audika": {"name": "Audika", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "hearing_aids", "brand:wikidata": "Q2870745"}, "addTags": {"brand": "Audika", "brand:wikidata": "Q2870745", "brand:wikipedia": "fr:Audika", "name": "Audika", "shop": "hearing_aids"}, "removeTags": {"brand": "Audika", "brand:wikidata": "Q2870745", "brand:wikipedia": "fr:Audika", "name": "Audika", "shop": "hearing_aids"}, "matchScore": 2, "suggestion": true}, + "shop/hearing_aids/Amplifon": {"name": "Amplifon", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/AmplifonGroupCareers/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hearing_aids", "brand:wikidata": "Q477222"}, "addTags": {"brand": "Amplifon", "brand:wikidata": "Q477222", "brand:wikipedia": "en:Amplifon", "name": "Amplifon", "shop": "hearing_aids"}, "removeTags": {"brand": "Amplifon", "brand:wikidata": "Q477222", "brand:wikipedia": "en:Amplifon", "name": "Amplifon", "shop": "hearing_aids"}, "matchScore": 2, "suggestion": true}, + "shop/hearing_aids/Audika": {"name": "Audika", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/audikafrance/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hearing_aids", "brand:wikidata": "Q2870745"}, "addTags": {"brand": "Audika", "brand:wikidata": "Q2870745", "brand:wikipedia": "fr:Audika", "name": "Audika", "shop": "hearing_aids"}, "removeTags": {"brand": "Audika", "brand:wikidata": "Q2870745", "brand:wikipedia": "fr:Audika", "name": "Audika", "shop": "hearing_aids"}, "matchScore": 2, "suggestion": true}, "shop/hearing_aids/Geers": {"name": "Geers", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/geers.hoerakustik/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hearing_aids", "brand:wikidata": "Q1497707"}, "addTags": {"brand": "Geers", "brand:wikidata": "Q1497707", "brand:wikipedia": "de:Geers Hörakustik", "name": "Geers", "shop": "hearing_aids"}, "removeTags": {"brand": "Geers", "brand:wikidata": "Q1497707", "brand:wikipedia": "de:Geers Hörakustik", "name": "Geers", "shop": "hearing_aids"}, "matchScore": 2, "suggestion": true}, - "shop/hearing_aids/Kind Hörgeräte": {"name": "Kind Hörgeräte", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKIND%20H%C3%B6rger%C3%A4te%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "hearing_aids", "brand:wikidata": "Q43598590"}, "addTags": {"brand": "Kind Hörgeräte", "brand:wikidata": "Q43598590", "brand:wikipedia": "de:Kind Hörgeräte", "name": "Kind Hörgeräte", "shop": "hearing_aids"}, "removeTags": {"brand": "Kind Hörgeräte", "brand:wikidata": "Q43598590", "brand:wikipedia": "de:Kind Hörgeräte", "name": "Kind Hörgeräte", "shop": "hearing_aids"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/hearing_aids/Neuroth": {"name": "Neuroth", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Neuroth%20AG.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "hearing_aids", "brand:wikidata": "Q15836645"}, "addTags": {"brand": "Neuroth", "brand:wikidata": "Q15836645", "name": "Neuroth", "shop": "hearing_aids"}, "removeTags": {"brand": "Neuroth", "brand:wikidata": "Q15836645", "name": "Neuroth", "shop": "hearing_aids"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, - "shop/hifi/Bang & Olufsen": {"name": "Bang & Olufsen", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1034733828005355520/rcwjmcLO_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "hifi", "brand:wikidata": "Q790020"}, "addTags": {"brand": "Bang & Olufsen", "brand:wikidata": "Q790020", "brand:wikipedia": "en:Bang & Olufsen", "name": "Bang & Olufsen", "shop": "hifi"}, "removeTags": {"brand": "Bang & Olufsen", "brand:wikidata": "Q790020", "brand:wikipedia": "en:Bang & Olufsen", "name": "Bang & Olufsen", "shop": "hifi"}, "matchScore": 2, "suggestion": true}, - "shop/houseware/Bed Bath & Beyond": {"name": "Bed Bath & Beyond", "icon": "fas-blender", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBedbath%26beyond.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q813782"}, "addTags": {"brand": "Bed Bath & Beyond", "brand:wikidata": "Q813782", "brand:wikipedia": "en:Bed Bath & Beyond", "name": "Bed Bath & Beyond", "shop": "houseware"}, "removeTags": {"brand": "Bed Bath & Beyond", "brand:wikidata": "Q813782", "brand:wikipedia": "en:Bed Bath & Beyond", "name": "Bed Bath & Beyond", "shop": "houseware"}, "matchScore": 2, "suggestion": true}, - "shop/houseware/Blokker": {"name": "Blokker", "icon": "fas-blender", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q884934"}, "addTags": {"brand": "Blokker", "brand:wikidata": "Q884934", "brand:wikipedia": "en:Blokker Holding", "name": "Blokker", "shop": "houseware"}, "removeTags": {"brand": "Blokker", "brand:wikidata": "Q884934", "brand:wikipedia": "en:Blokker Holding", "name": "Blokker", "shop": "houseware"}, "matchScore": 2, "suggestion": true}, - "shop/houseware/Cervera": {"name": "Cervera", "icon": "fas-blender", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q10447179"}, "addTags": {"brand": "Cervera", "brand:wikidata": "Q10447179", "brand:wikipedia": "sv:Cervera (företag)", "name": "Cervera", "shop": "houseware"}, "removeTags": {"brand": "Cervera", "brand:wikidata": "Q10447179", "brand:wikipedia": "sv:Cervera (företag)", "name": "Cervera", "shop": "houseware"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, - "shop/houseware/HomeGoods": {"name": "HomeGoods", "icon": "fas-blender", "imageURL": "https://pbs.twimg.com/profile_images/636583431346999296/lvg1N1fS_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q5887941"}, "addTags": {"brand": "HomeGoods", "brand:wikidata": "Q5887941", "brand:wikipedia": "en:HomeGoods", "name": "HomeGoods", "shop": "houseware"}, "removeTags": {"brand": "HomeGoods", "brand:wikidata": "Q5887941", "brand:wikipedia": "en:HomeGoods", "name": "HomeGoods", "shop": "houseware"}, "matchScore": 2, "suggestion": true}, - "shop/houseware/Marskramer": {"name": "Marskramer", "icon": "fas-blender", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q2305917"}, "addTags": {"brand": "Marskramer", "brand:wikidata": "Q2305917", "brand:wikipedia": "nl:Marskramer (warenhuis)", "name": "Marskramer", "shop": "houseware"}, "removeTags": {"brand": "Marskramer", "brand:wikidata": "Q2305917", "brand:wikipedia": "nl:Marskramer (warenhuis)", "name": "Marskramer", "shop": "houseware"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, - "shop/houseware/Old Time Pottery": {"name": "Old Time Pottery", "icon": "fas-blender", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q7085222"}, "addTags": {"brand": "Old Time Pottery", "brand:website": "http://www.oldtimepottery.com", "brand:wikidata": "Q7085222", "brand:wikipedia": "en:Old Time Pottery", "name": "Old Time Pottery", "shop": "houseware"}, "removeTags": {"brand": "Old Time Pottery", "brand:website": "http://www.oldtimepottery.com", "brand:wikidata": "Q7085222", "brand:wikipedia": "en:Old Time Pottery", "name": "Old Time Pottery", "shop": "houseware"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/houseware/Sur La Table": {"name": "Sur La Table", "icon": "fas-blender", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q7645220"}, "addTags": {"brand": "Sur La Table", "brand:wikidata": "Q7645220", "brand:wikipedia": "en:Sur La Table", "name": "Sur La Table", "shop": "houseware"}, "removeTags": {"brand": "Sur La Table", "brand:wikidata": "Q7645220", "brand:wikipedia": "en:Sur La Table", "name": "Sur La Table", "shop": "houseware"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/hearing_aids/Kind Hörgeräte": {"name": "Kind Hörgeräte", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/kindhoergeraete/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hearing_aids", "brand:wikidata": "Q43598590"}, "addTags": {"brand": "Kind Hörgeräte", "brand:wikidata": "Q43598590", "brand:wikipedia": "de:Kind Hörgeräte", "name": "Kind Hörgeräte", "shop": "hearing_aids"}, "removeTags": {"brand": "Kind Hörgeräte", "brand:wikidata": "Q43598590", "brand:wikipedia": "de:Kind Hörgeräte", "name": "Kind Hörgeräte", "shop": "hearing_aids"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/hearing_aids/Neuroth": {"name": "Neuroth", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/NeurothAG/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hearing_aids", "brand:wikidata": "Q15836645"}, "addTags": {"brand": "Neuroth", "brand:wikidata": "Q15836645", "brand:wikipedia": "de:Neuroth AG", "name": "Neuroth", "shop": "hearing_aids"}, "removeTags": {"brand": "Neuroth", "brand:wikidata": "Q15836645", "brand:wikipedia": "de:Neuroth AG", "name": "Neuroth", "shop": "hearing_aids"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, + "shop/hifi/Bang & Olufsen": {"name": "Bang & Olufsen", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/bangolufsenusa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "hifi", "brand:wikidata": "Q790020"}, "addTags": {"brand": "Bang & Olufsen", "brand:wikidata": "Q790020", "brand:wikipedia": "en:Bang & Olufsen", "name": "Bang & Olufsen", "shop": "hifi"}, "removeTags": {"brand": "Bang & Olufsen", "brand:wikidata": "Q790020", "brand:wikipedia": "en:Bang & Olufsen", "name": "Bang & Olufsen", "shop": "hifi"}, "matchScore": 2, "suggestion": true}, + "shop/houseware/Bed Bath & Beyond": {"name": "Bed Bath & Beyond", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/BedBathAndBeyond/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q813782"}, "addTags": {"brand": "Bed Bath & Beyond", "brand:wikidata": "Q813782", "brand:wikipedia": "en:Bed Bath & Beyond", "name": "Bed Bath & Beyond", "shop": "houseware"}, "removeTags": {"brand": "Bed Bath & Beyond", "brand:wikidata": "Q813782", "brand:wikipedia": "en:Bed Bath & Beyond", "name": "Bed Bath & Beyond", "shop": "houseware"}, "matchScore": 2, "suggestion": true}, + "shop/houseware/Blokker": {"name": "Blokker", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/BlokkerNL/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q884934"}, "addTags": {"brand": "Blokker", "brand:wikidata": "Q884934", "brand:wikipedia": "en:Blokker Holding", "name": "Blokker", "shop": "houseware"}, "removeTags": {"brand": "Blokker", "brand:wikidata": "Q884934", "brand:wikipedia": "en:Blokker Holding", "name": "Blokker", "shop": "houseware"}, "matchScore": 2, "suggestion": true}, + "shop/houseware/Cervera": {"name": "Cervera", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/CerveraAB/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q10447179"}, "addTags": {"brand": "Cervera", "brand:wikidata": "Q10447179", "brand:wikipedia": "sv:Cervera (företag)", "name": "Cervera", "shop": "houseware"}, "removeTags": {"brand": "Cervera", "brand:wikidata": "Q10447179", "brand:wikipedia": "sv:Cervera (företag)", "name": "Cervera", "shop": "houseware"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, + "shop/houseware/HomeGoods": {"name": "HomeGoods", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/Homegoods/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q5887941"}, "addTags": {"brand": "HomeGoods", "brand:wikidata": "Q5887941", "brand:wikipedia": "en:HomeGoods", "name": "HomeGoods", "shop": "houseware"}, "removeTags": {"brand": "HomeGoods", "brand:wikidata": "Q5887941", "brand:wikipedia": "en:HomeGoods", "name": "HomeGoods", "shop": "houseware"}, "matchScore": 2, "suggestion": true}, + "shop/houseware/Lagerhaus": {"name": "Lagerhaus", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/lagerhaus.se/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q10553211"}, "addTags": {"brand": "Lagerhaus", "brand:wikidata": "Q10553211", "brand:wikipedia": "sv:Lagerhaus", "name": "Lagerhaus", "shop": "houseware"}, "removeTags": {"brand": "Lagerhaus", "brand:wikidata": "Q10553211", "brand:wikipedia": "sv:Lagerhaus", "name": "Lagerhaus", "shop": "houseware"}, "matchScore": 2, "suggestion": true}, + "shop/houseware/Marskramer": {"name": "Marskramer", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/marskramer.nl/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q2305917"}, "addTags": {"brand": "Marskramer", "brand:wikidata": "Q2305917", "brand:wikipedia": "nl:Marskramer (warenhuis)", "name": "Marskramer", "shop": "houseware"}, "removeTags": {"brand": "Marskramer", "brand:wikidata": "Q2305917", "brand:wikipedia": "nl:Marskramer (warenhuis)", "name": "Marskramer", "shop": "houseware"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, + "shop/houseware/Old Time Pottery": {"name": "Old Time Pottery", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/oldtimepottery/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q7085222"}, "addTags": {"brand": "Old Time Pottery", "brand:website": "http://www.oldtimepottery.com", "brand:wikidata": "Q7085222", "brand:wikipedia": "en:Old Time Pottery", "name": "Old Time Pottery", "shop": "houseware"}, "removeTags": {"brand": "Old Time Pottery", "brand:website": "http://www.oldtimepottery.com", "brand:wikidata": "Q7085222", "brand:wikipedia": "en:Old Time Pottery", "name": "Old Time Pottery", "shop": "houseware"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/houseware/Sur La Table": {"name": "Sur La Table", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/SurLaTable/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q7645220"}, "addTags": {"brand": "Sur La Table", "brand:wikidata": "Q7645220", "brand:wikipedia": "en:Sur La Table", "name": "Sur La Table", "shop": "houseware"}, "removeTags": {"brand": "Sur La Table", "brand:wikidata": "Q7645220", "brand:wikipedia": "en:Sur La Table", "name": "Sur La Table", "shop": "houseware"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/houseware/The Container Store": {"name": "The Container Store", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/containerstore/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q7727445"}, "addTags": {"brand": "The Container Store", "brand:wikidata": "Q7727445", "brand:wikipedia": "en:The Container Store", "name": "The Container Store", "shop": "houseware"}, "removeTags": {"brand": "The Container Store", "brand:wikidata": "Q7727445", "brand:wikipedia": "en:The Container Store", "name": "The Container Store", "shop": "houseware"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/houseware/Tuesday Morning": {"name": "Tuesday Morning", "icon": "fas-blender", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q7851426"}, "addTags": {"brand": "Tuesday Morning", "brand:wikidata": "Q7851426", "brand:wikipedia": "en:Tuesday Morning", "name": "Tuesday Morning", "shop": "houseware"}, "removeTags": {"brand": "Tuesday Morning", "brand:wikidata": "Q7851426", "brand:wikipedia": "en:Tuesday Morning", "name": "Tuesday Morning", "shop": "houseware"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/houseware/WMF": {"name": "WMF", "icon": "fas-blender", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWMF%20Group%20Logo%20Silber%20RGB.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q451423"}, "addTags": {"brand": "WMF", "brand:wikidata": "Q451423", "brand:wikipedia": "en:WMF Group", "name": "WMF", "shop": "houseware"}, "removeTags": {"brand": "WMF", "brand:wikidata": "Q451423", "brand:wikipedia": "en:WMF Group", "name": "WMF", "shop": "houseware"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, + "shop/houseware/Tuesday Morning": {"name": "Tuesday Morning", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/TuesdayMorning/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q7851426"}, "addTags": {"brand": "Tuesday Morning", "brand:wikidata": "Q7851426", "brand:wikipedia": "en:Tuesday Morning", "name": "Tuesday Morning", "shop": "houseware"}, "removeTags": {"brand": "Tuesday Morning", "brand:wikidata": "Q7851426", "brand:wikipedia": "en:Tuesday Morning", "name": "Tuesday Morning", "shop": "houseware"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/houseware/WMF": {"name": "WMF", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/WMF/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q451423"}, "addTags": {"brand": "WMF", "brand:wikidata": "Q451423", "brand:wikipedia": "en:WMF Group", "name": "WMF", "shop": "houseware"}, "removeTags": {"brand": "WMF", "brand:wikidata": "Q451423", "brand:wikipedia": "en:WMF Group", "name": "WMF", "shop": "houseware"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, + "shop/houseware/World Market": {"name": "World Market", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/worldmarket/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q5174750"}, "addTags": {"brand": "World Market", "brand:wikidata": "Q5174750", "brand:wikipedia": "en:Cost Plus World Market", "name": "World Market", "official_name": "Cost Plus World Market", "shop": "interior_decoration"}, "removeTags": {"brand": "World Market", "brand:wikidata": "Q5174750", "brand:wikipedia": "en:Cost Plus World Market", "name": "World Market", "official_name": "Cost Plus World Market", "shop": "interior_decoration"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/houseware/Xenos": {"name": "Xenos", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/XenosNL/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "houseware", "brand:wikidata": "Q16547960"}, "addTags": {"brand": "Xenos", "brand:wikidata": "Q16547960", "brand:wikipedia": "nl:Xenos", "name": "Xenos", "shop": "houseware"}, "removeTags": {"brand": "Xenos", "brand:wikidata": "Q16547960", "brand:wikipedia": "nl:Xenos", "name": "Xenos", "shop": "houseware"}, "matchScore": 2, "suggestion": true}, "shop/interior_decoration/Depot": {"name": "Depot", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/DEPOTonline/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "interior_decoration", "brand:wikidata": "Q1191740"}, "addTags": {"brand": "Depot", "brand:wikidata": "Q1191740", "brand:wikipedia": "de:Gries Deco Holding", "name": "Depot", "shop": "interior_decoration"}, "removeTags": {"brand": "Depot", "brand:wikidata": "Q1191740", "brand:wikipedia": "de:Gries Deco Holding", "name": "Depot", "shop": "interior_decoration"}, "countryCodes": ["at", "ch", "de"], "matchScore": 2, "suggestion": true}, "shop/interior_decoration/Hemtex": {"name": "Hemtex", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/hemtex/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "interior_decoration", "brand:wikidata": "Q10521868"}, "addTags": {"brand": "Hemtex", "brand:wikidata": "Q10521868", "brand:wikipedia": "sv:Hemtex", "name": "Hemtex", "shop": "interior_decoration"}, "removeTags": {"brand": "Hemtex", "brand:wikidata": "Q10521868", "brand:wikipedia": "sv:Hemtex", "name": "Hemtex", "shop": "interior_decoration"}, "countryCodes": ["ee", "fi", "se"], "matchScore": 2, "suggestion": true}, + "shop/interior_decoration/Kirkland's": {"name": "Kirkland's", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Kirklands/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "interior_decoration", "brand:wikidata": "Q6415714"}, "addTags": {"brand": "Kirkland's", "brand:wikidata": "Q6415714", "brand:wikipedia": "en:Kirkland's", "name": "Kirkland's", "shop": "interior_decoration"}, "removeTags": {"brand": "Kirkland's", "brand:wikidata": "Q6415714", "brand:wikipedia": "en:Kirkland's", "name": "Kirkland's", "shop": "interior_decoration"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/interior_decoration/Pier 1 Imports": {"name": "Pier 1 Imports", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/pier1/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "interior_decoration", "brand:wikidata": "Q7191691"}, "addTags": {"brand": "Pier 1 Imports", "brand:wikidata": "Q7191691", "brand:wikipedia": "en:Pier 1 Imports", "name": "Pier 1 Imports", "shop": "interior_decoration"}, "removeTags": {"brand": "Pier 1 Imports", "brand:wikidata": "Q7191691", "brand:wikipedia": "en:Pier 1 Imports", "name": "Pier 1 Imports", "shop": "interior_decoration"}, "matchScore": 2, "suggestion": true}, "shop/jewelry/Alex and Ani": {"name": "Alex and Ani", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/alexandaniusa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q16198810"}, "addTags": {"brand": "Alex and Ani", "brand:wikidata": "Q16198810", "brand:wikipedia": "en:Alex and Ani", "name": "Alex and Ani", "shop": "jewelry"}, "removeTags": {"brand": "Alex and Ani", "brand:wikidata": "Q16198810", "brand:wikipedia": "en:Alex and Ani", "name": "Alex and Ani", "shop": "jewelry"}, "matchScore": 2, "suggestion": true}, - "shop/jewelry/Apart": {"name": "Apart", "icon": "maki-jewelry-store", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q11686561"}, "addTags": {"brand": "Apart", "brand:wikidata": "Q11686561", "brand:wikipedia": "pl:Apart", "name": "Apart", "shop": "jewelry"}, "removeTags": {"brand": "Apart", "brand:wikidata": "Q11686561", "brand:wikipedia": "pl:Apart", "name": "Apart", "shop": "jewelry"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Bijou Brigitte": {"name": "Bijou Brigitte", "icon": "maki-jewelry-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBijouBrigitte-logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q599545"}, "addTags": {"brand": "Bijou Brigitte", "brand:wikidata": "Q599545", "brand:wikipedia": "de:Bijou Brigitte", "name": "Bijou Brigitte", "shop": "jewelry"}, "removeTags": {"brand": "Bijou Brigitte", "brand:wikidata": "Q599545", "brand:wikipedia": "de:Bijou Brigitte", "name": "Bijou Brigitte", "shop": "jewelry"}, "matchScore": 2, "suggestion": true}, - "shop/jewelry/Cartier": {"name": "Cartier", "icon": "maki-jewelry-store", "imageURL": "https://pbs.twimg.com/profile_images/1069613895952814082/1g7XABSC_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q538587"}, "addTags": {"brand": "Cartier", "brand:wikidata": "Q538587", "brand:wikipedia": "en:Cartier (jeweler)", "name": "Cartier", "shop": "jewelry"}, "removeTags": {"brand": "Cartier", "brand:wikidata": "Q538587", "brand:wikipedia": "en:Cartier (jeweler)", "name": "Cartier", "shop": "jewelry"}, "matchScore": 2, "suggestion": true}, + "shop/jewelry/Apart": {"name": "Apart", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/BizuteriaApart/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q11686561"}, "addTags": {"brand": "Apart", "brand:wikidata": "Q11686561", "brand:wikipedia": "pl:Apart", "name": "Apart", "shop": "jewelry"}, "removeTags": {"brand": "Apart", "brand:wikidata": "Q11686561", "brand:wikipedia": "pl:Apart", "name": "Apart", "shop": "jewelry"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/jewelry/Bijou Brigitte": {"name": "Bijou Brigitte", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/bijoubrigitte/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q599545"}, "addTags": {"brand": "Bijou Brigitte", "brand:wikidata": "Q599545", "brand:wikipedia": "de:Bijou Brigitte", "name": "Bijou Brigitte", "shop": "jewelry"}, "removeTags": {"brand": "Bijou Brigitte", "brand:wikidata": "Q599545", "brand:wikipedia": "de:Bijou Brigitte", "name": "Bijou Brigitte", "shop": "jewelry"}, "matchScore": 2, "suggestion": true}, + "shop/jewelry/Cartier": {"name": "Cartier", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/cartier.usa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q538587"}, "addTags": {"brand": "Cartier", "brand:wikidata": "Q538587", "brand:wikipedia": "en:Cartier (jeweler)", "name": "Cartier", "shop": "jewelry"}, "removeTags": {"brand": "Cartier", "brand:wikidata": "Q538587", "brand:wikipedia": "en:Cartier (jeweler)", "name": "Cartier", "shop": "jewelry"}, "matchScore": 2, "suggestion": true}, "shop/jewelry/Christ": {"name": "Christ", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/juwelierchrist/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q1077957"}, "addTags": {"brand": "Christ", "brand:wikidata": "Q1077957", "brand:wikipedia": "de:Christ (Juwelier)", "name": "Christ", "shop": "jewelry"}, "removeTags": {"brand": "Christ", "brand:wikidata": "Q1077957", "brand:wikipedia": "de:Christ (Juwelier)", "name": "Christ", "shop": "jewelry"}, "countryCodes": ["ch", "de", "nl"], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Claire's": {"name": "Claire's", "icon": "maki-jewelry-store", "imageURL": "https://pbs.twimg.com/profile_images/767994085592408064/jKX5mOQQ_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q2974996"}, "addTags": {"brand": "Claire's", "brand:wikidata": "Q2974996", "brand:wikipedia": "en:Claire's", "name": "Claire's", "shop": "jewelry"}, "removeTags": {"brand": "Claire's", "brand:wikidata": "Q2974996", "brand:wikipedia": "en:Claire's", "name": "Claire's", "shop": "jewelry"}, "matchScore": 2, "suggestion": true}, - "shop/jewelry/Ernest Jones": {"name": "Ernest Jones", "icon": "maki-jewelry-store", "imageURL": "https://pbs.twimg.com/profile_images/786588875812659200/xIr7E161_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q5393358"}, "addTags": {"brand": "Ernest Jones", "brand:wikidata": "Q5393358", "brand:wikipedia": "en:Ernest Jones (retailer)", "name": "Ernest Jones", "shop": "jewelry"}, "removeTags": {"brand": "Ernest Jones", "brand:wikidata": "Q5393358", "brand:wikipedia": "en:Ernest Jones (retailer)", "name": "Ernest Jones", "shop": "jewelry"}, "matchScore": 2, "suggestion": true}, - "shop/jewelry/Guldfynd": {"name": "Guldfynd", "icon": "maki-jewelry-store", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q49099223"}, "addTags": {"brand": "Guldfynd", "brand:wikidata": "Q49099223", "brand:wikipedia": "sv:Guldfynd", "name": "Guldfynd", "shop": "jewelry"}, "removeTags": {"brand": "Guldfynd", "brand:wikidata": "Q49099223", "brand:wikipedia": "sv:Guldfynd", "name": "Guldfynd", "shop": "jewelry"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, - "shop/jewelry/H Samuel": {"name": "H Samuel", "icon": "maki-jewelry-store", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q5628558"}, "addTags": {"brand": "H Samuel", "brand:wikidata": "Q5628558", "brand:wikipedia": "en:H. Samuel", "name": "H Samuel", "shop": "jewelry"}, "removeTags": {"brand": "H Samuel", "brand:wikidata": "Q5628558", "brand:wikipedia": "en:H. Samuel", "name": "H Samuel", "shop": "jewelry"}, "matchScore": 2, "suggestion": true}, + "shop/jewelry/Claire's": {"name": "Claire's", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/claires/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q2974996"}, "addTags": {"brand": "Claire's", "brand:wikidata": "Q2974996", "brand:wikipedia": "en:Claire's", "name": "Claire's", "shop": "jewelry"}, "removeTags": {"brand": "Claire's", "brand:wikidata": "Q2974996", "brand:wikipedia": "en:Claire's", "name": "Claire's", "shop": "jewelry"}, "matchScore": 2, "suggestion": true}, + "shop/jewelry/Ernest Jones": {"name": "Ernest Jones", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/ernestjonesjewellers/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q5393358"}, "addTags": {"brand": "Ernest Jones", "brand:wikidata": "Q5393358", "brand:wikipedia": "en:Ernest Jones (retailer)", "name": "Ernest Jones", "shop": "jewelry"}, "removeTags": {"brand": "Ernest Jones", "brand:wikidata": "Q5393358", "brand:wikipedia": "en:Ernest Jones (retailer)", "name": "Ernest Jones", "shop": "jewelry"}, "matchScore": 2, "suggestion": true}, + "shop/jewelry/Guldfynd": {"name": "Guldfynd", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/Guldfynd/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q49099223"}, "addTags": {"brand": "Guldfynd", "brand:wikidata": "Q49099223", "brand:wikipedia": "sv:Guldfynd", "name": "Guldfynd", "shop": "jewelry"}, "removeTags": {"brand": "Guldfynd", "brand:wikidata": "Q49099223", "brand:wikipedia": "sv:Guldfynd", "name": "Guldfynd", "shop": "jewelry"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, + "shop/jewelry/H Samuel": {"name": "H Samuel", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/HSamuelTheJeweller/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q5628558"}, "addTags": {"brand": "H Samuel", "brand:wikidata": "Q5628558", "brand:wikipedia": "en:H. Samuel", "name": "H Samuel", "shop": "jewelry"}, "removeTags": {"brand": "H Samuel", "brand:wikidata": "Q5628558", "brand:wikipedia": "en:H. Samuel", "name": "H Samuel", "shop": "jewelry"}, "matchScore": 2, "suggestion": true}, + "shop/jewelry/Histoire d'Or": {"name": "Histoire d'Or", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/HistoiredOr/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q62529245"}, "addTags": {"brand": "Histoire d'Or", "brand:wikidata": "Q62529245", "name": "Histoire d'Or", "shop": "jewelry"}, "removeTags": {"brand": "Histoire d'Or", "brand:wikidata": "Q62529245", "name": "Histoire d'Or", "shop": "jewelry"}, "countryCodes": ["be", "fr", "it", "nl"], "matchScore": 2, "suggestion": true}, "shop/jewelry/James Avery Jewelry": {"name": "James Avery Jewelry", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/JamesAvery/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q6129024"}, "addTags": {"brand": "James Avery Jewelry", "brand:wikidata": "Q6129024", "brand:wikipedia": "en:James Avery Artisan Jewelry", "name": "James Avery Jewelry", "shop": "jewelry"}, "removeTags": {"brand": "James Avery Jewelry", "brand:wikidata": "Q6129024", "brand:wikipedia": "en:James Avery Artisan Jewelry", "name": "James Avery Jewelry", "shop": "jewelry"}, "matchScore": 2, "suggestion": true}, - "shop/jewelry/Jared": {"name": "Jared", "icon": "maki-jewelry-store", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q62029282"}, "addTags": {"brand": "Jared", "brand:wikidata": "Q62029282", "name": "Jared", "operator": "Sterling Jewelers", "operator:wikidata": "Q7611434", "shop": "jewelry"}, "removeTags": {"brand": "Jared", "brand:wikidata": "Q62029282", "name": "Jared", "operator": "Sterling Jewelers", "operator:wikidata": "Q7611434", "shop": "jewelry"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Kay Jewelers": {"name": "Kay Jewelers", "icon": "maki-jewelry-store", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q62029290"}, "addTags": {"brand": "Kay Jewelers", "brand:wikidata": "Q62029290", "name": "Kay Jewelers", "operator": "Sterling Jewelers", "operator:wikidata": "Q7611434", "shop": "jewelry"}, "removeTags": {"brand": "Kay Jewelers", "brand:wikidata": "Q62029290", "name": "Kay Jewelers", "operator": "Sterling Jewelers", "operator:wikidata": "Q7611434", "shop": "jewelry"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/jewelry/Jared": {"name": "Jared", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/JaredTheGalleriaOfJewelry/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q62029282"}, "addTags": {"brand": "Jared", "brand:wikidata": "Q62029282", "name": "Jared", "operator": "Sterling Jewelers", "operator:wikidata": "Q7611434", "operator:wikipedia": "en:Sterling Jewelers", "shop": "jewelry"}, "removeTags": {"brand": "Jared", "brand:wikidata": "Q62029282", "name": "Jared", "operator": "Sterling Jewelers", "operator:wikidata": "Q7611434", "operator:wikipedia": "en:Sterling Jewelers", "shop": "jewelry"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/jewelry/Julien d'Orcel": {"name": "Julien d'Orcel", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/juliendorcel.bijouteries/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q62497463"}, "addTags": {"brand": "Julien d'Orcel", "brand:wikidata": "Q62497463", "name": "Julien d'Orcel", "shop": "jewelry"}, "removeTags": {"brand": "Julien d'Orcel", "brand:wikidata": "Q62497463", "name": "Julien d'Orcel", "shop": "jewelry"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/jewelry/Kay Jewelers": {"name": "Kay Jewelers", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/KayJewelers/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q62029290"}, "addTags": {"brand": "Kay Jewelers", "brand:wikidata": "Q62029290", "name": "Kay Jewelers", "operator": "Sterling Jewelers", "operator:wikidata": "Q7611434", "operator:wikipedia": "en:Sterling Jewelers", "shop": "jewelry"}, "removeTags": {"brand": "Kay Jewelers", "brand:wikidata": "Q62029290", "name": "Kay Jewelers", "operator": "Sterling Jewelers", "operator:wikidata": "Q7611434", "operator:wikipedia": "en:Sterling Jewelers", "shop": "jewelry"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/jewelry/PNJ": {"name": "PNJ", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/PNJ.COM.VN/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q61129183"}, "addTags": {"brand": "PNJ", "brand:wikidata": "Q61129183", "brand:wikipedia": "vi:PNJ", "name": "PNJ", "shop": "jewelry"}, "removeTags": {"brand": "PNJ", "brand:wikidata": "Q61129183", "brand:wikipedia": "vi:PNJ", "name": "PNJ", "shop": "jewelry"}, "matchScore": 2, "suggestion": true}, "shop/jewelry/Pandora": {"name": "Pandora", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/PANDORA.Japan/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q2241604"}, "addTags": {"brand": "Pandora", "brand:wikidata": "Q2241604", "brand:wikipedia": "en:Pandora (jewelry)", "name": "Pandora", "shop": "jewelry"}, "removeTags": {"brand": "Pandora", "brand:wikidata": "Q2241604", "brand:wikipedia": "en:Pandora (jewelry)", "name": "Pandora", "shop": "jewelry"}, "matchScore": 2, "suggestion": true}, - "shop/jewelry/Swarovski": {"name": "Swarovski", "icon": "maki-jewelry-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSwarovski%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q611115"}, "addTags": {"brand": "Swarovski", "brand:wikidata": "Q611115", "brand:wikipedia": "en:Swarovski", "name": "Swarovski", "shop": "jewelry"}, "removeTags": {"brand": "Swarovski", "brand:wikidata": "Q611115", "brand:wikipedia": "en:Swarovski", "name": "Swarovski", "shop": "jewelry"}, "matchScore": 2, "suggestion": true}, - "shop/kiosk/Lietuvos spauda": {"name": "Lietuvos spauda", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "kiosk", "brand:wikidata": "Q6514414"}, "addTags": {"brand": "Lietuvos spauda", "brand:wikidata": "Q6514414", "brand:wikipedia": "lt:Lietuvos spauda", "name": "Lietuvos spauda", "shop": "kiosk"}, "removeTags": {"brand": "Lietuvos spauda", "brand:wikidata": "Q6514414", "brand:wikipedia": "lt:Lietuvos spauda", "name": "Lietuvos spauda", "shop": "kiosk"}, "countryCodes": ["lt"], "matchScore": 2, "suggestion": true}, - "shop/kiosk/Narvesen": {"name": "Narvesen", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "kiosk", "brand:wikidata": "Q6514414"}, "addTags": {"brand": "Narvesen", "brand:wikidata": "Q6514414", "brand:wikipedia": "en:Narvesen", "name": "Narvesen", "shop": "kiosk"}, "removeTags": {"brand": "Narvesen", "brand:wikidata": "Q6514414", "brand:wikipedia": "en:Narvesen", "name": "Narvesen", "shop": "kiosk"}, "matchScore": 2, "suggestion": true}, - "shop/kiosk/Pressbyrån": {"name": "Pressbyrån", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "kiosk", "brand:wikidata": "Q2489072"}, "addTags": {"brand": "Pressbyrån", "brand:wikidata": "Q2489072", "brand:wikipedia": "en:Pressbyrån", "name": "Pressbyrån", "shop": "kiosk"}, "removeTags": {"brand": "Pressbyrån", "brand:wikidata": "Q2489072", "brand:wikipedia": "en:Pressbyrån", "name": "Pressbyrån", "shop": "kiosk"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, + "shop/jewelry/Swarovski": {"name": "Swarovski", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/SWAROVSKI.NorthAmerica/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q611115"}, "addTags": {"brand": "Swarovski", "brand:wikidata": "Q611115", "brand:wikipedia": "en:Swarovski", "name": "Swarovski", "shop": "jewelry"}, "removeTags": {"brand": "Swarovski", "brand:wikidata": "Q611115", "brand:wikipedia": "en:Swarovski", "name": "Swarovski", "shop": "jewelry"}, "matchScore": 2, "suggestion": true}, + "shop/jewelry/Адамас": {"name": "Адамас", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/adamas.club/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "jewelry", "brand:wikidata": "Q62393709"}, "addTags": {"brand": "Адамас", "brand:wikidata": "Q62393709", "name": "Адамас", "shop": "jewelry"}, "removeTags": {"brand": "Адамас", "brand:wikidata": "Q62393709", "name": "Адамас", "shop": "jewelry"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/kiosk/Lietuvos spauda": {"name": "Lietuvos spauda", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/narvesen.no/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "kiosk", "brand:wikidata": "Q6514414"}, "addTags": {"brand": "Lietuvos spauda", "brand:wikidata": "Q6514414", "brand:wikipedia": "lt:Lietuvos spauda", "name": "Lietuvos spauda", "shop": "kiosk"}, "removeTags": {"brand": "Lietuvos spauda", "brand:wikidata": "Q6514414", "brand:wikipedia": "lt:Lietuvos spauda", "name": "Lietuvos spauda", "shop": "kiosk"}, "countryCodes": ["lt"], "matchScore": 2, "suggestion": true}, + "shop/kiosk/Narvesen": {"name": "Narvesen", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/narvesen.no/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "kiosk", "brand:wikidata": "Q6514414"}, "addTags": {"brand": "Narvesen", "brand:wikidata": "Q6514414", "brand:wikipedia": "en:Narvesen", "name": "Narvesen", "shop": "kiosk"}, "removeTags": {"brand": "Narvesen", "brand:wikidata": "Q6514414", "brand:wikipedia": "en:Narvesen", "name": "Narvesen", "shop": "kiosk"}, "matchScore": 2, "suggestion": true}, + "shop/kiosk/Pressbyrån": {"name": "Pressbyrån", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Pressbyran/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "kiosk", "brand:wikidata": "Q2489072"}, "addTags": {"brand": "Pressbyrån", "brand:wikidata": "Q2489072", "brand:wikipedia": "en:Pressbyrån", "name": "Pressbyrån", "shop": "kiosk"}, "removeTags": {"brand": "Pressbyrån", "brand:wikidata": "Q2489072", "brand:wikipedia": "en:Pressbyrån", "name": "Pressbyrån", "shop": "kiosk"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, "shop/kiosk/R-Kioski": {"name": "R-Kioski", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/rkioski/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "kiosk", "brand:wikidata": "Q1571400"}, "addTags": {"brand": "R-Kioski", "brand:wikidata": "Q1571400", "brand:wikipedia": "en:R-kioski", "name": "R-Kioski", "shop": "kiosk"}, "removeTags": {"brand": "R-Kioski", "brand:wikidata": "Q1571400", "brand:wikipedia": "en:R-kioski", "name": "R-Kioski", "shop": "kiosk"}, "matchScore": 2, "suggestion": true}, - "shop/kiosk/Ruch": {"name": "Ruch", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLOGO%20RUCH%20g%C5%82%C3%B3wne.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "kiosk", "brand:wikidata": "Q1260314"}, "addTags": {"brand": "Ruch", "brand:wikidata": "Q1260314", "brand:wikipedia": "pl:Ruch (przedsiębiorstwo)", "name": "Ruch", "shop": "kiosk"}, "removeTags": {"brand": "Ruch", "brand:wikidata": "Q1260314", "brand:wikipedia": "pl:Ruch (przedsiębiorstwo)", "name": "Ruch", "shop": "kiosk"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/kiosk/Tisak": {"name": "Tisak", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTisak%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "kiosk", "brand:wikidata": "Q12643627"}, "addTags": {"brand": "Tisak", "brand:wikidata": "Q12643627", "brand:wikipedia": "hr:Tisak (tvrtka)", "name": "Tisak", "shop": "kiosk"}, "removeTags": {"brand": "Tisak", "brand:wikidata": "Q12643627", "brand:wikipedia": "hr:Tisak (tvrtka)", "name": "Tisak", "shop": "kiosk"}, "matchScore": 2, "suggestion": true}, - "shop/kiosk/k kiosk": {"name": "k kiosk", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "kiosk", "brand:wikidata": "Q60381703"}, "addTags": {"brand": "k kiosk", "brand:wikidata": "Q60381703", "brand:wikipedia": "it:K Kiosk", "name": "k kiosk", "shop": "kiosk"}, "removeTags": {"brand": "k kiosk", "brand:wikidata": "Q60381703", "brand:wikipedia": "it:K Kiosk", "name": "k kiosk", "shop": "kiosk"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, - "shop/kitchen/Cuisinella": {"name": "Cuisinella", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "kitchen", "brand:wikidata": "Q3007012"}, "addTags": {"brand": "Cuisinella", "brand:wikidata": "Q3007012", "brand:wikipedia": "fr:Cuisinella", "name": "Cuisinella", "shop": "kitchen"}, "removeTags": {"brand": "Cuisinella", "brand:wikidata": "Q3007012", "brand:wikipedia": "fr:Cuisinella", "name": "Cuisinella", "shop": "kitchen"}, "matchScore": 2, "suggestion": true}, - "shop/kitchen/Schmidt": {"name": "Schmidt", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "kitchen", "brand:wikidata": "Q3487620"}, "addTags": {"brand": "Schmidt", "brand:wikidata": "Q3487620", "brand:wikipedia": "de:Schmidt Groupe", "name": "Schmidt", "shop": "kitchen"}, "removeTags": {"brand": "Schmidt", "brand:wikidata": "Q3487620", "brand:wikipedia": "de:Schmidt Groupe", "name": "Schmidt", "shop": "kitchen"}, "matchScore": 2, "suggestion": true}, - "shop/massage/Massage Envy": {"name": "Massage Envy", "icon": "temaki-spa", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMassage%20Envy%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "massage", "brand:wikidata": "Q22922899"}, "addTags": {"brand": "Massage Envy", "brand:wikidata": "Q22922899", "brand:wikipedia": "en:Massage Envy", "name": "Massage Envy", "shop": "massage"}, "removeTags": {"brand": "Massage Envy", "brand:wikidata": "Q22922899", "brand:wikipedia": "en:Massage Envy", "name": "Massage Envy", "shop": "massage"}, "matchScore": 2, "suggestion": true}, + "shop/kiosk/Ruch": {"name": "Ruch", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/ruch/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "kiosk", "brand:wikidata": "Q1260314"}, "addTags": {"brand": "Ruch", "brand:wikidata": "Q1260314", "brand:wikipedia": "pl:Ruch (przedsiębiorstwo)", "name": "Ruch", "shop": "kiosk"}, "removeTags": {"brand": "Ruch", "brand:wikidata": "Q1260314", "brand:wikipedia": "pl:Ruch (przedsiębiorstwo)", "name": "Ruch", "shop": "kiosk"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/kiosk/Tisak": {"name": "Tisak", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/tisakmedia/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "kiosk", "brand:wikidata": "Q12643627"}, "addTags": {"brand": "Tisak", "brand:wikidata": "Q12643627", "brand:wikipedia": "hr:Tisak (tvrtka)", "name": "Tisak", "shop": "kiosk"}, "removeTags": {"brand": "Tisak", "brand:wikidata": "Q12643627", "brand:wikipedia": "hr:Tisak (tvrtka)", "name": "Tisak", "shop": "kiosk"}, "matchScore": 2, "suggestion": true}, + "shop/kiosk/k kiosk": {"name": "k kiosk", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/kkiosk/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "kiosk", "brand:wikidata": "Q60381703"}, "addTags": {"brand": "k kiosk", "brand:wikidata": "Q60381703", "brand:wikipedia": "it:K Kiosk", "name": "k kiosk", "shop": "kiosk"}, "removeTags": {"brand": "k kiosk", "brand:wikidata": "Q60381703", "brand:wikipedia": "it:K Kiosk", "name": "k kiosk", "shop": "kiosk"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, + "shop/kitchen/Cuisinella": {"name": "Cuisinella", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/CuisinellaFR/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "kitchen", "brand:wikidata": "Q3007012"}, "addTags": {"brand": "Cuisinella", "brand:wikidata": "Q3007012", "brand:wikipedia": "fr:Cuisinella", "name": "Cuisinella", "shop": "kitchen"}, "removeTags": {"brand": "Cuisinella", "brand:wikidata": "Q3007012", "brand:wikipedia": "fr:Cuisinella", "name": "Cuisinella", "shop": "kitchen"}, "matchScore": 2, "suggestion": true}, + "shop/kitchen/Mobalpa": {"name": "Mobalpa", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "kitchen", "brand:wikidata": "Q3317571"}, "addTags": {"brand": "Mobalpa", "brand:wikidata": "Q3317571", "brand:wikipedia": "fr:Mobalpa", "name": "Mobalpa", "shop": "kitchen"}, "removeTags": {"brand": "Mobalpa", "brand:wikidata": "Q3317571", "brand:wikipedia": "fr:Mobalpa", "name": "Mobalpa", "shop": "kitchen"}, "matchScore": 2, "suggestion": true}, + "shop/kitchen/Schmidt": {"name": "Schmidt", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Schmidt.HomeDesign/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "kitchen", "brand:wikidata": "Q3487620"}, "addTags": {"brand": "Schmidt", "brand:wikidata": "Q3487620", "brand:wikipedia": "de:Schmidt Groupe", "name": "Schmidt", "shop": "kitchen"}, "removeTags": {"brand": "Schmidt", "brand:wikidata": "Q3487620", "brand:wikipedia": "de:Schmidt Groupe", "name": "Schmidt", "shop": "kitchen"}, "matchScore": 2, "suggestion": true}, + "shop/kitchen/SoCoo'c": {"name": "SoCoo'c", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "kitchen", "brand:wikidata": "Q62783840"}, "addTags": {"brand": "SoCoo'c", "brand:wikidata": "Q62783840", "brand:wikipedia": "fr:SoCoo'c", "name": "SoCoo'c", "shop": "kitchen"}, "removeTags": {"brand": "SoCoo'c", "brand:wikidata": "Q62783840", "brand:wikipedia": "fr:SoCoo'c", "name": "SoCoo'c", "shop": "kitchen"}, "matchScore": 2, "suggestion": true}, + "shop/massage/Massage Envy": {"name": "Massage Envy", "icon": "temaki-spa", "imageURL": "https://graph.facebook.com/MassageEnvy/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "massage", "brand:wikidata": "Q22922899"}, "addTags": {"brand": "Massage Envy", "brand:wikidata": "Q22922899", "brand:wikipedia": "en:Massage Envy", "name": "Massage Envy", "shop": "massage"}, "removeTags": {"brand": "Massage Envy", "brand:wikidata": "Q22922899", "brand:wikipedia": "en:Massage Envy", "name": "Massage Envy", "shop": "massage"}, "matchScore": 2, "suggestion": true}, "shop/medical_supply/Pofam-Poznań": {"name": "Pofam-Poznań", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "medical_supply", "brand:wikidata": "Q62057457"}, "addTags": {"brand": "Pofam-Poznań", "brand:wikidata": "Q62057457", "name": "Pofam-Poznań", "shop": "medical_supply"}, "removeTags": {"brand": "Pofam-Poznań", "brand:wikidata": "Q62057457", "name": "Pofam-Poznań", "shop": "medical_supply"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/3 Store": {"name": "3 Store", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/967985753027362816/2jPkroPW_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q407009"}, "addTags": {"brand": "3 Store", "brand:wikidata": "Q407009", "brand:wikipedia": "en:3 (telecommunications)", "name": "3 Store", "shop": "mobile_phone"}, "removeTags": {"brand": "3 Store", "brand:wikidata": "Q407009", "brand:wikipedia": "en:3 (telecommunications)", "name": "3 Store", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/AT&T": {"name": "AT&T", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/1062348760670339073/egM1bS-c_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q298594"}, "addTags": {"brand": "AT&T", "brand:wikidata": "Q298594", "brand:wikipedia": "en:AT&T Mobility", "name": "AT&T", "shop": "mobile_phone"}, "removeTags": {"brand": "AT&T", "brand:wikidata": "Q298594", "brand:wikipedia": "en:AT&T Mobility", "name": "AT&T", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Bell": {"name": "Bell", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBell%20Mobility%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2894594"}, "addTags": {"brand": "Bell", "brand:wikidata": "Q2894594", "brand:wikipedia": "en:Bell Mobility", "name": "Bell", "shop": "mobile_phone"}, "removeTags": {"brand": "Bell", "brand:wikidata": "Q2894594", "brand:wikipedia": "en:Bell Mobility", "name": "Bell", "shop": "mobile_phone"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Boost Mobile": {"name": "Boost Mobile", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q4943790"}, "addTags": {"brand": "Boost Mobile", "brand:wikidata": "Q4943790", "brand:wikipedia": "en:Boost Mobile", "name": "Boost Mobile", "shop": "mobile_phone"}, "removeTags": {"brand": "Boost Mobile", "brand:wikidata": "Q4943790", "brand:wikipedia": "en:Boost Mobile", "name": "Boost Mobile", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Carphone Warehouse": {"name": "Carphone Warehouse", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCarphone%20Warehouse%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q118046"}, "addTags": {"brand": "Carphone Warehouse", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Carphone Warehouse", "shop": "mobile_phone"}, "removeTags": {"brand": "Carphone Warehouse", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Carphone Warehouse", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Claro": {"name": "Claro", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogoClaro2017.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1770208"}, "addTags": {"brand": "Claro", "brand:wikidata": "Q1770208", "brand:wikipedia": "en:Claro (company)", "name": "Claro", "shop": "mobile_phone"}, "removeTags": {"brand": "Claro", "brand:wikidata": "Q1770208", "brand:wikipedia": "en:Claro (company)", "name": "Claro", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Cricket Wireless": {"name": "Cricket Wireless", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Cricketnation/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q5184987"}, "addTags": {"brand": "Cricket Wireless", "brand:wikidata": "Q5184987", "brand:wikipedia": "en:Cricket Wireless", "name": "Cricket Wireless", "shop": "mobile_phone"}, "removeTags": {"brand": "Cricket Wireless", "brand:wikidata": "Q5184987", "brand:wikipedia": "en:Cricket Wireless", "name": "Cricket Wireless", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Digicel": {"name": "Digicel", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/889845742998872066/-5EbELrp_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2117506"}, "addTags": {"brand": "Digicel", "brand:wikidata": "Q2117506", "brand:wikipedia": "en:Digicel", "name": "Digicel", "shop": "mobile_phone"}, "removeTags": {"brand": "Digicel", "brand:wikidata": "Q2117506", "brand:wikipedia": "en:Digicel", "name": "Digicel", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/EE": {"name": "EE", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/948161522362126336/Gh7TJbt3_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q5322942"}, "addTags": {"brand": "EE", "brand:wikidata": "Q5322942", "brand:wikipedia": "en:EE Limited", "name": "EE", "shop": "mobile_phone"}, "removeTags": {"brand": "EE", "brand:wikidata": "Q5322942", "brand:wikipedia": "en:EE Limited", "name": "EE", "shop": "mobile_phone"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Entel": {"name": "Entel", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FENTel%20Argentina%20-%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q5323742"}, "addTags": {"brand": "Entel", "brand:wikidata": "Q5323742", "brand:wikipedia": "en:ENTel", "name": "Entel", "shop": "mobile_phone"}, "removeTags": {"brand": "Entel", "brand:wikidata": "Q5323742", "brand:wikipedia": "en:ENTel", "name": "Entel", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Freedom Mobile": {"name": "Freedom Mobile", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWind%20Italia.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q8023931"}, "addTags": {"brand": "Freedom Mobile", "brand:wikidata": "Q8023931", "brand:wikipedia": "en:Freedom Mobile", "name": "Freedom Mobile", "shop": "mobile_phone"}, "removeTags": {"brand": "Freedom Mobile", "brand:wikidata": "Q8023931", "brand:wikipedia": "en:Freedom Mobile", "name": "Freedom Mobile", "shop": "mobile_phone"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/MTN": {"name": "MTN", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMTN%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1813361"}, "addTags": {"brand": "MTN", "brand:wikidata": "Q1813361", "brand:wikipedia": "en:MTN Group", "name": "MTN", "shop": "mobile_phone"}, "removeTags": {"brand": "MTN", "brand:wikidata": "Q1813361", "brand:wikipedia": "en:MTN Group", "name": "MTN", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/MetroPCS": {"name": "MetroPCS", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/1059487459292016644/jtMoU5Ql_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1925685"}, "addTags": {"brand": "MetroPCS", "brand:wikidata": "Q1925685", "brand:wikipedia": "en:Metro by T-Mobile", "name": "MetroPCS", "shop": "mobile_phone"}, "removeTags": {"brand": "MetroPCS", "brand:wikidata": "Q1925685", "brand:wikipedia": "en:Metro by T-Mobile", "name": "MetroPCS", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/medical_supply/Ортека": {"name": "Ортека", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/orteka.rus/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "medical_supply", "brand:wikidata": "Q62393660"}, "addTags": {"brand": "Ортека", "brand:wikidata": "Q62393660", "name": "Ортека", "shop": "medical_supply"}, "removeTags": {"brand": "Ортека", "brand:wikidata": "Q62393660", "name": "Ортека", "shop": "medical_supply"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/3 Store": {"name": "3 Store", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/ThreeUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q407009"}, "addTags": {"brand": "3 Store", "brand:wikidata": "Q407009", "brand:wikipedia": "en:3 (telecommunications)", "name": "3 Store", "shop": "mobile_phone"}, "removeTags": {"brand": "3 Store", "brand:wikidata": "Q407009", "brand:wikipedia": "en:3 (telecommunications)", "name": "3 Store", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/AT&T": {"name": "AT&T", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/ATT/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q298594"}, "addTags": {"brand": "AT&T", "brand:wikidata": "Q298594", "brand:wikipedia": "en:AT&T Mobility", "name": "AT&T", "shop": "mobile_phone"}, "removeTags": {"brand": "AT&T", "brand:wikidata": "Q298594", "brand:wikipedia": "en:AT&T Mobility", "name": "AT&T", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Bell": {"name": "Bell", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/BellCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2894594"}, "addTags": {"brand": "Bell", "brand:wikidata": "Q2894594", "brand:wikipedia": "en:Bell Mobility", "name": "Bell", "shop": "mobile_phone"}, "removeTags": {"brand": "Bell", "brand:wikidata": "Q2894594", "brand:wikipedia": "en:Bell Mobility", "name": "Bell", "shop": "mobile_phone"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Bitė": {"name": "Bitė", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q796010"}, "addTags": {"brand": "Bitė", "brand:wikidata": "Q796010", "brand:wikipedia": "lt:Bitės grupė", "name": "Bitė", "shop": "mobile_phone"}, "removeTags": {"brand": "Bitė", "brand:wikidata": "Q796010", "brand:wikipedia": "lt:Bitės grupė", "name": "Bitė", "shop": "mobile_phone"}, "countryCodes": ["lt"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Boost Mobile": {"name": "Boost Mobile", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/boostmobile/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q4943790"}, "addTags": {"brand": "Boost Mobile", "brand:wikidata": "Q4943790", "brand:wikipedia": "en:Boost Mobile", "name": "Boost Mobile", "shop": "mobile_phone"}, "removeTags": {"brand": "Boost Mobile", "brand:wikidata": "Q4943790", "brand:wikipedia": "en:Boost Mobile", "name": "Boost Mobile", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Carphone Warehouse": {"name": "Carphone Warehouse", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/carphonewarehouse/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q118046"}, "addTags": {"brand": "Carphone Warehouse", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Carphone Warehouse", "shop": "mobile_phone"}, "removeTags": {"brand": "Carphone Warehouse", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Carphone Warehouse", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Claro": {"name": "Claro", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/ClaroCol/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1770208"}, "addTags": {"brand": "Claro", "brand:wikidata": "Q1770208", "brand:wikipedia": "en:Claro (company)", "name": "Claro", "shop": "mobile_phone"}, "removeTags": {"brand": "Claro", "brand:wikidata": "Q1770208", "brand:wikipedia": "en:Claro (company)", "name": "Claro", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Cricket Wireless": {"name": "Cricket Wireless", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/cricketwireless/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q5184987"}, "addTags": {"brand": "Cricket Wireless", "brand:wikidata": "Q5184987", "brand:wikipedia": "en:Cricket Wireless", "name": "Cricket Wireless", "shop": "mobile_phone"}, "removeTags": {"brand": "Cricket Wireless", "brand:wikidata": "Q5184987", "brand:wikipedia": "en:Cricket Wireless", "name": "Cricket Wireless", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Digicel": {"name": "Digicel", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/digicel/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2117506"}, "addTags": {"brand": "Digicel", "brand:wikidata": "Q2117506", "brand:wikipedia": "en:Digicel", "name": "Digicel", "shop": "mobile_phone"}, "removeTags": {"brand": "Digicel", "brand:wikidata": "Q2117506", "brand:wikipedia": "en:Digicel", "name": "Digicel", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/EE": {"name": "EE", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/ee/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q5322942"}, "addTags": {"brand": "EE", "brand:wikidata": "Q5322942", "brand:wikipedia": "en:EE Limited", "name": "EE", "shop": "mobile_phone"}, "removeTags": {"brand": "EE", "brand:wikidata": "Q5322942", "brand:wikipedia": "en:EE Limited", "name": "EE", "shop": "mobile_phone"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Entel": {"name": "Entel", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/entelsa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q450420"}, "addTags": {"brand": "Entel", "brand:wikidata": "Q450420", "brand:wikipedia": "en:Entel (Chile)", "name": "Entel", "shop": "mobile_phone"}, "removeTags": {"brand": "Entel", "brand:wikidata": "Q450420", "brand:wikipedia": "en:Entel (Chile)", "name": "Entel", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Freedom Mobile": {"name": "Freedom Mobile", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/frdmmobile/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q8023931"}, "addTags": {"brand": "Freedom Mobile", "brand:wikidata": "Q8023931", "brand:wikipedia": "en:Freedom Mobile", "name": "Freedom Mobile", "shop": "mobile_phone"}, "removeTags": {"brand": "Freedom Mobile", "brand:wikidata": "Q8023931", "brand:wikipedia": "en:Freedom Mobile", "name": "Freedom Mobile", "shop": "mobile_phone"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/MTN": {"name": "MTN", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/MTN/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1813361"}, "addTags": {"brand": "MTN", "brand:wikidata": "Q1813361", "brand:wikipedia": "en:MTN Group", "name": "MTN", "shop": "mobile_phone"}, "removeTags": {"brand": "MTN", "brand:wikidata": "Q1813361", "brand:wikipedia": "en:MTN Group", "name": "MTN", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/MetroPCS": {"name": "MetroPCS", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/MetroByTMobile/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1925685"}, "addTags": {"brand": "MetroPCS", "brand:wikidata": "Q1925685", "brand:wikipedia": "en:Metro by T-Mobile", "name": "MetroPCS", "shop": "mobile_phone"}, "removeTags": {"brand": "MetroPCS", "brand:wikidata": "Q1925685", "brand:wikipedia": "en:Metro by T-Mobile", "name": "MetroPCS", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, "shop/mobile_phone/Mobilcom Debitel": {"name": "Mobilcom Debitel", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q344744"}, "addTags": {"brand": "Mobilcom Debitel", "brand:wikidata": "Q344744", "brand:wikipedia": "en:Debitel", "name": "Mobilcom Debitel", "shop": "mobile_phone"}, "removeTags": {"brand": "Mobilcom Debitel", "brand:wikidata": "Q344744", "brand:wikipedia": "en:Debitel", "name": "Mobilcom Debitel", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Moov": {"name": "Moov", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q3323637"}, "addTags": {"brand": "Moov", "brand:wikidata": "Q3323637", "brand:wikipedia": "fr:Moov Côte d'Ivoire", "name": "Moov", "shop": "mobile_phone"}, "removeTags": {"brand": "Moov", "brand:wikidata": "Q3323637", "brand:wikipedia": "fr:Moov Côte d'Ivoire", "name": "Moov", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Movistar": {"name": "Movistar", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Movistar.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q967735"}, "addTags": {"brand": "Movistar", "brand:wikidata": "Q967735", "brand:wikipedia": "en:Movistar", "name": "Movistar", "shop": "mobile_phone"}, "removeTags": {"brand": "Movistar", "brand:wikidata": "Q967735", "brand:wikipedia": "en:Movistar", "name": "Movistar", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/O2": {"name": "O2", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FO2.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q7072246"}, "addTags": {"brand": "O2", "brand:wikidata": "Q7072246", "brand:wikipedia": "en:O2 (Ireland)", "name": "O2", "shop": "mobile_phone"}, "removeTags": {"brand": "O2", "brand:wikidata": "Q7072246", "brand:wikipedia": "en:O2 (Ireland)", "name": "O2", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Orange": {"name": "Orange", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/orange/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1431486"}, "addTags": {"brand": "Orange", "brand:wikidata": "Q1431486", "brand:wikipedia": "fr:Orange S.A.", "name": "Orange", "shop": "mobile_phone"}, "removeTags": {"brand": "Orange", "brand:wikidata": "Q1431486", "brand:wikipedia": "fr:Orange S.A.", "name": "Orange", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Phone House": {"name": "Phone House", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCarphone%20Warehouse%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q118046"}, "addTags": {"brand": "Phone House", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Phone House", "shop": "mobile_phone"}, "removeTags": {"brand": "Phone House", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Phone House", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Moov": {"name": "Moov", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/moovcotedivoire/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q3323637"}, "addTags": {"brand": "Moov", "brand:wikidata": "Q3323637", "brand:wikipedia": "fr:Moov Côte d'Ivoire", "name": "Moov", "shop": "mobile_phone"}, "removeTags": {"brand": "Moov", "brand:wikidata": "Q3323637", "brand:wikipedia": "fr:Moov Côte d'Ivoire", "name": "Moov", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Movistar": {"name": "Movistar", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/movistar.es/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q967735"}, "addTags": {"brand": "Movistar", "brand:wikidata": "Q967735", "brand:wikipedia": "en:Movistar", "name": "Movistar", "shop": "mobile_phone"}, "removeTags": {"brand": "Movistar", "brand:wikidata": "Q967735", "brand:wikipedia": "en:Movistar", "name": "Movistar", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/O2": {"name": "O2", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/o2uk/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q7072246"}, "addTags": {"brand": "O2", "brand:wikidata": "Q7072246", "brand:wikipedia": "en:O2 (Ireland)", "name": "O2", "shop": "mobile_phone"}, "removeTags": {"brand": "O2", "brand:wikidata": "Q7072246", "brand:wikipedia": "en:O2 (Ireland)", "name": "O2", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Optie1": {"name": "Optie1", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Optie1/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q62393564"}, "addTags": {"brand": "Optie1", "brand:wikidata": "Q62393564", "name": "Optie1", "shop": "mobile_phone"}, "removeTags": {"brand": "Optie1", "brand:wikidata": "Q62393564", "name": "Optie1", "shop": "mobile_phone"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Orange": {"name": "Orange", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/orange/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1431486"}, "addTags": {"brand": "Orange", "brand:wikidata": "Q1431486", "brand:wikipedia": "fr:Orange (entreprise)", "name": "Orange", "shop": "mobile_phone"}, "removeTags": {"brand": "Orange", "brand:wikidata": "Q1431486", "brand:wikipedia": "fr:Orange (entreprise)", "name": "Orange", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Personal": {"name": "Personal", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/personalargentina/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q10933021"}, "addTags": {"brand": "Personal", "brand:wikidata": "Q10933021", "brand:wikipedia": "es:Personal (Argentina)", "name": "Personal", "shop": "mobile_phone"}, "removeTags": {"brand": "Personal", "brand:wikidata": "Q10933021", "brand:wikipedia": "es:Personal (Argentina)", "name": "Personal", "shop": "mobile_phone"}, "countryCodes": ["ar", "py"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Phone House": {"name": "Phone House", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/carphonewarehouse/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q118046"}, "addTags": {"brand": "Phone House", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Phone House", "shop": "mobile_phone"}, "removeTags": {"brand": "Phone House", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Phone House", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, "shop/mobile_phone/Play": {"name": "Play", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPlay%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q7202998"}, "addTags": {"brand": "Play", "brand:wikidata": "Q7202998", "brand:wikipedia": "pl:Play (sieć telefonii komórkowej)", "name": "Play", "shop": "mobile_phone"}, "removeTags": {"brand": "Play", "brand:wikidata": "Q7202998", "brand:wikipedia": "pl:Play (sieć telefonii komórkowej)", "name": "Play", "shop": "mobile_phone"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Plus": {"name": "Plus", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPlus%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q7205598"}, "addTags": {"brand": "Plus", "brand:wikidata": "Q7205598", "brand:wikipedia": "pl:Plus (sieć telefonii komórkowej)", "name": "Plus", "shop": "mobile_phone"}, "removeTags": {"brand": "Plus", "brand:wikidata": "Q7205598", "brand:wikipedia": "pl:Plus (sieć telefonii komórkowej)", "name": "Plus", "shop": "mobile_phone"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Rogers": {"name": "Rogers", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRogers%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q3439663"}, "addTags": {"brand": "Rogers", "brand:wikidata": "Q3439663", "brand:wikipedia": "en:Rogers Wireless", "name": "Rogers", "shop": "mobile_phone"}, "removeTags": {"brand": "Rogers", "brand:wikidata": "Q3439663", "brand:wikipedia": "en:Rogers Wireless", "name": "Rogers", "shop": "mobile_phone"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/SFR": {"name": "SFR", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/974226187512877056/ZobPImWl_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q218765"}, "addTags": {"brand": "SFR", "brand:wikidata": "Q218765", "brand:wikipedia": "en:SFR", "name": "SFR", "shop": "mobile_phone"}, "removeTags": {"brand": "SFR", "brand:wikidata": "Q218765", "brand:wikipedia": "en:SFR", "name": "SFR", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Sprint": {"name": "Sprint", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/1017724895210295296/LeEVTlNv_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q301965"}, "addTags": {"brand": "Sprint", "brand:wikidata": "Q301965", "brand:wikipedia": "en:Sprint Corporation", "name": "Sprint", "shop": "mobile_phone"}, "removeTags": {"brand": "Sprint", "brand:wikidata": "Q301965", "brand:wikipedia": "en:Sprint Corporation", "name": "Sprint", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/T-Mobile": {"name": "T-Mobile", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/981976280504516608/t6UPf6ru_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q327634"}, "addTags": {"brand": "T-Mobile", "brand:wikidata": "Q327634", "brand:wikipedia": "en:T-Mobile", "name": "T-Mobile", "shop": "mobile_phone"}, "removeTags": {"brand": "T-Mobile", "brand:wikidata": "Q327634", "brand:wikipedia": "en:T-Mobile", "name": "T-Mobile", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/TIM": {"name": "TIM", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTelecom%20italia%202016.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q144617"}, "addTags": {"brand": "TIM", "brand:wikidata": "Q144617", "brand:wikipedia": "en:Telecom Italia", "name": "TIM", "shop": "mobile_phone"}, "removeTags": {"brand": "TIM", "brand:wikidata": "Q144617", "brand:wikipedia": "en:Telecom Italia", "name": "TIM", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Telcel": {"name": "Telcel", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/767798417678405632/hP_WoWZi_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q3517255"}, "addTags": {"brand": "Telcel", "brand:wikidata": "Q3517255", "brand:wikipedia": "en:Telcel", "name": "Telcel", "shop": "mobile_phone"}, "removeTags": {"brand": "Telcel", "brand:wikidata": "Q3517255", "brand:wikipedia": "en:Telcel", "name": "Telcel", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Tele2": {"name": "Tele2", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTele2%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q309865"}, "addTags": {"brand": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Tele2", "shop": "mobile_phone"}, "removeTags": {"brand": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Tele2", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Telekom": {"name": "Telekom", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTelekom%20Logo%202013.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q9396"}, "addTags": {"brand": "Telekom", "brand:wikidata": "Q9396", "brand:wikipedia": "en:Deutsche Telekom", "name": "Telekom", "shop": "mobile_phone"}, "removeTags": {"brand": "Telekom", "brand:wikidata": "Q9396", "brand:wikipedia": "en:Deutsche Telekom", "name": "Telekom", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Telenor": {"name": "Telenor", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTelenor%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q845632"}, "addTags": {"brand": "Telenor", "brand:wikidata": "Q845632", "brand:wikipedia": "en:Telenor", "name": "Telenor", "shop": "mobile_phone"}, "removeTags": {"brand": "Telenor", "brand:wikidata": "Q845632", "brand:wikipedia": "en:Telenor", "name": "Telenor", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Telstra": {"name": "Telstra", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTelstra%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q721162"}, "addTags": {"brand": "Telstra", "brand:wikidata": "Q721162", "brand:wikipedia": "en:Telstra", "name": "Telstra", "shop": "mobile_phone"}, "removeTags": {"brand": "Telstra", "brand:wikidata": "Q721162", "brand:wikipedia": "en:Telstra", "name": "Telstra", "shop": "mobile_phone"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Telus": {"name": "Telus", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTelus-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q165858"}, "addTags": {"brand": "Telus", "brand:wikidata": "Q165858", "brand:wikipedia": "en:Telus", "name": "Telus", "shop": "mobile_phone"}, "removeTags": {"brand": "Telus", "brand:wikidata": "Q165858", "brand:wikipedia": "en:Telus", "name": "Telus", "shop": "mobile_phone"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Plus": {"name": "Plus", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/plus/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q7205598"}, "addTags": {"brand": "Plus", "brand:wikidata": "Q7205598", "brand:wikipedia": "pl:Plus (sieć telefonii komórkowej)", "name": "Plus", "shop": "mobile_phone"}, "removeTags": {"brand": "Plus", "brand:wikidata": "Q7205598", "brand:wikipedia": "pl:Plus (sieć telefonii komórkowej)", "name": "Plus", "shop": "mobile_phone"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Rogers": {"name": "Rogers", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Rogers/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q3439663"}, "addTags": {"brand": "Rogers", "brand:wikidata": "Q3439663", "brand:wikipedia": "en:Rogers Wireless", "name": "Rogers", "shop": "mobile_phone"}, "removeTags": {"brand": "Rogers", "brand:wikidata": "Q3439663", "brand:wikipedia": "en:Rogers Wireless", "name": "Rogers", "shop": "mobile_phone"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/SFR": {"name": "SFR", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/SFR/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q218765"}, "addTags": {"brand": "SFR", "brand:wikidata": "Q218765", "brand:wikipedia": "en:SFR", "name": "SFR", "shop": "mobile_phone"}, "removeTags": {"brand": "SFR", "brand:wikidata": "Q218765", "brand:wikipedia": "en:SFR", "name": "SFR", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Sprint": {"name": "Sprint", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/sprint/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q301965"}, "addTags": {"brand": "Sprint", "brand:wikidata": "Q301965", "brand:wikipedia": "en:Sprint Corporation", "name": "Sprint", "shop": "mobile_phone"}, "removeTags": {"brand": "Sprint", "brand:wikidata": "Q301965", "brand:wikipedia": "en:Sprint Corporation", "name": "Sprint", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/T-Mobile": {"name": "T-Mobile", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/TMobile/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q327634"}, "addTags": {"brand": "T-Mobile", "brand:wikidata": "Q327634", "brand:wikipedia": "en:T-Mobile", "name": "T-Mobile", "shop": "mobile_phone"}, "removeTags": {"brand": "T-Mobile", "brand:wikidata": "Q327634", "brand:wikipedia": "en:T-Mobile", "name": "T-Mobile", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/TIM": {"name": "TIM", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/TimOfficialPage/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q144617"}, "addTags": {"brand": "TIM", "brand:wikidata": "Q144617", "brand:wikipedia": "en:Telecom Italia", "name": "TIM", "shop": "mobile_phone"}, "removeTags": {"brand": "TIM", "brand:wikidata": "Q144617", "brand:wikipedia": "en:Telecom Italia", "name": "TIM", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Telcel": {"name": "Telcel", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Telcel/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q3517255"}, "addTags": {"brand": "Telcel", "brand:wikidata": "Q3517255", "brand:wikipedia": "en:Telcel", "name": "Telcel", "shop": "mobile_phone"}, "removeTags": {"brand": "Telcel", "brand:wikidata": "Q3517255", "brand:wikipedia": "en:Telcel", "name": "Telcel", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Tele2": {"name": "Tele2", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/WeAreTele2/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q309865"}, "addTags": {"brand": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Tele2", "shop": "mobile_phone"}, "removeTags": {"brand": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Tele2", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Telekom": {"name": "Telekom", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/deutschetelekom/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q9396"}, "addTags": {"brand": "Telekom", "brand:wikidata": "Q9396", "brand:wikipedia": "en:Deutsche Telekom", "name": "Telekom", "shop": "mobile_phone"}, "removeTags": {"brand": "Telekom", "brand:wikidata": "Q9396", "brand:wikipedia": "en:Deutsche Telekom", "name": "Telekom", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Telenor": {"name": "Telenor", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/telenorgroup/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q845632"}, "addTags": {"brand": "Telenor", "brand:wikidata": "Q845632", "brand:wikipedia": "en:Telenor", "name": "Telenor", "shop": "mobile_phone"}, "removeTags": {"brand": "Telenor", "brand:wikidata": "Q845632", "brand:wikipedia": "en:Telenor", "name": "Telenor", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Telstra": {"name": "Telstra", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Telstra/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q721162"}, "addTags": {"brand": "Telstra", "brand:wikidata": "Q721162", "brand:wikipedia": "en:Telstra", "name": "Telstra", "shop": "mobile_phone"}, "removeTags": {"brand": "Telstra", "brand:wikidata": "Q721162", "brand:wikipedia": "en:Telstra", "name": "Telstra", "shop": "mobile_phone"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Telus": {"name": "Telus", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/TELUSInternational/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q165858"}, "addTags": {"brand": "Telus", "brand:wikidata": "Q165858", "brand:wikipedia": "en:Telus", "name": "Telus", "shop": "mobile_phone"}, "removeTags": {"brand": "Telus", "brand:wikidata": "Q165858", "brand:wikipedia": "en:Telus", "name": "Telus", "shop": "mobile_phone"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "shop/mobile_phone/Turkcell": {"name": "Turkcell", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Turkcell/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q283852"}, "addTags": {"brand": "Turkcell", "brand:wikidata": "Q283852", "brand:wikipedia": "en:Turkcell", "name": "Turkcell", "shop": "mobile_phone"}, "removeTags": {"brand": "Turkcell", "brand:wikidata": "Q283852", "brand:wikipedia": "en:Turkcell", "name": "Turkcell", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Télécentre": {"name": "Télécentre", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q180034"}, "addTags": {"brand": "Télécentre", "brand:wikidata": "Q180034", "brand:wikipedia": "en:Telecentre", "name": "Télécentre", "shop": "mobile_phone"}, "removeTags": {"brand": "Télécentre", "brand:wikidata": "Q180034", "brand:wikipedia": "en:Telecentre", "name": "Télécentre", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/U.S. Cellular": {"name": "U.S. Cellular", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2466256"}, "addTags": {"brand": "U.S. Cellular", "brand:wikidata": "Q2466256", "brand:wikipedia": "en:U.S. Cellular", "name": "U.S. Cellular", "shop": "mobile_phone"}, "removeTags": {"brand": "U.S. Cellular", "brand:wikidata": "Q2466256", "brand:wikipedia": "en:U.S. Cellular", "name": "U.S. Cellular", "shop": "mobile_phone"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Verizon Wireless": {"name": "Verizon Wireless", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/1032361834085408768/UTSm_MOD_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q919641"}, "addTags": {"brand": "Verizon Wireless", "brand:wikidata": "Q919641", "brand:wikipedia": "en:Verizon Wireless", "name": "Verizon Wireless", "shop": "mobile_phone"}, "removeTags": {"brand": "Verizon Wireless", "brand:wikidata": "Q919641", "brand:wikipedia": "en:Verizon Wireless", "name": "Verizon Wireless", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Vodafone": {"name": "Vodafone", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/916044193298034694/aUuQ6W_F_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q122141"}, "addTags": {"brand": "Vodafone", "brand:wikidata": "Q122141", "brand:wikipedia": "en:Vodafone", "name": "Vodafone", "shop": "mobile_phone"}, "removeTags": {"brand": "Vodafone", "brand:wikidata": "Q122141", "brand:wikipedia": "en:Vodafone", "name": "Vodafone", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/WIFI_ETECSA": {"name": "WIFI_ETECSA", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q490323"}, "addTags": {"brand": "WIFI_ETECSA", "brand:wikidata": "Q490323", "brand:wikipedia": "es:Empresa de Telecomunicaciones de Cuba", "name": "WIFI_ETECSA", "shop": "mobile_phone"}, "removeTags": {"brand": "WIFI_ETECSA", "brand:wikidata": "Q490323", "brand:wikipedia": "es:Empresa de Telecomunicaciones de Cuba", "name": "WIFI_ETECSA", "shop": "mobile_phone"}, "countryCodes": ["cu"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Wind": {"name": "Wind", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWind%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q650467"}, "addTags": {"brand": "Wind", "brand:wikidata": "Q650467", "brand:wikipedia": "en:WIND (Italy)", "name": "Wind", "shop": "mobile_phone"}, "removeTags": {"brand": "Wind", "brand:wikidata": "Q650467", "brand:wikipedia": "en:WIND (Italy)", "name": "Wind", "shop": "mobile_phone"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Yoigo": {"name": "Yoigo", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FYoigo%20morado.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2630989"}, "addTags": {"brand": "Yoigo", "brand:wikidata": "Q2630989", "brand:wikipedia": "en:Yoigo", "name": "Yoigo", "shop": "mobile_phone"}, "removeTags": {"brand": "Yoigo", "brand:wikidata": "Q2630989", "brand:wikipedia": "en:Yoigo", "name": "Yoigo", "shop": "mobile_phone"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/auショップ": {"name": "auショップ", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q11190521"}, "addTags": {"brand": "au", "brand:ja": "au", "brand:wikidata": "Q11190521", "brand:wikipedia": "ja:au (通信)", "name": "auショップ", "name:en": "au shop", "name:ja": "auショップ", "shop": "mobile_phone"}, "removeTags": {"brand": "au", "brand:ja": "au", "brand:wikidata": "Q11190521", "brand:wikipedia": "ja:au (通信)", "name": "auショップ", "name:en": "au shop", "name:ja": "auショップ", "shop": "mobile_phone"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Алло": {"name": "Алло", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q18683057"}, "addTags": {"brand": "Алло", "brand:wikidata": "Q18683057", "brand:wikipedia": "uk:Алло (торгова мережа)", "name": "Алло", "shop": "mobile_phone"}, "removeTags": {"brand": "Алло", "brand:wikidata": "Q18683057", "brand:wikipedia": "uk:Алло (торгова мережа)", "name": "Алло", "shop": "mobile_phone"}, "countryCodes": ["md", "ua"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Билайн": {"name": "Билайн", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F%D0%91%D0%B8%D0%BB%D0%B0%D0%B9%D0%BD%202.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q402880"}, "addTags": {"brand": "Билайн", "brand:en": "Beeline", "brand:wikidata": "Q402880", "brand:wikipedia": "en:Beeline (brand)", "name": "Билайн", "name:en": "Beeline", "shop": "mobile_phone"}, "removeTags": {"brand": "Билайн", "brand:en": "Beeline", "brand:wikidata": "Q402880", "brand:wikipedia": "en:Beeline (brand)", "name": "Билайн", "name:en": "Beeline", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/U.S. Cellular": {"name": "U.S. Cellular", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/USCellular/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2466256"}, "addTags": {"brand": "U.S. Cellular", "brand:wikidata": "Q2466256", "brand:wikipedia": "en:U.S. Cellular", "name": "U.S. Cellular", "shop": "mobile_phone"}, "removeTags": {"brand": "U.S. Cellular", "brand:wikidata": "Q2466256", "brand:wikipedia": "en:U.S. Cellular", "name": "U.S. Cellular", "shop": "mobile_phone"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Verizon Wireless": {"name": "Verizon Wireless", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/verizon/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q919641"}, "addTags": {"brand": "Verizon Wireless", "brand:wikidata": "Q919641", "brand:wikipedia": "en:Verizon Wireless", "name": "Verizon Wireless", "shop": "mobile_phone"}, "removeTags": {"brand": "Verizon Wireless", "brand:wikidata": "Q919641", "brand:wikipedia": "en:Verizon Wireless", "name": "Verizon Wireless", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Vodafone": {"name": "Vodafone", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/vodafoneUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q122141"}, "addTags": {"brand": "Vodafone", "brand:wikidata": "Q122141", "brand:wikipedia": "en:Vodafone", "name": "Vodafone", "shop": "mobile_phone"}, "removeTags": {"brand": "Vodafone", "brand:wikidata": "Q122141", "brand:wikipedia": "en:Vodafone", "name": "Vodafone", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/WIFI_ETECSA": {"name": "WIFI_ETECSA", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/etecsa.cu/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q490323"}, "addTags": {"brand": "WIFI_ETECSA", "brand:wikidata": "Q490323", "brand:wikipedia": "es:Empresa de Telecomunicaciones de Cuba", "name": "WIFI_ETECSA", "shop": "mobile_phone"}, "removeTags": {"brand": "WIFI_ETECSA", "brand:wikidata": "Q490323", "brand:wikipedia": "es:Empresa de Telecomunicaciones de Cuba", "name": "WIFI_ETECSA", "shop": "mobile_phone"}, "countryCodes": ["cu"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Wind": {"name": "Wind", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Wind/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q650467"}, "addTags": {"brand": "Wind", "brand:wikidata": "Q650467", "brand:wikipedia": "en:WIND (Italy)", "name": "Wind", "shop": "mobile_phone"}, "removeTags": {"brand": "Wind", "brand:wikidata": "Q650467", "brand:wikipedia": "en:WIND (Italy)", "name": "Wind", "shop": "mobile_phone"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Yoigo": {"name": "Yoigo", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Yoigo/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2630989"}, "addTags": {"brand": "Yoigo", "brand:wikidata": "Q2630989", "brand:wikipedia": "en:Yoigo", "name": "Yoigo", "shop": "mobile_phone"}, "removeTags": {"brand": "Yoigo", "brand:wikidata": "Q2630989", "brand:wikipedia": "en:Yoigo", "name": "Yoigo", "shop": "mobile_phone"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/auショップ": {"name": "auショップ", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/aubyKDDI/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q307110"}, "addTags": {"brand": "au", "brand:ja": "au", "brand:wikidata": "Q307110", "brand:wikipedia": "ja:Au (携帯電話)", "name": "auショップ", "name:en": "au", "name:ja": "auショップ", "shop": "mobile_phone"}, "removeTags": {"brand": "au", "brand:ja": "au", "brand:wikidata": "Q307110", "brand:wikipedia": "ja:Au (携帯電話)", "name": "auショップ", "name:en": "au", "name:ja": "auショップ", "shop": "mobile_phone"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Алло": {"name": "Алло", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/allo/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q18683057"}, "addTags": {"brand": "Алло", "brand:wikidata": "Q18683057", "brand:wikipedia": "uk:Алло (торгова мережа)", "name": "Алло", "shop": "mobile_phone"}, "removeTags": {"brand": "Алло", "brand:wikidata": "Q18683057", "brand:wikipedia": "uk:Алло (торгова мережа)", "name": "Алло", "shop": "mobile_phone"}, "countryCodes": ["md", "ua"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Билайн": {"name": "Билайн", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Beelinerus/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q402880"}, "addTags": {"brand": "Билайн", "brand:en": "Beeline", "brand:wikidata": "Q402880", "brand:wikipedia": "en:Beeline (brand)", "name": "Билайн", "name:en": "Beeline", "shop": "mobile_phone"}, "removeTags": {"brand": "Билайн", "brand:en": "Beeline", "brand:wikidata": "Q402880", "brand:wikipedia": "en:Beeline (brand)", "name": "Билайн", "name:en": "Beeline", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, "shop/mobile_phone/Евросеть": {"name": "Евросеть", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FEuroset.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q65310"}, "addTags": {"brand": "Евросеть", "brand:en": "Euroset", "brand:wikidata": "Q65310", "brand:wikipedia": "en:Euroset", "name": "Евросеть", "name:en": "Euroset", "shop": "mobile_phone"}, "removeTags": {"brand": "Евросеть", "brand:en": "Euroset", "brand:wikidata": "Q65310", "brand:wikipedia": "en:Euroset", "name": "Евросеть", "name:en": "Euroset", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Київстар": {"name": "Київстар", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/1076409804229353472/KN2XlbP8_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2288463"}, "addTags": {"brand": "Київстар", "brand:en": "Kyivstar", "brand:wikidata": "Q2288463", "brand:wikipedia": "en:Kyivstar", "name": "Київстар", "name:en": "Kyivstar", "shop": "mobile_phone"}, "removeTags": {"brand": "Київстар", "brand:en": "Kyivstar", "brand:wikidata": "Q2288463", "brand:wikipedia": "en:Kyivstar", "name": "Київстар", "name:en": "Kyivstar", "shop": "mobile_phone"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Київстар": {"name": "Київстар", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/kyivstar/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q2288463"}, "addTags": {"brand": "Київстар", "brand:en": "Kyivstar", "brand:wikidata": "Q2288463", "brand:wikipedia": "en:Kyivstar", "name": "Київстар", "name:en": "Kyivstar", "shop": "mobile_phone"}, "removeTags": {"brand": "Київстар", "brand:en": "Kyivstar", "brand:wikidata": "Q2288463", "brand:wikipedia": "en:Kyivstar", "name": "Київстар", "name:en": "Kyivstar", "shop": "mobile_phone"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, "shop/mobile_phone/МТС": {"name": "МТС", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/mts/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1368919"}, "addTags": {"brand": "МТС", "brand:en": "MTS", "brand:wikidata": "Q1368919", "brand:wikipedia": "en:MTS (network provider)", "name": "МТС", "name:en": "MTS", "shop": "mobile_phone"}, "removeTags": {"brand": "МТС", "brand:en": "MTS", "brand:wikidata": "Q1368919", "brand:wikipedia": "en:MTS (network provider)", "name": "МТС", "name:en": "MTS", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, "shop/mobile_phone/Мегафон": {"name": "Мегафон", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/MegaFon.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q1720713"}, "addTags": {"brand": "Мегафон", "brand:en": "MegaFon", "brand:wikidata": "Q1720713", "brand:wikipedia": "en:MegaFon", "name": "Мегафон", "name:en": "MegaFon", "shop": "mobile_phone"}, "removeTags": {"brand": "Мегафон", "brand:en": "MegaFon", "brand:wikidata": "Q1720713", "brand:wikipedia": "en:MegaFon", "name": "Мегафон", "name:en": "MegaFon", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Связной": {"name": "Связной", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSvyaznoyLogo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q65371"}, "addTags": {"brand": "Связной", "brand:en": "Svyaznoy", "brand:wikidata": "Q65371", "brand:wikipedia": "en:Svyaznoy", "name": "Связной", "name:en": "Svyaznoy", "shop": "mobile_phone"}, "removeTags": {"brand": "Связной", "brand:en": "Svyaznoy", "brand:wikidata": "Q65371", "brand:wikipedia": "en:Svyaznoy", "name": "Связной", "name:en": "Svyaznoy", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Теле2": {"name": "Теле2", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTele2%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q309865"}, "addTags": {"brand": "Теле2", "brand:en": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Теле2", "name:en": "Tele2", "shop": "mobile_phone"}, "removeTags": {"brand": "Теле2", "brand:en": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Теле2", "name:en": "Tele2", "shop": "mobile_phone"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/ソフトバンク": {"name": "ソフトバンク", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSoftbank%20mobile%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q7553832"}, "addTags": {"brand": "ソフトバンク", "brand:en": "SoftBank Telecom", "brand:ja": "ソフトバンク", "brand:wikidata": "Q7553832", "brand:wikipedia": "en:SoftBank Telecom", "name": "ソフトバンク", "name:en": "SoftBank Telecom", "name:ja": "ソフトバンク", "shop": "mobile_phone"}, "removeTags": {"brand": "ソフトバンク", "brand:en": "SoftBank Telecom", "brand:ja": "ソフトバンク", "brand:wikidata": "Q7553832", "brand:wikipedia": "en:SoftBank Telecom", "name": "ソフトバンク", "name:en": "SoftBank Telecom", "name:ja": "ソフトバンク", "shop": "mobile_phone"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/ソフトバンクショップ": {"name": "ソフトバンクショップ", "icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q11315281"}, "addTags": {"brand": "ソフトバンクショップ", "brand:en": "SoftBankShop", "brand:ja": "ソフトバンクショップ", "brand:wikidata": "Q11315281", "brand:wikipedia": "ja:ソフトバンクショップ", "name": "ソフトバンクショップ", "name:en": "SoftBankShop", "name:ja": "ソフトバンクショップ", "shop": "mobile_phone"}, "removeTags": {"brand": "ソフトバンクショップ", "brand:en": "SoftBankShop", "brand:ja": "ソフトバンクショップ", "brand:wikidata": "Q11315281", "brand:wikipedia": "ja:ソフトバンクショップ", "name": "ソフトバンクショップ", "name:en": "SoftBankShop", "name:ja": "ソフトバンクショップ", "shop": "mobile_phone"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Связной": {"name": "Связной", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/svyaznoy.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q65371"}, "addTags": {"brand": "Связной", "brand:en": "Svyaznoy", "brand:wikidata": "Q65371", "brand:wikipedia": "en:Svyaznoy", "name": "Связной", "name:en": "Svyaznoy", "shop": "mobile_phone"}, "removeTags": {"brand": "Связной", "brand:en": "Svyaznoy", "brand:wikidata": "Q65371", "brand:wikipedia": "en:Svyaznoy", "name": "Связной", "name:en": "Svyaznoy", "shop": "mobile_phone"}, "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/Теле2": {"name": "Теле2", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/WeAreTele2/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q309865"}, "addTags": {"brand": "Теле2", "brand:en": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Теле2", "name:en": "Tele2", "shop": "mobile_phone"}, "removeTags": {"brand": "Теле2", "brand:en": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Теле2", "name:en": "Tele2", "shop": "mobile_phone"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/ソフトバンク": {"name": "ソフトバンク", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/SoftBank/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q7553832"}, "addTags": {"brand": "ソフトバンク", "brand:en": "SoftBank Telecom", "brand:ja": "ソフトバンク", "brand:wikidata": "Q7553832", "brand:wikipedia": "en:SoftBank Telecom", "name": "ソフトバンク", "name:en": "SoftBank Telecom", "name:ja": "ソフトバンク", "shop": "mobile_phone"}, "removeTags": {"brand": "ソフトバンク", "brand:en": "SoftBank Telecom", "brand:ja": "ソフトバンク", "brand:wikidata": "Q7553832", "brand:wikipedia": "en:SoftBank Telecom", "name": "ソフトバンク", "name:en": "SoftBank Telecom", "name:ja": "ソフトバンク", "shop": "mobile_phone"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/mobile_phone/ソフトバンクショップ": {"name": "ソフトバンクショップ", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/SoftBank/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q11315281"}, "addTags": {"brand": "ソフトバンクショップ", "brand:en": "SoftBankShop", "brand:ja": "ソフトバンクショップ", "brand:wikidata": "Q11315281", "brand:wikipedia": "ja:ソフトバンクショップ", "name": "ソフトバンクショップ", "name:en": "SoftBankShop", "name:ja": "ソフトバンクショップ", "shop": "mobile_phone"}, "removeTags": {"brand": "ソフトバンクショップ", "brand:en": "SoftBankShop", "brand:ja": "ソフトバンクショップ", "brand:wikidata": "Q11315281", "brand:wikipedia": "ja:ソフトバンクショップ", "name": "ソフトバンクショップ", "name:en": "SoftBankShop", "name:ja": "ソフトバンクショップ", "shop": "mobile_phone"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/mobile_phone/ドコモショップ": {"name": "ドコモショップ", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/docomo.official/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone", "brand:wikidata": "Q853958"}, "addTags": {"brand": "ドコモショップ", "brand:en": "DoCoMo Shop", "brand:ja": "ドコモショップ", "brand:wikidata": "Q853958", "brand:wikipedia": "ja:NTTドコモ", "name": "ドコモショップ", "name:en": "DoCoMo Shop", "name:ja": "ドコモショップ", "shop": "mobile_phone"}, "removeTags": {"brand": "ドコモショップ", "brand:en": "DoCoMo Shop", "brand:ja": "ドコモショップ", "brand:wikidata": "Q853958", "brand:wikipedia": "ja:NTTドコモ", "name": "ドコモショップ", "name:en": "DoCoMo Shop", "name:ja": "ドコモショップ", "shop": "mobile_phone"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/money_lender/Cash Store": {"name": "Cash Store", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"shop": "money_lender", "brand:wikidata": "Q61943411"}, "addTags": {"brand": "Cash Store", "brand:wikidata": "Q61943411", "name": "Cash Store", "shop": "money_lender"}, "removeTags": {"brand": "Cash Store", "brand:wikidata": "Q61943411", "name": "Cash Store", "shop": "money_lender"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/money_lender/Check Into Cash": {"name": "Check Into Cash", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"shop": "money_lender", "brand:wikidata": "Q16961246"}, "addTags": {"brand": "Check Into Cash", "brand:wikidata": "Q16961246", "brand:wikipedia": "en:Check Into Cash", "name": "Check Into Cash", "shop": "money_lender"}, "removeTags": {"brand": "Check Into Cash", "brand:wikidata": "Q16961246", "brand:wikipedia": "en:Check Into Cash", "name": "Check Into Cash", "shop": "money_lender"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/money_lender/Money Mart": {"name": "Money Mart", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMoney%20Mart%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "money_lender", "brand:wikidata": "Q6899166"}, "addTags": {"brand": "Money Mart", "brand:wikidata": "Q6899166", "brand:wikipedia": "en:Money Mart", "name": "Money Mart", "shop": "money_lender"}, "removeTags": {"brand": "Money Mart", "brand:wikidata": "Q6899166", "brand:wikipedia": "en:Money Mart", "name": "Money Mart", "shop": "money_lender"}, "matchScore": 2, "suggestion": true}, + "shop/money_lender/Cash Store": {"name": "Cash Store", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/cashstore/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "money_lender", "brand:wikidata": "Q61943411"}, "addTags": {"brand": "Cash Store", "brand:wikidata": "Q61943411", "name": "Cash Store", "shop": "money_lender"}, "removeTags": {"brand": "Cash Store", "brand:wikidata": "Q61943411", "name": "Cash Store", "shop": "money_lender"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/money_lender/Check Into Cash": {"name": "Check Into Cash", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/checkintocash/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "money_lender", "brand:wikidata": "Q16961246"}, "addTags": {"brand": "Check Into Cash", "brand:wikidata": "Q16961246", "brand:wikipedia": "en:Check Into Cash", "name": "Check Into Cash", "shop": "money_lender"}, "removeTags": {"brand": "Check Into Cash", "brand:wikidata": "Q16961246", "brand:wikipedia": "en:Check Into Cash", "name": "Check Into Cash", "shop": "money_lender"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/money_lender/Money Mart": {"name": "Money Mart", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/moneymartusa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "money_lender", "brand:wikidata": "Q6899166"}, "addTags": {"brand": "Money Mart", "brand:wikidata": "Q6899166", "brand:wikipedia": "en:Money Mart", "name": "Money Mart", "shop": "money_lender"}, "removeTags": {"brand": "Money Mart", "brand:wikidata": "Q6899166", "brand:wikipedia": "en:Money Mart", "name": "Money Mart", "shop": "money_lender"}, "matchScore": 2, "suggestion": true}, "shop/motorcycle/Harley-Davidson": {"name": "Harley-Davidson", "icon": "fas-motorcycle", "imageURL": "https://graph.facebook.com/harley-davidson/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "motorcycle", "brand:wikidata": "Q192814"}, "addTags": {"brand": "Harley-Davidson", "brand:wikidata": "Q192814", "brand:wikipedia": "en:Harley-Davidson", "name": "Harley-Davidson", "shop": "motorcycle"}, "removeTags": {"brand": "Harley-Davidson", "brand:wikidata": "Q192814", "brand:wikipedia": "en:Harley-Davidson", "name": "Harley-Davidson", "shop": "motorcycle"}, "matchScore": 2, "suggestion": true}, "shop/motorcycle/Honda": {"name": "Honda", "icon": "fas-motorcycle", "imageURL": "https://graph.facebook.com/HondaJP/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "motorcycle", "brand:wikidata": "Q9584"}, "addTags": {"brand": "Honda", "brand:wikidata": "Q9584", "brand:wikipedia": "en:Honda", "name": "Honda", "shop": "motorcycle"}, "removeTags": {"brand": "Honda", "brand:wikidata": "Q9584", "brand:wikipedia": "en:Honda", "name": "Honda", "shop": "motorcycle"}, "matchScore": 2, "suggestion": true}, "shop/motorcycle/Kawasaki": {"name": "Kawasaki", "icon": "fas-motorcycle", "imageURL": "https://graph.facebook.com/kawasaki/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "motorcycle", "brand:wikidata": "Q6379855"}, "addTags": {"brand": "Kawasaki", "brand:wikidata": "Q6379855", "brand:wikipedia": "en:Kawasaki motorcycles", "name": "Kawasaki", "shop": "motorcycle"}, "removeTags": {"brand": "Kawasaki", "brand:wikidata": "Q6379855", "brand:wikipedia": "en:Kawasaki motorcycles", "name": "Kawasaki", "shop": "motorcycle"}, "matchScore": 2, "suggestion": true}, "shop/motorcycle/Motortrade": {"name": "Motortrade", "icon": "fas-motorcycle", "imageURL": "https://graph.facebook.com/MotortradePh/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "motorcycle", "brand:wikidata": "Q48803162"}, "addTags": {"brand": "Motortrade", "brand:wikidata": "Q48803162", "brand:wikipedia": "en:Motortrade", "name": "Motortrade", "shop": "motorcycle"}, "removeTags": {"brand": "Motortrade", "brand:wikidata": "Q48803162", "brand:wikipedia": "en:Motortrade", "name": "Motortrade", "shop": "motorcycle"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, "shop/motorcycle/Suzuki": {"name": "Suzuki", "icon": "fas-motorcycle", "imageURL": "https://graph.facebook.com/SuzukiGlobalOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "motorcycle", "brand:wikidata": "Q181642"}, "addTags": {"brand": "Suzuki", "brand:wikidata": "Q181642", "brand:wikipedia": "en:Suzuki", "name": "Suzuki", "shop": "motorcycle"}, "removeTags": {"brand": "Suzuki", "brand:wikidata": "Q181642", "brand:wikipedia": "en:Suzuki", "name": "Suzuki", "shop": "motorcycle"}, "matchScore": 2, "suggestion": true}, "shop/motorcycle/Yamaha": {"name": "Yamaha", "icon": "fas-motorcycle", "imageURL": "https://graph.facebook.com/yamahamotorusa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "motorcycle", "brand:wikidata": "Q158888"}, "addTags": {"brand": "Yamaha", "brand:wikidata": "Q158888", "brand:wikipedia": "en:Yamaha Motor Company", "name": "Yamaha", "shop": "motorcycle"}, "removeTags": {"brand": "Yamaha", "brand:wikidata": "Q158888", "brand:wikipedia": "en:Yamaha Motor Company", "name": "Yamaha", "shop": "motorcycle"}, "matchScore": 2, "suggestion": true}, - "shop/music/HMV": {"name": "HMV", "icon": "fas-compact-disc", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHMV%20record.JPG&width=100", "geometry": ["point", "area"], "tags": {"shop": "music", "brand:wikidata": "Q10854572"}, "addTags": {"brand": "HMV", "brand:wikidata": "Q10854572", "brand:wikipedia": "en:HMV", "name": "HMV", "shop": "music"}, "removeTags": {"brand": "HMV", "brand:wikidata": "Q10854572", "brand:wikipedia": "en:HMV", "name": "HMV", "shop": "music"}, "matchScore": 2, "suggestion": true}, - "shop/music/TSUTAYA": {"name": "TSUTAYA", "icon": "fas-compact-disc", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCulture%20Convenience%20Club%20(CCC)%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "music", "brand:wikidata": "Q5193457"}, "addTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "music"}, "removeTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "music"}, "matchScore": 2, "suggestion": true}, + "shop/music/HMV": {"name": "HMV", "icon": "fas-compact-disc", "imageURL": "https://graph.facebook.com/hmv/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "music", "brand:wikidata": "Q10854572"}, "addTags": {"brand": "HMV", "brand:wikidata": "Q10854572", "brand:wikipedia": "en:HMV", "name": "HMV", "shop": "music"}, "removeTags": {"brand": "HMV", "brand:wikidata": "Q10854572", "brand:wikipedia": "en:HMV", "name": "HMV", "shop": "music"}, "matchScore": 2, "suggestion": true}, + "shop/music/TSUTAYA": {"name": "TSUTAYA", "icon": "fas-compact-disc", "imageURL": "https://pbs.twimg.com/profile_images/1016247734720851968/R9agm3pA_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "music", "brand:wikidata": "Q5193457"}, "addTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "music"}, "removeTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "music"}, "matchScore": 2, "suggestion": true}, "shop/musical_instrument/Guitar Center": {"name": "Guitar Center", "icon": "fas-guitar", "imageURL": "https://graph.facebook.com/GuitarCenter/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "musical_instrument", "brand:wikidata": "Q3622794"}, "addTags": {"brand": "Guitar Center", "brand:wikidata": "Q3622794", "brand:wikipedia": "en:Guitar Center", "name": "Guitar Center", "shop": "musical_instrument"}, "removeTags": {"brand": "Guitar Center", "brand:wikidata": "Q3622794", "brand:wikipedia": "en:Guitar Center", "name": "Guitar Center", "shop": "musical_instrument"}, "matchScore": 2, "suggestion": true}, + "shop/newsagent/Cigo": {"name": "Cigo", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/cigo.nl/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q62391977"}, "addTags": {"brand": "Cigo", "brand:wikidata": "Q62391977", "name": "Cigo", "shop": "newsagent"}, "removeTags": {"brand": "Cigo", "brand:wikidata": "Q62391977", "name": "Cigo", "shop": "newsagent"}, "countryCodes": ["de", "nl"], "matchScore": 2, "suggestion": true}, "shop/newsagent/Kolporter": {"name": "Kolporter", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q6427874"}, "addTags": {"brand": "Kolporter", "brand:wikidata": "Q6427874", "brand:wikipedia": "pl:Kolporter (przedsiębiorstwo)", "name": "Kolporter", "shop": "kiosk"}, "removeTags": {"brand": "Kolporter", "brand:wikidata": "Q6427874", "brand:wikipedia": "pl:Kolporter (przedsiębiorstwo)", "name": "Kolporter", "shop": "kiosk"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/newsagent/Maison de la Presse": {"name": "Maison de la Presse", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Maison-de-la-Presse-La-culture-à-la-page-260230084083052/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q62085960"}, "addTags": {"brand": "Maison de la Presse", "brand:wikidata": "Q62085960", "name": "Maison de la Presse", "shop": "newsagent"}, "removeTags": {"brand": "Maison de la Presse", "brand:wikidata": "Q62085960", "name": "Maison de la Presse", "shop": "newsagent"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/newsagent/k kiosk": {"name": "k kiosk", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q60381703"}, "addTags": {"brand": "k kiosk", "brand:wikidata": "Q60381703", "name": "k kiosk", "shop": "newsagent"}, "removeTags": {"brand": "k kiosk", "brand:wikidata": "Q60381703", "name": "k kiosk", "shop": "newsagent"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, + "shop/newsagent/Maison de la Presse": {"name": "Maison de la Presse", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/260230084083052/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q62085960"}, "addTags": {"brand": "Maison de la Presse", "brand:wikidata": "Q62085960", "name": "Maison de la Presse", "shop": "newsagent"}, "removeTags": {"brand": "Maison de la Presse", "brand:wikidata": "Q62085960", "name": "Maison de la Presse", "shop": "newsagent"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/newsagent/Martin's": {"name": "Martin's", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/YourMcColls/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q16997477"}, "addTags": {"brand": "Martin's", "brand:wikidata": "Q16997477", "brand:wikipedia": "en:McColl's", "name": "Martin's", "shop": "newsagent"}, "removeTags": {"brand": "Martin's", "brand:wikidata": "Q16997477", "brand:wikipedia": "en:McColl's", "name": "Martin's", "shop": "newsagent"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/newsagent/Primera": {"name": "Primera", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Primera.nl/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q2176149"}, "addTags": {"brand": "Primera", "brand:wikidata": "Q2176149", "brand:wikipedia": "nl:Primera (winkelketen)", "name": "Primera", "shop": "newsagent"}, "removeTags": {"brand": "Primera", "brand:wikidata": "Q2176149", "brand:wikipedia": "nl:Primera (winkelketen)", "name": "Primera", "shop": "newsagent"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, + "shop/newsagent/k kiosk": {"name": "k kiosk", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/kkiosk/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q60381703"}, "addTags": {"brand": "k kiosk", "brand:wikidata": "Q60381703", "brand:wikipedia": "it:K Kiosk", "name": "k kiosk", "shop": "newsagent"}, "removeTags": {"brand": "k kiosk", "brand:wikidata": "Q60381703", "brand:wikipedia": "it:K Kiosk", "name": "k kiosk", "shop": "newsagent"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, + "shop/newsagent/Первая полоса": {"name": "Первая полоса", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q62736412"}, "addTags": {"brand": "Первая полоса", "brand:wikidata": "Q62736412", "name": "Первая полоса", "shop": "newsagent"}, "removeTags": {"brand": "Первая полоса", "brand:wikidata": "Q62736412", "name": "Первая полоса", "shop": "newsagent"}, "matchScore": 2, "suggestion": true}, "shop/newsagent/読売新聞": {"name": "読売新聞", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1091035339232227328/elp0X_L6_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q645218"}, "addTags": {"brand": "読売新聞", "brand:en": "Yomiuri Shimbun", "brand:wikidata": "Q645218", "brand:wikipedia": "en:Yomiuri Shimbun", "name": "読売新聞", "name:en": "Yomiuri Shimbun", "shop": "newsagent"}, "removeTags": {"brand": "読売新聞", "brand:en": "Yomiuri Shimbun", "brand:wikidata": "Q645218", "brand:wikipedia": "en:Yomiuri Shimbun", "name": "読売新聞", "name:en": "Yomiuri Shimbun", "shop": "newsagent"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/nutrition_supplements/GNC": {"name": "GNC", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGNC%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "nutrition_supplements", "brand:wikidata": "Q4808595"}, "addTags": {"brand": "GNC", "brand:wikidata": "Q4808595", "brand:wikipedia": "en:GNC (store)", "name": "GNC", "shop": "nutrition_supplements"}, "removeTags": {"brand": "GNC", "brand:wikidata": "Q4808595", "brand:wikipedia": "en:GNC (store)", "name": "GNC", "shop": "nutrition_supplements"}, "matchScore": 2, "suggestion": true}, + "shop/nutrition_supplements/GNC": {"name": "GNC", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/GNCLiveWell/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "nutrition_supplements", "brand:wikidata": "Q4808595"}, "addTags": {"brand": "GNC", "brand:wikidata": "Q4808595", "brand:wikipedia": "en:GNC (store)", "name": "GNC", "shop": "nutrition_supplements"}, "removeTags": {"brand": "GNC", "brand:wikidata": "Q4808595", "brand:wikipedia": "en:GNC (store)", "name": "GNC", "shop": "nutrition_supplements"}, "matchScore": 2, "suggestion": true}, "shop/nutrition_supplements/The Vitamin Shoppe": {"name": "The Vitamin Shoppe", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/THEVITAMINSHOPPE/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "nutrition_supplements", "brand:wikidata": "Q7772938"}, "addTags": {"brand": "The Vitamin Shoppe", "brand:wikidata": "Q7772938", "brand:wikipedia": "en:The Vitamin Shoppe", "name": "The Vitamin Shoppe", "shop": "nutrition_supplements"}, "removeTags": {"brand": "The Vitamin Shoppe", "brand:wikidata": "Q7772938", "brand:wikipedia": "en:The Vitamin Shoppe", "name": "The Vitamin Shoppe", "shop": "nutrition_supplements"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/optician/Alain Afflelou": {"name": "Alain Afflelou", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q2829511"}, "addTags": {"brand": "Alain Afflelou", "brand:wikidata": "Q2829511", "brand:wikipedia": "fr:Alain Afflelou (entreprise)", "name": "Alain Afflelou", "shop": "optician"}, "removeTags": {"brand": "Alain Afflelou", "brand:wikidata": "Q2829511", "brand:wikipedia": "fr:Alain Afflelou (entreprise)", "name": "Alain Afflelou", "shop": "optician"}, "matchScore": 2, "suggestion": true}, - "shop/optician/Apollo": {"name": "Apollo", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/254579254900837/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q618940"}, "addTags": {"brand": "Apollo", "brand:wikidata": "Q618940", "brand:wikipedia": "de:Apollo-Optik", "name": "Apollo", "shop": "optician"}, "removeTags": {"brand": "Apollo", "brand:wikidata": "Q618940", "brand:wikipedia": "de:Apollo-Optik", "name": "Apollo", "shop": "optician"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/optician/Atol": {"name": "Atol", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q2869542"}, "addTags": {"brand": "Atol", "brand:wikidata": "Q2869542", "brand:wikipedia": "fr:Atol (opticien)", "name": "Atol", "shop": "optician"}, "removeTags": {"brand": "Atol", "brand:wikidata": "Q2869542", "brand:wikipedia": "fr:Atol (opticien)", "name": "Atol", "shop": "optician"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/optician/Boots Opticians": {"name": "Boots Opticians", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q4944037"}, "addTags": {"brand": "Boots Opticians", "brand:wikidata": "Q4944037", "brand:wikipedia": "en:Boots Opticians", "name": "Boots Opticians", "shop": "optician"}, "removeTags": {"brand": "Boots Opticians", "brand:wikidata": "Q4944037", "brand:wikipedia": "en:Boots Opticians", "name": "Boots Opticians", "shop": "optician"}, "matchScore": 2, "suggestion": true}, + "shop/optician/Alain Afflelou": {"name": "Alain Afflelou", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/AlainAfflelouOptico/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q2829511"}, "addTags": {"brand": "Alain Afflelou", "brand:wikidata": "Q2829511", "brand:wikipedia": "fr:Alain Afflelou (entreprise)", "name": "Alain Afflelou", "shop": "optician"}, "removeTags": {"brand": "Alain Afflelou", "brand:wikidata": "Q2829511", "brand:wikipedia": "fr:Alain Afflelou (entreprise)", "name": "Alain Afflelou", "shop": "optician"}, "matchScore": 2, "suggestion": true}, + "shop/optician/America's Best Contacts & Eyeglasses": {"name": "America's Best Contacts & Eyeglasses", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/AmericasBestContactsandEyeglasses/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q4742504"}, "addTags": {"brand": "America's Best Contacts & Eyeglasses", "brand:wikidata": "Q4742504", "brand:wikipedia": "en:America's Best Contacts & Eyeglasses", "name": "America's Best Contacts & Eyeglasses", "shop": "optician"}, "removeTags": {"brand": "America's Best Contacts & Eyeglasses", "brand:wikidata": "Q4742504", "brand:wikipedia": "en:America's Best Contacts & Eyeglasses", "name": "America's Best Contacts & Eyeglasses", "shop": "optician"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/optician/Apollo": {"name": "Apollo", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/ApolloOptik/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q618940"}, "addTags": {"brand": "Apollo", "brand:wikidata": "Q618940", "brand:wikipedia": "de:Apollo-Optik", "name": "Apollo", "shop": "optician"}, "removeTags": {"brand": "Apollo", "brand:wikidata": "Q618940", "brand:wikipedia": "de:Apollo-Optik", "name": "Apollo", "shop": "optician"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/optician/Atol": {"name": "Atol", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/opticiensatol/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q2869542"}, "addTags": {"brand": "Atol", "brand:wikidata": "Q2869542", "brand:wikipedia": "fr:Atol (opticien)", "name": "Atol", "shop": "optician"}, "removeTags": {"brand": "Atol", "brand:wikidata": "Q2869542", "brand:wikipedia": "fr:Atol (opticien)", "name": "Atol", "shop": "optician"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/optician/Boots Opticians": {"name": "Boots Opticians", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/BootsUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q4944037"}, "addTags": {"brand": "Boots Opticians", "brand:wikidata": "Q4944037", "brand:wikipedia": "en:Boots Opticians", "name": "Boots Opticians", "shop": "optician"}, "removeTags": {"brand": "Boots Opticians", "brand:wikidata": "Q4944037", "brand:wikipedia": "en:Boots Opticians", "name": "Boots Opticians", "shop": "optician"}, "matchScore": 2, "suggestion": true}, + "shop/optician/Eye Wish": {"name": "Eye Wish", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/EyeWishOpticiens/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q62391641"}, "addTags": {"brand": "Eye Wish", "brand:wikidata": "Q62391641", "name": "Eye Wish", "operator": "GrandVision", "operator:wikidata": "Q15812731", "operator:wikipedia": "nl:GrandVision", "shop": "optician"}, "removeTags": {"brand": "Eye Wish", "brand:wikidata": "Q62391641", "name": "Eye Wish", "operator": "GrandVision", "operator:wikidata": "Q15812731", "operator:wikipedia": "nl:GrandVision", "shop": "optician"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, "shop/optician/Fielmann": {"name": "Fielmann", "icon": "maki-optician", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F160506%20Fielmann%20LogoNEU%20pos%20wiki.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q457822"}, "addTags": {"brand": "Fielmann", "brand:wikidata": "Q457822", "brand:wikipedia": "en:Fielmann", "name": "Fielmann", "shop": "optician"}, "removeTags": {"brand": "Fielmann", "brand:wikidata": "Q457822", "brand:wikipedia": "en:Fielmann", "name": "Fielmann", "shop": "optician"}, "matchScore": 2, "suggestion": true}, - "shop/optician/Grand Optical": {"name": "Grand Optical", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q3113677"}, "addTags": {"brand": "Grand Optical", "brand:wikidata": "Q3113677", "brand:wikipedia": "fr:Grand Optical", "name": "Grand Optical", "shop": "optician"}, "removeTags": {"brand": "Grand Optical", "brand:wikidata": "Q3113677", "brand:wikipedia": "fr:Grand Optical", "name": "Grand Optical", "shop": "optician"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/optician/Hakim Optical": {"name": "Hakim Optical", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q28232761"}, "addTags": {"brand": "Hakim Optical", "brand:wikidata": "Q28232761", "brand:wikipedia": "en:Hakim Optical", "name": "Hakim Optical", "shop": "optician"}, "removeTags": {"brand": "Hakim Optical", "brand:wikidata": "Q28232761", "brand:wikipedia": "en:Hakim Optical", "name": "Hakim Optical", "shop": "optician"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/optician/Hans Anders": {"name": "Hans Anders", "icon": "maki-optician", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHans%20Anders%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q1884976"}, "addTags": {"brand": "Hans Anders", "brand:wikidata": "Q1884976", "brand:wikipedia": "nl:Hans Anders", "name": "Hans Anders", "shop": "optician"}, "removeTags": {"brand": "Hans Anders", "brand:wikidata": "Q1884976", "brand:wikipedia": "nl:Hans Anders", "name": "Hans Anders", "shop": "optician"}, "matchScore": 2, "suggestion": true}, - "shop/optician/Instrumentarium": {"name": "Instrumentarium", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q11864937"}, "addTags": {"brand": "Instrumentarium", "brand:wikidata": "Q11864937", "brand:wikipedia": "fi:Instrumentarium", "name": "Instrumentarium", "shop": "optician"}, "removeTags": {"brand": "Instrumentarium", "brand:wikidata": "Q11864937", "brand:wikipedia": "fi:Instrumentarium", "name": "Instrumentarium", "shop": "optician"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, - "shop/optician/Krys": {"name": "Krys", "icon": "maki-optician", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20KRYS%20GROUP.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q3119538"}, "addTags": {"brand": "Krys", "brand:wikidata": "Q3119538", "brand:wikipedia": "fr:Krys Group", "name": "Krys", "shop": "optician"}, "removeTags": {"brand": "Krys", "brand:wikidata": "Q3119538", "brand:wikipedia": "fr:Krys Group", "name": "Krys", "shop": "optician"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/optician/LensCrafters": {"name": "LensCrafters", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q6523209"}, "addTags": {"brand": "LensCrafters", "brand:wikidata": "Q6523209", "brand:wikipedia": "en:LensCrafters", "name": "LensCrafters", "shop": "optician"}, "removeTags": {"brand": "LensCrafters", "brand:wikidata": "Q6523209", "brand:wikipedia": "en:LensCrafters", "name": "LensCrafters", "shop": "optician"}, "matchScore": 2, "suggestion": true}, - "shop/optician/Les Opticiens Mutualistes": {"name": "Les Opticiens Mutualistes", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q18414551"}, "addTags": {"brand": "Les Opticiens Mutualistes", "brand:wikidata": "Q18414551", "brand:wikipedia": "fr:Les Opticiens Mutualistes", "name": "Les Opticiens Mutualistes", "shop": "optician"}, "removeTags": {"brand": "Les Opticiens Mutualistes", "brand:wikidata": "Q18414551", "brand:wikipedia": "fr:Les Opticiens Mutualistes", "name": "Les Opticiens Mutualistes", "shop": "optician"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/optician/Oakley": {"name": "Oakley", "icon": "maki-optician", "imageURL": "https://pbs.twimg.com/profile_images/1037284222342492162/FiCFOgXB_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q161906"}, "addTags": {"brand": "Oakley", "brand:wikidata": "Q161906", "brand:wikipedia": "en:Oakley, Inc.", "name": "Oakley", "shop": "optician"}, "removeTags": {"brand": "Oakley", "brand:wikidata": "Q161906", "brand:wikipedia": "en:Oakley, Inc.", "name": "Oakley", "shop": "optician"}, "matchScore": 2, "suggestion": true}, - "shop/optician/Optic 2000": {"name": "Optic 2000", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q3354445"}, "addTags": {"brand": "Optic 2000", "brand:wikidata": "Q3354445", "brand:wikipedia": "fr:Optic 2000", "name": "Optic 2000", "shop": "optician"}, "removeTags": {"brand": "Optic 2000", "brand:wikidata": "Q3354445", "brand:wikipedia": "fr:Optic 2000", "name": "Optic 2000", "shop": "optician"}, "matchScore": 2, "suggestion": true}, + "shop/optician/General Óptica": {"name": "General Óptica", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/generaloptica/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q62391672"}, "addTags": {"brand": "General Óptica", "brand:wikidata": "Q62391672", "name": "General Óptica", "shop": "optician"}, "removeTags": {"brand": "General Óptica", "brand:wikidata": "Q62391672", "name": "General Óptica", "shop": "optician"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, + "shop/optician/Grand Optical": {"name": "Grand Optical", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/grandoptical/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q3113677"}, "addTags": {"brand": "Grand Optical", "brand:wikidata": "Q3113677", "brand:wikipedia": "fr:Grand Optical", "name": "Grand Optical", "shop": "optician"}, "removeTags": {"brand": "Grand Optical", "brand:wikidata": "Q3113677", "brand:wikipedia": "fr:Grand Optical", "name": "Grand Optical", "shop": "optician"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/optician/Générale d'Optique": {"name": "Générale d'Optique", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/generaledoptique/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q62391701"}, "addTags": {"brand": "Générale d'Optique", "brand:wikidata": "Q62391701", "name": "Générale d'Optique", "shop": "optician"}, "removeTags": {"brand": "Générale d'Optique", "brand:wikidata": "Q62391701", "name": "Générale d'Optique", "shop": "optician"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/optician/Hakim Optical": {"name": "Hakim Optical", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/HakimOptical/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q28232761"}, "addTags": {"brand": "Hakim Optical", "brand:wikidata": "Q28232761", "brand:wikipedia": "en:Hakim Optical", "name": "Hakim Optical", "shop": "optician"}, "removeTags": {"brand": "Hakim Optical", "brand:wikidata": "Q28232761", "brand:wikipedia": "en:Hakim Optical", "name": "Hakim Optical", "shop": "optician"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/optician/Hans Anders": {"name": "Hans Anders", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/hansanders.nl/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q1884976"}, "addTags": {"brand": "Hans Anders", "brand:wikidata": "Q1884976", "brand:wikipedia": "nl:Hans Anders", "name": "Hans Anders", "shop": "optician"}, "removeTags": {"brand": "Hans Anders", "brand:wikidata": "Q1884976", "brand:wikipedia": "nl:Hans Anders", "name": "Hans Anders", "shop": "optician"}, "matchScore": 2, "suggestion": true}, + "shop/optician/Instrumentarium": {"name": "Instrumentarium", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/instru.fi/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q11864937"}, "addTags": {"brand": "Instrumentarium", "brand:wikidata": "Q11864937", "brand:wikipedia": "fi:Instrumentarium", "name": "Instrumentarium", "shop": "optician"}, "removeTags": {"brand": "Instrumentarium", "brand:wikidata": "Q11864937", "brand:wikipedia": "fi:Instrumentarium", "name": "Instrumentarium", "shop": "optician"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, + "shop/optician/Krys": {"name": "Krys", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/Krys/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q3119538"}, "addTags": {"brand": "Krys", "brand:wikidata": "Q3119538", "brand:wikipedia": "fr:Krys Group", "name": "Krys", "shop": "optician"}, "removeTags": {"brand": "Krys", "brand:wikidata": "Q3119538", "brand:wikipedia": "fr:Krys Group", "name": "Krys", "shop": "optician"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/optician/LensCrafters": {"name": "LensCrafters", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/LensCrafters/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q6523209"}, "addTags": {"brand": "LensCrafters", "brand:wikidata": "Q6523209", "brand:wikipedia": "en:LensCrafters", "name": "LensCrafters", "shop": "optician"}, "removeTags": {"brand": "LensCrafters", "brand:wikidata": "Q6523209", "brand:wikipedia": "en:LensCrafters", "name": "LensCrafters", "shop": "optician"}, "matchScore": 2, "suggestion": true}, + "shop/optician/Les Opticiens Mutualistes": {"name": "Les Opticiens Mutualistes", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/lesopticiensmutualistes.officiel/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q18414551"}, "addTags": {"brand": "Les Opticiens Mutualistes", "brand:wikidata": "Q18414551", "brand:wikipedia": "fr:Les Opticiens Mutualistes", "name": "Les Opticiens Mutualistes", "shop": "optician"}, "removeTags": {"brand": "Les Opticiens Mutualistes", "brand:wikidata": "Q18414551", "brand:wikipedia": "fr:Les Opticiens Mutualistes", "name": "Les Opticiens Mutualistes", "shop": "optician"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/optician/Multiópticas (Portugal)": {"name": "Multiópticas (Portugal)", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/MultiOpticasPortugal/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q62391722"}, "addTags": {"brand": "Multiópticas", "brand:wikidata": "Q62391722", "name": "Multiópticas", "shop": "optician"}, "removeTags": {"brand": "Multiópticas", "brand:wikidata": "Q62391722", "name": "Multiópticas", "shop": "optician"}, "countryCodes": ["pt"], "matchScore": 2, "suggestion": true}, + "shop/optician/Multiópticas (Spain)": {"name": "Multiópticas (Spain)", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/Multiopticas/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q62391719"}, "addTags": {"brand": "Multiópticas", "brand:wikidata": "Q62391719", "name": "Multiópticas", "shop": "optician"}, "removeTags": {"brand": "Multiópticas", "brand:wikidata": "Q62391719", "name": "Multiópticas", "shop": "optician"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, + "shop/optician/Oakley": {"name": "Oakley", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/Oakley/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q161906"}, "addTags": {"brand": "Oakley", "brand:wikidata": "Q161906", "brand:wikipedia": "en:Oakley, Inc.", "name": "Oakley", "shop": "optician"}, "removeTags": {"brand": "Oakley", "brand:wikidata": "Q161906", "brand:wikipedia": "en:Oakley, Inc.", "name": "Oakley", "shop": "optician"}, "matchScore": 2, "suggestion": true}, + "shop/optician/Optic 2000": {"name": "Optic 2000", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/optic2000/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q3354445"}, "addTags": {"brand": "Optic 2000", "brand:wikidata": "Q3354445", "brand:wikipedia": "fr:Optic 2000", "name": "Optic 2000", "shop": "optician"}, "removeTags": {"brand": "Optic 2000", "brand:wikidata": "Q3354445", "brand:wikipedia": "fr:Optic 2000", "name": "Optic 2000", "shop": "optician"}, "matchScore": 2, "suggestion": true}, "shop/optician/Opticalia": {"name": "Opticalia", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/OPTICALIAGRUPO/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q62082114"}, "addTags": {"brand": "Opticalia", "brand:wikidata": "Q62082114", "name": "Opticalia", "shop": "optician"}, "removeTags": {"brand": "Opticalia", "brand:wikidata": "Q62082114", "name": "Opticalia", "shop": "optician"}, "matchScore": 2, "suggestion": true}, - "shop/optician/Pearle": {"name": "Pearle", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q2231148"}, "addTags": {"brand": "Pearle", "brand:wikidata": "Q2231148", "brand:wikipedia": "en:Pearle Vision", "name": "Pearle", "shop": "optician"}, "removeTags": {"brand": "Pearle", "brand:wikidata": "Q2231148", "brand:wikipedia": "en:Pearle Vision", "name": "Pearle", "shop": "optician"}, "matchScore": 2, "suggestion": true}, - "shop/optician/Pearle Vision": {"name": "Pearle Vision", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q2231148"}, "addTags": {"brand": "Pearle Vision", "brand:wikidata": "Q2231148", "brand:wikipedia": "en:Pearle Vision", "name": "Pearle Vision", "shop": "optician"}, "removeTags": {"brand": "Pearle Vision", "brand:wikidata": "Q2231148", "brand:wikipedia": "en:Pearle Vision", "name": "Pearle Vision", "shop": "optician"}, "matchScore": 2, "suggestion": true}, - "shop/optician/Specsavers": {"name": "Specsavers", "icon": "maki-optician", "imageURL": "https://pbs.twimg.com/profile_images/767730339166973952/S-xwXTCc_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q2000610"}, "addTags": {"brand": "Specsavers", "brand:wikidata": "Q2000610", "brand:wikipedia": "en:Specsavers", "name": "Specsavers", "shop": "optician"}, "removeTags": {"brand": "Specsavers", "brand:wikidata": "Q2000610", "brand:wikipedia": "en:Specsavers", "name": "Specsavers", "shop": "optician"}, "matchScore": 2, "suggestion": true}, + "shop/optician/Pearle": {"name": "Pearle", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/pearlevision/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q2231148"}, "addTags": {"brand": "Pearle", "brand:wikidata": "Q2231148", "brand:wikipedia": "en:Pearle Vision", "name": "Pearle", "shop": "optician"}, "removeTags": {"brand": "Pearle", "brand:wikidata": "Q2231148", "brand:wikipedia": "en:Pearle Vision", "name": "Pearle", "shop": "optician"}, "matchScore": 2, "suggestion": true}, + "shop/optician/Specsavers": {"name": "Specsavers", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/Specsavers/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q2000610"}, "addTags": {"brand": "Specsavers", "brand:wikidata": "Q2000610", "brand:wikipedia": "en:Specsavers", "name": "Specsavers", "shop": "optician"}, "removeTags": {"brand": "Specsavers", "brand:wikidata": "Q2000610", "brand:wikipedia": "en:Specsavers", "name": "Specsavers", "shop": "optician"}, "matchScore": 2, "suggestion": true}, "shop/optician/Sunglass Hut": {"name": "Sunglass Hut", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/SunglassHut/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q136311"}, "addTags": {"brand": "Sunglass Hut", "brand:wikidata": "Q136311", "brand:wikipedia": "en:Sunglass Hut", "name": "Sunglass Hut", "shop": "optician"}, "removeTags": {"brand": "Sunglass Hut", "brand:wikidata": "Q136311", "brand:wikipedia": "en:Sunglass Hut", "name": "Sunglass Hut", "shop": "optician"}, "matchScore": 2, "suggestion": true}, - "shop/optician/Synoptik": {"name": "Synoptik", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q10687541"}, "addTags": {"brand": "Synoptik", "brand:wikidata": "Q10687541", "brand:wikipedia": "sv:Synoptik", "name": "Synoptik", "shop": "optician"}, "removeTags": {"brand": "Synoptik", "brand:wikidata": "Q10687541", "brand:wikipedia": "sv:Synoptik", "name": "Synoptik", "shop": "optician"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, - "shop/optician/Synsam": {"name": "Synsam", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q12004589"}, "addTags": {"brand": "Synsam", "brand:wikidata": "Q12004589", "brand:wikipedia": "sv:Synsam", "name": "Synsam", "shop": "optician"}, "removeTags": {"brand": "Synsam", "brand:wikidata": "Q12004589", "brand:wikipedia": "sv:Synsam", "name": "Synsam", "shop": "optician"}, "countryCodes": ["fi", "no", "se"], "matchScore": 2, "suggestion": true}, - "shop/optician/Vision Express": {"name": "Vision Express", "icon": "maki-optician", "imageURL": "https://pbs.twimg.com/profile_images/997108586147995648/2e-jycg6_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q7936150"}, "addTags": {"brand": "Vision Express", "brand:wikidata": "Q7936150", "brand:wikipedia": "en:Vision Express", "name": "Vision Express", "shop": "optician"}, "removeTags": {"brand": "Vision Express", "brand:wikidata": "Q7936150", "brand:wikipedia": "en:Vision Express", "name": "Vision Express", "shop": "optician"}, "matchScore": 2, "suggestion": true}, - "shop/optician/Visionworks": {"name": "Visionworks", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q5422607"}, "addTags": {"brand": "Visionworks", "brand:wikidata": "Q5422607", "brand:wikipedia": "en:Visionworks", "name": "Visionworks", "shop": "optician"}, "removeTags": {"brand": "Visionworks", "brand:wikidata": "Q5422607", "brand:wikipedia": "en:Visionworks", "name": "Visionworks", "shop": "optician"}, "matchScore": 2, "suggestion": true}, + "shop/optician/Synoptik": {"name": "Synoptik", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/synoptiksverige/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q10687541"}, "addTags": {"brand": "Synoptik", "brand:wikidata": "Q10687541", "brand:wikipedia": "sv:Synoptik", "name": "Synoptik", "shop": "optician"}, "removeTags": {"brand": "Synoptik", "brand:wikidata": "Q10687541", "brand:wikipedia": "sv:Synoptik", "name": "Synoptik", "shop": "optician"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, + "shop/optician/Synsam": {"name": "Synsam", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/synsam.se/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q12004589"}, "addTags": {"brand": "Synsam", "brand:wikidata": "Q12004589", "brand:wikipedia": "sv:Synsam", "name": "Synsam", "shop": "optician"}, "removeTags": {"brand": "Synsam", "brand:wikidata": "Q12004589", "brand:wikipedia": "sv:Synsam", "name": "Synsam", "shop": "optician"}, "countryCodes": ["fi", "no", "se"], "matchScore": 2, "suggestion": true}, + "shop/optician/Vision Express": {"name": "Vision Express", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/visionexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q7936150"}, "addTags": {"brand": "Vision Express", "brand:wikidata": "Q7936150", "brand:wikipedia": "en:Vision Express", "name": "Vision Express", "shop": "optician"}, "removeTags": {"brand": "Vision Express", "brand:wikidata": "Q7936150", "brand:wikipedia": "en:Vision Express", "name": "Vision Express", "shop": "optician"}, "matchScore": 2, "suggestion": true}, + "shop/optician/Visionworks": {"name": "Visionworks", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/Visionworks/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q5422607"}, "addTags": {"brand": "Visionworks", "brand:wikidata": "Q5422607", "brand:wikipedia": "en:Visionworks", "name": "Visionworks", "shop": "optician"}, "removeTags": {"brand": "Visionworks", "brand:wikidata": "Q5422607", "brand:wikipedia": "en:Visionworks", "name": "Visionworks", "shop": "optician"}, "matchScore": 2, "suggestion": true}, + "shop/optician/แว่นท็อปเจริญ": {"name": "แว่นท็อปเจริญ", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/TopCharoenOpticalOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q62391732"}, "addTags": {"brand": "แว่นท็อปเจริญ", "brand:th": "แว่นท็อปเจริญ", "brand:wikidata": "Q62391732", "name": "แว่นท็อปเจริญ", "name:th": "แว่นท็อปเจริญ", "shop": "optician"}, "removeTags": {"brand": "แว่นท็อปเจริญ", "brand:th": "แว่นท็อปเจริญ", "brand:wikidata": "Q62391732", "name": "แว่นท็อปเจริญ", "name:th": "แว่นท็อปเจริญ", "shop": "optician"}, "countryCodes": ["th"], "matchScore": 2, "suggestion": true}, "shop/optician/メガネスーパー": {"name": "メガネスーパー", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/meganesuper/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q11343504"}, "addTags": {"brand": "メガネスーパー", "brand:ja": "メガネスーパー", "brand:wikidata": "Q11343504", "brand:wikipedia": "ja:メガネスーパー", "name": "メガネスーパー", "name:en": "Meganesuper", "name:ja": "メガネスーパー", "shop": "optician"}, "removeTags": {"brand": "メガネスーパー", "brand:ja": "メガネスーパー", "brand:wikidata": "Q11343504", "brand:wikipedia": "ja:メガネスーパー", "name": "メガネスーパー", "name:en": "Meganesuper", "name:ja": "メガネスーパー", "shop": "optician"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/optician/寶島眼鏡": {"name": "寶島眼鏡", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/formosafans/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q62391741"}, "addTags": {"brand": "寶島眼鏡", "brand:wikidata": "Q62391741", "name": "寶島眼鏡", "shop": "optician"}, "removeTags": {"brand": "寶島眼鏡", "brand:wikidata": "Q62391741", "name": "寶島眼鏡", "shop": "optician"}, "countryCodes": ["zh"], "matchScore": 2, "suggestion": true}, + "shop/optician/眼鏡市場": {"name": "眼鏡市場", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/meganeichiba.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q11343506"}, "addTags": {"brand": "眼鏡市場", "brand:en": "Megane Ichiba", "brand:wikidata": "Q11343506", "brand:wikipedia": "ja:メガネトップ", "name": "眼鏡市場", "name:en": "Megane Ichiba", "shop": "optician"}, "removeTags": {"brand": "眼鏡市場", "brand:en": "Megane Ichiba", "brand:wikidata": "Q11343506", "brand:wikipedia": "ja:メガネトップ", "name": "眼鏡市場", "name:en": "Megane Ichiba", "shop": "optician"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/outdoor/Bass Pro Shops": {"name": "Bass Pro Shops", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/bassproshops/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "outdoor", "brand:wikidata": "Q4867953"}, "addTags": {"brand": "Bass Pro Shops", "brand:wikidata": "Q4867953", "brand:wikipedia": "en:Bass Pro Shops", "name": "Bass Pro Shops", "shop": "outdoor"}, "removeTags": {"brand": "Bass Pro Shops", "brand:wikidata": "Q4867953", "brand:wikipedia": "en:Bass Pro Shops", "name": "Bass Pro Shops", "shop": "outdoor"}, "matchScore": 2, "suggestion": true}, "shop/outdoor/Cabela's": {"name": "Cabela's", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/Cabelas/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "outdoor", "brand:wikidata": "Q2793714"}, "addTags": {"brand": "Cabela's", "brand:wikidata": "Q2793714", "brand:wikipedia": "en:Cabela's", "name": "Cabela's", "shop": "outdoor"}, "removeTags": {"brand": "Cabela's", "brand:wikidata": "Q2793714", "brand:wikipedia": "en:Cabela's", "name": "Cabela's", "shop": "outdoor"}, "matchScore": 2, "suggestion": true}, "shop/outdoor/Jack Wolfskin": {"name": "Jack Wolfskin", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/JACKWOLFSKINofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "outdoor", "brand:wikidata": "Q536133"}, "addTags": {"brand": "Jack Wolfskin", "brand:wikidata": "Q536133", "brand:wikipedia": "en:Jack Wolfskin", "name": "Jack Wolfskin", "shop": "outdoor"}, "removeTags": {"brand": "Jack Wolfskin", "brand:wikidata": "Q536133", "brand:wikipedia": "en:Jack Wolfskin", "name": "Jack Wolfskin", "shop": "outdoor"}, "matchScore": 2, "suggestion": true}, @@ -3376,130 +3551,147 @@ "shop/paint/Jotun": {"name": "Jotun", "icon": "fas-paint-roller", "geometry": ["point", "area"], "tags": {"shop": "paint", "brand:wikidata": "Q1778870"}, "addTags": {"brand": "Jotun", "brand:wikidata": "Q1778870", "brand:wikipedia": "en:Jotun (company)", "name": "Jotun", "shop": "paint"}, "removeTags": {"brand": "Jotun", "brand:wikidata": "Q1778870", "brand:wikipedia": "en:Jotun (company)", "name": "Jotun", "shop": "paint"}, "matchScore": 2, "suggestion": true}, "shop/paint/National Paints": {"name": "National Paints", "icon": "fas-paint-roller", "imageURL": "https://graph.facebook.com/NationalPaints/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "paint", "brand:wikidata": "Q62073521"}, "addTags": {"brand": "National Paints", "brand:wikidata": "Q62073521", "name": "National Paints", "shop": "paint"}, "removeTags": {"brand": "National Paints", "brand:wikidata": "Q62073521", "name": "National Paints", "shop": "paint"}, "matchScore": 2, "suggestion": true}, "shop/paint/Sherwin Williams": {"name": "Sherwin Williams", "icon": "fas-paint-roller", "geometry": ["point", "area"], "tags": {"shop": "paint", "brand:wikidata": "Q48881"}, "addTags": {"brand": "Sherwin Williams", "brand:wikidata": "Q48881", "brand:wikipedia": "en:Sherwin-Williams", "name": "Sherwin Williams", "shop": "paint"}, "removeTags": {"brand": "Sherwin Williams", "brand:wikidata": "Q48881", "brand:wikipedia": "en:Sherwin-Williams", "name": "Sherwin Williams", "shop": "paint"}, "matchScore": 2, "suggestion": true}, - "shop/party/Party City": {"name": "Party City", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPartyCity%20Logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "party", "brand:wikidata": "Q7140896"}, "addTags": {"brand": "Party City", "brand:wikidata": "Q7140896", "brand:wikipedia": "en:Party City", "name": "Party City", "shop": "party"}, "removeTags": {"brand": "Party City", "brand:wikidata": "Q7140896", "brand:wikipedia": "en:Party City", "name": "Party City", "shop": "party"}, "matchScore": 2, "suggestion": true}, - "shop/pawnbroker/Cash Converters": {"name": "Cash Converters", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1080851674749640704/GLO4H-z8_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "pawnbroker", "brand:wikidata": "Q5048645"}, "addTags": {"brand": "Cash Converters", "brand:wikidata": "Q5048645", "brand:wikipedia": "en:Cash Converters", "name": "Cash Converters", "shop": "pawnbroker"}, "removeTags": {"brand": "Cash Converters", "brand:wikidata": "Q5048645", "brand:wikipedia": "en:Cash Converters", "name": "Cash Converters", "shop": "pawnbroker"}, "matchScore": 2, "suggestion": true}, - "shop/pawnbroker/Cebuana Lhuillier": {"name": "Cebuana Lhuillier", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "pawnbroker", "brand:wikidata": "Q17064661"}, "addTags": {"brand": "Cebuana Lhuillier", "brand:wikidata": "Q17064661", "brand:wikipedia": "en:Cebuana Lhuillier", "name": "Cebuana Lhuillier", "shop": "pawnbroker"}, "removeTags": {"brand": "Cebuana Lhuillier", "brand:wikidata": "Q17064661", "brand:wikipedia": "en:Cebuana Lhuillier", "name": "Cebuana Lhuillier", "shop": "pawnbroker"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, + "shop/party/Party City": {"name": "Party City", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/PartyCity/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "party", "brand:wikidata": "Q7140896"}, "addTags": {"brand": "Party City", "brand:wikidata": "Q7140896", "brand:wikipedia": "en:Party City", "name": "Party City", "shop": "party"}, "removeTags": {"brand": "Party City", "brand:wikidata": "Q7140896", "brand:wikipedia": "en:Party City", "name": "Party City", "shop": "party"}, "matchScore": 2, "suggestion": true}, + "shop/pastry/Smallcakes": {"name": "Smallcakes", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/SmallcakesKC/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pastry", "brand:wikidata": "Q62384749"}, "addTags": {"brand": "Smallcakes", "brand:wikidata": "Q62384749", "name": "Smallcakes", "shop": "pastry"}, "removeTags": {"brand": "Smallcakes", "brand:wikidata": "Q62384749", "name": "Smallcakes", "shop": "pastry"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/pawnbroker/Cash Converters": {"name": "Cash Converters", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/CashConvertersUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pawnbroker", "brand:wikidata": "Q5048645"}, "addTags": {"brand": "Cash Converters", "brand:wikidata": "Q5048645", "brand:wikipedia": "en:Cash Converters", "name": "Cash Converters", "shop": "pawnbroker"}, "removeTags": {"brand": "Cash Converters", "brand:wikidata": "Q5048645", "brand:wikipedia": "en:Cash Converters", "name": "Cash Converters", "shop": "pawnbroker"}, "matchScore": 2, "suggestion": true}, + "shop/pawnbroker/Cebuana Lhuillier": {"name": "Cebuana Lhuillier", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/cebuanalhuillierpawnshop/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pawnbroker", "brand:wikidata": "Q17064661"}, "addTags": {"brand": "Cebuana Lhuillier", "brand:wikidata": "Q17064661", "brand:wikipedia": "en:Cebuana Lhuillier", "name": "Cebuana Lhuillier", "shop": "pawnbroker"}, "removeTags": {"brand": "Cebuana Lhuillier", "brand:wikidata": "Q17064661", "brand:wikipedia": "en:Cebuana Lhuillier", "name": "Cebuana Lhuillier", "shop": "pawnbroker"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, + "shop/pawnbroker/Palawan Pawnshop": {"name": "Palawan Pawnshop", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/palawan.pawnshop/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pawnbroker", "brand:wikidata": "Q62391488"}, "addTags": {"brand": "Palawan Pawnshop", "brand:wikidata": "Q62391488", "name": "Palawan Pawnshop", "shop": "pawnbroker"}, "removeTags": {"brand": "Palawan Pawnshop", "brand:wikidata": "Q62391488", "name": "Palawan Pawnshop", "shop": "pawnbroker"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, + "shop/pawnbroker/Villarica Pawnshop": {"name": "Villarica Pawnshop", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/155765647803482/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pawnbroker", "brand:wikidata": "Q62391438"}, "addTags": {"brand": "Villarica Pawnshop", "brand:wikidata": "Q62391438", "name": "Villarica Pawnshop", "shop": "pawnbroker"}, "removeTags": {"brand": "Villarica Pawnshop", "brand:wikidata": "Q62391438", "name": "Villarica Pawnshop", "shop": "pawnbroker"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, "shop/perfumery/Douglas": {"name": "Douglas", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/DouglasDeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "perfumery", "brand:wikidata": "Q2052213"}, "addTags": {"brand": "Douglas", "brand:wikidata": "Q2052213", "brand:wikipedia": "de:Parfümerie Douglas", "name": "Douglas", "shop": "perfumery"}, "removeTags": {"brand": "Douglas", "brand:wikidata": "Q2052213", "brand:wikipedia": "de:Parfümerie Douglas", "name": "Douglas", "shop": "perfumery"}, "matchScore": 2, "suggestion": true}, - "shop/perfumery/ICI PARIS XL": {"name": "ICI PARIS XL", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "perfumery", "brand:wikidata": "Q769749"}, "addTags": {"brand": "ICI PARIS XL", "brand:wikidata": "Q769749", "brand:wikipedia": "en:ICI Paris XL", "name": "ICI PARIS XL", "shop": "perfumery"}, "removeTags": {"brand": "ICI PARIS XL", "brand:wikidata": "Q769749", "brand:wikipedia": "en:ICI Paris XL", "name": "ICI PARIS XL", "shop": "perfumery"}, "matchScore": 2, "suggestion": true}, - "shop/perfumery/Marionnaud": {"name": "Marionnaud", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Marionnaud.France/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "perfumery", "brand:wikidata": "Q1129073"}, "addTags": {"brand": "Marionnaud", "brand:wikidata": "Q1129073", "brand:wikipedia": "fr:Marionnaud Parfumeries", "name": "Marionnaud", "shop": "perfumery"}, "removeTags": {"brand": "Marionnaud", "brand:wikidata": "Q1129073", "brand:wikipedia": "fr:Marionnaud Parfumeries", "name": "Marionnaud", "shop": "perfumery"}, "matchScore": 2, "suggestion": true}, + "shop/perfumery/FAnn": {"name": "FAnn", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/FAnn.cz/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "perfumery", "brand:wikidata": "Q62391353"}, "addTags": {"brand": "FAnn", "brand:wikidata": "Q62391353", "name": "FAnn", "shop": "perfumery"}, "removeTags": {"brand": "FAnn", "brand:wikidata": "Q62391353", "name": "FAnn", "shop": "perfumery"}, "countryCodes": ["cz", "sk"], "matchScore": 2, "suggestion": true}, + "shop/perfumery/ICI PARIS XL": {"name": "ICI PARIS XL", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/iciparisxlbe/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "perfumery", "brand:wikidata": "Q769749"}, "addTags": {"brand": "ICI PARIS XL", "brand:wikidata": "Q769749", "brand:wikipedia": "en:ICI Paris XL", "name": "ICI PARIS XL", "shop": "perfumery"}, "removeTags": {"brand": "ICI PARIS XL", "brand:wikidata": "Q769749", "brand:wikipedia": "en:ICI Paris XL", "name": "ICI PARIS XL", "shop": "perfumery"}, "matchScore": 2, "suggestion": true}, + "shop/perfumery/Marionnaud": {"name": "Marionnaud", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Marionnaud.France/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "perfumery", "brand:wikidata": "Q1129073"}, "addTags": {"brand": "Marionnaud", "brand:wikidata": "Q1129073", "brand:wikipedia": "fr:Marionnaud", "name": "Marionnaud", "shop": "perfumery"}, "removeTags": {"brand": "Marionnaud", "brand:wikidata": "Q1129073", "brand:wikipedia": "fr:Marionnaud", "name": "Marionnaud", "shop": "perfumery"}, "matchScore": 2, "suggestion": true}, "shop/perfumery/O Boticário": {"name": "O Boticário", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/oboticario/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "perfumery", "brand:wikidata": "Q7073219"}, "addTags": {"brand": "O Boticário", "brand:wikidata": "Q7073219", "brand:wikipedia": "en:O Boticário", "name": "O Boticário", "shop": "perfumery"}, "removeTags": {"brand": "O Boticário", "brand:wikidata": "Q7073219", "brand:wikipedia": "en:O Boticário", "name": "O Boticário", "shop": "perfumery"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, - "shop/pet/Das Futterhaus": {"name": "Das Futterhaus", "icon": "maki-dog-park", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q1167914"}, "addTags": {"brand": "Das Futterhaus", "brand:wikidata": "Q1167914", "brand:wikipedia": "de:Das Futterhaus", "name": "Das Futterhaus", "shop": "pet"}, "removeTags": {"brand": "Das Futterhaus", "brand:wikidata": "Q1167914", "brand:wikipedia": "de:Das Futterhaus", "name": "Das Futterhaus", "shop": "pet"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, - "shop/pet/Fressnapf": {"name": "Fressnapf", "icon": "maki-dog-park", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q875796"}, "addTags": {"brand": "Fressnapf", "brand:wikidata": "Q875796", "brand:wikipedia": "en:Fressnapf", "name": "Fressnapf", "shop": "pet"}, "removeTags": {"brand": "Fressnapf", "brand:wikidata": "Q875796", "brand:wikipedia": "en:Fressnapf", "name": "Fressnapf", "shop": "pet"}, "matchScore": 2, "suggestion": true}, + "shop/pet/Das Futterhaus": {"name": "Das Futterhaus", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/futterhaus.deutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q1167914"}, "addTags": {"brand": "Das Futterhaus", "brand:wikidata": "Q1167914", "brand:wikipedia": "de:Das Futterhaus", "name": "Das Futterhaus", "shop": "pet"}, "removeTags": {"brand": "Das Futterhaus", "brand:wikidata": "Q1167914", "brand:wikipedia": "de:Das Futterhaus", "name": "Das Futterhaus", "shop": "pet"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, + "shop/pet/Fressnapf": {"name": "Fressnapf", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/Fressnapf/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q875796"}, "addTags": {"brand": "Fressnapf", "brand:wikidata": "Q875796", "brand:wikipedia": "en:Fressnapf", "name": "Fressnapf", "shop": "pet"}, "removeTags": {"brand": "Fressnapf", "brand:wikidata": "Q875796", "brand:wikipedia": "en:Fressnapf", "name": "Fressnapf", "shop": "pet"}, "matchScore": 2, "suggestion": true}, "shop/pet/Global Pet Foods": {"name": "Global Pet Foods", "icon": "maki-dog-park", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q57985699"}, "addTags": {"brand": "Global Pet Foods", "brand:wikidata": "Q57985699", "name": "Global Pet Foods", "shop": "pet"}, "removeTags": {"brand": "Global Pet Foods", "brand:wikidata": "Q57985699", "name": "Global Pet Foods", "shop": "pet"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/pet/Maxi Zoo": {"name": "Maxi Zoo", "icon": "maki-dog-park", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q875796"}, "addTags": {"brand": "Maxi Zoo", "brand:wikidata": "Q875796", "brand:wikipedia": "en:Fressnapf", "name": "Maxi Zoo", "shop": "pet"}, "removeTags": {"brand": "Maxi Zoo", "brand:wikidata": "Q875796", "brand:wikipedia": "en:Fressnapf", "name": "Maxi Zoo", "shop": "pet"}, "matchScore": 2, "suggestion": true}, - "shop/pet/Mud Bay": {"name": "Mud Bay", "icon": "maki-dog-park", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q30324179"}, "addTags": {"brand": "Mud Bay", "brand:wikidata": "Q30324179", "brand:wikipedia": "en:Mud Bay pet store", "name": "Mud Bay", "shop": "pet"}, "removeTags": {"brand": "Mud Bay", "brand:wikidata": "Q30324179", "brand:wikipedia": "en:Mud Bay pet store", "name": "Mud Bay", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/pet/Pet Food Express": {"name": "Pet Food Express", "icon": "maki-dog-park", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q7171541"}, "addTags": {"brand": "Pet Food Express", "brand:wikidata": "Q7171541", "brand:wikipedia": "en:Pet Food Express", "name": "Pet Food Express", "shop": "pet"}, "removeTags": {"brand": "Pet Food Express", "brand:wikidata": "Q7171541", "brand:wikipedia": "en:Pet Food Express", "name": "Pet Food Express", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/pet/Pet Supermarket": {"name": "Pet Supermarket", "icon": "maki-dog-park", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q61968363"}, "addTags": {"brand": "Pet Supermarket", "brand:wikidata": "Q61968363", "name": "Pet Supermarket", "shop": "pet"}, "removeTags": {"brand": "Pet Supermarket", "brand:wikidata": "Q61968363", "name": "Pet Supermarket", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/pet/Pet Supplies Plus": {"name": "Pet Supplies Plus", "icon": "maki-dog-park", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q7171563"}, "addTags": {"brand": "Pet Supplies Plus", "brand:wikidata": "Q7171563", "brand:wikipedia": "en:Pet Supplies Plus", "name": "Pet Supplies Plus", "shop": "pet"}, "removeTags": {"brand": "Pet Supplies Plus", "brand:wikidata": "Q7171563", "brand:wikipedia": "en:Pet Supplies Plus", "name": "Pet Supplies Plus", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/pet/Pet Valu": {"name": "Pet Valu", "icon": "maki-dog-park", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q58009635"}, "addTags": {"brand": "Pet Valu", "brand:wikidata": "Q58009635", "name": "Pet Valu", "shop": "pet"}, "removeTags": {"brand": "Pet Valu", "brand:wikidata": "Q58009635", "name": "Pet Valu", "shop": "pet"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, + "shop/pet/Maxi Zoo": {"name": "Maxi Zoo", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/Fressnapf/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q875796"}, "addTags": {"brand": "Maxi Zoo", "brand:wikidata": "Q875796", "brand:wikipedia": "en:Fressnapf", "name": "Maxi Zoo", "shop": "pet"}, "removeTags": {"brand": "Maxi Zoo", "brand:wikidata": "Q875796", "brand:wikipedia": "en:Fressnapf", "name": "Maxi Zoo", "shop": "pet"}, "matchScore": 2, "suggestion": true}, + "shop/pet/Mud Bay": {"name": "Mud Bay", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/mudbay/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q30324179"}, "addTags": {"brand": "Mud Bay", "brand:wikidata": "Q30324179", "brand:wikipedia": "en:Mud Bay pet store", "name": "Mud Bay", "shop": "pet"}, "removeTags": {"brand": "Mud Bay", "brand:wikidata": "Q30324179", "brand:wikipedia": "en:Mud Bay pet store", "name": "Mud Bay", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/pet/Pet Food Express": {"name": "Pet Food Express", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/petfoodexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q7171541"}, "addTags": {"brand": "Pet Food Express", "brand:wikidata": "Q7171541", "brand:wikipedia": "en:Pet Food Express", "name": "Pet Food Express", "shop": "pet"}, "removeTags": {"brand": "Pet Food Express", "brand:wikidata": "Q7171541", "brand:wikipedia": "en:Pet Food Express", "name": "Pet Food Express", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/pet/Pet Supermarket": {"name": "Pet Supermarket", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/PetSupermarket/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q61968363"}, "addTags": {"brand": "Pet Supermarket", "brand:wikidata": "Q61968363", "name": "Pet Supermarket", "shop": "pet"}, "removeTags": {"brand": "Pet Supermarket", "brand:wikidata": "Q61968363", "name": "Pet Supermarket", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/pet/Pet Supplies Plus": {"name": "Pet Supplies Plus", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/petsuppliesplus/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q7171563"}, "addTags": {"brand": "Pet Supplies Plus", "brand:wikidata": "Q7171563", "brand:wikipedia": "en:Pet Supplies Plus", "name": "Pet Supplies Plus", "shop": "pet"}, "removeTags": {"brand": "Pet Supplies Plus", "brand:wikidata": "Q7171563", "brand:wikipedia": "en:Pet Supplies Plus", "name": "Pet Supplies Plus", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/pet/Pet Valu": {"name": "Pet Valu", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/PetValuUS/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q58009635"}, "addTags": {"brand": "Pet Valu", "brand:wikidata": "Q58009635", "name": "Pet Valu", "shop": "pet"}, "removeTags": {"brand": "Pet Valu", "brand:wikidata": "Q58009635", "name": "Pet Valu", "shop": "pet"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, "shop/pet/PetSmart": {"name": "PetSmart", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/PetSmart/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q3307147"}, "addTags": {"brand": "PetSmart", "brand:wikidata": "Q3307147", "brand:wikipedia": "en:PetSmart", "name": "PetSmart", "shop": "pet"}, "removeTags": {"brand": "PetSmart", "brand:wikidata": "Q3307147", "brand:wikipedia": "en:PetSmart", "name": "PetSmart", "shop": "pet"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, - "shop/pet/Petco": {"name": "Petco", "icon": "maki-dog-park", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q7171798"}, "addTags": {"brand": "Petco", "brand:wikidata": "Q7171798", "brand:wikipedia": "en:Petco", "name": "Petco", "shop": "pet"}, "removeTags": {"brand": "Petco", "brand:wikidata": "Q7171798", "brand:wikipedia": "en:Petco", "name": "Petco", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/pet/Petland": {"name": "Petland", "icon": "maki-dog-park", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q17111474"}, "addTags": {"brand": "Petland", "brand:wikidata": "Q17111474", "brand:wikipedia": "en:Petland", "name": "Petland", "shop": "pet"}, "removeTags": {"brand": "Petland", "brand:wikidata": "Q17111474", "brand:wikipedia": "en:Petland", "name": "Petland", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/pet/Petland Discounts": {"name": "Petland Discounts", "icon": "maki-dog-park", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q7178463"}, "addTags": {"brand": "Petland Discounts", "brand:wikidata": "Q7178463", "brand:wikipedia": "en:Petland Discounts", "name": "Petland Discounts", "shop": "pet"}, "removeTags": {"brand": "Petland Discounts", "brand:wikidata": "Q7178463", "brand:wikipedia": "en:Petland Discounts", "name": "Petland Discounts", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/pet/Pets at Home": {"name": "Pets at Home", "icon": "maki-dog-park", "imageURL": "https://pbs.twimg.com/profile_images/1219801082/PAH_Logo_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q7179258"}, "addTags": {"brand": "Pets at Home", "brand:wikidata": "Q7179258", "brand:wikipedia": "en:Pets at Home", "name": "Pets at Home", "shop": "pet"}, "removeTags": {"brand": "Pets at Home", "brand:wikidata": "Q7179258", "brand:wikipedia": "en:Pets at Home", "name": "Pets at Home", "shop": "pet"}, "matchScore": 2, "suggestion": true}, - "shop/photo/Kodak Express": {"name": "Kodak Express", "icon": "maki-attraction", "geometry": ["point", "area"], "tags": {"shop": "photo", "brand:wikidata": "Q6425126"}, "addTags": {"brand": "Kodak Express", "brand:wikidata": "Q6425126", "brand:wikipedia": "en:Kodak Express", "name": "Kodak Express", "shop": "photo"}, "removeTags": {"brand": "Kodak Express", "brand:wikidata": "Q6425126", "brand:wikipedia": "en:Kodak Express", "name": "Kodak Express", "shop": "photo"}, "matchScore": 2, "suggestion": true}, - "shop/second_hand/Buffalo Exchange": {"name": "Buffalo Exchange", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "second_hand", "brand:wikidata": "Q4985721"}, "addTags": {"brand": "Buffalo Exchange", "brand:wikidata": "Q4985721", "brand:wikipedia": "en:Buffalo Exchange", "name": "Buffalo Exchange", "second_hand": "only", "shop": "clothes"}, "removeTags": {"brand": "Buffalo Exchange", "brand:wikidata": "Q4985721", "brand:wikipedia": "en:Buffalo Exchange", "name": "Buffalo Exchange", "second_hand": "only", "shop": "clothes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/second_hand/Value Village": {"name": "Value Village", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSavers-logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "second_hand", "brand:wikidata": "Q7428188"}, "addTags": {"brand": "Value Village", "brand:wikidata": "Q7428188", "brand:wikipedia": "en:Savers", "name": "Value Village", "shop": "second_hand"}, "removeTags": {"brand": "Value Village", "brand:wikidata": "Q7428188", "brand:wikipedia": "en:Savers", "name": "Value Village", "shop": "second_hand"}, "matchScore": 2, "suggestion": true}, + "shop/pet/Petco": {"name": "Petco", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/Petco/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q7171798"}, "addTags": {"brand": "Petco", "brand:wikidata": "Q7171798", "brand:wikipedia": "en:Petco", "name": "Petco", "shop": "pet"}, "removeTags": {"brand": "Petco", "brand:wikidata": "Q7171798", "brand:wikipedia": "en:Petco", "name": "Petco", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/pet/Petland": {"name": "Petland", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/PetlandUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q17111474"}, "addTags": {"brand": "Petland", "brand:wikidata": "Q17111474", "brand:wikipedia": "en:Petland", "name": "Petland", "shop": "pet"}, "removeTags": {"brand": "Petland", "brand:wikidata": "Q17111474", "brand:wikipedia": "en:Petland", "name": "Petland", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/pet/Petland Discounts": {"name": "Petland Discounts", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/petlanddiscount/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q7178463"}, "addTags": {"brand": "Petland Discounts", "brand:wikidata": "Q7178463", "brand:wikipedia": "en:Petland Discounts", "name": "Petland Discounts", "shop": "pet"}, "removeTags": {"brand": "Petland Discounts", "brand:wikidata": "Q7178463", "brand:wikipedia": "en:Petland Discounts", "name": "Petland Discounts", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/pet/Pets at Home": {"name": "Pets at Home", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/petsathomeUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q7179258"}, "addTags": {"brand": "Pets at Home", "brand:wikidata": "Q7179258", "brand:wikipedia": "en:Pets at Home", "name": "Pets at Home", "shop": "pet"}, "removeTags": {"brand": "Pets at Home", "brand:wikidata": "Q7179258", "brand:wikipedia": "en:Pets at Home", "name": "Pets at Home", "shop": "pet"}, "matchScore": 2, "suggestion": true}, + "shop/pet/Unleashed": {"name": "Unleashed", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/Petco/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q62122874"}, "addTags": {"alt_name": "Unleashed by Petco", "brand": "Unleashed", "brand:wikidata": "Q62122874", "name": "Unleashed", "operator": "Petco", "operator:wikidata": "Q7171798", "operator:wikipedia": "en:Petco", "shop": "pet"}, "removeTags": {"alt_name": "Unleashed by Petco", "brand": "Unleashed", "brand:wikidata": "Q62122874", "name": "Unleashed", "operator": "Petco", "operator:wikidata": "Q7171798", "operator:wikipedia": "en:Petco", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/pet/Бетховен": {"name": "Бетховен", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/zoobethowenclub/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q62390798"}, "addTags": {"brand": "Бетховен", "brand:wikidata": "Q62390798", "name": "Бетховен", "shop": "pet"}, "removeTags": {"brand": "Бетховен", "brand:wikidata": "Q62390798", "name": "Бетховен", "shop": "pet"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/pet/Четыре лапы": {"name": "Четыре лапы", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/4laps/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q62390783"}, "addTags": {"brand": "Четыре лапы", "brand:wikidata": "Q62390783", "name": "Четыре лапы", "shop": "pet"}, "removeTags": {"brand": "Четыре лапы", "brand:wikidata": "Q62390783", "name": "Четыре лапы", "shop": "pet"}, "countryCodes": ["kz", "ru"], "matchScore": 2, "suggestion": true}, + "shop/photo/Kodak Express": {"name": "Kodak Express", "icon": "maki-attraction", "imageURL": "https://graph.facebook.com/kodakexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "photo", "brand:wikidata": "Q6425126"}, "addTags": {"brand": "Kodak Express", "brand:wikidata": "Q6425126", "brand:wikipedia": "en:Kodak Express", "name": "Kodak Express", "shop": "photo"}, "removeTags": {"brand": "Kodak Express", "brand:wikidata": "Q6425126", "brand:wikipedia": "en:Kodak Express", "name": "Kodak Express", "shop": "photo"}, "matchScore": 2, "suggestion": true}, + "shop/second_hand/Buffalo Exchange": {"name": "Buffalo Exchange", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/buffaloexchange/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "second_hand", "brand:wikidata": "Q4985721"}, "addTags": {"brand": "Buffalo Exchange", "brand:wikidata": "Q4985721", "brand:wikipedia": "en:Buffalo Exchange", "name": "Buffalo Exchange", "second_hand": "only", "shop": "clothes"}, "removeTags": {"brand": "Buffalo Exchange", "brand:wikidata": "Q4985721", "brand:wikipedia": "en:Buffalo Exchange", "name": "Buffalo Exchange", "second_hand": "only", "shop": "clothes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/second_hand/Value Village": {"name": "Value Village", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/savers/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "second_hand", "brand:wikidata": "Q7428188"}, "addTags": {"brand": "Value Village", "brand:wikidata": "Q7428188", "brand:wikipedia": "en:Savers", "name": "Value Village", "shop": "second_hand"}, "removeTags": {"brand": "Value Village", "brand:wikidata": "Q7428188", "brand:wikipedia": "en:Savers", "name": "Value Village", "shop": "second_hand"}, "matchScore": 2, "suggestion": true}, "shop/shoes/ABCマート": {"name": "ABCマート", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/172547912801644/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q11188787"}, "addTags": {"brand": "ABCマート", "brand:ja": "ABCマート", "brand:wikidata": "Q11188787", "brand:wikipedia": "en:ABC-Mart", "name": "ABCマート", "name:ja": "ABCマート", "shop": "shoes"}, "removeTags": {"brand": "ABCマート", "brand:ja": "ABCマート", "brand:wikidata": "Q11188787", "brand:wikipedia": "en:ABC-Mart", "name": "ABCマート", "name:ja": "ABCマート", "shop": "shoes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Aldo": {"name": "Aldo", "icon": "maki-shoe", "imageURL": "https://pbs.twimg.com/profile_images/903333253662228480/mJUkUOzW_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2832297"}, "addTags": {"brand": "Aldo", "brand:wikidata": "Q2832297", "brand:wikipedia": "en:Aldo Group", "name": "Aldo", "shop": "shoes"}, "removeTags": {"brand": "Aldo", "brand:wikidata": "Q2832297", "brand:wikipedia": "en:Aldo Group", "name": "Aldo", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Aldo": {"name": "Aldo", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/ALDO/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2832297"}, "addTags": {"brand": "Aldo", "brand:wikidata": "Q2832297", "brand:wikipedia": "en:Aldo Group", "name": "Aldo", "shop": "shoes"}, "removeTags": {"brand": "Aldo", "brand:wikidata": "Q2832297", "brand:wikipedia": "en:Aldo Group", "name": "Aldo", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, "shop/shoes/André": {"name": "André", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2847114"}, "addTags": {"brand": "André", "brand:wikidata": "Q2847114", "brand:wikipedia": "fr:André (chaussure)", "name": "André", "shop": "shoes"}, "removeTags": {"brand": "André", "brand:wikidata": "Q2847114", "brand:wikipedia": "fr:André (chaussure)", "name": "André", "shop": "shoes"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Bata": {"name": "Bata", "icon": "maki-shoe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBata.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q688082"}, "addTags": {"brand": "Bata", "brand:wikidata": "Q688082", "brand:wikipedia": "en:Bata (company)", "name": "Bata", "shop": "shoes"}, "removeTags": {"brand": "Bata", "brand:wikidata": "Q688082", "brand:wikipedia": "en:Bata (company)", "name": "Bata", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Besson Chaussures": {"name": "Besson Chaussures", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2899930"}, "addTags": {"brand": "Besson Chaussures", "brand:wikidata": "Q2899930", "brand:wikipedia": "fr:Besson Chaussures", "name": "Besson Chaussures", "operator": "Vivarte", "operator:wikidata": "fr:Vivarte", "operator:wikipedia": "Q3561446", "shop": "shoes"}, "removeTags": {"brand": "Besson Chaussures", "brand:wikidata": "Q2899930", "brand:wikipedia": "fr:Besson Chaussures", "name": "Besson Chaussures", "operator": "Vivarte", "operator:wikidata": "fr:Vivarte", "operator:wikipedia": "Q3561446", "shop": "shoes"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Birkenstock": {"name": "Birkenstock", "icon": "maki-shoe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBIRKENSTOCK%20Logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q648458"}, "addTags": {"brand": "Birkenstock", "brand:wikidata": "Q648458", "brand:wikipedia": "en:Birkenstock", "name": "Birkenstock", "shop": "shoes"}, "removeTags": {"brand": "Birkenstock", "brand:wikidata": "Q648458", "brand:wikipedia": "en:Birkenstock", "name": "Birkenstock", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Brantano": {"name": "Brantano", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q4957616"}, "addTags": {"brand": "Brantano", "brand:wikidata": "Q4957616", "brand:wikipedia": "en:Brantano Footwear", "name": "Brantano", "shop": "shoes"}, "removeTags": {"brand": "Brantano", "brand:wikidata": "Q4957616", "brand:wikipedia": "en:Brantano Footwear", "name": "Brantano", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/CCC": {"name": "CCC", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q11788344"}, "addTags": {"brand": "CCC", "brand:wikidata": "Q11788344", "brand:wikipedia": "de:CCC (Unternehmen)", "name": "CCC", "shop": "shoes"}, "removeTags": {"brand": "CCC", "brand:wikidata": "Q11788344", "brand:wikipedia": "de:CCC (Unternehmen)", "name": "CCC", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Camper": {"name": "Camper", "icon": "maki-shoe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCamper%20shoes%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q1030922"}, "addTags": {"brand": "Camper", "brand:wikidata": "Q1030922", "brand:wikipedia": "en:Camper (company)", "name": "Camper", "shop": "shoes"}, "removeTags": {"brand": "Camper", "brand:wikidata": "Q1030922", "brand:wikipedia": "en:Camper (company)", "name": "Camper", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Bata": {"name": "Bata", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Bata/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q688082"}, "addTags": {"brand": "Bata", "brand:wikidata": "Q688082", "brand:wikipedia": "en:Bata (company)", "name": "Bata", "shop": "shoes"}, "removeTags": {"brand": "Bata", "brand:wikidata": "Q688082", "brand:wikipedia": "en:Bata (company)", "name": "Bata", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Besson Chaussures": {"name": "Besson Chaussures", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/besson.chaussures/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2899930"}, "addTags": {"brand": "Besson Chaussures", "brand:wikidata": "Q2899930", "brand:wikipedia": "fr:Besson Chaussures", "name": "Besson Chaussures", "operator": "Vivarte", "operator:wikidata": "Q3561446", "operator:wikipedia": "fr:Vivarte", "shop": "shoes"}, "removeTags": {"brand": "Besson Chaussures", "brand:wikidata": "Q2899930", "brand:wikipedia": "fr:Besson Chaussures", "name": "Besson Chaussures", "operator": "Vivarte", "operator:wikidata": "Q3561446", "operator:wikipedia": "fr:Vivarte", "shop": "shoes"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/shoes/Birkenstock": {"name": "Birkenstock", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/birkenstock/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q648458"}, "addTags": {"brand": "Birkenstock", "brand:wikidata": "Q648458", "brand:wikipedia": "en:Birkenstock", "name": "Birkenstock", "shop": "shoes"}, "removeTags": {"brand": "Birkenstock", "brand:wikidata": "Q648458", "brand:wikipedia": "en:Birkenstock", "name": "Birkenstock", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Brantano": {"name": "Brantano", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/brantano.belgie/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q4957616"}, "addTags": {"brand": "Brantano", "brand:wikidata": "Q4957616", "brand:wikipedia": "en:Brantano Footwear", "name": "Brantano", "shop": "shoes"}, "removeTags": {"brand": "Brantano", "brand:wikidata": "Q4957616", "brand:wikipedia": "en:Brantano Footwear", "name": "Brantano", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/CCC": {"name": "CCC", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/CCC/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q11788344"}, "addTags": {"brand": "CCC", "brand:wikidata": "Q11788344", "brand:wikipedia": "de:CCC (Unternehmen)", "name": "CCC", "shop": "shoes"}, "removeTags": {"brand": "CCC", "brand:wikidata": "Q11788344", "brand:wikipedia": "de:CCC (Unternehmen)", "name": "CCC", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Camper": {"name": "Camper", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Camper/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q1030922"}, "addTags": {"brand": "Camper", "brand:wikidata": "Q1030922", "brand:wikipedia": "en:Camper (company)", "name": "Camper", "shop": "shoes"}, "removeTags": {"brand": "Camper", "brand:wikidata": "Q1030922", "brand:wikipedia": "en:Camper (company)", "name": "Camper", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, "shop/shoes/Chaussea": {"name": "Chaussea", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/chaussea.fr/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q62082044"}, "addTags": {"brand": "Chaussea", "brand:wikidata": "Q62082044", "name": "Chaussea", "shop": "shoes"}, "removeTags": {"brand": "Chaussea", "brand:wikidata": "Q62082044", "name": "Chaussea", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Clarks": {"name": "Clarks", "icon": "maki-shoe", "imageURL": "https://pbs.twimg.com/profile_images/1088383035807096832/UCHk9AIP_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q1095857"}, "addTags": {"brand": "Clarks", "brand:wikidata": "Q1095857", "brand:wikipedia": "en:C. & J. Clark", "name": "Clarks", "shop": "shoes"}, "removeTags": {"brand": "Clarks", "brand:wikidata": "Q1095857", "brand:wikipedia": "en:C. & J. Clark", "name": "Clarks", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Clarks": {"name": "Clarks", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/ClarksShoesUS/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q1095857"}, "addTags": {"brand": "Clarks", "brand:wikidata": "Q1095857", "brand:wikipedia": "en:C. & J. Clark", "name": "Clarks", "shop": "shoes"}, "removeTags": {"brand": "Clarks", "brand:wikidata": "Q1095857", "brand:wikipedia": "en:C. & J. Clark", "name": "Clarks", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, "shop/shoes/Converse": {"name": "Converse", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/converse/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q319515"}, "addTags": {"brand": "Converse", "brand:wikidata": "Q319515", "brand:wikipedia": "en:Converse (shoe company)", "name": "Converse", "shop": "shoes"}, "removeTags": {"brand": "Converse", "brand:wikidata": "Q319515", "brand:wikipedia": "en:Converse (shoe company)", "name": "Converse", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Crocs": {"name": "Crocs", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q926699"}, "addTags": {"brand": "Crocs", "brand:wikidata": "Q926699", "brand:wikipedia": "en:Crocs", "name": "Crocs", "shop": "shoes"}, "removeTags": {"brand": "Crocs", "brand:wikidata": "Q926699", "brand:wikipedia": "en:Crocs", "name": "Crocs", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/DSW": {"name": "DSW", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/designerbrands/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q5206207"}, "addTags": {"brand": "DSW", "brand:wikidata": "Q5206207", "brand:wikipedia": "en:DSW, Inc.", "name": "DSW", "shop": "shoes"}, "removeTags": {"brand": "DSW", "brand:wikidata": "Q5206207", "brand:wikipedia": "en:DSW, Inc.", "name": "DSW", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Deichmann": {"name": "Deichmann", "icon": "maki-shoe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDeichmann%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q664543"}, "addTags": {"brand": "Deichmann", "brand:wikidata": "Q664543", "brand:wikipedia": "en:Deichmann SE", "name": "Deichmann", "shop": "shoes"}, "removeTags": {"brand": "Deichmann", "brand:wikidata": "Q664543", "brand:wikipedia": "en:Deichmann SE", "name": "Deichmann", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Din sko": {"name": "Din sko", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q10472869"}, "addTags": {"brand": "Din sko", "brand:wikidata": "Q10472869", "brand:wikipedia": "sv:Din sko", "name": "Din sko", "shop": "shoes"}, "removeTags": {"brand": "Din sko", "brand:wikidata": "Q10472869", "brand:wikipedia": "sv:Din sko", "name": "Din sko", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Dosenbach": {"name": "Dosenbach", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2677329"}, "addTags": {"brand": "Dosenbach", "brand:wikidata": "Q2677329", "brand:wikipedia": "de:Dosenbach-Ochsner", "name": "Dosenbach", "shop": "shoes"}, "removeTags": {"brand": "Dosenbach", "brand:wikidata": "Q2677329", "brand:wikipedia": "de:Dosenbach-Ochsner", "name": "Dosenbach", "shop": "shoes"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, + "shop/shoes/Crocs": {"name": "Crocs", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Crocs/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q926699"}, "addTags": {"brand": "Crocs", "brand:wikidata": "Q926699", "brand:wikipedia": "en:Crocs", "name": "Crocs", "shop": "shoes"}, "removeTags": {"brand": "Crocs", "brand:wikidata": "Q926699", "brand:wikipedia": "en:Crocs", "name": "Crocs", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/DSW": {"name": "DSW", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/designerbrands/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q5206207"}, "addTags": {"brand": "DSW", "brand:wikidata": "Q5206207", "brand:wikipedia": "en:Designer Brands", "name": "DSW", "shop": "shoes"}, "removeTags": {"brand": "DSW", "brand:wikidata": "Q5206207", "brand:wikipedia": "en:Designer Brands", "name": "DSW", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Deichmann": {"name": "Deichmann", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Deichmann/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q664543"}, "addTags": {"brand": "Deichmann", "brand:wikidata": "Q664543", "brand:wikipedia": "en:Deichmann SE", "name": "Deichmann", "shop": "shoes"}, "removeTags": {"brand": "Deichmann", "brand:wikidata": "Q664543", "brand:wikipedia": "en:Deichmann SE", "name": "Deichmann", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Din sko": {"name": "Din sko", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/dinsko/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q10472869"}, "addTags": {"brand": "Din sko", "brand:wikidata": "Q10472869", "brand:wikipedia": "sv:Din sko", "name": "Din sko", "shop": "shoes"}, "removeTags": {"brand": "Din sko", "brand:wikidata": "Q10472869", "brand:wikipedia": "sv:Din sko", "name": "Din sko", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Dosenbach": {"name": "Dosenbach", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Dosenbach.CH/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2677329"}, "addTags": {"brand": "Dosenbach", "brand:wikidata": "Q2677329", "brand:wikipedia": "de:Dosenbach-Ochsner", "name": "Dosenbach", "shop": "shoes"}, "removeTags": {"brand": "Dosenbach", "brand:wikidata": "Q2677329", "brand:wikipedia": "de:Dosenbach-Ochsner", "name": "Dosenbach", "shop": "shoes"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, "shop/shoes/Ecco": {"name": "Ecco", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Ecco/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q1280255"}, "addTags": {"brand": "Ecco", "brand:wikidata": "Q1280255", "brand:wikipedia": "en:ECCO", "name": "Ecco", "shop": "shoes"}, "removeTags": {"brand": "Ecco", "brand:wikidata": "Q1280255", "brand:wikipedia": "en:ECCO", "name": "Ecco", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/FLO": {"name": "FLO", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q61994802"}, "addTags": {"brand": "FLO", "brand:wikidata": "Q61994802", "name": "FLO", "shop": "shoes"}, "removeTags": {"brand": "FLO", "brand:wikidata": "Q61994802", "name": "FLO", "shop": "shoes"}, "countryCodes": ["al", "tr"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Famous Footwear": {"name": "Famous Footwear", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q5433457"}, "addTags": {"brand": "Famous Footwear", "brand:wikidata": "Q5433457", "brand:wikipedia": "en:Famous Footwear", "name": "Famous Footwear", "shop": "shoes"}, "removeTags": {"brand": "Famous Footwear", "brand:wikidata": "Q5433457", "brand:wikipedia": "en:Famous Footwear", "name": "Famous Footwear", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Foot Locker": {"name": "Foot Locker", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q63335"}, "addTags": {"brand": "Foot Locker", "brand:wikidata": "Q63335", "brand:wikipedia": "en:Foot Locker", "name": "Foot Locker", "shop": "shoes"}, "removeTags": {"brand": "Foot Locker", "brand:wikidata": "Q63335", "brand:wikipedia": "en:Foot Locker", "name": "Foot Locker", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Gabor": {"name": "Gabor", "icon": "maki-shoe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGabor%20Shoes%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q1488760"}, "addTags": {"brand": "Gabor", "brand:wikidata": "Q1488760", "brand:wikipedia": "de:Gabor Shoes", "name": "Gabor", "shop": "shoes"}, "removeTags": {"brand": "Gabor", "brand:wikidata": "Q1488760", "brand:wikipedia": "de:Gabor Shoes", "name": "Gabor", "shop": "shoes"}, "countryCodes": ["de", "it"], "matchScore": 2, "suggestion": true}, + "shop/shoes/FLO": {"name": "FLO", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/FLOShoesGlobal/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q61994802"}, "addTags": {"brand": "FLO", "brand:wikidata": "Q61994802", "name": "FLO", "shop": "shoes"}, "removeTags": {"brand": "FLO", "brand:wikidata": "Q61994802", "name": "FLO", "shop": "shoes"}, "countryCodes": ["al", "tr"], "matchScore": 2, "suggestion": true}, + "shop/shoes/Famous Footwear": {"name": "Famous Footwear", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/famousfootwear/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q5433457"}, "addTags": {"brand": "Famous Footwear", "brand:wikidata": "Q5433457", "brand:wikipedia": "en:Famous Footwear", "name": "Famous Footwear", "shop": "shoes"}, "removeTags": {"brand": "Famous Footwear", "brand:wikidata": "Q5433457", "brand:wikipedia": "en:Famous Footwear", "name": "Famous Footwear", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Foot Locker": {"name": "Foot Locker", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/footlocker/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q63335"}, "addTags": {"brand": "Foot Locker", "brand:wikidata": "Q63335", "brand:wikipedia": "en:Foot Locker", "name": "Foot Locker", "shop": "shoes"}, "removeTags": {"brand": "Foot Locker", "brand:wikidata": "Q63335", "brand:wikipedia": "en:Foot Locker", "name": "Foot Locker", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Gabor": {"name": "Gabor", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/gaborshoesag/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q1488760"}, "addTags": {"brand": "Gabor", "brand:wikidata": "Q1488760", "brand:wikipedia": "de:Gabor Shoes", "name": "Gabor", "shop": "shoes"}, "removeTags": {"brand": "Gabor", "brand:wikidata": "Q1488760", "brand:wikipedia": "de:Gabor Shoes", "name": "Gabor", "shop": "shoes"}, "countryCodes": ["de", "it"], "matchScore": 2, "suggestion": true}, "shop/shoes/Geox": {"name": "Geox", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/GEOX/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q588001"}, "addTags": {"brand": "Geox", "brand:wikidata": "Q588001", "brand:wikipedia": "en:Geox", "name": "Geox", "shop": "shoes"}, "removeTags": {"brand": "Geox", "brand:wikidata": "Q588001", "brand:wikipedia": "en:Geox", "name": "Geox", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Görtz": {"name": "Görtz", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/goertz/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q1559593"}, "addTags": {"brand": "Görtz", "brand:wikidata": "Q1559593", "brand:wikipedia": "de:Ludwig Görtz", "name": "Görtz", "shop": "shoes"}, "removeTags": {"brand": "Görtz", "brand:wikidata": "Q1559593", "brand:wikipedia": "de:Ludwig Görtz", "name": "Görtz", "shop": "shoes"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/shoes/Humanic": {"name": "Humanic", "icon": "maki-shoe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHumanic%202013.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q1636668"}, "addTags": {"brand": "Humanic", "brand:wikidata": "Q1636668", "brand:wikipedia": "en:Humanic", "name": "Humanic", "shop": "shoes"}, "removeTags": {"brand": "Humanic", "brand:wikidata": "Q1636668", "brand:wikipedia": "en:Humanic", "name": "Humanic", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Hush Puppies": {"name": "Hush Puppies", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q1828588"}, "addTags": {"brand": "Hush Puppies", "brand:wikidata": "Q1828588", "brand:wikipedia": "en:Hush Puppies", "name": "Hush Puppies", "shop": "shoes"}, "removeTags": {"brand": "Hush Puppies", "brand:wikidata": "Q1828588", "brand:wikipedia": "en:Hush Puppies", "name": "Hush Puppies", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Hush Puppies": {"name": "Hush Puppies", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/hushpuppiesglobal/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q1828588"}, "addTags": {"brand": "Hush Puppies", "brand:wikidata": "Q1828588", "brand:wikipedia": "en:Hush Puppies", "name": "Hush Puppies", "shop": "shoes"}, "removeTags": {"brand": "Hush Puppies", "brand:wikidata": "Q1828588", "brand:wikipedia": "en:Hush Puppies", "name": "Hush Puppies", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, "shop/shoes/Johnston & Murphy": {"name": "Johnston & Murphy", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/johnstonmurphy/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q6268615"}, "addTags": {"brand": "Johnston & Murphy", "brand:wikidata": "Q6268615", "brand:wikipedia": "en:Johnston & Murphy", "name": "Johnston & Murphy", "shop": "shoes"}, "removeTags": {"brand": "Johnston & Murphy", "brand:wikidata": "Q6268615", "brand:wikipedia": "en:Johnston & Murphy", "name": "Johnston & Murphy", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Journeys": {"name": "Journeys", "icon": "maki-shoe", "imageURL": "https://pbs.twimg.com/profile_images/1083717041/jy_twitterB_W_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q61994838"}, "addTags": {"brand": "Journeys", "brand:wikidata": "Q61994838", "name": "Journeys", "operator": "Genesco", "operator:wikidata": "Q5532704", "operator:wikipedia": "en:Genesco", "shop": "shoes"}, "removeTags": {"brand": "Journeys", "brand:wikidata": "Q61994838", "name": "Journeys", "operator": "Genesco", "operator:wikidata": "Q5532704", "operator:wikipedia": "en:Genesco", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Kari": {"name": "Kari", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q47155680"}, "addTags": {"brand": "Kari", "brand:wikidata": "Q47155680", "brand:wikipedia": "ru:Kari (компания)", "name": "Kari", "shop": "shoes"}, "removeTags": {"brand": "Kari", "brand:wikidata": "Q47155680", "brand:wikipedia": "ru:Kari (компания)", "name": "Kari", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Mephisto": {"name": "Mephisto", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q822975"}, "addTags": {"brand": "Mephisto", "brand:wikidata": "Q822975", "brand:wikipedia": "fr:Mephisto (chaussure)", "name": "Mephisto", "shop": "shoes"}, "removeTags": {"brand": "Mephisto", "brand:wikidata": "Q822975", "brand:wikipedia": "fr:Mephisto (chaussure)", "name": "Mephisto", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Minelli": {"name": "Minelli", "icon": "maki-shoe", "imageURL": "https://pbs.twimg.com/profile_images/910799985096216576/oHDV91QT_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q61994831"}, "addTags": {"brand": "Minelli", "brand:wikidata": "Q61994831", "name": "Minelli", "operator": "Vivarte", "operator:wikidata": "Q3561446", "operator:wikipedia": "fr:Vivarte", "shop": "shoes"}, "removeTags": {"brand": "Minelli", "brand:wikidata": "Q61994831", "name": "Minelli", "operator": "Vivarte", "operator:wikidata": "Q3561446", "operator:wikipedia": "fr:Vivarte", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/New Balance": {"name": "New Balance", "icon": "maki-shoe", "imageURL": "https://pbs.twimg.com/profile_images/687993694176329729/rsceJ0Ka_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q742988"}, "addTags": {"brand": "New Balance", "brand:wikidata": "Q742988", "brand:wikipedia": "en:New Balance", "name": "New Balance", "shop": "shoes"}, "removeTags": {"brand": "New Balance", "brand:wikidata": "Q742988", "brand:wikipedia": "en:New Balance", "name": "New Balance", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Office": {"name": "Office", "icon": "maki-shoe", "imageURL": "https://pbs.twimg.com/profile_images/560809669027835905/jU4yaJG2_bigger.jpeg", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q7079121"}, "addTags": {"brand": "Office", "brand:wikidata": "Q7079121", "brand:wikipedia": "en:Office Holdings", "name": "Office", "shop": "shoes"}, "removeTags": {"brand": "Office", "brand:wikidata": "Q7079121", "brand:wikipedia": "en:Office Holdings", "name": "Office", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Journeys": {"name": "Journeys", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Journeys/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q61994838"}, "addTags": {"brand": "Journeys", "brand:wikidata": "Q61994838", "name": "Journeys", "operator": "Genesco", "operator:wikidata": "Q5532704", "operator:wikipedia": "en:Genesco", "shop": "shoes"}, "removeTags": {"brand": "Journeys", "brand:wikidata": "Q61994838", "name": "Journeys", "operator": "Genesco", "operator:wikidata": "Q5532704", "operator:wikipedia": "en:Genesco", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Kari": {"name": "Kari", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/shopkari/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q47155680"}, "addTags": {"brand": "Kari", "brand:wikidata": "Q47155680", "brand:wikipedia": "ru:Kari (компания)", "name": "Kari", "shop": "shoes"}, "removeTags": {"brand": "Kari", "brand:wikidata": "Q47155680", "brand:wikipedia": "ru:Kari (компания)", "name": "Kari", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/La Halle aux Chaussures": {"name": "La Halle aux Chaussures", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/lahalle.com/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q62390731"}, "addTags": {"brand": "La Halle aux Chaussures", "brand:wikidata": "Q62390731", "name": "La Halle aux Chaussures", "operator": "Vivarte", "operator:wikidata": "Q3561446", "operator:wikipedia": "fr:Vivarte", "shop": "shoes"}, "removeTags": {"brand": "La Halle aux Chaussures", "brand:wikidata": "Q62390731", "name": "La Halle aux Chaussures", "operator": "Vivarte", "operator:wikidata": "Q3561446", "operator:wikipedia": "fr:Vivarte", "shop": "shoes"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/shoes/Mephisto": {"name": "Mephisto", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/mephisto.usa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q822975"}, "addTags": {"brand": "Mephisto", "brand:wikidata": "Q822975", "brand:wikipedia": "fr:Mephisto (chaussure)", "name": "Mephisto", "shop": "shoes"}, "removeTags": {"brand": "Mephisto", "brand:wikidata": "Q822975", "brand:wikipedia": "fr:Mephisto (chaussure)", "name": "Mephisto", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Merrell": {"name": "Merrell", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/merrell/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q1921997"}, "addTags": {"brand": "Merrell", "brand:wikidata": "Q1921997", "brand:wikipedia": "en:Merrell (company)", "name": "Merrell", "shop": "shoes"}, "removeTags": {"brand": "Merrell", "brand:wikidata": "Q1921997", "brand:wikipedia": "en:Merrell (company)", "name": "Merrell", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Minelli": {"name": "Minelli", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Minelli/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q61994831"}, "addTags": {"brand": "Minelli", "brand:wikidata": "Q61994831", "name": "Minelli", "operator": "Vivarte", "operator:wikidata": "Q3561446", "operator:wikipedia": "fr:Vivarte", "shop": "shoes"}, "removeTags": {"brand": "Minelli", "brand:wikidata": "Q61994831", "name": "Minelli", "operator": "Vivarte", "operator:wikidata": "Q3561446", "operator:wikipedia": "fr:Vivarte", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/New Balance": {"name": "New Balance", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/newbalanceusa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q742988"}, "addTags": {"brand": "New Balance", "brand:wikidata": "Q742988", "brand:wikipedia": "en:New Balance", "name": "New Balance", "shop": "shoes"}, "removeTags": {"brand": "New Balance", "brand:wikidata": "Q742988", "brand:wikipedia": "en:New Balance", "name": "New Balance", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Office": {"name": "Office", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Officeshoes1/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q7079121"}, "addTags": {"brand": "Office", "brand:wikidata": "Q7079121", "brand:wikipedia": "en:Office Holdings", "name": "Office", "shop": "shoes"}, "removeTags": {"brand": "Office", "brand:wikidata": "Q7079121", "brand:wikipedia": "en:Office Holdings", "name": "Office", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, "shop/shoes/Payless ShoeSource": {"name": "Payless ShoeSource", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/payless/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q7156755"}, "addTags": {"brand": "Payless ShoeSource", "brand:wikidata": "Q7156755", "brand:wikipedia": "en:Payless ShoeSource", "name": "Payless ShoeSource", "shop": "shoes"}, "removeTags": {"brand": "Payless ShoeSource", "brand:wikidata": "Q7156755", "brand:wikipedia": "en:Payless ShoeSource", "name": "Payless ShoeSource", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Quick Schuh": {"name": "Quick Schuh", "icon": "maki-shoe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FQS%20Logo%204c%20gruene%20Flaeche.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2123069"}, "addTags": {"brand": "Quick Schuh", "brand:wikidata": "Q2123069", "brand:wikipedia": "de:Quick Schuh", "name": "Quick Schuh", "shop": "shoes"}, "removeTags": {"brand": "Quick Schuh", "brand:wikidata": "Q2123069", "brand:wikipedia": "de:Quick Schuh", "name": "Quick Schuh", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Rack Room Shoes": {"name": "Rack Room Shoes", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q17109937"}, "addTags": {"brand": "Rack Room Shoes", "brand:wikidata": "Q17109937", "brand:wikipedia": "en:Rack Room Shoes", "name": "Rack Room Shoes", "shop": "shoes"}, "removeTags": {"brand": "Rack Room Shoes", "brand:wikidata": "Q17109937", "brand:wikipedia": "en:Rack Room Shoes", "name": "Rack Room Shoes", "shop": "shoes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Reno": {"name": "Reno", "icon": "maki-shoe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Reno.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2144204"}, "addTags": {"brand": "Reno", "brand:wikidata": "Q2144204", "brand:wikipedia": "de:Reno (Schuhhandel)", "name": "Reno", "shop": "shoes"}, "removeTags": {"brand": "Reno", "brand:wikidata": "Q2144204", "brand:wikipedia": "de:Reno (Schuhhandel)", "name": "Reno", "shop": "shoes"}, "countryCodes": ["at", "ch", "de", "hu", "sk"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Rieker": {"name": "Rieker", "icon": "maki-shoe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRieker%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2152193"}, "addTags": {"brand": "Rieker", "brand:wikidata": "Q2152193", "brand:wikipedia": "en:Rieker Shoes", "name": "Rieker", "shop": "shoes"}, "removeTags": {"brand": "Rieker", "brand:wikidata": "Q2152193", "brand:wikipedia": "en:Rieker Shoes", "name": "Rieker", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Salamander": {"name": "Salamander", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q878354"}, "addTags": {"brand": "Salamander", "brand:wikidata": "Q878354", "brand:wikipedia": "de:Salamander (Schuhe)", "name": "Salamander", "shop": "shoes"}, "removeTags": {"brand": "Salamander", "brand:wikidata": "Q878354", "brand:wikipedia": "de:Salamander (Schuhe)", "name": "Salamander", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/San Marina": {"name": "San Marina", "icon": "maki-shoe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSan%20marina%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q3471558"}, "addTags": {"brand": "San Marina", "brand:wikidata": "Q3471558", "brand:wikipedia": "fr:San Marina", "name": "San Marina", "shop": "shoes"}, "removeTags": {"brand": "San Marina", "brand:wikidata": "Q3471558", "brand:wikipedia": "fr:San Marina", "name": "San Marina", "shop": "shoes"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Scapino": {"name": "Scapino", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2298792"}, "addTags": {"brand": "Scapino", "brand:wikidata": "Q2298792", "brand:wikipedia": "nl:Scapino (winkelketen)", "name": "Scapino", "shop": "shoes"}, "removeTags": {"brand": "Scapino", "brand:wikidata": "Q2298792", "brand:wikipedia": "nl:Scapino (winkelketen)", "name": "Scapino", "shop": "shoes"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Schuh": {"name": "Schuh", "icon": "maki-shoe", "imageURL": "https://pbs.twimg.com/profile_images/1062037586242355200/x2uyvsW-_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q7432952"}, "addTags": {"brand": "Schuh", "brand:wikidata": "Q7432952", "brand:wikipedia": "en:Schuh", "name": "Schuh", "shop": "shoes"}, "removeTags": {"brand": "Schuh", "brand:wikidata": "Q7432952", "brand:wikipedia": "en:Schuh", "name": "Schuh", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Shoe Carnival": {"name": "Shoe Carnival", "icon": "maki-shoe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FShoecarnival.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q7500007"}, "addTags": {"brand": "Shoe Carnival", "brand:wikidata": "Q7500007", "brand:wikipedia": "en:Shoe Carnival", "name": "Shoe Carnival", "shop": "shoes"}, "removeTags": {"brand": "Shoe Carnival", "brand:wikidata": "Q7500007", "brand:wikipedia": "en:Shoe Carnival", "name": "Shoe Carnival", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Shoe Zone": {"name": "Shoe Zone", "icon": "maki-shoe", "imageURL": "https://pbs.twimg.com/profile_images/849991111309479938/--OVVUq7_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q7500016"}, "addTags": {"brand": "Shoe Zone", "brand:wikidata": "Q7500016", "brand:wikipedia": "en:Shoe Zone", "name": "Shoe Zone", "shop": "shoes"}, "removeTags": {"brand": "Shoe Zone", "brand:wikidata": "Q7500016", "brand:wikipedia": "en:Shoe Zone", "name": "Shoe Zone", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Siemes Schuhcenter": {"name": "Siemes Schuhcenter", "icon": "maki-shoe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSchuhcenter.gif&width=100", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2800720"}, "addTags": {"brand": "Siemes Schuhcenter", "brand:wikidata": "Q2800720", "brand:wikipedia": "de:Siemes (Unternehmen)", "name": "Siemes Schuhcenter", "shop": "shoes"}, "removeTags": {"brand": "Siemes Schuhcenter", "brand:wikidata": "Q2800720", "brand:wikipedia": "de:Siemes (Unternehmen)", "name": "Siemes Schuhcenter", "shop": "shoes"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Skechers": {"name": "Skechers", "icon": "maki-shoe", "imageURL": "https://pbs.twimg.com/profile_images/1103071990129123328/yRRui0V1_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2945643"}, "addTags": {"brand": "Skechers", "brand:wikidata": "Q2945643", "brand:wikipedia": "en:Skechers", "name": "Skechers", "shop": "shoes"}, "removeTags": {"brand": "Skechers", "brand:wikidata": "Q2945643", "brand:wikipedia": "en:Skechers", "name": "Skechers", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Sperry": {"name": "Sperry", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/sperry/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q7576421"}, "addTags": {"brand": "Sperry", "brand:wikidata": "Q7576421", "brand:wikipedia": "en:Sperry Top-Sider", "name": "Sperry", "shop": "shoes"}, "removeTags": {"brand": "Sperry", "brand:wikidata": "Q7576421", "brand:wikipedia": "en:Sperry Top-Sider", "name": "Sperry", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Stride Rite": {"name": "Stride Rite", "icon": "maki-shoe", "imageURL": "https://pbs.twimg.com/profile_images/621558789645434880/IERCUEqC_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2356171"}, "addTags": {"brand": "Stride Rite", "brand:wikidata": "Q2356171", "brand:wikipedia": "en:Stride Rite Corporation", "name": "Stride Rite", "shop": "shoes"}, "removeTags": {"brand": "Stride Rite", "brand:wikidata": "Q2356171", "brand:wikipedia": "en:Stride Rite Corporation", "name": "Stride Rite", "shop": "shoes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Tamaris": {"name": "Tamaris", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q61994827"}, "addTags": {"brand": "Tamaris", "brand:wikidata": "Q61994827", "name": "Tamaris", "operator": "Wortmann Schuh-Holding", "operator:wikidata": "Q1726079", "operator:wikipedia": "de:Wortmann Schuh-Holding", "shop": "shoes"}, "removeTags": {"brand": "Tamaris", "brand:wikidata": "Q61994827", "name": "Tamaris", "operator": "Wortmann Schuh-Holding", "operator:wikidata": "Q1726079", "operator:wikipedia": "de:Wortmann Schuh-Holding", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/The Shoe Company": {"name": "The Shoe Company", "icon": "maki-shoe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTHE%20SHOE%20COMPANY%20LOGO.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q7763892"}, "addTags": {"brand": "The Shoe Company", "brand:wikidata": "Q7763892", "brand:wikipedia": "en:The Shoe Company", "name": "The Shoe Company", "shop": "shoes"}, "removeTags": {"brand": "The Shoe Company", "brand:wikidata": "Q7763892", "brand:wikipedia": "en:The Shoe Company", "name": "The Shoe Company", "shop": "shoes"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/shoes/UGG": {"name": "UGG", "icon": "maki-shoe", "imageURL": "https://pbs.twimg.com/profile_images/714494828369874945/gY2Lwx3w_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q1138480"}, "addTags": {"brand": "UGG", "brand:wikidata": "Q1138480", "brand:wikipedia": "en:UGG (brand)", "name": "UGG", "shop": "shoes"}, "removeTags": {"brand": "UGG", "brand:wikidata": "Q1138480", "brand:wikipedia": "en:UGG (brand)", "name": "UGG", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Vans": {"name": "Vans", "icon": "maki-shoe", "imageURL": "https://pbs.twimg.com/profile_images/709974008276652032/DdO7jzyU_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q1135366"}, "addTags": {"brand": "Vans", "brand:wikidata": "Q1135366", "brand:wikipedia": "en:Vans", "name": "Vans", "shop": "shoes"}, "removeTags": {"brand": "Vans", "brand:wikidata": "Q1135366", "brand:wikipedia": "en:Vans", "name": "Vans", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, - "shop/shoes/Éram": {"name": "Éram", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q16684192"}, "addTags": {"brand": "Éram", "brand:wikidata": "Q16684192", "brand:wikipedia": "fr:Éram", "name": "Éram", "shop": "shoes"}, "removeTags": {"brand": "Éram", "brand:wikidata": "Q16684192", "brand:wikipedia": "fr:Éram", "name": "Éram", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Quick Schuh": {"name": "Quick Schuh", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/quick.schuh/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2123069"}, "addTags": {"brand": "Quick Schuh", "brand:wikidata": "Q2123069", "brand:wikipedia": "de:Quick Schuh", "name": "Quick Schuh", "shop": "shoes"}, "removeTags": {"brand": "Quick Schuh", "brand:wikidata": "Q2123069", "brand:wikipedia": "de:Quick Schuh", "name": "Quick Schuh", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Rack Room Shoes": {"name": "Rack Room Shoes", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/myrackroomshoes/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q17109937"}, "addTags": {"brand": "Rack Room Shoes", "brand:wikidata": "Q17109937", "brand:wikipedia": "en:Rack Room Shoes", "name": "Rack Room Shoes", "shop": "shoes"}, "removeTags": {"brand": "Rack Room Shoes", "brand:wikidata": "Q17109937", "brand:wikipedia": "en:Rack Room Shoes", "name": "Rack Room Shoes", "shop": "shoes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/shoes/Red Wing": {"name": "Red Wing", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/RedWingShoes/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q934096"}, "addTags": {"brand": "Red Wing", "brand:wikidata": "Q934096", "brand:wikipedia": "en:Red Wing Shoes", "name": "Red Wing", "shop": "shoes"}, "removeTags": {"brand": "Red Wing", "brand:wikidata": "Q934096", "brand:wikipedia": "en:Red Wing Shoes", "name": "Red Wing", "shop": "shoes"}, "countryCodes": ["de", "gb", "nl", "us"], "matchScore": 2, "suggestion": true}, + "shop/shoes/Reno": {"name": "Reno", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/RENO/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2144204"}, "addTags": {"brand": "Reno", "brand:wikidata": "Q2144204", "brand:wikipedia": "de:Reno (Schuhhandel)", "name": "Reno", "shop": "shoes"}, "removeTags": {"brand": "Reno", "brand:wikidata": "Q2144204", "brand:wikipedia": "de:Reno (Schuhhandel)", "name": "Reno", "shop": "shoes"}, "countryCodes": ["at", "ch", "de", "hu", "sk"], "matchScore": 2, "suggestion": true}, + "shop/shoes/Rieker": {"name": "Rieker", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/riekerofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2152193"}, "addTags": {"brand": "Rieker", "brand:wikidata": "Q2152193", "brand:wikipedia": "en:Rieker Shoes", "name": "Rieker", "shop": "shoes"}, "removeTags": {"brand": "Rieker", "brand:wikidata": "Q2152193", "brand:wikipedia": "en:Rieker Shoes", "name": "Rieker", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Rockport": {"name": "Rockport", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Rockport/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q4048384"}, "addTags": {"brand": "Rockport", "brand:wikidata": "Q4048384", "brand:wikipedia": "en:Rockport (company)", "name": "Rockport", "shop": "shoes"}, "removeTags": {"brand": "Rockport", "brand:wikidata": "Q4048384", "brand:wikipedia": "en:Rockport (company)", "name": "Rockport", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Salamander": {"name": "Salamander", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/SalamanderCzech/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q878354"}, "addTags": {"brand": "Salamander", "brand:wikidata": "Q878354", "brand:wikipedia": "de:Salamander (Schuhe)", "name": "Salamander", "shop": "shoes"}, "removeTags": {"brand": "Salamander", "brand:wikidata": "Q878354", "brand:wikipedia": "de:Salamander (Schuhe)", "name": "Salamander", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/San Marina": {"name": "San Marina", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/sanmarina/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q3471558"}, "addTags": {"brand": "San Marina", "brand:wikidata": "Q3471558", "brand:wikipedia": "fr:San Marina", "name": "San Marina", "shop": "shoes"}, "removeTags": {"brand": "San Marina", "brand:wikidata": "Q3471558", "brand:wikipedia": "fr:San Marina", "name": "San Marina", "shop": "shoes"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/shoes/Scapino": {"name": "Scapino", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/ScapinoNL/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2298792"}, "addTags": {"brand": "Scapino", "brand:wikidata": "Q2298792", "brand:wikipedia": "nl:Scapino (winkelketen)", "name": "Scapino", "shop": "shoes"}, "removeTags": {"brand": "Scapino", "brand:wikidata": "Q2298792", "brand:wikipedia": "nl:Scapino (winkelketen)", "name": "Scapino", "shop": "shoes"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, + "shop/shoes/Schuh": {"name": "Schuh", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/schuhshoes/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q7432952"}, "addTags": {"brand": "Schuh", "brand:wikidata": "Q7432952", "brand:wikipedia": "en:Schuh", "name": "Schuh", "shop": "shoes"}, "removeTags": {"brand": "Schuh", "brand:wikidata": "Q7432952", "brand:wikipedia": "en:Schuh", "name": "Schuh", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Shoe Carnival": {"name": "Shoe Carnival", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/ShoeCarnival/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q7500007"}, "addTags": {"brand": "Shoe Carnival", "brand:wikidata": "Q7500007", "brand:wikipedia": "en:Shoe Carnival", "name": "Shoe Carnival", "shop": "shoes"}, "removeTags": {"brand": "Shoe Carnival", "brand:wikidata": "Q7500007", "brand:wikipedia": "en:Shoe Carnival", "name": "Shoe Carnival", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Shoe Zone": {"name": "Shoe Zone", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/shoezone/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q7500016"}, "addTags": {"brand": "Shoe Zone", "brand:wikidata": "Q7500016", "brand:wikipedia": "en:Shoe Zone", "name": "Shoe Zone", "shop": "shoes"}, "removeTags": {"brand": "Shoe Zone", "brand:wikidata": "Q7500016", "brand:wikipedia": "en:Shoe Zone", "name": "Shoe Zone", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Siemes Schuhcenter": {"name": "Siemes Schuhcenter", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Schuhcenter.de/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2800720"}, "addTags": {"brand": "Siemes Schuhcenter", "brand:wikidata": "Q2800720", "brand:wikipedia": "de:Siemes (Unternehmen)", "name": "Siemes Schuhcenter", "shop": "shoes"}, "removeTags": {"brand": "Siemes Schuhcenter", "brand:wikidata": "Q2800720", "brand:wikipedia": "de:Siemes (Unternehmen)", "name": "Siemes Schuhcenter", "shop": "shoes"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/shoes/Skechers": {"name": "Skechers", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/SKECHERS/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2945643"}, "addTags": {"brand": "Skechers", "brand:wikidata": "Q2945643", "brand:wikipedia": "en:Skechers", "name": "Skechers", "shop": "shoes"}, "removeTags": {"brand": "Skechers", "brand:wikidata": "Q2945643", "brand:wikipedia": "en:Skechers", "name": "Skechers", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Sperry": {"name": "Sperry", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/sperry/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q7576421"}, "addTags": {"brand": "Sperry", "brand:wikidata": "Q7576421", "brand:wikipedia": "en:Sperry Top-Sider", "name": "Sperry", "shop": "shoes"}, "removeTags": {"brand": "Sperry", "brand:wikidata": "Q7576421", "brand:wikipedia": "en:Sperry Top-Sider", "name": "Sperry", "shop": "shoes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/shoes/Stride Rite": {"name": "Stride Rite", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/striderite/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q2356171"}, "addTags": {"brand": "Stride Rite", "brand:wikidata": "Q2356171", "brand:wikipedia": "en:Stride Rite Corporation", "name": "Stride Rite", "shop": "shoes"}, "removeTags": {"brand": "Stride Rite", "brand:wikidata": "Q2356171", "brand:wikipedia": "en:Stride Rite Corporation", "name": "Stride Rite", "shop": "shoes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/shoes/Tamaris": {"name": "Tamaris", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/tamarisinternational/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q61994827"}, "addTags": {"brand": "Tamaris", "brand:wikidata": "Q61994827", "name": "Tamaris", "operator": "Wortmann Schuh-Holding", "operator:wikidata": "Q1726079", "operator:wikipedia": "de:Wortmann Schuh-Holding", "shop": "shoes"}, "removeTags": {"brand": "Tamaris", "brand:wikidata": "Q61994827", "name": "Tamaris", "operator": "Wortmann Schuh-Holding", "operator:wikidata": "Q1726079", "operator:wikipedia": "de:Wortmann Schuh-Holding", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/The Shoe Company": {"name": "The Shoe Company", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/theshoeco/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q7763892"}, "addTags": {"brand": "The Shoe Company", "brand:wikidata": "Q7763892", "brand:wikipedia": "en:The Shoe Company", "name": "The Shoe Company", "shop": "shoes"}, "removeTags": {"brand": "The Shoe Company", "brand:wikidata": "Q7763892", "brand:wikipedia": "en:The Shoe Company", "name": "The Shoe Company", "shop": "shoes"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/shoes/UGG": {"name": "UGG", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/UGG/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q1138480"}, "addTags": {"brand": "UGG", "brand:wikidata": "Q1138480", "brand:wikipedia": "en:UGG (brand)", "name": "UGG", "shop": "shoes"}, "removeTags": {"brand": "UGG", "brand:wikidata": "Q1138480", "brand:wikipedia": "en:UGG (brand)", "name": "UGG", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Vans": {"name": "Vans", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/VANS/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q1135366"}, "addTags": {"brand": "Vans", "brand:wikidata": "Q1135366", "brand:wikipedia": "en:Vans", "name": "Vans", "shop": "shoes"}, "removeTags": {"brand": "Vans", "brand:wikidata": "Q1135366", "brand:wikipedia": "en:Vans", "name": "Vans", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/vanHaren": {"name": "vanHaren", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/vanharenschoenen/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q62390668"}, "addTags": {"brand": "vanHaren", "brand:wikidata": "Q62390668", "name": "vanHaren", "shop": "shoes"}, "removeTags": {"brand": "vanHaren", "brand:wikidata": "Q62390668", "name": "vanHaren", "shop": "shoes"}, "countryCodes": ["be", "nl"], "matchScore": 2, "suggestion": true}, + "shop/shoes/Éram": {"name": "Éram", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/eram.fr/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q16684192"}, "addTags": {"brand": "Éram", "brand:wikidata": "Q16684192", "brand:wikipedia": "fr:Éram", "name": "Éram", "shop": "shoes"}, "removeTags": {"brand": "Éram", "brand:wikidata": "Q16684192", "brand:wikipedia": "fr:Éram", "name": "Éram", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, "shop/shoes/ЦентрОбувь": {"name": "ЦентрОбувь", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q4504072"}, "addTags": {"brand": "ЦентрОбувь", "brand:wikidata": "Q4504072", "brand:wikipedia": "ru:ЦентрОбувь", "name": "ЦентрОбувь", "shop": "shoes"}, "removeTags": {"brand": "ЦентрОбувь", "brand:wikidata": "Q4504072", "brand:wikipedia": "ru:ЦентрОбувь", "name": "ЦентрОбувь", "shop": "shoes"}, "matchScore": 2, "suggestion": true}, + "shop/shoes/Юничел": {"name": "Юничел", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/unichel.shoes/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q62390569"}, "addTags": {"brand": "Юничел", "brand:wikidata": "Q62390569", "name": "Юничел", "shop": "shoes"}, "removeTags": {"brand": "Юничел", "brand:wikidata": "Q62390569", "name": "Юничел", "shop": "shoes"}, "countryCodes": ["kz", "ru"], "matchScore": 2, "suggestion": true}, "shop/shoes/東京靴流通センター": {"name": "東京靴流通センター", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/chiyodafanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q11318515"}, "addTags": {"brand": "東京靴流通センター", "brand:en": "Tokyo Shoes Retailing Center", "brand:ja": "東京靴流通センター", "brand:wikidata": "Q11318515", "brand:wikipedia": "ja:チヨダ", "name": "東京靴流通センター", "name:en": "Tokyo Shoes Retailing Center", "name:ja": "東京靴流通センター", "shop": "shoes"}, "removeTags": {"brand": "東京靴流通センター", "brand:en": "Tokyo Shoes Retailing Center", "brand:ja": "東京靴流通センター", "brand:wikidata": "Q11318515", "brand:wikipedia": "ja:チヨダ", "name": "東京靴流通センター", "name:en": "Tokyo Shoes Retailing Center", "name:ja": "東京靴流通センター", "shop": "shoes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/sports/Adidas": {"name": "Adidas", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/adidasUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q3895"}, "addTags": {"brand": "Adidas", "brand:wikidata": "Q3895", "brand:wikipedia": "en:Adidas", "name": "Adidas", "shop": "sports"}, "removeTags": {"brand": "Adidas", "brand:wikidata": "Q3895", "brand:wikipedia": "en:Adidas", "name": "Adidas", "shop": "sports"}, "matchScore": 2, "suggestion": true}, "shop/sports/Aktiesport": {"name": "Aktiesport", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q57546889"}, "addTags": {"brand": "Aktiesport", "brand:wikidata": "Q57546889", "name": "Aktiesport", "shop": "sports"}, "removeTags": {"brand": "Aktiesport", "brand:wikidata": "Q57546889", "name": "Aktiesport", "shop": "sports"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, - "shop/sports/Big 5 Sporting Goods": {"name": "Big 5 Sporting Goods", "icon": "fas-futbol", "imageURL": "https://pbs.twimg.com/profile_images/922575451729440768/nECkGozo_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q4904902"}, "addTags": {"brand": "Big 5 Sporting Goods", "brand:wikidata": "Q4904902", "brand:wikipedia": "en:Big 5 Sporting Goods", "name": "Big 5 Sporting Goods", "shop": "sports"}, "removeTags": {"brand": "Big 5 Sporting Goods", "brand:wikidata": "Q4904902", "brand:wikipedia": "en:Big 5 Sporting Goods", "name": "Big 5 Sporting Goods", "shop": "sports"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/sports/Centauro": {"name": "Centauro", "icon": "fas-futbol", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo-lojas-centauro.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q28679561"}, "addTags": {"brand": "Centauro", "brand:wikidata": "Q28679561", "brand:wikipedia": "pt:Lojas Centauro", "name": "Centauro", "shop": "sports"}, "removeTags": {"brand": "Centauro", "brand:wikidata": "Q28679561", "brand:wikipedia": "pt:Lojas Centauro", "name": "Centauro", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Decathlon": {"name": "Decathlon", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/decathlon/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q509349"}, "addTags": {"brand": "Decathlon", "brand:wikidata": "Q509349", "brand:wikipedia": "en:Decathlon Group", "name": "Decathlon", "shop": "sports"}, "removeTags": {"brand": "Decathlon", "brand:wikidata": "Q509349", "brand:wikipedia": "en:Decathlon Group", "name": "Decathlon", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Dick's Sporting Goods": {"name": "Dick's Sporting Goods", "icon": "fas-futbol", "imageURL": "https://pbs.twimg.com/profile_images/984093123964846083/srBT0TEj_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q5272601"}, "addTags": {"brand": "Dick's Sporting Goods", "brand:wikidata": "Q5272601", "brand:wikipedia": "en:Dick's Sporting Goods", "name": "Dick's Sporting Goods", "shop": "sports"}, "removeTags": {"brand": "Dick's Sporting Goods", "brand:wikidata": "Q5272601", "brand:wikipedia": "en:Dick's Sporting Goods", "name": "Dick's Sporting Goods", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Hervis": {"name": "Hervis", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q1614816"}, "addTags": {"brand": "Hervis", "brand:wikidata": "Q1614816", "brand:wikipedia": "de:Hervis", "name": "Hervis", "shop": "sports"}, "removeTags": {"brand": "Hervis", "brand:wikidata": "Q1614816", "brand:wikipedia": "de:Hervis", "name": "Hervis", "shop": "sports"}, "countryCodes": ["at", "cz", "de", "hr", "hu", "ro", "si"], "matchScore": 2, "suggestion": true}, - "shop/sports/Hibbett Sports": {"name": "Hibbett Sports", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q5750671"}, "addTags": {"brand": "Hibbett Sports", "brand:wikidata": "Q5750671", "brand:wikipedia": "en:Hibbett Sports", "name": "Hibbett Sports", "shop": "sports"}, "removeTags": {"brand": "Hibbett Sports", "brand:wikidata": "Q5750671", "brand:wikipedia": "en:Hibbett Sports", "name": "Hibbett Sports", "shop": "sports"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/sports/Intersport": {"name": "Intersport", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q666888"}, "addTags": {"brand": "Intersport", "brand:wikidata": "Q666888", "brand:wikipedia": "en:Intersport", "name": "Intersport", "shop": "sports"}, "removeTags": {"brand": "Intersport", "brand:wikidata": "Q666888", "brand:wikipedia": "en:Intersport", "name": "Intersport", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/JD Sports": {"name": "JD Sports", "icon": "fas-futbol", "imageURL": "https://pbs.twimg.com/profile_images/501662442229755905/symF-ozG_bigger.jpeg", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q6108019"}, "addTags": {"brand": "JD Sports", "brand:wikidata": "Q6108019", "brand:wikipedia": "en:JD Sports", "name": "JD Sports", "shop": "sports"}, "removeTags": {"brand": "JD Sports", "brand:wikidata": "Q6108019", "brand:wikipedia": "en:JD Sports", "name": "JD Sports", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Marathon Sports": {"name": "Marathon Sports", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q3027516"}, "addTags": {"brand": "Marathon Sports", "brand:wikidata": "Q3027516", "brand:wikipedia": "es:Marathon Sports", "name": "Marathon Sports", "shop": "sports"}, "removeTags": {"brand": "Marathon Sports", "brand:wikidata": "Q3027516", "brand:wikipedia": "es:Marathon Sports", "name": "Marathon Sports", "shop": "sports"}, "countryCodes": ["bo", "ec", "pe"], "matchScore": 2, "suggestion": true}, + "shop/sports/American Golf": {"name": "American Golf", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/americangolf/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q62657494"}, "addTags": {"brand": "American Golf", "brand:wikidata": "Q62657494", "name": "American Golf", "shop": "sports", "sport": "golf"}, "removeTags": {"brand": "American Golf", "brand:wikidata": "Q62657494", "name": "American Golf", "shop": "sports", "sport": "golf"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, + "shop/sports/Big 5 Sporting Goods": {"name": "Big 5 Sporting Goods", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/Big5SportingGoods/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q4904902"}, "addTags": {"brand": "Big 5 Sporting Goods", "brand:wikidata": "Q4904902", "brand:wikipedia": "en:Big 5 Sporting Goods", "name": "Big 5 Sporting Goods", "shop": "sports"}, "removeTags": {"brand": "Big 5 Sporting Goods", "brand:wikidata": "Q4904902", "brand:wikipedia": "en:Big 5 Sporting Goods", "name": "Big 5 Sporting Goods", "shop": "sports"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/sports/Centauro": {"name": "Centauro", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/centauroesporte/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q28679561"}, "addTags": {"brand": "Centauro", "brand:wikidata": "Q28679561", "brand:wikipedia": "pt:Lojas Centauro", "name": "Centauro", "shop": "sports"}, "removeTags": {"brand": "Centauro", "brand:wikidata": "Q28679561", "brand:wikipedia": "pt:Lojas Centauro", "name": "Centauro", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Decathlon": {"name": "Decathlon", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/DecathlonUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q509349"}, "addTags": {"brand": "Decathlon", "brand:wikidata": "Q509349", "brand:wikipedia": "en:Decathlon Group", "name": "Decathlon", "shop": "sports"}, "removeTags": {"brand": "Decathlon", "brand:wikidata": "Q509349", "brand:wikipedia": "en:Decathlon Group", "name": "Decathlon", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Dick's Sporting Goods": {"name": "Dick's Sporting Goods", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/dickssportinggoods/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q5272601"}, "addTags": {"brand": "Dick's Sporting Goods", "brand:wikidata": "Q5272601", "brand:wikipedia": "en:Dick's Sporting Goods", "name": "Dick's Sporting Goods", "shop": "sports"}, "removeTags": {"brand": "Dick's Sporting Goods", "brand:wikidata": "Q5272601", "brand:wikipedia": "en:Dick's Sporting Goods", "name": "Dick's Sporting Goods", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Hervis": {"name": "Hervis", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/hervissports.at/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q1614816"}, "addTags": {"brand": "Hervis", "brand:wikidata": "Q1614816", "brand:wikipedia": "de:Hervis", "name": "Hervis", "shop": "sports"}, "removeTags": {"brand": "Hervis", "brand:wikidata": "Q1614816", "brand:wikipedia": "de:Hervis", "name": "Hervis", "shop": "sports"}, "countryCodes": ["at", "cz", "de", "hr", "hu", "ro", "si"], "matchScore": 2, "suggestion": true}, + "shop/sports/Hibbett Sports": {"name": "Hibbett Sports", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/HibbettSports/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q5750671"}, "addTags": {"brand": "Hibbett Sports", "brand:wikidata": "Q5750671", "brand:wikipedia": "en:Hibbett Sports", "name": "Hibbett Sports", "shop": "sports"}, "removeTags": {"brand": "Hibbett Sports", "brand:wikidata": "Q5750671", "brand:wikipedia": "en:Hibbett Sports", "name": "Hibbett Sports", "shop": "sports"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/sports/Intersport": {"name": "Intersport", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/intersportAT/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q666888"}, "addTags": {"brand": "Intersport", "brand:wikidata": "Q666888", "brand:wikipedia": "en:Intersport", "name": "Intersport", "shop": "sports"}, "removeTags": {"brand": "Intersport", "brand:wikidata": "Q666888", "brand:wikipedia": "en:Intersport", "name": "Intersport", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/JD Sports": {"name": "JD Sports", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/JDSportsOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q6108019"}, "addTags": {"brand": "JD Sports", "brand:wikidata": "Q6108019", "brand:wikipedia": "en:JD Sports", "name": "JD Sports", "shop": "sports"}, "removeTags": {"brand": "JD Sports", "brand:wikidata": "Q6108019", "brand:wikipedia": "en:JD Sports", "name": "JD Sports", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Marathon Sports": {"name": "Marathon Sports", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/marathonsports/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q3027516"}, "addTags": {"brand": "Marathon Sports", "brand:wikidata": "Q3027516", "brand:wikipedia": "es:Marathon Sports", "name": "Marathon Sports", "shop": "sports"}, "removeTags": {"brand": "Marathon Sports", "brand:wikidata": "Q3027516", "brand:wikipedia": "es:Marathon Sports", "name": "Marathon Sports", "shop": "sports"}, "countryCodes": ["bo", "ec", "pe"], "matchScore": 2, "suggestion": true}, "shop/sports/Martes Sport": {"name": "Martes Sport", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/sklepmartes/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q62073490"}, "addTags": {"brand": "Martes Sport", "brand:wikidata": "Q62073490", "name": "Martes Sport", "shop": "sports"}, "removeTags": {"brand": "Martes Sport", "brand:wikidata": "Q62073490", "name": "Martes Sport", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Modell’s Sporting Goods": {"name": "Modell’s Sporting Goods", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q3317844"}, "addTags": {"brand": "Modell’s Sporting Goods", "brand:wikidata": "Q3317844", "brand:wikipedia": "en:Modell's Sporting Goods", "name": "Modell’s Sporting Goods", "shop": "sports"}, "removeTags": {"brand": "Modell’s Sporting Goods", "brand:wikidata": "Q3317844", "brand:wikipedia": "en:Modell's Sporting Goods", "name": "Modell’s Sporting Goods", "shop": "sports"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/sports/Play It Again Sports": {"name": "Play It Again Sports", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q7203029"}, "addTags": {"brand": "Play It Again Sports", "brand:wikidata": "Q7203029", "brand:wikipedia": "en:Play It Again Sports", "name": "Play It Again Sports", "shop": "sports"}, "removeTags": {"brand": "Play It Again Sports", "brand:wikidata": "Q7203029", "brand:wikipedia": "en:Play It Again Sports", "name": "Play It Again Sports", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Sport 2000": {"name": "Sport 2000", "icon": "fas-futbol", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20SDM.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q262394"}, "addTags": {"brand": "Sport 2000", "brand:wikidata": "Q262394", "brand:wikipedia": "de:Sport 2000", "name": "Sport 2000", "shop": "sports"}, "removeTags": {"brand": "Sport 2000", "brand:wikidata": "Q262394", "brand:wikipedia": "de:Sport 2000", "name": "Sport 2000", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Sportisimo": {"name": "Sportisimo", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q54974273"}, "addTags": {"brand": "Sportisimo", "brand:wikidata": "Q54974273", "name": "Sportisimo", "shop": "sports"}, "removeTags": {"brand": "Sportisimo", "brand:wikidata": "Q54974273", "name": "Sportisimo", "shop": "sports"}, "countryCodes": ["cz", "sk"], "matchScore": 2, "suggestion": true}, + "shop/sports/Modell’s Sporting Goods": {"name": "Modell’s Sporting Goods", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/modells/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q3317844"}, "addTags": {"brand": "Modell’s Sporting Goods", "brand:wikidata": "Q3317844", "brand:wikipedia": "en:Modell's Sporting Goods", "name": "Modell’s Sporting Goods", "shop": "sports"}, "removeTags": {"brand": "Modell’s Sporting Goods", "brand:wikidata": "Q3317844", "brand:wikipedia": "en:Modell's Sporting Goods", "name": "Modell’s Sporting Goods", "shop": "sports"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/sports/Play It Again Sports": {"name": "Play It Again Sports", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/playitagainsports/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q7203029"}, "addTags": {"brand": "Play It Again Sports", "brand:wikidata": "Q7203029", "brand:wikipedia": "en:Play It Again Sports", "name": "Play It Again Sports", "shop": "sports"}, "removeTags": {"brand": "Play It Again Sports", "brand:wikidata": "Q7203029", "brand:wikipedia": "en:Play It Again Sports", "name": "Play It Again Sports", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Sport 2000": {"name": "Sport 2000", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/SPORT2000France/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q262394"}, "addTags": {"brand": "Sport 2000", "brand:wikidata": "Q262394", "brand:wikipedia": "de:Sport 2000", "name": "Sport 2000", "shop": "sports"}, "removeTags": {"brand": "Sport 2000", "brand:wikidata": "Q262394", "brand:wikipedia": "de:Sport 2000", "name": "Sport 2000", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Sportisimo": {"name": "Sportisimo", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/1463426373966592/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q54974273"}, "addTags": {"brand": "Sportisimo", "brand:wikidata": "Q54974273", "name": "Sportisimo", "shop": "sports"}, "removeTags": {"brand": "Sportisimo", "brand:wikidata": "Q54974273", "name": "Sportisimo", "shop": "sports"}, "countryCodes": ["cz", "sk"], "matchScore": 2, "suggestion": true}, "shop/sports/Sports Authority": {"name": "Sports Authority", "icon": "fas-futbol", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSports%20Authority%20logo2011.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q7579688"}, "addTags": {"brand": "Sports Authority", "brand:wikidata": "Q7579688", "brand:wikipedia": "en:Sports Authority", "name": "Sports Authority", "shop": "sports"}, "removeTags": {"brand": "Sports Authority", "brand:wikidata": "Q7579688", "brand:wikipedia": "en:Sports Authority", "name": "Sports Authority", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Sports Direct": {"name": "Sports Direct", "icon": "fas-futbol", "imageURL": "https://pbs.twimg.com/profile_images/1093476002901168128/0JeA5eGF_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q2913554"}, "addTags": {"brand": "Sports Direct", "brand:wikidata": "Q2913554", "brand:wikipedia": "en:Sports Direct", "name": "Sports Direct", "shop": "sports"}, "removeTags": {"brand": "Sports Direct", "brand:wikidata": "Q2913554", "brand:wikipedia": "en:Sports Direct", "name": "Sports Direct", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Спортмастер": {"name": "Спортмастер", "icon": "fas-futbol", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSportmaster.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q4438176"}, "addTags": {"brand": "Спортмастер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер", "shop": "sports"}, "removeTags": {"brand": "Спортмастер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер", "shop": "sports"}, "matchScore": 2, "suggestion": true}, - "shop/sports/Спортмастер Гипер": {"name": "Спортмастер Гипер", "icon": "fas-futbol", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSportmaster.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q4438176"}, "addTags": {"brand": "Спортмастер Гипер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер Гипер", "shop": "sports"}, "removeTags": {"brand": "Спортмастер Гипер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер Гипер", "shop": "sports"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/stationery/Bureau Vallée": {"name": "Bureau Vallée", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q18385014"}, "addTags": {"brand": "Bureau Vallée", "brand:wikidata": "Q18385014", "brand:wikipedia": "fr:Bureau Vallée", "name": "Bureau Vallée", "shop": "stationery"}, "removeTags": {"brand": "Bureau Vallée", "brand:wikidata": "Q18385014", "brand:wikipedia": "fr:Bureau Vallée", "name": "Bureau Vallée", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, - "shop/stationery/McPaper": {"name": "McPaper", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q1915329"}, "addTags": {"brand": "McPaper", "brand:wikidata": "Q1915329", "brand:wikipedia": "de:McPaper", "name": "McPaper", "shop": "stationery"}, "removeTags": {"brand": "McPaper", "brand:wikidata": "Q1915329", "brand:wikipedia": "de:McPaper", "name": "McPaper", "shop": "stationery"}, "countryCodes": ["ch", "de"], "matchScore": 2, "suggestion": true}, - "shop/stationery/Office Depot": {"name": "Office Depot", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1018152775564320768/kH7WpGKV_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q1337797"}, "addTags": {"brand": "Office Depot", "brand:wikidata": "Q1337797", "brand:wikipedia": "en:Office Depot", "name": "Office Depot", "shop": "stationery"}, "removeTags": {"brand": "Office Depot", "brand:wikidata": "Q1337797", "brand:wikipedia": "en:Office Depot", "name": "Office Depot", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, - "shop/stationery/OfficeMax": {"name": "OfficeMax", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q7079111"}, "addTags": {"brand": "OfficeMax", "brand:wikidata": "Q7079111", "brand:wikipedia": "en:OfficeMax", "name": "OfficeMax", "shop": "stationery"}, "removeTags": {"brand": "OfficeMax", "brand:wikidata": "Q7079111", "brand:wikipedia": "en:OfficeMax", "name": "OfficeMax", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, - "shop/stationery/Officeworks": {"name": "Officeworks", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q7079486"}, "addTags": {"brand": "Officeworks", "brand:wikidata": "Q7079486", "brand:wikipedia": "en:Officeworks", "name": "Officeworks", "shop": "stationery"}, "removeTags": {"brand": "Officeworks", "brand:wikidata": "Q7079486", "brand:wikipedia": "en:Officeworks", "name": "Officeworks", "shop": "stationery"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, - "shop/stationery/Pagro": {"name": "Pagro", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q57550022"}, "addTags": {"brand": "Pagro", "brand:wikidata": "Q57550022", "name": "Pagro", "shop": "stationery"}, "removeTags": {"brand": "Pagro", "brand:wikidata": "Q57550022", "name": "Pagro", "shop": "stationery"}, "countryCodes": ["at"], "matchScore": 2, "suggestion": true}, - "shop/stationery/Paper Source": {"name": "Paper Source", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPaper-source-logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q25000269"}, "addTags": {"brand": "Paper Source", "brand:wikidata": "Q25000269", "brand:wikipedia": "en:Paper Source", "name": "Paper Source", "shop": "stationery"}, "removeTags": {"brand": "Paper Source", "brand:wikidata": "Q25000269", "brand:wikipedia": "en:Paper Source", "name": "Paper Source", "shop": "stationery"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/stationery/Paperchase": {"name": "Paperchase", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1106525584400805889/Vj2aTZvR_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q7132739"}, "addTags": {"brand": "Paperchase", "brand:wikidata": "Q7132739", "brand:wikipedia": "en:Paperchase", "name": "Paperchase", "shop": "stationery"}, "removeTags": {"brand": "Paperchase", "brand:wikidata": "Q7132739", "brand:wikipedia": "en:Paperchase", "name": "Paperchase", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, - "shop/stationery/Ryman": {"name": "Ryman", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/946036886988083200/_2puYaT9_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q7385188"}, "addTags": {"brand": "Ryman", "brand:wikidata": "Q7385188", "brand:wikipedia": "en:Ryman", "name": "Ryman", "shop": "stationery"}, "removeTags": {"brand": "Ryman", "brand:wikidata": "Q7385188", "brand:wikipedia": "en:Ryman", "name": "Ryman", "shop": "stationery"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/stationery/Staples": {"name": "Staples", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/782920908281438208/1-ohJImq_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q785943"}, "addTags": {"brand": "Staples", "brand:wikidata": "Q785943", "brand:wikipedia": "en:Staples Inc.", "name": "Staples", "shop": "stationery"}, "removeTags": {"brand": "Staples", "brand:wikidata": "Q785943", "brand:wikipedia": "en:Staples Inc.", "name": "Staples", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Sports Direct": {"name": "Sports Direct", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/SportsDirect/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q2913554"}, "addTags": {"brand": "Sports Direct", "brand:wikidata": "Q2913554", "brand:wikipedia": "en:Sports Direct", "name": "Sports Direct", "shop": "sports"}, "removeTags": {"brand": "Sports Direct", "brand:wikidata": "Q2913554", "brand:wikipedia": "en:Sports Direct", "name": "Sports Direct", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/sports/Спортмастер": {"name": "Спортмастер", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/sportmaster.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q4438176"}, "addTags": {"brand": "Спортмастер", "brand:en": "Sportmaster", "brand:ru": "Спортмастер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер", "name:en": "Sportmaster", "name:ru": "Спортмастер", "shop": "sports"}, "removeTags": {"brand": "Спортмастер", "brand:en": "Sportmaster", "brand:ru": "Спортмастер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер", "name:en": "Sportmaster", "name:ru": "Спортмастер", "shop": "sports"}, "matchScore": 2, "suggestion": true}, + "shop/stationery/Bureau Vallée": {"name": "Bureau Vallée", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/BureauVallee/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q18385014"}, "addTags": {"brand": "Bureau Vallée", "brand:wikidata": "Q18385014", "brand:wikipedia": "fr:Bureau Vallée", "name": "Bureau Vallée", "shop": "stationery"}, "removeTags": {"brand": "Bureau Vallée", "brand:wikidata": "Q18385014", "brand:wikipedia": "fr:Bureau Vallée", "name": "Bureau Vallée", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, + "shop/stationery/McPaper": {"name": "McPaper", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/mcpaperberlin/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q1915329"}, "addTags": {"brand": "McPaper", "brand:wikidata": "Q1915329", "brand:wikipedia": "de:McPaper", "name": "McPaper", "shop": "stationery"}, "removeTags": {"brand": "McPaper", "brand:wikidata": "Q1915329", "brand:wikipedia": "de:McPaper", "name": "McPaper", "shop": "stationery"}, "countryCodes": ["ch", "de"], "matchScore": 2, "suggestion": true}, + "shop/stationery/Office Depot": {"name": "Office Depot", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/OfficeDepot/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q1337797"}, "addTags": {"brand": "Office Depot", "brand:wikidata": "Q1337797", "brand:wikipedia": "en:Office Depot", "name": "Office Depot", "shop": "stationery"}, "removeTags": {"brand": "Office Depot", "brand:wikidata": "Q1337797", "brand:wikipedia": "en:Office Depot", "name": "Office Depot", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, + "shop/stationery/OfficeMax": {"name": "OfficeMax", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/OfficeDepot/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q7079111"}, "addTags": {"brand": "OfficeMax", "brand:wikidata": "Q7079111", "brand:wikipedia": "en:OfficeMax", "name": "OfficeMax", "shop": "stationery"}, "removeTags": {"brand": "OfficeMax", "brand:wikidata": "Q7079111", "brand:wikipedia": "en:OfficeMax", "name": "OfficeMax", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, + "shop/stationery/Officeworks": {"name": "Officeworks", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/officeworks/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q7079486"}, "addTags": {"brand": "Officeworks", "brand:wikidata": "Q7079486", "brand:wikipedia": "en:Officeworks", "name": "Officeworks", "shop": "stationery"}, "removeTags": {"brand": "Officeworks", "brand:wikidata": "Q7079486", "brand:wikipedia": "en:Officeworks", "name": "Officeworks", "shop": "stationery"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, + "shop/stationery/Pagro": {"name": "Pagro", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/pagro.at/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q57550022"}, "addTags": {"brand": "Pagro", "brand:wikidata": "Q57550022", "name": "Pagro", "shop": "stationery"}, "removeTags": {"brand": "Pagro", "brand:wikidata": "Q57550022", "name": "Pagro", "shop": "stationery"}, "countryCodes": ["at"], "matchScore": 2, "suggestion": true}, + "shop/stationery/Paper Source": {"name": "Paper Source", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/PaperSource/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q25000269"}, "addTags": {"brand": "Paper Source", "brand:wikidata": "Q25000269", "brand:wikipedia": "en:Paper Source", "name": "Paper Source", "shop": "stationery"}, "removeTags": {"brand": "Paper Source", "brand:wikidata": "Q25000269", "brand:wikipedia": "en:Paper Source", "name": "Paper Source", "shop": "stationery"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/stationery/Paperchase": {"name": "Paperchase", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/paperchase/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q7132739"}, "addTags": {"brand": "Paperchase", "brand:wikidata": "Q7132739", "brand:wikipedia": "en:Paperchase", "name": "Paperchase", "shop": "stationery"}, "removeTags": {"brand": "Paperchase", "brand:wikidata": "Q7132739", "brand:wikipedia": "en:Paperchase", "name": "Paperchase", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, + "shop/stationery/Ryman": {"name": "Ryman", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/ryman/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q7385188"}, "addTags": {"brand": "Ryman", "brand:wikidata": "Q7385188", "brand:wikipedia": "en:Ryman", "name": "Ryman", "shop": "stationery"}, "removeTags": {"brand": "Ryman", "brand:wikidata": "Q7385188", "brand:wikipedia": "en:Ryman", "name": "Ryman", "shop": "stationery"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/stationery/Staples": {"name": "Staples", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/staples/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q785943"}, "addTags": {"brand": "Staples", "brand:wikidata": "Q785943", "brand:wikipedia": "en:Staples Inc.", "name": "Staples", "shop": "stationery"}, "removeTags": {"brand": "Staples", "brand:wikidata": "Q785943", "brand:wikipedia": "en:Staples Inc.", "name": "Staples", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, "shop/stationery/Комус": {"name": "Комус", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/komusclub/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q4230314"}, "addTags": {"brand": "Комус", "brand:en": "Komus", "brand:wikidata": "Q4230314", "brand:wikipedia": "en:Komus (company)", "name": "Комус", "name:en": "Komus", "shop": "stationery"}, "removeTags": {"brand": "Комус", "brand:en": "Komus", "brand:wikidata": "Q4230314", "brand:wikipedia": "en:Komus (company)", "name": "Комус", "name:en": "Komus", "shop": "stationery"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/storage_rental/Extra Space Storage": {"name": "Extra Space Storage", "icon": "fas-warehouse", "geometry": ["point", "area"], "tags": {"shop": "storage_rental", "brand:wikidata": "Q5422162"}, "addTags": {"brand": "Extra Space Storage", "brand:wikidata": "Q5422162", "brand:wikipedia": "en:Extra Space Storage", "name": "Extra Space Storage", "shop": "storage_rental"}, "removeTags": {"brand": "Extra Space Storage", "brand:wikidata": "Q5422162", "brand:wikipedia": "en:Extra Space Storage", "name": "Extra Space Storage", "shop": "storage_rental"}, "countryCodes": ["pr", "us"], "matchScore": 2, "suggestion": true}, - "shop/storage_rental/Public Storage": {"name": "Public Storage", "icon": "fas-warehouse", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPublic%20Storage%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "storage_rental", "brand:wikidata": "Q1156045"}, "addTags": {"brand": "Public Storage", "brand:wikidata": "Q1156045", "brand:wikipedia": "en:Public Storage", "name": "Public Storage", "shop": "storage_rental"}, "removeTags": {"brand": "Public Storage", "brand:wikidata": "Q1156045", "brand:wikipedia": "en:Public Storage", "name": "Public Storage", "shop": "storage_rental"}, "matchScore": 2, "suggestion": true}, + "shop/storage_rental/Extra Space Storage": {"name": "Extra Space Storage", "icon": "fas-warehouse", "imageURL": "https://graph.facebook.com/extraspace/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "storage_rental", "brand:wikidata": "Q5422162"}, "addTags": {"brand": "Extra Space Storage", "brand:wikidata": "Q5422162", "brand:wikipedia": "en:Extra Space Storage", "name": "Extra Space Storage", "shop": "storage_rental"}, "removeTags": {"brand": "Extra Space Storage", "brand:wikidata": "Q5422162", "brand:wikipedia": "en:Extra Space Storage", "name": "Extra Space Storage", "shop": "storage_rental"}, "countryCodes": ["pr", "us"], "matchScore": 2, "suggestion": true}, + "shop/storage_rental/Public Storage": {"name": "Public Storage", "icon": "fas-warehouse", "imageURL": "https://graph.facebook.com/PublicStorage/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "storage_rental", "brand:wikidata": "Q1156045"}, "addTags": {"brand": "Public Storage", "brand:wikidata": "Q1156045", "brand:wikipedia": "en:Public Storage", "name": "Public Storage", "shop": "storage_rental"}, "removeTags": {"brand": "Public Storage", "brand:wikidata": "Q1156045", "brand:wikipedia": "en:Public Storage", "name": "Public Storage", "shop": "storage_rental"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/A&O": {"name": "A&O", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3600279"}, "addTags": {"brand": "A&O", "brand:wikidata": "Q3600279", "brand:wikipedia": "it:A&O", "name": "A&O", "shop": "supermarket"}, "removeTags": {"brand": "A&O", "brand:wikidata": "Q3600279", "brand:wikipedia": "it:A&O", "name": "A&O", "shop": "supermarket"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, "shop/supermarket/A101": {"name": "A101", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/996489765544448000/kwXc3FEH_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q6034496"}, "addTags": {"brand": "A101", "brand:wikidata": "Q6034496", "brand:wikipedia": "tr:A101", "name": "A101", "shop": "supermarket"}, "removeTags": {"brand": "A101", "brand:wikidata": "Q6034496", "brand:wikipedia": "tr:A101", "name": "A101", "shop": "supermarket"}, "countryCodes": ["tr"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/AD Delhaize": {"name": "AD Delhaize", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Delhaize/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1184173"}, "addTags": {"brand": "AD Delhaize", "brand:wikidata": "Q1184173", "brand:wikipedia": "fr:Delhaize", "name": "AD Delhaize", "shop": "supermarket"}, "removeTags": {"brand": "AD Delhaize", "brand:wikidata": "Q1184173", "brand:wikipedia": "fr:Delhaize", "name": "AD Delhaize", "shop": "supermarket"}, "countryCodes": ["be", "lu"], "matchScore": 2, "suggestion": true}, "shop/supermarket/ADEG": {"name": "ADEG", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAdeg%20logo%20gruen%202015.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q290211"}, "addTags": {"brand": "ADEG", "brand:wikidata": "Q290211", "brand:wikipedia": "de:ADEG Österreich", "name": "ADEG", "shop": "supermarket"}, "removeTags": {"brand": "ADEG", "brand:wikidata": "Q290211", "brand:wikipedia": "de:ADEG Österreich", "name": "ADEG", "shop": "supermarket"}, "countryCodes": ["at"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Acme": {"name": "Acme", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAcme%20Markets%20lolo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q341975"}, "addTags": {"brand": "Acme", "brand:wikidata": "Q341975", "brand:wikipedia": "en:Acme Markets", "name": "Acme", "shop": "supermarket"}, "removeTags": {"brand": "Acme", "brand:wikidata": "Q341975", "brand:wikipedia": "en:Acme Markets", "name": "Acme", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Ahorramás": {"name": "Ahorramás", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q58221883"}, "addTags": {"brand": "Ahorramás", "brand:wikidata": "Q58221883", "name": "Ahorramás", "shop": "supermarket"}, "removeTags": {"brand": "Ahorramás", "brand:wikidata": "Q58221883", "name": "Ahorramás", "shop": "supermarket"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Albert": {"name": "Albert", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAlbert%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q9144241"}, "addTags": {"brand": "Albert", "brand:wikidata": "Q9144241", "brand:wikipedia": "cs:Albert (obchodní řetězec)", "name": "Albert", "shop": "supermarket"}, "removeTags": {"brand": "Albert", "brand:wikidata": "Q9144241", "brand:wikipedia": "cs:Albert (obchodní řetězec)", "name": "Albert", "shop": "supermarket"}, "countryCodes": ["cz"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Albert Heijn": {"name": "Albert Heijn", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAlbert%20heijn.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1653985"}, "addTags": {"brand": "Albert Heijn", "brand:wikidata": "Q1653985", "brand:wikipedia": "nl:Albert Heijn (supermarkt)", "name": "Albert Heijn", "shop": "supermarket"}, "removeTags": {"brand": "Albert Heijn", "brand:wikidata": "Q1653985", "brand:wikipedia": "nl:Albert Heijn (supermarkt)", "name": "Albert Heijn", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Albert Heijn": {"name": "Albert Heijn", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/albertheijn/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1653985"}, "addTags": {"brand": "Albert Heijn", "brand:wikidata": "Q1653985", "brand:wikipedia": "nl:Albert Heijn (supermarkt)", "name": "Albert Heijn", "shop": "supermarket"}, "removeTags": {"brand": "Albert Heijn", "brand:wikidata": "Q1653985", "brand:wikipedia": "nl:Albert Heijn (supermarkt)", "name": "Albert Heijn", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Albertsons": {"name": "Albertsons", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAlbertsons%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q4712282"}, "addTags": {"brand": "Albertsons", "brand:wikidata": "Q4712282", "brand:wikipedia": "en:Albertsons", "name": "Albertsons", "shop": "supermarket"}, "removeTags": {"brand": "Albertsons", "brand:wikidata": "Q4712282", "brand:wikipedia": "en:Albertsons", "name": "Albertsons", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Aldi": {"name": "Aldi", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAldiWorldwideLogo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q125054"}, "addTags": {"brand": "Aldi", "brand:wikidata": "Q125054", "brand:wikipedia": "en:Aldi", "name": "Aldi", "shop": "supermarket"}, "removeTags": {"brand": "Aldi", "brand:wikidata": "Q125054", "brand:wikipedia": "en:Aldi", "name": "Aldi", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Aldi Nord": {"name": "Aldi Nord", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FALDI%20Nord%20Logo%202015.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q41171373"}, "addTags": {"brand": "Aldi Nord", "brand:wikidata": "Q41171373", "brand:wikipedia": "en:Aldi", "name": "Aldi Nord", "shop": "supermarket"}, "removeTags": {"brand": "Aldi Nord", "brand:wikidata": "Q41171373", "brand:wikipedia": "en:Aldi", "name": "Aldi Nord", "shop": "supermarket"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Aldi Süd": {"name": "Aldi Süd", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ALDI.SUED/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q41171672"}, "addTags": {"brand": "Aldi Süd", "brand:wikidata": "Q41171672", "brand:wikipedia": "en:Aldi", "name": "Aldi Süd", "shop": "supermarket"}, "removeTags": {"brand": "Aldi Süd", "brand:wikidata": "Q41171672", "brand:wikipedia": "en:Aldi", "name": "Aldi Süd", "shop": "supermarket"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Alfamart": {"name": "Alfamart", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/alfamartku/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q23745600"}, "addTags": {"brand": "Alfamart", "brand:wikidata": "Q23745600", "brand:wikipedia": "en:Alfamart", "name": "Alfamart", "shop": "supermarket"}, "removeTags": {"brand": "Alfamart", "brand:wikidata": "Q23745600", "brand:wikipedia": "en:Alfamart", "name": "Alfamart", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Alimerka": {"name": "Alimerka", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/659793335503204352/7J6NiZzm_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q16482738"}, "addTags": {"brand": "Alimerka", "brand:wikidata": "Q16482738", "brand:wikipedia": "es:Alimerka", "name": "Alimerka", "shop": "supermarket"}, "removeTags": {"brand": "Alimerka", "brand:wikidata": "Q16482738", "brand:wikipedia": "es:Alimerka", "name": "Alimerka", "shop": "supermarket"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Alnatura": {"name": "Alnatura", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAlnatura-Logo-2017.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q876811"}, "addTags": {"brand": "Alnatura", "brand:wikidata": "Q876811", "brand:wikipedia": "en:Alnatura", "name": "Alnatura", "shop": "supermarket"}, "removeTags": {"brand": "Alnatura", "brand:wikidata": "Q876811", "brand:wikipedia": "en:Alnatura", "name": "Alnatura", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Alnatura": {"name": "Alnatura", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAlnatura-Logo-2017.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q876811"}, "addTags": {"brand": "Alnatura", "brand:wikidata": "Q876811", "brand:wikipedia": "en:Alnatura", "name": "Alnatura", "organic": "only", "shop": "supermarket"}, "removeTags": {"brand": "Alnatura", "brand:wikidata": "Q876811", "brand:wikipedia": "en:Alnatura", "name": "Alnatura", "organic": "only", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Asda": {"name": "Asda", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Asda/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q297410"}, "addTags": {"brand": "Asda", "brand:wikidata": "Q297410", "brand:wikipedia": "en:Asda", "name": "Asda", "shop": "supermarket"}, "removeTags": {"brand": "Asda", "brand:wikidata": "Q297410", "brand:wikipedia": "en:Asda", "name": "Asda", "shop": "supermarket"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Atacadão": {"name": "Atacadão", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2868739"}, "addTags": {"brand": "Atacadão", "brand:wikidata": "Q2868739", "brand:wikipedia": "en:Atacadão", "name": "Atacadão", "shop": "supermarket"}, "removeTags": {"brand": "Atacadão", "brand:wikidata": "Q2868739", "brand:wikipedia": "en:Atacadão", "name": "Atacadão", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Auchan": {"name": "Auchan", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/877095334316576768/bhQDPUWZ_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q758603"}, "addTags": {"brand": "Auchan", "brand:wikidata": "Q758603", "brand:wikipedia": "en:Auchan", "name": "Auchan", "shop": "supermarket"}, "removeTags": {"brand": "Auchan", "brand:wikidata": "Q758603", "brand:wikipedia": "en:Auchan", "name": "Auchan", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/BM": {"name": "BM", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BM-Supermercados-147042362658546/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q62073462"}, "addTags": {"brand": "BM", "brand:wikidata": "Q62073462", "name": "BM", "shop": "supermarket"}, "removeTags": {"brand": "BM", "brand:wikidata": "Q62073462", "name": "BM", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, @@ -3508,15 +3700,19 @@ "shop/supermarket/Big Bazaar": {"name": "Big Bazaar", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BigBazaar/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3631008"}, "addTags": {"brand": "Big Bazaar", "brand:wikidata": "Q3631008", "brand:wikipedia": "en:Big Bazaar", "name": "Big Bazaar", "shop": "supermarket"}, "removeTags": {"brand": "Big Bazaar", "brand:wikidata": "Q3631008", "brand:wikipedia": "en:Big Bazaar", "name": "Big Bazaar", "shop": "supermarket"}, "countryCodes": ["in"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Big C": {"name": "Big C", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q858665"}, "addTags": {"brand": "Big C", "brand:wikidata": "Q858665", "brand:wikipedia": "en:Big C", "name": "Big C", "shop": "supermarket"}, "removeTags": {"brand": "Big C", "brand:wikidata": "Q858665", "brand:wikipedia": "en:Big C", "name": "Big C", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Billa": {"name": "Billa", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBilla-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q537781"}, "addTags": {"brand": "Billa", "brand:wikidata": "Q537781", "brand:wikipedia": "en:Billa (supermarket)", "name": "Billa", "shop": "supermarket"}, "removeTags": {"brand": "Billa", "brand:wikidata": "Q537781", "brand:wikipedia": "en:Billa (supermarket)", "name": "Billa", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Bim": {"name": "Bim", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/bimturkiye/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1022075"}, "addTags": {"brand": "Bim", "brand:wikidata": "Q1022075", "brand:wikipedia": "en:Bim (company)", "name": "Bim", "shop": "supermarket"}, "removeTags": {"brand": "Bim", "brand:wikidata": "Q1022075", "brand:wikipedia": "en:Bim (company)", "name": "Bim", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Bingo": {"name": "Bingo", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q16842066"}, "addTags": {"brand": "Bingo", "brand:wikidata": "Q16842066", "brand:wikipedia": "bs:Bingo (kompanija)", "name": "Bingo", "shop": "supermarket"}, "removeTags": {"brand": "Bingo", "brand:wikidata": "Q16842066", "brand:wikipedia": "bs:Bingo (kompanija)", "name": "Bingo", "shop": "supermarket"}, "countryCodes": ["ba"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Biocoop": {"name": "Biocoop", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2904039"}, "addTags": {"brand": "Biocoop", "brand:wikidata": "Q2904039", "brand:wikipedia": "fr:Biocoop", "name": "Biocoop", "shop": "supermarket"}, "removeTags": {"brand": "Biocoop", "brand:wikidata": "Q2904039", "brand:wikipedia": "fr:Biocoop", "name": "Biocoop", "shop": "supermarket"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Bodega Aurrera": {"name": "Bodega Aurrera", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BodegaAurrera/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3365858"}, "addTags": {"brand": "Bodega Aurrera", "brand:wikidata": "Q3365858", "brand:wikipedia": "en:Bodega Aurrerá", "name": "Bodega Aurrera", "shop": "supermarket"}, "removeTags": {"brand": "Bodega Aurrera", "brand:wikidata": "Q3365858", "brand:wikipedia": "en:Bodega Aurrerá", "name": "Bodega Aurrera", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Bravo": {"name": "Bravo", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q16985159"}, "addTags": {"brand": "Bravo", "brand:wikidata": "Q16985159", "brand:wikipedia": "en:Bravo (supermarket)", "name": "Bravo", "shop": "supermarket"}, "removeTags": {"brand": "Bravo", "brand:wikidata": "Q16985159", "brand:wikipedia": "en:Bravo (supermarket)", "name": "Bravo", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Brookshire Brothers": {"name": "Brookshire Brothers", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q4975084"}, "addTags": {"brand": "Brookshire Brothers", "brand:wikidata": "Q4975084", "brand:wikipedia": "en:Brookshire Brothers", "name": "Brookshire Brothers", "shop": "supermarket"}, "removeTags": {"brand": "Brookshire Brothers", "brand:wikidata": "Q4975084", "brand:wikipedia": "en:Brookshire Brothers", "name": "Brookshire Brothers", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Brookshire Brothers": {"name": "Brookshire Brothers", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BrookshireBros/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q4975084"}, "addTags": {"brand": "Brookshire Brothers", "brand:wikidata": "Q4975084", "brand:wikipedia": "en:Brookshire Brothers", "name": "Brookshire Brothers", "shop": "supermarket"}, "removeTags": {"brand": "Brookshire Brothers", "brand:wikidata": "Q4975084", "brand:wikipedia": "en:Brookshire Brothers", "name": "Brookshire Brothers", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Brookshire's": {"name": "Brookshire's", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q4975085"}, "addTags": {"brand": "Brookshire's", "brand:wikidata": "Q4975085", "brand:wikipedia": "en:Brookshire Grocery Company", "name": "Brookshire's", "shop": "supermarket"}, "removeTags": {"brand": "Brookshire's", "brand:wikidata": "Q4975085", "brand:wikipedia": "en:Brookshire Grocery Company", "name": "Brookshire's", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Budgens": {"name": "Budgens", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/796001828966203392/69ZeL67f_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q4985016"}, "addTags": {"brand": "Budgens", "brand:wikidata": "Q4985016", "brand:wikipedia": "en:Budgens", "name": "Budgens", "shop": "supermarket"}, "removeTags": {"brand": "Budgens", "brand:wikidata": "Q4985016", "brand:wikipedia": "en:Budgens", "name": "Budgens", "shop": "supermarket"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Bulk Barn": {"name": "Bulk Barn", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBulk%20Barn%20Logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q4996466"}, "addTags": {"brand": "Bulk Barn", "brand:wikidata": "Q4996466", "name": "Bulk Barn", "shop": "supermarket"}, "removeTags": {"brand": "Bulk Barn", "brand:wikidata": "Q4996466", "name": "Bulk Barn", "shop": "supermarket"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Bunnpris": {"name": "Bunnpris", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1774634"}, "addTags": {"brand": "Bunnpris", "brand:wikidata": "Q1774634", "brand:wikipedia": "en:Bunnpris", "name": "Bunnpris", "shop": "supermarket"}, "removeTags": {"brand": "Bunnpris", "brand:wikidata": "Q1774634", "brand:wikipedia": "en:Bunnpris", "name": "Bunnpris", "shop": "supermarket"}, "countryCodes": ["no"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/COOP Jednota": {"name": "COOP Jednota", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q41629254"}, "addTags": {"brand": "COOP Jednota", "brand:wikidata": "Q41629254", "brand:wikipedia": "sk:COOP Jednota Slovensko", "name": "COOP Jednota", "shop": "supermarket"}, "removeTags": {"brand": "COOP Jednota", "brand:wikidata": "Q41629254", "brand:wikipedia": "sk:COOP Jednota Slovensko", "name": "COOP Jednota", "shop": "supermarket"}, "countryCodes": ["cz", "sk"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/C-Town Supermarkets": {"name": "C-Town Supermarkets", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5005929"}, "addTags": {"brand": "C-Town Supermarkets", "brand:wikidata": "Q5005929", "brand:wikipedia": "en:C-Town Supermarkets", "name": "C-Town", "shop": "supermarket"}, "removeTags": {"brand": "C-Town Supermarkets", "brand:wikidata": "Q5005929", "brand:wikipedia": "en:C-Town Supermarkets", "name": "C-Town", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/CBA": {"name": "CBA", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/cbaboltok/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q779845"}, "addTags": {"brand": "CBA", "brand:wikidata": "Q779845", "brand:wikipedia": "en:CBA (food retail)", "name": "CBA", "shop": "supermarket"}, "removeTags": {"brand": "CBA", "brand:wikidata": "Q779845", "brand:wikipedia": "en:CBA (food retail)", "name": "CBA", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/COOP Jednota": {"name": "COOP Jednota", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/COOPJednota/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q41629254"}, "addTags": {"brand": "COOP Jednota", "brand:wikidata": "Q41629254", "brand:wikipedia": "sk:COOP Jednota Slovensko", "name": "COOP Jednota", "shop": "supermarket"}, "removeTags": {"brand": "COOP Jednota", "brand:wikidata": "Q41629254", "brand:wikipedia": "sk:COOP Jednota Slovensko", "name": "COOP Jednota", "shop": "supermarket"}, "countryCodes": ["cz", "sk"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Caprabo": {"name": "Caprabo", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1980781"}, "addTags": {"brand": "Caprabo", "brand:wikidata": "Q1980781", "brand:wikipedia": "en:Caprabo", "name": "Caprabo", "shop": "supermarket"}, "removeTags": {"brand": "Caprabo", "brand:wikidata": "Q1980781", "brand:wikipedia": "en:Caprabo", "name": "Caprabo", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Cargills Food City": {"name": "Cargills Food City", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q58353955"}, "addTags": {"brand": "Cargills Food City", "brand:wikidata": "Q58353955", "name": "Cargills Food City", "operator:wikidata": "Q5039260", "operator:wikipedia": "en:Cargills (Ceylon)", "shop": "supermarket"}, "removeTags": {"brand": "Cargills Food City", "brand:wikidata": "Q58353955", "name": "Cargills Food City", "operator:wikidata": "Q5039260", "operator:wikipedia": "en:Cargills (Ceylon)", "shop": "supermarket"}, "countryCodes": ["lk"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Carrefour": {"name": "Carrefour", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/carrefouritalia/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q217599"}, "addTags": {"brand": "Carrefour", "brand:wikidata": "Q217599", "brand:wikipedia": "fr:Carrefour (enseigne)", "name": "Carrefour", "operator": "Groupe Carrefour", "operator:wikidata": "Q3117359", "operator:wikipedia": "fr:Groupe Carrefour", "shop": "supermarket"}, "removeTags": {"brand": "Carrefour", "brand:wikidata": "Q217599", "brand:wikipedia": "fr:Carrefour (enseigne)", "name": "Carrefour", "operator": "Groupe Carrefour", "operator:wikidata": "Q3117359", "operator:wikipedia": "fr:Groupe Carrefour", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, @@ -3529,8 +3725,8 @@ "shop/supermarket/Chata Polska": {"name": "Chata Polska", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q61994406"}, "addTags": {"brand": "Chata Polska", "brand:wikidata": "Q61994406", "name": "Chata Polska", "shop": "supermarket"}, "removeTags": {"brand": "Chata Polska", "brand:wikidata": "Q61994406", "name": "Chata Polska", "shop": "supermarket"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Checkers": {"name": "Checkers", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5089126"}, "addTags": {"brand": "Checkers", "brand:wikidata": "Q5089126", "brand:wikipedia": "en:Checkers (supermarket chain)", "name": "Checkers", "shop": "supermarket"}, "removeTags": {"brand": "Checkers", "brand:wikidata": "Q5089126", "brand:wikipedia": "en:Checkers (supermarket chain)", "name": "Checkers", "shop": "supermarket"}, "countryCodes": ["bw", "na", "za"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Chedraui": {"name": "Chedraui", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2961952"}, "addTags": {"brand": "Chedraui", "brand:wikidata": "Q2961952", "brand:wikipedia": "en:Chedraui", "name": "Chedraui", "shop": "supermarket"}, "removeTags": {"brand": "Chedraui", "brand:wikidata": "Q2961952", "brand:wikipedia": "en:Chedraui", "name": "Chedraui", "shop": "supermarket"}, "countryCodes": ["mx"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/City Market": {"name": "City Market", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5123299"}, "addTags": {"brand": "City Market", "brand:wikidata": "Q5123299", "brand:wikipedia": "en:City Market (US grocery store chain)", "name": "City Market", "shop": "supermarket"}, "removeTags": {"brand": "City Market", "brand:wikidata": "Q5123299", "brand:wikipedia": "en:City Market (US grocery store chain)", "name": "City Market", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, - "shop/supermarket/Co-op": {"name": "Co-op", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSaskatoon%20Co-op%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5440676"}, "addTags": {"brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op", "shop": "supermarket"}, "removeTags": {"brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/City Market": {"name": "City Market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/CityMarketGrocery/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5123299"}, "addTags": {"brand": "City Market", "brand:wikidata": "Q5123299", "brand:wikipedia": "en:City Market (US grocery store chain)", "name": "City Market", "shop": "supermarket"}, "removeTags": {"brand": "City Market", "brand:wikidata": "Q5123299", "brand:wikipedia": "en:City Market (US grocery store chain)", "name": "City Market", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Co-op": {"name": "Co-op", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSaskatoon%20Co-op%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5440676"}, "addTags": {"brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op", "shop": "supermarket"}, "removeTags": {"brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op", "shop": "supermarket"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Coles": {"name": "Coles", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FColes%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1108172"}, "addTags": {"brand": "Coles", "brand:wikidata": "Q1108172", "brand:wikipedia": "en:Coles Supermarkets", "name": "Coles", "shop": "supermarket"}, "removeTags": {"brand": "Coles", "brand:wikidata": "Q1108172", "brand:wikipedia": "en:Coles Supermarkets", "name": "Coles", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Colruyt": {"name": "Colruyt", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FColruyt%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2363991"}, "addTags": {"brand": "Colruyt", "brand:wikidata": "Q2363991", "brand:wikipedia": "en:Colruyt (supermarket)", "name": "Colruyt", "shop": "supermarket"}, "removeTags": {"brand": "Colruyt", "brand:wikidata": "Q2363991", "brand:wikipedia": "en:Colruyt (supermarket)", "name": "Colruyt", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Combi": {"name": "Combi", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCombi.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1113618"}, "addTags": {"brand": "Combi", "brand:wikidata": "Q1113618", "brand:wikipedia": "de:Combi (Einkaufsmarkt)", "name": "Combi", "shop": "supermarket"}, "removeTags": {"brand": "Combi", "brand:wikidata": "Q1113618", "brand:wikipedia": "de:Combi (Einkaufsmarkt)", "name": "Combi", "shop": "supermarket"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, @@ -3542,25 +3738,28 @@ "shop/supermarket/Continente": {"name": "Continente", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogocontinente.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2995683"}, "addTags": {"brand": "Continente", "brand:wikidata": "Q2995683", "brand:wikipedia": "en:Continente (Supermarket)", "name": "Continente", "shop": "supermarket"}, "removeTags": {"brand": "Continente", "brand:wikidata": "Q2995683", "brand:wikipedia": "en:Continente (Supermarket)", "name": "Continente", "shop": "supermarket"}, "countryCodes": ["pt"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Coop Prix": {"name": "Coop Prix", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCoop%20Prix.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5167705"}, "addTags": {"brand": "Coop Prix", "brand:wikidata": "Q5167705", "brand:wikipedia": "no:Coop Prix", "name": "Coop Prix", "shop": "supermarket"}, "removeTags": {"brand": "Coop Prix", "brand:wikidata": "Q5167705", "brand:wikipedia": "no:Coop Prix", "name": "Coop Prix", "shop": "supermarket"}, "countryCodes": ["no"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Cora": {"name": "Cora", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCora%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q686643"}, "addTags": {"brand": "Cora", "brand:wikidata": "Q686643", "brand:wikipedia": "en:Cora (hypermarket)", "name": "Cora", "shop": "supermarket"}, "removeTags": {"brand": "Cora", "brand:wikidata": "Q686643", "brand:wikipedia": "en:Cora (hypermarket)", "name": "Cora", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, - "shop/supermarket/Costcutter": {"name": "Costcutter", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/799170592163397632/wyr6kFNA_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5175072"}, "addTags": {"brand": "Costcutter", "brand:wikidata": "Q5175072", "brand:wikipedia": "en:Costcutter", "name": "Costcutter", "shop": "supermarket"}, "removeTags": {"brand": "Costcutter", "brand:wikidata": "Q5175072", "brand:wikipedia": "en:Costcutter", "name": "Costcutter", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Costcutter": {"name": "Costcutter", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/costcutter/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5175072"}, "addTags": {"brand": "Costcutter", "brand:wikidata": "Q5175072", "brand:wikipedia": "en:Costcutter", "name": "Costcutter", "shop": "supermarket"}, "removeTags": {"brand": "Costcutter", "brand:wikidata": "Q5175072", "brand:wikipedia": "en:Costcutter", "name": "Costcutter", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Coto": {"name": "Coto", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCoto%20superm%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5175411"}, "addTags": {"brand": "Coto", "brand:wikidata": "Q5175411", "brand:wikipedia": "es:Coto (supermercado)", "name": "Coto", "shop": "supermarket"}, "removeTags": {"brand": "Coto", "brand:wikidata": "Q5175411", "brand:wikipedia": "es:Coto (supermercado)", "name": "Coto", "shop": "supermarket"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Countdown": {"name": "Countdown", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5176845"}, "addTags": {"brand": "Countdown", "brand:wikidata": "Q5176845", "brand:wikipedia": "en:Countdown (supermarket)", "name": "Countdown", "shop": "supermarket"}, "removeTags": {"brand": "Countdown", "brand:wikidata": "Q5176845", "brand:wikipedia": "en:Countdown (supermarket)", "name": "Countdown", "shop": "supermarket"}, "countryCodes": ["nz"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Cub Foods": {"name": "Cub Foods", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCub%20Foods.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5191916"}, "addTags": {"brand": "Cub Foods", "brand:wikidata": "Q5191916", "brand:wikipedia": "en:Cub Foods", "name": "Cub Foods", "shop": "supermarket"}, "removeTags": {"brand": "Cub Foods", "brand:wikidata": "Q5191916", "brand:wikipedia": "en:Cub Foods", "name": "Cub Foods", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/C‑Town Supermarkets": {"name": "C‑Town Supermarkets", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5005929"}, "addTags": {"brand": "C‑Town Supermarkets", "brand:wikidata": "Q5005929", "brand:wikipedia": "en:C-Town Supermarkets", "name": "C‑Town", "shop": "supermarket"}, "removeTags": {"brand": "C‑Town Supermarkets", "brand:wikidata": "Q5005929", "brand:wikipedia": "en:C-Town Supermarkets", "name": "C‑Town", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/D'Agostino": {"name": "D'Agostino", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/yourdagnyc/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q20656844"}, "addTags": {"brand": "D'Agostino", "brand:wikidata": "Q20656844", "brand:wikipedia": "en:D'Agostino Supermarkets", "name": "D'Agostino", "shop": "supermarket"}, "removeTags": {"brand": "D'Agostino", "brand:wikidata": "Q20656844", "brand:wikipedia": "en:D'Agostino Supermarkets", "name": "D'Agostino", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/D1": {"name": "D1", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q43403418"}, "addTags": {"brand": "D1", "brand:wikidata": "Q43403418", "brand:wikipedia": "es:Tiendas D1", "name": "D1", "shop": "supermarket"}, "removeTags": {"brand": "D1", "brand:wikidata": "Q43403418", "brand:wikipedia": "es:Tiendas D1", "name": "D1", "shop": "supermarket"}, "countryCodes": ["co"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Dagli'Brugsen": {"name": "Dagli'Brugsen", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q12307017"}, "addTags": {"brand": "Dagli'Brugsen", "brand:wikidata": "Q12307017", "brand:wikipedia": "en:Dagli'Brugsen", "name": "Dagli'Brugsen", "shop": "supermarket"}, "removeTags": {"brand": "Dagli'Brugsen", "brand:wikidata": "Q12307017", "brand:wikipedia": "en:Dagli'Brugsen", "name": "Dagli'Brugsen", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Deen": {"name": "Deen", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q13571727"}, "addTags": {"brand": "Deen", "brand:wikidata": "Q13571727", "brand:wikipedia": "nl:Deen (supermarkt)", "name": "Deen", "shop": "supermarket"}, "removeTags": {"brand": "Deen", "brand:wikidata": "Q13571727", "brand:wikipedia": "nl:Deen (supermarkt)", "name": "Deen", "shop": "supermarket"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Delhaize": {"name": "Delhaize", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1184173"}, "addTags": {"brand": "Delhaize", "brand:wikidata": "Q1184173", "brand:wikipedia": "fr:Delhaize", "name": "Delhaize", "shop": "supermarket"}, "removeTags": {"brand": "Delhaize", "brand:wikidata": "Q1184173", "brand:wikipedia": "fr:Delhaize", "name": "Delhaize", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Delhaize": {"name": "Delhaize", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Delhaize/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1184173"}, "addTags": {"brand": "Delhaize", "brand:wikidata": "Q1184173", "brand:wikipedia": "fr:Delhaize", "name": "Delhaize", "shop": "supermarket"}, "removeTags": {"brand": "Delhaize", "brand:wikidata": "Q1184173", "brand:wikipedia": "fr:Delhaize", "name": "Delhaize", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Delikatesy Centrum": {"name": "Delikatesy Centrum", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q11693824"}, "addTags": {"brand": "Delikatesy Centrum", "brand:wikidata": "Q11693824", "brand:wikipedia": "pl:Delikatesy Centrum", "name": "Delikatesy Centrum", "shop": "supermarket"}, "removeTags": {"brand": "Delikatesy Centrum", "brand:wikidata": "Q11693824", "brand:wikipedia": "pl:Delikatesy Centrum", "name": "Delikatesy Centrum", "shop": "supermarket"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Denner": {"name": "Denner", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDenner%20Logo%202014.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q379911"}, "addTags": {"brand": "Denner", "brand:wikidata": "Q379911", "brand:wikipedia": "en:Denner (supermarkets)", "name": "Denner", "shop": "supermarket"}, "removeTags": {"brand": "Denner", "brand:wikidata": "Q379911", "brand:wikipedia": "en:Denner (supermarkets)", "name": "Denner", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, - "shop/supermarket/Despar": {"name": "Despar", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/753867353469886464/aFA06xb-_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q610492"}, "addTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Despar", "shop": "supermarket"}, "removeTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Despar", "shop": "supermarket"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Denner": {"name": "Denner", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDenner%20Logo%202014.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q379911"}, "addTags": {"brand": "Denner", "brand:wikidata": "Q379911", "brand:wikipedia": "en:Denner (supermarket)", "name": "Denner", "shop": "supermarket"}, "removeTags": {"brand": "Denner", "brand:wikidata": "Q379911", "brand:wikipedia": "en:Denner (supermarket)", "name": "Denner", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Despar": {"name": "Despar", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SPARintheUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q610492"}, "addTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Despar", "shop": "supermarket"}, "removeTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Despar", "shop": "supermarket"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Despensa Familiar": {"name": "Despensa Familiar", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q61994849"}, "addTags": {"brand": "Despensa Familiar", "brand:wikidata": "Q61994849", "name": "Despensa Familiar", "shop": "supermarket"}, "removeTags": {"brand": "Despensa Familiar", "brand:wikidata": "Q61994849", "name": "Despensa Familiar", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, - "shop/supermarket/Dia": {"name": "Dia", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/800711981225410560/cuzfS3Pk_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q925132"}, "addTags": {"brand": "Dia", "brand:wikidata": "Q925132", "brand:wikipedia": "es:Supermercados Dia", "name": "Dia", "shop": "supermarket"}, "removeTags": {"brand": "Dia", "brand:wikidata": "Q925132", "brand:wikipedia": "es:Supermercados Dia", "name": "Dia", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, - "shop/supermarket/Dia Market": {"name": "Dia Market", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/800711981225410560/cuzfS3Pk_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q925132"}, "addTags": {"brand": "Dia Market", "brand:wikidata": "Q925132", "brand:wikipedia": "es:Supermercados Dia", "name": "Dia Market", "shop": "supermarket"}, "removeTags": {"brand": "Dia Market", "brand:wikidata": "Q925132", "brand:wikipedia": "es:Supermercados Dia", "name": "Dia Market", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Dia": {"name": "Dia", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/800711981225410560/cuzfS3Pk_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q925132"}, "addTags": {"brand": "Dia", "brand:wikidata": "Q925132", "brand:wikipedia": "es:Supermercados DIA", "name": "Dia", "shop": "supermarket"}, "removeTags": {"brand": "Dia", "brand:wikidata": "Q925132", "brand:wikipedia": "es:Supermercados DIA", "name": "Dia", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Dia Market": {"name": "Dia Market", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/800711981225410560/cuzfS3Pk_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q925132"}, "addTags": {"brand": "Dia Market", "brand:wikidata": "Q925132", "brand:wikipedia": "es:Supermercados DIA", "name": "Dia Market", "shop": "supermarket"}, "removeTags": {"brand": "Dia Market", "brand:wikidata": "Q925132", "brand:wikipedia": "es:Supermercados DIA", "name": "Dia Market", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Dino": {"name": "Dino", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q11694239"}, "addTags": {"brand": "Dino", "brand:wikidata": "Q11694239", "brand:wikipedia": "pl:Dino Polska", "name": "Dino", "shop": "supermarket"}, "removeTags": {"brand": "Dino", "brand:wikidata": "Q11694239", "brand:wikipedia": "pl:Dino Polska", "name": "Dino", "shop": "supermarket"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Dirk van den Broek": {"name": "Dirk van den Broek", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDirk%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q17502722"}, "addTags": {"brand": "Dirk van den Broek", "brand:wikidata": "Q17502722", "brand:wikipedia": "en:Dirk (supermarket)", "name": "Dirk van den Broek", "shop": "supermarket"}, "removeTags": {"brand": "Dirk van den Broek", "brand:wikidata": "Q17502722", "brand:wikipedia": "en:Dirk (supermarket)", "name": "Dirk van den Broek", "shop": "supermarket"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Disco (Argentina)": {"name": "Disco (Argentina)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/DiscoArgentina/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q6135978"}, "addTags": {"brand": "Disco", "brand:wikidata": "Q6135978", "brand:wikipedia": "es:Disco (supermercado de Argentina)", "name": "Disco", "shop": "supermarket"}, "removeTags": {"brand": "Disco", "brand:wikidata": "Q6135978", "brand:wikipedia": "es:Disco (supermercado de Argentina)", "name": "Disco", "shop": "supermarket"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Disco (Uruguay)": {"name": "Disco (Uruguay)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/discouruguay/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q16636819"}, "addTags": {"brand": "Disco", "brand:wikidata": "Q16636819", "brand:wikipedia": "es:Disco (supermercado de Uruguay)", "name": "Disco", "shop": "supermarket"}, "removeTags": {"brand": "Disco", "brand:wikidata": "Q16636819", "brand:wikipedia": "es:Disco (supermercado de Uruguay)", "name": "Disco", "shop": "supermarket"}, "countryCodes": ["uy"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Diska": {"name": "Diska", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/diskamarkt/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q62390177"}, "addTags": {"brand": "Diska", "brand:wikidata": "Q62390177", "name": "Diska", "operator": "Edeka", "operator:wikidata": "Q701755", "operator:wikipedia": "en:Edeka", "shop": "supermarket"}, "removeTags": {"brand": "Diska", "brand:wikidata": "Q62390177", "name": "Diska", "operator": "Edeka", "operator:wikidata": "Q701755", "operator:wikipedia": "en:Edeka", "shop": "supermarket"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Dunnes Stores": {"name": "Dunnes Stores", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/839449686054432768/Udhd8DjK_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1266203"}, "addTags": {"brand": "Dunnes Stores", "brand:wikidata": "Q1266203", "brand:wikipedia": "en:Dunnes Stores", "name": "Dunnes Stores", "shop": "supermarket"}, "removeTags": {"brand": "Dunnes Stores", "brand:wikidata": "Q1266203", "brand:wikipedia": "en:Dunnes Stores", "name": "Dunnes Stores", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/E-Center": {"name": "E-Center", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Edeka.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q701755"}, "addTags": {"brand": "E-Center", "brand:wikidata": "Q701755", "brand:wikipedia": "en:Edeka", "name": "E-Center", "shop": "supermarket"}, "removeTags": {"brand": "E-Center", "brand:wikidata": "Q701755", "brand:wikipedia": "en:Edeka", "name": "E-Center", "shop": "supermarket"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/supermarket/E. Leclerc": {"name": "E. Leclerc", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FE.Leclerc%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1273376"}, "addTags": {"brand": "E. Leclerc", "brand:wikidata": "Q1273376", "brand:wikipedia": "en:E.Leclerc", "name": "E. Leclerc", "shop": "supermarket"}, "removeTags": {"brand": "E. Leclerc", "brand:wikidata": "Q1273376", "brand:wikipedia": "en:E.Leclerc", "name": "E. Leclerc", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/E. Leclerc Drive": {"name": "E. Leclerc Drive", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FE.Leclerc%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1273376"}, "addTags": {"brand": "E. Leclerc Drive", "brand:wikidata": "Q1273376", "brand:wikipedia": "fr:E.Leclerc", "name": "E. Leclerc Drive", "operator": "E.Leclerc", "operator:wikidata": "Q1273376", "operator:wikipedia": "en:E.Leclerc", "shop": "supermarket"}, "removeTags": {"brand": "E. Leclerc Drive", "brand:wikidata": "Q1273376", "brand:wikipedia": "fr:E.Leclerc", "name": "E. Leclerc Drive", "operator": "E.Leclerc", "operator:wikidata": "Q1273376", "operator:wikipedia": "en:E.Leclerc", "shop": "supermarket"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/supermarket/EMTÉ": {"name": "EMTÉ", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FEmte%20logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3119122"}, "addTags": {"brand": "EMTÉ", "brand:wikidata": "Q3119122", "brand:wikipedia": "en:EMTÉ", "name": "EMTÉ", "shop": "supermarket"}, "removeTags": {"brand": "EMTÉ", "brand:wikidata": "Q3119122", "brand:wikipedia": "en:EMTÉ", "name": "EMTÉ", "shop": "supermarket"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, @@ -3570,7 +3769,7 @@ "shop/supermarket/Ekono": {"name": "Ekono", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogotipo%20Ekono.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2842729"}, "addTags": {"brand": "Ekono", "brand:wikidata": "Q2842729", "brand:wikipedia": "es:Ekono", "name": "Ekono", "shop": "supermarket"}, "removeTags": {"brand": "Ekono", "brand:wikidata": "Q2842729", "brand:wikipedia": "es:Ekono", "name": "Ekono", "shop": "supermarket"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Eroski": {"name": "Eroski", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1361349"}, "addTags": {"brand": "Eroski", "brand:wikidata": "Q1361349", "brand:wikipedia": "en:Eroski", "name": "Eroski", "shop": "supermarket"}, "removeTags": {"brand": "Eroski", "brand:wikidata": "Q1361349", "brand:wikipedia": "en:Eroski", "name": "Eroski", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Esselunga": {"name": "Esselunga", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Esselunga/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1059636"}, "addTags": {"brand": "Esselunga", "brand:wikidata": "Q1059636", "brand:wikipedia": "en:Esselunga", "name": "Esselunga", "shop": "supermarket"}, "removeTags": {"brand": "Esselunga", "brand:wikidata": "Q1059636", "brand:wikipedia": "en:Esselunga", "name": "Esselunga", "shop": "supermarket"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/EuroSpin": {"name": "EuroSpin", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/EurospinItaliaSpa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1374674"}, "addTags": {"brand": "EuroSpin", "brand:wikidata": "Q1374674", "brand:wikipedia": "it:EuroSpin", "name": "EuroSpin", "shop": "supermarket"}, "removeTags": {"brand": "EuroSpin", "brand:wikidata": "Q1374674", "brand:wikipedia": "it:EuroSpin", "name": "EuroSpin", "shop": "supermarket"}, "countryCodes": ["it", "si"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/EuroSpin": {"name": "EuroSpin", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/EurospinItaliaSpa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1374674"}, "addTags": {"brand": "EuroSpin", "brand:wikidata": "Q1374674", "brand:wikipedia": "it:Eurospin", "name": "EuroSpin", "shop": "supermarket"}, "removeTags": {"brand": "EuroSpin", "brand:wikidata": "Q1374674", "brand:wikipedia": "it:Eurospin", "name": "EuroSpin", "shop": "supermarket"}, "countryCodes": ["it", "si"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Eurospar": {"name": "Eurospar", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q12309283"}, "addTags": {"brand": "Eurospar", "brand:wikidata": "Q12309283", "brand:wikipedia": "da:Eurospar", "name": "Eurospar", "shop": "supermarket"}, "removeTags": {"brand": "Eurospar", "brand:wikidata": "Q12309283", "brand:wikipedia": "da:Eurospar", "name": "Eurospar", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Extra": {"name": "Extra", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FExtra%20mobillogo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q11964085"}, "addTags": {"brand": "Extra", "brand:wikidata": "Q11964085", "brand:wikipedia": "no:Extra (Coop)", "name": "Extra", "shop": "supermarket"}, "removeTags": {"brand": "Extra", "brand:wikidata": "Q11964085", "brand:wikipedia": "no:Extra (Coop)", "name": "Extra", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Famila": {"name": "Famila", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1395108"}, "addTags": {"brand": "Famila", "brand:wikidata": "Q1395108", "brand:wikipedia": "de:Famila", "name": "Famila", "shop": "supermarket"}, "removeTags": {"brand": "Famila", "brand:wikidata": "Q1395108", "brand:wikipedia": "de:Famila", "name": "Famila", "shop": "supermarket"}, "countryCodes": ["de", "it"], "matchScore": 2, "suggestion": true}, @@ -3585,21 +3784,23 @@ "shop/supermarket/FoodLand (US)": {"name": "FoodLand (US)", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5465271"}, "addTags": {"brand": "FoodLand", "brand:wikidata": "Q5465271", "brand:wikipedia": "en:FoodLand", "name": "FoodLand", "shop": "supermarket"}, "removeTags": {"brand": "FoodLand", "brand:wikidata": "Q5465271", "brand:wikipedia": "en:FoodLand", "name": "FoodLand", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/FoodMaxx": {"name": "FoodMaxx", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q61894844"}, "addTags": {"brand": "FoodMaxx", "brand:wikidata": "Q61894844", "name": "FoodMaxx", "operator:wikidata": "Q7428009", "operator:wikipedia": "en:Save Mart Supermarkets", "shop": "supermarket"}, "removeTags": {"brand": "FoodMaxx", "brand:wikidata": "Q61894844", "name": "FoodMaxx", "operator:wikidata": "Q7428009", "operator:wikipedia": "en:Save Mart Supermarkets", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Foodland (Australia)": {"name": "Foodland (Australia)", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5465555"}, "addTags": {"brand": "Foodland", "brand:wikidata": "Q5465555", "brand:wikipedia": "en:Foodland (South Australia)", "name": "Foodland", "shop": "supermarket"}, "removeTags": {"brand": "Foodland", "brand:wikidata": "Q5465555", "brand:wikipedia": "en:Foodland (South Australia)", "name": "Foodland", "shop": "supermarket"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Foodland (Canada)": {"name": "Foodland (Canada)", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5465554"}, "addTags": {"brand": "Foodland", "brand:wikidata": "Q5465554", "brand:wikipedia": "en:Foodland", "name": "Foodland", "shop": "supermarket"}, "removeTags": {"brand": "Foodland", "brand:wikidata": "Q5465554", "brand:wikipedia": "en:Foodland", "name": "Foodland", "shop": "supermarket"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Foodland (Canada)": {"name": "Foodland (Canada)", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5465554"}, "addTags": {"brand": "Foodland", "brand:wikidata": "Q5465554", "brand:wikipedia": "en:Foodland (Canada)", "name": "Foodland", "shop": "supermarket"}, "removeTags": {"brand": "Foodland", "brand:wikidata": "Q5465554", "brand:wikipedia": "en:Foodland (Canada)", "name": "Foodland", "shop": "supermarket"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Foodland (Hawaii)": {"name": "Foodland (Hawaii)", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5465560"}, "addTags": {"brand": "Foodland", "brand:wikidata": "Q5465560", "brand:wikipedia": "en:Foodland Hawaii", "name": "Foodland", "shop": "supermarket"}, "removeTags": {"brand": "Foodland", "brand:wikidata": "Q5465560", "brand:wikipedia": "en:Foodland Hawaii", "name": "Foodland", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Foodworks": {"name": "Foodworks", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFoodworks-Logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5465579"}, "addTags": {"brand": "Foodworks", "brand:wikidata": "Q5465579", "brand:wikipedia": "en:Foodworks", "name": "Foodworks", "shop": "supermarket"}, "removeTags": {"brand": "Foodworks", "brand:wikidata": "Q5465579", "brand:wikipedia": "en:Foodworks", "name": "Foodworks", "shop": "supermarket"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Franprix": {"name": "Franprix", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/franprix/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2420096"}, "addTags": {"brand": "Franprix", "brand:wikidata": "Q2420096", "brand:wikipedia": "fr:Franprix", "name": "Franprix", "shop": "supermarket"}, "removeTags": {"brand": "Franprix", "brand:wikidata": "Q2420096", "brand:wikipedia": "fr:Franprix", "name": "Franprix", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Fred Meyer": {"name": "Fred Meyer", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFred%20Meyer%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5495932"}, "addTags": {"brand": "Fred Meyer", "brand:wikidata": "Q5495932", "brand:wikipedia": "en:Fred Meyer", "name": "Fred Meyer", "shop": "supermarket"}, "removeTags": {"brand": "Fred Meyer", "brand:wikidata": "Q5495932", "brand:wikipedia": "en:Fred Meyer", "name": "Fred Meyer", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/FreshCo": {"name": "FreshCo", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFreshCo%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5502915"}, "addTags": {"brand": "FreshCo", "brand:wikidata": "Q5502915", "brand:wikipedia": "en:FreshCo", "name": "FreshCo", "shop": "supermarket"}, "removeTags": {"brand": "FreshCo", "brand:wikidata": "Q5502915", "brand:wikipedia": "en:FreshCo", "name": "FreshCo", "shop": "supermarket"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Froiz": {"name": "Froiz", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/158051157541336/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q17070775"}, "addTags": {"brand": "Froiz", "brand:wikidata": "Q17070775", "brand:wikipedia": "en:Froiz", "name": "Froiz", "shop": "supermarket"}, "removeTags": {"brand": "Froiz", "brand:wikidata": "Q17070775", "brand:wikipedia": "en:Froiz", "name": "Froiz", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Føtex": {"name": "Føtex", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FF%C3%B8tex%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1480395"}, "addTags": {"brand": "Føtex", "brand:wikidata": "Q1480395", "brand:wikipedia": "en:Føtex", "name": "Føtex", "shop": "supermarket"}, "removeTags": {"brand": "Føtex", "brand:wikidata": "Q1480395", "brand:wikipedia": "en:Føtex", "name": "Føtex", "shop": "supermarket"}, "countryCodes": ["dk"], "matchScore": 2, "suggestion": true}, "shop/supermarket/G20": {"name": "G20", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3504731"}, "addTags": {"brand": "G20", "brand:wikidata": "Q3504731", "brand:wikipedia": "fr:Supermarchés G20", "name": "G20", "shop": "supermarket"}, "removeTags": {"brand": "G20", "brand:wikidata": "Q3504731", "brand:wikipedia": "fr:Supermarchés G20", "name": "G20", "shop": "supermarket"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/GBarbosa": {"name": "GBarbosa", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/oficialgbarbosa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q10287817"}, "addTags": {"brand": "GBarbosa", "brand:website": "http://www.gbarbosa.com.br", "brand:wikidata": "Q10287817", "brand:wikipedia": "pt:G Barbosa", "name": "GBarbosa", "shop": "supermarket"}, "removeTags": {"brand": "GBarbosa", "brand:website": "http://www.gbarbosa.com.br", "brand:wikidata": "Q10287817", "brand:wikipedia": "pt:G Barbosa", "name": "GBarbosa", "shop": "supermarket"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/GBarbosa": {"name": "GBarbosa", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/oficialgbarbosa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q10287817"}, "addTags": {"brand": "GBarbosa", "brand:website": "http://www.gbarbosa.com.br", "brand:wikidata": "Q10287817", "brand:wikipedia": "pt:GBarbosa", "name": "GBarbosa", "shop": "supermarket"}, "removeTags": {"brand": "GBarbosa", "brand:website": "http://www.gbarbosa.com.br", "brand:wikidata": "Q10287817", "brand:wikipedia": "pt:GBarbosa", "name": "GBarbosa", "shop": "supermarket"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Gadis": {"name": "Gadis", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q12389151"}, "addTags": {"brand": "Gadis", "brand:wikidata": "Q12389151", "brand:wikipedia": "gl:Gadisa", "name": "Gadis", "shop": "supermarket"}, "removeTags": {"brand": "Gadis", "brand:wikidata": "Q12389151", "brand:wikipedia": "gl:Gadisa", "name": "Gadis", "shop": "supermarket"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Giant Eagle": {"name": "Giant Eagle", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGiantEagle.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1522721"}, "addTags": {"brand": "Giant Eagle", "brand:wikidata": "Q1522721", "brand:wikipedia": "en:Giant Eagle", "name": "Giant Eagle", "shop": "supermarket"}, "removeTags": {"brand": "Giant Eagle", "brand:wikidata": "Q1522721", "brand:wikipedia": "en:Giant Eagle", "name": "Giant Eagle", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Globus": {"name": "Globus", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGlobus%20SB-Warenhaus%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q457503"}, "addTags": {"brand": "Globus", "brand:wikidata": "Q457503", "brand:wikipedia": "en:Globus (hypermarket)", "name": "Globus", "shop": "supermarket"}, "removeTags": {"brand": "Globus", "brand:wikidata": "Q457503", "brand:wikipedia": "en:Globus (hypermarket)", "name": "Globus", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Globus": {"name": "Globus", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Globus.de/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q457503"}, "addTags": {"brand": "Globus", "brand:wikidata": "Q457503", "brand:wikipedia": "en:Globus (hypermarket)", "name": "Globus", "shop": "supermarket"}, "removeTags": {"brand": "Globus", "brand:wikidata": "Q457503", "brand:wikipedia": "en:Globus (hypermarket)", "name": "Globus", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Gordon Food Service": {"name": "Gordon Food Service", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/GordonFoodService/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1538006"}, "addTags": {"brand": "Gordon Food Service", "brand:wikidata": "Q1538006", "brand:wikipedia": "en:Gordon Food Service", "name": "Gordon Food Service", "shop": "supermarket"}, "removeTags": {"brand": "Gordon Food Service", "brand:wikidata": "Q1538006", "brand:wikipedia": "en:Gordon Food Service", "name": "Gordon Food Service", "shop": "supermarket"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Grand Frais": {"name": "Grand Frais", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3114675"}, "addTags": {"brand": "Grand Frais", "brand:wikidata": "Q3114675", "brand:wikipedia": "fr:Grand Frais", "name": "Grand Frais", "shop": "supermarket"}, "removeTags": {"brand": "Grand Frais", "brand:wikidata": "Q3114675", "brand:wikipedia": "fr:Grand Frais", "name": "Grand Frais", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Grocery Outlet": {"name": "Grocery Outlet", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGroceryoutlet%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5609934"}, "addTags": {"brand": "Grocery Outlet", "brand:wikidata": "Q5609934", "brand:wikipedia": "en:Grocery Outlet", "name": "Grocery Outlet", "shop": "supermarket"}, "removeTags": {"brand": "Grocery Outlet", "brand:wikidata": "Q5609934", "brand:wikipedia": "en:Grocery Outlet", "name": "Grocery Outlet", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, - "shop/supermarket/Groszek": {"name": "Groszek", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBrd%C3%B3w%20-%20sklep2.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q9280965"}, "addTags": {"brand": "Groszek", "brand:wikidata": "Q9280965", "brand:wikipedia": "pl:Groszek (sieć sklepów)", "name": "Groszek", "shop": "supermarket"}, "removeTags": {"brand": "Groszek", "brand:wikidata": "Q9280965", "brand:wikipedia": "pl:Groszek (sieć sklepów)", "name": "Groszek", "shop": "supermarket"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Groszek": {"name": "Groszek", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Sklepy.Groszek/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q9280965"}, "addTags": {"brand": "Groszek", "brand:wikidata": "Q9280965", "brand:wikipedia": "pl:Groszek (sieć sklepów)", "name": "Groszek", "shop": "supermarket"}, "removeTags": {"brand": "Groszek", "brand:wikidata": "Q9280965", "brand:wikipedia": "pl:Groszek (sieć sklepów)", "name": "Groszek", "shop": "supermarket"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Géant Casino": {"name": "Géant Casino", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20geant%202015%20rvb.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1380537"}, "addTags": {"brand": "Géant Casino", "brand:wikidata": "Q1380537", "brand:wikipedia": "en:Géant Casino", "name": "Géant Casino", "shop": "supermarket"}, "removeTags": {"brand": "Géant Casino", "brand:wikidata": "Q1380537", "brand:wikipedia": "en:Géant Casino", "name": "Géant Casino", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/H Mart": {"name": "H Mart", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5636306"}, "addTags": {"brand": "H Mart", "brand:wikidata": "Q5636306", "brand:wikipedia": "en:H Mart", "name": "H Mart", "shop": "supermarket"}, "removeTags": {"brand": "H Mart", "brand:wikidata": "Q5636306", "brand:wikipedia": "en:H Mart", "name": "H Mart", "shop": "supermarket"}, "countryCodes": ["ca", "gb", "us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/H-E-B": {"name": "H-E-B", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20of%20the%20HEB%20Grocery%20Company%2C%20LP.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q830621"}, "addTags": {"brand": "H-E-B", "brand:wikidata": "Q830621", "brand:wikipedia": "en:H-E-B", "name": "H-E-B", "shop": "supermarket"}, "removeTags": {"brand": "H-E-B", "brand:wikidata": "Q830621", "brand:wikipedia": "en:H-E-B", "name": "H-E-B", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, @@ -3609,9 +3810,9 @@ "shop/supermarket/Hemköp": {"name": "Hemköp", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q10521746"}, "addTags": {"brand": "Hemköp", "brand:wikidata": "Q10521746", "brand:wikipedia": "sv:Hemköp", "name": "Hemköp", "shop": "supermarket"}, "removeTags": {"brand": "Hemköp", "brand:wikidata": "Q10521746", "brand:wikipedia": "sv:Hemköp", "name": "Hemköp", "shop": "supermarket"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Heron Foods": {"name": "Heron Foods", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/589070024230440960/ZBf4EE6m_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5743472"}, "addTags": {"brand": "Heron Foods", "brand:wikidata": "Q5743472", "brand:wikipedia": "en:Heron Foods", "name": "Heron Foods", "shop": "supermarket"}, "removeTags": {"brand": "Heron Foods", "brand:wikidata": "Q5743472", "brand:wikipedia": "en:Heron Foods", "name": "Heron Foods", "shop": "supermarket"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Hofer": {"name": "Hofer", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/HOFER.AT/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q15815751"}, "addTags": {"brand": "Hofer", "brand:wikidata": "Q15815751", "brand:wikipedia": "de:Hofer KG", "name": "Hofer", "shop": "supermarket"}, "removeTags": {"brand": "Hofer", "brand:wikidata": "Q15815751", "brand:wikipedia": "de:Hofer KG", "name": "Hofer", "shop": "supermarket"}, "countryCodes": ["at", "si"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Hoogvliet": {"name": "Hoogvliet", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/aib/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1642179"}, "addTags": {"brand": "Hoogvliet", "brand:wikidata": "Q1642179", "brand:wikipedia": "nl:Hoogvliet (supermarkt)", "name": "Hoogvliet", "shop": "supermarket"}, "removeTags": {"brand": "Hoogvliet", "brand:wikidata": "Q1642179", "brand:wikipedia": "nl:Hoogvliet (supermarkt)", "name": "Hoogvliet", "shop": "supermarket"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Hoogvliet": {"name": "Hoogvliet", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2770647"}, "addTags": {"brand": "Hoogvliet", "brand:wikidata": "Q2770647", "brand:wikipedia": "nl:Hoogvliet (supermarkt)", "name": "Hoogvliet", "shop": "supermarket"}, "removeTags": {"brand": "Hoogvliet", "brand:wikidata": "Q2770647", "brand:wikipedia": "nl:Hoogvliet (supermarkt)", "name": "Hoogvliet", "shop": "supermarket"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Hy-Vee": {"name": "Hy-Vee", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/HyVee/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1639719"}, "addTags": {"brand": "Hy-Vee", "brand:wikidata": "Q1639719", "brand:wikipedia": "en:Hy-Vee", "name": "Hy-Vee", "shop": "supermarket"}, "removeTags": {"brand": "Hy-Vee", "brand:wikidata": "Q1639719", "brand:wikipedia": "en:Hy-Vee", "name": "Hy-Vee", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Hyper U": {"name": "Hyper U", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2529029"}, "addTags": {"brand": "Hyper U", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Hyper U", "shop": "supermarket"}, "removeTags": {"brand": "Hyper U", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Hyper U", "shop": "supermarket"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Hyper U": {"name": "Hyper U", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ULesCommercants/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2529029"}, "addTags": {"brand": "Hyper U", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Hyper U", "shop": "supermarket"}, "removeTags": {"brand": "Hyper U", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Hyper U", "shop": "supermarket"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/supermarket/ICA": {"name": "ICA", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1663776"}, "addTags": {"brand": "ICA", "brand:wikidata": "Q1663776", "brand:wikipedia": "sv:Ica", "name": "ICA", "shop": "supermarket"}, "removeTags": {"brand": "ICA", "brand:wikidata": "Q1663776", "brand:wikipedia": "sv:Ica", "name": "ICA", "shop": "supermarket"}, "countryCodes": ["no", "se"], "matchScore": 2, "suggestion": true}, "shop/supermarket/ICA Kvantum": {"name": "ICA Kvantum", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1663776"}, "addTags": {"brand": "ICA Kvantum", "brand:wikidata": "Q1663776", "brand:wikipedia": "sv:Ica", "name": "ICA Kvantum", "shop": "supermarket"}, "removeTags": {"brand": "ICA Kvantum", "brand:wikidata": "Q1663776", "brand:wikipedia": "sv:Ica", "name": "ICA Kvantum", "shop": "supermarket"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, "shop/supermarket/ICA Maxi": {"name": "ICA Maxi", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1663776"}, "addTags": {"brand": "ICA Maxi", "brand:wikidata": "Q1663776", "brand:wikipedia": "sv:Ica", "name": "ICA Maxi", "shop": "supermarket"}, "removeTags": {"brand": "ICA Maxi", "brand:wikidata": "Q1663776", "brand:wikipedia": "sv:Ica", "name": "ICA Maxi", "shop": "supermarket"}, "countryCodes": ["no", "se"], "matchScore": 2, "suggestion": true}, @@ -3619,8 +3820,8 @@ "shop/supermarket/IGA": {"name": "IGA", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FIGA%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3146662"}, "addTags": {"brand": "IGA", "brand:wikidata": "Q3146662", "brand:wikipedia": "en:IGA (supermarkets)", "name": "IGA", "shop": "supermarket"}, "removeTags": {"brand": "IGA", "brand:wikidata": "Q3146662", "brand:wikipedia": "en:IGA (supermarkets)", "name": "IGA", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Iceland": {"name": "Iceland", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/998234843736457216/AqtyY1Rc_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q721810"}, "addTags": {"brand": "Iceland", "brand:wikidata": "Q721810", "brand:wikipedia": "en:Iceland (supermarket)", "name": "Iceland", "shop": "supermarket"}, "removeTags": {"brand": "Iceland", "brand:wikidata": "Q721810", "brand:wikipedia": "en:Iceland (supermarket)", "name": "Iceland", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Ingles": {"name": "Ingles", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FIngles%20Markets%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q6032595"}, "addTags": {"brand": "Ingles", "brand:wikidata": "Q6032595", "brand:wikipedia": "en:Ingles", "name": "Ingles", "shop": "supermarket"}, "removeTags": {"brand": "Ingles", "brand:wikidata": "Q6032595", "brand:wikipedia": "en:Ingles", "name": "Ingles", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Intermarché": {"name": "Intermarché", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3153200"}, "addTags": {"brand": "Intermarché", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché", "shop": "supermarket"}, "removeTags": {"brand": "Intermarché", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, - "shop/supermarket/Intermarché Super": {"name": "Intermarché Super", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3153200"}, "addTags": {"brand": "Intermarché Super", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché Super", "shop": "supermarket"}, "removeTags": {"brand": "Intermarché Super", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché Super", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Intermarché": {"name": "Intermarché", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/tousuniscontrelaviechere/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3153200"}, "addTags": {"brand": "Intermarché", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché", "shop": "supermarket"}, "removeTags": {"brand": "Intermarché", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Intermarché Super": {"name": "Intermarché Super", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/tousuniscontrelaviechere/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3153200"}, "addTags": {"brand": "Intermarché Super", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché Super", "shop": "supermarket"}, "removeTags": {"brand": "Intermarché Super", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché Super", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Interspar": {"name": "Interspar", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q15820339"}, "addTags": {"brand": "Interspar", "brand:wikidata": "Q15820339", "brand:wikipedia": "de:Interspar (Österreich)", "name": "Interspar", "shop": "supermarket"}, "removeTags": {"brand": "Interspar", "brand:wikidata": "Q15820339", "brand:wikipedia": "de:Interspar (Österreich)", "name": "Interspar", "shop": "supermarket"}, "countryCodes": ["at"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Irma": {"name": "Irma", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q797150"}, "addTags": {"brand": "Irma", "brand:wikidata": "Q797150", "brand:wikipedia": "en:Irma (supermarket)", "name": "Irma", "shop": "supermarket"}, "removeTags": {"brand": "Irma", "brand:wikidata": "Q797150", "brand:wikipedia": "en:Irma (supermarket)", "name": "Irma", "shop": "supermarket"}, "countryCodes": ["dk"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Jan Linders": {"name": "Jan Linders", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2200982"}, "addTags": {"brand": "Jan Linders", "brand:wikidata": "Q2200982", "brand:wikipedia": "nl:Jan Linders Supermarkten", "name": "Jan Linders", "shop": "supermarket"}, "removeTags": {"brand": "Jan Linders", "brand:wikidata": "Q2200982", "brand:wikipedia": "nl:Jan Linders Supermarkten", "name": "Jan Linders", "shop": "supermarket"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, @@ -3634,10 +3835,11 @@ "shop/supermarket/Kroger": {"name": "Kroger", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Kroger/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q153417"}, "addTags": {"brand": "Kroger", "brand:wikidata": "Q153417", "brand:wikipedia": "en:Kroger", "name": "Kroger", "shop": "supermarket"}, "removeTags": {"brand": "Kroger", "brand:wikidata": "Q153417", "brand:wikipedia": "en:Kroger", "name": "Kroger", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Kvickly": {"name": "Kvickly", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7061148"}, "addTags": {"brand": "Kvickly", "brand:wikidata": "Q7061148", "brand:wikipedia": "en:Kvickly", "name": "Kvickly", "shop": "supermarket"}, "removeTags": {"brand": "Kvickly", "brand:wikidata": "Q7061148", "brand:wikipedia": "en:Kvickly", "name": "Kvickly", "shop": "supermarket"}, "countryCodes": ["dk"], "matchScore": 2, "suggestion": true}, "shop/supermarket/La Anónima": {"name": "La Anónima", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSupermercados%20La%20anonima%20logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q6135985"}, "addTags": {"brand": "La Anónima", "brand:wikidata": "Q6135985", "brand:wikipedia": "es:La Anónima", "name": "La Anónima", "shop": "supermarket"}, "removeTags": {"brand": "La Anónima", "brand:wikidata": "Q6135985", "brand:wikipedia": "es:La Anónima", "name": "La Anónima", "shop": "supermarket"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/La Plaza de DIA": {"name": "La Plaza de DIA", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q58904673"}, "addTags": {"brand": "La Plaza de DIA", "brand:wikidata": "Q58904673", "name": "La Plaza de DIA", "operator:wikidata": "Q925132", "operator:wikipedia": "es:Supermercados Dia", "shop": "supermarket"}, "removeTags": {"brand": "La Plaza de DIA", "brand:wikidata": "Q58904673", "name": "La Plaza de DIA", "operator:wikidata": "Q925132", "operator:wikipedia": "es:Supermercados Dia", "shop": "supermarket"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/La Plaza de DIA": {"name": "La Plaza de DIA", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q58904673"}, "addTags": {"brand": "La Plaza de DIA", "brand:wikidata": "Q58904673", "name": "La Plaza de DIA", "operator:wikidata": "Q925132", "operator:wikipedia": "es:Supermercados DIA", "shop": "supermarket"}, "removeTags": {"brand": "La Plaza de DIA", "brand:wikidata": "Q58904673", "name": "La Plaza de DIA", "operator:wikidata": "Q925132", "operator:wikipedia": "es:Supermercados DIA", "shop": "supermarket"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, "shop/supermarket/La Vie Claire": {"name": "La Vie Claire", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3213589"}, "addTags": {"brand": "La Vie Claire", "brand:wikidata": "Q3213589", "brand:wikipedia": "en:La Vie Claire (company)", "name": "La Vie Claire", "shop": "supermarket"}, "removeTags": {"brand": "La Vie Claire", "brand:wikidata": "Q3213589", "brand:wikipedia": "en:La Vie Claire (company)", "name": "La Vie Claire", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Landi": {"name": "Landi", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLandi.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1803010"}, "addTags": {"brand": "Landi", "brand:wikidata": "Q1803010", "brand:wikipedia": "en:Landi (Unternehmen)", "name": "Landi", "shop": "supermarket"}, "removeTags": {"brand": "Landi", "brand:wikidata": "Q1803010", "brand:wikipedia": "en:Landi (Unternehmen)", "name": "Landi", "shop": "supermarket"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Leader Price": {"name": "Leader Price", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLeader%20Price%202010%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2181426"}, "addTags": {"brand": "Leader Price", "brand:wikidata": "Q2181426", "brand:wikipedia": "en:Leader Price", "name": "Leader Price", "shop": "supermarket"}, "removeTags": {"brand": "Leader Price", "brand:wikidata": "Q2181426", "brand:wikipedia": "en:Leader Price", "name": "Leader Price", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Lewiatan": {"name": "Lewiatan", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/psh.lewiatan/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q11755396"}, "addTags": {"brand": "Lewiatan", "brand:wikidata": "Q11755396", "brand:wikipedia": "pl:Lewiatan (sieć handlowa)", "name": "Lewiatan", "shop": "supermarket"}, "removeTags": {"brand": "Lewiatan", "brand:wikidata": "Q11755396", "brand:wikipedia": "pl:Lewiatan (sieć handlowa)", "name": "Lewiatan", "shop": "supermarket"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Lider": {"name": "Lider", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FL%C3%ADder%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q6711261"}, "addTags": {"brand": "Lider", "brand:wikidata": "Q6711261", "brand:wikipedia": "es:Líder (supermercado)", "name": "Lider", "shop": "supermarket"}, "removeTags": {"brand": "Lider", "brand:wikidata": "Q6711261", "brand:wikipedia": "es:Líder (supermercado)", "name": "Lider", "shop": "supermarket"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Lider Express": {"name": "Lider Express", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FL%C3%ADder%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q6711261"}, "addTags": {"brand": "Lider", "brand:wikidata": "Q6711261", "brand:wikipedia": "es:Líder (supermercado)", "name": "Lider Express", "shop": "supermarket"}, "removeTags": {"brand": "Lider", "brand:wikidata": "Q6711261", "brand:wikipedia": "es:Líder (supermercado)", "name": "Lider Express", "shop": "supermarket"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Lidl": {"name": "Lidl", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/lidl/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q151954"}, "addTags": {"brand": "Lidl", "brand:wikidata": "Q151954", "brand:wikipedia": "en:Lidl", "name": "Lidl", "shop": "supermarket"}, "removeTags": {"brand": "Lidl", "brand:wikidata": "Q151954", "brand:wikipedia": "en:Lidl", "name": "Lidl", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, @@ -3655,12 +3857,12 @@ "shop/supermarket/Marktkauf": {"name": "Marktkauf", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMarktkauf.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1533254"}, "addTags": {"brand": "Marktkauf", "brand:wikidata": "Q1533254", "brand:wikipedia": "de:Marktkauf Holding", "name": "Marktkauf", "shop": "supermarket"}, "removeTags": {"brand": "Marktkauf", "brand:wikidata": "Q1533254", "brand:wikipedia": "de:Marktkauf Holding", "name": "Marktkauf", "shop": "supermarket"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Martin's Super Markets": {"name": "Martin's Super Markets", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q6774803"}, "addTags": {"brand": "Martin's Super Markets", "brand:wikidata": "Q6774803", "brand:wikipedia": "en:Martin's Super Markets", "name": "Martin's Super Markets", "shop": "supermarket"}, "removeTags": {"brand": "Martin's Super Markets", "brand:wikidata": "Q6774803", "brand:wikipedia": "en:Martin's Super Markets", "name": "Martin's Super Markets", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Match": {"name": "Match", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q513977"}, "addTags": {"brand": "Match", "brand:wikidata": "Q513977", "brand:wikipedia": "en:Match (supermarket)", "name": "Match", "shop": "supermarket"}, "removeTags": {"brand": "Match", "brand:wikidata": "Q513977", "brand:wikipedia": "en:Match (supermarket)", "name": "Match", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, - "shop/supermarket/Maxi Dia": {"name": "Maxi Dia", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/800711981225410560/cuzfS3Pk_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q925132"}, "addTags": {"brand": "Maxi Dia", "brand:wikidata": "Q925132", "brand:wikipedia": "es:Supermercados Dia", "name": "Maxi Dia", "shop": "supermarket"}, "removeTags": {"brand": "Maxi Dia", "brand:wikidata": "Q925132", "brand:wikipedia": "es:Supermercados Dia", "name": "Maxi Dia", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Maxi Dia": {"name": "Maxi Dia", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/800711981225410560/cuzfS3Pk_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q925132"}, "addTags": {"brand": "Maxi Dia", "brand:wikidata": "Q925132", "brand:wikipedia": "es:Supermercados DIA", "name": "Maxi Dia", "shop": "supermarket"}, "removeTags": {"brand": "Maxi Dia", "brand:wikidata": "Q925132", "brand:wikipedia": "es:Supermercados DIA", "name": "Maxi Dia", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Maxima X": {"name": "Maxima X", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMaxima%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1881222"}, "addTags": {"brand": "Maxima X", "brand:wikidata": "Q1881222", "brand:wikipedia": "en:Maxima Group", "name": "Maxima X", "shop": "supermarket"}, "removeTags": {"brand": "Maxima X", "brand:wikidata": "Q1881222", "brand:wikipedia": "en:Maxima Group", "name": "Maxima X", "shop": "supermarket"}, "countryCodes": ["bg", "ee", "lt", "lv", "pl"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Maxima XX": {"name": "Maxima XX", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMaxima%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1881222"}, "addTags": {"brand": "Maxima XX", "brand:wikidata": "Q1881222", "brand:wikipedia": "en:Maxima Group", "name": "Maxima XX", "shop": "supermarket"}, "removeTags": {"brand": "Maxima XX", "brand:wikidata": "Q1881222", "brand:wikipedia": "en:Maxima Group", "name": "Maxima XX", "shop": "supermarket"}, "countryCodes": ["bg", "ee", "lt", "lv", "pl"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Maxima XXX": {"name": "Maxima XXX", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMaxima%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1881222"}, "addTags": {"brand": "Maxima XXX", "brand:wikidata": "Q1881222", "brand:wikipedia": "en:Maxima Group", "name": "Maxima XXX", "shop": "supermarket"}, "removeTags": {"brand": "Maxima XXX", "brand:wikidata": "Q1881222", "brand:wikipedia": "en:Maxima Group", "name": "Maxima XXX", "shop": "supermarket"}, "countryCodes": ["bg", "ee", "lt", "lv", "pl"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Maxi (Canada)": {"name": "Maxi (Canada)", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3302441"}, "addTags": {"brand": "Maxi", "brand:wikidata": "Q3302441", "brand:wikipedia": "en:Maxi (Canadian supermarket)", "name": "Maxi", "shop": "supermarket"}, "removeTags": {"brand": "Maxi", "brand:wikidata": "Q3302441", "brand:wikipedia": "en:Maxi (Canadian supermarket)", "name": "Maxi", "shop": "supermarket"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Maxi (Serbia)": {"name": "Maxi (Serbia)", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q6795490"}, "addTags": {"brand": "Maxi", "brand:wikidata": "Q6795490", "brand:wikipedia": "en:Maxi (supermarkets)", "name": "Maxi", "shop": "supermarket"}, "removeTags": {"brand": "Maxi", "brand:wikidata": "Q6795490", "brand:wikipedia": "en:Maxi (supermarkets)", "name": "Maxi", "shop": "supermarket"}, "countryCodes": ["rs"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Maxi (Serbia)": {"name": "Maxi (Serbia)", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q6795490"}, "addTags": {"brand": "Maxi", "brand:wikidata": "Q6795490", "brand:wikipedia": "en:Maxi (Serbian supermarket)", "name": "Maxi", "shop": "supermarket"}, "removeTags": {"brand": "Maxi", "brand:wikidata": "Q6795490", "brand:wikipedia": "en:Maxi (Serbian supermarket)", "name": "Maxi", "shop": "supermarket"}, "countryCodes": ["rs"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Mega Image": {"name": "Mega Image", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q6808085"}, "addTags": {"brand": "Mega Image", "brand:wikidata": "Q6808085", "brand:wikipedia": "en:Mega Image", "name": "Mega Image", "shop": "supermarket"}, "removeTags": {"brand": "Mega Image", "brand:wikidata": "Q6808085", "brand:wikipedia": "en:Mega Image", "name": "Mega Image", "shop": "supermarket"}, "countryCodes": ["ro"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Mego": {"name": "Mego", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/mego.lv/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q16363314"}, "addTags": {"brand": "Mego", "brand:wikidata": "Q16363314", "brand:wikipedia": "lv:Mego", "name": "Mego", "shop": "supermarket"}, "removeTags": {"brand": "Mego", "brand:wikidata": "Q16363314", "brand:wikipedia": "lv:Mego", "name": "Mego", "shop": "supermarket"}, "countryCodes": ["lv"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Meijer": {"name": "Meijer", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMeijer%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1917753"}, "addTags": {"brand": "Meijer", "brand:wikidata": "Q1917753", "brand:wikipedia": "en:Meijer", "name": "Meijer", "shop": "supermarket"}, "removeTags": {"brand": "Meijer", "brand:wikidata": "Q1917753", "brand:wikipedia": "en:Meijer", "name": "Meijer", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, @@ -3676,7 +3878,7 @@ "shop/supermarket/Monoprix": {"name": "Monoprix", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMonoprix%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3321241"}, "addTags": {"brand": "Monoprix", "brand:wikidata": "Q3321241", "brand:wikipedia": "en:Monoprix", "name": "Monoprix", "shop": "supermarket"}, "removeTags": {"brand": "Monoprix", "brand:wikidata": "Q3321241", "brand:wikipedia": "en:Monoprix", "name": "Monoprix", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/More": {"name": "More", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q6910891"}, "addTags": {"brand": "More", "brand:wikidata": "Q6910891", "brand:wikipedia": "en:More (store)", "name": "More", "shop": "supermarket"}, "removeTags": {"brand": "More", "brand:wikidata": "Q6910891", "brand:wikipedia": "en:More (store)", "name": "More", "shop": "supermarket"}, "countryCodes": ["in"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Morrisons": {"name": "Morrisons", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1069883324204769280/cbPhjnwc_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q922344"}, "addTags": {"brand": "Morrisons", "brand:wikidata": "Q922344", "brand:wikipedia": "en:Morrisons", "name": "Morrisons", "shop": "supermarket"}, "removeTags": {"brand": "Morrisons", "brand:wikidata": "Q922344", "brand:wikipedia": "en:Morrisons", "name": "Morrisons", "shop": "supermarket"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Nah & Frisch": {"name": "Nah & Frisch", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1963643"}, "addTags": {"brand": "Nah & Frisch", "brand:wikidata": "Q1963643", "brand:wikipedia": "de:Nah & Frisch", "name": "Nah & Frisch", "shop": "supermarket"}, "removeTags": {"brand": "Nah & Frisch", "brand:wikidata": "Q1963643", "brand:wikipedia": "de:Nah & Frisch", "name": "Nah & Frisch", "shop": "supermarket"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Nah & Frisch": {"name": "Nah & Frisch", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1963643"}, "addTags": {"brand": "Nah & Frisch", "brand:wikidata": "Q1963643", "brand:wikipedia": "de:Nah & Frisch", "name": "Nah & Frisch", "shop": "supermarket"}, "removeTags": {"brand": "Nah & Frisch", "brand:wikidata": "Q1963643", "brand:wikipedia": "de:Nah & Frisch", "name": "Nah & Frisch", "shop": "supermarket"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Nahkauf": {"name": "Nahkauf", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q57515238"}, "addTags": {"brand": "Nahkauf", "brand:wikidata": "Q57515238", "name": "Nahkauf", "shop": "supermarket"}, "removeTags": {"brand": "Nahkauf", "brand:wikidata": "Q57515238", "name": "Nahkauf", "shop": "supermarket"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Naturalia": {"name": "Naturalia", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FNaturalia%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3337081"}, "addTags": {"brand": "Naturalia", "brand:wikidata": "Q3337081", "brand:wikipedia": "fr:Naturalia", "name": "Naturalia", "shop": "supermarket"}, "removeTags": {"brand": "Naturalia", "brand:wikidata": "Q3337081", "brand:wikipedia": "fr:Naturalia", "name": "Naturalia", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Netto": {"name": "Netto", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGda%C5%84sk%20ulica%20D%C4%85browszczak%C3%B3w%2020%20(logo%20Netto).JPG&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q552652"}, "addTags": {"brand": "Netto", "brand:wikidata": "Q552652", "brand:wikipedia": "en:Netto (store)", "name": "Netto", "shop": "supermarket"}, "removeTags": {"brand": "Netto", "brand:wikidata": "Q552652", "brand:wikipedia": "en:Netto (store)", "name": "Netto", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, @@ -3686,7 +3888,7 @@ "shop/supermarket/Norfa XL": {"name": "Norfa XL", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FNorfa%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1998983"}, "addTags": {"brand": "Norfa XL", "brand:wikidata": "Q1998983", "brand:wikipedia": "lt:Norfa", "name": "Norfa XL", "shop": "supermarket"}, "removeTags": {"brand": "Norfa XL", "brand:wikidata": "Q1998983", "brand:wikipedia": "lt:Norfa", "name": "Norfa XL", "shop": "supermarket"}, "countryCodes": ["lt"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Norma": {"name": "Norma", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FNorma%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q450180"}, "addTags": {"brand": "Norma", "brand:wikidata": "Q450180", "brand:wikipedia": "de:Norma (Handelskette)", "name": "Norma", "shop": "supermarket"}, "removeTags": {"brand": "Norma", "brand:wikidata": "Q450180", "brand:wikipedia": "de:Norma (Handelskette)", "name": "Norma", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Okay": {"name": "Okay", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2159701"}, "addTags": {"brand": "Okay", "brand:wikidata": "Q2159701", "brand:wikipedia": "fr:OKay", "name": "Okay", "shop": "supermarket"}, "removeTags": {"brand": "Okay", "brand:wikidata": "Q2159701", "brand:wikipedia": "fr:OKay", "name": "Okay", "shop": "supermarket"}, "countryCodes": ["be"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Olímpica": {"name": "Olímpica", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q24749847"}, "addTags": {"brand": "Olímpica", "brand:wikidata": "Q24749847", "brand:wikipedia": "es:Olímpica (supermercado)", "name": "Olímpica", "shop": "supermarket"}, "removeTags": {"brand": "Olímpica", "brand:wikidata": "Q24749847", "brand:wikipedia": "es:Olímpica (supermercado)", "name": "Olímpica", "shop": "supermarket"}, "countryCodes": ["co"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Olímpica": {"name": "Olímpica", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q24749847"}, "addTags": {"brand": "Olímpica", "brand:wikidata": "Q24749847", "brand:wikipedia": "es:Grupo Empresarial Olímpica", "name": "Olímpica", "shop": "supermarket"}, "removeTags": {"brand": "Olímpica", "brand:wikidata": "Q24749847", "brand:wikipedia": "es:Grupo Empresarial Olímpica", "name": "Olímpica", "shop": "supermarket"}, "countryCodes": ["co"], "matchScore": 2, "suggestion": true}, "shop/supermarket/PLUS": {"name": "PLUS", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1978981"}, "addTags": {"brand": "PLUS", "brand:wikidata": "Q1978981", "brand:wikipedia": "nl:PLUS (Nederlandse supermarkt)", "name": "PLUS", "shop": "supermarket"}, "removeTags": {"brand": "PLUS", "brand:wikidata": "Q1978981", "brand:wikipedia": "nl:PLUS (Nederlandse supermarkt)", "name": "PLUS", "shop": "supermarket"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, "shop/supermarket/POLOmarket": {"name": "POLOmarket", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q11821937"}, "addTags": {"brand": "POLOmarket", "brand:wikidata": "Q11821937", "brand:wikipedia": "pl:Polomarket", "name": "POLOmarket", "shop": "supermarket"}, "removeTags": {"brand": "POLOmarket", "brand:wikidata": "Q11821937", "brand:wikipedia": "pl:Polomarket", "name": "POLOmarket", "shop": "supermarket"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Palí": {"name": "Palí", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20de%20Walmart%20Mexico%20y%20Centroamerica.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1064887"}, "addTags": {"brand": "Palí", "brand:wikidata": "Q1064887", "brand:wikipedia": "es:Walmart de México y Centroamérica", "name": "Palí", "shop": "supermarket"}, "removeTags": {"brand": "Palí", "brand:wikidata": "Q1064887", "brand:wikipedia": "es:Walmart de México y Centroamérica", "name": "Palí", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, @@ -3706,7 +3908,6 @@ "shop/supermarket/Prix": {"name": "Prix", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/prixqualitaitaliana/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q61994819"}, "addTags": {"brand": "Prix", "brand:wikidata": "Q61994819", "name": "Prix", "shop": "supermarket"}, "removeTags": {"brand": "Prix", "brand:wikidata": "Q61994819", "name": "Prix", "shop": "supermarket"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Profi": {"name": "Profi", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q956664"}, "addTags": {"brand": "Profi", "brand:wikidata": "Q956664", "brand:wikipedia": "en:Profi", "name": "Profi", "shop": "supermarket"}, "removeTags": {"brand": "Profi", "brand:wikidata": "Q956664", "brand:wikipedia": "en:Profi", "name": "Profi", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Provigo": {"name": "Provigo", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3408306"}, "addTags": {"brand": "Provigo", "brand:wikidata": "Q3408306", "brand:wikipedia": "en:Provigo", "name": "Provigo", "shop": "supermarket"}, "removeTags": {"brand": "Provigo", "brand:wikidata": "Q3408306", "brand:wikipedia": "en:Provigo", "name": "Provigo", "shop": "supermarket"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Proxi": {"name": "Proxi", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3408522"}, "addTags": {"brand": "Proxi", "brand:wikidata": "Q3408522", "brand:wikipedia": "fr:Proxi", "name": "Proxi", "shop": "supermarket"}, "removeTags": {"brand": "Proxi", "brand:wikidata": "Q3408522", "brand:wikipedia": "fr:Proxi", "name": "Proxi", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Proxy Delhaize": {"name": "Proxy Delhaize", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q14903417"}, "addTags": {"brand": "Proxy Delhaize", "brand:wikidata": "Q14903417", "brand:wikipedia": "en:Delhaize Group", "name": "Proxy Delhaize", "shop": "supermarket"}, "removeTags": {"brand": "Proxy Delhaize", "brand:wikidata": "Q14903417", "brand:wikipedia": "en:Delhaize Group", "name": "Proxy Delhaize", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Publix": {"name": "Publix", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/publix/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q672170"}, "addTags": {"brand": "Publix", "brand:wikidata": "Q672170", "brand:wikipedia": "en:Publix", "name": "Publix", "shop": "supermarket"}, "removeTags": {"brand": "Publix", "brand:wikidata": "Q672170", "brand:wikipedia": "en:Publix", "name": "Publix", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Punto Simply": {"name": "Punto Simply", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3484790"}, "addTags": {"brand": "Punto Simply", "brand:wikidata": "Q3484790", "brand:wikipedia": "it:Simply Market", "name": "Punto Simply", "shop": "supermarket"}, "removeTags": {"brand": "Punto Simply", "brand:wikidata": "Q3484790", "brand:wikipedia": "it:Simply Market", "name": "Punto Simply", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, @@ -3717,7 +3918,7 @@ "shop/supermarket/Ralphs": {"name": "Ralphs", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/829113387929972737/Ve6U9Jd9_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3929820"}, "addTags": {"brand": "Ralphs", "brand:wikidata": "Q3929820", "brand:wikipedia": "en:Ralphs", "name": "Ralphs", "shop": "supermarket"}, "removeTags": {"brand": "Ralphs", "brand:wikidata": "Q3929820", "brand:wikipedia": "en:Ralphs", "name": "Ralphs", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Real": {"name": "Real", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/real/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q698473"}, "addTags": {"brand": "Real", "brand:wikidata": "Q698473", "brand:wikipedia": "en:Real (hypermarket)", "name": "Real", "shop": "supermarket"}, "removeTags": {"brand": "Real", "brand:wikidata": "Q698473", "brand:wikipedia": "en:Real (hypermarket)", "name": "Real", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Real Canadian Superstore": {"name": "Real Canadian Superstore", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7300856"}, "addTags": {"brand": "Real Canadian Superstore", "brand:wikidata": "Q7300856", "brand:wikipedia": "en:Real Canadian Superstore", "name": "Real Canadian Superstore", "shop": "supermarket"}, "removeTags": {"brand": "Real Canadian Superstore", "brand:wikidata": "Q7300856", "brand:wikipedia": "en:Real Canadian Superstore", "name": "Real Canadian Superstore", "shop": "supermarket"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Redner's Markets": {"name": "Redner's Markets", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7306166"}, "addTags": {"brand": "Redner's Markets", "brand:wikidata": "Q7306166", "brand:wikipedia": "en:Redner's Markets", "name": "Redner's Markets", "shop": "supermarket"}, "removeTags": {"brand": "Redner's Markets", "brand:wikidata": "Q7306166", "brand:wikipedia": "en:Redner's Markets", "name": "Redner's Markets", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Redner's": {"name": "Redner's", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7306166"}, "addTags": {"brand": "Redner's", "brand:wikidata": "Q7306166", "brand:wikipedia": "en:Redner's Markets", "name": "Redner's", "shop": "supermarket"}, "removeTags": {"brand": "Redner's", "brand:wikidata": "Q7306166", "brand:wikipedia": "en:Redner's Markets", "name": "Redner's", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Reliance Fresh": {"name": "Reliance Fresh", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7311014"}, "addTags": {"brand": "Reliance Fresh", "brand:wikidata": "Q7311014", "brand:wikipedia": "en:Reliance Fresh", "name": "Reliance Fresh", "shop": "supermarket"}, "removeTags": {"brand": "Reliance Fresh", "brand:wikidata": "Q7311014", "brand:wikipedia": "en:Reliance Fresh", "name": "Reliance Fresh", "shop": "supermarket"}, "countryCodes": ["in"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Rema 1000": {"name": "Rema 1000", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FREMA1000.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q28459"}, "addTags": {"brand": "Rema 1000", "brand:wikidata": "Q28459", "brand:wikipedia": "en:REMA 1000", "name": "Rema 1000", "shop": "supermarket"}, "removeTags": {"brand": "Rema 1000", "brand:wikidata": "Q28459", "brand:wikipedia": "en:REMA 1000", "name": "Rema 1000", "shop": "supermarket"}, "countryCodes": ["dk", "no"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Rewe": {"name": "Rewe", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Rewe/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q16968817"}, "addTags": {"brand": "Rewe", "brand:wikidata": "Q16968817", "brand:wikipedia": "en:REWE", "name": "Rewe", "shop": "supermarket"}, "removeTags": {"brand": "Rewe", "brand:wikidata": "Q16968817", "brand:wikipedia": "en:REWE", "name": "Rewe", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, @@ -3732,36 +3933,36 @@ "shop/supermarket/Schnucks": {"name": "Schnucks", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7431920"}, "addTags": {"brand": "Schnucks", "brand:wikidata": "Q7431920", "brand:wikipedia": "en:Schnucks", "name": "Schnucks", "shop": "supermarket"}, "removeTags": {"brand": "Schnucks", "brand:wikidata": "Q7431920", "brand:wikipedia": "en:Schnucks", "name": "Schnucks", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Shaw's": {"name": "Shaw's", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q578387"}, "addTags": {"brand": "Shaw's", "brand:wikidata": "Q578387", "brand:wikipedia": "en:Shaw's and Star Market", "name": "Shaw's", "shop": "supermarket"}, "removeTags": {"brand": "Shaw's", "brand:wikidata": "Q578387", "brand:wikipedia": "en:Shaw's and Star Market", "name": "Shaw's", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/ShopRite": {"name": "ShopRite", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/466948326969987072/F66s5ItP_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7501097"}, "addTags": {"brand": "ShopRite", "brand:wikidata": "Q7501097", "brand:wikipedia": "en:ShopRite (United States)", "name": "ShopRite", "shop": "supermarket"}, "removeTags": {"brand": "ShopRite", "brand:wikidata": "Q7501097", "brand:wikipedia": "en:ShopRite (United States)", "name": "ShopRite", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Shoprite": {"name": "Shoprite", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1857639"}, "addTags": {"brand": "Shoprite", "brand:wikidata": "Q1857639", "brand:wikipedia": "en:ShopRite (South Africa)", "name": "Shoprite", "shop": "supermarket"}, "removeTags": {"brand": "Shoprite", "brand:wikidata": "Q1857639", "brand:wikipedia": "en:ShopRite (South Africa)", "name": "Shoprite", "shop": "supermarket"}, "countryCodes": ["ao", "bw", "cd", "gh", "ls", "mg", "mu", "mw", "mz", "na", "ng", "sz", "ug", "za", "zm"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Shoprite (Isle of Man)": {"name": "Shoprite (Isle of Man)", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7501242"}, "addTags": {"brand": "Shoprite", "brand:wikidata": "Q7501242", "brand:wikipedia": "en:Shoprite (Isle of Man)", "name": "Shoprite", "shop": "supermarket"}, "removeTags": {"brand": "Shoprite", "brand:wikidata": "Q7501242", "brand:wikipedia": "en:Shoprite (Isle of Man)", "name": "Shoprite", "shop": "supermarket"}, "countryCodes": ["im"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Shoprite (global)": {"name": "Shoprite (global)", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1857639"}, "addTags": {"brand": "Shoprite", "brand:wikidata": "Q1857639", "brand:wikipedia": "en:Shoprite (South Africa)", "name": "Shoprite", "shop": "supermarket"}, "removeTags": {"brand": "Shoprite", "brand:wikidata": "Q1857639", "brand:wikipedia": "en:Shoprite (South Africa)", "name": "Shoprite", "shop": "supermarket"}, "countryCodes": ["ao", "bw", "cd", "gh", "ls", "mg", "mu", "mw", "mz", "na", "ng", "sz", "ug", "za", "zm"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Sigma": {"name": "Sigma", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3977979"}, "addTags": {"brand": "Sigma", "brand:wikidata": "Q3977979", "brand:wikipedia": "it:Supermercati Sigma", "name": "Sigma", "shop": "supermarket"}, "removeTags": {"brand": "Sigma", "brand:wikidata": "Q3977979", "brand:wikipedia": "it:Supermercati Sigma", "name": "Sigma", "shop": "supermarket"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Simply Market": {"name": "Simply Market", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3484790"}, "addTags": {"brand": "Simply Market", "brand:wikidata": "Q3484790", "brand:wikipedia": "en:Simply Market", "name": "Simply Market", "shop": "supermarket"}, "removeTags": {"brand": "Simply Market", "brand:wikidata": "Q3484790", "brand:wikipedia": "en:Simply Market", "name": "Simply Market", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Sky": {"name": "Sky", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCoop%20Deutschland%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1129779"}, "addTags": {"brand": "Sky", "brand:wikidata": "Q1129779", "brand:wikipedia": "de:Coop eG", "name": "Sky", "shop": "supermarket"}, "removeTags": {"brand": "Sky", "brand:wikidata": "Q1129779", "brand:wikipedia": "de:Coop eG", "name": "Sky", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Smith's": {"name": "Smith's", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSmithsFoodDrug-logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7544856"}, "addTags": {"brand": "Smith's", "brand:wikidata": "Q7544856", "brand:wikipedia": "en:Smith's Food and Drug", "name": "Smith's", "shop": "supermarket"}, "removeTags": {"brand": "Smith's", "brand:wikidata": "Q7544856", "brand:wikipedia": "en:Smith's Food and Drug", "name": "Smith's", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Sobeys": {"name": "Sobeys", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1143340"}, "addTags": {"brand": "Sobeys", "brand:wikidata": "Q1143340", "brand:wikipedia": "en:Sobeys", "name": "Sobeys", "shop": "supermarket"}, "removeTags": {"brand": "Sobeys", "brand:wikidata": "Q1143340", "brand:wikipedia": "en:Sobeys", "name": "Sobeys", "shop": "supermarket"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Soriana": {"name": "Soriana", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogoSoriana.PNG&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q735562"}, "addTags": {"brand": "Soriana", "brand:wikidata": "Q735562", "brand:wikipedia": "en:Soriana", "name": "Soriana", "shop": "supermarket"}, "removeTags": {"brand": "Soriana", "brand:wikidata": "Q735562", "brand:wikipedia": "en:Soriana", "name": "Soriana", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, - "shop/supermarket/Spar": {"name": "Spar", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/753867353469886464/aFA06xb-_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q610492"}, "addTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar", "shop": "supermarket"}, "removeTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, - "shop/supermarket/Społem": {"name": "Społem", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q11826043"}, "addTags": {"brand": "Społem", "brand:wikidata": "Q11826043", "brand:wikipedia": "pl:Powszechna Spółdzielnia Spożywców „Społem”", "name": "Społem", "shop": "supermarket"}, "removeTags": {"brand": "Społem", "brand:wikidata": "Q11826043", "brand:wikipedia": "pl:Powszechna Spółdzielnia Spożywców „Społem”", "name": "Społem", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Spar": {"name": "Spar", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SPARintheUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q610492"}, "addTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar", "shop": "supermarket"}, "removeTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Społem": {"name": "Społem", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SpolemSpoldzielczoscSpozywcow/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q11826043"}, "addTags": {"brand": "Społem", "brand:wikidata": "Q11826043", "brand:wikipedia": "pl:Powszechna Spółdzielnia Spożywców „Społem”", "name": "Społem", "shop": "supermarket"}, "removeTags": {"brand": "Społem", "brand:wikidata": "Q11826043", "brand:wikipedia": "pl:Powszechna Spółdzielnia Spożywców „Społem”", "name": "Społem", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Sprouts Farmers Market": {"name": "Sprouts Farmers Market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SproutsFarmersMarket/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7581369"}, "addTags": {"brand": "Sprouts Farmers Market", "brand:wikidata": "Q7581369", "brand:wikipedia": "en:Sprouts Farmers Market", "name": "Sprouts Farmers Market", "shop": "supermarket"}, "removeTags": {"brand": "Sprouts Farmers Market", "brand:wikidata": "Q7581369", "brand:wikipedia": "en:Sprouts Farmers Market", "name": "Sprouts Farmers Market", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Stater Bros.": {"name": "Stater Bros.", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7604016"}, "addTags": {"brand": "Stater Bros.", "brand:wikidata": "Q7604016", "brand:wikipedia": "en:Stater Bros.", "name": "Stater Bros.", "shop": "supermarket"}, "removeTags": {"brand": "Stater Bros.", "brand:wikidata": "Q7604016", "brand:wikipedia": "en:Stater Bros.", "name": "Stater Bros.", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Stokrotka": {"name": "Stokrotka", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q9345945"}, "addTags": {"brand": "Stokrotka", "brand:wikidata": "Q9345945", "brand:wikipedia": "en:Stokrotka", "name": "Stokrotka", "shop": "supermarket"}, "removeTags": {"brand": "Stokrotka", "brand:wikidata": "Q9345945", "brand:wikipedia": "en:Stokrotka", "name": "Stokrotka", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Stop & Shop": {"name": "Stop & Shop", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3658429"}, "addTags": {"brand": "Stop & Shop", "brand:wikidata": "Q3658429", "brand:wikipedia": "en:Stop & Shop", "name": "Stop & Shop", "shop": "supermarket"}, "removeTags": {"brand": "Stop & Shop", "brand:wikidata": "Q3658429", "brand:wikipedia": "en:Stop & Shop", "name": "Stop & Shop", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Suma": {"name": "Suma", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q58012362"}, "addTags": {"brand": "Suma", "brand:wikidata": "Q58012362", "name": "Suma", "shop": "supermarket"}, "removeTags": {"brand": "Suma", "brand:wikidata": "Q58012362", "name": "Suma", "shop": "supermarket"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Super 1 Foods": {"name": "Super 1 Foods", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7642102"}, "addTags": {"brand": "Super 1 Foods", "brand:wikidata": "Q7642102", "name": "Super 1 Foods", "operator:wikidata": "Q7642102", "operator:wikipedia": "en:Brookshire Grocery Company", "shop": "supermarket"}, "removeTags": {"brand": "Super 1 Foods", "brand:wikidata": "Q7642102", "name": "Super 1 Foods", "operator:wikidata": "Q7642102", "operator:wikipedia": "en:Brookshire Grocery Company", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Super C": {"name": "Super C", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3504127"}, "addTags": {"brand": "Super C", "brand:wikidata": "Q3504127", "brand:wikipedia": "en:Super C (supermarket)", "name": "Super C", "shop": "supermarket"}, "removeTags": {"brand": "Super C", "brand:wikidata": "Q3504127", "brand:wikipedia": "en:Super C (supermarket)", "name": "Super C", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, - "shop/supermarket/Super One Foods": {"name": "Super One Foods", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q17108733"}, "addTags": {"brand": "Super One Foods", "brand:wikidata": "Q17108733", "brand:wikipedia": "en:Super One Foods", "name": "Super One Foods", "shop": "supermarket"}, "removeTags": {"brand": "Super One Foods", "brand:wikidata": "Q17108733", "brand:wikipedia": "en:Super One Foods", "name": "Super One Foods", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, - "shop/supermarket/Super U": {"name": "Super U", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2529029"}, "addTags": {"brand": "Super U", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Super U", "shop": "supermarket"}, "removeTags": {"brand": "Super U", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Super U", "shop": "supermarket"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Super One Foods": {"name": "Super One Foods", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q17108733"}, "addTags": {"brand": "Super One Foods", "brand:wikidata": "Q17108733", "brand:wikipedia": "en:Super One Foods", "name": "Super One Foods", "shop": "supermarket"}, "removeTags": {"brand": "Super One Foods", "brand:wikidata": "Q17108733", "brand:wikipedia": "en:Super One Foods", "name": "Super One Foods", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Super U": {"name": "Super U", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ULesCommercants/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2529029"}, "addTags": {"brand": "Super U", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Super U", "shop": "supermarket"}, "removeTags": {"brand": "Super U", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Super U", "shop": "supermarket"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/supermarket/SuperBrugsen": {"name": "SuperBrugsen", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSB%20logo%20rektangel%20RGB%20standard.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q12337746"}, "addTags": {"brand": "SuperBrugsen", "brand:wikidata": "Q12337746", "brand:wikipedia": "en:SuperBrugsen", "name": "SuperBrugsen", "shop": "supermarket"}, "removeTags": {"brand": "SuperBrugsen", "brand:wikidata": "Q12337746", "brand:wikipedia": "en:SuperBrugsen", "name": "SuperBrugsen", "shop": "supermarket"}, "countryCodes": ["dk"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/SuperValu": {"name": "SuperValu", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7642081"}, "addTags": {"brand": "SuperValu", "brand:wikidata": "Q7642081", "brand:wikipedia": "en:SuperValu (Ireland)`", "name": "SuperValu", "shop": "supermarket"}, "removeTags": {"brand": "SuperValu", "brand:wikidata": "Q7642081", "brand:wikipedia": "en:SuperValu (Ireland)`", "name": "SuperValu", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/SuperValu": {"name": "SuperValu", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7642081"}, "addTags": {"brand": "SuperValu", "brand:wikidata": "Q7642081", "brand:wikipedia": "en:SuperValu (Ireland)", "name": "SuperValu", "shop": "supermarket"}, "removeTags": {"brand": "SuperValu", "brand:wikidata": "Q7642081", "brand:wikipedia": "en:SuperValu (Ireland)", "name": "SuperValu", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Superama": {"name": "Superama", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q6135762"}, "addTags": {"brand": "Superama", "brand:wikidata": "Q6135762", "brand:wikipedia": "es:Superama", "name": "Superama", "shop": "supermarket"}, "removeTags": {"brand": "Superama", "brand:wikidata": "Q6135762", "brand:wikipedia": "es:Superama", "name": "Superama", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Supercor": {"name": "Supercor", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q6135841"}, "addTags": {"brand": "Supercor", "brand:wikidata": "Q6135841", "brand:wikipedia": "es:Supercor", "name": "Supercor", "shop": "supermarket"}, "removeTags": {"brand": "Supercor", "brand:wikidata": "Q6135841", "brand:wikipedia": "es:Supercor", "name": "Supercor", "shop": "supermarket"}, "countryCodes": ["es", "pt"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Supersol": {"name": "Supersol", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SupersolSupermercados/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q62073427"}, "addTags": {"brand": "Supersol", "brand:wikidata": "Q62073427", "name": "Supersol", "shop": "supermarket"}, "removeTags": {"brand": "Supersol", "brand:wikidata": "Q62073427", "name": "Supersol", "shop": "supermarket"}, "countryCodes": ["ar", "es", "ma", "uy"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Superspar": {"name": "Superspar", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/753867353469886464/aFA06xb-_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q610492"}, "addTags": {"brand": "Superspar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Superspar", "shop": "supermarket"}, "removeTags": {"brand": "Superspar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Superspar", "shop": "supermarket"}, "countryCodes": ["es", "za"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Superspar": {"name": "Superspar", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SPARintheUK/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q610492"}, "addTags": {"brand": "Superspar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Superspar", "shop": "supermarket"}, "removeTags": {"brand": "Superspar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Superspar", "shop": "supermarket"}, "countryCodes": ["es", "za"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Tegut": {"name": "Tegut", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTegut%E2%80%A6.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1547993"}, "addTags": {"brand": "Tegut", "brand:wikidata": "Q1547993", "brand:wikipedia": "en:Tegut", "name": "Tegut", "shop": "supermarket"}, "removeTags": {"brand": "Tegut", "brand:wikidata": "Q1547993", "brand:wikipedia": "en:Tegut", "name": "Tegut", "shop": "supermarket"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Tesco": {"name": "Tesco", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1083750510895742976/qXusMdTt_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q487494"}, "addTags": {"brand": "Tesco", "brand:wikidata": "Q487494", "brand:wikipedia": "en:Tesco", "name": "Tesco", "shop": "supermarket"}, "removeTags": {"brand": "Tesco", "brand:wikidata": "Q487494", "brand:wikipedia": "en:Tesco", "name": "Tesco", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, - "shop/supermarket/Tesco Express": {"name": "Tesco Express", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1083750510895742976/qXusMdTt_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q487494"}, "addTags": {"brand": "Tesco Express", "brand:wikidata": "Q487494", "brand:wikipedia": "en:Tesco", "name": "Tesco Express", "shop": "supermarket"}, "removeTags": {"brand": "Tesco Express", "brand:wikidata": "Q487494", "brand:wikipedia": "en:Tesco", "name": "Tesco Express", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Tesco": {"name": "Tesco", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/tesco/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q487494"}, "addTags": {"brand": "Tesco", "brand:wikidata": "Q487494", "brand:wikipedia": "en:Tesco", "name": "Tesco", "shop": "supermarket"}, "removeTags": {"brand": "Tesco", "brand:wikidata": "Q487494", "brand:wikipedia": "en:Tesco", "name": "Tesco", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Tesco Express": {"name": "Tesco Express", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/tesco/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q487494"}, "addTags": {"brand": "Tesco Express", "brand:wikidata": "Q487494", "brand:wikipedia": "en:Tesco", "name": "Tesco Express", "shop": "supermarket"}, "removeTags": {"brand": "Tesco Express", "brand:wikidata": "Q487494", "brand:wikipedia": "en:Tesco", "name": "Tesco Express", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Tesco Extra": {"name": "Tesco Extra", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q25172225"}, "addTags": {"brand": "Tesco Extra", "brand:wikidata": "Q25172225", "brand:wikipedia": "en:Tesco Extra", "name": "Tesco Extra", "shop": "supermarket"}, "removeTags": {"brand": "Tesco Extra", "brand:wikidata": "Q25172225", "brand:wikipedia": "en:Tesco Extra", "name": "Tesco Extra", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Tesco Metro": {"name": "Tesco Metro", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q57551648"}, "addTags": {"brand": "Tesco Metro", "brand:wikidata": "Q57551648", "name": "Tesco Metro", "shop": "supermarket"}, "removeTags": {"brand": "Tesco Metro", "brand:wikidata": "Q57551648", "name": "Tesco Metro", "shop": "supermarket"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/The Co-operative Food": {"name": "The Co-operative Food", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1034360565127409665/V4fCWHgw_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3277439"}, "addTags": {"brand": "The Co-operative Food", "brand:wikidata": "Q3277439", "brand:wikipedia": "en:Co-op Food", "name": "The Co-operative Food", "shop": "supermarket"}, "removeTags": {"brand": "The Co-operative Food", "brand:wikidata": "Q3277439", "brand:wikipedia": "en:Co-op Food", "name": "The Co-operative Food", "shop": "supermarket"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/The Co-operative Food": {"name": "The Co-operative Food", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/coopukfood/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3277439"}, "addTags": {"brand": "The Co-operative Food", "brand:wikidata": "Q3277439", "brand:wikipedia": "en:Co-op Food", "name": "The Co-operative Food", "shop": "supermarket"}, "removeTags": {"brand": "The Co-operative Food", "brand:wikidata": "Q3277439", "brand:wikipedia": "en:Co-op Food", "name": "The Co-operative Food", "shop": "supermarket"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "shop/supermarket/The Fresh Market": {"name": "The Fresh Market", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/791251254337036288/0VUcaeIf_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7735265"}, "addTags": {"brand": "The Fresh Market", "brand:wikidata": "Q7735265", "brand:wikipedia": "en:The Fresh Market", "name": "The Fresh Market", "shop": "supermarket"}, "removeTags": {"brand": "The Fresh Market", "brand:wikidata": "Q7735265", "brand:wikipedia": "en:The Fresh Market", "name": "The Fresh Market", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Todis": {"name": "Todis", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Todis%20lungo%20verde.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3992174"}, "addTags": {"brand": "Todis", "brand:wikidata": "Q3992174", "brand:wikipedia": "it:Todis", "name": "Todis", "shop": "supermarket"}, "removeTags": {"brand": "Todis", "brand:wikidata": "Q3992174", "brand:wikipedia": "it:Todis", "name": "Todis", "shop": "supermarket"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Tommy": {"name": "Tommy", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q12643718"}, "addTags": {"brand": "Tommy", "brand:wikidata": "Q12643718", "brand:wikipedia": "hr:Tommy", "name": "Tommy", "shop": "supermarket"}, "removeTags": {"brand": "Tommy", "brand:wikidata": "Q12643718", "brand:wikipedia": "hr:Tommy", "name": "Tommy", "shop": "supermarket"}, "countryCodes": ["hr"], "matchScore": 2, "suggestion": true}, @@ -3771,15 +3972,15 @@ "shop/supermarket/Trader Joe's": {"name": "Trader Joe's", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTrader%20Joes%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q688825"}, "addTags": {"brand": "Trader Joe's", "brand:wikidata": "Q688825", "brand:wikipedia": "en:Trader Joe's", "name": "Trader Joe's", "shop": "supermarket"}, "removeTags": {"brand": "Trader Joe's", "brand:wikidata": "Q688825", "brand:wikipedia": "en:Trader Joe's", "name": "Trader Joe's", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Treff 3000": {"name": "Treff 3000", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Edeka.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q701755"}, "addTags": {"brand": "Treff 3000", "brand:wikidata": "Q701755", "brand:wikipedia": "de:Edeka", "name": "Treff 3000", "shop": "supermarket"}, "removeTags": {"brand": "Treff 3000", "brand:wikidata": "Q701755", "brand:wikipedia": "de:Edeka", "name": "Treff 3000", "shop": "supermarket"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Tuodì": {"name": "Tuodì", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Dico.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3706995"}, "addTags": {"brand": "Tuodì", "brand:wikidata": "Q3706995", "brand:wikipedia": "it:Tuodì", "name": "Tuodì", "shop": "supermarket"}, "removeTags": {"brand": "Tuodì", "brand:wikidata": "Q3706995", "brand:wikipedia": "it:Tuodì", "name": "Tuodì", "shop": "supermarket"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/U Express": {"name": "U Express", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2529029"}, "addTags": {"brand": "U Express", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "U Express", "shop": "supermarket"}, "removeTags": {"brand": "U Express", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "U Express", "shop": "supermarket"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/U Express": {"name": "U Express", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ULesCommercants/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2529029"}, "addTags": {"brand": "U Express", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "U Express", "shop": "supermarket"}, "removeTags": {"brand": "U Express", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "U Express", "shop": "supermarket"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Unimarc": {"name": "Unimarc", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FUnimarc%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q6156244"}, "addTags": {"brand": "Unimarc", "brand:wikidata": "Q6156244", "brand:wikipedia": "es:Unimarc", "name": "Unimarc", "shop": "supermarket"}, "removeTags": {"brand": "Unimarc", "brand:wikidata": "Q6156244", "brand:wikipedia": "es:Unimarc", "name": "Unimarc", "shop": "supermarket"}, "countryCodes": ["cl"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Unimarkt": {"name": "Unimarkt", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FUnimarktLogoNeu.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1169599"}, "addTags": {"brand": "Unimarkt", "brand:wikidata": "Q1169599", "brand:wikipedia": "de:Unimarkt", "name": "Unimarkt", "shop": "supermarket"}, "removeTags": {"brand": "Unimarkt", "brand:wikidata": "Q1169599", "brand:wikipedia": "de:Unimarkt", "name": "Unimarkt", "shop": "supermarket"}, "countryCodes": ["at"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Vea": {"name": "Vea", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5858167"}, "addTags": {"brand": "Vea", "brand:wikidata": "Q5858167", "brand:wikipedia": "es:Vea (supermercado)", "name": "Vea", "shop": "supermarket"}, "removeTags": {"brand": "Vea", "brand:wikidata": "Q5858167", "brand:wikipedia": "es:Vea (supermercado)", "name": "Vea", "shop": "supermarket"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/VinMart": {"name": "VinMart", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q60245505"}, "addTags": {"brand": "VinMart", "brand:wikidata": "Q60245505", "brand:wikipedia": "vi:VinMart", "name": "VinMart", "shop": "supermarket"}, "removeTags": {"brand": "VinMart", "brand:wikidata": "Q60245505", "brand:wikipedia": "vi:VinMart", "name": "VinMart", "shop": "supermarket"}, "countryCodes": ["vn"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Volg": {"name": "Volg", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FVolg.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2530746"}, "addTags": {"brand": "Volg", "brand:wikidata": "Q2530746", "brand:wikipedia": "de: Volg", "name": "Volg", "shop": "supermarket"}, "removeTags": {"brand": "Volg", "brand:wikidata": "Q2530746", "brand:wikipedia": "de: Volg", "name": "Volg", "shop": "supermarket"}, "countryCodes": ["ch", "li"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/VinMart": {"name": "VinMart", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/sieuthivinmart/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q60245505"}, "addTags": {"brand": "VinMart", "brand:wikidata": "Q60245505", "brand:wikipedia": "vi:VinMart", "name": "VinMart", "shop": "supermarket"}, "removeTags": {"brand": "VinMart", "brand:wikidata": "Q60245505", "brand:wikipedia": "vi:VinMart", "name": "VinMart", "shop": "supermarket"}, "countryCodes": ["vn"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Volg": {"name": "Volg", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FVolg.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2530746"}, "addTags": {"brand": "Volg", "brand:wikidata": "Q2530746", "brand:wikipedia": "de:Volg", "name": "Volg", "shop": "supermarket"}, "removeTags": {"brand": "Volg", "brand:wikidata": "Q2530746", "brand:wikipedia": "de:Volg", "name": "Volg", "shop": "supermarket"}, "countryCodes": ["ch", "li"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Vomar": {"name": "Vomar", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3202837"}, "addTags": {"brand": "Vomar", "brand:wikidata": "Q3202837", "brand:wikipedia": "nl:Vomar", "name": "Vomar", "shop": "supermarket"}, "removeTags": {"brand": "Vomar", "brand:wikidata": "Q3202837", "brand:wikipedia": "nl:Vomar", "name": "Vomar", "shop": "supermarket"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Vons": {"name": "Vons", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FVons%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7941609"}, "addTags": {"brand": "Vons", "brand:wikidata": "Q7941609", "brand:wikipedia": "en:Vons", "name": "Vons", "shop": "supermarket"}, "removeTags": {"brand": "Vons", "brand:wikidata": "Q7941609", "brand:wikipedia": "en:Vons", "name": "Vons", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Waitrose": {"name": "Waitrose", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1036753874512687104/1ef8sudl_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q771734"}, "addTags": {"brand": "Waitrose", "brand:wikidata": "Q771734", "brand:wikipedia": "en:Waitrose", "name": "Waitrose", "shop": "supermarket"}, "removeTags": {"brand": "Waitrose", "brand:wikidata": "Q771734", "brand:wikipedia": "en:Waitrose", "name": "Waitrose", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Waitrose": {"name": "Waitrose", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1036753874512687104/1ef8sudl_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q771734"}, "addTags": {"brand": "Waitrose", "brand:wikidata": "Q771734", "brand:wikipedia": "en:Waitrose & Partners", "name": "Waitrose", "shop": "supermarket"}, "removeTags": {"brand": "Waitrose", "brand:wikidata": "Q771734", "brand:wikipedia": "en:Waitrose & Partners", "name": "Waitrose", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Walmart Neighborhood Market": {"name": "Walmart Neighborhood Market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/walmart/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q483551"}, "addTags": {"brand": "Walmart", "brand:wikidata": "Q483551", "brand:wikipedia": "en:Walmart", "name": "Walmart Neighborhood Market", "operator": "Walmart", "operator:wikidata": "Q483551", "operator:wikipedia": "en:Walmart", "shop": "supermarket"}, "removeTags": {"brand": "Walmart", "brand:wikidata": "Q483551", "brand:wikipedia": "en:Walmart", "name": "Walmart Neighborhood Market", "operator": "Walmart", "operator:wikidata": "Q483551", "operator:wikipedia": "en:Walmart", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Walmart Supercenter": {"name": "Walmart Supercenter", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/walmart/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q483551"}, "addTags": {"brand": "Walmart", "brand:wikidata": "Q483551", "brand:wikipedia": "en:Walmart", "name": "Walmart Supercenter", "operator": "Walmart", "operator:wikidata": "Q483551", "operator:wikipedia": "en:Walmart", "shop": "supermarket"}, "removeTags": {"brand": "Walmart", "brand:wikidata": "Q483551", "brand:wikipedia": "en:Walmart", "name": "Walmart Supercenter", "operator": "Walmart", "operator:wikidata": "Q483551", "operator:wikipedia": "en:Walmart", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Wasgau": {"name": "Wasgau", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2536857"}, "addTags": {"brand": "Wasgau", "brand:wikidata": "Q2536857", "brand:wikipedia": "de:Wasgau (Unternehmen)", "name": "Wasgau", "shop": "supermarket"}, "removeTags": {"brand": "Wasgau", "brand:wikidata": "Q2536857", "brand:wikipedia": "de:Wasgau (Unternehmen)", "name": "Wasgau", "shop": "supermarket"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, @@ -3791,13 +3992,15 @@ "shop/supermarket/Winn Dixie": {"name": "Winn Dixie", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWinn%20Dixie%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1264366"}, "addTags": {"brand": "Winn Dixie", "brand:wikidata": "Q1264366", "brand:wikipedia": "en:Winn-Dixie", "name": "Winn Dixie", "shop": "supermarket"}, "removeTags": {"brand": "Winn Dixie", "brand:wikidata": "Q1264366", "brand:wikipedia": "en:Winn-Dixie", "name": "Winn Dixie", "shop": "supermarket"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Woolworths": {"name": "Woolworths", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3249145"}, "addTags": {"brand": "Woolworths", "brand:wikidata": "Q3249145", "brand:wikipedia": "en:Woolworths Supermarkets", "name": "Woolworths", "shop": "supermarket"}, "removeTags": {"brand": "Woolworths", "brand:wikidata": "Q3249145", "brand:wikipedia": "en:Woolworths Supermarkets", "name": "Woolworths", "shop": "supermarket"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Your Independent Grocer": {"name": "Your Independent Grocer", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q8058833"}, "addTags": {"brand": "Your Independent Grocer", "brand:wikidata": "Q8058833", "brand:wikipedia": "en:Your Independent Grocer", "name": "Your Independent Grocer", "shop": "supermarket"}, "removeTags": {"brand": "Your Independent Grocer", "brand:wikidata": "Q8058833", "brand:wikipedia": "en:Your Independent Grocer", "name": "Your Independent Grocer", "shop": "supermarket"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/denn's Biomarkt": {"name": "denn's Biomarkt", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDenns%20Biomarkt%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q48883773"}, "addTags": {"brand": "denn's Biomarkt", "brand:wikidata": "Q48883773", "brand:wikipedia": "de:Dennree", "name": "denn's Biomarkt", "shop": "supermarket"}, "removeTags": {"brand": "denn's Biomarkt", "brand:wikidata": "Q48883773", "brand:wikipedia": "de:Dennree", "name": "denn's Biomarkt", "shop": "supermarket"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/denn's Biomarkt": {"name": "denn's Biomarkt", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDenns%20Biomarkt%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q48883773"}, "addTags": {"brand": "denn's Biomarkt", "brand:wikidata": "Q48883773", "brand:wikipedia": "de:Dennree", "name": "denn's Biomarkt", "organic": "only", "shop": "supermarket"}, "removeTags": {"brand": "denn's Biomarkt", "brand:wikidata": "Q48883773", "brand:wikipedia": "de:Dennree", "name": "denn's Biomarkt", "organic": "only", "shop": "supermarket"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, "shop/supermarket/fakta": {"name": "fakta", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3172238"}, "addTags": {"brand": "fakta", "brand:wikidata": "Q3172238", "brand:wikipedia": "en:Fakta", "name": "fakta", "shop": "supermarket"}, "removeTags": {"brand": "fakta", "brand:wikidata": "Q3172238", "brand:wikipedia": "en:Fakta", "name": "fakta", "shop": "supermarket"}, "countryCodes": ["dk"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Şok": {"name": "Şok", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/831881850201194496/HxDzAV5x_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q19613992"}, "addTags": {"brand": "Şok", "brand:wikidata": "Q19613992", "brand:wikipedia": "tr:Şok (market)", "name": "Şok", "shop": "supermarket"}, "removeTags": {"brand": "Şok", "brand:wikidata": "Q19613992", "brand:wikipedia": "tr:Şok (market)", "name": "Şok", "shop": "supermarket"}, "countryCodes": ["tr"], "matchScore": 2, "suggestion": true}, "shop/supermarket/ΑΒ Βασιλόπουλος": {"name": "ΑΒ Βασιλόπουλος", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q4721807"}, "addTags": {"brand": "ΑΒ Βασιλόπουλος", "brand:en": "AB Vassilopoulos", "brand:wikidata": "Q4721807", "brand:wikipedia": "el:Άλφα Βήτα Βασιλόπουλος", "name": "ΑΒ Βασιλόπουλος", "name:en": "AB Vassilopoulos", "shop": "supermarket"}, "removeTags": {"brand": "ΑΒ Βασιλόπουλος", "brand:en": "AB Vassilopoulos", "brand:wikidata": "Q4721807", "brand:wikipedia": "el:Άλφα Βήτα Βασιλόπουλος", "name": "ΑΒ Βασιλόπουλος", "name:en": "AB Vassilopoulos", "shop": "supermarket"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Γαλαξίας": {"name": "Γαλαξίας", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q5518063"}, "addTags": {"brand": "Γαλαξίας", "brand:en": "Galaxias", "brand:wikidata": "Q5518063", "brand:wikipedia": "el:Γαλαξίας (σούπερ μάρκετ)", "name": "Γαλαξίας", "name:en": "Galaxias", "shop": "supermarket"}, "removeTags": {"brand": "Γαλαξίας", "brand:en": "Galaxias", "brand:wikidata": "Q5518063", "brand:wikipedia": "el:Γαλαξίας (σούπερ μάρκετ)", "name": "Γαλαξίας", "name:en": "Galaxias", "shop": "supermarket"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Μασούτης": {"name": "Μασούτης", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q6783887"}, "addTags": {"brand": "Μασούτης", "brand:en": "Masoutis", "brand:wikidata": "Q6783887", "brand:wikipedia": "en:Masoutis", "name": "Μασούτης", "name:en": "Masoutis", "shop": "supermarket"}, "removeTags": {"brand": "Μασούτης", "brand:en": "Masoutis", "brand:wikidata": "Q6783887", "brand:wikipedia": "en:Masoutis", "name": "Μασούτης", "name:en": "Masoutis", "shop": "supermarket"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Σκλαβενίτης": {"name": "Σκλαβενίτης", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7536037"}, "addTags": {"brand": "Σκλαβενίτης", "brand:en": "Sklavenitis", "brand:wikidata": "Q7536037", "brand:wikipedia": "el:Σκλαβενίτης", "name": "Σκλαβενίτης", "name:en": "Sklavenitis", "shop": "supermarket"}, "removeTags": {"brand": "Σκλαβενίτης", "brand:en": "Sklavenitis", "brand:wikidata": "Q7536037", "brand:wikipedia": "el:Σκλαβενίτης", "name": "Σκλαβενίτης", "name:en": "Sklavenitis", "shop": "supermarket"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Абсолют (Russia)": {"name": "Абсолют (Russia)", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q62389597"}, "addTags": {"brand": "Абсолют", "brand:wikidata": "Q62389597", "name": "Абсолют", "shop": "supermarket"}, "removeTags": {"brand": "Абсолют", "brand:wikidata": "Q62389597", "name": "Абсолют", "shop": "supermarket"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Абсолют (Ukraine)": {"name": "Абсолют (Ukraine)", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q62389546"}, "addTags": {"brand": "Абсолют", "brand:wikidata": "Q62389546", "name": "Абсолют", "shop": "supermarket"}, "removeTags": {"brand": "Абсолют", "brand:wikidata": "Q62389546", "name": "Абсолют", "shop": "supermarket"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Азбука Вкуса": {"name": "Азбука Вкуса", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q4058209"}, "addTags": {"brand": "Азбука Вкуса", "brand:en": "Azbuka Vkusa", "brand:wikidata": "Q4058209", "brand:wikipedia": "en:Azbuka Vkusa", "name": "Азбука Вкуса", "name:en": "Azbuka Vkusa", "shop": "supermarket"}, "removeTags": {"brand": "Азбука Вкуса", "brand:en": "Azbuka Vkusa", "brand:wikidata": "Q4058209", "brand:wikipedia": "en:Azbuka Vkusa", "name": "Азбука Вкуса", "name:en": "Azbuka Vkusa", "shop": "supermarket"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Атак": {"name": "Атак", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2868738"}, "addTags": {"brand": "Атак", "brand:en": "Atac", "brand:wikidata": "Q2868738", "brand:wikipedia": "ru:Atac", "name": "Атак", "name:en": "Atac", "shop": "supermarket"}, "removeTags": {"brand": "Атак", "brand:en": "Atac", "brand:wikidata": "Q2868738", "brand:wikipedia": "ru:Atac", "name": "Атак", "name:en": "Atac", "shop": "supermarket"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Ашан": {"name": "Ашан", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/877095334316576768/bhQDPUWZ_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q758603"}, "addTags": {"brand": "Ашан", "brand:en": "Auchan", "brand:wikidata": "Q758603", "brand:wikipedia": "ru:Auchan", "name": "Ашан", "name:en": "Auchan", "shop": "supermarket"}, "removeTags": {"brand": "Ашан", "brand:en": "Auchan", "brand:wikidata": "Q758603", "brand:wikipedia": "ru:Auchan", "name": "Ашан", "name:en": "Auchan", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, @@ -3807,8 +4010,8 @@ "shop/supermarket/Вопак": {"name": "Вопак", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q30966107"}, "addTags": {"brand": "Вопак", "brand:en": "Vopak", "brand:wikidata": "Q30966107", "brand:wikipedia": "uk:Вопак", "name": "Вопак", "name:en": "Vopak", "shop": "supermarket"}, "removeTags": {"brand": "Вопак", "brand:en": "Vopak", "brand:wikidata": "Q30966107", "brand:wikipedia": "uk:Вопак", "name": "Вопак", "name:en": "Vopak", "shop": "supermarket"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Гулливер": {"name": "Гулливер", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q58003470"}, "addTags": {"brand": "Гулливер", "brand:wikidata": "Q58003470", "name": "Гулливер", "shop": "supermarket"}, "removeTags": {"brand": "Гулливер", "brand:wikidata": "Q58003470", "name": "Гулливер", "shop": "supermarket"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Десяточка": {"name": "Десяточка", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q61876182"}, "addTags": {"brand": "Десяточка", "brand:en": "Desyatochka", "brand:wikidata": "Q61876182", "name": "Десяточка", "shop": "supermarket"}, "removeTags": {"brand": "Десяточка", "brand:en": "Desyatochka", "brand:wikidata": "Q61876182", "name": "Десяточка", "shop": "supermarket"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Дикси": {"name": "Дикси", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q4161561"}, "addTags": {"brand": "Дикси", "brand:en": "Dixy", "brand:wikidata": "Q4161561", "brand:wikipedia": "ru:Дикси (сеть магазинов)", "name": "Дикси", "shop": "supermarket"}, "removeTags": {"brand": "Дикси", "brand:en": "Dixy", "brand:wikidata": "Q4161561", "brand:wikipedia": "ru:Дикси (сеть магазинов)", "name": "Дикси", "shop": "supermarket"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Евроопт": {"name": "Евроопт", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/996280002529447936/Dg7yPzqo_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2565040"}, "addTags": {"brand": "Евроопт", "brand:en": "Euroopt", "brand:ru": "Евроопт", "brand:wikidata": "Q2565040", "brand:wikipedia": "be:Еўрагандаль", "name": "Евроопт", "name:en": "Euroopt", "name:ru": "Евроопт", "shop": "supermarket"}, "removeTags": {"brand": "Евроопт", "brand:en": "Euroopt", "brand:ru": "Евроопт", "brand:wikidata": "Q2565040", "brand:wikipedia": "be:Еўрагандаль", "name": "Евроопт", "name:en": "Euroopt", "name:ru": "Евроопт", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, + "shop/supermarket/Дикси": {"name": "Дикси", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDixi.gif&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q4161561"}, "addTags": {"brand": "Дикси", "brand:en": "Dixy", "brand:wikidata": "Q4161561", "brand:wikipedia": "ru:Дикси (сеть магазинов)", "name": "Дикси", "shop": "supermarket"}, "removeTags": {"brand": "Дикси", "brand:en": "Dixy", "brand:wikidata": "Q4161561", "brand:wikipedia": "ru:Дикси (сеть магазинов)", "name": "Дикси", "shop": "supermarket"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/Евроопт": {"name": "Евроопт", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Eurooptby/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q2565040"}, "addTags": {"brand": "Евроопт", "brand:en": "Euroopt", "brand:ru": "Евроопт", "brand:wikidata": "Q2565040", "brand:wikipedia": "be:Еўрагандаль", "name": "Евроопт", "name:en": "Euroopt", "name:ru": "Евроопт", "shop": "supermarket"}, "removeTags": {"brand": "Евроопт", "brand:en": "Euroopt", "brand:ru": "Евроопт", "brand:wikidata": "Q2565040", "brand:wikipedia": "be:Еўрагандаль", "name": "Евроопт", "name:en": "Euroopt", "name:ru": "Евроопт", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/Карусель": {"name": "Карусель", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q4216307"}, "addTags": {"brand": "Карусель", "brand:en": "Karusel", "brand:wikidata": "Q4216307", "brand:wikipedia": "ru:Карусель (сеть магазинов)", "name": "Карусель", "name:en": "Karusel", "shop": "supermarket"}, "removeTags": {"brand": "Карусель", "brand:en": "Karusel", "brand:wikidata": "Q4216307", "brand:wikipedia": "ru:Карусель (сеть магазинов)", "name": "Карусель", "name:en": "Karusel", "shop": "supermarket"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Командор": {"name": "Командор", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q61876152"}, "addTags": {"brand": "Командор", "brand:en": "Komandor", "brand:wikidata": "Q61876152", "name": "Командор", "shop": "supermarket"}, "removeTags": {"brand": "Командор", "brand:en": "Komandor", "brand:wikidata": "Q61876152", "name": "Командор", "shop": "supermarket"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/supermarket/Красный Яр": {"name": "Красный Яр", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1786753"}, "addTags": {"brand": "Красный Яр", "brand:en": "Krasnyj Jar", "brand:wikidata": "Q1786753", "brand:wikipedia": "ru:Красный Яр", "name": "Красный Яр", "shop": "supermarket"}, "removeTags": {"brand": "Красный Яр", "brand:en": "Krasnyj Jar", "brand:wikidata": "Q1786753", "brand:wikipedia": "ru:Красный Яр", "name": "Красный Яр", "shop": "supermarket"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, @@ -3839,145 +4042,150 @@ "shop/supermarket/マックスバリュ": {"name": "マックスバリュ", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMaxValu.JPG&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q1960109"}, "addTags": {"brand": "マックスバリュ", "brand:en": "Maxvalu Tokai", "brand:ja": "マックスバリュ", "brand:wikidata": "Q1960109", "brand:wikipedia": "en:MaxValu", "name": "マックスバリュ", "name:en": "Maxvalu Tokai", "name:ja": "マックスバリュ", "shop": "supermarket"}, "removeTags": {"brand": "マックスバリュ", "brand:en": "Maxvalu Tokai", "brand:ja": "マックスバリュ", "brand:wikidata": "Q1960109", "brand:wikipedia": "en:MaxValu", "name": "マックスバリュ", "name:en": "Maxvalu Tokai", "name:ja": "マックスバリュ", "shop": "supermarket"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/supermarket/マルエツ": {"name": "マルエツ", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q11341197"}, "addTags": {"brand": "マルエツ", "brand:en": "Maruetsu", "brand:ja": "マルエツ", "brand:wikidata": "Q11341197", "brand:wikipedia": "ja:マルエツ", "name": "マルエツ", "name:en": "Maruetsu", "name:ja": "マルエツ", "shop": "supermarket"}, "removeTags": {"brand": "マルエツ", "brand:en": "Maruetsu", "brand:ja": "マルエツ", "brand:wikidata": "Q11341197", "brand:wikipedia": "ja:マルエツ", "name": "マルエツ", "name:en": "Maruetsu", "name:ja": "マルエツ", "shop": "supermarket"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/supermarket/ヤオコー": {"name": "ヤオコー", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/yaokococoro/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q11344967"}, "addTags": {"brand": "ヤオコー", "brand:en": "Yaoko", "brand:ja": "ヤオコー", "brand:wikidata": "Q11344967", "brand:wikipedia": "ja:ヤオコー", "name": "ヤオコー", "name:en": "Yaoko", "name:ja": "ヤオコー", "shop": "supermarket"}, "removeTags": {"brand": "ヤオコー", "brand:en": "Yaoko", "brand:ja": "ヤオコー", "brand:wikidata": "Q11344967", "brand:wikipedia": "ja:ヤオコー", "name": "ヤオコー", "name:en": "Yaoko", "name:ja": "ヤオコー", "shop": "supermarket"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ヨークベニマル": {"name": "ヨークベニマル", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FYork%20benimaru%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q11346199"}, "addTags": {"brand": "ヨークベニマル", "brand:en": "York Benimaru", "brand:wikidata": "Q11346199", "brand:wikipedia": "ja:ヨークベニマル", "name": "ヨークベニマル", "name:en": "York Benimaru", "shop": "supermarket"}, "removeTags": {"brand": "ヨークベニマル", "brand:en": "York Benimaru", "brand:wikidata": "Q11346199", "brand:wikipedia": "ja:ヨークベニマル", "name": "ヨークベニマル", "name:en": "York Benimaru", "shop": "supermarket"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ヨークマート": {"name": "ヨークマート", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q11346201"}, "addTags": {"brand": "ヨークマート", "brand:en": "YorkMart", "brand:wikidata": "Q11346201", "brand:wikipedia": "ja:ヨークマート", "name": "ヨークマート", "name:en": "YorkMart", "operator": "株式会社セブン&アイ・ホールディングス", "operator:en": "Seven & I Holdings Co., Ltd.", "operator:wikidata": "Q639447", "operator:wikipedia": "ja:セブン&アイ・ホールディングス", "shop": "supermarket"}, "removeTags": {"brand": "ヨークマート", "brand:en": "YorkMart", "brand:wikidata": "Q11346201", "brand:wikipedia": "ja:ヨークマート", "name": "ヨークマート", "name:en": "YorkMart", "operator": "株式会社セブン&アイ・ホールディングス", "operator:en": "Seven & I Holdings Co., Ltd.", "operator:wikidata": "Q639447", "operator:wikipedia": "ja:セブン&アイ・ホールディングス", "shop": "supermarket"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/ヨークベニマル": {"name": "ヨークベニマル", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FYork%20benimaru%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q11346199"}, "addTags": {"brand": "ヨークベニマル", "brand:en": "York Benimaru", "brand:ja": "ヨークベニマル", "brand:wikidata": "Q11346199", "brand:wikipedia": "ja:ヨークベニマル", "name": "ヨークベニマル", "name:en": "York Benimaru", "name:ja": "ヨークベニマル", "shop": "supermarket"}, "removeTags": {"brand": "ヨークベニマル", "brand:en": "York Benimaru", "brand:ja": "ヨークベニマル", "brand:wikidata": "Q11346199", "brand:wikipedia": "ja:ヨークベニマル", "name": "ヨークベニマル", "name:en": "York Benimaru", "name:ja": "ヨークベニマル", "shop": "supermarket"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/ヨークマート": {"name": "ヨークマート", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q11346201"}, "addTags": {"brand": "ヨークマート", "brand:en": "YorkMart", "brand:ja": "ヨークマート", "brand:wikidata": "Q11346201", "brand:wikipedia": "ja:ヨークマート", "name": "ヨークマート", "name:en": "YorkMart", "name:ja": "ヨークマート", "operator": "株式会社セブン&アイ・ホールディングス", "operator:en": "Seven & I Holdings Co., Ltd.", "operator:wikidata": "Q639447", "operator:wikipedia": "ja:セブン&アイ・ホールディングス", "shop": "supermarket"}, "removeTags": {"brand": "ヨークマート", "brand:en": "YorkMart", "brand:ja": "ヨークマート", "brand:wikidata": "Q11346201", "brand:wikipedia": "ja:ヨークマート", "name": "ヨークマート", "name:en": "YorkMart", "name:ja": "ヨークマート", "operator": "株式会社セブン&アイ・ホールディングス", "operator:en": "Seven & I Holdings Co., Ltd.", "operator:wikidata": "Q639447", "operator:wikipedia": "ja:セブン&アイ・ホールディングス", "shop": "supermarket"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/supermarket/ライフ": {"name": "ライフ", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/lifecorp428/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q11346476"}, "addTags": {"brand": "ライフ", "brand:en": "Life", "brand:ja": "ライフ", "brand:wikidata": "Q11346476", "brand:wikipedia": "ja:ライフコーポレーション", "name": "ライフ", "name:en": "Life", "name:ja": "ライフ", "shop": "supermarket"}, "removeTags": {"brand": "ライフ", "brand:en": "Life", "brand:ja": "ライフ", "brand:wikidata": "Q11346476", "brand:wikipedia": "ja:ライフコーポレーション", "name": "ライフ", "name:en": "Life", "name:ja": "ライフ", "shop": "supermarket"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/supermarket/全聯": {"name": "全聯", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPxmart%20Building%2020131012.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7262792"}, "addTags": {"brand": "全聯", "brand:en": "Pxmart", "brand:wikidata": "Q7262792", "brand:wikipedia": "en:PX Mart", "name": "全聯", "name:en": "Pxmart", "shop": "supermarket"}, "removeTags": {"brand": "全聯", "brand:en": "Pxmart", "brand:wikidata": "Q7262792", "brand:wikipedia": "en:PX Mart", "name": "全聯", "name:en": "Pxmart", "shop": "supermarket"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "shop/supermarket/全聯福利中心": {"name": "全聯福利中心", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPxmart%20Building%2020131012.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q7262792"}, "addTags": {"brand": "全聯福利中心", "brand:en": "Pxmart", "brand:wikidata": "Q7262792", "brand:wikipedia": "en:PX Mart", "name": "全聯福利中心", "name:en": "Pxmart", "shop": "supermarket"}, "removeTags": {"brand": "全聯福利中心", "brand:en": "Pxmart", "brand:wikidata": "Q7262792", "brand:wikipedia": "en:PX Mart", "name": "全聯福利中心", "name:en": "Pxmart", "shop": "supermarket"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "shop/supermarket/家乐福": {"name": "家乐福", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/carrefouritalia/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q217599"}, "addTags": {"brand": "家乐福", "brand:wikidata": "Q217599", "brand:wikipedia": "wuu:家乐福", "name": "家乐福", "shop": "supermarket"}, "removeTags": {"brand": "家乐福", "brand:wikidata": "Q217599", "brand:wikipedia": "wuu:家乐福", "name": "家乐福", "shop": "supermarket"}, "countryCodes": ["cn"], "matchScore": 2, "suggestion": true}, "shop/supermarket/惠康 Wellcome": {"name": "惠康 Wellcome", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWellcome%20Supermarket.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q706247"}, "addTags": {"brand": "惠康 Wellcome", "brand:en": "Wellcome", "brand:wikidata": "Q706247", "brand:wikipedia": "zh:惠康", "name": "惠康 Wellcome", "name:en": "Wellcome", "shop": "supermarket"}, "removeTags": {"brand": "惠康 Wellcome", "brand:en": "Wellcome", "brand:wikidata": "Q706247", "brand:wikipedia": "zh:惠康", "name": "惠康 Wellcome", "name:en": "Wellcome", "shop": "supermarket"}, "countryCodes": ["hk"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/業務スーパー": {"name": "業務スーパー", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q11590183"}, "addTags": {"brand": "業務スーパー", "brand:en": "Gyōmu sūpā", "brand:ja": "業務スーパー", "brand:wikidata": "Q11590183", "brand:wikipedia": "ja:業務スーパー", "name": "業務スーパー", "name:en": "Gyōmu sūpā", "name:ja": "業務スーパー", "shop": "supermarket"}, "removeTags": {"brand": "業務スーパー", "brand:en": "Gyōmu sūpā", "brand:ja": "業務スーパー", "brand:wikidata": "Q11590183", "brand:wikipedia": "ja:業務スーパー", "name": "業務スーパー", "name:en": "Gyōmu sūpā", "name:ja": "業務スーパー", "shop": "supermarket"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/supermarket/業務スーパー": {"name": "業務スーパー", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q11590183"}, "addTags": {"brand": "業務スーパー", "brand:en": "Gyōmu sūpā", "brand:ja": "業務スーパー", "brand:wikidata": "Q11590183", "brand:wikipedia": "ja:神戸物産", "name": "業務スーパー", "name:en": "Gyōmu sūpā", "name:ja": "業務スーパー", "shop": "supermarket"}, "removeTags": {"brand": "業務スーパー", "brand:en": "Gyōmu sūpā", "brand:ja": "業務スーパー", "brand:wikidata": "Q11590183", "brand:wikipedia": "ja:神戸物産", "name": "業務スーパー", "name:en": "Gyōmu sūpā", "name:ja": "業務スーパー", "shop": "supermarket"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/supermarket/沃尔玛": {"name": "沃尔玛", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/walmart/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q483551"}, "addTags": {"brand": "沃尔玛", "brand:en": "Walmart", "brand:wikidata": "Q483551", "brand:wikipedia": "wuu:沃尔玛", "name": "沃尔玛", "name:en": "Walmart", "shop": "supermarket"}, "removeTags": {"brand": "沃尔玛", "brand:en": "Walmart", "brand:wikidata": "Q483551", "brand:wikipedia": "wuu:沃尔玛", "name": "沃尔玛", "name:en": "Walmart", "shop": "supermarket"}, "countryCodes": ["cn"], "matchScore": 2, "suggestion": true}, "shop/supermarket/美廉社": {"name": "美廉社", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q15914017"}, "addTags": {"brand": "美廉社", "brand:en": "Simple Mart", "brand:wikidata": "Q15914017", "brand:wikipedia": "zh:美廉社", "name": "美廉社", "name:en": "Simple Mart", "shop": "supermarket"}, "removeTags": {"brand": "美廉社", "brand:en": "Simple Mart", "brand:wikidata": "Q15914017", "brand:wikipedia": "zh:美廉社", "name": "美廉社", "name:en": "Simple Mart", "shop": "supermarket"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "shop/supermarket/西友": {"name": "西友", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSEIYU%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3108542"}, "addTags": {"brand": "西友", "brand:en": "Seiyu Group", "brand:wikidata": "Q3108542", "brand:wikipedia": "en:Seiyu Group", "name": "西友", "name:en": "Seiyu Group", "shop": "supermarket"}, "removeTags": {"brand": "西友", "brand:en": "Seiyu Group", "brand:wikidata": "Q3108542", "brand:wikipedia": "en:Seiyu Group", "name": "西友", "name:en": "Seiyu Group", "shop": "supermarket"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/supermarket/頂好": {"name": "頂好", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWellcome%20Supermarket.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q706247"}, "addTags": {"brand": "頂好", "brand:en": "Wellcome", "brand:wikidata": "Q706247", "brand:wikipedia": "en:Wellcome", "name": "頂好", "name:en": "Wellcome", "shop": "supermarket"}, "removeTags": {"brand": "頂好", "brand:en": "Wellcome", "brand:wikidata": "Q706247", "brand:wikipedia": "en:Wellcome", "name": "頂好", "name:en": "Wellcome", "shop": "supermarket"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "shop/supermarket/頂好超市": {"name": "頂好超市", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWellcome%20Supermarket.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q706247"}, "addTags": {"brand": "頂好超市", "brand:en": "Wellcome", "brand:wikidata": "Q706247", "brand:wikipedia": "en:Wellcome", "name": "頂好超市", "name:en": "Wellcome", "shop": "supermarket"}, "removeTags": {"brand": "頂好超市", "brand:en": "Wellcome", "brand:wikidata": "Q706247", "brand:wikipedia": "en:Wellcome", "name": "頂好超市", "name:en": "Wellcome", "shop": "supermarket"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/하나로마트": {"name": "하나로마트", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q12590611"}, "addTags": {"brand": "하나로마트", "brand:en": "Hanaro Mart", "brand:ko": "하나로마트", "brand:wikidata": "Q12590611", "brand:wikipedia": "ko:농협유통", "name": "하나로마트", "name:ko": "하나로마트", "shop": "supermarket"}, "removeTags": {"brand": "하나로마트", "brand:en": "Hanaro Mart", "brand:ko": "하나로마트", "brand:wikidata": "Q12590611", "brand:wikipedia": "ko:농협유통", "name": "하나로마트", "name:ko": "하나로마트", "shop": "supermarket"}, "countryCodes": ["kr"], "matchScore": 2, "suggestion": true}, - "shop/tea/T2": {"name": "T2", "icon": "maki-teahouse", "geometry": ["point", "area"], "tags": {"shop": "tea", "brand:wikidata": "Q48802134"}, "addTags": {"brand": "T2", "brand:wikidata": "Q48802134", "brand:wikipedia": "en:T2 (Australian company)", "name": "T2", "shop": "tea"}, "removeTags": {"brand": "T2", "brand:wikidata": "Q48802134", "brand:wikipedia": "en:T2 (Australian company)", "name": "T2", "shop": "tea"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, + "shop/tea/T2": {"name": "T2", "icon": "maki-teahouse", "imageURL": "https://graph.facebook.com/T2Tea/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "tea", "brand:wikidata": "Q48802134"}, "addTags": {"brand": "T2", "brand:wikidata": "Q48802134", "brand:wikipedia": "en:T2 (Australian company)", "name": "T2", "shop": "tea"}, "removeTags": {"brand": "T2", "brand:wikidata": "Q48802134", "brand:wikipedia": "en:T2 (Australian company)", "name": "T2", "shop": "tea"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, "shop/tea/TeeGschwendner": {"name": "TeeGschwendner", "icon": "maki-teahouse", "imageURL": "https://graph.facebook.com/TeeGschwendner/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "tea", "brand:wikidata": "Q2399969"}, "addTags": {"brand": "TeeGschwendner", "brand:wikidata": "Q2399969", "brand:wikipedia": "de:TeeGschwendner", "name": "TeeGschwendner", "shop": "tea"}, "removeTags": {"brand": "TeeGschwendner", "brand:wikidata": "Q2399969", "brand:wikipedia": "de:TeeGschwendner", "name": "TeeGschwendner", "shop": "tea"}, "matchScore": 2, "suggestion": true}, "shop/ticket/Boutique Grandes Lignes": {"name": "Boutique Grandes Lignes", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/SNCFOFFICIEL/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "ticket", "brand:wikidata": "Q13646"}, "addTags": {"brand": "Boutique Grandes Lignes", "brand:wikidata": "Q13646", "brand:wikipedia": "fr:Société nationale des chemins de fer français", "name": "Boutique Grandes Lignes", "shop": "ticket"}, "removeTags": {"brand": "Boutique Grandes Lignes", "brand:wikidata": "Q13646", "brand:wikipedia": "fr:Société nationale des chemins de fer français", "name": "Boutique Grandes Lignes", "shop": "ticket"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/ticket/DB Reisezentrum": {"name": "DB Reisezentrum", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/348950735250586/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "ticket", "brand:wikidata": "Q15842100"}, "addTags": {"brand": "DB Reisezentrum", "brand:wikidata": "Q15842100", "brand:wikipedia": "de:Reisezentrum", "name": "DB Reisezentrum", "shop": "ticket"}, "removeTags": {"brand": "DB Reisezentrum", "brand:wikidata": "Q15842100", "brand:wikipedia": "de:Reisezentrum", "name": "DB Reisezentrum", "shop": "ticket"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/ticket/Guichet Transilien": {"name": "Guichet Transilien", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/776102546045865984/-NPGF3eG_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "ticket", "brand:wikidata": "Q389554"}, "addTags": {"brand": "Guichet Transilien", "brand:wikidata": "Q389554", "brand:wikipedia": "fr:Transilien", "name": "Guichet Transilien", "shop": "ticket"}, "removeTags": {"brand": "Guichet Transilien", "brand:wikidata": "Q389554", "brand:wikipedia": "fr:Transilien", "name": "Guichet Transilien", "shop": "ticket"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/tobacco/Nemzeti Dohánybolt": {"name": "Nemzeti Dohánybolt", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "tobacco", "brand:wikidata": "Q20639040"}, "addTags": {"brand": "Nemzeti Dohánybolt", "brand:wikidata": "Q20639040", "brand:wikipedia": "en:Dohánybolt", "name": "Nemzeti Dohánybolt", "shop": "tobacco"}, "removeTags": {"brand": "Nemzeti Dohánybolt", "brand:wikidata": "Q20639040", "brand:wikipedia": "en:Dohánybolt", "name": "Nemzeti Dohánybolt", "shop": "tobacco"}, "countryCodes": ["hu"], "matchScore": 2, "suggestion": true}, "shop/toys/Build-A-Bear Workshop": {"name": "Build-A-Bear Workshop", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Buildabear/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q1002992"}, "addTags": {"brand": "Build-A-Bear Workshop", "brand:wikidata": "Q1002992", "brand:wikipedia": "en:Build-A-Bear Workshop", "name": "Build-A-Bear Workshop", "shop": "toys"}, "removeTags": {"brand": "Build-A-Bear Workshop", "brand:wikidata": "Q1002992", "brand:wikipedia": "en:Build-A-Bear Workshop", "name": "Build-A-Bear Workshop", "shop": "toys"}, "matchScore": 2, "suggestion": true}, "shop/toys/Dráčik": {"name": "Dráčik", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q57653669"}, "addTags": {"brand": "Dráčik", "brand:wikidata": "Q57653669", "name": "Dráčik", "shop": "toys"}, "removeTags": {"brand": "Dráčik", "brand:wikidata": "Q57653669", "name": "Dráčik", "shop": "toys"}, "countryCodes": ["cz", "sk"], "matchScore": 2, "suggestion": true}, - "shop/toys/Intertoys": {"name": "Intertoys", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q1891407"}, "addTags": {"brand": "Intertoys", "brand:wikidata": "Q1891407", "brand:wikipedia": "nl:Intertoys", "name": "Intertoys", "shop": "toys"}, "removeTags": {"brand": "Intertoys", "brand:wikidata": "Q1891407", "brand:wikipedia": "nl:Intertoys", "name": "Intertoys", "shop": "toys"}, "countryCodes": ["be", "de", "nl"], "matchScore": 2, "suggestion": true}, - "shop/toys/JouéClub": {"name": "JouéClub", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q3187152"}, "addTags": {"brand": "JouéClub", "brand:wikidata": "Q3187152", "brand:wikipedia": "fr:JouéClub", "name": "JouéClub", "shop": "toys"}, "removeTags": {"brand": "JouéClub", "brand:wikidata": "Q3187152", "brand:wikipedia": "fr:JouéClub", "name": "JouéClub", "shop": "toys"}, "countryCodes": ["ad", "fr", "it", "lb", "ma", "qa"], "matchScore": 2, "suggestion": true}, - "shop/toys/King Jouet": {"name": "King Jouet", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q3197009"}, "addTags": {"brand": "King Jouet", "brand:en": "King Toy", "brand:wikidata": "Q3197009", "brand:wikipedia": "fr:King Jouet", "name": "King Jouet", "name:en": "King Toy", "shop": "toys"}, "removeTags": {"brand": "King Jouet", "brand:en": "King Toy", "brand:wikidata": "Q3197009", "brand:wikipedia": "fr:King Jouet", "name": "King Jouet", "name:en": "King Toy", "shop": "toys"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/toys/La Grande Récré": {"name": "La Grande Récré", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q3209556"}, "addTags": {"brand": "La Grande Récré", "brand:wikidata": "Q3209556", "brand:wikipedia": "fr:La Grande Récré (magasin)", "name": "La Grande Récré", "shop": "toys"}, "removeTags": {"brand": "La Grande Récré", "brand:wikidata": "Q3209556", "brand:wikipedia": "fr:La Grande Récré (magasin)", "name": "La Grande Récré", "shop": "toys"}, "countryCodes": ["be", "ci", "es", "fr", "ma"], "matchScore": 2, "suggestion": true}, + "shop/toys/Intertoys": {"name": "Intertoys", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Intertoys/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q1891407"}, "addTags": {"brand": "Intertoys", "brand:wikidata": "Q1891407", "brand:wikipedia": "nl:Intertoys", "name": "Intertoys", "shop": "toys"}, "removeTags": {"brand": "Intertoys", "brand:wikidata": "Q1891407", "brand:wikipedia": "nl:Intertoys", "name": "Intertoys", "shop": "toys"}, "countryCodes": ["be", "de", "nl"], "matchScore": 2, "suggestion": true}, + "shop/toys/JouéClub": {"name": "JouéClub", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/JoueClubFr/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q3187152"}, "addTags": {"brand": "JouéClub", "brand:wikidata": "Q3187152", "brand:wikipedia": "fr:JouéClub", "name": "JouéClub", "shop": "toys"}, "removeTags": {"brand": "JouéClub", "brand:wikidata": "Q3187152", "brand:wikipedia": "fr:JouéClub", "name": "JouéClub", "shop": "toys"}, "countryCodes": ["ad", "fr", "it", "lb", "ma", "qa"], "matchScore": 2, "suggestion": true}, + "shop/toys/King Jouet": {"name": "King Jouet", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/KingJouet/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q3197009"}, "addTags": {"brand": "King Jouet", "brand:en": "King Toy", "brand:wikidata": "Q3197009", "brand:wikipedia": "fr:King Jouet", "name": "King Jouet", "name:en": "King Toy", "shop": "toys"}, "removeTags": {"brand": "King Jouet", "brand:en": "King Toy", "brand:wikidata": "Q3197009", "brand:wikipedia": "fr:King Jouet", "name": "King Jouet", "name:en": "King Toy", "shop": "toys"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/toys/La Grande Récré": {"name": "La Grande Récré", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/lagranderecre/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q3209556"}, "addTags": {"brand": "La Grande Récré", "brand:wikidata": "Q3209556", "brand:wikipedia": "fr:La Grande Récré (magasin)", "name": "La Grande Récré", "shop": "toys"}, "removeTags": {"brand": "La Grande Récré", "brand:wikidata": "Q3209556", "brand:wikipedia": "fr:La Grande Récré (magasin)", "name": "La Grande Récré", "shop": "toys"}, "countryCodes": ["be", "ci", "es", "fr", "ma"], "matchScore": 2, "suggestion": true}, "shop/toys/Lego": {"name": "Lego", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/lego/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q1063455"}, "addTags": {"brand": "Lego", "brand:wikidata": "Q1063455", "brand:wikipedia": "en:The Lego Group", "name": "Lego", "shop": "toys"}, "removeTags": {"brand": "Lego", "brand:wikidata": "Q1063455", "brand:wikipedia": "en:The Lego Group", "name": "Lego", "shop": "toys"}, "matchScore": 2, "suggestion": true}, - "shop/toys/Lekia": {"name": "Lekia", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q56303274"}, "addTags": {"brand": "Lekia", "brand:wikidata": "Q56303274", "brand:wikipedia": "sv:Lekia", "name": "Lekia", "shop": "toys"}, "removeTags": {"brand": "Lekia", "brand:wikidata": "Q56303274", "brand:wikipedia": "sv:Lekia", "name": "Lekia", "shop": "toys"}, "countryCodes": ["no", "se"], "matchScore": 2, "suggestion": true}, - "shop/toys/Maxi Toys": {"name": "Maxi Toys", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q16663879"}, "addTags": {"brand": "Maxi Toys", "brand:wikidata": "Q16663879", "brand:wikipedia": "fr:Maxi Toys", "name": "Maxi Toys", "shop": "toys"}, "removeTags": {"brand": "Maxi Toys", "brand:wikidata": "Q16663879", "brand:wikipedia": "fr:Maxi Toys", "name": "Maxi Toys", "shop": "toys"}, "matchScore": 2, "suggestion": true}, - "shop/toys/The Entertainer": {"name": "The Entertainer", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1065176417300881409/BR5S2nYI_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q7732289"}, "addTags": {"brand": "The Entertainer", "brand:wikidata": "Q7732289", "brand:wikipedia": "en:The Entertainer (retailer)", "name": "The Entertainer", "shop": "toys"}, "removeTags": {"brand": "The Entertainer", "brand:wikidata": "Q7732289", "brand:wikipedia": "en:The Entertainer (retailer)", "name": "The Entertainer", "shop": "toys"}, "matchScore": 2, "suggestion": true}, - "shop/toys/Toys R Us": {"name": "Toys R Us", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/toysяusjp/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q696334"}, "addTags": {"brand": "Toys R Us", "brand:wikidata": "Q696334", "brand:wikipedia": "en:Toys \"R\" Us", "name": "Toys R Us", "shop": "toys"}, "removeTags": {"brand": "Toys R Us", "brand:wikidata": "Q696334", "brand:wikipedia": "en:Toys \"R\" Us", "name": "Toys R Us", "shop": "toys"}, "matchScore": 2, "suggestion": true}, - "shop/toys/Детский мир": {"name": "Детский мир", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q16643324"}, "addTags": {"brand": "Детский мир", "brand:en": "Detskiy Mir", "brand:wikidata": "Q16643324", "brand:wikipedia": "en:Detsky Mir", "name": "Детский мир", "name:en": "Detskiy Mir", "shop": "toys"}, "removeTags": {"brand": "Детский мир", "brand:en": "Detskiy Mir", "brand:wikidata": "Q16643324", "brand:wikipedia": "en:Detsky Mir", "name": "Детский мир", "name:en": "Detskiy Mir", "shop": "toys"}, "matchScore": 2, "suggestion": true}, - "shop/toys/Кораблик": {"name": "Кораблик", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q57653416"}, "addTags": {"brand": "Кораблик", "brand:wikidata": "Q57653416", "name": "Кораблик", "shop": "toys"}, "removeTags": {"brand": "Кораблик", "brand:wikidata": "Q57653416", "name": "Кораблик", "shop": "toys"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/toys/Lekia": {"name": "Lekia", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/lekiasweden/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q56303274"}, "addTags": {"brand": "Lekia", "brand:wikidata": "Q56303274", "brand:wikipedia": "sv:Lekia", "name": "Lekia", "shop": "toys"}, "removeTags": {"brand": "Lekia", "brand:wikidata": "Q56303274", "brand:wikipedia": "sv:Lekia", "name": "Lekia", "shop": "toys"}, "countryCodes": ["no", "se"], "matchScore": 2, "suggestion": true}, + "shop/toys/Maxi Toys": {"name": "Maxi Toys", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/MaxiToys.FR/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q16663879"}, "addTags": {"brand": "Maxi Toys", "brand:wikidata": "Q16663879", "brand:wikipedia": "fr:Maxi Toys", "name": "Maxi Toys", "shop": "toys"}, "removeTags": {"brand": "Maxi Toys", "brand:wikidata": "Q16663879", "brand:wikipedia": "fr:Maxi Toys", "name": "Maxi Toys", "shop": "toys"}, "matchScore": 2, "suggestion": true}, + "shop/toys/The Entertainer": {"name": "The Entertainer", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/TheEntertainerToyShop/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q7732289"}, "addTags": {"brand": "The Entertainer", "brand:wikidata": "Q7732289", "brand:wikipedia": "en:The Entertainer (retailer)", "name": "The Entertainer", "shop": "toys"}, "removeTags": {"brand": "The Entertainer", "brand:wikidata": "Q7732289", "brand:wikipedia": "en:The Entertainer (retailer)", "name": "The Entertainer", "shop": "toys"}, "matchScore": 2, "suggestion": true}, + "shop/toys/Toys R Us": {"name": "Toys R Us", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/toysrus/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q696334"}, "addTags": {"brand": "Toys R Us", "brand:wikidata": "Q696334", "brand:wikipedia": "en:Toys \"R\" Us", "name": "Toys R Us", "shop": "toys"}, "removeTags": {"brand": "Toys R Us", "brand:wikidata": "Q696334", "brand:wikipedia": "en:Toys \"R\" Us", "name": "Toys R Us", "shop": "toys"}, "matchScore": 2, "suggestion": true}, + "shop/toys/Детский мир": {"name": "Детский мир", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/detmir/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q16643324"}, "addTags": {"brand": "Детский мир", "brand:en": "Detskiy Mir", "brand:wikidata": "Q16643324", "brand:wikipedia": "en:Detsky Mir", "name": "Детский мир", "name:en": "Detskiy Mir", "shop": "toys"}, "removeTags": {"brand": "Детский мир", "brand:en": "Detskiy Mir", "brand:wikidata": "Q16643324", "brand:wikipedia": "en:Detsky Mir", "name": "Детский мир", "name:en": "Detskiy Mir", "shop": "toys"}, "matchScore": 2, "suggestion": true}, + "shop/toys/Кораблик": {"name": "Кораблик", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/korablik.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q57653416"}, "addTags": {"brand": "Кораблик", "brand:wikidata": "Q57653416", "name": "Кораблик", "shop": "toys"}, "removeTags": {"brand": "Кораблик", "brand:wikidata": "Q57653416", "name": "Кораблик", "shop": "toys"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/travel_agency/Coral Travel": {"name": "Coral Travel", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/coraltravelofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q58011479"}, "addTags": {"brand": "Coral Travel", "brand:wikidata": "Q58011479", "name": "Coral Travel", "shop": "travel_agency"}, "removeTags": {"brand": "Coral Travel", "brand:wikidata": "Q58011479", "name": "Coral Travel", "shop": "travel_agency"}, "countryCodes": ["pl", "ru", "ua"], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/D-reizen": {"name": "D-reizen", "icon": "maki-suitcase", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FD-reizen%20logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q2445498"}, "addTags": {"brand": "D-reizen", "brand:wikidata": "Q2445498", "brand:wikipedia": "nl:D-reizen", "name": "D-reizen", "shop": "travel_agency"}, "removeTags": {"brand": "D-reizen", "brand:wikidata": "Q2445498", "brand:wikipedia": "nl:D-reizen", "name": "D-reizen", "shop": "travel_agency"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/DER Reisebüro": {"name": "DER Reisebüro", "icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q56729186"}, "addTags": {"brand": "DER Reisebüro", "brand:wikidata": "Q56729186", "brand:wikipedia": "de:Deutsches Reisebüro", "name": "DER Reisebüro", "shop": "travel_agency"}, "removeTags": {"brand": "DER Reisebüro", "brand:wikidata": "Q56729186", "brand:wikipedia": "de:Deutsches Reisebüro", "name": "DER Reisebüro", "shop": "travel_agency"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/First Reisebüro": {"name": "First Reisebüro", "icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q573103"}, "addTags": {"brand": "First Reisebüro", "brand:wikidata": "Q573103", "brand:wikipedia": "en:TUI Group", "name": "First Reisebüro", "shop": "travel_agency"}, "removeTags": {"brand": "First Reisebüro", "brand:wikidata": "Q573103", "brand:wikipedia": "en:TUI Group", "name": "First Reisebüro", "shop": "travel_agency"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Flight Centre": {"name": "Flight Centre", "icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q5459202"}, "addTags": {"brand": "Flight Centre", "brand:wikidata": "Q5459202", "brand:wikipedia": "en:Flight Centre", "name": "Flight Centre", "shop": "travel_agency"}, "removeTags": {"brand": "Flight Centre", "brand:wikidata": "Q5459202", "brand:wikipedia": "en:Flight Centre", "name": "Flight Centre", "shop": "travel_agency"}, "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Halcón Viajes": {"name": "Halcón Viajes", "icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q57591939"}, "addTags": {"brand": "Halcón Viajes", "brand:wikidata": "Q57591939", "name": "Halcón Viajes", "shop": "travel_agency"}, "removeTags": {"brand": "Halcón Viajes", "brand:wikidata": "Q57591939", "name": "Halcón Viajes", "shop": "travel_agency"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, + "shop/travel_agency/D-reizen": {"name": "D-reizen", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/dreizenvakanties/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q2445498"}, "addTags": {"brand": "D-reizen", "brand:wikidata": "Q2445498", "brand:wikipedia": "nl:D-reizen", "name": "D-reizen", "shop": "travel_agency"}, "removeTags": {"brand": "D-reizen", "brand:wikidata": "Q2445498", "brand:wikipedia": "nl:D-reizen", "name": "D-reizen", "shop": "travel_agency"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, + "shop/travel_agency/DER Reisebüro": {"name": "DER Reisebüro", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/DER/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q56729186"}, "addTags": {"brand": "DER Reisebüro", "brand:wikidata": "Q56729186", "brand:wikipedia": "de:Deutsches Reisebüro", "name": "DER Reisebüro", "shop": "travel_agency"}, "removeTags": {"brand": "DER Reisebüro", "brand:wikidata": "Q56729186", "brand:wikipedia": "de:Deutsches Reisebüro", "name": "DER Reisebüro", "shop": "travel_agency"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/travel_agency/First Reisebüro": {"name": "First Reisebüro", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/TUIDeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q573103"}, "addTags": {"brand": "First Reisebüro", "brand:wikidata": "Q573103", "brand:wikipedia": "en:TUI Group", "name": "First Reisebüro", "shop": "travel_agency"}, "removeTags": {"brand": "First Reisebüro", "brand:wikidata": "Q573103", "brand:wikipedia": "en:TUI Group", "name": "First Reisebüro", "shop": "travel_agency"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/travel_agency/Flight Centre": {"name": "Flight Centre", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/flightcentreAU/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q5459202"}, "addTags": {"brand": "Flight Centre", "brand:wikidata": "Q5459202", "brand:wikipedia": "en:Flight Centre", "name": "Flight Centre", "shop": "travel_agency"}, "removeTags": {"brand": "Flight Centre", "brand:wikidata": "Q5459202", "brand:wikipedia": "en:Flight Centre", "name": "Flight Centre", "shop": "travel_agency"}, "matchScore": 2, "suggestion": true}, + "shop/travel_agency/Halcón Viajes": {"name": "Halcón Viajes", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/halconviajes.oficial/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q57591939"}, "addTags": {"brand": "Halcón Viajes", "brand:wikidata": "Q57591939", "name": "Halcón Viajes", "shop": "travel_agency"}, "removeTags": {"brand": "Halcón Viajes", "brand:wikidata": "Q57591939", "name": "Halcón Viajes", "shop": "travel_agency"}, "countryCodes": ["es"], "matchScore": 2, "suggestion": true}, "shop/travel_agency/Havas Voyages": {"name": "Havas Voyages", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/havas.voyages/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q57628091"}, "addTags": {"brand": "Havas Voyages", "brand:wikidata": "Q57628091", "name": "Havas Voyages", "shop": "travel_agency"}, "removeTags": {"brand": "Havas Voyages", "brand:wikidata": "Q57628091", "name": "Havas Voyages", "shop": "travel_agency"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Reiseland": {"name": "Reiseland", "icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q40387610"}, "addTags": {"brand": "Reiseland", "brand:wikidata": "Q40387610", "brand:wikipedia": "de:OTTO Reisen", "name": "Reiseland", "shop": "travel_agency"}, "removeTags": {"brand": "Reiseland", "brand:wikidata": "Q40387610", "brand:wikipedia": "de:OTTO Reisen", "name": "Reiseland", "shop": "travel_agency"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/TUI": {"name": "TUI", "icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q573103"}, "addTags": {"brand": "TUI", "brand:wikidata": "Q573103", "brand:wikipedia": "en:TUI Group", "name": "TUI", "shop": "travel_agency"}, "removeTags": {"brand": "TUI", "brand:wikidata": "Q573103", "brand:wikipedia": "en:TUI Group", "name": "TUI", "shop": "travel_agency"}, "matchScore": 2, "suggestion": true}, - "shop/travel_agency/The Co-operative Travel": {"name": "The Co-operative Travel", "icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q7726526"}, "addTags": {"brand": "The Co-operative Travel", "brand:wikidata": "Q7726526", "brand:wikipedia": "en:The Co-operative Travel", "name": "The Co-operative Travel", "shop": "travel_agency"}, "removeTags": {"brand": "The Co-operative Travel", "brand:wikidata": "Q7726526", "brand:wikipedia": "en:The Co-operative Travel", "name": "The Co-operative Travel", "shop": "travel_agency"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Thomas Cook": {"name": "Thomas Cook", "icon": "maki-suitcase", "imageURL": "https://pbs.twimg.com/profile_images/916310260612239360/hX-k5rRE_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q2141800"}, "addTags": {"brand": "Thomas Cook", "brand:wikidata": "Q2141800", "brand:wikipedia": "en:Thomas Cook Group", "name": "Thomas Cook", "shop": "travel_agency"}, "removeTags": {"brand": "Thomas Cook", "brand:wikidata": "Q2141800", "brand:wikipedia": "en:Thomas Cook Group", "name": "Thomas Cook", "shop": "travel_agency"}, "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Thomson": {"name": "Thomson", "icon": "maki-suitcase", "imageURL": "https://pbs.twimg.com/profile_images/1050055186444681216/2uTIGX7F_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q7795876"}, "addTags": {"brand": "Thomson", "brand:wikidata": "Q7795876", "brand:wikipedia": "en:TUI UK", "name": "Thomson", "shop": "travel_agency"}, "removeTags": {"brand": "Thomson", "brand:wikidata": "Q7795876", "brand:wikipedia": "en:TUI UK", "name": "Thomson", "shop": "travel_agency"}, "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Поехали с нами": {"name": "Поехали с нами", "icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q25439141"}, "addTags": {"brand": "Поехали с нами", "brand:wikidata": "Q25439141", "brand:wikipedia": "uk:Поїхали з нами", "name": "Поехали с нами", "shop": "travel_agency"}, "removeTags": {"brand": "Поехали с нами", "brand:wikidata": "Q25439141", "brand:wikipedia": "uk:Поїхали з нами", "name": "Поехали с нами", "shop": "travel_agency"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, - "shop/tyres/Big O Tires": {"name": "Big O Tires", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/619592405734404098/kd1D3aI8_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "tyres", "brand:wikidata": "Q4906085"}, "addTags": {"brand": "Big O Tires", "brand:wikidata": "Q4906085", "brand:wikipedia": "en:Big O Tires", "name": "Big O Tires", "shop": "tyres"}, "removeTags": {"brand": "Big O Tires", "brand:wikidata": "Q4906085", "brand:wikipedia": "en:Big O Tires", "name": "Big O Tires", "shop": "tyres"}, "matchScore": 2, "suggestion": true}, - "shop/tyres/Bridgestone": {"name": "Bridgestone", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBridgestone%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "tyres", "brand:wikidata": "Q179433"}, "addTags": {"brand": "Bridgestone", "brand:wikidata": "Q179433", "brand:wikipedia": "en:Bridgestone", "name": "Bridgestone", "shop": "tyres"}, "removeTags": {"brand": "Bridgestone", "brand:wikidata": "Q179433", "brand:wikipedia": "en:Bridgestone", "name": "Bridgestone", "shop": "tyres"}, "matchScore": 2, "suggestion": true}, - "shop/tyres/Discount Tire": {"name": "Discount Tire", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/626051113381265408/zzGXPrHF_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "tyres", "brand:wikidata": "Q5281735"}, "addTags": {"brand": "Discount Tire", "brand:wikidata": "Q5281735", "brand:wikipedia": "en:Discount Tire", "name": "Discount Tire", "shop": "tyres"}, "removeTags": {"brand": "Discount Tire", "brand:wikidata": "Q5281735", "brand:wikipedia": "en:Discount Tire", "name": "Discount Tire", "shop": "tyres"}, "matchScore": 2, "suggestion": true}, - "shop/tyres/Express Oil Change & Tire Engineers": {"name": "Express Oil Change & Tire Engineers", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/866697610333237248/MQZcBMdy_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "tyres", "brand:wikidata": "Q39057654"}, "addTags": {"brand": "Express Oil Change & Tire Engineers", "brand:wikidata": "Q39057654", "brand:wikipedia": "en:Express Oil Change & Tire Engineers", "name": "Express Oil Change & Tire Engineers", "shop": "tyres"}, "removeTags": {"brand": "Express Oil Change & Tire Engineers", "brand:wikidata": "Q39057654", "brand:wikipedia": "en:Express Oil Change & Tire Engineers", "name": "Express Oil Change & Tire Engineers", "shop": "tyres"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/tyres/Les Schwab Tire Center": {"name": "Les Schwab Tire Center", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/783004405045964800/B1ICZL2n_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "tyres", "brand:wikidata": "Q6529977"}, "addTags": {"brand": "Les Schwab Tire Center", "brand:wikidata": "Q6529977", "brand:wikipedia": "en:Les Schwab Tire Centers", "name": "Les Schwab Tire Center", "shop": "tyres"}, "removeTags": {"brand": "Les Schwab Tire Center", "brand:wikidata": "Q6529977", "brand:wikipedia": "en:Les Schwab Tire Centers", "name": "Les Schwab Tire Center", "shop": "tyres"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/tyres/Michelin": {"name": "Michelin", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1031457567963312128/I7Vnou9B_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "tyres", "brand:wikidata": "Q151107"}, "addTags": {"brand": "Michelin", "brand:wikidata": "Q151107", "brand:wikipedia": "en:Michelin", "name": "Michelin", "shop": "tyres"}, "removeTags": {"brand": "Michelin", "brand:wikidata": "Q151107", "brand:wikipedia": "en:Michelin", "name": "Michelin", "shop": "tyres"}, "matchScore": 2, "suggestion": true}, - "shop/tyres/Vianor": {"name": "Vianor", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "tyres", "brand:wikidata": "Q10714920"}, "addTags": {"brand": "Vianor", "brand:wikidata": "Q10714920", "brand:wikipedia": "sv:Vianor", "name": "Vianor", "shop": "tyres"}, "removeTags": {"brand": "Vianor", "brand:wikidata": "Q10714920", "brand:wikipedia": "sv:Vianor", "name": "Vianor", "shop": "tyres"}, "matchScore": 2, "suggestion": true}, - "shop/variety_store/99 Cents Only Stores": {"name": "99 Cents Only Stores", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1032698085896404992/x224SLqh_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q4646294"}, "addTags": {"brand": "99 Cents Only Stores", "brand:wikidata": "Q4646294", "brand:wikipedia": "en:99 Cents Only Stores", "name": "99 Cents Only Stores", "shop": "variety_store"}, "removeTags": {"brand": "99 Cents Only Stores", "brand:wikidata": "Q4646294", "brand:wikipedia": "en:99 Cents Only Stores", "name": "99 Cents Only Stores", "shop": "variety_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Action": {"name": "Action", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/action.nederland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q2634111"}, "addTags": {"brand": "Action", "brand:wikidata": "Q2634111", "brand:wikipedia": "nl:Action (winkel)", "name": "Action", "shop": "variety_store"}, "removeTags": {"brand": "Action", "brand:wikidata": "Q2634111", "brand:wikipedia": "nl:Action (winkel)", "name": "Action", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, - "shop/variety_store/Big Bazar": {"name": "Big Bazar", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q15873104"}, "addTags": {"brand": "Big Bazar", "brand:wikidata": "Q15873104", "brand:wikipedia": "nl:Big Bazar", "name": "Big Bazar", "shop": "variety_store"}, "removeTags": {"brand": "Big Bazar", "brand:wikidata": "Q15873104", "brand:wikipedia": "nl:Big Bazar", "name": "Big Bazar", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, - "shop/variety_store/Dollar General": {"name": "Dollar General", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/459772606040641536/__566KGj_bigger.jpeg", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q145168"}, "addTags": {"brand": "Dollar General", "brand:wikidata": "Q145168", "brand:wikipedia": "en:Dollar General", "name": "Dollar General", "shop": "variety_store"}, "removeTags": {"brand": "Dollar General", "brand:wikidata": "Q145168", "brand:wikipedia": "en:Dollar General", "name": "Dollar General", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, - "shop/variety_store/Dollar Tree": {"name": "Dollar Tree", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/509405558898561024/27hmihjq_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q5289230"}, "addTags": {"brand": "Dollar Tree", "brand:wikidata": "Q5289230", "brand:wikipedia": "en:Dollar Tree", "name": "Dollar Tree", "shop": "variety_store"}, "removeTags": {"brand": "Dollar Tree", "brand:wikidata": "Q5289230", "brand:wikipedia": "en:Dollar Tree", "name": "Dollar Tree", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, - "shop/variety_store/Dollarama": {"name": "Dollarama", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q3033947"}, "addTags": {"brand": "Dollarama", "brand:wikidata": "Q3033947", "brand:wikipedia": "en:Dollarama", "name": "Dollarama", "shop": "variety_store"}, "removeTags": {"brand": "Dollarama", "brand:wikidata": "Q3033947", "brand:wikipedia": "en:Dollarama", "name": "Dollarama", "shop": "variety_store"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Family Dollar": {"name": "Family Dollar", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/458699553458241536/evZeMwhE_bigger.jpeg", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q5433101"}, "addTags": {"brand": "Family Dollar", "brand:wikidata": "Q5433101", "brand:wikipedia": "en:Family Dollar", "name": "Family Dollar", "shop": "variety_store"}, "removeTags": {"brand": "Family Dollar", "brand:wikidata": "Q5433101", "brand:wikipedia": "en:Family Dollar", "name": "Family Dollar", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, - "shop/variety_store/Five Below": {"name": "Five Below", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFive%20below%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q5455836"}, "addTags": {"brand": "Five Below", "brand:wikidata": "Q5455836", "brand:wikipedia": "en:Five Below", "name": "Five Below", "shop": "variety_store"}, "removeTags": {"brand": "Five Below", "brand:wikidata": "Q5455836", "brand:wikipedia": "en:Five Below", "name": "Five Below", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, - "shop/variety_store/Fix Price": {"name": "Fix Price", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q4038791"}, "addTags": {"brand": "Fix Price", "brand:wikidata": "Q4038791", "brand:wikipedia": "ru:Fix Price (сеть магазинов)", "name": "Fix Price", "shop": "variety_store"}, "removeTags": {"brand": "Fix Price", "brand:wikidata": "Q4038791", "brand:wikipedia": "ru:Fix Price (сеть магазинов)", "name": "Fix Price", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, - "shop/variety_store/GiFi": {"name": "GiFi", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGifi%20logo%202012.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q3105439"}, "addTags": {"brand": "GiFi", "brand:wikidata": "Q3105439", "brand:wikipedia": "fr:Gifi", "name": "GiFi", "shop": "variety_store"}, "removeTags": {"brand": "GiFi", "brand:wikidata": "Q3105439", "brand:wikipedia": "fr:Gifi", "name": "GiFi", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, - "shop/variety_store/Home Bargains": {"name": "Home Bargains", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1017147039434633217/vjWMjrOZ_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q5888229"}, "addTags": {"brand": "Home Bargains", "brand:wikidata": "Q5888229", "brand:wikipedia": "en:Home Bargains", "name": "Home Bargains", "shop": "variety_store"}, "removeTags": {"brand": "Home Bargains", "brand:wikidata": "Q5888229", "brand:wikipedia": "en:Home Bargains", "name": "Home Bargains", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, - "shop/variety_store/Mäc-Geiz": {"name": "Mäc-Geiz", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMac-Geiz.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q1957126"}, "addTags": {"brand": "Mäc-Geiz", "brand:wikidata": "Q1957126", "brand:wikipedia": "de:Mäc-Geiz", "name": "Mäc-Geiz", "shop": "variety_store"}, "removeTags": {"brand": "Mäc-Geiz", "brand:wikidata": "Q1957126", "brand:wikipedia": "de:Mäc-Geiz", "name": "Mäc-Geiz", "shop": "variety_store"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/variety_store/NOZ": {"name": "NOZ", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Noz.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q3345688"}, "addTags": {"brand": "NOZ", "brand:wikidata": "Q3345688", "brand:wikipedia": "fr:Noz", "name": "NOZ", "shop": "variety_store"}, "removeTags": {"brand": "NOZ", "brand:wikidata": "Q3345688", "brand:wikipedia": "fr:Noz", "name": "NOZ", "shop": "variety_store"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Poundland": {"name": "Poundland", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/933016190104096769/24M4_8NQ_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q1434528"}, "addTags": {"brand": "Poundland", "brand:wikidata": "Q1434528", "brand:wikipedia": "en:Poundland", "name": "Poundland", "shop": "variety_store"}, "removeTags": {"brand": "Poundland", "brand:wikidata": "Q1434528", "brand:wikipedia": "en:Poundland", "name": "Poundland", "shop": "variety_store"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Poundstretcher": {"name": "Poundstretcher", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/948143325160329216/rGVPFlFZ_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q7235675"}, "addTags": {"brand": "Poundstretcher", "brand:wikidata": "Q7235675", "brand:wikipedia": "en:Poundstretcher", "name": "Poundstretcher", "shop": "variety_store"}, "removeTags": {"brand": "Poundstretcher", "brand:wikidata": "Q7235675", "brand:wikipedia": "en:Poundstretcher", "name": "Poundstretcher", "shop": "variety_store"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Poundworld": {"name": "Poundworld", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q16967516"}, "addTags": {"brand": "Poundworld", "brand:wikidata": "Q16967516", "brand:wikipedia": "en:Poundworld", "name": "Poundworld", "shop": "variety_store"}, "removeTags": {"brand": "Poundworld", "brand:wikidata": "Q16967516", "brand:wikipedia": "en:Poundworld", "name": "Poundworld", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, + "shop/travel_agency/Reiseland": {"name": "Reiseland", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/reiseland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q40387610"}, "addTags": {"brand": "Reiseland", "brand:wikidata": "Q40387610", "brand:wikipedia": "de:OTTO Reisen", "name": "Reiseland", "shop": "travel_agency"}, "removeTags": {"brand": "Reiseland", "brand:wikidata": "Q40387610", "brand:wikipedia": "de:OTTO Reisen", "name": "Reiseland", "shop": "travel_agency"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/travel_agency/Selectour": {"name": "Selectour", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/SelectourVoyages/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q3478073"}, "addTags": {"brand": "Selectour", "brand:wikidata": "Q3478073", "brand:wikipedia": "fr:Selectour", "name": "Selectour", "shop": "travel_agency"}, "removeTags": {"brand": "Selectour", "brand:wikidata": "Q3478073", "brand:wikipedia": "fr:Selectour", "name": "Selectour", "shop": "travel_agency"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/travel_agency/TUI": {"name": "TUI", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/TUIDeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q573103"}, "addTags": {"brand": "TUI", "brand:wikidata": "Q573103", "brand:wikipedia": "en:TUI Group", "name": "TUI", "shop": "travel_agency"}, "removeTags": {"brand": "TUI", "brand:wikidata": "Q573103", "brand:wikipedia": "en:TUI Group", "name": "TUI", "shop": "travel_agency"}, "matchScore": 2, "suggestion": true}, + "shop/travel_agency/The Co-operative Travel": {"name": "The Co-operative Travel", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/cooperativetraveluk/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q7726526"}, "addTags": {"brand": "The Co-operative Travel", "brand:wikidata": "Q7726526", "brand:wikipedia": "en:The Co-operative Travel", "name": "The Co-operative Travel", "shop": "travel_agency"}, "removeTags": {"brand": "The Co-operative Travel", "brand:wikidata": "Q7726526", "brand:wikipedia": "en:The Co-operative Travel", "name": "The Co-operative Travel", "shop": "travel_agency"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/travel_agency/Thomas Cook": {"name": "Thomas Cook", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/thomascook/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q2141800"}, "addTags": {"brand": "Thomas Cook", "brand:wikidata": "Q2141800", "brand:wikipedia": "en:Thomas Cook Group", "name": "Thomas Cook", "shop": "travel_agency"}, "removeTags": {"brand": "Thomas Cook", "brand:wikidata": "Q2141800", "brand:wikipedia": "en:Thomas Cook Group", "name": "Thomas Cook", "shop": "travel_agency"}, "matchScore": 2, "suggestion": true}, + "shop/travel_agency/Thomson": {"name": "Thomson", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/worldofTUI/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q7795876"}, "addTags": {"brand": "Thomson", "brand:wikidata": "Q7795876", "brand:wikipedia": "en:TUI UK", "name": "Thomson", "shop": "travel_agency"}, "removeTags": {"brand": "Thomson", "brand:wikidata": "Q7795876", "brand:wikipedia": "en:TUI UK", "name": "Thomson", "shop": "travel_agency"}, "matchScore": 2, "suggestion": true}, + "shop/travel_agency/Поехали с нами": {"name": "Поехали с нами", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/PoehaliSNamiua/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q25439141"}, "addTags": {"brand": "Поехали с нами", "brand:wikidata": "Q25439141", "brand:wikipedia": "uk:Поїхали з нами", "name": "Поехали с нами", "shop": "travel_agency"}, "removeTags": {"brand": "Поехали с нами", "brand:wikidata": "Q25439141", "brand:wikipedia": "uk:Поїхали з нами", "name": "Поехали с нами", "shop": "travel_agency"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, + "shop/tyres/Big O Tires": {"name": "Big O Tires", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/BigOTires/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "tyres", "brand:wikidata": "Q4906085"}, "addTags": {"brand": "Big O Tires", "brand:wikidata": "Q4906085", "brand:wikipedia": "en:Big O Tires", "name": "Big O Tires", "shop": "tyres"}, "removeTags": {"brand": "Big O Tires", "brand:wikidata": "Q4906085", "brand:wikipedia": "en:Big O Tires", "name": "Big O Tires", "shop": "tyres"}, "matchScore": 2, "suggestion": true}, + "shop/tyres/Bridgestone": {"name": "Bridgestone", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/BridgestoneTires/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "tyres", "brand:wikidata": "Q179433"}, "addTags": {"brand": "Bridgestone", "brand:wikidata": "Q179433", "brand:wikipedia": "en:Bridgestone", "name": "Bridgestone", "shop": "tyres"}, "removeTags": {"brand": "Bridgestone", "brand:wikidata": "Q179433", "brand:wikipedia": "en:Bridgestone", "name": "Bridgestone", "shop": "tyres"}, "matchScore": 2, "suggestion": true}, + "shop/tyres/Discount Tire": {"name": "Discount Tire", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/DiscountTire/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "tyres", "brand:wikidata": "Q5281735"}, "addTags": {"brand": "Discount Tire", "brand:wikidata": "Q5281735", "brand:wikipedia": "en:Discount Tire", "name": "Discount Tire", "shop": "tyres"}, "removeTags": {"brand": "Discount Tire", "brand:wikidata": "Q5281735", "brand:wikipedia": "en:Discount Tire", "name": "Discount Tire", "shop": "tyres"}, "matchScore": 2, "suggestion": true}, + "shop/tyres/Express Oil Change & Tire Engineers": {"name": "Express Oil Change & Tire Engineers", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/expressoil/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "tyres", "brand:wikidata": "Q39057654"}, "addTags": {"brand": "Express Oil Change & Tire Engineers", "brand:wikidata": "Q39057654", "brand:wikipedia": "en:Express Oil Change & Tire Engineers", "name": "Express Oil Change & Tire Engineers", "shop": "tyres"}, "removeTags": {"brand": "Express Oil Change & Tire Engineers", "brand:wikidata": "Q39057654", "brand:wikipedia": "en:Express Oil Change & Tire Engineers", "name": "Express Oil Change & Tire Engineers", "shop": "tyres"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/tyres/Les Schwab Tire Center": {"name": "Les Schwab Tire Center", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/lesschwab/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "tyres", "brand:wikidata": "Q6529977"}, "addTags": {"brand": "Les Schwab Tire Center", "brand:wikidata": "Q6529977", "brand:wikipedia": "en:Les Schwab Tire Centers", "name": "Les Schwab Tire Center", "shop": "tyres"}, "removeTags": {"brand": "Les Schwab Tire Center", "brand:wikidata": "Q6529977", "brand:wikipedia": "en:Les Schwab Tire Centers", "name": "Les Schwab Tire Center", "shop": "tyres"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/tyres/Michelin": {"name": "Michelin", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/MichelinSustainableMobility/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "tyres", "brand:wikidata": "Q151107"}, "addTags": {"brand": "Michelin", "brand:wikidata": "Q151107", "brand:wikipedia": "en:Michelin", "name": "Michelin", "shop": "tyres"}, "removeTags": {"brand": "Michelin", "brand:wikidata": "Q151107", "brand:wikipedia": "en:Michelin", "name": "Michelin", "shop": "tyres"}, "matchScore": 2, "suggestion": true}, + "shop/tyres/Vianor": {"name": "Vianor", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/VianorNorthAmerica/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "tyres", "brand:wikidata": "Q10714920"}, "addTags": {"brand": "Vianor", "brand:wikidata": "Q10714920", "brand:wikipedia": "sv:Vianor", "name": "Vianor", "shop": "tyres"}, "removeTags": {"brand": "Vianor", "brand:wikidata": "Q10714920", "brand:wikipedia": "sv:Vianor", "name": "Vianor", "shop": "tyres"}, "matchScore": 2, "suggestion": true}, + "shop/variety_store/99 Cents Only Stores": {"name": "99 Cents Only Stores", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/99CentsOnly/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q4646294"}, "addTags": {"brand": "99 Cents Only Stores", "brand:wikidata": "Q4646294", "brand:wikipedia": "en:99 Cents Only Stores", "name": "99 Cents Only Stores", "shop": "variety_store"}, "removeTags": {"brand": "99 Cents Only Stores", "brand:wikidata": "Q4646294", "brand:wikipedia": "en:99 Cents Only Stores", "name": "99 Cents Only Stores", "shop": "variety_store"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/variety_store/Action": {"name": "Action", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/actiondotcom/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q2634111"}, "addTags": {"brand": "Action", "brand:wikidata": "Q2634111", "brand:wikipedia": "nl:Action (winkel)", "name": "Action", "shop": "variety_store"}, "removeTags": {"brand": "Action", "brand:wikidata": "Q2634111", "brand:wikipedia": "nl:Action (winkel)", "name": "Action", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, + "shop/variety_store/B&M Bargains": {"name": "B&M Bargains", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/bmstores/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q4836931"}, "addTags": {"brand": "B&M Bargains", "brand:wikidata": "Q4836931", "brand:wikipedia": "en:B & M", "name": "B&M Bargains", "shop": "variety_store"}, "removeTags": {"brand": "B&M Bargains", "brand:wikidata": "Q4836931", "brand:wikipedia": "en:B & M", "name": "B&M Bargains", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, + "shop/variety_store/Big Bazar": {"name": "Big Bazar", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/bigbazarbv/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q15873104"}, "addTags": {"brand": "Big Bazar", "brand:wikidata": "Q15873104", "brand:wikipedia": "nl:Big Bazar", "name": "Big Bazar", "shop": "variety_store"}, "removeTags": {"brand": "Big Bazar", "brand:wikidata": "Q15873104", "brand:wikipedia": "nl:Big Bazar", "name": "Big Bazar", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, + "shop/variety_store/Dollar General": {"name": "Dollar General", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/dollargeneral/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q145168"}, "addTags": {"brand": "Dollar General", "brand:wikidata": "Q145168", "brand:wikipedia": "en:Dollar General", "name": "Dollar General", "shop": "variety_store"}, "removeTags": {"brand": "Dollar General", "brand:wikidata": "Q145168", "brand:wikipedia": "en:Dollar General", "name": "Dollar General", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, + "shop/variety_store/Dollar Tree": {"name": "Dollar Tree", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/dollartree/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q5289230"}, "addTags": {"brand": "Dollar Tree", "brand:wikidata": "Q5289230", "brand:wikipedia": "en:Dollar Tree", "name": "Dollar Tree", "shop": "variety_store"}, "removeTags": {"brand": "Dollar Tree", "brand:wikidata": "Q5289230", "brand:wikipedia": "en:Dollar Tree", "name": "Dollar Tree", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, + "shop/variety_store/Dollarama": {"name": "Dollarama", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/415845051799232/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q3033947"}, "addTags": {"brand": "Dollarama", "brand:wikidata": "Q3033947", "brand:wikipedia": "en:Dollarama", "name": "Dollarama", "shop": "variety_store"}, "removeTags": {"brand": "Dollarama", "brand:wikidata": "Q3033947", "brand:wikipedia": "en:Dollarama", "name": "Dollarama", "shop": "variety_store"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/variety_store/Family Dollar": {"name": "Family Dollar", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/familydollar/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q5433101"}, "addTags": {"brand": "Family Dollar", "brand:wikidata": "Q5433101", "brand:wikipedia": "en:Family Dollar", "name": "Family Dollar", "shop": "variety_store"}, "removeTags": {"brand": "Family Dollar", "brand:wikidata": "Q5433101", "brand:wikipedia": "en:Family Dollar", "name": "Family Dollar", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, + "shop/variety_store/Five Below": {"name": "Five Below", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/FiveBelow/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q5455836"}, "addTags": {"brand": "Five Below", "brand:wikidata": "Q5455836", "brand:wikipedia": "en:Five Below", "name": "Five Below", "shop": "variety_store"}, "removeTags": {"brand": "Five Below", "brand:wikidata": "Q5455836", "brand:wikipedia": "en:Five Below", "name": "Five Below", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, + "shop/variety_store/Fix Price": {"name": "Fix Price", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/fixprice.russia/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q4038791"}, "addTags": {"brand": "Fix Price", "brand:wikidata": "Q4038791", "brand:wikipedia": "ru:Fix Price (сеть магазинов)", "name": "Fix Price", "shop": "variety_store"}, "removeTags": {"brand": "Fix Price", "brand:wikidata": "Q4038791", "brand:wikipedia": "ru:Fix Price (сеть магазинов)", "name": "Fix Price", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, + "shop/variety_store/GiFi": {"name": "GiFi", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/GiFi.Officiel/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q3105439"}, "addTags": {"brand": "GiFi", "brand:wikidata": "Q3105439", "brand:wikipedia": "fr:Gifi", "name": "GiFi", "shop": "variety_store"}, "removeTags": {"brand": "GiFi", "brand:wikidata": "Q3105439", "brand:wikipedia": "fr:Gifi", "name": "GiFi", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, + "shop/variety_store/Home Bargains": {"name": "Home Bargains", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/homebargains/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q5888229"}, "addTags": {"brand": "Home Bargains", "brand:wikidata": "Q5888229", "brand:wikipedia": "en:Home Bargains", "name": "Home Bargains", "shop": "variety_store"}, "removeTags": {"brand": "Home Bargains", "brand:wikidata": "Q5888229", "brand:wikipedia": "en:Home Bargains", "name": "Home Bargains", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, + "shop/variety_store/Mäc-Geiz": {"name": "Mäc-Geiz", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/1652809328274529/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q1957126"}, "addTags": {"brand": "Mäc-Geiz", "brand:wikidata": "Q1957126", "brand:wikipedia": "de:Mäc-Geiz", "name": "Mäc-Geiz", "shop": "variety_store"}, "removeTags": {"brand": "Mäc-Geiz", "brand:wikidata": "Q1957126", "brand:wikipedia": "de:Mäc-Geiz", "name": "Mäc-Geiz", "shop": "variety_store"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/variety_store/NOZ": {"name": "NOZ", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/UniversNOZ/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q3345688"}, "addTags": {"brand": "NOZ", "brand:wikidata": "Q3345688", "brand:wikipedia": "fr:Noz", "name": "NOZ", "shop": "variety_store"}, "removeTags": {"brand": "NOZ", "brand:wikidata": "Q3345688", "brand:wikipedia": "fr:Noz", "name": "NOZ", "shop": "variety_store"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/variety_store/Poundland": {"name": "Poundland", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Poundland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q1434528"}, "addTags": {"brand": "Poundland", "brand:wikidata": "Q1434528", "brand:wikipedia": "en:Poundland", "name": "Poundland", "shop": "variety_store"}, "removeTags": {"brand": "Poundland", "brand:wikidata": "Q1434528", "brand:wikipedia": "en:Poundland", "name": "Poundland", "shop": "variety_store"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/variety_store/Poundstretcher": {"name": "Poundstretcher", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Poundstretcher/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q7235675"}, "addTags": {"brand": "Poundstretcher", "brand:wikidata": "Q7235675", "brand:wikipedia": "en:Poundstretcher", "name": "Poundstretcher", "shop": "variety_store"}, "removeTags": {"brand": "Poundstretcher", "brand:wikidata": "Q7235675", "brand:wikipedia": "en:Poundstretcher", "name": "Poundstretcher", "shop": "variety_store"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/variety_store/Poundworld": {"name": "Poundworld", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/PoundWorld/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q16967516"}, "addTags": {"brand": "Poundworld", "brand:wikidata": "Q16967516", "brand:wikipedia": "en:Poundworld", "name": "Poundworld", "shop": "variety_store"}, "removeTags": {"brand": "Poundworld", "brand:wikidata": "Q16967516", "brand:wikipedia": "en:Poundworld", "name": "Poundworld", "shop": "variety_store"}, "matchScore": 2, "suggestion": true}, "shop/variety_store/TEDi": {"name": "TEDi", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTEDi-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q1364603"}, "addTags": {"brand": "TEDi", "brand:wikidata": "Q1364603", "brand:wikipedia": "de:TEDi", "name": "TEDi", "shop": "variety_store"}, "removeTags": {"brand": "TEDi", "brand:wikidata": "Q1364603", "brand:wikipedia": "de:TEDi", "name": "TEDi", "shop": "variety_store"}, "countryCodes": ["at", "de", "es", "hr", "si", "sk"], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Tokmanni": {"name": "Tokmanni", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q13423470"}, "addTags": {"brand": "Tokmanni", "brand:wikidata": "Q13423470", "brand:wikipedia": "fi:Tokmanni", "name": "Tokmanni", "shop": "variety_store"}, "removeTags": {"brand": "Tokmanni", "brand:wikidata": "Q13423470", "brand:wikipedia": "fi:Tokmanni", "name": "Tokmanni", "shop": "variety_store"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Wilko": {"name": "Wilko", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1018756618635431936/9rRo7jvO_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q8002536"}, "addTags": {"brand": "Wilko", "brand:wikidata": "Q8002536", "brand:wikipedia": "en:Wilko (retailer)", "name": "Wilko", "shop": "variety_store"}, "removeTags": {"brand": "Wilko", "brand:wikidata": "Q8002536", "brand:wikipedia": "en:Wilko (retailer)", "name": "Wilko", "shop": "variety_store"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/variety_store/キャンドゥ": {"name": "キャンドゥ", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q11297367"}, "addTags": {"brand": "キャンドゥ", "brand:en": "CAN DO", "brand:ja": "キャンドゥ", "brand:wikidata": "Q11297367", "brand:wikipedia": "ja:キャンドゥ", "name": "キャンドゥ", "name:en": "CAN DO", "name:ja": "キャンドゥ", "shop": "variety_store"}, "removeTags": {"brand": "キャンドゥ", "brand:en": "CAN DO", "brand:ja": "キャンドゥ", "brand:wikidata": "Q11297367", "brand:wikipedia": "ja:キャンドゥ", "name": "キャンドゥ", "name:en": "CAN DO", "name:ja": "キャンドゥ", "shop": "variety_store"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/variety_store/Tokmanni": {"name": "Tokmanni", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Tokmanni.fi/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q13423470"}, "addTags": {"brand": "Tokmanni", "brand:wikidata": "Q13423470", "brand:wikipedia": "fi:Tokmanni", "name": "Tokmanni", "shop": "variety_store"}, "removeTags": {"brand": "Tokmanni", "brand:wikidata": "Q13423470", "brand:wikipedia": "fi:Tokmanni", "name": "Tokmanni", "shop": "variety_store"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, + "shop/variety_store/Wilko": {"name": "Wilko", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/LoveWilko/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q8002536"}, "addTags": {"brand": "Wilko", "brand:wikidata": "Q8002536", "brand:wikipedia": "en:Wilko (retailer)", "name": "Wilko", "shop": "variety_store"}, "removeTags": {"brand": "Wilko", "brand:wikidata": "Q8002536", "brand:wikipedia": "en:Wilko (retailer)", "name": "Wilko", "shop": "variety_store"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/variety_store/キャンドゥ": {"name": "キャンドゥ", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/986887047209091072/PPjs7xOK_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q11297367"}, "addTags": {"brand": "キャンドゥ", "brand:en": "CAN DO", "brand:ja": "キャンドゥ", "brand:wikidata": "Q11297367", "brand:wikipedia": "ja:キャンドゥ", "name": "キャンドゥ", "name:en": "CAN DO", "name:ja": "キャンドゥ", "shop": "variety_store"}, "removeTags": {"brand": "キャンドゥ", "brand:en": "CAN DO", "brand:ja": "キャンドゥ", "brand:wikidata": "Q11297367", "brand:wikipedia": "ja:キャンドゥ", "name": "キャンドゥ", "name:en": "CAN DO", "name:ja": "キャンドゥ", "shop": "variety_store"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/variety_store/セリア": {"name": "セリア", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSeria%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q11314509"}, "addTags": {"brand": "セリア", "brand:en": "Seria", "brand:ja": "セリア", "brand:wikidata": "Q11314509", "brand:wikipedia": "ja:セリア (100円ショップ)", "name": "セリア", "name:en": "Seria", "name:ja": "セリア", "shop": "variety_store"}, "removeTags": {"brand": "セリア", "brand:en": "Seria", "brand:ja": "セリア", "brand:wikidata": "Q11314509", "brand:wikipedia": "ja:セリア (100円ショップ)", "name": "セリア", "name:en": "Seria", "name:ja": "セリア", "shop": "variety_store"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/variety_store/ダイソー": {"name": "ダイソー", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1102749621086875648/YGTdOo9__bigger.png", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q866991"}, "addTags": {"brand": "ダイソー", "brand:en": "Daiso", "brand:ja": "ダイソー", "brand:wikidata": "Q866991", "brand:wikipedia": "ja:大創産業", "name": "ダイソー", "name:en": "Daiso", "name:ja": "ダイソー", "shop": "variety_store"}, "removeTags": {"brand": "ダイソー", "brand:en": "Daiso", "brand:ja": "ダイソー", "brand:wikidata": "Q866991", "brand:wikipedia": "ja:大創産業", "name": "ダイソー", "name:en": "Daiso", "name:ja": "ダイソー", "shop": "variety_store"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/variety_store/ダイソー": {"name": "ダイソー", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/daisojapanusa/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q866991"}, "addTags": {"brand": "ダイソー", "brand:en": "Daiso", "brand:ja": "ダイソー", "brand:wikidata": "Q866991", "brand:wikipedia": "ja:大創産業", "name": "ダイソー", "name:en": "Daiso", "name:ja": "ダイソー", "shop": "variety_store"}, "removeTags": {"brand": "ダイソー", "brand:en": "Daiso", "brand:ja": "ダイソー", "brand:wikidata": "Q866991", "brand:wikipedia": "ja:大創産業", "name": "ダイソー", "name:en": "Daiso", "name:ja": "ダイソー", "shop": "variety_store"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/variety_store/ドン・キホーテ": {"name": "ドン・キホーテ", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1098907826305421312/KCKaI33I_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "variety_store", "brand:wikidata": "Q1185381"}, "addTags": {"brand": "ドン・キホーテ", "brand:en": "Don Quijote", "brand:ja": "ドン・キホーテ", "brand:wikidata": "Q1185381", "brand:wikipedia": "ja:ドン・キホーテ (企業)", "name": "ドン・キホーテ", "name:en": "Don Quijote", "name:ja": "ドン・キホーテ", "shop": "variety_store", "short_name": "ドンキ", "short_name:en": "Donki", "short_name:ja": "ドンキ"}, "removeTags": {"brand": "ドン・キホーテ", "brand:en": "Don Quijote", "brand:ja": "ドン・キホーテ", "brand:wikidata": "Q1185381", "brand:wikipedia": "ja:ドン・キホーテ (企業)", "name": "ドン・キホーテ", "name:en": "Don Quijote", "name:ja": "ドン・キホーテ", "shop": "variety_store", "short_name": "ドンキ", "short_name:en": "Donki", "short_name:ja": "ドンキ"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/video_games/EB Games": {"name": "EB Games", "icon": "maki-gaming", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20of%20EB%20Games.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "video_games", "brand:wikidata": "Q4993686"}, "addTags": {"brand": "EB Games", "brand:wikidata": "Q4993686", "brand:wikipedia": "en:EB Games", "name": "EB Games", "shop": "video_games"}, "removeTags": {"brand": "EB Games", "brand:wikidata": "Q4993686", "brand:wikipedia": "en:EB Games", "name": "EB Games", "shop": "video_games"}, "matchScore": 2, "suggestion": true}, - "shop/video_games/GameStop": {"name": "GameStop", "icon": "maki-gaming", "imageURL": "https://pbs.twimg.com/profile_images/1034554730691743744/rei9Hx_U_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "video_games", "brand:wikidata": "Q202210"}, "addTags": {"brand": "GameStop", "brand:wikidata": "Q202210", "brand:wikipedia": "en:GameStop", "name": "GameStop", "shop": "video_games"}, "removeTags": {"brand": "GameStop", "brand:wikidata": "Q202210", "brand:wikipedia": "en:GameStop", "name": "GameStop", "shop": "video_games"}, "matchScore": 2, "suggestion": true}, - "shop/video_games/Micromania": {"name": "Micromania", "icon": "maki-gaming", "geometry": ["point", "area"], "tags": {"shop": "video_games", "brand:wikidata": "Q3312221"}, "addTags": {"brand": "Micromania", "brand:wikidata": "Q3312221", "brand:wikipedia": "en:Micromania (video game retailer)", "name": "Micromania", "shop": "video_games"}, "removeTags": {"brand": "Micromania", "brand:wikidata": "Q3312221", "brand:wikipedia": "en:Micromania (video game retailer)", "name": "Micromania", "shop": "video_games"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/video/Blockbuster": {"name": "Blockbuster", "icon": "temaki-movie_rental", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBlockbuster%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "video", "brand:wikidata": "Q884711"}, "addTags": {"brand": "Blockbuster", "brand:wikidata": "Q884711", "brand:wikipedia": "en:Blockbuster LLC", "name": "Blockbuster", "shop": "video"}, "removeTags": {"brand": "Blockbuster", "brand:wikidata": "Q884711", "brand:wikipedia": "en:Blockbuster LLC", "name": "Blockbuster", "shop": "video"}, "matchScore": 2, "suggestion": true}, - "shop/video/Family Video": {"name": "Family Video", "icon": "temaki-movie_rental", "geometry": ["point", "area"], "tags": {"shop": "video", "brand:wikidata": "Q5433297"}, "addTags": {"brand": "Family Video", "brand:wikidata": "Q5433297", "brand:wikipedia": "en:Family Video", "name": "Family Video", "shop": "video"}, "removeTags": {"brand": "Family Video", "brand:wikidata": "Q5433297", "brand:wikipedia": "en:Family Video", "name": "Family Video", "shop": "video"}, "matchScore": 2, "suggestion": true}, - "shop/video/TSUTAYA": {"name": "TSUTAYA", "icon": "temaki-movie_rental", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCulture%20Convenience%20Club%20(CCC)%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "video", "brand:wikidata": "Q5193457"}, "addTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "video"}, "removeTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "video"}, "matchScore": 2, "suggestion": true}, - "shop/video/ゲオ": {"name": "ゲオ", "icon": "temaki-movie_rental", "geometry": ["point", "area"], "tags": {"shop": "video", "brand:wikidata": "Q5533938"}, "addTags": {"brand": "GEO", "brand:ja": "GEO", "brand:wikidata": "Q5533938", "brand:wikipedia": "ja:ゲオ", "name": "ゲオ", "name:en": "GEO", "name:ja": "ゲオ", "shop": "video"}, "removeTags": {"brand": "GEO", "brand:ja": "GEO", "brand:wikidata": "Q5533938", "brand:wikipedia": "ja:ゲオ", "name": "ゲオ", "name:en": "GEO", "name:ja": "ゲオ", "shop": "video"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/video_games/EB Games": {"name": "EB Games", "icon": "maki-gaming", "imageURL": "https://graph.facebook.com/ebgamescanada/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "video_games", "brand:wikidata": "Q4993686"}, "addTags": {"brand": "EB Games", "brand:wikidata": "Q4993686", "brand:wikipedia": "en:EB Games", "name": "EB Games", "shop": "video_games"}, "removeTags": {"brand": "EB Games", "brand:wikidata": "Q4993686", "brand:wikipedia": "en:EB Games", "name": "EB Games", "shop": "video_games"}, "matchScore": 2, "suggestion": true}, + "shop/video_games/GameStop": {"name": "GameStop", "icon": "maki-gaming", "imageURL": "https://graph.facebook.com/GameStop/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "video_games", "brand:wikidata": "Q202210"}, "addTags": {"brand": "GameStop", "brand:wikidata": "Q202210", "brand:wikipedia": "en:GameStop", "name": "GameStop", "shop": "video_games"}, "removeTags": {"brand": "GameStop", "brand:wikidata": "Q202210", "brand:wikipedia": "en:GameStop", "name": "GameStop", "shop": "video_games"}, "matchScore": 2, "suggestion": true}, + "shop/video_games/Micromania": {"name": "Micromania", "icon": "maki-gaming", "imageURL": "https://graph.facebook.com/MicromaniaFr/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "video_games", "brand:wikidata": "Q3312221"}, "addTags": {"brand": "Micromania", "brand:wikidata": "Q3312221", "brand:wikipedia": "en:Micromania (video game retailer)", "name": "Micromania", "shop": "video_games"}, "removeTags": {"brand": "Micromania", "brand:wikidata": "Q3312221", "brand:wikipedia": "en:Micromania (video game retailer)", "name": "Micromania", "shop": "video_games"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/video/Blockbuster": {"name": "Blockbuster", "icon": "temaki-movie_rental", "imageURL": "https://graph.facebook.com/blockbuster/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "video", "brand:wikidata": "Q884711"}, "addTags": {"brand": "Blockbuster", "brand:wikidata": "Q884711", "brand:wikipedia": "en:Blockbuster LLC", "name": "Blockbuster", "shop": "video"}, "removeTags": {"brand": "Blockbuster", "brand:wikidata": "Q884711", "brand:wikipedia": "en:Blockbuster LLC", "name": "Blockbuster", "shop": "video"}, "matchScore": 2, "suggestion": true}, + "shop/video/Family Video": {"name": "Family Video", "icon": "temaki-movie_rental", "imageURL": "https://graph.facebook.com/FamilyVideo/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "video", "brand:wikidata": "Q5433297"}, "addTags": {"brand": "Family Video", "brand:wikidata": "Q5433297", "brand:wikipedia": "en:Family Video", "name": "Family Video", "shop": "video"}, "removeTags": {"brand": "Family Video", "brand:wikidata": "Q5433297", "brand:wikipedia": "en:Family Video", "name": "Family Video", "shop": "video"}, "matchScore": 2, "suggestion": true}, + "shop/video/TSUTAYA": {"name": "TSUTAYA", "icon": "temaki-movie_rental", "imageURL": "https://pbs.twimg.com/profile_images/1016247734720851968/R9agm3pA_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "video", "brand:wikidata": "Q5193457"}, "addTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "video"}, "removeTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "video"}, "matchScore": 2, "suggestion": true}, + "shop/video/ゲオ": {"name": "ゲオ", "icon": "temaki-movie_rental", "imageURL": "https://graph.facebook.com/geomediashop/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "video", "brand:wikidata": "Q5533938"}, "addTags": {"brand": "GEO", "brand:ja": "GEO", "brand:wikidata": "Q5533938", "brand:wikipedia": "ja:ゲオ", "name": "ゲオ", "name:en": "GEO", "name:ja": "ゲオ", "shop": "video"}, "removeTags": {"brand": "GEO", "brand:ja": "GEO", "brand:wikidata": "Q5533938", "brand:wikipedia": "ja:ゲオ", "name": "ゲオ", "name:en": "GEO", "name:ja": "ゲオ", "shop": "video"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/watches/Fossil": {"name": "Fossil", "icon": "maki-watch", "imageURL": "https://graph.facebook.com/Fossil/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "watches", "brand:wikidata": "Q356212"}, "addTags": {"brand": "Fossil", "brand:wikidata": "Q356212", "brand:wikipedia": "en:Fossil Group", "name": "Fossil", "shop": "watches"}, "removeTags": {"brand": "Fossil", "brand:wikidata": "Q356212", "brand:wikipedia": "en:Fossil Group", "name": "Fossil", "shop": "watches"}, "matchScore": 2, "suggestion": true}, "shop/watches/Swatch": {"name": "Swatch", "icon": "maki-watch", "imageURL": "https://graph.facebook.com/SwatchUS/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "watches", "brand:wikidata": "Q573422"}, "addTags": {"brand": "Swatch", "brand:wikidata": "Q573422", "brand:wikipedia": "en:Swatch", "name": "Swatch", "shop": "watches"}, "removeTags": {"brand": "Swatch", "brand:wikidata": "Q573422", "brand:wikipedia": "en:Swatch", "name": "Swatch", "shop": "watches"}, "matchScore": 2, "suggestion": true}, "shop/wholesale/BJ's Wholesale Club": {"name": "BJ's Wholesale Club", "icon": "maki-warehouse", "imageURL": "https://graph.facebook.com/bjswholesaleclub/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "wholesale", "brand:wikidata": "Q4835754"}, "addTags": {"brand": "BJ's Wholesale Club", "brand:wikidata": "Q4835754", "brand:wikipedia": "en:BJ's Wholesale Club", "name": "BJ's Wholesale Club", "operator": "BJ's Wholesale Club", "shop": "wholesale"}, "removeTags": {"brand": "BJ's Wholesale Club", "brand:wikidata": "Q4835754", "brand:wikipedia": "en:BJ's Wholesale Club", "name": "BJ's Wholesale Club", "operator": "BJ's Wholesale Club", "shop": "wholesale"}, "matchScore": 2, "suggestion": true}, "shop/wholesale/Costco": {"name": "Costco", "icon": "maki-warehouse", "imageURL": "https://graph.facebook.com/Costco/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "wholesale", "brand:wikidata": "Q715583"}, "addTags": {"brand": "Costco", "brand:wikidata": "Q715583", "brand:wikipedia": "en:Costco", "name": "Costco", "operator": "Costco", "shop": "wholesale"}, "removeTags": {"brand": "Costco", "brand:wikidata": "Q715583", "brand:wikipedia": "en:Costco", "name": "Costco", "operator": "Costco", "shop": "wholesale"}, "matchScore": 2, "suggestion": true}, "shop/wholesale/Makro": {"name": "Makro", "icon": "maki-warehouse", "imageURL": "https://graph.facebook.com/makrohipermayorista/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "wholesale", "brand:wikidata": "Q704606"}, "addTags": {"brand": "Makro", "brand:wikidata": "Q704606", "brand:wikipedia": "en:Makro", "name": "Makro", "shop": "wholesale"}, "removeTags": {"brand": "Makro", "brand:wikidata": "Q704606", "brand:wikipedia": "en:Makro", "name": "Makro", "shop": "wholesale"}, "matchScore": 2, "suggestion": true}, - "shop/wholesale/Metro": {"name": "Metro", "icon": "maki-warehouse", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMetroC%2BC-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "wholesale", "brand:wikidata": "Q13610282"}, "addTags": {"brand": "Metro", "brand:wikidata": "Q13610282", "brand:wikipedia": "en:Metro Cash and Carry", "name": "Metro", "shop": "wholesale"}, "removeTags": {"brand": "Metro", "brand:wikidata": "Q13610282", "brand:wikipedia": "en:Metro Cash and Carry", "name": "Metro", "shop": "wholesale"}, "matchScore": 2, "suggestion": true}, + "shop/wholesale/Metro": {"name": "Metro", "icon": "maki-warehouse", "imageURL": "https://graph.facebook.com/metro.deutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "wholesale", "brand:wikidata": "Q13610282"}, "addTags": {"brand": "Metro", "brand:wikidata": "Q13610282", "brand:wikipedia": "en:Metro Cash and Carry", "name": "Metro", "shop": "wholesale"}, "removeTags": {"brand": "Metro", "brand:wikidata": "Q13610282", "brand:wikipedia": "en:Metro Cash and Carry", "name": "Metro", "shop": "wholesale"}, "matchScore": 2, "suggestion": true}, "shop/wholesale/Sam's Club": {"name": "Sam's Club", "icon": "maki-warehouse", "imageURL": "https://graph.facebook.com/samsclub/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "wholesale", "brand:wikidata": "Q1972120"}, "addTags": {"brand": "Sam's Club", "brand:wikidata": "Q1972120", "brand:wikipedia": "en:Sam's Club", "name": "Sam's Club", "operator": "Walmart", "operator:wikidata": "Q483551", "operator:wikipedia": "en:Walmart", "shop": "wholesale"}, "removeTags": {"brand": "Sam's Club", "brand:wikidata": "Q1972120", "brand:wikipedia": "en:Sam's Club", "name": "Sam's Club", "operator": "Walmart", "operator:wikidata": "Q483551", "operator:wikipedia": "en:Walmart", "shop": "wholesale"}, "matchScore": 2, "suggestion": true}, - "shop/wholesale/コストコ": {"name": "コストコ", "icon": "maki-warehouse", "imageURL": "https://graph.facebook.com/Costco/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "wholesale", "brand:wikidata": "Q715583"}, "addTags": {"brand": "コストコ", "brand:en": "Costco", "brand:wikidata": "Q715583", "brand:wikipedia": "ja:コストコ", "name": "コストコ", "name:en": "Costco", "operator": "コストコホールセールジャパン株式会社", "operator:en": "Costco Wholesale Japan Co., Ltd.", "shop": "wholesale"}, "removeTags": {"brand": "コストコ", "brand:en": "Costco", "brand:wikidata": "Q715583", "brand:wikipedia": "ja:コストコ", "name": "コストコ", "name:en": "Costco", "operator": "コストコホールセールジャパン株式会社", "operator:en": "Costco Wholesale Japan Co., Ltd.", "shop": "wholesale"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/B&B Hôtel": {"name": "B&B Hôtel", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20B%26B%20Hotels.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q794939"}, "addTags": {"brand": "B&B Hôtel", "brand:wikidata": "Q794939", "brand:wikipedia": "en:B&B Hotels", "name": "B&B Hôtel", "tourism": "hotel"}, "removeTags": {"brand": "B&B Hôtel", "brand:wikidata": "Q794939", "brand:wikipedia": "en:B&B Hotels", "name": "B&B Hôtel", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Best Western": {"name": "Best Western", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBW%20Master%20Brand%20Logo%20RGB%20300%20DPI.jpg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q830334"}, "addTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western", "tourism": "hotel"}, "removeTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Best Western Plus": {"name": "Best Western Plus", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBW%20Master%20Brand%20Logo%20RGB%20300%20DPI.jpg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q830334"}, "addTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western Plus", "tourism": "hotel"}, "removeTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western Plus", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Campanile": {"name": "Campanile", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2412064"}, "addTags": {"brand": "Campanile", "brand:wikidata": "Q2412064", "brand:wikipedia": "fr:Campanile (chaîne d'hôtels)", "name": "Campanile", "tourism": "hotel"}, "removeTags": {"brand": "Campanile", "brand:wikidata": "Q2412064", "brand:wikipedia": "fr:Campanile (chaîne d'hôtels)", "name": "Campanile", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Candlewood Suites": {"name": "Candlewood Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5032010"}, "addTags": {"brand": "Candlewood Suites", "brand:wikidata": "Q5032010", "brand:wikipedia": "en:Candlewood Suites", "name": "Candlewood Suites", "tourism": "hotel"}, "removeTags": {"brand": "Candlewood Suites", "brand:wikidata": "Q5032010", "brand:wikipedia": "en:Candlewood Suites", "name": "Candlewood Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Comfort Inn": {"name": "Comfort Inn", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Comfort Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn", "tourism": "hotel"}, "removeTags": {"brand": "Comfort Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Comfort Inn & Suites": {"name": "Comfort Inn & Suites", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Comfort Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn & Suites", "tourism": "hotel"}, "removeTags": {"brand": "Comfort Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn & Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Comfort Suites": {"name": "Comfort Suites", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Comfort Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Suites", "tourism": "hotel"}, "removeTags": {"brand": "Comfort Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Country Inn & Suites": {"name": "Country Inn & Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5177332"}, "addTags": {"brand": "Country Inn & Suites", "brand:wikidata": "Q5177332", "brand:wikipedia": "en:Country Inns & Suites", "name": "Country Inn & Suites", "tourism": "hotel"}, "removeTags": {"brand": "Country Inn & Suites", "brand:wikidata": "Q5177332", "brand:wikipedia": "en:Country Inns & Suites", "name": "Country Inn & Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Courtyard by Marriott": {"name": "Courtyard by Marriott", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1053170"}, "addTags": {"brand": "Courtyard by Marriott", "brand:wikidata": "Q1053170", "brand:wikipedia": "en:Courtyard by Marriott", "name": "Courtyard by Marriott", "tourism": "hotel"}, "removeTags": {"brand": "Courtyard by Marriott", "brand:wikidata": "Q1053170", "brand:wikipedia": "en:Courtyard by Marriott", "name": "Courtyard by Marriott", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Crowne Plaza": {"name": "Crowne Plaza", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCrowne%20Plaza%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2746220"}, "addTags": {"brand": "Crowne Plaza", "brand:wikidata": "Q2746220", "brand:wikipedia": "en:Crowne Plaza", "name": "Crowne Plaza", "tourism": "hotel"}, "removeTags": {"brand": "Crowne Plaza", "brand:wikidata": "Q2746220", "brand:wikipedia": "en:Crowne Plaza", "name": "Crowne Plaza", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Days Inn": {"name": "Days Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1047239"}, "addTags": {"brand": "Days Inn", "brand:wikidata": "Q1047239", "brand:wikipedia": "en:Days Inn", "name": "Days Inn", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "removeTags": {"brand": "Days Inn", "brand:wikidata": "Q1047239", "brand:wikipedia": "en:Days Inn", "name": "Days Inn", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Embassy Suites": {"name": "Embassy Suites", "icon": "maki-lodging", "imageURL": "https://pbs.twimg.com/profile_images/1100115322592550914/7d8AToeH_bigger.png", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5369524"}, "addTags": {"brand": "Embassy Suites", "brand:wikidata": "Q5369524", "brand:wikipedia": "en:Embassy Suites by Hilton", "name": "Embassy Suites", "tourism": "hotel"}, "removeTags": {"brand": "Embassy Suites", "brand:wikidata": "Q5369524", "brand:wikipedia": "en:Embassy Suites by Hilton", "name": "Embassy Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Extended Stay America": {"name": "Extended Stay America", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5421850"}, "addTags": {"brand": "Extended Stay America", "brand:wikidata": "Q5421850", "brand:wikipedia": "en:Extended Stay America", "name": "Extended Stay America", "tourism": "hotel"}, "removeTags": {"brand": "Extended Stay America", "brand:wikidata": "Q5421850", "brand:wikipedia": "en:Extended Stay America", "name": "Extended Stay America", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Fairfield Inn": {"name": "Fairfield Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5430314"}, "addTags": {"brand": "Fairfield Inn", "brand:wikidata": "Q5430314", "brand:wikipedia": "en:Fairfield Inn by Marriott", "name": "Fairfield Inn", "tourism": "hotel"}, "removeTags": {"brand": "Fairfield Inn", "brand:wikidata": "Q5430314", "brand:wikipedia": "en:Fairfield Inn by Marriott", "name": "Fairfield Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Formule 1": {"name": "Formule 1", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHotel%20F1%20Logo%202007.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1630895"}, "addTags": {"brand": "Formule 1", "brand:wikidata": "Q1630895", "brand:wikipedia": "en:Hotel Formule 1", "name": "Formule 1", "tourism": "hotel"}, "removeTags": {"brand": "Formule 1", "brand:wikidata": "Q1630895", "brand:wikipedia": "en:Hotel Formule 1", "name": "Formule 1", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Grand Hyatt": {"name": "Grand Hyatt", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Grand Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Grand Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Grand Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Grand Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hampton Inn": {"name": "Hampton Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5646230"}, "addTags": {"brand": "Hampton Inn", "brand:wikidata": "Q5646230", "brand:wikipedia": "en:Hampton by Hilton", "name": "Hampton Inn", "tourism": "hotel"}, "removeTags": {"brand": "Hampton Inn", "brand:wikidata": "Q5646230", "brand:wikipedia": "en:Hampton by Hilton", "name": "Hampton Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hilton": {"name": "Hilton", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHI%20mk%20logo%20hiltonbrandlogo.jpg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q598884"}, "addTags": {"brand": "Hilton", "brand:wikidata": "Q598884", "brand:wikipedia": "en:Hilton Hotels & Resorts", "name": "Hilton", "tourism": "hotel"}, "removeTags": {"brand": "Hilton", "brand:wikidata": "Q598884", "brand:wikipedia": "en:Hilton Hotels & Resorts", "name": "Hilton", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hilton Garden Inn": {"name": "Hilton Garden Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1162859"}, "addTags": {"brand": "Hilton Garden Inn", "brand:wikidata": "Q1162859", "brand:wikipedia": "en:Hilton Garden Inn", "name": "Hilton Garden Inn", "tourism": "hotel"}, "removeTags": {"brand": "Hilton Garden Inn", "brand:wikidata": "Q1162859", "brand:wikipedia": "en:Hilton Garden Inn", "name": "Hilton Garden Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Holiday Inn": {"name": "Holiday Inn", "icon": "maki-lodging", "imageURL": "https://pbs.twimg.com/profile_images/926089732181782528/P85q5zmy_bigger.jpg", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2717882"}, "addTags": {"brand": "Holiday Inn", "brand:wikidata": "Q2717882", "brand:wikipedia": "en:Holiday Inn", "name": "Holiday Inn", "tourism": "hotel"}, "removeTags": {"brand": "Holiday Inn", "brand:wikidata": "Q2717882", "brand:wikipedia": "en:Holiday Inn", "name": "Holiday Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Holiday Inn Express": {"name": "Holiday Inn Express", "icon": "maki-lodging", "imageURL": "https://pbs.twimg.com/profile_images/877546729587048448/4Ce2CMr1_bigger.jpg", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5880423"}, "addTags": {"brand": "Holiday Inn Express", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express", "tourism": "hotel"}, "removeTags": {"brand": "Holiday Inn Express", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Holiday Inn Express & Suites": {"name": "Holiday Inn Express & Suites", "icon": "maki-lodging", "imageURL": "https://pbs.twimg.com/profile_images/877546729587048448/4Ce2CMr1_bigger.jpg", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5880423"}, "addTags": {"brand": "Holiday Inn Express & Suites", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express & Suites", "tourism": "hotel"}, "removeTags": {"brand": "Holiday Inn Express & Suites", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express & Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Homewood Suites": {"name": "Homewood Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5890701"}, "addTags": {"brand": "Homewood Suites", "brand:wikidata": "Q5890701", "brand:wikipedia": "en:Homewood Suites by Hilton", "name": "Homewood Suites", "tourism": "hotel"}, "removeTags": {"brand": "Homewood Suites", "brand:wikidata": "Q5890701", "brand:wikipedia": "en:Homewood Suites by Hilton", "name": "Homewood Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hyatt": {"name": "Hyatt", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hyatt Centric": {"name": "Hyatt Centric", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt Centric", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Centric", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt Centric", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Centric", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hyatt House": {"name": "Hyatt House", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt House", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt House", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt House", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt House", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hyatt Place": {"name": "Hyatt Place", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Place", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Place", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hyatt Regency": {"name": "Hyatt Regency", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt Regency", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Regency", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt Regency", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Regency", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Ibis": {"name": "Ibis", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FIbis%20Hotel%20Logo%202016.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q920166"}, "addTags": {"brand": "Ibis", "brand:wikidata": "Q920166", "brand:wikipedia": "en:Ibis (hotel)", "name": "Ibis", "tourism": "hotel"}, "removeTags": {"brand": "Ibis", "brand:wikidata": "Q920166", "brand:wikipedia": "en:Ibis (hotel)", "name": "Ibis", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Ibis Budget": {"name": "Ibis Budget", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1458135"}, "addTags": {"brand": "Ibis Budget", "brand:wikidata": "Q1458135", "brand:wikipedia": "en:Ibis Budget", "name": "Ibis Budget", "tourism": "hotel"}, "removeTags": {"brand": "Ibis Budget", "brand:wikidata": "Q1458135", "brand:wikipedia": "en:Ibis Budget", "name": "Ibis Budget", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Ibis Styles": {"name": "Ibis Styles", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q3147425"}, "addTags": {"brand": "Ibis Styles", "brand:wikidata": "Q3147425", "brand:wikipedia": "en:Ibis Styles", "name": "Ibis Styles", "tourism": "hotel"}, "removeTags": {"brand": "Ibis Styles", "brand:wikidata": "Q3147425", "brand:wikipedia": "en:Ibis Styles", "name": "Ibis Styles", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Kyriad": {"name": "Kyriad", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q11751808"}, "addTags": {"brand": "Kyriad", "brand:wikidata": "Q11751808", "brand:wikipedia": "pl:Kyriad", "name": "Kyriad", "tourism": "hotel"}, "removeTags": {"brand": "Kyriad", "brand:wikidata": "Q11751808", "brand:wikipedia": "pl:Kyriad", "name": "Kyriad", "tourism": "hotel"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/La Quinta": {"name": "La Quinta", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q6464734"}, "addTags": {"brand": "La Quinta", "brand:wikidata": "Q6464734", "brand:wikipedia": "en:La Quinta Inns & Suites", "name": "La Quinta", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "removeTags": {"brand": "La Quinta", "brand:wikidata": "Q6464734", "brand:wikipedia": "en:La Quinta Inns & Suites", "name": "La Quinta", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "shop/wholesale/コストコ": {"name": "コストコ", "icon": "maki-warehouse", "imageURL": "https://graph.facebook.com/Costco/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "wholesale", "brand:wikidata": "Q715583"}, "addTags": {"brand": "コストコ", "brand:en": "Costco", "brand:ja": "コストコ", "brand:wikidata": "Q715583", "brand:wikipedia": "ja:コストコ", "name": "コストコ", "name:en": "Costco", "name:ja": "コストコ", "operator": "コストコホールセールジャパン株式会社", "operator:en": "Costco Wholesale Japan Co., Ltd.", "shop": "wholesale"}, "removeTags": {"brand": "コストコ", "brand:en": "Costco", "brand:ja": "コストコ", "brand:wikidata": "Q715583", "brand:wikipedia": "ja:コストコ", "name": "コストコ", "name:en": "Costco", "name:ja": "コストコ", "operator": "コストコホールセールジャパン株式会社", "operator:en": "Costco Wholesale Japan Co., Ltd.", "shop": "wholesale"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "tourism/hotel/B&B Hôtel": {"name": "B&B Hôtel", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/bbhotels.france/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q794939"}, "addTags": {"brand": "B&B Hôtel", "brand:wikidata": "Q794939", "brand:wikipedia": "en:B&B Hotels", "name": "B&B Hôtel", "tourism": "hotel"}, "removeTags": {"brand": "B&B Hôtel", "brand:wikidata": "Q794939", "brand:wikipedia": "en:B&B Hotels", "name": "B&B Hôtel", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Best Western": {"name": "Best Western", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/BestWestern/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q830334"}, "addTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western", "tourism": "hotel"}, "removeTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Best Western Plus": {"name": "Best Western Plus", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/BestWestern/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q830334"}, "addTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western Plus", "tourism": "hotel"}, "removeTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western Plus", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Campanile": {"name": "Campanile", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/campanile/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2412064"}, "addTags": {"brand": "Campanile", "brand:wikidata": "Q2412064", "brand:wikipedia": "fr:Campanile (chaîne d'hôtels)", "name": "Campanile", "tourism": "hotel"}, "removeTags": {"brand": "Campanile", "brand:wikidata": "Q2412064", "brand:wikipedia": "fr:Campanile (chaîne d'hôtels)", "name": "Campanile", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Candlewood Suites": {"name": "Candlewood Suites", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/CandlewoodSuites/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5032010"}, "addTags": {"brand": "Candlewood Suites", "brand:wikidata": "Q5032010", "brand:wikipedia": "en:Candlewood Suites", "name": "Candlewood Suites", "tourism": "hotel"}, "removeTags": {"brand": "Candlewood Suites", "brand:wikidata": "Q5032010", "brand:wikipedia": "en:Candlewood Suites", "name": "Candlewood Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Comfort Inn": {"name": "Comfort Inn", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Comfort Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn", "tourism": "hotel"}, "removeTags": {"brand": "Comfort Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Comfort Inn & Suites": {"name": "Comfort Inn & Suites", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Comfort Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn & Suites", "tourism": "hotel"}, "removeTags": {"brand": "Comfort Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn & Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Comfort Suites": {"name": "Comfort Suites", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Comfort Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Suites", "tourism": "hotel"}, "removeTags": {"brand": "Comfort Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Country Inn & Suites": {"name": "Country Inn & Suites", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/countryinn/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5177332"}, "addTags": {"brand": "Country Inn & Suites", "brand:wikidata": "Q5177332", "brand:wikipedia": "en:Country Inns & Suites", "name": "Country Inn & Suites", "tourism": "hotel"}, "removeTags": {"brand": "Country Inn & Suites", "brand:wikidata": "Q5177332", "brand:wikipedia": "en:Country Inns & Suites", "name": "Country Inn & Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Courtyard by Marriott": {"name": "Courtyard by Marriott", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/courtyard/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1053170"}, "addTags": {"brand": "Courtyard by Marriott", "brand:wikidata": "Q1053170", "brand:wikipedia": "en:Courtyard by Marriott", "name": "Courtyard by Marriott", "tourism": "hotel"}, "removeTags": {"brand": "Courtyard by Marriott", "brand:wikidata": "Q1053170", "brand:wikipedia": "en:Courtyard by Marriott", "name": "Courtyard by Marriott", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Crowne Plaza": {"name": "Crowne Plaza", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/crowneplaza/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2746220"}, "addTags": {"brand": "Crowne Plaza", "brand:wikidata": "Q2746220", "brand:wikipedia": "en:Crowne Plaza", "name": "Crowne Plaza", "tourism": "hotel"}, "removeTags": {"brand": "Crowne Plaza", "brand:wikidata": "Q2746220", "brand:wikipedia": "en:Crowne Plaza", "name": "Crowne Plaza", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Days Inn": {"name": "Days Inn", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/DaysInn/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1047239"}, "addTags": {"brand": "Days Inn", "brand:wikidata": "Q1047239", "brand:wikipedia": "en:Days Inn", "name": "Days Inn", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "removeTags": {"brand": "Days Inn", "brand:wikidata": "Q1047239", "brand:wikipedia": "en:Days Inn", "name": "Days Inn", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Embassy Suites": {"name": "Embassy Suites", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/EmbassySuites/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5369524"}, "addTags": {"brand": "Embassy Suites", "brand:wikidata": "Q5369524", "brand:wikipedia": "en:Embassy Suites by Hilton", "name": "Embassy Suites", "tourism": "hotel"}, "removeTags": {"brand": "Embassy Suites", "brand:wikidata": "Q5369524", "brand:wikipedia": "en:Embassy Suites by Hilton", "name": "Embassy Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Extended Stay America": {"name": "Extended Stay America", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/ExtendedStayAmerica/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5421850"}, "addTags": {"brand": "Extended Stay America", "brand:wikidata": "Q5421850", "brand:wikipedia": "en:Extended Stay America", "name": "Extended Stay America", "tourism": "hotel"}, "removeTags": {"brand": "Extended Stay America", "brand:wikidata": "Q5421850", "brand:wikipedia": "en:Extended Stay America", "name": "Extended Stay America", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Fairfield Inn": {"name": "Fairfield Inn", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/fairfieldbymarriott/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5430314"}, "addTags": {"brand": "Fairfield Inn", "brand:wikidata": "Q5430314", "brand:wikipedia": "en:Fairfield Inn by Marriott", "name": "Fairfield Inn", "tourism": "hotel"}, "removeTags": {"brand": "Fairfield Inn", "brand:wikidata": "Q5430314", "brand:wikipedia": "en:Fairfield Inn by Marriott", "name": "Fairfield Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Formule 1": {"name": "Formule 1", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/HotelF1/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1630895"}, "addTags": {"brand": "Formule 1", "brand:wikidata": "Q1630895", "brand:wikipedia": "en:Hotel Formule 1", "name": "Formule 1", "tourism": "hotel"}, "removeTags": {"brand": "Formule 1", "brand:wikidata": "Q1630895", "brand:wikipedia": "en:Hotel Formule 1", "name": "Formule 1", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Grand Hyatt": {"name": "Grand Hyatt", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/hyatt/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Grand Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Grand Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Grand Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Grand Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Hampton": {"name": "Hampton", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/hamptonbyhilton/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5646230"}, "addTags": {"alt_name": "Hampton Inn", "brand": "Hampton", "brand:wikidata": "Q5646230", "brand:wikipedia": "en:Hampton by Hilton", "name": "Hampton", "tourism": "hotel"}, "removeTags": {"alt_name": "Hampton Inn", "brand": "Hampton", "brand:wikidata": "Q5646230", "brand:wikipedia": "en:Hampton by Hilton", "name": "Hampton", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Hilton": {"name": "Hilton", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/hilton/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q598884"}, "addTags": {"brand": "Hilton", "brand:wikidata": "Q598884", "brand:wikipedia": "en:Hilton Hotels & Resorts", "name": "Hilton", "tourism": "hotel"}, "removeTags": {"brand": "Hilton", "brand:wikidata": "Q598884", "brand:wikipedia": "en:Hilton Hotels & Resorts", "name": "Hilton", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Hilton Garden Inn": {"name": "Hilton Garden Inn", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/HiltonGardenInn/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1162859"}, "addTags": {"brand": "Hilton Garden Inn", "brand:wikidata": "Q1162859", "brand:wikipedia": "en:Hilton Garden Inn", "name": "Hilton Garden Inn", "tourism": "hotel"}, "removeTags": {"brand": "Hilton Garden Inn", "brand:wikidata": "Q1162859", "brand:wikipedia": "en:Hilton Garden Inn", "name": "Hilton Garden Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Holiday Inn": {"name": "Holiday Inn", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/HolidayInn/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2717882"}, "addTags": {"brand": "Holiday Inn", "brand:wikidata": "Q2717882", "brand:wikipedia": "en:Holiday Inn", "name": "Holiday Inn", "tourism": "hotel"}, "removeTags": {"brand": "Holiday Inn", "brand:wikidata": "Q2717882", "brand:wikipedia": "en:Holiday Inn", "name": "Holiday Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Holiday Inn Express": {"name": "Holiday Inn Express", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/holidayinnexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5880423"}, "addTags": {"brand": "Holiday Inn Express", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express", "tourism": "hotel"}, "removeTags": {"brand": "Holiday Inn Express", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Holiday Inn Express & Suites": {"name": "Holiday Inn Express & Suites", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/holidayinnexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5880423"}, "addTags": {"brand": "Holiday Inn Express & Suites", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express & Suites", "tourism": "hotel"}, "removeTags": {"brand": "Holiday Inn Express & Suites", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express & Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Homewood Suites": {"name": "Homewood Suites", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/HomewoodSuites/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5890701"}, "addTags": {"brand": "Homewood Suites", "brand:wikidata": "Q5890701", "brand:wikipedia": "en:Homewood Suites by Hilton", "name": "Homewood Suites", "tourism": "hotel"}, "removeTags": {"brand": "Homewood Suites", "brand:wikidata": "Q5890701", "brand:wikipedia": "en:Homewood Suites by Hilton", "name": "Homewood Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Hyatt": {"name": "Hyatt", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/hyatt/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Hyatt Centric": {"name": "Hyatt Centric", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/hyatt/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt Centric", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Centric", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt Centric", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Centric", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Hyatt House": {"name": "Hyatt House", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/hyatt/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt House", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt House", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt House", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt House", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Hyatt Place": {"name": "Hyatt Place", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/hyatt/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Place", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Place", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Hyatt Regency": {"name": "Hyatt Regency", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/hyatt/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt Regency", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Regency", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt Regency", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Regency", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Ibis": {"name": "Ibis", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/ibishotels.fr/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q920166"}, "addTags": {"brand": "Ibis", "brand:wikidata": "Q920166", "brand:wikipedia": "en:Ibis (hotel)", "name": "Ibis", "tourism": "hotel"}, "removeTags": {"brand": "Ibis", "brand:wikidata": "Q920166", "brand:wikipedia": "en:Ibis (hotel)", "name": "Ibis", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Ibis Budget": {"name": "Ibis Budget", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/ibisbudget.fr/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1458135"}, "addTags": {"brand": "Ibis Budget", "brand:wikidata": "Q1458135", "brand:wikipedia": "en:Ibis Budget", "name": "Ibis Budget", "tourism": "hotel"}, "removeTags": {"brand": "Ibis Budget", "brand:wikidata": "Q1458135", "brand:wikipedia": "en:Ibis Budget", "name": "Ibis Budget", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Ibis Styles": {"name": "Ibis Styles", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/ibisstyles.fr/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q3147425"}, "addTags": {"brand": "Ibis Styles", "brand:wikidata": "Q3147425", "brand:wikipedia": "en:Ibis Styles", "name": "Ibis Styles", "tourism": "hotel"}, "removeTags": {"brand": "Ibis Styles", "brand:wikidata": "Q3147425", "brand:wikipedia": "en:Ibis Styles", "name": "Ibis Styles", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Kyriad": {"name": "Kyriad", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/kyriadindia/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q11751808"}, "addTags": {"brand": "Kyriad", "brand:wikidata": "Q11751808", "brand:wikipedia": "pl:Kyriad", "name": "Kyriad", "tourism": "hotel"}, "removeTags": {"brand": "Kyriad", "brand:wikidata": "Q11751808", "brand:wikipedia": "pl:Kyriad", "name": "Kyriad", "tourism": "hotel"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "tourism/hotel/La Quinta": {"name": "La Quinta", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/laquinta/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q6464734"}, "addTags": {"brand": "La Quinta", "brand:wikidata": "Q6464734", "brand:wikipedia": "en:La Quinta Inns & Suites", "name": "La Quinta", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "removeTags": {"brand": "La Quinta", "brand:wikidata": "Q6464734", "brand:wikipedia": "en:La Quinta Inns & Suites", "name": "La Quinta", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, "tourism/hotel/Marriott": {"name": "Marriott", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/marriottinternational/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1141173"}, "addTags": {"brand": "Marriott", "brand:wikidata": "Q1141173", "brand:wikipedia": "en:Marriott International", "name": "Marriott", "tourism": "hotel"}, "removeTags": {"brand": "Marriott", "brand:wikidata": "Q1141173", "brand:wikipedia": "en:Marriott International", "name": "Marriott", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, "tourism/hotel/Mercure": {"name": "Mercure", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/MercureHotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1709809"}, "addTags": {"brand": "Mercure", "brand:wikidata": "Q1709809", "brand:wikipedia": "en:Mercure (hotel)", "name": "Mercure", "tourism": "hotel"}, "removeTags": {"brand": "Mercure", "brand:wikidata": "Q1709809", "brand:wikipedia": "en:Mercure (hotel)", "name": "Mercure", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, "tourism/hotel/Novotel": {"name": "Novotel", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/Novotelhotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q420545"}, "addTags": {"brand": "Novotel", "brand:wikidata": "Q420545", "brand:wikipedia": "en:Novotel", "name": "Novotel", "tourism": "hotel"}, "removeTags": {"brand": "Novotel", "brand:wikidata": "Q420545", "brand:wikipedia": "en:Novotel", "name": "Novotel", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Park Hyatt": {"name": "Park Hyatt", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Park Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Park Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Park Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Park Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Park Hyatt": {"name": "Park Hyatt", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/hyatt/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Park Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Park Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Park Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Park Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, "tourism/hotel/Premier Inn": {"name": "Premier Inn", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/premierinn/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2108626"}, "addTags": {"brand": "Premier Inn", "brand:wikidata": "Q2108626", "brand:wikipedia": "en:Premier Inn", "name": "Premier Inn", "tourism": "hotel"}, "removeTags": {"brand": "Premier Inn", "brand:wikidata": "Q2108626", "brand:wikipedia": "en:Premier Inn", "name": "Premier Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Première Classe": {"name": "Première Classe", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5964551"}, "addTags": {"brand": "Première Classe", "brand:wikidata": "Q5964551", "brand:wikipedia": "en:Hôtel Première Classe", "name": "Première Classe", "tourism": "hotel"}, "removeTags": {"brand": "Première Classe", "brand:wikidata": "Q5964551", "brand:wikipedia": "en:Hôtel Première Classe", "name": "Première Classe", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Quality Inn": {"name": "Quality Inn", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Quality Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn", "tourism": "hotel"}, "removeTags": {"brand": "Quality Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Quality Inn & Suites": {"name": "Quality Inn & Suites", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Quality Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn & Suites", "tourism": "hotel"}, "removeTags": {"brand": "Quality Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn & Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Ramada": {"name": "Ramada", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRamada%20Worldwide%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1502859"}, "addTags": {"brand": "Ramada", "brand:wikidata": "Q1502859", "brand:wikipedia": "en:Ramada", "name": "Ramada", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "removeTags": {"brand": "Ramada", "brand:wikidata": "Q1502859", "brand:wikipedia": "en:Ramada", "name": "Ramada", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Red Roof Inn": {"name": "Red Roof Inn", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRed%20Roof%20Inn%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7304949"}, "addTags": {"brand": "Red Roof Inn", "brand:wikidata": "Q7304949", "brand:wikipedia": "en:Red Roof Inn", "name": "Red Roof Inn", "tourism": "hotel"}, "removeTags": {"brand": "Red Roof Inn", "brand:wikidata": "Q7304949", "brand:wikipedia": "en:Red Roof Inn", "name": "Red Roof Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Renaissance Hotel": {"name": "Renaissance Hotel", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2143252"}, "addTags": {"brand": "Renaissance Hotels", "brand:wikidata": "Q2143252", "brand:wikipedia": "en:Renaissance Hotels", "name": "Renaissance Hotel", "operator": "Marriott International", "operator:wikidata": "Q1141173", "operator:wikipedia": "en:Marriott International", "tourism": "hotel"}, "removeTags": {"brand": "Renaissance Hotels", "brand:wikidata": "Q2143252", "brand:wikipedia": "en:Renaissance Hotels", "name": "Renaissance Hotel", "operator": "Marriott International", "operator:wikidata": "Q1141173", "operator:wikipedia": "en:Marriott International", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Residence Inn": {"name": "Residence Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7315394"}, "addTags": {"brand": "Residence Inn", "brand:wikidata": "Q7315394", "brand:wikipedia": "en:Residence Inn by Marriott", "name": "Residence Inn", "tourism": "hotel"}, "removeTags": {"brand": "Residence Inn", "brand:wikidata": "Q7315394", "brand:wikipedia": "en:Residence Inn by Marriott", "name": "Residence Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Sheraton": {"name": "Sheraton", "icon": "maki-lodging", "imageURL": "https://pbs.twimg.com/profile_images/1002217498857521153/KwmEKPGZ_bigger.jpg", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q634831"}, "addTags": {"brand": "Sheraton", "brand:wikidata": "Q634831", "brand:wikipedia": "en:Sheraton Hotels and Resorts", "name": "Sheraton", "tourism": "hotel"}, "removeTags": {"brand": "Sheraton", "brand:wikidata": "Q634831", "brand:wikipedia": "en:Sheraton Hotels and Resorts", "name": "Sheraton", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Sleep Inn": {"name": "Sleep Inn", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Sleep Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Sleep Inn", "tourism": "hotel"}, "removeTags": {"brand": "Sleep Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Sleep Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Staybridge Suites": {"name": "Staybridge Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7605116"}, "addTags": {"brand": "Staybridge Suites", "brand:wikidata": "Q7605116", "brand:wikipedia": "en:Staybridge Suites", "name": "Staybridge Suites", "tourism": "hotel"}, "removeTags": {"brand": "Staybridge Suites", "brand:wikidata": "Q7605116", "brand:wikipedia": "en:Staybridge Suites", "name": "Staybridge Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Travelodge": {"name": "Travelodge", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTravelodge.svg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7836087"}, "addTags": {"brand": "Travelodge", "brand:wikidata": "Q7836087", "brand:wikipedia": "en:Travelodge", "name": "Travelodge", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "removeTags": {"brand": "Travelodge", "brand:wikidata": "Q7836087", "brand:wikipedia": "en:Travelodge", "name": "Travelodge", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Première Classe": {"name": "Première Classe", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/PremiereClasseHotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5964551"}, "addTags": {"brand": "Première Classe", "brand:wikidata": "Q5964551", "brand:wikipedia": "en:Hôtel Première Classe", "name": "Première Classe", "tourism": "hotel"}, "removeTags": {"brand": "Première Classe", "brand:wikidata": "Q5964551", "brand:wikipedia": "en:Hôtel Première Classe", "name": "Première Classe", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Quality Inn": {"name": "Quality Inn", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Quality Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn", "tourism": "hotel"}, "removeTags": {"brand": "Quality Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Quality Inn & Suites": {"name": "Quality Inn & Suites", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Quality Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn & Suites", "tourism": "hotel"}, "removeTags": {"brand": "Quality Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn & Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Ramada": {"name": "Ramada", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/ramada/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1502859"}, "addTags": {"brand": "Ramada", "brand:wikidata": "Q1502859", "brand:wikipedia": "en:Ramada", "name": "Ramada", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "removeTags": {"brand": "Ramada", "brand:wikidata": "Q1502859", "brand:wikipedia": "en:Ramada", "name": "Ramada", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Red Roof Inn": {"name": "Red Roof Inn", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/redroofinn/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7304949"}, "addTags": {"brand": "Red Roof Inn", "brand:wikidata": "Q7304949", "brand:wikipedia": "en:Red Roof Inn", "name": "Red Roof Inn", "tourism": "hotel"}, "removeTags": {"brand": "Red Roof Inn", "brand:wikidata": "Q7304949", "brand:wikipedia": "en:Red Roof Inn", "name": "Red Roof Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Renaissance Hotel": {"name": "Renaissance Hotel", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/RenaissanceHotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2143252"}, "addTags": {"brand": "Renaissance Hotels", "brand:wikidata": "Q2143252", "brand:wikipedia": "en:Renaissance Hotels", "name": "Renaissance Hotel", "operator": "Marriott International", "operator:wikidata": "Q1141173", "operator:wikipedia": "en:Marriott International", "tourism": "hotel"}, "removeTags": {"brand": "Renaissance Hotels", "brand:wikidata": "Q2143252", "brand:wikipedia": "en:Renaissance Hotels", "name": "Renaissance Hotel", "operator": "Marriott International", "operator:wikidata": "Q1141173", "operator:wikipedia": "en:Marriott International", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Residence Inn": {"name": "Residence Inn", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/residenceinn/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7315394"}, "addTags": {"brand": "Residence Inn", "brand:wikidata": "Q7315394", "brand:wikipedia": "en:Residence Inn by Marriott", "name": "Residence Inn", "tourism": "hotel"}, "removeTags": {"brand": "Residence Inn", "brand:wikidata": "Q7315394", "brand:wikipedia": "en:Residence Inn by Marriott", "name": "Residence Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Sheraton": {"name": "Sheraton", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/Sheraton/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q634831"}, "addTags": {"brand": "Sheraton", "brand:wikidata": "Q634831", "brand:wikipedia": "en:Sheraton Hotels and Resorts", "name": "Sheraton", "tourism": "hotel"}, "removeTags": {"brand": "Sheraton", "brand:wikidata": "Q634831", "brand:wikipedia": "en:Sheraton Hotels and Resorts", "name": "Sheraton", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Sleep Inn": {"name": "Sleep Inn", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Sleep Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Sleep Inn", "tourism": "hotel"}, "removeTags": {"brand": "Sleep Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Sleep Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Staybridge Suites": {"name": "Staybridge Suites", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/StaybridgeSuites/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7605116"}, "addTags": {"brand": "Staybridge Suites", "brand:wikidata": "Q7605116", "brand:wikipedia": "en:Staybridge Suites", "name": "Staybridge Suites", "tourism": "hotel"}, "removeTags": {"brand": "Staybridge Suites", "brand:wikidata": "Q7605116", "brand:wikipedia": "en:Staybridge Suites", "name": "Staybridge Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Travelodge": {"name": "Travelodge", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/Travelodge/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7836087"}, "addTags": {"brand": "Travelodge", "brand:wikidata": "Q7836087", "brand:wikipedia": "en:Travelodge", "name": "Travelodge", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "removeTags": {"brand": "Travelodge", "brand:wikidata": "Q7836087", "brand:wikipedia": "en:Travelodge", "name": "Travelodge", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/W Hotels": {"name": "W Hotels", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/WHotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7958488"}, "addTags": {"brand": "W Hotels", "brand:wikidata": "Q7958488", "brand:wikipedia": "en:W Hotels", "name": "W Hotels", "short_name": "W", "tourism": "hotel"}, "removeTags": {"brand": "W Hotels", "brand:wikidata": "Q7958488", "brand:wikipedia": "en:W Hotels", "name": "W Hotels", "short_name": "W", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, "tourism/hotel/東横イン": {"name": "東横イン", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1320541"}, "addTags": {"brand": "東横イン", "brand:en": "Toyoko Inn", "brand:ja": "東横イン", "brand:wikidata": "Q1320541", "brand:wikipedia": "en:Toyoko Inn", "name": "東横イン", "name:en": "Toyoko Inn", "name:ja": "東横イン", "tourism": "hotel"}, "removeTags": {"brand": "東横イン", "brand:en": "Toyoko Inn", "brand:ja": "東横イン", "brand:wikidata": "Q1320541", "brand:wikipedia": "en:Toyoko Inn", "name": "東横イン", "name:en": "Toyoko Inn", "name:ja": "東横イン", "tourism": "hotel"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "tourism/motel/Econo Lodge": {"name": "Econo Lodge", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "motel", "brand:wikidata": "Q5333330"}, "addTags": {"brand": "Econo Lodge", "brand:wikidata": "Q5333330", "brand:wikipedia": "en:Econo Lodge", "name": "Econo Lodge", "tourism": "motel"}, "removeTags": {"brand": "Econo Lodge", "brand:wikidata": "Q5333330", "brand:wikipedia": "en:Econo Lodge", "name": "Econo Lodge", "tourism": "motel"}, "matchScore": 2, "suggestion": true}, "tourism/motel/Motel 6": {"name": "Motel 6", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/motel6/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "motel", "brand:wikidata": "Q2188884"}, "addTags": {"brand": "Motel 6", "brand:wikidata": "Q2188884", "brand:wikipedia": "en:Motel 6", "name": "Motel 6", "tourism": "motel"}, "removeTags": {"brand": "Motel 6", "brand:wikidata": "Q2188884", "brand:wikipedia": "en:Motel 6", "name": "Motel 6", "tourism": "motel"}, "matchScore": 2, "suggestion": true}, diff --git a/package.json b/package.json index bd7764226..27b6af171 100644 --- a/package.json +++ b/package.json @@ -76,7 +76,7 @@ "minimist": "^1.2.0", "mocha": "^6.0.0", "mocha-phantomjs-core": "^2.1.0", - "name-suggestion-index": "2.0.0", + "name-suggestion-index": "2.0.1", "npm-run-all": "^4.0.0", "osm-community-index": "0.6.0", "phantomjs-prebuilt": "~2.1.11", From 57a03580618d17f446737d00737019850f0b5116 Mon Sep 17 00:00:00 2001 From: J Guthrie Date: Mon, 8 Apr 2019 15:00:19 +0100 Subject: [PATCH 34/50] Add test cases --- test/index.html | 1 + test/spec/actions/disconnect.js | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/test/index.html b/test/index.html index 954589083..f8a71f073 100644 --- a/test/index.html +++ b/test/index.html @@ -88,6 +88,7 @@ + diff --git a/test/spec/actions/disconnect.js b/test/spec/actions/disconnect.js index a985933d0..e37dc178f 100644 --- a/test/spec/actions/disconnect.js +++ b/test/spec/actions/disconnect.js @@ -180,6 +180,35 @@ describe('iD.actionDisconnect', function () { expect(graph.entity('|').nodes).to.eql(['d', 'b']); }); + it('preserves the closed way when part of a larger disconnect operation', function () { + // Situation: + // a ---- bb === c + // = == + // = == + // d + // Disconnect - at b (whilst == is selected). + // + // Expected result: + // a ---- b ee === c + // = == + // = == + // d + // + var graph = iD.coreGraph([ + iD.osmNode({id: 'a'}), + iD.osmNode({id: 'b'}), + iD.osmNode({id: 'c'}), + iD.osmNode({id: 'd'}), + iD.osmWay({id: '-', nodes: ['a', 'b']}), + iD.osmWay({id: '=', nodes: ['e', 'c', 'd', 'e']}) + ]); + + graph = iD.actionDisconnect('b', 'e').limitWays(['='])(graph); + + expect(graph.entity('-').nodes).to.eql(['a', 'b']); + expect(graph.entity('=').nodes).to.eql(['e', 'c', 'd', 'e']); + }); + it('replaces later occurrences in a self-intersecting way', function() { // Situtation: // a --- b From d3d0a560eb967d10dee5988092921e3e73333eac Mon Sep 17 00:00:00 2001 From: Jamie Guthrie Date: Mon, 8 Apr 2019 16:01:08 +0100 Subject: [PATCH 35/50] Remove excess whitespace --- modules/actions/disconnect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/actions/disconnect.js b/modules/actions/disconnect.js index b7ed93814..6359ff606 100644 --- a/modules/actions/disconnect.js +++ b/modules/actions/disconnect.js @@ -22,7 +22,7 @@ export function actionDisconnect(nodeId, newNodeId) { var action = function(graph) { var node = graph.entity(nodeId); var connections = action.connections(graph); - + connections.forEach(function(connection) { var way = graph.entity(connection.wayID); var newNode = osmNode({id: newNodeId, loc: node.loc, tags: node.tags}); From a29da38230dc8853ee024b31aa65a384a1a5ad94 Mon Sep 17 00:00:00 2001 From: Jamie Guthrie Date: Mon, 8 Apr 2019 16:02:31 +0100 Subject: [PATCH 36/50] Remove operationDisconnect test --- test/index.html | 1 - 1 file changed, 1 deletion(-) diff --git a/test/index.html b/test/index.html index f8a71f073..954589083 100644 --- a/test/index.html +++ b/test/index.html @@ -88,7 +88,6 @@ - From 4d24db597ec3934ed90952c8503243b4d9bc77d7 Mon Sep 17 00:00:00 2001 From: J Guthrie Date: Mon, 8 Apr 2019 16:28:01 +0100 Subject: [PATCH 37/50] Small refactor to improve efficiency --- modules/operations/disconnect.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/modules/operations/disconnect.js b/modules/operations/disconnect.js index fa3d78473..cf4fb82ad 100644 --- a/modules/operations/disconnect.js +++ b/modules/operations/disconnect.js @@ -4,12 +4,11 @@ import { behaviorOperation } from '../behavior/index'; export function operationDisconnect(selectedIDs, context) { - var vertices = selectedIDs.filter(function(id) { - return context.geometry(id) === 'vertex'; - }); + var vertices = [], + ways = []; - var ways = selectedIDs.filter(function(id) { - return context.geometry(id) !== 'vertex'; + selectedIDs.forEach(function(id) { + context.geometry(id) === 'vertex' ? vertices.push(id) : ways.push(id); }); var entityID = vertices[0]; From ac29803b6ffc932244d8bf361e8337641cd0e3df Mon Sep 17 00:00:00 2001 From: J Guthrie Date: Mon, 8 Apr 2019 16:38:10 +0100 Subject: [PATCH 38/50] Fix eslint error --- modules/operations/disconnect.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/operations/disconnect.js b/modules/operations/disconnect.js index cf4fb82ad..55a12831c 100644 --- a/modules/operations/disconnect.js +++ b/modules/operations/disconnect.js @@ -8,7 +8,11 @@ export function operationDisconnect(selectedIDs, context) { ways = []; selectedIDs.forEach(function(id) { - context.geometry(id) === 'vertex' ? vertices.push(id) : ways.push(id); + if (context.geometry(id) === 'vertex') { + vertices.push(id); + } else { + ways.push(id); + } }); var entityID = vertices[0]; From bd44cec2e868472dd8a130a7e41096f431bd3f9f Mon Sep 17 00:00:00 2001 From: J Guthrie Date: Mon, 8 Apr 2019 16:48:27 +0100 Subject: [PATCH 39/50] Fix broken testcase! --- test/spec/actions/disconnect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/spec/actions/disconnect.js b/test/spec/actions/disconnect.js index e37dc178f..703ffef88 100644 --- a/test/spec/actions/disconnect.js +++ b/test/spec/actions/disconnect.js @@ -200,7 +200,7 @@ describe('iD.actionDisconnect', function () { iD.osmNode({id: 'c'}), iD.osmNode({id: 'd'}), iD.osmWay({id: '-', nodes: ['a', 'b']}), - iD.osmWay({id: '=', nodes: ['e', 'c', 'd', 'e']}) + iD.osmWay({id: '=', nodes: ['b', 'c', 'd', 'b']}) ]); graph = iD.actionDisconnect('b', 'e').limitWays(['='])(graph); From 00c7eaddc2ac2533a9b6eb2f9ba8fbaa709b0562 Mon Sep 17 00:00:00 2001 From: J Guthrie Date: Mon, 8 Apr 2019 17:07:12 +0100 Subject: [PATCH 40/50] Fix to work with PhatomJS --- modules/actions/disconnect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/actions/disconnect.js b/modules/actions/disconnect.js index 6359ff606..169dbf92e 100644 --- a/modules/actions/disconnect.js +++ b/modules/actions/disconnect.js @@ -59,7 +59,7 @@ export function actionDisconnect(nodeId, newNodeId) { } else { way.nodes.forEach(function(waynode, index) { if (waynode === nodeId) { - if (way.isClosed() && parentWays.length > 1 && wayIds && wayIds.includes(way.id) && index === way.nodes.length-1) { + if (way.isClosed() && parentWays.length > 1 && wayIds && wayIds.indexOf(way.id) !== -1 && index === way.nodes.length-1) { return; } candidates.push({ wayID: way.id, index: index }); From e1d4528a9515c429c9144cb56c2d1612f402f267 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Mon, 8 Apr 2019 09:46:28 -0700 Subject: [PATCH 41/50] Add or update various preset icons Deprecate shop=luggage and shop=bag --- data/deprecated.json | 8 + data/presets/presets.json | 224 +++++++++--------- .../craft/photographic_laboratory.json | 2 +- .../presets/healthcare/optometrist.json | 2 +- data/presets/presets/leisure/hackerspace.json | 4 +- .../presets/leisure/picnic_table/chess.json | 2 +- .../presets/leisure/swimming_pool.json | 2 +- .../presets/office/private_investigator.json | 2 +- data/presets/presets/shop/anime.json | 2 +- data/presets/presets/shop/bag.json | 2 +- data/presets/presets/shop/books.json | 2 +- data/presets/presets/shop/candles.json | 2 +- data/presets/presets/shop/photo.json | 2 +- data/presets/presets/shop/toys.json | 2 +- data/presets/presets/tourism/hotel.json | 2 +- data/taginfo.json | 26 +- svg/fontawesome/fas-book.svg | 1 + svg/fontawesome/fas-burn.svg | 1 + svg/fontawesome/fas-chess-pawn.svg | 1 + svg/fontawesome/fas-concierge-bell.svg | 1 + svg/fontawesome/fas-dragon.svg | 1 + svg/fontawesome/fas-eye.svg | 1 + svg/fontawesome/fas-film.svg | 1 + svg/fontawesome/fas-space-shuttle.svg | 1 + svg/fontawesome/fas-suitcase-rolling.svg | 1 + svg/fontawesome/fas-swimming-pool.svg | 1 + svg/fontawesome/fas-user-secret.svg | 1 + 27 files changed, 159 insertions(+), 138 deletions(-) create mode 100644 svg/fontawesome/fas-book.svg create mode 100644 svg/fontawesome/fas-burn.svg create mode 100644 svg/fontawesome/fas-chess-pawn.svg create mode 100644 svg/fontawesome/fas-concierge-bell.svg create mode 100644 svg/fontawesome/fas-dragon.svg create mode 100644 svg/fontawesome/fas-eye.svg create mode 100644 svg/fontawesome/fas-film.svg create mode 100644 svg/fontawesome/fas-space-shuttle.svg create mode 100644 svg/fontawesome/fas-suitcase-rolling.svg create mode 100644 svg/fontawesome/fas-swimming-pool.svg create mode 100644 svg/fontawesome/fas-user-secret.svg diff --git a/data/deprecated.json b/data/deprecated.json index 4912519dc..bbf930fdc 100644 --- a/data/deprecated.json +++ b/data/deprecated.json @@ -455,6 +455,10 @@ "old": {"shop": "baby_care"}, "replace": {"shop": "baby_goods"} }, + { + "old": {"shop": "bags"}, + "replace": {"shop": "bag"} + }, { "old": {"shop": "betting"}, "replace": {"shop": "bookmaker"} @@ -491,6 +495,10 @@ "old": {"shop": "lingerie"}, "replace": {"shop": "clothes", "clothes": "underwear"} }, + { + "old": {"shop": "luggage"}, + "replace": {"shop": "bag"} + }, { "old": {"shop": "moneylender"}, "replace": {"shop": "money_lender"} diff --git a/data/presets/presets.json b/data/presets/presets.json index 9f8c56463..00fa8cbdf 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -354,7 +354,7 @@ "craft/metal_construction": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"craft": "metal_construction"}, "name": "Metal Construction"}, "craft/painter": {"icon": "fas-paint-roller", "geometry": ["point", "area"], "tags": {"craft": "painter"}, "name": "Painter"}, "craft/photographer": {"icon": "maki-attraction", "geometry": ["point", "area"], "tags": {"craft": "photographer"}, "name": "Photographer"}, - "craft/photographic_laboratory": {"icon": "fas-camera-retro", "geometry": ["point", "area"], "terms": ["film"], "tags": {"craft": "photographic_laboratory"}, "name": "Photographic Laboratory"}, + "craft/photographic_laboratory": {"icon": "fas-film", "geometry": ["point", "area"], "terms": ["film"], "tags": {"craft": "photographic_laboratory"}, "name": "Photographic Laboratory"}, "craft/plasterer": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"craft": "plasterer"}, "name": "Plasterer"}, "craft/plumber": {"icon": "temaki-plumber", "geometry": ["point", "area"], "terms": ["pipe"], "tags": {"craft": "plumber"}, "name": "Plumber"}, "craft/pottery": {"icon": "maki-art-gallery", "geometry": ["point", "area"], "terms": ["ceramic"], "tags": {"craft": "pottery"}, "name": "Pottery"}, @@ -414,7 +414,7 @@ "healthcare/laboratory": {"icon": "fas-vial", "fields": ["name", "operator", "website", "ref", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["medical_laboratory", "medical_lab", "blood_check"], "tags": {"healthcare": "laboratory"}, "name": "Medical Laboratory"}, "healthcare/midwife": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["baby", "childbirth", "delivery", "labour", "labor", "pregnancy"], "tags": {"healthcare": "midwife"}, "name": "Midwife"}, "healthcare/occupational_therapist": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["therapist", "therapy"], "tags": {"healthcare": "occupational_therapist"}, "name": "Occupational Therapist"}, - "healthcare/optometrist": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["eye", "glasses", "lasik", "lenses", "vision"], "tags": {"healthcare": "optometrist"}, "name": "Optometrist"}, + "healthcare/optometrist": {"icon": "fas-eye", "geometry": ["point", "area"], "terms": ["eye", "glasses", "lasik", "lenses", "vision"], "tags": {"healthcare": "optometrist"}, "name": "Optometrist"}, "healthcare/physiotherapist": {"icon": "temaki-physiotherapist", "geometry": ["point", "area"], "terms": ["physical", "therapist", "therapy"], "tags": {"healthcare": "physiotherapist"}, "name": "Physiotherapist"}, "healthcare/podiatrist": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["foot", "feet", "nails"], "tags": {"healthcare": "podiatrist"}, "name": "Podiatrist"}, "healthcare/psychotherapist": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["anxiety", "counselor", "depression", "mental health", "mind", "suicide", "therapist", "therapy"], "tags": {"healthcare": "psychotherapist"}, "name": "Psychotherapist"}, @@ -585,7 +585,7 @@ "leisure/fitness_station/stairs": {"icon": "maki-pitch", "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "stairs"}, "addTags": {"leisure": "fitness_station", "fitness_station": "stairs", "sport": "fitness"}, "removeTags": {"leisure": "fitness_station", "fitness_station": "stairs", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["exercise", "fitness", "gym", "steps", "trim trail"], "name": "Exercise Stairs"}, "leisure/garden": {"icon": "maki-garden", "fields": ["name", "operator", "access_simple"], "moreFields": ["fee", "payment_multi", "website", "phone", "email", "fax"], "geometry": ["point", "vertex", "area"], "tags": {"leisure": "garden"}, "name": "Garden"}, "leisure/golf_course": {"icon": "maki-golf", "fields": ["name", "operator", "address", "opening_hours"], "moreFields": ["payment_multi", "website", "phone", "email", "fax"], "geometry": ["point", "area"], "terms": ["links"], "tags": {"leisure": "golf_course"}, "name": "Golf Course"}, - "leisure/hackerspace": {"icon": "fas-code", "fields": ["name", "address", "building_area", "opening_hours", "website"], "moreFields": ["payment_multi", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "phone", "email", "fax"], "geometry": ["point", "area"], "terms": ["makerspace", "hackspace", "hacklab"], "tags": {"leisure": "hackerspace"}, "name": "Hackerspace"}, + "leisure/hackerspace": {"icon": "fas-code", "fields": ["name", "address", "building_area", "opening_hours", "website", "internet_access"], "moreFields": ["payment_multi", "internet_access/fee", "internet_access/ssid", "smoking", "phone", "email", "fax"], "geometry": ["point", "area"], "terms": ["makerspace", "hackspace", "hacklab"], "tags": {"leisure": "hackerspace"}, "name": "Hackerspace"}, "leisure/horse_riding": {"icon": "maki-horse-riding", "fields": ["name", "access_simple", "operator", "address", "building"], "moreFields": ["opening_hours", "payment_multi", "website", "phone", "email", "fax"], "geometry": ["point", "area"], "terms": ["equestrian", "stable"], "tags": {"leisure": "horse_riding"}, "name": "Horseback Riding Facility"}, "leisure/ice_rink": {"icon": "fas-skating", "fields": ["name", "seasonal", "sport_ice", "operator", "address", "building"], "moreFields": ["opening_hours", "payment_multi", "website", "phone", "email", "fax"], "geometry": ["point", "area"], "terms": ["hockey", "skating", "curling"], "tags": {"leisure": "ice_rink"}, "name": "Ice Rink"}, "leisure/marina": {"icon": "maki-harbor", "fields": ["name", "operator", "capacity", "fee", "sanitary_dump_station", "power_supply"], "moreFields": ["address", "payment_multi", "internet_access", "internet_access/fee", "internet_access/ssid", "seamark/type", "website", "phone", "email", "fax"], "geometry": ["point", "vertex", "area"], "terms": ["boat"], "tags": {"leisure": "marina"}, "name": "Marina"}, @@ -594,7 +594,7 @@ "leisure/outdoor_seating": {"icon": "maki-picnic-site", "geometry": ["point", "area"], "fields": ["name", "operator"], "terms": ["al fresco", "beer garden", "dining", "cafe", "restaurant", "pub", "bar", "patio"], "tags": {"leisure": "outdoor_seating"}, "name": "Outdoor Seating Area"}, "leisure/park": {"icon": "maki-park", "fields": ["name", "operator", "address", "opening_hours"], "moreFields": ["dog", "smoking", "website", "phone", "email", "fax"], "geometry": ["point", "area"], "terms": ["esplanade", "estate", "forest", "garden", "grass", "green", "grounds", "lawn", "lot", "meadow", "parkland", "place", "playground", "plaza", "pleasure garden", "recreation area", "square", "tract", "village green", "woodland"], "tags": {"leisure": "park"}, "name": "Park"}, "leisure/picnic_table": {"icon": "maki-picnic-site", "fields": ["material", "lit", "bench"], "geometry": ["point"], "tags": {"leisure": "picnic_table"}, "terms": ["bench"], "name": "Picnic Table"}, - "leisure/picnic_table/chess": {"icon": "fas-chess-knight", "geometry": ["point"], "tags": {"leisure": "picnic_table", "sport": "chess"}, "reference": {"key": "sport", "value": "chess"}, "terms": ["bench", "chess board", "checkerboard", "checkers", "chequerboard", "game table"], "name": "Chess Table"}, + "leisure/picnic_table/chess": {"icon": "fas-chess-pawn", "geometry": ["point"], "tags": {"leisure": "picnic_table", "sport": "chess"}, "reference": {"key": "sport", "value": "chess"}, "terms": ["bench", "chess board", "checkerboard", "checkers", "chequerboard", "game table"], "name": "Chess Table"}, "leisure/pitch": {"icon": "maki-pitch", "fields": ["name", "sport", "surface", "lit"], "moreFields": ["access_simple", "fee"], "geometry": ["point", "area"], "tags": {"leisure": "pitch"}, "terms": ["field"], "name": "Sport Pitch"}, "leisure/pitch/american_football": {"icon": "maki-american-football", "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "american_football"}, "reference": {"key": "sport", "value": "american_football"}, "terms": ["football", "gridiron"], "name": "American Football Field"}, "leisure/pitch/australian_football": {"icon": "maki-american-football", "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "australian_football"}, "reference": {"key": "sport", "value": "australian_football"}, "terms": ["Aussie", "AFL", "football"], "name": "Australian Football Field"}, @@ -623,7 +623,7 @@ "leisure/sports_centre/climbing": {"icon": "temaki-abseiling", "geometry": ["point", "area"], "terms": ["abseiling", "artificial climbing wall", "belaying", "bouldering", "rock climbing facility", "indoor rock wall", "rappeling", "rock gym", "ropes"], "tags": {"leisure": "sports_centre", "sport": "climbing"}, "reference": {"key": "sport", "value": "climbing"}, "name": "Climbing Gym"}, "leisure/sports_centre/swimming": {"icon": "maki-swimming", "geometry": ["point", "area"], "terms": ["dive", "water"], "tags": {"leisure": "sports_centre", "sport": "swimming"}, "reference": {"key": "sport", "value": "swimming"}, "name": "Swimming Pool Facility"}, "leisure/stadium": {"icon": "maki-pitch", "fields": ["name", "sport", "address"], "moreFields": ["website", "phone", "email", "fax"], "geometry": ["point", "area"], "tags": {"leisure": "stadium"}, "name": "Stadium"}, - "leisure/swimming_pool": {"icon": "maki-swimming", "fields": ["name", "access_simple", "lit", "location_pool", "length", "swimming_pool"], "moreFields": ["operator", "address"], "geometry": ["point", "area"], "terms": ["dive", "water", "aquatics"], "tags": {"leisure": "swimming_pool"}, "name": "Swimming Pool"}, + "leisure/swimming_pool": {"icon": "fas-swimming-pool", "fields": ["name", "access_simple", "lit", "location_pool", "length", "swimming_pool"], "moreFields": ["operator", "address"], "geometry": ["point", "area"], "terms": ["dive", "water", "aquatics"], "tags": {"leisure": "swimming_pool"}, "name": "Swimming Pool"}, "leisure/track": {"icon": "iD-other-line", "fields": ["surface", "sport_racing_nonmotor", "lit", "width", "lanes"], "geometry": ["point", "line", "area"], "tags": {"leisure": "track"}, "terms": ["cycle", "dog", "greyhound", "horse", "race*", "track"], "name": "Racetrack (Non-Motorsport)"}, "leisure/track/cycling": {"icon": "maki-bicycle", "fields": ["surface", "sport_racing_nonmotor", "lit", "width", "lanes"], "geometry": ["point", "line", "area"], "tags": {"leisure": "track", "sport": "cycling"}, "addTags": {"leisure": "track", "sport": "cycling", "highway": "cycleway"}, "removeTags": {"leisure": "track", "sport": "cycling", "highway": "cycleway"}, "terms": ["bicycle track", "bicycling track", "cycle racetrack", "velodrome"], "name": "Cycling Track"}, "leisure/track/horse_racing": {"icon": "maki-horse-riding", "fields": ["surface", "sport_racing_nonmotor", "lit", "width", "lanes"], "geometry": ["point", "line", "area"], "tags": {"leisure": "track", "sport": "horse_racing"}, "addTags": {"leisure": "track", "sport": "horse_racing", "highway": "bridleway"}, "removeTags": {"leisure": "track", "sport": "horse_racing", "highway": "bridleway"}, "terms": ["equestrian race track", "horse race betting", "horseracing", "horsetrack", "horse racetrack"], "name": "Horse Racing Track"}, @@ -748,7 +748,7 @@ "office/ngo": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "ngo"}, "terms": ["ngo", "non government", "non-government", "organization", "organisation"], "name": "NGO Office"}, "office/notary": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "notary"}, "terms": ["clerk", "deeds", "estate", "signature", "wills"], "name": "Notary Office"}, "office/political_party": {"icon": "maki-town-hall", "geometry": ["point", "area"], "tags": {"office": "political_party"}, "terms": [], "name": "Political Party"}, - "office/private_investigator": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "private_investigator"}, "terms": ["PI", "private eye", "private detective"], "name": "Private Investigator Office"}, + "office/private_investigator": {"icon": "fas-user-secret", "geometry": ["point", "area"], "tags": {"office": "private_investigator"}, "terms": ["PI", "private eye", "private detective"], "name": "Private Investigator Office"}, "office/quango": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "quango"}, "terms": ["ngo", "non government", "non-government", "organization", "organisation", "quasi autonomous", "quasi-autonomous"], "name": "Quasi-NGO Office"}, "office/religion": {"icon": "maki-suitcase", "fields": ["{office}", "religion", "denomination"], "geometry": ["point", "area"], "tags": {"office": "religion"}, "terms": [], "name": "Religious Office"}, "office/research": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "research"}, "terms": [], "name": "Research Office"}, @@ -893,12 +893,12 @@ "shop/vacant": {"icon": "maki-shop", "fields": ["name", "address", "building_area"], "geometry": ["point", "area"], "tags": {"shop": "vacant"}, "name": "Vacant Shop", "searchable": false}, "shop/agrarian": {"icon": "maki-shop", "fields": ["{shop}", "agrarian"], "geometry": ["point", "area"], "terms": ["agricultural inputs", "agricultural machines", "seeds", "pesticides", "fertilizer", "agricultural tools"], "tags": {"shop": "agrarian"}, "name": "Farm Supply Shop"}, "shop/alcohol": {"icon": "maki-alcohol-shop", "fields": ["{shop}", "drive_through"], "geometry": ["point", "area"], "terms": ["alcohol", "beer", "booze", "wine"], "tags": {"shop": "alcohol"}, "name": "Liquor Store"}, - "shop/anime": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "anime"}, "terms": ["manga", "japan", "cosplay", "figurine", "dakimakura"], "name": "Anime Shop"}, + "shop/anime": {"icon": "fas-dragon", "geometry": ["point", "area"], "tags": {"shop": "anime"}, "terms": ["manga", "japan", "cosplay", "figurine", "dakimakura"], "name": "Anime Shop"}, "shop/antiques": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "antiques"}, "name": "Antiques Shop"}, "shop/appliance": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["air conditioner", "appliance", "dishwasher", "dryer", "freezer", "fridge", "grill", "kitchen", "oven", "refrigerator", "stove", "washer", "washing machine"], "tags": {"shop": "appliance"}, "name": "Appliance Store"}, "shop/art": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["art*", "exhibit*", "gallery"], "tags": {"shop": "art"}, "name": "Art Store"}, "shop/baby_goods": {"icon": "fas-baby-carriage", "geometry": ["point", "area"], "tags": {"shop": "baby_goods"}, "name": "Baby Goods Store"}, - "shop/bag": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["handbag", "purse"], "tags": {"shop": "bag"}, "name": "Bag/Luggage Store"}, + "shop/bag": {"icon": "fas-suitcase-rolling", "geometry": ["point", "area"], "terms": ["handbag", "purse"], "tags": {"shop": "bag"}, "name": "Bag/Luggage Store"}, "shop/bakery": {"icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery"}, "terms": ["bread", "cakes", "rolls"], "name": "Bakery"}, "shop/bathroom_furnishing": {"icon": "fas-bath", "geometry": ["point", "area"], "tags": {"shop": "bathroom_furnishing"}, "name": "Bathroom Furnishing Store"}, "shop/beauty": {"icon": "maki-shop", "fields": ["{shop}", "beauty"], "geometry": ["point", "area"], "terms": ["spa", "salon", "tanning"], "tags": {"shop": "beauty"}, "name": "Beauty Shop"}, @@ -908,9 +908,9 @@ "shop/beverages": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "beverages"}, "terms": ["drinks"], "name": "Beverage Store"}, "shop/bicycle": {"icon": "maki-bicycle", "fields": ["{shop}", "service/bicycle"], "geometry": ["point", "area"], "terms": ["bike", "repair", "tricycle", "unicycle"], "tags": {"shop": "bicycle"}, "name": "Bicycle Shop"}, "shop/bookmaker": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["betting", "bookie"], "tags": {"shop": "bookmaker"}, "name": "Bookmaker"}, - "shop/books": {"icon": "maki-shop", "fields": ["{shop}", "internet_access"], "moreFields": ["{shop}", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"shop": "books"}, "name": "Book Store"}, + "shop/books": {"icon": "fas-book", "fields": ["{shop}", "internet_access"], "moreFields": ["{shop}", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"shop": "books"}, "name": "Book Store"}, "shop/butcher": {"icon": "fas-bacon", "geometry": ["point", "area"], "terms": ["chicken", "beef", "lamb", "meat", "pork"], "tags": {"shop": "butcher"}, "name": "Butcher"}, - "shop/candles": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "candles"}, "terms": ["wax"], "name": "Candle Shop"}, + "shop/candles": {"icon": "fas-burn", "geometry": ["point", "area"], "tags": {"shop": "candles"}, "terms": ["wax"], "name": "Candle Shop"}, "shop/car_parts": {"icon": "fas-car-battery", "geometry": ["point", "area"], "terms": ["automobile", "automotive"], "tags": {"shop": "car_parts"}, "name": "Car Parts Store"}, "shop/car_repair": {"icon": "maki-car-repair", "fields": ["{shop}", "service/vehicle"], "geometry": ["point", "area"], "terms": ["automobile", "automotive", "garage", "service"], "tags": {"shop": "car_repair"}, "name": "Car Repair Shop"}, "shop/car": {"icon": "maki-car", "fields": ["name", "brand", "{shop}", "second_hand", "service/vehicle"], "geometry": ["point", "area"], "terms": ["automobile", "automotive"], "tags": {"shop": "car"}, "name": "Car Dealership"}, @@ -993,7 +993,7 @@ "shop/perfumery": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "perfumery"}, "name": "Perfume Store"}, "shop/pet_grooming": {"icon": "maki-dog-park", "geometry": ["point", "area"], "terms": ["cat", "dog"], "tags": {"shop": "pet_grooming"}, "name": "Pet Grooming Store"}, "shop/pet": {"icon": "maki-dog-park", "geometry": ["point", "area"], "terms": ["animal", "cat", "dog", "fish", "kitten", "puppy", "reptile"], "tags": {"shop": "pet"}, "name": "Pet Store"}, - "shop/photo": {"icon": "maki-attraction", "geometry": ["point", "area"], "terms": ["camera", "film"], "tags": {"shop": "photo"}, "name": "Photography Store"}, + "shop/photo": {"icon": "fas-camera-retro", "geometry": ["point", "area"], "terms": ["camera", "film"], "tags": {"shop": "photo"}, "name": "Photography Store"}, "shop/pyrotechnics": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "pyrotechnics"}, "name": "Fireworks Store"}, "shop/radiotechnics": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "radiotechnics"}, "terms": ["antenna", "transistor"], "name": "Radio/Electronic Component Store"}, "shop/religion": {"icon": "maki-shop", "fields": ["{shop}", "religion", "denomination"], "geometry": ["point", "area"], "tags": {"shop": "religion"}, "name": "Religious Store"}, @@ -1012,7 +1012,7 @@ "shop/ticket": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "ticket"}, "terms": ["box office"], "name": "Ticket Seller"}, "shop/tiles": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "tiles"}, "name": "Tile Shop"}, "shop/tobacco": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "tobacco"}, "terms": ["cigarettes", "cigars"], "name": "Tobacco Shop"}, - "shop/toys": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys"}, "terms": ["games"], "name": "Toy Store"}, + "shop/toys": {"icon": "fas-space-shuttle", "geometry": ["point", "area"], "tags": {"shop": "toys"}, "terms": ["games"], "name": "Toy Store"}, "shop/trade": {"icon": "maki-shop", "fields": ["name", "trade", "{shop}"], "geometry": ["point", "area"], "tags": {"shop": "trade"}, "name": "Trade Shop"}, "shop/travel_agency": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"shop": "travel_agency"}, "name": "Travel Agency"}, "shop/tyres": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "tyres"}, "name": "Tire Store"}, @@ -1042,7 +1042,7 @@ "tourism/gallery": {"icon": "maki-art-gallery", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "moreFields": ["payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["art*", "exhibit*", "paint*", "photo*", "sculpt*"], "tags": {"tourism": "gallery"}, "name": "Art Gallery"}, "tourism/guest_house": {"icon": "maki-lodging", "fields": ["name", "operator", "address", "building_area", "rooms", "internet_access"], "moreFields": ["air_conditioning", "smoking", "payment_multi", "internet_access/fee", "internet_access/ssid", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"tourism": "guest_house"}, "terms": ["B&B", "Bed and Breakfast"], "name": "Guest House"}, "tourism/hostel": {"icon": "maki-lodging", "fields": ["{tourism/guest_house}"], "moreFields": ["{tourism/guest_house}"], "geometry": ["point", "area"], "tags": {"tourism": "hostel"}, "name": "Hostel"}, - "tourism/hotel": {"icon": "maki-lodging", "fields": ["{tourism/motel}"], "moreFields": ["{tourism/motel}", "stars", "bar"], "geometry": ["point", "area"], "tags": {"tourism": "hotel"}, "name": "Hotel"}, + "tourism/hotel": {"icon": "fas-concierge-bell", "fields": ["{tourism/motel}"], "moreFields": ["{tourism/motel}", "stars", "bar"], "geometry": ["point", "area"], "tags": {"tourism": "hotel"}, "name": "Hotel"}, "tourism/information": {"icon": "maki-information", "fields": ["information", "operator", "address", "building_area"], "geometry": ["point", "vertex", "area"], "tags": {"tourism": "information"}, "name": "Information"}, "tourism/information/board": {"icon": "maki-information", "fields": ["name", "operator", "board_type", "direction"], "geometry": ["point", "vertex"], "tags": {"tourism": "information", "information": "board"}, "reference": {"key": "information", "value": "board"}, "name": "Information Board"}, "tourism/information/guidepost": {"icon": "maki-information", "fields": ["name", "elevation", "operator", "ref"], "moreFields": ["material"], "geometry": ["point", "vertex"], "terms": ["signpost"], "tags": {"tourism": "information", "information": "guidepost"}, "reference": {"key": "information", "value": "guidepost"}, "name": "Guidepost"}, @@ -2480,12 +2480,12 @@ "shop/baby_goods/Buy Buy Baby": {"name": "Buy Buy Baby", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/buybuyBABY/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q5003352"}, "addTags": {"brand": "Buy Buy Baby", "brand:wikidata": "Q5003352", "brand:wikipedia": "en:Buy Buy Baby", "name": "Buy Buy Baby", "shop": "baby_goods"}, "removeTags": {"brand": "Buy Buy Baby", "brand:wikidata": "Q5003352", "brand:wikipedia": "en:Buy Buy Baby", "name": "Buy Buy Baby", "shop": "baby_goods"}, "matchScore": 2, "suggestion": true}, "shop/baby_goods/Mothercare": {"name": "Mothercare", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/mothercareuk/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q136738"}, "addTags": {"brand": "Mothercare", "brand:wikidata": "Q136738", "brand:wikipedia": "en:Mothercare", "name": "Mothercare", "shop": "baby_goods"}, "removeTags": {"brand": "Mothercare", "brand:wikidata": "Q136738", "brand:wikipedia": "en:Mothercare", "name": "Mothercare", "shop": "baby_goods"}, "matchScore": 2, "suggestion": true}, "shop/baby_goods/西松屋": {"name": "西松屋", "icon": "fas-baby-carriage", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q11628761"}, "addTags": {"brand": "西松屋", "brand:en": "Nishimatsuya Chain", "brand:ja": "西松屋", "brand:wikidata": "Q11628761", "brand:wikipedia": "ja:西松屋", "name": "西松屋", "name:en": "Nishimatsuya Chain", "name:ja": "西松屋", "shop": "baby_goods"}, "removeTags": {"brand": "西松屋", "brand:en": "Nishimatsuya Chain", "brand:ja": "西松屋", "brand:wikidata": "Q11628761", "brand:wikipedia": "ja:西松屋", "name": "西松屋", "name:en": "Nishimatsuya Chain", "name:ja": "西松屋", "shop": "baby_goods"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/bag/Carpisa": {"name": "Carpisa", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/CarpisaOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q28035409"}, "addTags": {"brand": "Carpisa", "brand:wikidata": "Q28035409", "brand:wikipedia": "en:Carpisa", "name": "Carpisa", "shop": "bag"}, "removeTags": {"brand": "Carpisa", "brand:wikidata": "Q28035409", "brand:wikipedia": "en:Carpisa", "name": "Carpisa", "shop": "bag"}, "matchScore": 2, "suggestion": true}, - "shop/bag/Coach": {"name": "Coach", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/coach/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q727697"}, "addTags": {"brand": "Coach", "brand:wikidata": "Q727697", "brand:wikipedia": "en:Coach New York", "name": "Coach", "shop": "bag"}, "removeTags": {"brand": "Coach", "brand:wikidata": "Q727697", "brand:wikipedia": "en:Coach New York", "name": "Coach", "shop": "bag"}, "matchScore": 2, "suggestion": true}, - "shop/bag/Kipling": {"name": "Kipling", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/KiplingU.S.A/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q6414641"}, "addTags": {"brand": "Kipling", "brand:wikidata": "Q6414641", "brand:wikipedia": "en:Kipling (brand)", "name": "Kipling", "shop": "bag"}, "removeTags": {"brand": "Kipling", "brand:wikidata": "Q6414641", "brand:wikipedia": "en:Kipling (brand)", "name": "Kipling", "shop": "bag"}, "matchScore": 2, "suggestion": true}, - "shop/bag/Samsonite": {"name": "Samsonite", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Samsonite/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q1203426"}, "addTags": {"brand": "Samsonite", "brand:wikidata": "Q1203426", "brand:wikipedia": "en:Samsonite", "name": "Samsonite", "shop": "bag"}, "removeTags": {"brand": "Samsonite", "brand:wikidata": "Q1203426", "brand:wikipedia": "en:Samsonite", "name": "Samsonite", "shop": "bag"}, "matchScore": 2, "suggestion": true}, - "shop/bag/Tumi": {"name": "Tumi", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/TumiTravel/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q4465402"}, "addTags": {"brand": "Tumi", "brand:wikidata": "Q4465402", "brand:wikipedia": "en:Tumi Inc.", "name": "Tumi", "shop": "bag"}, "removeTags": {"brand": "Tumi", "brand:wikidata": "Q4465402", "brand:wikipedia": "en:Tumi Inc.", "name": "Tumi", "shop": "bag"}, "matchScore": 2, "suggestion": true}, - "shop/bag/Vera Bradley": {"name": "Vera Bradley", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/VeraBradley/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q7920749"}, "addTags": {"brand": "Vera Bradley", "brand:wikidata": "Q7920749", "brand:wikipedia": "en:Vera Bradley", "name": "Vera Bradley", "shop": "bag"}, "removeTags": {"brand": "Vera Bradley", "brand:wikidata": "Q7920749", "brand:wikipedia": "en:Vera Bradley", "name": "Vera Bradley", "shop": "bag"}, "matchScore": 2, "suggestion": true}, + "shop/bag/Carpisa": {"name": "Carpisa", "icon": "fas-suitcase-rolling", "imageURL": "https://graph.facebook.com/CarpisaOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q28035409"}, "addTags": {"brand": "Carpisa", "brand:wikidata": "Q28035409", "brand:wikipedia": "en:Carpisa", "name": "Carpisa", "shop": "bag"}, "removeTags": {"brand": "Carpisa", "brand:wikidata": "Q28035409", "brand:wikipedia": "en:Carpisa", "name": "Carpisa", "shop": "bag"}, "matchScore": 2, "suggestion": true}, + "shop/bag/Coach": {"name": "Coach", "icon": "fas-suitcase-rolling", "imageURL": "https://graph.facebook.com/coach/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q727697"}, "addTags": {"brand": "Coach", "brand:wikidata": "Q727697", "brand:wikipedia": "en:Coach New York", "name": "Coach", "shop": "bag"}, "removeTags": {"brand": "Coach", "brand:wikidata": "Q727697", "brand:wikipedia": "en:Coach New York", "name": "Coach", "shop": "bag"}, "matchScore": 2, "suggestion": true}, + "shop/bag/Kipling": {"name": "Kipling", "icon": "fas-suitcase-rolling", "imageURL": "https://graph.facebook.com/KiplingU.S.A/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q6414641"}, "addTags": {"brand": "Kipling", "brand:wikidata": "Q6414641", "brand:wikipedia": "en:Kipling (brand)", "name": "Kipling", "shop": "bag"}, "removeTags": {"brand": "Kipling", "brand:wikidata": "Q6414641", "brand:wikipedia": "en:Kipling (brand)", "name": "Kipling", "shop": "bag"}, "matchScore": 2, "suggestion": true}, + "shop/bag/Samsonite": {"name": "Samsonite", "icon": "fas-suitcase-rolling", "imageURL": "https://graph.facebook.com/Samsonite/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q1203426"}, "addTags": {"brand": "Samsonite", "brand:wikidata": "Q1203426", "brand:wikipedia": "en:Samsonite", "name": "Samsonite", "shop": "bag"}, "removeTags": {"brand": "Samsonite", "brand:wikidata": "Q1203426", "brand:wikipedia": "en:Samsonite", "name": "Samsonite", "shop": "bag"}, "matchScore": 2, "suggestion": true}, + "shop/bag/Tumi": {"name": "Tumi", "icon": "fas-suitcase-rolling", "imageURL": "https://graph.facebook.com/TumiTravel/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q4465402"}, "addTags": {"brand": "Tumi", "brand:wikidata": "Q4465402", "brand:wikipedia": "en:Tumi Inc.", "name": "Tumi", "shop": "bag"}, "removeTags": {"brand": "Tumi", "brand:wikidata": "Q4465402", "brand:wikipedia": "en:Tumi Inc.", "name": "Tumi", "shop": "bag"}, "matchScore": 2, "suggestion": true}, + "shop/bag/Vera Bradley": {"name": "Vera Bradley", "icon": "fas-suitcase-rolling", "imageURL": "https://graph.facebook.com/VeraBradley/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bag", "brand:wikidata": "Q7920749"}, "addTags": {"brand": "Vera Bradley", "brand:wikidata": "Q7920749", "brand:wikipedia": "en:Vera Bradley", "name": "Vera Bradley", "shop": "bag"}, "removeTags": {"brand": "Vera Bradley", "brand:wikidata": "Q7920749", "brand:wikipedia": "en:Vera Bradley", "name": "Vera Bradley", "shop": "bag"}, "matchScore": 2, "suggestion": true}, "shop/bakery/Anker": {"name": "Anker", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q557116"}, "addTags": {"brand": "Anker", "brand:wikidata": "Q557116", "brand:wikipedia": "de:Ankerbrot", "name": "Anker", "shop": "bakery"}, "removeTags": {"brand": "Anker", "brand:wikidata": "Q557116", "brand:wikipedia": "de:Ankerbrot", "name": "Anker", "shop": "bakery"}, "matchScore": 2, "suggestion": true}, "shop/bakery/Awiteks": {"name": "Awiteks", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q62054190"}, "addTags": {"brand": "Awiteks", "brand:wikidata": "Q62054190", "name": "Awiteks", "shop": "bakery"}, "removeTags": {"brand": "Awiteks", "brand:wikidata": "Q62054190", "name": "Awiteks", "shop": "bakery"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, "shop/bakery/Backwerk": {"name": "Backwerk", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/155997891116938/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "bakery", "brand:wikidata": "Q798298"}, "addTags": {"brand": "BackWerk", "brand:wikidata": "Q798298", "brand:wikipedia": "de:BackWerk", "name": "Backwerk", "shop": "bakery"}, "removeTags": {"brand": "BackWerk", "brand:wikidata": "Q798298", "brand:wikipedia": "de:BackWerk", "name": "Backwerk", "shop": "bakery"}, "countryCodes": ["at", "ch", "de", "gb", "nl"], "matchScore": 2, "suggestion": true}, @@ -2558,34 +2558,34 @@ "shop/bookmaker/ΟΠΑΠ": {"name": "ΟΠΑΠ", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "bookmaker", "brand:wikidata": "Q2007823"}, "addTags": {"brand": "ΟΠΑΠ", "brand:el": "ΟΠΑΠ", "brand:en": "OPAP", "brand:wikidata": "Q2007823", "brand:wikipedia": "en:OPAP", "name": "ΟΠΑΠ", "name:el": "ΟΠΑΠ", "name:en": "OPAP", "shop": "bookmaker"}, "removeTags": {"brand": "ΟΠΑΠ", "brand:el": "ΟΠΑΠ", "brand:en": "OPAP", "brand:wikidata": "Q2007823", "brand:wikipedia": "en:OPAP", "name": "ΟΠΑΠ", "name:el": "ΟΠΑΠ", "name:en": "OPAP", "shop": "bookmaker"}, "countryCodes": ["gr"], "matchScore": 2, "suggestion": true}, "shop/bookmaker/Лига ставок": {"name": "Лига ставок", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "bookmaker", "brand:wikidata": "Q6545804"}, "addTags": {"brand": "Лига ставок", "brand:en": "Liga Stavok", "brand:ru": "Лига ставок", "brand:wikidata": "Q6545804", "brand:wikipedia": "ru:Лига Ставок", "name": "Лига ставок", "name:en": "Liga Stavok", "name:ru": "Лига ставок", "shop": "bookmaker"}, "removeTags": {"brand": "Лига ставок", "brand:en": "Liga Stavok", "brand:ru": "Лига ставок", "brand:wikidata": "Q6545804", "brand:wikipedia": "ru:Лига Ставок", "name": "Лига ставок", "name:en": "Liga Stavok", "name:ru": "Лига ставок", "shop": "bookmaker"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/bookmaker/Фонбет": {"name": "Фонбет", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFonbet%20logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "bookmaker", "brand:wikidata": "Q49137910"}, "addTags": {"brand": "Фонбет", "brand:en": "Fonbet", "brand:ru": "Фонбет", "brand:wikidata": "Q49137910", "brand:wikipedia": "ru:Фонбет", "name": "Фонбет", "name:en": "Fonbet", "name:ru": "Фонбет", "shop": "bookmaker"}, "removeTags": {"brand": "Фонбет", "brand:en": "Fonbet", "brand:ru": "Фонбет", "brand:wikidata": "Q49137910", "brand:wikipedia": "ru:Фонбет", "name": "Фонбет", "name:en": "Fonbet", "name:ru": "Фонбет", "shop": "bookmaker"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/books/Akademibokhandeln": {"name": "Akademibokhandeln", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q10403918"}, "addTags": {"brand": "Akademibokhandeln", "brand:wikidata": "Q10403918", "brand:wikipedia": "sv:Akademibokhandeln", "name": "Akademibokhandeln", "shop": "books"}, "removeTags": {"brand": "Akademibokhandeln", "brand:wikidata": "Q10403918", "brand:wikipedia": "sv:Akademibokhandeln", "name": "Akademibokhandeln", "shop": "books"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, - "shop/books/Barnes & Noble": {"name": "Barnes & Noble", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1093981584842207232/tlsafBnB_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q795454"}, "addTags": {"brand": "Barnes & Noble", "brand:wikidata": "Q795454", "brand:wikipedia": "en:Barnes & Noble", "name": "Barnes & Noble", "shop": "books"}, "removeTags": {"brand": "Barnes & Noble", "brand:wikidata": "Q795454", "brand:wikipedia": "en:Barnes & Noble", "name": "Barnes & Noble", "shop": "books"}, "matchScore": 2, "suggestion": true}, - "shop/books/Bruna": {"name": "Bruna", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q3317555"}, "addTags": {"brand": "Bruna", "brand:wikidata": "Q3317555", "brand:wikipedia": "en:Bruna (company)", "name": "Bruna", "shop": "books"}, "removeTags": {"brand": "Bruna", "brand:wikidata": "Q3317555", "brand:wikipedia": "en:Bruna (company)", "name": "Bruna", "shop": "books"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, - "shop/books/Chapters": {"name": "Chapters", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChapters%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q5073540"}, "addTags": {"brand": "Chapters", "brand:wikidata": "Q5073540", "brand:wikipedia": "en:Chapters (bookstore)", "name": "Chapters", "shop": "books"}, "removeTags": {"brand": "Chapters", "brand:wikidata": "Q5073540", "brand:wikipedia": "en:Chapters (bookstore)", "name": "Chapters", "shop": "books"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, - "shop/books/Empik": {"name": "Empik", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogoEmpik.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q3045978"}, "addTags": {"brand": "Empik", "brand:wikidata": "Q3045978", "brand:wikipedia": "pl:Empik", "name": "Empik", "shop": "books"}, "removeTags": {"brand": "Empik", "brand:wikidata": "Q3045978", "brand:wikipedia": "pl:Empik", "name": "Empik", "shop": "books"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/books/Fnac": {"name": "Fnac", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1020280617630674944/ZhhGv6rx_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q676585"}, "addTags": {"brand": "Fnac", "brand:wikidata": "Q676585", "brand:wikipedia": "en:Fnac", "name": "Fnac", "shop": "books"}, "removeTags": {"brand": "Fnac", "brand:wikidata": "Q676585", "brand:wikipedia": "en:Fnac", "name": "Fnac", "shop": "books"}, "countryCodes": ["be", "ch", "es", "fr", "nl", "pt"], "matchScore": 2, "suggestion": true}, - "shop/books/Half Price Books": {"name": "Half Price Books", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q5641744"}, "addTags": {"brand": "Half Price Books", "brand:wikidata": "Q5641744", "brand:wikipedia": "en:Half Price Books", "name": "Half Price Books", "shop": "books"}, "removeTags": {"brand": "Half Price Books", "brand:wikidata": "Q5641744", "brand:wikipedia": "en:Half Price Books", "name": "Half Price Books", "shop": "books"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/books/Hugendubel": {"name": "Hugendubel", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/hugendubelbuchhandlungen/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q1634142"}, "addTags": {"brand": "Hugendubel", "brand:wikidata": "Q1634142", "brand:wikipedia": "en:Hugendubel", "name": "Hugendubel", "shop": "books"}, "removeTags": {"brand": "Hugendubel", "brand:wikidata": "Q1634142", "brand:wikipedia": "en:Hugendubel", "name": "Hugendubel", "shop": "books"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/books/Mondadori": {"name": "Mondadori", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMondadori.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q85355"}, "addTags": {"brand": "Mondadori", "brand:wikidata": "Q85355", "brand:wikipedia": "en:Arnoldo Mondadori Editore", "name": "Mondadori", "shop": "books"}, "removeTags": {"brand": "Mondadori", "brand:wikidata": "Q85355", "brand:wikipedia": "en:Arnoldo Mondadori Editore", "name": "Mondadori", "shop": "books"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, - "shop/books/National Book Store": {"name": "National Book Store", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/nbsalert/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q6971094"}, "addTags": {"brand": "National Book Store", "brand:wikidata": "Q6971094", "brand:wikipedia": "en:National Book Store", "name": "National Book Store", "shop": "books"}, "removeTags": {"brand": "National Book Store", "brand:wikidata": "Q6971094", "brand:wikipedia": "en:National Book Store", "name": "National Book Store", "shop": "books"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, - "shop/books/Standaard Boekhandel": {"name": "Standaard Boekhandel", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q3496554"}, "addTags": {"brand": "Standaard Boekhandel", "brand:wikidata": "Q3496554", "brand:wikipedia": "nl:Standaard Boekhandel", "name": "Standaard Boekhandel", "shop": "books"}, "removeTags": {"brand": "Standaard Boekhandel", "brand:wikidata": "Q3496554", "brand:wikipedia": "nl:Standaard Boekhandel", "name": "Standaard Boekhandel", "shop": "books"}, "countryCodes": ["be"], "matchScore": 2, "suggestion": true}, - "shop/books/TSUTAYA": {"name": "TSUTAYA", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCulture%20Convenience%20Club%20(CCC)%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q5193457"}, "addTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "books"}, "removeTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/books/Thalia": {"name": "Thalia", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20thalia%20rgb%2004%2009%202018.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q2408854"}, "addTags": {"brand": "Thalia", "brand:wikidata": "Q2408854", "brand:wikipedia": "de:Thalia Bücher", "name": "Thalia", "shop": "books"}, "removeTags": {"brand": "Thalia", "brand:wikidata": "Q2408854", "brand:wikipedia": "de:Thalia Bücher", "name": "Thalia", "shop": "books"}, "countryCodes": ["at", "ch", "de"], "matchScore": 2, "suggestion": true}, - "shop/books/The Works": {"name": "The Works", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1066979738982461440/rTCTlJHQ_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q7775853"}, "addTags": {"brand": "The Works", "brand:wikidata": "Q7775853", "brand:wikipedia": "en:The Works (retailer)", "name": "The Works", "shop": "books"}, "removeTags": {"brand": "The Works", "brand:wikidata": "Q7775853", "brand:wikipedia": "en:The Works (retailer)", "name": "The Works", "shop": "books"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, - "shop/books/WHSmith": {"name": "WHSmith", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWHSmith.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q1548712"}, "addTags": {"brand": "WHSmith", "brand:wikidata": "Q1548712", "brand:wikipedia": "en:WHSmith", "name": "WHSmith", "shop": "books"}, "removeTags": {"brand": "WHSmith", "brand:wikidata": "Q1548712", "brand:wikipedia": "en:WHSmith", "name": "WHSmith", "shop": "books"}, "countryCodes": ["au", "bh", "br", "cn", "de", "dk", "fi", "fj", "fr", "gi", "gr", "id", "ie", "in", "it", "jo", "kw", "mt", "my", "nl", "no"], "matchScore": 2, "suggestion": true}, - "shop/books/Waterstones": {"name": "Waterstones", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1079909723644837888/HfOKyVNn_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q151779"}, "addTags": {"brand": "Waterstones", "brand:wikidata": "Q151779", "brand:wikipedia": "en:Waterstones", "name": "Waterstones", "shop": "books"}, "removeTags": {"brand": "Waterstones", "brand:wikidata": "Q151779", "brand:wikipedia": "en:Waterstones", "name": "Waterstones", "shop": "books"}, "countryCodes": ["be", "gb", "ie", "je", "nl"], "matchScore": 2, "suggestion": true}, - "shop/books/Weltbild": {"name": "Weltbild", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/weltbild/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q883522"}, "addTags": {"brand": "Weltbild", "brand:wikidata": "Q883522", "brand:wikipedia": "en:Weltbild Publishing Group", "name": "Weltbild", "shop": "books"}, "removeTags": {"brand": "Weltbild", "brand:wikidata": "Q883522", "brand:wikipedia": "en:Weltbild Publishing Group", "name": "Weltbild", "shop": "books"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/books/Буквоед": {"name": "Буквоед", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q4098549"}, "addTags": {"brand": "Буквоед", "brand:wikidata": "Q4098549", "brand:wikipedia": "ru:Буквоед", "name": "Буквоед", "shop": "books"}, "removeTags": {"brand": "Буквоед", "brand:wikidata": "Q4098549", "brand:wikipedia": "ru:Буквоед", "name": "Буквоед", "shop": "books"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/books/Дом книги": {"name": "Дом книги", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q48950742"}, "addTags": {"brand": "Дом книги", "brand:wikidata": "Q48950742", "brand:wikipedia": "ru:Московский дом книги", "name": "Дом книги", "shop": "books"}, "removeTags": {"brand": "Дом книги", "brand:wikidata": "Q48950742", "brand:wikipedia": "ru:Московский дом книги", "name": "Дом книги", "shop": "books"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/books/Читай-город": {"name": "Читай-город", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q4516645"}, "addTags": {"brand": "Читай-город", "brand:wikidata": "Q4516645", "brand:wikipedia": "ru:Читай-город", "name": "Читай-город", "shop": "books"}, "removeTags": {"brand": "Читай-город", "brand:wikidata": "Q4516645", "brand:wikipedia": "ru:Читай-город", "name": "Читай-город", "shop": "books"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/books/あおい書店": {"name": "あおい書店", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/aoi.bookstore/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q11256783"}, "addTags": {"brand": "あおい書店", "brand:en": "AOI", "brand:ja": "あおい書店", "brand:wikidata": "Q11256783", "brand:wikipedia": "ja:あおい書店", "name": "あおい書店", "name:en": "AOI", "name:ja": "あおい書店", "shop": "books"}, "removeTags": {"brand": "あおい書店", "brand:en": "AOI", "brand:ja": "あおい書店", "brand:wikidata": "Q11256783", "brand:wikipedia": "ja:あおい書店", "name": "あおい書店", "name:en": "AOI", "name:ja": "あおい書店", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/books/ブックオフ": {"name": "ブックオフ", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/bookoffcorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q893011"}, "addTags": {"brand": "ブックオフ", "brand:en": "Book Off", "brand:ja": "ブックオフ", "brand:wikidata": "Q893011", "brand:wikipedia": "en:Book Off", "name": "ブックオフ", "name:en": "Book Off", "name:ja": "ブックオフ", "shop": "books"}, "removeTags": {"brand": "ブックオフ", "brand:en": "Book Off", "brand:ja": "ブックオフ", "brand:wikidata": "Q893011", "brand:wikipedia": "en:Book Off", "name": "ブックオフ", "name:en": "Book Off", "name:ja": "ブックオフ", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/books/メロンブックス": {"name": "メロンブックス", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/877364475304714240/Ael4G2BP_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q10851653"}, "addTags": {"brand": "メロンブックス", "brand:en": "Melonbooks", "brand:ja": "メロンブックス", "brand:wikidata": "Q10851653", "brand:wikipedia": "ja:メロンブックス", "name": "メロンブックス", "name:en": "Melonbooks", "name:ja": "メロンブックス", "shop": "books"}, "removeTags": {"brand": "メロンブックス", "brand:en": "Melonbooks", "brand:ja": "メロンブックス", "brand:wikidata": "Q10851653", "brand:wikipedia": "ja:メロンブックス", "name": "メロンブックス", "name:en": "Melonbooks", "name:ja": "メロンブックス", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/books/リブロ": {"name": "リブロ", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q6542768"}, "addTags": {"brand": "リブロ", "brand:en": "LIBRO", "brand:ja": "リブロ", "brand:wikidata": "Q6542768", "brand:wikipedia": "ja:リブロ", "name": "リブロ", "name:en": "Libro", "name:ja": "リブロ", "shop": "books"}, "removeTags": {"brand": "リブロ", "brand:en": "LIBRO", "brand:ja": "リブロ", "brand:wikidata": "Q6542768", "brand:wikipedia": "ja:リブロ", "name": "リブロ", "name:en": "Libro", "name:ja": "リブロ", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/books/三省堂書店": {"name": "三省堂書店", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q10866539"}, "addTags": {"brand": "三省堂書店", "brand:en": "Books Sanseido", "brand:ja": "三省堂書店", "brand:wikidata": "Q10866539", "brand:wikipedia": "ja:三省堂書店", "name": "三省堂書店", "name:en": "Books Sanseido", "name:ja": "三省堂書店", "shop": "books"}, "removeTags": {"brand": "三省堂書店", "brand:en": "Books Sanseido", "brand:ja": "三省堂書店", "brand:wikidata": "Q10866539", "brand:wikipedia": "ja:三省堂書店", "name": "三省堂書店", "name:en": "Books Sanseido", "name:ja": "三省堂書店", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/books/文教堂": {"name": "文教堂", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q11499974"}, "addTags": {"brand": "文教堂", "brand:en": "Bunkyodo", "brand:ja": "文教堂", "brand:wikidata": "Q11499974", "brand:wikipedia": "ja:文教堂", "name": "文教堂", "name:en": "Bunkyodo", "name:ja": "文教堂", "shop": "books"}, "removeTags": {"brand": "文教堂", "brand:en": "Bunkyodo", "brand:ja": "文教堂", "brand:wikidata": "Q11499974", "brand:wikipedia": "ja:文教堂", "name": "文教堂", "name:en": "Bunkyodo", "name:ja": "文教堂", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "shop/books/新华书店": {"name": "新华书店", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q6124193"}, "addTags": {"brand": "新华书店", "brand:en": "Xinhua Bookstore", "brand:wikidata": "Q6124193", "brand:wikipedia": "en:Xinhua Bookstore", "brand:zh": "新华书店", "name": "新华书店", "name:en": "Xinhua Bookstore", "name:zh": "新华书店", "shop": "books"}, "removeTags": {"brand": "新华书店", "brand:en": "Xinhua Bookstore", "brand:wikidata": "Q6124193", "brand:wikipedia": "en:Xinhua Bookstore", "brand:zh": "新华书店", "name": "新华书店", "name:en": "Xinhua Bookstore", "name:zh": "新华书店", "shop": "books"}, "countryCodes": ["cn"], "matchScore": 2, "suggestion": true}, - "shop/books/未来屋書店": {"name": "未来屋書店", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/miraiyashoten/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q11519563"}, "addTags": {"brand": "未来屋書店", "brand:en": "Miraiya Shoten", "brand:ja": "未来屋書店", "brand:wikidata": "Q11519563", "brand:wikipedia": "ja:未来屋書店", "name": "未来屋書店", "name:en": "Miraiya Shoten", "name:ja": "未来屋書店", "shop": "books"}, "removeTags": {"brand": "未来屋書店", "brand:en": "Miraiya Shoten", "brand:ja": "未来屋書店", "brand:wikidata": "Q11519563", "brand:wikipedia": "ja:未来屋書店", "name": "未来屋書店", "name:en": "Miraiya Shoten", "name:ja": "未来屋書店", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/books/Akademibokhandeln": {"name": "Akademibokhandeln", "icon": "fas-book", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q10403918"}, "addTags": {"brand": "Akademibokhandeln", "brand:wikidata": "Q10403918", "brand:wikipedia": "sv:Akademibokhandeln", "name": "Akademibokhandeln", "shop": "books"}, "removeTags": {"brand": "Akademibokhandeln", "brand:wikidata": "Q10403918", "brand:wikipedia": "sv:Akademibokhandeln", "name": "Akademibokhandeln", "shop": "books"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, + "shop/books/Barnes & Noble": {"name": "Barnes & Noble", "icon": "fas-book", "imageURL": "https://pbs.twimg.com/profile_images/1093981584842207232/tlsafBnB_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q795454"}, "addTags": {"brand": "Barnes & Noble", "brand:wikidata": "Q795454", "brand:wikipedia": "en:Barnes & Noble", "name": "Barnes & Noble", "shop": "books"}, "removeTags": {"brand": "Barnes & Noble", "brand:wikidata": "Q795454", "brand:wikipedia": "en:Barnes & Noble", "name": "Barnes & Noble", "shop": "books"}, "matchScore": 2, "suggestion": true}, + "shop/books/Bruna": {"name": "Bruna", "icon": "fas-book", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q3317555"}, "addTags": {"brand": "Bruna", "brand:wikidata": "Q3317555", "brand:wikipedia": "en:Bruna (company)", "name": "Bruna", "shop": "books"}, "removeTags": {"brand": "Bruna", "brand:wikidata": "Q3317555", "brand:wikipedia": "en:Bruna (company)", "name": "Bruna", "shop": "books"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, + "shop/books/Chapters": {"name": "Chapters", "icon": "fas-book", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChapters%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q5073540"}, "addTags": {"brand": "Chapters", "brand:wikidata": "Q5073540", "brand:wikipedia": "en:Chapters (bookstore)", "name": "Chapters", "shop": "books"}, "removeTags": {"brand": "Chapters", "brand:wikidata": "Q5073540", "brand:wikipedia": "en:Chapters (bookstore)", "name": "Chapters", "shop": "books"}, "countryCodes": ["ca", "us"], "matchScore": 2, "suggestion": true}, + "shop/books/Empik": {"name": "Empik", "icon": "fas-book", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogoEmpik.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q3045978"}, "addTags": {"brand": "Empik", "brand:wikidata": "Q3045978", "brand:wikipedia": "pl:Empik", "name": "Empik", "shop": "books"}, "removeTags": {"brand": "Empik", "brand:wikidata": "Q3045978", "brand:wikipedia": "pl:Empik", "name": "Empik", "shop": "books"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/books/Fnac": {"name": "Fnac", "icon": "fas-book", "imageURL": "https://pbs.twimg.com/profile_images/1020280617630674944/ZhhGv6rx_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q676585"}, "addTags": {"brand": "Fnac", "brand:wikidata": "Q676585", "brand:wikipedia": "en:Fnac", "name": "Fnac", "shop": "books"}, "removeTags": {"brand": "Fnac", "brand:wikidata": "Q676585", "brand:wikipedia": "en:Fnac", "name": "Fnac", "shop": "books"}, "countryCodes": ["be", "ch", "es", "fr", "nl", "pt"], "matchScore": 2, "suggestion": true}, + "shop/books/Half Price Books": {"name": "Half Price Books", "icon": "fas-book", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q5641744"}, "addTags": {"brand": "Half Price Books", "brand:wikidata": "Q5641744", "brand:wikipedia": "en:Half Price Books", "name": "Half Price Books", "shop": "books"}, "removeTags": {"brand": "Half Price Books", "brand:wikidata": "Q5641744", "brand:wikipedia": "en:Half Price Books", "name": "Half Price Books", "shop": "books"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/books/Hugendubel": {"name": "Hugendubel", "icon": "fas-book", "imageURL": "https://graph.facebook.com/hugendubelbuchhandlungen/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q1634142"}, "addTags": {"brand": "Hugendubel", "brand:wikidata": "Q1634142", "brand:wikipedia": "en:Hugendubel", "name": "Hugendubel", "shop": "books"}, "removeTags": {"brand": "Hugendubel", "brand:wikidata": "Q1634142", "brand:wikipedia": "en:Hugendubel", "name": "Hugendubel", "shop": "books"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/books/Mondadori": {"name": "Mondadori", "icon": "fas-book", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMondadori.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q85355"}, "addTags": {"brand": "Mondadori", "brand:wikidata": "Q85355", "brand:wikipedia": "en:Arnoldo Mondadori Editore", "name": "Mondadori", "shop": "books"}, "removeTags": {"brand": "Mondadori", "brand:wikidata": "Q85355", "brand:wikipedia": "en:Arnoldo Mondadori Editore", "name": "Mondadori", "shop": "books"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, + "shop/books/National Book Store": {"name": "National Book Store", "icon": "fas-book", "imageURL": "https://graph.facebook.com/nbsalert/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q6971094"}, "addTags": {"brand": "National Book Store", "brand:wikidata": "Q6971094", "brand:wikipedia": "en:National Book Store", "name": "National Book Store", "shop": "books"}, "removeTags": {"brand": "National Book Store", "brand:wikidata": "Q6971094", "brand:wikipedia": "en:National Book Store", "name": "National Book Store", "shop": "books"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, + "shop/books/Standaard Boekhandel": {"name": "Standaard Boekhandel", "icon": "fas-book", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q3496554"}, "addTags": {"brand": "Standaard Boekhandel", "brand:wikidata": "Q3496554", "brand:wikipedia": "nl:Standaard Boekhandel", "name": "Standaard Boekhandel", "shop": "books"}, "removeTags": {"brand": "Standaard Boekhandel", "brand:wikidata": "Q3496554", "brand:wikipedia": "nl:Standaard Boekhandel", "name": "Standaard Boekhandel", "shop": "books"}, "countryCodes": ["be"], "matchScore": 2, "suggestion": true}, + "shop/books/TSUTAYA": {"name": "TSUTAYA", "icon": "fas-book", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCulture%20Convenience%20Club%20(CCC)%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q5193457"}, "addTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "books"}, "removeTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/books/Thalia": {"name": "Thalia", "icon": "fas-book", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20thalia%20rgb%2004%2009%202018.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q2408854"}, "addTags": {"brand": "Thalia", "brand:wikidata": "Q2408854", "brand:wikipedia": "de:Thalia Bücher", "name": "Thalia", "shop": "books"}, "removeTags": {"brand": "Thalia", "brand:wikidata": "Q2408854", "brand:wikipedia": "de:Thalia Bücher", "name": "Thalia", "shop": "books"}, "countryCodes": ["at", "ch", "de"], "matchScore": 2, "suggestion": true}, + "shop/books/The Works": {"name": "The Works", "icon": "fas-book", "imageURL": "https://pbs.twimg.com/profile_images/1066979738982461440/rTCTlJHQ_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q7775853"}, "addTags": {"brand": "The Works", "brand:wikidata": "Q7775853", "brand:wikipedia": "en:The Works (retailer)", "name": "The Works", "shop": "books"}, "removeTags": {"brand": "The Works", "brand:wikidata": "Q7775853", "brand:wikipedia": "en:The Works (retailer)", "name": "The Works", "shop": "books"}, "countryCodes": ["gb", "ie"], "matchScore": 2, "suggestion": true}, + "shop/books/WHSmith": {"name": "WHSmith", "icon": "fas-book", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWHSmith.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q1548712"}, "addTags": {"brand": "WHSmith", "brand:wikidata": "Q1548712", "brand:wikipedia": "en:WHSmith", "name": "WHSmith", "shop": "books"}, "removeTags": {"brand": "WHSmith", "brand:wikidata": "Q1548712", "brand:wikipedia": "en:WHSmith", "name": "WHSmith", "shop": "books"}, "countryCodes": ["au", "bh", "br", "cn", "de", "dk", "fi", "fj", "fr", "gi", "gr", "id", "ie", "in", "it", "jo", "kw", "mt", "my", "nl", "no"], "matchScore": 2, "suggestion": true}, + "shop/books/Waterstones": {"name": "Waterstones", "icon": "fas-book", "imageURL": "https://pbs.twimg.com/profile_images/1079909723644837888/HfOKyVNn_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q151779"}, "addTags": {"brand": "Waterstones", "brand:wikidata": "Q151779", "brand:wikipedia": "en:Waterstones", "name": "Waterstones", "shop": "books"}, "removeTags": {"brand": "Waterstones", "brand:wikidata": "Q151779", "brand:wikipedia": "en:Waterstones", "name": "Waterstones", "shop": "books"}, "countryCodes": ["be", "gb", "ie", "je", "nl"], "matchScore": 2, "suggestion": true}, + "shop/books/Weltbild": {"name": "Weltbild", "icon": "fas-book", "imageURL": "https://graph.facebook.com/weltbild/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q883522"}, "addTags": {"brand": "Weltbild", "brand:wikidata": "Q883522", "brand:wikipedia": "en:Weltbild Publishing Group", "name": "Weltbild", "shop": "books"}, "removeTags": {"brand": "Weltbild", "brand:wikidata": "Q883522", "brand:wikipedia": "en:Weltbild Publishing Group", "name": "Weltbild", "shop": "books"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/books/Буквоед": {"name": "Буквоед", "icon": "fas-book", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q4098549"}, "addTags": {"brand": "Буквоед", "brand:wikidata": "Q4098549", "brand:wikipedia": "ru:Буквоед", "name": "Буквоед", "shop": "books"}, "removeTags": {"brand": "Буквоед", "brand:wikidata": "Q4098549", "brand:wikipedia": "ru:Буквоед", "name": "Буквоед", "shop": "books"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/books/Дом книги": {"name": "Дом книги", "icon": "fas-book", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q48950742"}, "addTags": {"brand": "Дом книги", "brand:wikidata": "Q48950742", "brand:wikipedia": "ru:Московский дом книги", "name": "Дом книги", "shop": "books"}, "removeTags": {"brand": "Дом книги", "brand:wikidata": "Q48950742", "brand:wikipedia": "ru:Московский дом книги", "name": "Дом книги", "shop": "books"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/books/Читай-город": {"name": "Читай-город", "icon": "fas-book", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q4516645"}, "addTags": {"brand": "Читай-город", "brand:wikidata": "Q4516645", "brand:wikipedia": "ru:Читай-город", "name": "Читай-город", "shop": "books"}, "removeTags": {"brand": "Читай-город", "brand:wikidata": "Q4516645", "brand:wikipedia": "ru:Читай-город", "name": "Читай-город", "shop": "books"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/books/あおい書店": {"name": "あおい書店", "icon": "fas-book", "imageURL": "https://graph.facebook.com/aoi.bookstore/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q11256783"}, "addTags": {"brand": "あおい書店", "brand:en": "AOI", "brand:ja": "あおい書店", "brand:wikidata": "Q11256783", "brand:wikipedia": "ja:あおい書店", "name": "あおい書店", "name:en": "AOI", "name:ja": "あおい書店", "shop": "books"}, "removeTags": {"brand": "あおい書店", "brand:en": "AOI", "brand:ja": "あおい書店", "brand:wikidata": "Q11256783", "brand:wikipedia": "ja:あおい書店", "name": "あおい書店", "name:en": "AOI", "name:ja": "あおい書店", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/books/ブックオフ": {"name": "ブックオフ", "icon": "fas-book", "imageURL": "https://graph.facebook.com/bookoffcorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q893011"}, "addTags": {"brand": "ブックオフ", "brand:en": "Book Off", "brand:ja": "ブックオフ", "brand:wikidata": "Q893011", "brand:wikipedia": "en:Book Off", "name": "ブックオフ", "name:en": "Book Off", "name:ja": "ブックオフ", "shop": "books"}, "removeTags": {"brand": "ブックオフ", "brand:en": "Book Off", "brand:ja": "ブックオフ", "brand:wikidata": "Q893011", "brand:wikipedia": "en:Book Off", "name": "ブックオフ", "name:en": "Book Off", "name:ja": "ブックオフ", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/books/メロンブックス": {"name": "メロンブックス", "icon": "fas-book", "imageURL": "https://pbs.twimg.com/profile_images/877364475304714240/Ael4G2BP_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q10851653"}, "addTags": {"brand": "メロンブックス", "brand:en": "Melonbooks", "brand:ja": "メロンブックス", "brand:wikidata": "Q10851653", "brand:wikipedia": "ja:メロンブックス", "name": "メロンブックス", "name:en": "Melonbooks", "name:ja": "メロンブックス", "shop": "books"}, "removeTags": {"brand": "メロンブックス", "brand:en": "Melonbooks", "brand:ja": "メロンブックス", "brand:wikidata": "Q10851653", "brand:wikipedia": "ja:メロンブックス", "name": "メロンブックス", "name:en": "Melonbooks", "name:ja": "メロンブックス", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/books/リブロ": {"name": "リブロ", "icon": "fas-book", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q6542768"}, "addTags": {"brand": "リブロ", "brand:en": "LIBRO", "brand:ja": "リブロ", "brand:wikidata": "Q6542768", "brand:wikipedia": "ja:リブロ", "name": "リブロ", "name:en": "Libro", "name:ja": "リブロ", "shop": "books"}, "removeTags": {"brand": "リブロ", "brand:en": "LIBRO", "brand:ja": "リブロ", "brand:wikidata": "Q6542768", "brand:wikipedia": "ja:リブロ", "name": "リブロ", "name:en": "Libro", "name:ja": "リブロ", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/books/三省堂書店": {"name": "三省堂書店", "icon": "fas-book", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q10866539"}, "addTags": {"brand": "三省堂書店", "brand:en": "Books Sanseido", "brand:ja": "三省堂書店", "brand:wikidata": "Q10866539", "brand:wikipedia": "ja:三省堂書店", "name": "三省堂書店", "name:en": "Books Sanseido", "name:ja": "三省堂書店", "shop": "books"}, "removeTags": {"brand": "三省堂書店", "brand:en": "Books Sanseido", "brand:ja": "三省堂書店", "brand:wikidata": "Q10866539", "brand:wikipedia": "ja:三省堂書店", "name": "三省堂書店", "name:en": "Books Sanseido", "name:ja": "三省堂書店", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/books/文教堂": {"name": "文教堂", "icon": "fas-book", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q11499974"}, "addTags": {"brand": "文教堂", "brand:en": "Bunkyodo", "brand:ja": "文教堂", "brand:wikidata": "Q11499974", "brand:wikipedia": "ja:文教堂", "name": "文教堂", "name:en": "Bunkyodo", "name:ja": "文教堂", "shop": "books"}, "removeTags": {"brand": "文教堂", "brand:en": "Bunkyodo", "brand:ja": "文教堂", "brand:wikidata": "Q11499974", "brand:wikipedia": "ja:文教堂", "name": "文教堂", "name:en": "Bunkyodo", "name:ja": "文教堂", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/books/新华书店": {"name": "新华书店", "icon": "fas-book", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q6124193"}, "addTags": {"brand": "新华书店", "brand:en": "Xinhua Bookstore", "brand:wikidata": "Q6124193", "brand:wikipedia": "en:Xinhua Bookstore", "brand:zh": "新华书店", "name": "新华书店", "name:en": "Xinhua Bookstore", "name:zh": "新华书店", "shop": "books"}, "removeTags": {"brand": "新华书店", "brand:en": "Xinhua Bookstore", "brand:wikidata": "Q6124193", "brand:wikipedia": "en:Xinhua Bookstore", "brand:zh": "新华书店", "name": "新华书店", "name:en": "Xinhua Bookstore", "name:zh": "新华书店", "shop": "books"}, "countryCodes": ["cn"], "matchScore": 2, "suggestion": true}, + "shop/books/未来屋書店": {"name": "未来屋書店", "icon": "fas-book", "imageURL": "https://graph.facebook.com/miraiyashoten/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "books", "brand:wikidata": "Q11519563"}, "addTags": {"brand": "未来屋書店", "brand:en": "Miraiya Shoten", "brand:ja": "未来屋書店", "brand:wikidata": "Q11519563", "brand:wikipedia": "ja:未来屋書店", "name": "未来屋書店", "name:en": "Miraiya Shoten", "name:ja": "未来屋書店", "shop": "books"}, "removeTags": {"brand": "未来屋書店", "brand:en": "Miraiya Shoten", "brand:ja": "未来屋書店", "brand:wikidata": "Q11519563", "brand:wikipedia": "ja:未来屋書店", "name": "未来屋書店", "name:en": "Miraiya Shoten", "name:ja": "未来屋書店", "shop": "books"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/butcher/Coqivoire": {"name": "Coqivoire", "icon": "fas-bacon", "geometry": ["point", "area"], "tags": {"shop": "butcher", "brand:wikidata": "Q60183284"}, "addTags": {"brand": "Coqivoire", "brand:wikidata": "Q60183284", "butcher": "poultry", "name": "Coqivoire", "shop": "butcher"}, "removeTags": {"brand": "Coqivoire", "brand:wikidata": "Q60183284", "butcher": "poultry", "name": "Coqivoire", "shop": "butcher"}, "countryCodes": ["ci"], "matchScore": 2, "suggestion": true}, "shop/butcher/Foani": {"name": "Foani", "icon": "fas-bacon", "geometry": ["point", "area"], "tags": {"shop": "butcher", "brand:wikidata": "Q60183335"}, "addTags": {"brand": "Foani", "brand:wikidata": "Q60183335", "butcher": "poultry", "name": "Foani", "shop": "butcher"}, "removeTags": {"brand": "Foani", "brand:wikidata": "Q60183335", "butcher": "poultry", "name": "Foani", "shop": "butcher"}, "countryCodes": ["ci"], "matchScore": 2, "suggestion": true}, "shop/butcher/Vinzenzmurr": {"name": "Vinzenzmurr", "icon": "fas-bacon", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FVinzenzmurr%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "butcher", "brand:wikidata": "Q2527361"}, "addTags": {"brand": "Vinzenzmurr", "brand:wikidata": "Q2527361", "brand:wikipedia": "de:Vinzenzmurr", "name": "Vinzenzmurr", "shop": "butcher"}, "removeTags": {"brand": "Vinzenzmurr", "brand:wikidata": "Q2527361", "brand:wikipedia": "de:Vinzenzmurr", "name": "Vinzenzmurr", "shop": "butcher"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, @@ -3397,7 +3397,7 @@ "shop/pet/Petland": {"name": "Petland", "icon": "maki-dog-park", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q17111474"}, "addTags": {"brand": "Petland", "brand:wikidata": "Q17111474", "brand:wikipedia": "en:Petland", "name": "Petland", "shop": "pet"}, "removeTags": {"brand": "Petland", "brand:wikidata": "Q17111474", "brand:wikipedia": "en:Petland", "name": "Petland", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/pet/Petland Discounts": {"name": "Petland Discounts", "icon": "maki-dog-park", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q7178463"}, "addTags": {"brand": "Petland Discounts", "brand:wikidata": "Q7178463", "brand:wikipedia": "en:Petland Discounts", "name": "Petland Discounts", "shop": "pet"}, "removeTags": {"brand": "Petland Discounts", "brand:wikidata": "Q7178463", "brand:wikipedia": "en:Petland Discounts", "name": "Petland Discounts", "shop": "pet"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/pet/Pets at Home": {"name": "Pets at Home", "icon": "maki-dog-park", "imageURL": "https://pbs.twimg.com/profile_images/1219801082/PAH_Logo_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "pet", "brand:wikidata": "Q7179258"}, "addTags": {"brand": "Pets at Home", "brand:wikidata": "Q7179258", "brand:wikipedia": "en:Pets at Home", "name": "Pets at Home", "shop": "pet"}, "removeTags": {"brand": "Pets at Home", "brand:wikidata": "Q7179258", "brand:wikipedia": "en:Pets at Home", "name": "Pets at Home", "shop": "pet"}, "matchScore": 2, "suggestion": true}, - "shop/photo/Kodak Express": {"name": "Kodak Express", "icon": "maki-attraction", "geometry": ["point", "area"], "tags": {"shop": "photo", "brand:wikidata": "Q6425126"}, "addTags": {"brand": "Kodak Express", "brand:wikidata": "Q6425126", "brand:wikipedia": "en:Kodak Express", "name": "Kodak Express", "shop": "photo"}, "removeTags": {"brand": "Kodak Express", "brand:wikidata": "Q6425126", "brand:wikipedia": "en:Kodak Express", "name": "Kodak Express", "shop": "photo"}, "matchScore": 2, "suggestion": true}, + "shop/photo/Kodak Express": {"name": "Kodak Express", "icon": "fas-camera-retro", "geometry": ["point", "area"], "tags": {"shop": "photo", "brand:wikidata": "Q6425126"}, "addTags": {"brand": "Kodak Express", "brand:wikidata": "Q6425126", "brand:wikipedia": "en:Kodak Express", "name": "Kodak Express", "shop": "photo"}, "removeTags": {"brand": "Kodak Express", "brand:wikidata": "Q6425126", "brand:wikipedia": "en:Kodak Express", "name": "Kodak Express", "shop": "photo"}, "matchScore": 2, "suggestion": true}, "shop/second_hand/Buffalo Exchange": {"name": "Buffalo Exchange", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "second_hand", "brand:wikidata": "Q4985721"}, "addTags": {"brand": "Buffalo Exchange", "brand:wikidata": "Q4985721", "brand:wikipedia": "en:Buffalo Exchange", "name": "Buffalo Exchange", "second_hand": "only", "shop": "clothes"}, "removeTags": {"brand": "Buffalo Exchange", "brand:wikidata": "Q4985721", "brand:wikipedia": "en:Buffalo Exchange", "name": "Buffalo Exchange", "second_hand": "only", "shop": "clothes"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/second_hand/Value Village": {"name": "Value Village", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSavers-logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "second_hand", "brand:wikidata": "Q7428188"}, "addTags": {"brand": "Value Village", "brand:wikidata": "Q7428188", "brand:wikipedia": "en:Savers", "name": "Value Village", "shop": "second_hand"}, "removeTags": {"brand": "Value Village", "brand:wikidata": "Q7428188", "brand:wikipedia": "en:Savers", "name": "Value Village", "shop": "second_hand"}, "matchScore": 2, "suggestion": true}, "shop/shoes/ABCマート": {"name": "ABCマート", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/172547912801644/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "shoes", "brand:wikidata": "Q11188787"}, "addTags": {"brand": "ABCマート", "brand:ja": "ABCマート", "brand:wikidata": "Q11188787", "brand:wikipedia": "en:ABC-Mart", "name": "ABCマート", "name:ja": "ABCマート", "shop": "shoes"}, "removeTags": {"brand": "ABCマート", "brand:ja": "ABCマート", "brand:wikidata": "Q11188787", "brand:wikipedia": "en:ABC-Mart", "name": "ABCマート", "name:ja": "ABCマート", "shop": "shoes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, @@ -3858,19 +3858,19 @@ "shop/ticket/Boutique Grandes Lignes": {"name": "Boutique Grandes Lignes", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/SNCFOFFICIEL/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "ticket", "brand:wikidata": "Q13646"}, "addTags": {"brand": "Boutique Grandes Lignes", "brand:wikidata": "Q13646", "brand:wikipedia": "fr:Société nationale des chemins de fer français", "name": "Boutique Grandes Lignes", "shop": "ticket"}, "removeTags": {"brand": "Boutique Grandes Lignes", "brand:wikidata": "Q13646", "brand:wikipedia": "fr:Société nationale des chemins de fer français", "name": "Boutique Grandes Lignes", "shop": "ticket"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/ticket/Guichet Transilien": {"name": "Guichet Transilien", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/776102546045865984/-NPGF3eG_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "ticket", "brand:wikidata": "Q389554"}, "addTags": {"brand": "Guichet Transilien", "brand:wikidata": "Q389554", "brand:wikipedia": "fr:Transilien", "name": "Guichet Transilien", "shop": "ticket"}, "removeTags": {"brand": "Guichet Transilien", "brand:wikidata": "Q389554", "brand:wikipedia": "fr:Transilien", "name": "Guichet Transilien", "shop": "ticket"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/tobacco/Nemzeti Dohánybolt": {"name": "Nemzeti Dohánybolt", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "tobacco", "brand:wikidata": "Q20639040"}, "addTags": {"brand": "Nemzeti Dohánybolt", "brand:wikidata": "Q20639040", "brand:wikipedia": "en:Dohánybolt", "name": "Nemzeti Dohánybolt", "shop": "tobacco"}, "removeTags": {"brand": "Nemzeti Dohánybolt", "brand:wikidata": "Q20639040", "brand:wikipedia": "en:Dohánybolt", "name": "Nemzeti Dohánybolt", "shop": "tobacco"}, "countryCodes": ["hu"], "matchScore": 2, "suggestion": true}, - "shop/toys/Build-A-Bear Workshop": {"name": "Build-A-Bear Workshop", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Buildabear/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q1002992"}, "addTags": {"brand": "Build-A-Bear Workshop", "brand:wikidata": "Q1002992", "brand:wikipedia": "en:Build-A-Bear Workshop", "name": "Build-A-Bear Workshop", "shop": "toys"}, "removeTags": {"brand": "Build-A-Bear Workshop", "brand:wikidata": "Q1002992", "brand:wikipedia": "en:Build-A-Bear Workshop", "name": "Build-A-Bear Workshop", "shop": "toys"}, "matchScore": 2, "suggestion": true}, - "shop/toys/Dráčik": {"name": "Dráčik", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q57653669"}, "addTags": {"brand": "Dráčik", "brand:wikidata": "Q57653669", "name": "Dráčik", "shop": "toys"}, "removeTags": {"brand": "Dráčik", "brand:wikidata": "Q57653669", "name": "Dráčik", "shop": "toys"}, "countryCodes": ["cz", "sk"], "matchScore": 2, "suggestion": true}, - "shop/toys/Intertoys": {"name": "Intertoys", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q1891407"}, "addTags": {"brand": "Intertoys", "brand:wikidata": "Q1891407", "brand:wikipedia": "nl:Intertoys", "name": "Intertoys", "shop": "toys"}, "removeTags": {"brand": "Intertoys", "brand:wikidata": "Q1891407", "brand:wikipedia": "nl:Intertoys", "name": "Intertoys", "shop": "toys"}, "countryCodes": ["be", "de", "nl"], "matchScore": 2, "suggestion": true}, - "shop/toys/JouéClub": {"name": "JouéClub", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q3187152"}, "addTags": {"brand": "JouéClub", "brand:wikidata": "Q3187152", "brand:wikipedia": "fr:JouéClub", "name": "JouéClub", "shop": "toys"}, "removeTags": {"brand": "JouéClub", "brand:wikidata": "Q3187152", "brand:wikipedia": "fr:JouéClub", "name": "JouéClub", "shop": "toys"}, "countryCodes": ["ad", "fr", "it", "lb", "ma", "qa"], "matchScore": 2, "suggestion": true}, - "shop/toys/King Jouet": {"name": "King Jouet", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q3197009"}, "addTags": {"brand": "King Jouet", "brand:en": "King Toy", "brand:wikidata": "Q3197009", "brand:wikipedia": "fr:King Jouet", "name": "King Jouet", "name:en": "King Toy", "shop": "toys"}, "removeTags": {"brand": "King Jouet", "brand:en": "King Toy", "brand:wikidata": "Q3197009", "brand:wikipedia": "fr:King Jouet", "name": "King Jouet", "name:en": "King Toy", "shop": "toys"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/toys/La Grande Récré": {"name": "La Grande Récré", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q3209556"}, "addTags": {"brand": "La Grande Récré", "brand:wikidata": "Q3209556", "brand:wikipedia": "fr:La Grande Récré (magasin)", "name": "La Grande Récré", "shop": "toys"}, "removeTags": {"brand": "La Grande Récré", "brand:wikidata": "Q3209556", "brand:wikipedia": "fr:La Grande Récré (magasin)", "name": "La Grande Récré", "shop": "toys"}, "countryCodes": ["be", "ci", "es", "fr", "ma"], "matchScore": 2, "suggestion": true}, - "shop/toys/Lego": {"name": "Lego", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/lego/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q1063455"}, "addTags": {"brand": "Lego", "brand:wikidata": "Q1063455", "brand:wikipedia": "en:The Lego Group", "name": "Lego", "shop": "toys"}, "removeTags": {"brand": "Lego", "brand:wikidata": "Q1063455", "brand:wikipedia": "en:The Lego Group", "name": "Lego", "shop": "toys"}, "matchScore": 2, "suggestion": true}, - "shop/toys/Lekia": {"name": "Lekia", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q56303274"}, "addTags": {"brand": "Lekia", "brand:wikidata": "Q56303274", "brand:wikipedia": "sv:Lekia", "name": "Lekia", "shop": "toys"}, "removeTags": {"brand": "Lekia", "brand:wikidata": "Q56303274", "brand:wikipedia": "sv:Lekia", "name": "Lekia", "shop": "toys"}, "countryCodes": ["no", "se"], "matchScore": 2, "suggestion": true}, - "shop/toys/Maxi Toys": {"name": "Maxi Toys", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q16663879"}, "addTags": {"brand": "Maxi Toys", "brand:wikidata": "Q16663879", "brand:wikipedia": "fr:Maxi Toys", "name": "Maxi Toys", "shop": "toys"}, "removeTags": {"brand": "Maxi Toys", "brand:wikidata": "Q16663879", "brand:wikipedia": "fr:Maxi Toys", "name": "Maxi Toys", "shop": "toys"}, "matchScore": 2, "suggestion": true}, - "shop/toys/The Entertainer": {"name": "The Entertainer", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1065176417300881409/BR5S2nYI_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q7732289"}, "addTags": {"brand": "The Entertainer", "brand:wikidata": "Q7732289", "brand:wikipedia": "en:The Entertainer (retailer)", "name": "The Entertainer", "shop": "toys"}, "removeTags": {"brand": "The Entertainer", "brand:wikidata": "Q7732289", "brand:wikipedia": "en:The Entertainer (retailer)", "name": "The Entertainer", "shop": "toys"}, "matchScore": 2, "suggestion": true}, - "shop/toys/Toys R Us": {"name": "Toys R Us", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/toysяusjp/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q696334"}, "addTags": {"brand": "Toys R Us", "brand:wikidata": "Q696334", "brand:wikipedia": "en:Toys \"R\" Us", "name": "Toys R Us", "shop": "toys"}, "removeTags": {"brand": "Toys R Us", "brand:wikidata": "Q696334", "brand:wikipedia": "en:Toys \"R\" Us", "name": "Toys R Us", "shop": "toys"}, "matchScore": 2, "suggestion": true}, - "shop/toys/Детский мир": {"name": "Детский мир", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q16643324"}, "addTags": {"brand": "Детский мир", "brand:en": "Detskiy Mir", "brand:wikidata": "Q16643324", "brand:wikipedia": "en:Detsky Mir", "name": "Детский мир", "name:en": "Detskiy Mir", "shop": "toys"}, "removeTags": {"brand": "Детский мир", "brand:en": "Detskiy Mir", "brand:wikidata": "Q16643324", "brand:wikipedia": "en:Detsky Mir", "name": "Детский мир", "name:en": "Detskiy Mir", "shop": "toys"}, "matchScore": 2, "suggestion": true}, - "shop/toys/Кораблик": {"name": "Кораблик", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q57653416"}, "addTags": {"brand": "Кораблик", "brand:wikidata": "Q57653416", "name": "Кораблик", "shop": "toys"}, "removeTags": {"brand": "Кораблик", "brand:wikidata": "Q57653416", "name": "Кораблик", "shop": "toys"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/toys/Build-A-Bear Workshop": {"name": "Build-A-Bear Workshop", "icon": "fas-space-shuttle", "imageURL": "https://graph.facebook.com/Buildabear/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q1002992"}, "addTags": {"brand": "Build-A-Bear Workshop", "brand:wikidata": "Q1002992", "brand:wikipedia": "en:Build-A-Bear Workshop", "name": "Build-A-Bear Workshop", "shop": "toys"}, "removeTags": {"brand": "Build-A-Bear Workshop", "brand:wikidata": "Q1002992", "brand:wikipedia": "en:Build-A-Bear Workshop", "name": "Build-A-Bear Workshop", "shop": "toys"}, "matchScore": 2, "suggestion": true}, + "shop/toys/Dráčik": {"name": "Dráčik", "icon": "fas-space-shuttle", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q57653669"}, "addTags": {"brand": "Dráčik", "brand:wikidata": "Q57653669", "name": "Dráčik", "shop": "toys"}, "removeTags": {"brand": "Dráčik", "brand:wikidata": "Q57653669", "name": "Dráčik", "shop": "toys"}, "countryCodes": ["cz", "sk"], "matchScore": 2, "suggestion": true}, + "shop/toys/Intertoys": {"name": "Intertoys", "icon": "fas-space-shuttle", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q1891407"}, "addTags": {"brand": "Intertoys", "brand:wikidata": "Q1891407", "brand:wikipedia": "nl:Intertoys", "name": "Intertoys", "shop": "toys"}, "removeTags": {"brand": "Intertoys", "brand:wikidata": "Q1891407", "brand:wikipedia": "nl:Intertoys", "name": "Intertoys", "shop": "toys"}, "countryCodes": ["be", "de", "nl"], "matchScore": 2, "suggestion": true}, + "shop/toys/JouéClub": {"name": "JouéClub", "icon": "fas-space-shuttle", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q3187152"}, "addTags": {"brand": "JouéClub", "brand:wikidata": "Q3187152", "brand:wikipedia": "fr:JouéClub", "name": "JouéClub", "shop": "toys"}, "removeTags": {"brand": "JouéClub", "brand:wikidata": "Q3187152", "brand:wikipedia": "fr:JouéClub", "name": "JouéClub", "shop": "toys"}, "countryCodes": ["ad", "fr", "it", "lb", "ma", "qa"], "matchScore": 2, "suggestion": true}, + "shop/toys/King Jouet": {"name": "King Jouet", "icon": "fas-space-shuttle", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q3197009"}, "addTags": {"brand": "King Jouet", "brand:en": "King Toy", "brand:wikidata": "Q3197009", "brand:wikipedia": "fr:King Jouet", "name": "King Jouet", "name:en": "King Toy", "shop": "toys"}, "removeTags": {"brand": "King Jouet", "brand:en": "King Toy", "brand:wikidata": "Q3197009", "brand:wikipedia": "fr:King Jouet", "name": "King Jouet", "name:en": "King Toy", "shop": "toys"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/toys/La Grande Récré": {"name": "La Grande Récré", "icon": "fas-space-shuttle", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q3209556"}, "addTags": {"brand": "La Grande Récré", "brand:wikidata": "Q3209556", "brand:wikipedia": "fr:La Grande Récré (magasin)", "name": "La Grande Récré", "shop": "toys"}, "removeTags": {"brand": "La Grande Récré", "brand:wikidata": "Q3209556", "brand:wikipedia": "fr:La Grande Récré (magasin)", "name": "La Grande Récré", "shop": "toys"}, "countryCodes": ["be", "ci", "es", "fr", "ma"], "matchScore": 2, "suggestion": true}, + "shop/toys/Lego": {"name": "Lego", "icon": "fas-space-shuttle", "imageURL": "https://graph.facebook.com/lego/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q1063455"}, "addTags": {"brand": "Lego", "brand:wikidata": "Q1063455", "brand:wikipedia": "en:The Lego Group", "name": "Lego", "shop": "toys"}, "removeTags": {"brand": "Lego", "brand:wikidata": "Q1063455", "brand:wikipedia": "en:The Lego Group", "name": "Lego", "shop": "toys"}, "matchScore": 2, "suggestion": true}, + "shop/toys/Lekia": {"name": "Lekia", "icon": "fas-space-shuttle", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q56303274"}, "addTags": {"brand": "Lekia", "brand:wikidata": "Q56303274", "brand:wikipedia": "sv:Lekia", "name": "Lekia", "shop": "toys"}, "removeTags": {"brand": "Lekia", "brand:wikidata": "Q56303274", "brand:wikipedia": "sv:Lekia", "name": "Lekia", "shop": "toys"}, "countryCodes": ["no", "se"], "matchScore": 2, "suggestion": true}, + "shop/toys/Maxi Toys": {"name": "Maxi Toys", "icon": "fas-space-shuttle", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q16663879"}, "addTags": {"brand": "Maxi Toys", "brand:wikidata": "Q16663879", "brand:wikipedia": "fr:Maxi Toys", "name": "Maxi Toys", "shop": "toys"}, "removeTags": {"brand": "Maxi Toys", "brand:wikidata": "Q16663879", "brand:wikipedia": "fr:Maxi Toys", "name": "Maxi Toys", "shop": "toys"}, "matchScore": 2, "suggestion": true}, + "shop/toys/The Entertainer": {"name": "The Entertainer", "icon": "fas-space-shuttle", "imageURL": "https://pbs.twimg.com/profile_images/1065176417300881409/BR5S2nYI_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q7732289"}, "addTags": {"brand": "The Entertainer", "brand:wikidata": "Q7732289", "brand:wikipedia": "en:The Entertainer (retailer)", "name": "The Entertainer", "shop": "toys"}, "removeTags": {"brand": "The Entertainer", "brand:wikidata": "Q7732289", "brand:wikipedia": "en:The Entertainer (retailer)", "name": "The Entertainer", "shop": "toys"}, "matchScore": 2, "suggestion": true}, + "shop/toys/Toys R Us": {"name": "Toys R Us", "icon": "fas-space-shuttle", "imageURL": "https://graph.facebook.com/toysяusjp/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q696334"}, "addTags": {"brand": "Toys R Us", "brand:wikidata": "Q696334", "brand:wikipedia": "en:Toys \"R\" Us", "name": "Toys R Us", "shop": "toys"}, "removeTags": {"brand": "Toys R Us", "brand:wikidata": "Q696334", "brand:wikipedia": "en:Toys \"R\" Us", "name": "Toys R Us", "shop": "toys"}, "matchScore": 2, "suggestion": true}, + "shop/toys/Детский мир": {"name": "Детский мир", "icon": "fas-space-shuttle", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q16643324"}, "addTags": {"brand": "Детский мир", "brand:en": "Detskiy Mir", "brand:wikidata": "Q16643324", "brand:wikipedia": "en:Detsky Mir", "name": "Детский мир", "name:en": "Detskiy Mir", "shop": "toys"}, "removeTags": {"brand": "Детский мир", "brand:en": "Detskiy Mir", "brand:wikidata": "Q16643324", "brand:wikipedia": "en:Detsky Mir", "name": "Детский мир", "name:en": "Detskiy Mir", "shop": "toys"}, "matchScore": 2, "suggestion": true}, + "shop/toys/Кораблик": {"name": "Кораблик", "icon": "fas-space-shuttle", "geometry": ["point", "area"], "tags": {"shop": "toys", "brand:wikidata": "Q57653416"}, "addTags": {"brand": "Кораблик", "brand:wikidata": "Q57653416", "name": "Кораблик", "shop": "toys"}, "removeTags": {"brand": "Кораблик", "brand:wikidata": "Q57653416", "name": "Кораблик", "shop": "toys"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/travel_agency/Coral Travel": {"name": "Coral Travel", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/coraltravelofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q58011479"}, "addTags": {"brand": "Coral Travel", "brand:wikidata": "Q58011479", "name": "Coral Travel", "shop": "travel_agency"}, "removeTags": {"brand": "Coral Travel", "brand:wikidata": "Q58011479", "name": "Coral Travel", "shop": "travel_agency"}, "countryCodes": ["pl", "ru", "ua"], "matchScore": 2, "suggestion": true}, "shop/travel_agency/D-reizen": {"name": "D-reizen", "icon": "maki-suitcase", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FD-reizen%20logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q2445498"}, "addTags": {"brand": "D-reizen", "brand:wikidata": "Q2445498", "brand:wikipedia": "nl:D-reizen", "name": "D-reizen", "shop": "travel_agency"}, "removeTags": {"brand": "D-reizen", "brand:wikidata": "Q2445498", "brand:wikipedia": "nl:D-reizen", "name": "D-reizen", "shop": "travel_agency"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, "shop/travel_agency/DER Reisebüro": {"name": "DER Reisebüro", "icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"shop": "travel_agency", "brand:wikidata": "Q56729186"}, "addTags": {"brand": "DER Reisebüro", "brand:wikidata": "Q56729186", "brand:wikipedia": "de:Deutsches Reisebüro", "name": "DER Reisebüro", "shop": "travel_agency"}, "removeTags": {"brand": "DER Reisebüro", "brand:wikidata": "Q56729186", "brand:wikipedia": "de:Deutsches Reisebüro", "name": "DER Reisebüro", "shop": "travel_agency"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, @@ -3928,57 +3928,57 @@ "shop/wholesale/Metro": {"name": "Metro", "icon": "maki-warehouse", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMetroC%2BC-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "wholesale", "brand:wikidata": "Q13610282"}, "addTags": {"brand": "Metro", "brand:wikidata": "Q13610282", "brand:wikipedia": "en:Metro Cash and Carry", "name": "Metro", "shop": "wholesale"}, "removeTags": {"brand": "Metro", "brand:wikidata": "Q13610282", "brand:wikipedia": "en:Metro Cash and Carry", "name": "Metro", "shop": "wholesale"}, "matchScore": 2, "suggestion": true}, "shop/wholesale/Sam's Club": {"name": "Sam's Club", "icon": "maki-warehouse", "imageURL": "https://graph.facebook.com/samsclub/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "wholesale", "brand:wikidata": "Q1972120"}, "addTags": {"brand": "Sam's Club", "brand:wikidata": "Q1972120", "brand:wikipedia": "en:Sam's Club", "name": "Sam's Club", "operator": "Walmart", "operator:wikidata": "Q483551", "operator:wikipedia": "en:Walmart", "shop": "wholesale"}, "removeTags": {"brand": "Sam's Club", "brand:wikidata": "Q1972120", "brand:wikipedia": "en:Sam's Club", "name": "Sam's Club", "operator": "Walmart", "operator:wikidata": "Q483551", "operator:wikipedia": "en:Walmart", "shop": "wholesale"}, "matchScore": 2, "suggestion": true}, "shop/wholesale/コストコ": {"name": "コストコ", "icon": "maki-warehouse", "imageURL": "https://graph.facebook.com/Costco/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "wholesale", "brand:wikidata": "Q715583"}, "addTags": {"brand": "コストコ", "brand:en": "Costco", "brand:wikidata": "Q715583", "brand:wikipedia": "ja:コストコ", "name": "コストコ", "name:en": "Costco", "operator": "コストコホールセールジャパン株式会社", "operator:en": "Costco Wholesale Japan Co., Ltd.", "shop": "wholesale"}, "removeTags": {"brand": "コストコ", "brand:en": "Costco", "brand:wikidata": "Q715583", "brand:wikipedia": "ja:コストコ", "name": "コストコ", "name:en": "Costco", "operator": "コストコホールセールジャパン株式会社", "operator:en": "Costco Wholesale Japan Co., Ltd.", "shop": "wholesale"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/B&B Hôtel": {"name": "B&B Hôtel", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20B%26B%20Hotels.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q794939"}, "addTags": {"brand": "B&B Hôtel", "brand:wikidata": "Q794939", "brand:wikipedia": "en:B&B Hotels", "name": "B&B Hôtel", "tourism": "hotel"}, "removeTags": {"brand": "B&B Hôtel", "brand:wikidata": "Q794939", "brand:wikipedia": "en:B&B Hotels", "name": "B&B Hôtel", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Best Western": {"name": "Best Western", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBW%20Master%20Brand%20Logo%20RGB%20300%20DPI.jpg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q830334"}, "addTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western", "tourism": "hotel"}, "removeTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Best Western Plus": {"name": "Best Western Plus", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBW%20Master%20Brand%20Logo%20RGB%20300%20DPI.jpg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q830334"}, "addTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western Plus", "tourism": "hotel"}, "removeTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western Plus", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Campanile": {"name": "Campanile", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2412064"}, "addTags": {"brand": "Campanile", "brand:wikidata": "Q2412064", "brand:wikipedia": "fr:Campanile (chaîne d'hôtels)", "name": "Campanile", "tourism": "hotel"}, "removeTags": {"brand": "Campanile", "brand:wikidata": "Q2412064", "brand:wikipedia": "fr:Campanile (chaîne d'hôtels)", "name": "Campanile", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Candlewood Suites": {"name": "Candlewood Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5032010"}, "addTags": {"brand": "Candlewood Suites", "brand:wikidata": "Q5032010", "brand:wikipedia": "en:Candlewood Suites", "name": "Candlewood Suites", "tourism": "hotel"}, "removeTags": {"brand": "Candlewood Suites", "brand:wikidata": "Q5032010", "brand:wikipedia": "en:Candlewood Suites", "name": "Candlewood Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Comfort Inn": {"name": "Comfort Inn", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Comfort Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn", "tourism": "hotel"}, "removeTags": {"brand": "Comfort Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Comfort Inn & Suites": {"name": "Comfort Inn & Suites", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Comfort Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn & Suites", "tourism": "hotel"}, "removeTags": {"brand": "Comfort Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn & Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Comfort Suites": {"name": "Comfort Suites", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Comfort Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Suites", "tourism": "hotel"}, "removeTags": {"brand": "Comfort Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Country Inn & Suites": {"name": "Country Inn & Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5177332"}, "addTags": {"brand": "Country Inn & Suites", "brand:wikidata": "Q5177332", "brand:wikipedia": "en:Country Inns & Suites", "name": "Country Inn & Suites", "tourism": "hotel"}, "removeTags": {"brand": "Country Inn & Suites", "brand:wikidata": "Q5177332", "brand:wikipedia": "en:Country Inns & Suites", "name": "Country Inn & Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Courtyard by Marriott": {"name": "Courtyard by Marriott", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1053170"}, "addTags": {"brand": "Courtyard by Marriott", "brand:wikidata": "Q1053170", "brand:wikipedia": "en:Courtyard by Marriott", "name": "Courtyard by Marriott", "tourism": "hotel"}, "removeTags": {"brand": "Courtyard by Marriott", "brand:wikidata": "Q1053170", "brand:wikipedia": "en:Courtyard by Marriott", "name": "Courtyard by Marriott", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Crowne Plaza": {"name": "Crowne Plaza", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCrowne%20Plaza%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2746220"}, "addTags": {"brand": "Crowne Plaza", "brand:wikidata": "Q2746220", "brand:wikipedia": "en:Crowne Plaza", "name": "Crowne Plaza", "tourism": "hotel"}, "removeTags": {"brand": "Crowne Plaza", "brand:wikidata": "Q2746220", "brand:wikipedia": "en:Crowne Plaza", "name": "Crowne Plaza", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Days Inn": {"name": "Days Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1047239"}, "addTags": {"brand": "Days Inn", "brand:wikidata": "Q1047239", "brand:wikipedia": "en:Days Inn", "name": "Days Inn", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "removeTags": {"brand": "Days Inn", "brand:wikidata": "Q1047239", "brand:wikipedia": "en:Days Inn", "name": "Days Inn", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Embassy Suites": {"name": "Embassy Suites", "icon": "maki-lodging", "imageURL": "https://pbs.twimg.com/profile_images/1100115322592550914/7d8AToeH_bigger.png", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5369524"}, "addTags": {"brand": "Embassy Suites", "brand:wikidata": "Q5369524", "brand:wikipedia": "en:Embassy Suites by Hilton", "name": "Embassy Suites", "tourism": "hotel"}, "removeTags": {"brand": "Embassy Suites", "brand:wikidata": "Q5369524", "brand:wikipedia": "en:Embassy Suites by Hilton", "name": "Embassy Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Extended Stay America": {"name": "Extended Stay America", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5421850"}, "addTags": {"brand": "Extended Stay America", "brand:wikidata": "Q5421850", "brand:wikipedia": "en:Extended Stay America", "name": "Extended Stay America", "tourism": "hotel"}, "removeTags": {"brand": "Extended Stay America", "brand:wikidata": "Q5421850", "brand:wikipedia": "en:Extended Stay America", "name": "Extended Stay America", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Fairfield Inn": {"name": "Fairfield Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5430314"}, "addTags": {"brand": "Fairfield Inn", "brand:wikidata": "Q5430314", "brand:wikipedia": "en:Fairfield Inn by Marriott", "name": "Fairfield Inn", "tourism": "hotel"}, "removeTags": {"brand": "Fairfield Inn", "brand:wikidata": "Q5430314", "brand:wikipedia": "en:Fairfield Inn by Marriott", "name": "Fairfield Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Formule 1": {"name": "Formule 1", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHotel%20F1%20Logo%202007.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1630895"}, "addTags": {"brand": "Formule 1", "brand:wikidata": "Q1630895", "brand:wikipedia": "en:Hotel Formule 1", "name": "Formule 1", "tourism": "hotel"}, "removeTags": {"brand": "Formule 1", "brand:wikidata": "Q1630895", "brand:wikipedia": "en:Hotel Formule 1", "name": "Formule 1", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Grand Hyatt": {"name": "Grand Hyatt", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Grand Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Grand Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Grand Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Grand Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hampton Inn": {"name": "Hampton Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5646230"}, "addTags": {"brand": "Hampton Inn", "brand:wikidata": "Q5646230", "brand:wikipedia": "en:Hampton by Hilton", "name": "Hampton Inn", "tourism": "hotel"}, "removeTags": {"brand": "Hampton Inn", "brand:wikidata": "Q5646230", "brand:wikipedia": "en:Hampton by Hilton", "name": "Hampton Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hilton": {"name": "Hilton", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHI%20mk%20logo%20hiltonbrandlogo.jpg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q598884"}, "addTags": {"brand": "Hilton", "brand:wikidata": "Q598884", "brand:wikipedia": "en:Hilton Hotels & Resorts", "name": "Hilton", "tourism": "hotel"}, "removeTags": {"brand": "Hilton", "brand:wikidata": "Q598884", "brand:wikipedia": "en:Hilton Hotels & Resorts", "name": "Hilton", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hilton Garden Inn": {"name": "Hilton Garden Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1162859"}, "addTags": {"brand": "Hilton Garden Inn", "brand:wikidata": "Q1162859", "brand:wikipedia": "en:Hilton Garden Inn", "name": "Hilton Garden Inn", "tourism": "hotel"}, "removeTags": {"brand": "Hilton Garden Inn", "brand:wikidata": "Q1162859", "brand:wikipedia": "en:Hilton Garden Inn", "name": "Hilton Garden Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Holiday Inn": {"name": "Holiday Inn", "icon": "maki-lodging", "imageURL": "https://pbs.twimg.com/profile_images/926089732181782528/P85q5zmy_bigger.jpg", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2717882"}, "addTags": {"brand": "Holiday Inn", "brand:wikidata": "Q2717882", "brand:wikipedia": "en:Holiday Inn", "name": "Holiday Inn", "tourism": "hotel"}, "removeTags": {"brand": "Holiday Inn", "brand:wikidata": "Q2717882", "brand:wikipedia": "en:Holiday Inn", "name": "Holiday Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Holiday Inn Express": {"name": "Holiday Inn Express", "icon": "maki-lodging", "imageURL": "https://pbs.twimg.com/profile_images/877546729587048448/4Ce2CMr1_bigger.jpg", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5880423"}, "addTags": {"brand": "Holiday Inn Express", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express", "tourism": "hotel"}, "removeTags": {"brand": "Holiday Inn Express", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Holiday Inn Express & Suites": {"name": "Holiday Inn Express & Suites", "icon": "maki-lodging", "imageURL": "https://pbs.twimg.com/profile_images/877546729587048448/4Ce2CMr1_bigger.jpg", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5880423"}, "addTags": {"brand": "Holiday Inn Express & Suites", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express & Suites", "tourism": "hotel"}, "removeTags": {"brand": "Holiday Inn Express & Suites", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express & Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Homewood Suites": {"name": "Homewood Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5890701"}, "addTags": {"brand": "Homewood Suites", "brand:wikidata": "Q5890701", "brand:wikipedia": "en:Homewood Suites by Hilton", "name": "Homewood Suites", "tourism": "hotel"}, "removeTags": {"brand": "Homewood Suites", "brand:wikidata": "Q5890701", "brand:wikipedia": "en:Homewood Suites by Hilton", "name": "Homewood Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hyatt": {"name": "Hyatt", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hyatt Centric": {"name": "Hyatt Centric", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt Centric", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Centric", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt Centric", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Centric", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hyatt House": {"name": "Hyatt House", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt House", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt House", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt House", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt House", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hyatt Place": {"name": "Hyatt Place", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Place", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Place", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hyatt Regency": {"name": "Hyatt Regency", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt Regency", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Regency", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt Regency", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Regency", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Ibis": {"name": "Ibis", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FIbis%20Hotel%20Logo%202016.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q920166"}, "addTags": {"brand": "Ibis", "brand:wikidata": "Q920166", "brand:wikipedia": "en:Ibis (hotel)", "name": "Ibis", "tourism": "hotel"}, "removeTags": {"brand": "Ibis", "brand:wikidata": "Q920166", "brand:wikipedia": "en:Ibis (hotel)", "name": "Ibis", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Ibis Budget": {"name": "Ibis Budget", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1458135"}, "addTags": {"brand": "Ibis Budget", "brand:wikidata": "Q1458135", "brand:wikipedia": "en:Ibis Budget", "name": "Ibis Budget", "tourism": "hotel"}, "removeTags": {"brand": "Ibis Budget", "brand:wikidata": "Q1458135", "brand:wikipedia": "en:Ibis Budget", "name": "Ibis Budget", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Ibis Styles": {"name": "Ibis Styles", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q3147425"}, "addTags": {"brand": "Ibis Styles", "brand:wikidata": "Q3147425", "brand:wikipedia": "en:Ibis Styles", "name": "Ibis Styles", "tourism": "hotel"}, "removeTags": {"brand": "Ibis Styles", "brand:wikidata": "Q3147425", "brand:wikipedia": "en:Ibis Styles", "name": "Ibis Styles", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Kyriad": {"name": "Kyriad", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q11751808"}, "addTags": {"brand": "Kyriad", "brand:wikidata": "Q11751808", "brand:wikipedia": "pl:Kyriad", "name": "Kyriad", "tourism": "hotel"}, "removeTags": {"brand": "Kyriad", "brand:wikidata": "Q11751808", "brand:wikipedia": "pl:Kyriad", "name": "Kyriad", "tourism": "hotel"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/La Quinta": {"name": "La Quinta", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q6464734"}, "addTags": {"brand": "La Quinta", "brand:wikidata": "Q6464734", "brand:wikipedia": "en:La Quinta Inns & Suites", "name": "La Quinta", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "removeTags": {"brand": "La Quinta", "brand:wikidata": "Q6464734", "brand:wikipedia": "en:La Quinta Inns & Suites", "name": "La Quinta", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Marriott": {"name": "Marriott", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/marriottinternational/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1141173"}, "addTags": {"brand": "Marriott", "brand:wikidata": "Q1141173", "brand:wikipedia": "en:Marriott International", "name": "Marriott", "tourism": "hotel"}, "removeTags": {"brand": "Marriott", "brand:wikidata": "Q1141173", "brand:wikipedia": "en:Marriott International", "name": "Marriott", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Mercure": {"name": "Mercure", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/MercureHotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1709809"}, "addTags": {"brand": "Mercure", "brand:wikidata": "Q1709809", "brand:wikipedia": "en:Mercure (hotel)", "name": "Mercure", "tourism": "hotel"}, "removeTags": {"brand": "Mercure", "brand:wikidata": "Q1709809", "brand:wikipedia": "en:Mercure (hotel)", "name": "Mercure", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Novotel": {"name": "Novotel", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/Novotelhotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q420545"}, "addTags": {"brand": "Novotel", "brand:wikidata": "Q420545", "brand:wikipedia": "en:Novotel", "name": "Novotel", "tourism": "hotel"}, "removeTags": {"brand": "Novotel", "brand:wikidata": "Q420545", "brand:wikipedia": "en:Novotel", "name": "Novotel", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Park Hyatt": {"name": "Park Hyatt", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Park Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Park Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Park Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Park Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Premier Inn": {"name": "Premier Inn", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/premierinn/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2108626"}, "addTags": {"brand": "Premier Inn", "brand:wikidata": "Q2108626", "brand:wikipedia": "en:Premier Inn", "name": "Premier Inn", "tourism": "hotel"}, "removeTags": {"brand": "Premier Inn", "brand:wikidata": "Q2108626", "brand:wikipedia": "en:Premier Inn", "name": "Premier Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Première Classe": {"name": "Première Classe", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5964551"}, "addTags": {"brand": "Première Classe", "brand:wikidata": "Q5964551", "brand:wikipedia": "en:Hôtel Première Classe", "name": "Première Classe", "tourism": "hotel"}, "removeTags": {"brand": "Première Classe", "brand:wikidata": "Q5964551", "brand:wikipedia": "en:Hôtel Première Classe", "name": "Première Classe", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Quality Inn": {"name": "Quality Inn", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Quality Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn", "tourism": "hotel"}, "removeTags": {"brand": "Quality Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Quality Inn & Suites": {"name": "Quality Inn & Suites", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Quality Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn & Suites", "tourism": "hotel"}, "removeTags": {"brand": "Quality Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn & Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Ramada": {"name": "Ramada", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRamada%20Worldwide%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1502859"}, "addTags": {"brand": "Ramada", "brand:wikidata": "Q1502859", "brand:wikipedia": "en:Ramada", "name": "Ramada", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "removeTags": {"brand": "Ramada", "brand:wikidata": "Q1502859", "brand:wikipedia": "en:Ramada", "name": "Ramada", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Red Roof Inn": {"name": "Red Roof Inn", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRed%20Roof%20Inn%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7304949"}, "addTags": {"brand": "Red Roof Inn", "brand:wikidata": "Q7304949", "brand:wikipedia": "en:Red Roof Inn", "name": "Red Roof Inn", "tourism": "hotel"}, "removeTags": {"brand": "Red Roof Inn", "brand:wikidata": "Q7304949", "brand:wikipedia": "en:Red Roof Inn", "name": "Red Roof Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Renaissance Hotel": {"name": "Renaissance Hotel", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2143252"}, "addTags": {"brand": "Renaissance Hotels", "brand:wikidata": "Q2143252", "brand:wikipedia": "en:Renaissance Hotels", "name": "Renaissance Hotel", "operator": "Marriott International", "operator:wikidata": "Q1141173", "operator:wikipedia": "en:Marriott International", "tourism": "hotel"}, "removeTags": {"brand": "Renaissance Hotels", "brand:wikidata": "Q2143252", "brand:wikipedia": "en:Renaissance Hotels", "name": "Renaissance Hotel", "operator": "Marriott International", "operator:wikidata": "Q1141173", "operator:wikipedia": "en:Marriott International", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Residence Inn": {"name": "Residence Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7315394"}, "addTags": {"brand": "Residence Inn", "brand:wikidata": "Q7315394", "brand:wikipedia": "en:Residence Inn by Marriott", "name": "Residence Inn", "tourism": "hotel"}, "removeTags": {"brand": "Residence Inn", "brand:wikidata": "Q7315394", "brand:wikipedia": "en:Residence Inn by Marriott", "name": "Residence Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Sheraton": {"name": "Sheraton", "icon": "maki-lodging", "imageURL": "https://pbs.twimg.com/profile_images/1002217498857521153/KwmEKPGZ_bigger.jpg", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q634831"}, "addTags": {"brand": "Sheraton", "brand:wikidata": "Q634831", "brand:wikipedia": "en:Sheraton Hotels and Resorts", "name": "Sheraton", "tourism": "hotel"}, "removeTags": {"brand": "Sheraton", "brand:wikidata": "Q634831", "brand:wikipedia": "en:Sheraton Hotels and Resorts", "name": "Sheraton", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Sleep Inn": {"name": "Sleep Inn", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Sleep Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Sleep Inn", "tourism": "hotel"}, "removeTags": {"brand": "Sleep Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Sleep Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Staybridge Suites": {"name": "Staybridge Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7605116"}, "addTags": {"brand": "Staybridge Suites", "brand:wikidata": "Q7605116", "brand:wikipedia": "en:Staybridge Suites", "name": "Staybridge Suites", "tourism": "hotel"}, "removeTags": {"brand": "Staybridge Suites", "brand:wikidata": "Q7605116", "brand:wikipedia": "en:Staybridge Suites", "name": "Staybridge Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/Travelodge": {"name": "Travelodge", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTravelodge.svg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7836087"}, "addTags": {"brand": "Travelodge", "brand:wikidata": "Q7836087", "brand:wikipedia": "en:Travelodge", "name": "Travelodge", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "removeTags": {"brand": "Travelodge", "brand:wikidata": "Q7836087", "brand:wikipedia": "en:Travelodge", "name": "Travelodge", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, - "tourism/hotel/東横イン": {"name": "東横イン", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1320541"}, "addTags": {"brand": "東横イン", "brand:en": "Toyoko Inn", "brand:ja": "東横イン", "brand:wikidata": "Q1320541", "brand:wikipedia": "en:Toyoko Inn", "name": "東横イン", "name:en": "Toyoko Inn", "name:ja": "東横イン", "tourism": "hotel"}, "removeTags": {"brand": "東横イン", "brand:en": "Toyoko Inn", "brand:ja": "東横イン", "brand:wikidata": "Q1320541", "brand:wikipedia": "en:Toyoko Inn", "name": "東横イン", "name:en": "Toyoko Inn", "name:ja": "東横イン", "tourism": "hotel"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "tourism/hotel/B&B Hôtel": {"name": "B&B Hôtel", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20B%26B%20Hotels.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q794939"}, "addTags": {"brand": "B&B Hôtel", "brand:wikidata": "Q794939", "brand:wikipedia": "en:B&B Hotels", "name": "B&B Hôtel", "tourism": "hotel"}, "removeTags": {"brand": "B&B Hôtel", "brand:wikidata": "Q794939", "brand:wikipedia": "en:B&B Hotels", "name": "B&B Hôtel", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Best Western": {"name": "Best Western", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBW%20Master%20Brand%20Logo%20RGB%20300%20DPI.jpg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q830334"}, "addTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western", "tourism": "hotel"}, "removeTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Best Western Plus": {"name": "Best Western Plus", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBW%20Master%20Brand%20Logo%20RGB%20300%20DPI.jpg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q830334"}, "addTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western Plus", "tourism": "hotel"}, "removeTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western Plus", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Campanile": {"name": "Campanile", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2412064"}, "addTags": {"brand": "Campanile", "brand:wikidata": "Q2412064", "brand:wikipedia": "fr:Campanile (chaîne d'hôtels)", "name": "Campanile", "tourism": "hotel"}, "removeTags": {"brand": "Campanile", "brand:wikidata": "Q2412064", "brand:wikipedia": "fr:Campanile (chaîne d'hôtels)", "name": "Campanile", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Candlewood Suites": {"name": "Candlewood Suites", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5032010"}, "addTags": {"brand": "Candlewood Suites", "brand:wikidata": "Q5032010", "brand:wikipedia": "en:Candlewood Suites", "name": "Candlewood Suites", "tourism": "hotel"}, "removeTags": {"brand": "Candlewood Suites", "brand:wikidata": "Q5032010", "brand:wikipedia": "en:Candlewood Suites", "name": "Candlewood Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Comfort Inn": {"name": "Comfort Inn", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Comfort Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn", "tourism": "hotel"}, "removeTags": {"brand": "Comfort Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Comfort Inn & Suites": {"name": "Comfort Inn & Suites", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Comfort Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn & Suites", "tourism": "hotel"}, "removeTags": {"brand": "Comfort Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn & Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Comfort Suites": {"name": "Comfort Suites", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Comfort Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Suites", "tourism": "hotel"}, "removeTags": {"brand": "Comfort Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Country Inn & Suites": {"name": "Country Inn & Suites", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5177332"}, "addTags": {"brand": "Country Inn & Suites", "brand:wikidata": "Q5177332", "brand:wikipedia": "en:Country Inns & Suites", "name": "Country Inn & Suites", "tourism": "hotel"}, "removeTags": {"brand": "Country Inn & Suites", "brand:wikidata": "Q5177332", "brand:wikipedia": "en:Country Inns & Suites", "name": "Country Inn & Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Courtyard by Marriott": {"name": "Courtyard by Marriott", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1053170"}, "addTags": {"brand": "Courtyard by Marriott", "brand:wikidata": "Q1053170", "brand:wikipedia": "en:Courtyard by Marriott", "name": "Courtyard by Marriott", "tourism": "hotel"}, "removeTags": {"brand": "Courtyard by Marriott", "brand:wikidata": "Q1053170", "brand:wikipedia": "en:Courtyard by Marriott", "name": "Courtyard by Marriott", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Crowne Plaza": {"name": "Crowne Plaza", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCrowne%20Plaza%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2746220"}, "addTags": {"brand": "Crowne Plaza", "brand:wikidata": "Q2746220", "brand:wikipedia": "en:Crowne Plaza", "name": "Crowne Plaza", "tourism": "hotel"}, "removeTags": {"brand": "Crowne Plaza", "brand:wikidata": "Q2746220", "brand:wikipedia": "en:Crowne Plaza", "name": "Crowne Plaza", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Days Inn": {"name": "Days Inn", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1047239"}, "addTags": {"brand": "Days Inn", "brand:wikidata": "Q1047239", "brand:wikipedia": "en:Days Inn", "name": "Days Inn", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "removeTags": {"brand": "Days Inn", "brand:wikidata": "Q1047239", "brand:wikipedia": "en:Days Inn", "name": "Days Inn", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Embassy Suites": {"name": "Embassy Suites", "icon": "fas-concierge-bell", "imageURL": "https://pbs.twimg.com/profile_images/1100115322592550914/7d8AToeH_bigger.png", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5369524"}, "addTags": {"brand": "Embassy Suites", "brand:wikidata": "Q5369524", "brand:wikipedia": "en:Embassy Suites by Hilton", "name": "Embassy Suites", "tourism": "hotel"}, "removeTags": {"brand": "Embassy Suites", "brand:wikidata": "Q5369524", "brand:wikipedia": "en:Embassy Suites by Hilton", "name": "Embassy Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Extended Stay America": {"name": "Extended Stay America", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5421850"}, "addTags": {"brand": "Extended Stay America", "brand:wikidata": "Q5421850", "brand:wikipedia": "en:Extended Stay America", "name": "Extended Stay America", "tourism": "hotel"}, "removeTags": {"brand": "Extended Stay America", "brand:wikidata": "Q5421850", "brand:wikipedia": "en:Extended Stay America", "name": "Extended Stay America", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Fairfield Inn": {"name": "Fairfield Inn", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5430314"}, "addTags": {"brand": "Fairfield Inn", "brand:wikidata": "Q5430314", "brand:wikipedia": "en:Fairfield Inn by Marriott", "name": "Fairfield Inn", "tourism": "hotel"}, "removeTags": {"brand": "Fairfield Inn", "brand:wikidata": "Q5430314", "brand:wikipedia": "en:Fairfield Inn by Marriott", "name": "Fairfield Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Formule 1": {"name": "Formule 1", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHotel%20F1%20Logo%202007.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1630895"}, "addTags": {"brand": "Formule 1", "brand:wikidata": "Q1630895", "brand:wikipedia": "en:Hotel Formule 1", "name": "Formule 1", "tourism": "hotel"}, "removeTags": {"brand": "Formule 1", "brand:wikidata": "Q1630895", "brand:wikipedia": "en:Hotel Formule 1", "name": "Formule 1", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Grand Hyatt": {"name": "Grand Hyatt", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Grand Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Grand Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Grand Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Grand Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Hampton Inn": {"name": "Hampton Inn", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5646230"}, "addTags": {"brand": "Hampton Inn", "brand:wikidata": "Q5646230", "brand:wikipedia": "en:Hampton by Hilton", "name": "Hampton Inn", "tourism": "hotel"}, "removeTags": {"brand": "Hampton Inn", "brand:wikidata": "Q5646230", "brand:wikipedia": "en:Hampton by Hilton", "name": "Hampton Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Hilton": {"name": "Hilton", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHI%20mk%20logo%20hiltonbrandlogo.jpg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q598884"}, "addTags": {"brand": "Hilton", "brand:wikidata": "Q598884", "brand:wikipedia": "en:Hilton Hotels & Resorts", "name": "Hilton", "tourism": "hotel"}, "removeTags": {"brand": "Hilton", "brand:wikidata": "Q598884", "brand:wikipedia": "en:Hilton Hotels & Resorts", "name": "Hilton", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Hilton Garden Inn": {"name": "Hilton Garden Inn", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1162859"}, "addTags": {"brand": "Hilton Garden Inn", "brand:wikidata": "Q1162859", "brand:wikipedia": "en:Hilton Garden Inn", "name": "Hilton Garden Inn", "tourism": "hotel"}, "removeTags": {"brand": "Hilton Garden Inn", "brand:wikidata": "Q1162859", "brand:wikipedia": "en:Hilton Garden Inn", "name": "Hilton Garden Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Holiday Inn": {"name": "Holiday Inn", "icon": "fas-concierge-bell", "imageURL": "https://pbs.twimg.com/profile_images/926089732181782528/P85q5zmy_bigger.jpg", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2717882"}, "addTags": {"brand": "Holiday Inn", "brand:wikidata": "Q2717882", "brand:wikipedia": "en:Holiday Inn", "name": "Holiday Inn", "tourism": "hotel"}, "removeTags": {"brand": "Holiday Inn", "brand:wikidata": "Q2717882", "brand:wikipedia": "en:Holiday Inn", "name": "Holiday Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Holiday Inn Express": {"name": "Holiday Inn Express", "icon": "fas-concierge-bell", "imageURL": "https://pbs.twimg.com/profile_images/877546729587048448/4Ce2CMr1_bigger.jpg", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5880423"}, "addTags": {"brand": "Holiday Inn Express", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express", "tourism": "hotel"}, "removeTags": {"brand": "Holiday Inn Express", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Holiday Inn Express & Suites": {"name": "Holiday Inn Express & Suites", "icon": "fas-concierge-bell", "imageURL": "https://pbs.twimg.com/profile_images/877546729587048448/4Ce2CMr1_bigger.jpg", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5880423"}, "addTags": {"brand": "Holiday Inn Express & Suites", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express & Suites", "tourism": "hotel"}, "removeTags": {"brand": "Holiday Inn Express & Suites", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express & Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Homewood Suites": {"name": "Homewood Suites", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5890701"}, "addTags": {"brand": "Homewood Suites", "brand:wikidata": "Q5890701", "brand:wikipedia": "en:Homewood Suites by Hilton", "name": "Homewood Suites", "tourism": "hotel"}, "removeTags": {"brand": "Homewood Suites", "brand:wikidata": "Q5890701", "brand:wikipedia": "en:Homewood Suites by Hilton", "name": "Homewood Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Hyatt": {"name": "Hyatt", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Hyatt Centric": {"name": "Hyatt Centric", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt Centric", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Centric", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt Centric", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Centric", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Hyatt House": {"name": "Hyatt House", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt House", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt House", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt House", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt House", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Hyatt Place": {"name": "Hyatt Place", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Place", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Place", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Hyatt Regency": {"name": "Hyatt Regency", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Hyatt Regency", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Regency", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Hyatt Regency", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Regency", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Ibis": {"name": "Ibis", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FIbis%20Hotel%20Logo%202016.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q920166"}, "addTags": {"brand": "Ibis", "brand:wikidata": "Q920166", "brand:wikipedia": "en:Ibis (hotel)", "name": "Ibis", "tourism": "hotel"}, "removeTags": {"brand": "Ibis", "brand:wikidata": "Q920166", "brand:wikipedia": "en:Ibis (hotel)", "name": "Ibis", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Ibis Budget": {"name": "Ibis Budget", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1458135"}, "addTags": {"brand": "Ibis Budget", "brand:wikidata": "Q1458135", "brand:wikipedia": "en:Ibis Budget", "name": "Ibis Budget", "tourism": "hotel"}, "removeTags": {"brand": "Ibis Budget", "brand:wikidata": "Q1458135", "brand:wikipedia": "en:Ibis Budget", "name": "Ibis Budget", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Ibis Styles": {"name": "Ibis Styles", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q3147425"}, "addTags": {"brand": "Ibis Styles", "brand:wikidata": "Q3147425", "brand:wikipedia": "en:Ibis Styles", "name": "Ibis Styles", "tourism": "hotel"}, "removeTags": {"brand": "Ibis Styles", "brand:wikidata": "Q3147425", "brand:wikipedia": "en:Ibis Styles", "name": "Ibis Styles", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Kyriad": {"name": "Kyriad", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q11751808"}, "addTags": {"brand": "Kyriad", "brand:wikidata": "Q11751808", "brand:wikipedia": "pl:Kyriad", "name": "Kyriad", "tourism": "hotel"}, "removeTags": {"brand": "Kyriad", "brand:wikidata": "Q11751808", "brand:wikipedia": "pl:Kyriad", "name": "Kyriad", "tourism": "hotel"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "tourism/hotel/La Quinta": {"name": "La Quinta", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q6464734"}, "addTags": {"brand": "La Quinta", "brand:wikidata": "Q6464734", "brand:wikipedia": "en:La Quinta Inns & Suites", "name": "La Quinta", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "removeTags": {"brand": "La Quinta", "brand:wikidata": "Q6464734", "brand:wikipedia": "en:La Quinta Inns & Suites", "name": "La Quinta", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Marriott": {"name": "Marriott", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/marriottinternational/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1141173"}, "addTags": {"brand": "Marriott", "brand:wikidata": "Q1141173", "brand:wikipedia": "en:Marriott International", "name": "Marriott", "tourism": "hotel"}, "removeTags": {"brand": "Marriott", "brand:wikidata": "Q1141173", "brand:wikipedia": "en:Marriott International", "name": "Marriott", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Mercure": {"name": "Mercure", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/MercureHotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1709809"}, "addTags": {"brand": "Mercure", "brand:wikidata": "Q1709809", "brand:wikipedia": "en:Mercure (hotel)", "name": "Mercure", "tourism": "hotel"}, "removeTags": {"brand": "Mercure", "brand:wikidata": "Q1709809", "brand:wikipedia": "en:Mercure (hotel)", "name": "Mercure", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Novotel": {"name": "Novotel", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/Novotelhotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q420545"}, "addTags": {"brand": "Novotel", "brand:wikidata": "Q420545", "brand:wikipedia": "en:Novotel", "name": "Novotel", "tourism": "hotel"}, "removeTags": {"brand": "Novotel", "brand:wikidata": "Q420545", "brand:wikipedia": "en:Novotel", "name": "Novotel", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Park Hyatt": {"name": "Park Hyatt", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1425063"}, "addTags": {"brand": "Park Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Park Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "removeTags": {"brand": "Park Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Park Hyatt", "operator": "Hyatt", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Premier Inn": {"name": "Premier Inn", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/premierinn/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2108626"}, "addTags": {"brand": "Premier Inn", "brand:wikidata": "Q2108626", "brand:wikipedia": "en:Premier Inn", "name": "Premier Inn", "tourism": "hotel"}, "removeTags": {"brand": "Premier Inn", "brand:wikidata": "Q2108626", "brand:wikipedia": "en:Premier Inn", "name": "Premier Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Première Classe": {"name": "Première Classe", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q5964551"}, "addTags": {"brand": "Première Classe", "brand:wikidata": "Q5964551", "brand:wikipedia": "en:Hôtel Première Classe", "name": "Première Classe", "tourism": "hotel"}, "removeTags": {"brand": "Première Classe", "brand:wikidata": "Q5964551", "brand:wikipedia": "en:Hôtel Première Classe", "name": "Première Classe", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Quality Inn": {"name": "Quality Inn", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Quality Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn", "tourism": "hotel"}, "removeTags": {"brand": "Quality Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Quality Inn & Suites": {"name": "Quality Inn & Suites", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Quality Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn & Suites", "tourism": "hotel"}, "removeTags": {"brand": "Quality Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn & Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Ramada": {"name": "Ramada", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRamada%20Worldwide%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1502859"}, "addTags": {"brand": "Ramada", "brand:wikidata": "Q1502859", "brand:wikipedia": "en:Ramada", "name": "Ramada", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "removeTags": {"brand": "Ramada", "brand:wikidata": "Q1502859", "brand:wikipedia": "en:Ramada", "name": "Ramada", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Red Roof Inn": {"name": "Red Roof Inn", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRed%20Roof%20Inn%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7304949"}, "addTags": {"brand": "Red Roof Inn", "brand:wikidata": "Q7304949", "brand:wikipedia": "en:Red Roof Inn", "name": "Red Roof Inn", "tourism": "hotel"}, "removeTags": {"brand": "Red Roof Inn", "brand:wikidata": "Q7304949", "brand:wikipedia": "en:Red Roof Inn", "name": "Red Roof Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Renaissance Hotel": {"name": "Renaissance Hotel", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q2143252"}, "addTags": {"brand": "Renaissance Hotels", "brand:wikidata": "Q2143252", "brand:wikipedia": "en:Renaissance Hotels", "name": "Renaissance Hotel", "operator": "Marriott International", "operator:wikidata": "Q1141173", "operator:wikipedia": "en:Marriott International", "tourism": "hotel"}, "removeTags": {"brand": "Renaissance Hotels", "brand:wikidata": "Q2143252", "brand:wikipedia": "en:Renaissance Hotels", "name": "Renaissance Hotel", "operator": "Marriott International", "operator:wikidata": "Q1141173", "operator:wikipedia": "en:Marriott International", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Residence Inn": {"name": "Residence Inn", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7315394"}, "addTags": {"brand": "Residence Inn", "brand:wikidata": "Q7315394", "brand:wikipedia": "en:Residence Inn by Marriott", "name": "Residence Inn", "tourism": "hotel"}, "removeTags": {"brand": "Residence Inn", "brand:wikidata": "Q7315394", "brand:wikipedia": "en:Residence Inn by Marriott", "name": "Residence Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Sheraton": {"name": "Sheraton", "icon": "fas-concierge-bell", "imageURL": "https://pbs.twimg.com/profile_images/1002217498857521153/KwmEKPGZ_bigger.jpg", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q634831"}, "addTags": {"brand": "Sheraton", "brand:wikidata": "Q634831", "brand:wikipedia": "en:Sheraton Hotels and Resorts", "name": "Sheraton", "tourism": "hotel"}, "removeTags": {"brand": "Sheraton", "brand:wikidata": "Q634831", "brand:wikipedia": "en:Sheraton Hotels and Resorts", "name": "Sheraton", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Sleep Inn": {"name": "Sleep Inn", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChoicehotels%20logo15.png&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1075788"}, "addTags": {"brand": "Sleep Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Sleep Inn", "tourism": "hotel"}, "removeTags": {"brand": "Sleep Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Sleep Inn", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Staybridge Suites": {"name": "Staybridge Suites", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7605116"}, "addTags": {"brand": "Staybridge Suites", "brand:wikidata": "Q7605116", "brand:wikipedia": "en:Staybridge Suites", "name": "Staybridge Suites", "tourism": "hotel"}, "removeTags": {"brand": "Staybridge Suites", "brand:wikidata": "Q7605116", "brand:wikipedia": "en:Staybridge Suites", "name": "Staybridge Suites", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/Travelodge": {"name": "Travelodge", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTravelodge.svg&width=100", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q7836087"}, "addTags": {"brand": "Travelodge", "brand:wikidata": "Q7836087", "brand:wikipedia": "en:Travelodge", "name": "Travelodge", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "removeTags": {"brand": "Travelodge", "brand:wikidata": "Q7836087", "brand:wikipedia": "en:Travelodge", "name": "Travelodge", "operator": "Wyndham Hotels and Resorts", "operator:wikidata": "Q8040120", "operator:wikipedia": "en:Wyndham Hotels and Resorts", "tourism": "hotel"}, "matchScore": 2, "suggestion": true}, + "tourism/hotel/東横イン": {"name": "東横イン", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"tourism": "hotel", "brand:wikidata": "Q1320541"}, "addTags": {"brand": "東横イン", "brand:en": "Toyoko Inn", "brand:ja": "東横イン", "brand:wikidata": "Q1320541", "brand:wikipedia": "en:Toyoko Inn", "name": "東横イン", "name:en": "Toyoko Inn", "name:ja": "東横イン", "tourism": "hotel"}, "removeTags": {"brand": "東横イン", "brand:en": "Toyoko Inn", "brand:ja": "東横イン", "brand:wikidata": "Q1320541", "brand:wikipedia": "en:Toyoko Inn", "name": "東横イン", "name:en": "Toyoko Inn", "name:ja": "東横イン", "tourism": "hotel"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "tourism/motel/Econo Lodge": {"name": "Econo Lodge", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "motel", "brand:wikidata": "Q5333330"}, "addTags": {"brand": "Econo Lodge", "brand:wikidata": "Q5333330", "brand:wikipedia": "en:Econo Lodge", "name": "Econo Lodge", "tourism": "motel"}, "removeTags": {"brand": "Econo Lodge", "brand:wikidata": "Q5333330", "brand:wikipedia": "en:Econo Lodge", "name": "Econo Lodge", "tourism": "motel"}, "matchScore": 2, "suggestion": true}, "tourism/motel/Motel 6": {"name": "Motel 6", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/motel6/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "motel", "brand:wikidata": "Q2188884"}, "addTags": {"brand": "Motel 6", "brand:wikidata": "Q2188884", "brand:wikipedia": "en:Motel 6", "name": "Motel 6", "tourism": "motel"}, "removeTags": {"brand": "Motel 6", "brand:wikidata": "Q2188884", "brand:wikipedia": "en:Motel 6", "name": "Motel 6", "tourism": "motel"}, "matchScore": 2, "suggestion": true}, "tourism/motel/Rodeway Inn": {"name": "Rodeway Inn", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"tourism": "motel", "brand:wikidata": "Q7356709"}, "addTags": {"brand": "Rodeway Inn", "brand:wikidata": "Q7356709", "brand:wikipedia": "en:Rodeway Inn", "name": "Rodeway Inn", "tourism": "motel"}, "removeTags": {"brand": "Rodeway Inn", "brand:wikidata": "Q7356709", "brand:wikipedia": "en:Rodeway Inn", "name": "Rodeway Inn", "tourism": "motel"}, "matchScore": 2, "suggestion": true}, diff --git a/data/presets/presets/craft/photographic_laboratory.json b/data/presets/presets/craft/photographic_laboratory.json index c369d3ff8..1fa7b5256 100644 --- a/data/presets/presets/craft/photographic_laboratory.json +++ b/data/presets/presets/craft/photographic_laboratory.json @@ -1,5 +1,5 @@ { - "icon": "fas-camera-retro", + "icon": "fas-film", "geometry": [ "point", "area" diff --git a/data/presets/presets/healthcare/optometrist.json b/data/presets/presets/healthcare/optometrist.json index 5cd6cc749..a82a40138 100644 --- a/data/presets/presets/healthcare/optometrist.json +++ b/data/presets/presets/healthcare/optometrist.json @@ -1,5 +1,5 @@ { - "icon": "maki-hospital", + "icon": "fas-eye", "geometry": [ "point", "area" diff --git a/data/presets/presets/leisure/hackerspace.json b/data/presets/presets/leisure/hackerspace.json index 2e5195b1a..ad81e8787 100644 --- a/data/presets/presets/leisure/hackerspace.json +++ b/data/presets/presets/leisure/hackerspace.json @@ -5,11 +5,11 @@ "address", "building_area", "opening_hours", - "website" + "website", + "internet_access" ], "moreFields": [ "payment_multi", - "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", diff --git a/data/presets/presets/leisure/picnic_table/chess.json b/data/presets/presets/leisure/picnic_table/chess.json index 752aba44f..d2c480222 100644 --- a/data/presets/presets/leisure/picnic_table/chess.json +++ b/data/presets/presets/leisure/picnic_table/chess.json @@ -1,5 +1,5 @@ { - "icon": "fas-chess-knight", + "icon": "fas-chess-pawn", "geometry": [ "point" ], diff --git a/data/presets/presets/leisure/swimming_pool.json b/data/presets/presets/leisure/swimming_pool.json index 27a981692..9412c3b36 100644 --- a/data/presets/presets/leisure/swimming_pool.json +++ b/data/presets/presets/leisure/swimming_pool.json @@ -1,5 +1,5 @@ { - "icon": "maki-swimming", + "icon": "fas-swimming-pool", "fields": [ "name", "access_simple", diff --git a/data/presets/presets/office/private_investigator.json b/data/presets/presets/office/private_investigator.json index 51aff8995..f16b507bc 100644 --- a/data/presets/presets/office/private_investigator.json +++ b/data/presets/presets/office/private_investigator.json @@ -1,5 +1,5 @@ { - "icon": "maki-suitcase", + "icon": "fas-user-secret", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/anime.json b/data/presets/presets/shop/anime.json index ad836c906..fe63744d1 100644 --- a/data/presets/presets/shop/anime.json +++ b/data/presets/presets/shop/anime.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-dragon", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/bag.json b/data/presets/presets/shop/bag.json index c593d991d..85016dbcc 100644 --- a/data/presets/presets/shop/bag.json +++ b/data/presets/presets/shop/bag.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-suitcase-rolling", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/books.json b/data/presets/presets/shop/books.json index 9a2309a9c..48d51ec77 100644 --- a/data/presets/presets/shop/books.json +++ b/data/presets/presets/shop/books.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-book", "fields": [ "{shop}", "internet_access" diff --git a/data/presets/presets/shop/candles.json b/data/presets/presets/shop/candles.json index a3cf886a6..d20711d78 100644 --- a/data/presets/presets/shop/candles.json +++ b/data/presets/presets/shop/candles.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-burn", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/photo.json b/data/presets/presets/shop/photo.json index 49c416c6d..99b86e396 100644 --- a/data/presets/presets/shop/photo.json +++ b/data/presets/presets/shop/photo.json @@ -1,5 +1,5 @@ { - "icon": "maki-attraction", + "icon": "fas-camera-retro", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/toys.json b/data/presets/presets/shop/toys.json index 9328b2b54..7c3976996 100644 --- a/data/presets/presets/shop/toys.json +++ b/data/presets/presets/shop/toys.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-space-shuttle", "geometry": [ "point", "area" diff --git a/data/presets/presets/tourism/hotel.json b/data/presets/presets/tourism/hotel.json index a7a3b2885..20ccd7b1d 100644 --- a/data/presets/presets/tourism/hotel.json +++ b/data/presets/presets/tourism/hotel.json @@ -1,5 +1,5 @@ { - "icon": "maki-lodging", + "icon": "fas-concierge-bell", "fields": [ "{tourism/motel}" ], diff --git a/data/taginfo.json b/data/taginfo.json index 752e58095..1d6bc3226 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -350,7 +350,7 @@ {"key": "craft", "value": "metal_construction", "description": "🄿 Metal Construction", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"}, {"key": "craft", "value": "painter", "description": "🄿 Painter", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-paint-roller.svg?sanitize=true"}, {"key": "craft", "value": "photographer", "description": "🄿 Photographer", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"}, - {"key": "craft", "value": "photographic_laboratory", "description": "🄿 Photographic Laboratory", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-camera-retro.svg?sanitize=true"}, + {"key": "craft", "value": "photographic_laboratory", "description": "🄿 Photographic Laboratory", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-film.svg?sanitize=true"}, {"key": "craft", "value": "plasterer", "description": "🄿 Plasterer", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"}, {"key": "craft", "value": "plumber", "description": "🄿 Plumber", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/plumber.svg?sanitize=true"}, {"key": "craft", "value": "pottery", "description": "🄿 Pottery", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"}, @@ -405,7 +405,7 @@ {"key": "healthcare", "value": "laboratory", "description": "🄿 Medical Laboratory", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-vial.svg?sanitize=true"}, {"key": "healthcare", "value": "midwife", "description": "🄿 Midwife", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, {"key": "healthcare", "value": "occupational_therapist", "description": "🄿 Occupational Therapist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, - {"key": "healthcare", "value": "optometrist", "description": "🄿 Optometrist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, + {"key": "healthcare", "value": "optometrist", "description": "🄿 Optometrist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-eye.svg?sanitize=true"}, {"key": "healthcare", "value": "physiotherapist", "description": "🄿 Physiotherapist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/physiotherapist.svg?sanitize=true"}, {"key": "healthcare", "value": "podiatrist", "description": "🄿 Podiatrist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, {"key": "healthcare", "value": "psychotherapist", "description": "🄿 Psychotherapist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, @@ -572,7 +572,7 @@ {"key": "leisure", "value": "outdoor_seating", "description": "🄿 Outdoor Seating Area", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/picnic-site-15.svg?sanitize=true"}, {"key": "leisure", "value": "park", "description": "🄿 Park", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/park-15.svg?sanitize=true"}, {"key": "leisure", "value": "picnic_table", "description": "🄿 Picnic Table", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/picnic-site-15.svg?sanitize=true"}, - {"key": "sport", "value": "chess", "description": "🄿 Chess Table", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-chess-knight.svg?sanitize=true"}, + {"key": "sport", "value": "chess", "description": "🄿 Chess Table", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-chess-pawn.svg?sanitize=true"}, {"key": "leisure", "value": "pitch", "description": "🄿 Sport Pitch", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"}, {"key": "sport", "value": "american_football", "description": "🄿 American Football Field", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/american-football-15.svg?sanitize=true"}, {"key": "sport", "value": "australian_football", "description": "🄿 Australian Football Field", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/american-football-15.svg?sanitize=true"}, @@ -601,7 +601,7 @@ {"key": "sport", "value": "climbing", "description": "🄿 Climbing Gym", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/abseiling.svg?sanitize=true"}, {"key": "sport", "value": "swimming", "description": "🄿 Swimming Pool Facility", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"}, {"key": "leisure", "value": "stadium", "description": "🄿 Stadium", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"}, - {"key": "leisure", "value": "swimming_pool", "description": "🄿 Swimming Pool", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"}, + {"key": "leisure", "value": "swimming_pool", "description": "🄿 Swimming Pool", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-swimming-pool.svg?sanitize=true"}, {"key": "leisure", "value": "track", "description": "🄿 Racetrack (Non-Motorsport)", "object_types": ["node", "way", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/other-line.svg?sanitize=true"}, {"key": "sport", "value": "cycling", "description": "🄿 Cycling Track", "object_types": ["node", "way", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"}, {"key": "sport", "value": "horse_racing", "description": "🄿 Horse Racing Track", "object_types": ["node", "way", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/horse-riding-15.svg?sanitize=true"}, @@ -722,7 +722,7 @@ {"key": "office", "value": "ngo", "description": "🄿 NGO Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, {"key": "office", "value": "notary", "description": "🄿 Notary Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, {"key": "office", "value": "political_party", "description": "🄿 Political Party", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"}, - {"key": "office", "value": "private_investigator", "description": "🄿 Private Investigator Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, + {"key": "office", "value": "private_investigator", "description": "🄿 Private Investigator Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-user-secret.svg?sanitize=true"}, {"key": "office", "value": "quango", "description": "🄿 Quasi-NGO Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, {"key": "office", "value": "religion", "description": "🄿 Religious Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, {"key": "office", "value": "research", "description": "🄿 Research Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, @@ -835,12 +835,12 @@ {"key": "shop", "value": "vacant", "description": "🄿 Vacant Shop (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "agrarian", "description": "🄿 Farm Supply Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "alcohol", "description": "🄿 Liquor Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/alcohol-shop-15.svg?sanitize=true"}, - {"key": "shop", "value": "anime", "description": "🄿 Anime Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "anime", "description": "🄿 Anime Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-dragon.svg?sanitize=true"}, {"key": "shop", "value": "antiques", "description": "🄿 Antiques Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "appliance", "description": "🄿 Appliance Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "art", "description": "🄿 Art Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "baby_goods", "description": "🄿 Baby Goods Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-baby-carriage.svg?sanitize=true"}, - {"key": "shop", "value": "bag", "description": "🄿 Bag/Luggage Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "bag", "description": "🄿 Bag/Luggage Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-suitcase-rolling.svg?sanitize=true"}, {"key": "shop", "value": "bakery", "description": "🄿 Bakery", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bakery-15.svg?sanitize=true"}, {"key": "shop", "value": "bathroom_furnishing", "description": "🄿 Bathroom Furnishing Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-bath.svg?sanitize=true"}, {"key": "shop", "value": "beauty", "description": "🄿 Beauty Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, @@ -850,9 +850,9 @@ {"key": "shop", "value": "beverages", "description": "🄿 Beverage Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "bicycle", "description": "🄿 Bicycle Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"}, {"key": "shop", "value": "bookmaker", "description": "🄿 Bookmaker", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, - {"key": "shop", "value": "books", "description": "🄿 Book Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "books", "description": "🄿 Book Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-book.svg?sanitize=true"}, {"key": "shop", "value": "butcher", "description": "🄿 Butcher", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-bacon.svg?sanitize=true"}, - {"key": "shop", "value": "candles", "description": "🄿 Candle Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "candles", "description": "🄿 Candle Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-burn.svg?sanitize=true"}, {"key": "shop", "value": "car_parts", "description": "🄿 Car Parts Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-car-battery.svg?sanitize=true"}, {"key": "shop", "value": "car_repair", "description": "🄿 Car Repair Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-repair-15.svg?sanitize=true"}, {"key": "shop", "value": "car", "description": "🄿 Car Dealership", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"}, @@ -934,7 +934,7 @@ {"key": "shop", "value": "perfumery", "description": "🄿 Perfume Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "pet_grooming", "description": "🄿 Pet Grooming Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dog-park-15.svg?sanitize=true"}, {"key": "shop", "value": "pet", "description": "🄿 Pet Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dog-park-15.svg?sanitize=true"}, - {"key": "shop", "value": "photo", "description": "🄿 Photography Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"}, + {"key": "shop", "value": "photo", "description": "🄿 Photography Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-camera-retro.svg?sanitize=true"}, {"key": "shop", "value": "pyrotechnics", "description": "🄿 Fireworks Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "radiotechnics", "description": "🄿 Radio/Electronic Component Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "religion", "description": "🄿 Religious Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, @@ -953,7 +953,7 @@ {"key": "shop", "value": "ticket", "description": "🄿 Ticket Seller", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "tiles", "description": "🄿 Tile Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "tobacco", "description": "🄿 Tobacco Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, - {"key": "shop", "value": "toys", "description": "🄿 Toy Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "toys", "description": "🄿 Toy Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-space-shuttle.svg?sanitize=true"}, {"key": "shop", "value": "trade", "description": "🄿 Trade Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "travel_agency", "description": "🄿 Travel Agency", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, {"key": "shop", "value": "tyres", "description": "🄿 Tire Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, @@ -983,7 +983,7 @@ {"key": "tourism", "value": "gallery", "description": "🄿 Art Gallery", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"}, {"key": "tourism", "value": "guest_house", "description": "🄿 Guest House", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"}, {"key": "tourism", "value": "hostel", "description": "🄿 Hostel", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"}, - {"key": "tourism", "value": "hotel", "description": "🄿 Hotel", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"}, + {"key": "tourism", "value": "hotel", "description": "🄿 Hotel", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-concierge-bell.svg?sanitize=true"}, {"key": "tourism", "value": "information", "description": "🄿 Information", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"}, {"key": "information", "value": "board", "description": "🄿 Information Board", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"}, {"key": "information", "value": "guidepost", "description": "🄿 Guidepost", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"}, @@ -1762,11 +1762,13 @@ {"key": "shop", "value": "auto_parts", "description": "🄳 ➜ shop=car_parts"}, {"key": "shop", "value": "baby", "description": "🄳 ➜ shop=baby_goods"}, {"key": "shop", "value": "baby_care", "description": "🄳 ➜ shop=baby_goods"}, + {"key": "shop", "value": "bags", "description": "🄳 ➜ shop=bag"}, {"key": "shop", "value": "betting", "description": "🄳 ➜ shop=bookmaker"}, {"key": "shop", "value": "dive", "description": "🄳 ➜ shop=scuba_diving"}, {"key": "shop", "value": "fish", "description": "🄳 ➜ shop=seafood"}, {"key": "shop", "value": "gallery", "description": "🄳 ➜ shop=art"}, {"key": "shop", "value": "lingerie", "description": "🄳 ➜ shop=clothes + clothes=underwear"}, + {"key": "shop", "value": "luggage", "description": "🄳 ➜ shop=bag"}, {"key": "shop", "value": "moneylender", "description": "🄳 ➜ shop=money_lender"}, {"key": "shop", "value": "organic", "description": "🄳 ➜ shop=supermarket + organic=only"}, {"key": "shop", "value": "perfume", "description": "🄳 ➜ shop=perfumery"}, diff --git a/svg/fontawesome/fas-book.svg b/svg/fontawesome/fas-book.svg new file mode 100644 index 000000000..df61bde6b --- /dev/null +++ b/svg/fontawesome/fas-book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-burn.svg b/svg/fontawesome/fas-burn.svg new file mode 100644 index 000000000..e2d3656d1 --- /dev/null +++ b/svg/fontawesome/fas-burn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-chess-pawn.svg b/svg/fontawesome/fas-chess-pawn.svg new file mode 100644 index 000000000..cb6492d33 --- /dev/null +++ b/svg/fontawesome/fas-chess-pawn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-concierge-bell.svg b/svg/fontawesome/fas-concierge-bell.svg new file mode 100644 index 000000000..50e921c74 --- /dev/null +++ b/svg/fontawesome/fas-concierge-bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-dragon.svg b/svg/fontawesome/fas-dragon.svg new file mode 100644 index 000000000..9b408cf91 --- /dev/null +++ b/svg/fontawesome/fas-dragon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-eye.svg b/svg/fontawesome/fas-eye.svg new file mode 100644 index 000000000..b7d90c466 --- /dev/null +++ b/svg/fontawesome/fas-eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-film.svg b/svg/fontawesome/fas-film.svg new file mode 100644 index 000000000..ace102938 --- /dev/null +++ b/svg/fontawesome/fas-film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-space-shuttle.svg b/svg/fontawesome/fas-space-shuttle.svg new file mode 100644 index 000000000..3c3d3f4e2 --- /dev/null +++ b/svg/fontawesome/fas-space-shuttle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-suitcase-rolling.svg b/svg/fontawesome/fas-suitcase-rolling.svg new file mode 100644 index 000000000..aeee34f7f --- /dev/null +++ b/svg/fontawesome/fas-suitcase-rolling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-swimming-pool.svg b/svg/fontawesome/fas-swimming-pool.svg new file mode 100644 index 000000000..ac11e5341 --- /dev/null +++ b/svg/fontawesome/fas-swimming-pool.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-user-secret.svg b/svg/fontawesome/fas-user-secret.svg new file mode 100644 index 000000000..905d0fe68 --- /dev/null +++ b/svg/fontawesome/fas-user-secret.svg @@ -0,0 +1 @@ + \ No newline at end of file From 8d313677fd351851a4bbf89ba731fd8e2296a2be Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Mon, 8 Apr 2019 09:53:01 -0700 Subject: [PATCH 42/50] Add leisure=swimming_area preset --- data/presets.yaml | 5 ++++ data/presets/presets.json | 3 ++- .../presets/leisure/swimming_area.json | 26 +++++++++++++++++++ .../presets/leisure/swimming_pool.json | 5 ++-- data/taginfo.json | 1 + dist/locales/en.json | 4 +++ 6 files changed, 41 insertions(+), 3 deletions(-) create mode 100644 data/presets/presets/leisure/swimming_area.json diff --git a/data/presets.yaml b/data/presets.yaml index a865d8973..a43ba4467 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -4997,6 +4997,11 @@ en: # leisure=stadium name: Stadium terms: '' + leisure/swimming_area: + # leisure=swimming_area + name: Natural Swimming Area + # 'terms: dive,water,aquatics' + terms: '' leisure/swimming_pool: # leisure=swimming_pool name: Swimming Pool diff --git a/data/presets/presets.json b/data/presets/presets.json index 00fa8cbdf..988fa130e 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -623,7 +623,8 @@ "leisure/sports_centre/climbing": {"icon": "temaki-abseiling", "geometry": ["point", "area"], "terms": ["abseiling", "artificial climbing wall", "belaying", "bouldering", "rock climbing facility", "indoor rock wall", "rappeling", "rock gym", "ropes"], "tags": {"leisure": "sports_centre", "sport": "climbing"}, "reference": {"key": "sport", "value": "climbing"}, "name": "Climbing Gym"}, "leisure/sports_centre/swimming": {"icon": "maki-swimming", "geometry": ["point", "area"], "terms": ["dive", "water"], "tags": {"leisure": "sports_centre", "sport": "swimming"}, "reference": {"key": "sport", "value": "swimming"}, "name": "Swimming Pool Facility"}, "leisure/stadium": {"icon": "maki-pitch", "fields": ["name", "sport", "address"], "moreFields": ["website", "phone", "email", "fax"], "geometry": ["point", "area"], "tags": {"leisure": "stadium"}, "name": "Stadium"}, - "leisure/swimming_pool": {"icon": "fas-swimming-pool", "fields": ["name", "access_simple", "lit", "location_pool", "length", "swimming_pool"], "moreFields": ["operator", "address"], "geometry": ["point", "area"], "terms": ["dive", "water", "aquatics"], "tags": {"leisure": "swimming_pool"}, "name": "Swimming Pool"}, + "leisure/swimming_area": {"icon": "maki-swimming", "fields": ["name", "access_simple", "supervised", "fee", "lit"], "moreFields": ["opening_hours", "operator"], "geometry": ["area"], "terms": ["dive", "water", "aquatics"], "tags": {"leisure": "swimming_area"}, "name": "Natural Swimming Area"}, + "leisure/swimming_pool": {"icon": "fas-swimming-pool", "fields": ["name", "access_simple", "lit", "location_pool", "length", "swimming_pool"], "moreFields": ["address", "opening_hours", "operator"], "geometry": ["point", "area"], "terms": ["dive", "water", "aquatics"], "tags": {"leisure": "swimming_pool"}, "name": "Swimming Pool"}, "leisure/track": {"icon": "iD-other-line", "fields": ["surface", "sport_racing_nonmotor", "lit", "width", "lanes"], "geometry": ["point", "line", "area"], "tags": {"leisure": "track"}, "terms": ["cycle", "dog", "greyhound", "horse", "race*", "track"], "name": "Racetrack (Non-Motorsport)"}, "leisure/track/cycling": {"icon": "maki-bicycle", "fields": ["surface", "sport_racing_nonmotor", "lit", "width", "lanes"], "geometry": ["point", "line", "area"], "tags": {"leisure": "track", "sport": "cycling"}, "addTags": {"leisure": "track", "sport": "cycling", "highway": "cycleway"}, "removeTags": {"leisure": "track", "sport": "cycling", "highway": "cycleway"}, "terms": ["bicycle track", "bicycling track", "cycle racetrack", "velodrome"], "name": "Cycling Track"}, "leisure/track/horse_racing": {"icon": "maki-horse-riding", "fields": ["surface", "sport_racing_nonmotor", "lit", "width", "lanes"], "geometry": ["point", "line", "area"], "tags": {"leisure": "track", "sport": "horse_racing"}, "addTags": {"leisure": "track", "sport": "horse_racing", "highway": "bridleway"}, "removeTags": {"leisure": "track", "sport": "horse_racing", "highway": "bridleway"}, "terms": ["equestrian race track", "horse race betting", "horseracing", "horsetrack", "horse racetrack"], "name": "Horse Racing Track"}, diff --git a/data/presets/presets/leisure/swimming_area.json b/data/presets/presets/leisure/swimming_area.json new file mode 100644 index 000000000..f60eb07d6 --- /dev/null +++ b/data/presets/presets/leisure/swimming_area.json @@ -0,0 +1,26 @@ +{ + "icon": "maki-swimming", + "fields": [ + "name", + "access_simple", + "supervised", + "fee", + "lit" + ], + "moreFields": [ + "opening_hours", + "operator" + ], + "geometry": [ + "area" + ], + "terms": [ + "dive", + "water", + "aquatics" + ], + "tags": { + "leisure": "swimming_area" + }, + "name": "Natural Swimming Area" +} diff --git a/data/presets/presets/leisure/swimming_pool.json b/data/presets/presets/leisure/swimming_pool.json index 9412c3b36..35cc577e5 100644 --- a/data/presets/presets/leisure/swimming_pool.json +++ b/data/presets/presets/leisure/swimming_pool.json @@ -9,8 +9,9 @@ "swimming_pool" ], "moreFields": [ - "operator", - "address" + "address", + "opening_hours", + "operator" ], "geometry": [ "point", diff --git a/data/taginfo.json b/data/taginfo.json index 1d6bc3226..a10cdc02c 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -601,6 +601,7 @@ {"key": "sport", "value": "climbing", "description": "🄿 Climbing Gym", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/abseiling.svg?sanitize=true"}, {"key": "sport", "value": "swimming", "description": "🄿 Swimming Pool Facility", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"}, {"key": "leisure", "value": "stadium", "description": "🄿 Stadium", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"}, + {"key": "leisure", "value": "swimming_area", "description": "🄿 Natural Swimming Area", "object_types": ["area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"}, {"key": "leisure", "value": "swimming_pool", "description": "🄿 Swimming Pool", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-swimming-pool.svg?sanitize=true"}, {"key": "leisure", "value": "track", "description": "🄿 Racetrack (Non-Motorsport)", "object_types": ["node", "way", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/other-line.svg?sanitize=true"}, {"key": "sport", "value": "cycling", "description": "🄿 Cycling Track", "object_types": ["node", "way", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"}, diff --git a/dist/locales/en.json b/dist/locales/en.json index 567058b26..1b75a5606 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -6538,6 +6538,10 @@ "name": "Stadium", "terms": "" }, + "leisure/swimming_area": { + "name": "Natural Swimming Area", + "terms": "dive,water,aquatics" + }, "leisure/swimming_pool": { "name": "Swimming Pool", "terms": "dive,water,aquatics" From 5f60efacd50d960dba2f2e3b6521977dc2a87d9e Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Mon, 8 Apr 2019 11:39:43 -0700 Subject: [PATCH 43/50] Add Data Center preset --- data/presets.yaml | 5 ++++ data/presets/presets.json | 3 +- data/presets/presets/shop.json | 5 ++-- data/presets/presets/telecom/data_center.json | 29 +++++++++++++++++++ data/taginfo.json | 1 + dist/locales/en.json | 4 +++ svg/fontawesome/fas-server.svg | 1 + 7 files changed, 45 insertions(+), 3 deletions(-) create mode 100644 data/presets/presets/telecom/data_center.json create mode 100644 svg/fontawesome/fas-server.svg diff --git a/data/presets.yaml b/data/presets.yaml index a43ba4467..d1ac33e2b 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -6872,6 +6872,11 @@ en: name: Tactile Paving # 'terms: blind path,detectable warning surfaces,tactile ground surface indicators,tactile walking surface indicators,truncated domes,visually impaired path' terms: '' + telecom/data_center: + # telecom=data_center + name: Data Center + # 'terms: computer systems storage,information technology,server farm,the cloud,telecommunications' + terms: '' tourism: # tourism=* name: Tourism diff --git a/data/presets/presets.json b/data/presets/presets.json index 988fa130e..9d2e7ff82 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -886,7 +886,7 @@ "seamark/buoy_lateral/green": {"geometry": ["point", "vertex"], "terms": ["lateral buoy", "buoy lateral", "cevni", "channel marker", "iala", "lateral mark"], "tags": {"seamark:type": "buoy_lateral", "seamark:buoy_lateral:colour": "green"}, "name": "Green Buoy"}, "seamark/buoy_lateral/red": {"geometry": ["point", "vertex"], "terms": ["lateral buoy", "buoy lateral", "cevni", "channel marker", "iala", "lateral mark"], "tags": {"seamark:type": "buoy_lateral", "seamark:buoy_lateral:colour": "red"}, "name": "Red Buoy"}, "seamark/mooring": {"fields": ["ref", "operator", "seamark/mooring/category", "seamark/type"], "geometry": ["point"], "terms": ["dolphin", "pile", "bollard", "buoy", "post"], "tags": {"seamark:type": "mooring"}, "name": "Mooring"}, - "shop": {"icon": "maki-shop", "fields": ["name", "shop", "operator", "address", "building_area", "opening_hours", "payment_multi"], "moreFields": ["air_conditioning", "brand", "currency_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"shop": "*"}, "terms": [], "name": "Shop"}, + "shop": {"icon": "maki-shop", "fields": ["name", "shop", "operator", "address", "building_area", "opening_hours", "payment_multi"], "moreFields": ["air_conditioning", "brand", "currency_multi", "email", "fax", "phone", "second_hand", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"shop": "*"}, "terms": [], "name": "Shop"}, "shop/boutique": {"icon": "maki-shop", "fields": ["name", "clothes", "{shop}"], "geometry": ["point", "area"], "tags": {"shop": "boutique"}, "searchable": false, "name": "Boutique"}, "shop/fashion": {"icon": "maki-shop", "fields": ["name", "clothes", "{shop}"], "geometry": ["point", "area"], "tags": {"shop": "fashion"}, "searchable": false, "name": "Fashion Store"}, "shop/fishmonger": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "fishmonger"}, "reference": {"key": "shop", "value": "seafood"}, "name": "Fishmonger", "searchable": false}, @@ -1029,6 +1029,7 @@ "shop/window_blind": {"icon": "temaki-window", "geometry": ["point", "area"], "tags": {"shop": "window_blind"}, "name": "Window Blind Store"}, "shop/wine": {"icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "wine"}, "name": "Wine Shop"}, "tactile_paving": {"icon": "temaki-blind", "fields": ["colour", "description"], "geometry": ["vertex", "point", "line", "area"], "tags": {"tactile_paving": "*"}, "matchScore": 0.25, "terms": ["blind path", "detectable warning surfaces", "tactile ground surface indicators", "tactile walking surface indicators", "truncated domes", "visually impaired path"], "name": "Tactile Paving"}, + "telecom/data_center": {"icon": "fas-server", "fields": ["name", "ref", "operator", "building_area"], "moreFields": ["address", "phone", "website"], "geometry": ["point", "area"], "tags": {"telecom": "data_center"}, "terms": ["computer systems storage", "information technology", "server farm", "the cloud", "telecommunications"], "name": "Data Center"}, "tourism/alpine_hut": {"icon": "maki-lodging", "fields": ["name", "operator", "address", "building_area", "internet_access", "fee"], "moreFields": ["payment_multi", "internet_access/fee", "internet_access/ssid", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["climbing hut"], "tags": {"tourism": "alpine_hut"}, "name": "Alpine Hut"}, "tourism/apartment": {"icon": "maki-lodging", "fields": ["name", "operator", "address", "building_area", "rooms", "internet_access"], "moreFields": ["smoking", "payment_multi", "internet_access/fee", "internet_access/ssid", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"tourism": "apartment"}, "name": "Guest Apartment / Condo"}, "tourism/aquarium": {"icon": "maki-aquarium", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "moreFields": ["fee", "payment_multi", "smoking", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["fish", "sea", "water"], "tags": {"tourism": "aquarium"}, "name": "Aquarium"}, diff --git a/data/presets/presets/shop.json b/data/presets/presets/shop.json index 8a88a2ba1..4923b2c69 100644 --- a/data/presets/presets/shop.json +++ b/data/presets/presets/shop.json @@ -13,10 +13,11 @@ "air_conditioning", "brand", "currency_multi", - "website", - "phone", "email", "fax", + "phone", + "second_hand", + "website", "wheelchair" ], "geometry": [ diff --git a/data/presets/presets/telecom/data_center.json b/data/presets/presets/telecom/data_center.json new file mode 100644 index 000000000..bd85e2f53 --- /dev/null +++ b/data/presets/presets/telecom/data_center.json @@ -0,0 +1,29 @@ +{ + "icon": "fas-server", + "fields": [ + "name", + "ref", + "operator", + "building_area" + ], + "moreFields": [ + "address", + "phone", + "website" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "telecom": "data_center" + }, + "terms": [ + "computer systems storage", + "information technology", + "server farm", + "the cloud", + "telecommunications" + ], + "name": "Data Center" +} diff --git a/data/taginfo.json b/data/taginfo.json index a10cdc02c..f9313a140 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -970,6 +970,7 @@ {"key": "shop", "value": "window_blind", "description": "🄿 Window Blind Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/window.svg?sanitize=true"}, {"key": "shop", "value": "wine", "description": "🄿 Wine Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/alcohol-shop-15.svg?sanitize=true"}, {"key": "tactile_paving", "description": "🄿 Tactile Paving, 🄵 Tactile Paving", "object_types": ["node", "way", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/blind.svg?sanitize=true"}, + {"key": "telecom", "value": "data_center", "description": "🄿 Data Center", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-server.svg?sanitize=true"}, {"key": "tourism", "value": "alpine_hut", "description": "🄿 Alpine Hut", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"}, {"key": "tourism", "value": "apartment", "description": "🄿 Guest Apartment / Condo", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"}, {"key": "tourism", "value": "aquarium", "description": "🄿 Aquarium", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/aquarium-15.svg?sanitize=true"}, diff --git a/dist/locales/en.json b/dist/locales/en.json index 1b75a5606..f5e3c5f9b 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -8162,6 +8162,10 @@ "name": "Tactile Paving", "terms": "blind path,detectable warning surfaces,tactile ground surface indicators,tactile walking surface indicators,truncated domes,visually impaired path" }, + "telecom/data_center": { + "name": "Data Center", + "terms": "computer systems storage,information technology,server farm,the cloud,telecommunications" + }, "tourism/alpine_hut": { "name": "Alpine Hut", "terms": "climbing hut" diff --git a/svg/fontawesome/fas-server.svg b/svg/fontawesome/fas-server.svg new file mode 100644 index 000000000..e6218ec30 --- /dev/null +++ b/svg/fontawesome/fas-server.svg @@ -0,0 +1 @@ + \ No newline at end of file From 5445f468b82461207f15910309e8b3019c0dce60 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Mon, 8 Apr 2019 13:15:36 -0700 Subject: [PATCH 44/50] Add more preset icons --- data/presets/presets.json | 80 +++++++++---------- data/presets/presets/amenity/biergarten.json | 2 +- data/presets/presets/office/notary.json | 2 +- data/presets/presets/shop/agrarian.json | 2 +- data/presets/presets/shop/alcohol.json | 2 +- data/presets/presets/shop/radiotechnics.json | 2 +- data/presets/presets/shop/stationery.json | 2 +- .../tourism/information/guidepost.json | 2 +- .../presets/tourism/information/map.json | 2 +- data/presets/presets/traffic_sign.json | 2 +- data/taginfo.json | 16 ++-- svg/fontawesome/fas-beer.svg | 1 + svg/fontawesome/fas-directions.svg | 1 + svg/fontawesome/fas-map-signs.svg | 1 + svg/fontawesome/fas-map.svg | 1 + svg/fontawesome/fas-microchip.svg | 1 + svg/fontawesome/fas-paperclip.svg | 1 + svg/fontawesome/fas-stamp.svg | 1 + svg/fontawesome/fas-tractor.svg | 1 + svg/fontawesome/fas-wine-bottle.svg | 1 + 20 files changed, 66 insertions(+), 57 deletions(-) create mode 100644 svg/fontawesome/fas-beer.svg create mode 100644 svg/fontawesome/fas-directions.svg create mode 100644 svg/fontawesome/fas-map-signs.svg create mode 100644 svg/fontawesome/fas-map.svg create mode 100644 svg/fontawesome/fas-microchip.svg create mode 100644 svg/fontawesome/fas-paperclip.svg create mode 100644 svg/fontawesome/fas-stamp.svg create mode 100644 svg/fontawesome/fas-tractor.svg create mode 100644 svg/fontawesome/fas-wine-bottle.svg diff --git a/data/presets/presets.json b/data/presets/presets.json index 9d2e7ff82..2c6ab2351 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -66,7 +66,7 @@ "amenity/bicycle_parking": {"icon": "maki-bicycle", "fields": ["bicycle_parking", "capacity", "operator", "covered", "access_simple", "fee"], "moreFields": ["payment_multi", "covered"], "geometry": ["point", "vertex", "area"], "terms": ["bike"], "tags": {"amenity": "bicycle_parking"}, "name": "Bicycle Parking"}, "amenity/bicycle_rental": {"icon": "maki-bicycle", "fields": ["capacity", "network", "operator", "fee", "payment_multi"], "moreFields": ["opening_hours", "address", "website", "phone", "email", "fax", "wheelchair", "covered"], "geometry": ["point", "vertex", "area"], "terms": ["bike"], "tags": {"amenity": "bicycle_rental"}, "name": "Bicycle Rental"}, "amenity/bicycle_repair_station": {"icon": "maki-bicycle", "fields": ["operator", "brand", "opening_hours", "fee", "service/bicycle"], "moreFields": ["payment_multi", "covered"], "geometry": ["point", "vertex"], "terms": ["bike", "repair", "chain", "pump"], "tags": {"amenity": "bicycle_repair_station"}, "name": "Bicycle Repair Tool Stand"}, - "amenity/biergarten": {"icon": "maki-beer", "fields": ["name", "address", "building", "outdoor_seating", "brewery"], "moreFields": ["{amenity/bar}"], "geometry": ["point", "area"], "tags": {"amenity": "biergarten"}, "terms": ["beer", "bier", "booze"], "name": "Biergarten"}, + "amenity/biergarten": {"icon": "fas-beer", "fields": ["name", "address", "building", "outdoor_seating", "brewery"], "moreFields": ["{amenity/bar}"], "geometry": ["point", "area"], "tags": {"amenity": "biergarten"}, "terms": ["beer", "bier", "booze"], "name": "Biergarten"}, "amenity/boat_rental": {"icon": "temaki-boating", "fields": ["name", "operator", "fee", "payment_multi"], "moreFields": ["address", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "boat_rental"}, "name": "Boat Rental"}, "amenity/bureau_de_change": {"icon": "maki-bank", "fields": ["name", "operator", "payment_multi", "currency_multi", "address", "building_area"], "moreFields": ["opening_hours", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["bureau de change", "money changer"], "tags": {"amenity": "bureau_de_change"}, "name": "Currency Exchange"}, "amenity/cafe": {"icon": "maki-cafe", "fields": ["name", "cuisine", "address", "building_area", "outdoor_seating"], "moreFields": ["air_conditioning", "diet_multi", "takeaway", "delivery", "capacity", "opening_hours", "smoking", "payment_multi", "internet_access", "internet_access/fee", "internet_access/ssid", "website", "phone", "email", "fax", "wheelchair", "bar"], "geometry": ["point", "area"], "terms": ["bistro", "coffee", "tea"], "tags": {"amenity": "cafe"}, "name": "Cafe"}, @@ -747,7 +747,7 @@ "office/moving_company": {"icon": "fas-people-carry", "geometry": ["point", "area"], "tags": {"office": "moving_company"}, "terms": ["relocation"], "name": "Moving Company Office"}, "office/newspaper": {"icon": "maki-library", "geometry": ["point", "area"], "tags": {"office": "newspaper"}, "terms": [], "name": "Newspaper Office"}, "office/ngo": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "ngo"}, "terms": ["ngo", "non government", "non-government", "organization", "organisation"], "name": "NGO Office"}, - "office/notary": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "notary"}, "terms": ["clerk", "deeds", "estate", "signature", "wills"], "name": "Notary Office"}, + "office/notary": {"icon": "fas-stamp", "geometry": ["point", "area"], "tags": {"office": "notary"}, "terms": ["clerk", "deeds", "estate", "signature", "wills"], "name": "Notary Office"}, "office/political_party": {"icon": "maki-town-hall", "geometry": ["point", "area"], "tags": {"office": "political_party"}, "terms": [], "name": "Political Party"}, "office/private_investigator": {"icon": "fas-user-secret", "geometry": ["point", "area"], "tags": {"office": "private_investigator"}, "terms": ["PI", "private eye", "private detective"], "name": "Private Investigator Office"}, "office/quango": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "quango"}, "terms": ["ngo", "non government", "non-government", "organization", "organisation", "quasi autonomous", "quasi-autonomous"], "name": "Quasi-NGO Office"}, @@ -892,8 +892,8 @@ "shop/fishmonger": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "fishmonger"}, "reference": {"key": "shop", "value": "seafood"}, "name": "Fishmonger", "searchable": false}, "shop/furnace": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["oven", "stove"], "tags": {"shop": "furnace"}, "name": "Furnace Store", "searchable": false}, "shop/vacant": {"icon": "maki-shop", "fields": ["name", "address", "building_area"], "geometry": ["point", "area"], "tags": {"shop": "vacant"}, "name": "Vacant Shop", "searchable": false}, - "shop/agrarian": {"icon": "maki-shop", "fields": ["{shop}", "agrarian"], "geometry": ["point", "area"], "terms": ["agricultural inputs", "agricultural machines", "seeds", "pesticides", "fertilizer", "agricultural tools"], "tags": {"shop": "agrarian"}, "name": "Farm Supply Shop"}, - "shop/alcohol": {"icon": "maki-alcohol-shop", "fields": ["{shop}", "drive_through"], "geometry": ["point", "area"], "terms": ["alcohol", "beer", "booze", "wine"], "tags": {"shop": "alcohol"}, "name": "Liquor Store"}, + "shop/agrarian": {"icon": "fas-tractor", "fields": ["{shop}", "agrarian"], "geometry": ["point", "area"], "terms": ["agricultural inputs", "agricultural machines", "seeds", "pesticides", "fertilizer", "agricultural tools"], "tags": {"shop": "agrarian"}, "name": "Farm Supply Shop"}, + "shop/alcohol": {"icon": "fas-wine-bottle", "fields": ["{shop}", "drive_through"], "geometry": ["point", "area"], "terms": ["alcohol", "beer", "booze", "wine"], "tags": {"shop": "alcohol"}, "name": "Liquor Store"}, "shop/anime": {"icon": "fas-dragon", "geometry": ["point", "area"], "tags": {"shop": "anime"}, "terms": ["manga", "japan", "cosplay", "figurine", "dakimakura"], "name": "Anime Shop"}, "shop/antiques": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "antiques"}, "name": "Antiques Shop"}, "shop/appliance": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["air conditioner", "appliance", "dishwasher", "dryer", "freezer", "fridge", "grill", "kitchen", "oven", "refrigerator", "stove", "washer", "washing machine"], "tags": {"shop": "appliance"}, "name": "Appliance Store"}, @@ -996,7 +996,7 @@ "shop/pet": {"icon": "maki-dog-park", "geometry": ["point", "area"], "terms": ["animal", "cat", "dog", "fish", "kitten", "puppy", "reptile"], "tags": {"shop": "pet"}, "name": "Pet Store"}, "shop/photo": {"icon": "fas-camera-retro", "geometry": ["point", "area"], "terms": ["camera", "film"], "tags": {"shop": "photo"}, "name": "Photography Store"}, "shop/pyrotechnics": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "pyrotechnics"}, "name": "Fireworks Store"}, - "shop/radiotechnics": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "radiotechnics"}, "terms": ["antenna", "transistor"], "name": "Radio/Electronic Component Store"}, + "shop/radiotechnics": {"icon": "fas-microchip", "geometry": ["point", "area"], "tags": {"shop": "radiotechnics"}, "terms": ["antenna", "transistor"], "name": "Radio/Electronic Component Store"}, "shop/religion": {"icon": "maki-shop", "fields": ["{shop}", "religion", "denomination"], "geometry": ["point", "area"], "tags": {"shop": "religion"}, "name": "Religious Store"}, "shop/scuba_diving": {"icon": "maki-swimming", "fields": ["{shop}", "scuba_diving"], "geometry": ["point", "area"], "terms": ["diving", "scuba"], "tags": {"shop": "scuba_diving"}, "name": "Scuba Diving Shop"}, "shop/seafood": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["fishmonger"], "tags": {"shop": "seafood"}, "name": "Seafood Shop"}, @@ -1004,7 +1004,7 @@ "shop/sewing": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["haberdashery"], "tags": {"shop": "sewing"}, "name": "Sewing Supply Shop"}, "shop/shoes": {"icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes"}, "terms": ["boots", "cleats", "clogs", "heels", "loafers", "oxfords", "sneakers"], "name": "Shoe Store"}, "shop/sports": {"icon": "fas-futbol", "fields": ["name", "operator", "sport", "{shop}"], "geometry": ["point", "area"], "tags": {"shop": "sports"}, "terms": ["athletics"], "name": "Sporting Goods Store"}, - "shop/stationery": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["card", "paper"], "tags": {"shop": "stationery"}, "name": "Stationery Store"}, + "shop/stationery": {"icon": "fas-paperclip", "geometry": ["point", "area"], "terms": ["card", "paper"], "tags": {"shop": "stationery"}, "name": "Stationery Store"}, "shop/storage_rental": {"icon": "fas-warehouse", "geometry": ["point", "area"], "tags": {"shop": "storage_rental"}, "terms": ["garages"], "name": "Storage Rental"}, "shop/supermarket": {"icon": "maki-grocery", "moreFields": ["diet_multi", "{shop}"], "geometry": ["point", "area"], "terms": ["grocery", "store", "shop"], "tags": {"shop": "supermarket"}, "name": "Supermarket"}, "shop/tailor": {"icon": "maki-clothing-store", "geometry": ["point", "area"], "terms": ["clothes", "suit"], "tags": {"shop": "tailor"}, "name": "Tailor"}, @@ -1047,8 +1047,8 @@ "tourism/hotel": {"icon": "fas-concierge-bell", "fields": ["{tourism/motel}"], "moreFields": ["{tourism/motel}", "stars", "bar"], "geometry": ["point", "area"], "tags": {"tourism": "hotel"}, "name": "Hotel"}, "tourism/information": {"icon": "maki-information", "fields": ["information", "operator", "address", "building_area"], "geometry": ["point", "vertex", "area"], "tags": {"tourism": "information"}, "name": "Information"}, "tourism/information/board": {"icon": "maki-information", "fields": ["name", "operator", "board_type", "direction"], "geometry": ["point", "vertex"], "tags": {"tourism": "information", "information": "board"}, "reference": {"key": "information", "value": "board"}, "name": "Information Board"}, - "tourism/information/guidepost": {"icon": "maki-information", "fields": ["name", "elevation", "operator", "ref"], "moreFields": ["material"], "geometry": ["point", "vertex"], "terms": ["signpost"], "tags": {"tourism": "information", "information": "guidepost"}, "reference": {"key": "information", "value": "guidepost"}, "name": "Guidepost"}, - "tourism/information/map": {"icon": "maki-information", "fields": ["operator", "map_type", "map_size", "direction"], "geometry": ["point", "vertex"], "tags": {"tourism": "information", "information": "map"}, "reference": {"key": "information", "value": "map"}, "name": "Map"}, + "tourism/information/guidepost": {"icon": "fas-map-signs", "fields": ["name", "elevation", "operator", "ref"], "moreFields": ["material"], "geometry": ["point", "vertex"], "terms": ["signpost"], "tags": {"tourism": "information", "information": "guidepost"}, "reference": {"key": "information", "value": "guidepost"}, "name": "Guidepost"}, + "tourism/information/map": {"icon": "fas-map", "fields": ["operator", "map_type", "map_size", "direction"], "geometry": ["point", "vertex"], "tags": {"tourism": "information", "information": "map"}, "reference": {"key": "information", "value": "map"}, "name": "Map"}, "tourism/information/office": {"icon": "maki-information", "fields": ["name", "operator", "address", "building_area"], "moreFields": ["internet_access", "internet_access/fee", "internet_access/ssid", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "vertex", "area"], "tags": {"tourism": "information", "information": "office"}, "reference": {"key": "information", "value": "office"}, "name": "Tourist Information Office"}, "tourism/information/route_marker": {"icon": "maki-information", "fields": ["ref", "operator", "colour", "material", "elevation"], "geometry": ["point", "vertex"], "terms": ["cairn", "painted blaze", "route flag", "route marker", "stone pile", "trail blaze", "trail post", "way marker"], "tags": {"tourism": "information", "information": "route_marker"}, "reference": {"key": "information", "value": "route_marker"}, "name": "Trail Marker"}, "tourism/motel": {"icon": "maki-lodging", "fields": ["name", "brand", "address", "building_area", "rooms", "internet_access"], "moreFields": ["air_conditioning", "operator", "smoking", "payment_multi", "internet_access/fee", "internet_access/ssid", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"tourism": "motel"}, "name": "Motel"}, @@ -1070,7 +1070,7 @@ "traffic_calming/rumble_strip": {"icon": "temaki-diamond", "fields": ["direction_vertex"], "geometry": ["vertex", "line"], "terms": ["audible lines", "sleeper lines", "growlers"], "tags": {"traffic_calming": "rumble_strip"}, "name": "Rumble Strip"}, "traffic_calming/table": {"icon": "temaki-diamond", "fields": ["surface", "direction_vertex"], "geometry": ["vertex"], "tags": {"traffic_calming": "table"}, "terms": ["flat top", "hump", "speed", "slow"], "name": "Speed Table"}, "traffic_sign_vertex": {"icon": "maki-square-stroked", "fields": ["traffic_sign", "traffic_sign/direction"], "geometry": ["vertex"], "tags": {"traffic_sign": "*"}, "terms": ["road", "highway"], "name": "Traffic Sign"}, - "traffic_sign": {"icon": "maki-square-stroked", "fields": ["traffic_sign", "direction"], "geometry": ["point"], "tags": {"traffic_sign": "*"}, "terms": ["road", "highway"], "name": "Traffic Sign"}, + "traffic_sign": {"icon": "fas-directions", "fields": ["traffic_sign", "direction"], "geometry": ["point"], "tags": {"traffic_sign": "*"}, "terms": ["road", "highway"], "name": "Traffic Sign"}, "traffic_sign/city_limit_vertex": {"icon": "maki-square-stroked", "fields": ["traffic_sign", "traffic_sign/direction", "name"], "geometry": ["vertex"], "tags": {"traffic_sign": "city_limit"}, "terms": ["town", "village", "hamlet", "boundary", "edge", "border", "road", "highway"], "name": "City Limit Sign"}, "traffic_sign/city_limit": {"icon": "maki-square-stroked", "fields": ["traffic_sign", "direction", "name"], "geometry": ["point"], "tags": {"traffic_sign": "city_limit"}, "terms": ["town", "village", "hamlet", "boundary", "edge", "border", "road", "highway"], "name": "City Limit Sign"}, "traffic_sign/maxspeed_vertex": {"icon": "maki-square-stroked", "fields": ["traffic_sign", "traffic_sign/direction", "maxspeed"], "geometry": ["vertex"], "tags": {"traffic_sign": "maxspeed"}, "terms": ["max speed", "maximum speed", "road", "highway"], "name": "Speed Limit Sign"}, @@ -2457,26 +2457,26 @@ "leisure/fitness_centre/Retro Fitness": {"name": "Retro Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/RetroFitness/picture?type=large", "geometry": ["point", "area"], "tags": {"leisure": "fitness_centre", "brand:wikidata": "Q61994955"}, "addTags": {"brand": "Retro Fitness", "brand:wikidata": "Q61994955", "leisure": "fitness_centre", "name": "Retro Fitness"}, "removeTags": {"brand": "Retro Fitness", "brand:wikidata": "Q61994955", "leisure": "fitness_centre", "name": "Retro Fitness"}, "matchScore": 2, "suggestion": true}, "leisure/fitness_centre/Snap Fitness": {"name": "Snap Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/SnapFitness247/picture?type=large", "geometry": ["point", "area"], "tags": {"leisure": "fitness_centre", "brand:wikidata": "Q7547254"}, "addTags": {"brand": "Snap Fitness", "brand:wikidata": "Q7547254", "brand:wikipedia": "en:Snap Fitness", "leisure": "fitness_centre", "name": "Snap Fitness"}, "removeTags": {"brand": "Snap Fitness", "brand:wikidata": "Q7547254", "brand:wikipedia": "en:Snap Fitness", "leisure": "fitness_centre", "name": "Snap Fitness"}, "matchScore": 2, "suggestion": true}, "leisure/fitness_centre/YMCA": {"name": "YMCA", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/YMCA/picture?type=large", "geometry": ["point", "area"], "tags": {"leisure": "fitness_centre", "brand:wikidata": "Q157169"}, "addTags": {"brand": "YMCA", "brand:wikidata": "Q157169", "brand:wikipedia": "en:YMCA", "leisure": "fitness_centre", "name": "YMCA"}, "removeTags": {"brand": "YMCA", "brand:wikidata": "Q157169", "brand:wikipedia": "en:YMCA", "leisure": "fitness_centre", "name": "YMCA"}, "matchScore": 2, "suggestion": true}, - "shop/alcohol/Alko": {"name": "Alko", "icon": "maki-alcohol-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAlko.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q1849187"}, "addTags": {"brand": "Alko", "brand:wikidata": "Q1849187", "brand:wikipedia": "en:Alko", "name": "Alko", "shop": "alcohol"}, "removeTags": {"brand": "Alko", "brand:wikidata": "Q1849187", "brand:wikipedia": "en:Alko", "name": "Alko", "shop": "alcohol"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/BC Liquor Store": {"name": "BC Liquor Store", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q43079557"}, "addTags": {"brand": "BC Liquor Store", "brand:wikidata": "Q43079557", "brand:wikipedia": "en:BC Liquor Stores", "name": "BC Liquor Store", "shop": "alcohol"}, "removeTags": {"brand": "BC Liquor Store", "brand:wikidata": "Q43079557", "brand:wikipedia": "en:BC Liquor Stores", "name": "BC Liquor Store", "shop": "alcohol"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/BWS": {"name": "BWS", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q4836848"}, "addTags": {"brand": "BWS", "brand:wikidata": "Q4836848", "brand:wikipedia": "en:BWS (liquor retailer)", "name": "BWS", "shop": "alcohol"}, "removeTags": {"brand": "BWS", "brand:wikidata": "Q4836848", "brand:wikipedia": "en:BWS (liquor retailer)", "name": "BWS", "shop": "alcohol"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Bargain Booze": {"name": "Bargain Booze", "icon": "maki-alcohol-shop", "imageURL": "https://pbs.twimg.com/profile_images/998956835796205568/21tNi907_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q16971315"}, "addTags": {"brand": "Bargain Booze", "brand:wikidata": "Q16971315", "brand:wikipedia": "en:Bargain Booze", "name": "Bargain Booze", "shop": "alcohol"}, "removeTags": {"brand": "Bargain Booze", "brand:wikidata": "Q16971315", "brand:wikipedia": "en:Bargain Booze", "name": "Bargain Booze", "shop": "alcohol"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/BevMo!": {"name": "BevMo!", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q4899308"}, "addTags": {"brand": "BevMo!", "brand:wikidata": "Q4899308", "brand:wikipedia": "en:BevMo!", "name": "BevMo!", "shop": "alcohol"}, "removeTags": {"brand": "BevMo!", "brand:wikidata": "Q4899308", "brand:wikipedia": "en:BevMo!", "name": "BevMo!", "shop": "alcohol"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Dan Murphy's": {"name": "Dan Murphy's", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q5214075"}, "addTags": {"brand": "Dan Murphy's", "brand:wikidata": "Q5214075", "brand:wikipedia": "en:Dan Murphy's", "name": "Dan Murphy's", "shop": "alcohol"}, "removeTags": {"brand": "Dan Murphy's", "brand:wikidata": "Q5214075", "brand:wikipedia": "en:Dan Murphy's", "name": "Dan Murphy's", "shop": "alcohol"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Gall & Gall": {"name": "Gall & Gall", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q13639185"}, "addTags": {"brand": "Gall & Gall", "brand:wikidata": "Q13639185", "brand:wikipedia": "nl:Gall & Gall", "name": "Gall & Gall", "shop": "alcohol"}, "removeTags": {"brand": "Gall & Gall", "brand:wikidata": "Q13639185", "brand:wikipedia": "nl:Gall & Gall", "name": "Gall & Gall", "shop": "alcohol"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/LCBO": {"name": "LCBO", "icon": "maki-alcohol-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLiquor%20Control%20Board%20of%20Ontario%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q845263"}, "addTags": {"brand": "LCBO", "brand:wikidata": "Q845263", "brand:wikipedia": "en:Liquor Control Board of Ontario", "name": "LCBO", "shop": "alcohol"}, "removeTags": {"brand": "LCBO", "brand:wikidata": "Q845263", "brand:wikipedia": "en:Liquor Control Board of Ontario", "name": "LCBO", "shop": "alcohol"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Liquorland": {"name": "Liquorland", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q2283837"}, "addTags": {"brand": "Liquorland", "brand:wikidata": "Q2283837", "brand:wikipedia": "en:Liquorland", "name": "Liquorland", "operator": "Coles Group", "operator:wikidata": "Q1339055", "operator:wikipedia": "en:Coles Group", "shop": "alcohol"}, "removeTags": {"brand": "Liquorland", "brand:wikidata": "Q2283837", "brand:wikipedia": "en:Liquorland", "name": "Liquorland", "operator": "Coles Group", "operator:wikidata": "Q1339055", "operator:wikipedia": "en:Coles Group", "shop": "alcohol"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Nicolas": {"name": "Nicolas", "icon": "maki-alcohol-shop", "imageURL": "https://pbs.twimg.com/profile_images/842779196082573314/AtkEMQlh_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q3340012"}, "addTags": {"brand": "Nicolas", "brand:wikidata": "Q3340012", "brand:wikipedia": "en:Nicolas (wine retailer)", "name": "Nicolas", "shop": "alcohol"}, "removeTags": {"brand": "Nicolas", "brand:wikidata": "Q3340012", "brand:wikipedia": "en:Nicolas (wine retailer)", "name": "Nicolas", "shop": "alcohol"}, "countryCodes": ["be", "de", "fr", "gb", "pl"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/SAQ": {"name": "SAQ", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q3488077"}, "addTags": {"brand": "SAQ", "brand:wikidata": "Q3488077", "brand:wikipedia": "en:Société des alcools du Québec", "name": "SAQ", "shop": "alcohol"}, "removeTags": {"brand": "SAQ", "brand:wikidata": "Q3488077", "brand:wikipedia": "en:Société des alcools du Québec", "name": "SAQ", "shop": "alcohol"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Spec's": {"name": "Spec's", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q7574415"}, "addTags": {"brand": "Spec's", "brand:wikidata": "Q7574415", "brand:wikipedia": "en:Spec's Wine, Spirits & Finer Foods", "name": "Spec's", "shop": "alcohol"}, "removeTags": {"brand": "Spec's", "brand:wikidata": "Q7574415", "brand:wikipedia": "en:Spec's Wine, Spirits & Finer Foods", "name": "Spec's", "shop": "alcohol"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Systembolaget": {"name": "Systembolaget", "icon": "maki-alcohol-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSystembolaget%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q1476113"}, "addTags": {"brand": "Systembolaget", "brand:wikidata": "Q1476113", "brand:wikipedia": "en:Systembolaget", "name": "Systembolaget", "shop": "alcohol"}, "removeTags": {"brand": "Systembolaget", "brand:wikidata": "Q1476113", "brand:wikipedia": "en:Systembolaget", "name": "Systembolaget", "shop": "alcohol"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/The Beer Store": {"name": "The Beer Store", "icon": "maki-alcohol-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FThe%20Beer%20Store%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q16243674"}, "addTags": {"brand": "The Beer Store", "brand:wikidata": "Q16243674", "brand:wikipedia": "en:The Beer Store", "name": "The Beer Store", "shop": "alcohol"}, "removeTags": {"brand": "The Beer Store", "brand:wikidata": "Q16243674", "brand:wikipedia": "en:The Beer Store", "name": "The Beer Store", "shop": "alcohol"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Total Wine": {"name": "Total Wine", "icon": "maki-alcohol-shop", "imageURL": "https://pbs.twimg.com/profile_images/3095579292/69f5115c869a3b0f73bfb7ad25ba2a37_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q7828084"}, "addTags": {"brand": "Total Wine", "brand:wikidata": "Q7828084", "brand:wikipedia": "en:Total Wine & More", "name": "Total Wine", "shop": "alcohol"}, "removeTags": {"brand": "Total Wine", "brand:wikidata": "Q7828084", "brand:wikipedia": "en:Total Wine & More", "name": "Total Wine", "shop": "alcohol"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Vinmonopolet": {"name": "Vinmonopolet", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q1740534"}, "addTags": {"brand": "Vinmonopolet", "brand:wikidata": "Q1740534", "brand:wikipedia": "en:Vinmonopolet", "name": "Vinmonopolet", "shop": "alcohol"}, "removeTags": {"brand": "Vinmonopolet", "brand:wikidata": "Q1740534", "brand:wikipedia": "en:Vinmonopolet", "name": "Vinmonopolet", "shop": "alcohol"}, "countryCodes": ["no"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Virginia ABC": {"name": "Virginia ABC", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q7934236"}, "addTags": {"brand": "Virginia ABC", "brand:wikidata": "Q7934236", "brand:wikipedia": "en:Virginia Alcoholic Beverage Control Authority", "name": "Virginia ABC", "shop": "alcohol"}, "removeTags": {"brand": "Virginia ABC", "brand:wikidata": "Q7934236", "brand:wikipedia": "en:Virginia Alcoholic Beverage Control Authority", "name": "Virginia ABC", "shop": "alcohol"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Бристоль": {"name": "Бристоль", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q59155583"}, "addTags": {"brand": "Бристоль", "brand:wikidata": "Q59155583", "brand:wikipedia": "ru:Бристоль (сеть магазинов)", "name": "Бристоль", "shop": "alcohol"}, "removeTags": {"brand": "Бристоль", "brand:wikidata": "Q59155583", "brand:wikipedia": "ru:Бристоль (сеть магазинов)", "name": "Бристоль", "shop": "alcohol"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Красное & Белое": {"name": "Красное & Белое", "icon": "maki-alcohol-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKrasnoe%26Beloe.%20Logotip.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q24933790"}, "addTags": {"brand": "Красное & Белое", "brand:en": "Red&White", "brand:wikidata": "Q24933790", "brand:wikipedia": "en:Red&White", "name": "Красное & Белое", "name:en": "Red&White", "shop": "alcohol"}, "removeTags": {"brand": "Красное & Белое", "brand:en": "Red&White", "brand:wikidata": "Q24933790", "brand:wikipedia": "en:Red&White", "name": "Красное & Белое", "name:en": "Red&White", "shop": "alcohol"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Лион": {"name": "Лион", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q3241775"}, "addTags": {"brand": "Лион", "brand:wikidata": "Q3241775", "brand:wikipedia": "en:Lion (Australasian company)", "name": "Лион", "shop": "alcohol"}, "removeTags": {"brand": "Лион", "brand:wikidata": "Q3241775", "brand:wikipedia": "en:Lion (Australasian company)", "name": "Лион", "shop": "alcohol"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/Alko": {"name": "Alko", "icon": "fas-wine-bottle", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAlko.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q1849187"}, "addTags": {"brand": "Alko", "brand:wikidata": "Q1849187", "brand:wikipedia": "en:Alko", "name": "Alko", "shop": "alcohol"}, "removeTags": {"brand": "Alko", "brand:wikidata": "Q1849187", "brand:wikipedia": "en:Alko", "name": "Alko", "shop": "alcohol"}, "countryCodes": ["fi"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/BC Liquor Store": {"name": "BC Liquor Store", "icon": "fas-wine-bottle", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q43079557"}, "addTags": {"brand": "BC Liquor Store", "brand:wikidata": "Q43079557", "brand:wikipedia": "en:BC Liquor Stores", "name": "BC Liquor Store", "shop": "alcohol"}, "removeTags": {"brand": "BC Liquor Store", "brand:wikidata": "Q43079557", "brand:wikipedia": "en:BC Liquor Stores", "name": "BC Liquor Store", "shop": "alcohol"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/BWS": {"name": "BWS", "icon": "fas-wine-bottle", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q4836848"}, "addTags": {"brand": "BWS", "brand:wikidata": "Q4836848", "brand:wikipedia": "en:BWS (liquor retailer)", "name": "BWS", "shop": "alcohol"}, "removeTags": {"brand": "BWS", "brand:wikidata": "Q4836848", "brand:wikipedia": "en:BWS (liquor retailer)", "name": "BWS", "shop": "alcohol"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/Bargain Booze": {"name": "Bargain Booze", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/998956835796205568/21tNi907_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q16971315"}, "addTags": {"brand": "Bargain Booze", "brand:wikidata": "Q16971315", "brand:wikipedia": "en:Bargain Booze", "name": "Bargain Booze", "shop": "alcohol"}, "removeTags": {"brand": "Bargain Booze", "brand:wikidata": "Q16971315", "brand:wikipedia": "en:Bargain Booze", "name": "Bargain Booze", "shop": "alcohol"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/BevMo!": {"name": "BevMo!", "icon": "fas-wine-bottle", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q4899308"}, "addTags": {"brand": "BevMo!", "brand:wikidata": "Q4899308", "brand:wikipedia": "en:BevMo!", "name": "BevMo!", "shop": "alcohol"}, "removeTags": {"brand": "BevMo!", "brand:wikidata": "Q4899308", "brand:wikipedia": "en:BevMo!", "name": "BevMo!", "shop": "alcohol"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/Dan Murphy's": {"name": "Dan Murphy's", "icon": "fas-wine-bottle", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q5214075"}, "addTags": {"brand": "Dan Murphy's", "brand:wikidata": "Q5214075", "brand:wikipedia": "en:Dan Murphy's", "name": "Dan Murphy's", "shop": "alcohol"}, "removeTags": {"brand": "Dan Murphy's", "brand:wikidata": "Q5214075", "brand:wikipedia": "en:Dan Murphy's", "name": "Dan Murphy's", "shop": "alcohol"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/Gall & Gall": {"name": "Gall & Gall", "icon": "fas-wine-bottle", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q13639185"}, "addTags": {"brand": "Gall & Gall", "brand:wikidata": "Q13639185", "brand:wikipedia": "nl:Gall & Gall", "name": "Gall & Gall", "shop": "alcohol"}, "removeTags": {"brand": "Gall & Gall", "brand:wikidata": "Q13639185", "brand:wikipedia": "nl:Gall & Gall", "name": "Gall & Gall", "shop": "alcohol"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/LCBO": {"name": "LCBO", "icon": "fas-wine-bottle", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLiquor%20Control%20Board%20of%20Ontario%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q845263"}, "addTags": {"brand": "LCBO", "brand:wikidata": "Q845263", "brand:wikipedia": "en:Liquor Control Board of Ontario", "name": "LCBO", "shop": "alcohol"}, "removeTags": {"brand": "LCBO", "brand:wikidata": "Q845263", "brand:wikipedia": "en:Liquor Control Board of Ontario", "name": "LCBO", "shop": "alcohol"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/Liquorland": {"name": "Liquorland", "icon": "fas-wine-bottle", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q2283837"}, "addTags": {"brand": "Liquorland", "brand:wikidata": "Q2283837", "brand:wikipedia": "en:Liquorland", "name": "Liquorland", "operator": "Coles Group", "operator:wikidata": "Q1339055", "operator:wikipedia": "en:Coles Group", "shop": "alcohol"}, "removeTags": {"brand": "Liquorland", "brand:wikidata": "Q2283837", "brand:wikipedia": "en:Liquorland", "name": "Liquorland", "operator": "Coles Group", "operator:wikidata": "Q1339055", "operator:wikipedia": "en:Coles Group", "shop": "alcohol"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/Nicolas": {"name": "Nicolas", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/842779196082573314/AtkEMQlh_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q3340012"}, "addTags": {"brand": "Nicolas", "brand:wikidata": "Q3340012", "brand:wikipedia": "en:Nicolas (wine retailer)", "name": "Nicolas", "shop": "alcohol"}, "removeTags": {"brand": "Nicolas", "brand:wikidata": "Q3340012", "brand:wikipedia": "en:Nicolas (wine retailer)", "name": "Nicolas", "shop": "alcohol"}, "countryCodes": ["be", "de", "fr", "gb", "pl"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/SAQ": {"name": "SAQ", "icon": "fas-wine-bottle", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q3488077"}, "addTags": {"brand": "SAQ", "brand:wikidata": "Q3488077", "brand:wikipedia": "en:Société des alcools du Québec", "name": "SAQ", "shop": "alcohol"}, "removeTags": {"brand": "SAQ", "brand:wikidata": "Q3488077", "brand:wikipedia": "en:Société des alcools du Québec", "name": "SAQ", "shop": "alcohol"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/Spec's": {"name": "Spec's", "icon": "fas-wine-bottle", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q7574415"}, "addTags": {"brand": "Spec's", "brand:wikidata": "Q7574415", "brand:wikipedia": "en:Spec's Wine, Spirits & Finer Foods", "name": "Spec's", "shop": "alcohol"}, "removeTags": {"brand": "Spec's", "brand:wikidata": "Q7574415", "brand:wikipedia": "en:Spec's Wine, Spirits & Finer Foods", "name": "Spec's", "shop": "alcohol"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/Systembolaget": {"name": "Systembolaget", "icon": "fas-wine-bottle", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSystembolaget%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q1476113"}, "addTags": {"brand": "Systembolaget", "brand:wikidata": "Q1476113", "brand:wikipedia": "en:Systembolaget", "name": "Systembolaget", "shop": "alcohol"}, "removeTags": {"brand": "Systembolaget", "brand:wikidata": "Q1476113", "brand:wikipedia": "en:Systembolaget", "name": "Systembolaget", "shop": "alcohol"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/The Beer Store": {"name": "The Beer Store", "icon": "fas-wine-bottle", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FThe%20Beer%20Store%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q16243674"}, "addTags": {"brand": "The Beer Store", "brand:wikidata": "Q16243674", "brand:wikipedia": "en:The Beer Store", "name": "The Beer Store", "shop": "alcohol"}, "removeTags": {"brand": "The Beer Store", "brand:wikidata": "Q16243674", "brand:wikipedia": "en:The Beer Store", "name": "The Beer Store", "shop": "alcohol"}, "countryCodes": ["ca"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/Total Wine": {"name": "Total Wine", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/3095579292/69f5115c869a3b0f73bfb7ad25ba2a37_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q7828084"}, "addTags": {"brand": "Total Wine", "brand:wikidata": "Q7828084", "brand:wikipedia": "en:Total Wine & More", "name": "Total Wine", "shop": "alcohol"}, "removeTags": {"brand": "Total Wine", "brand:wikidata": "Q7828084", "brand:wikipedia": "en:Total Wine & More", "name": "Total Wine", "shop": "alcohol"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/Vinmonopolet": {"name": "Vinmonopolet", "icon": "fas-wine-bottle", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q1740534"}, "addTags": {"brand": "Vinmonopolet", "brand:wikidata": "Q1740534", "brand:wikipedia": "en:Vinmonopolet", "name": "Vinmonopolet", "shop": "alcohol"}, "removeTags": {"brand": "Vinmonopolet", "brand:wikidata": "Q1740534", "brand:wikipedia": "en:Vinmonopolet", "name": "Vinmonopolet", "shop": "alcohol"}, "countryCodes": ["no"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/Virginia ABC": {"name": "Virginia ABC", "icon": "fas-wine-bottle", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q7934236"}, "addTags": {"brand": "Virginia ABC", "brand:wikidata": "Q7934236", "brand:wikipedia": "en:Virginia Alcoholic Beverage Control Authority", "name": "Virginia ABC", "shop": "alcohol"}, "removeTags": {"brand": "Virginia ABC", "brand:wikidata": "Q7934236", "brand:wikipedia": "en:Virginia Alcoholic Beverage Control Authority", "name": "Virginia ABC", "shop": "alcohol"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/Бристоль": {"name": "Бристоль", "icon": "fas-wine-bottle", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q59155583"}, "addTags": {"brand": "Бристоль", "brand:wikidata": "Q59155583", "brand:wikipedia": "ru:Бристоль (сеть магазинов)", "name": "Бристоль", "shop": "alcohol"}, "removeTags": {"brand": "Бристоль", "brand:wikidata": "Q59155583", "brand:wikipedia": "ru:Бристоль (сеть магазинов)", "name": "Бристоль", "shop": "alcohol"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/Красное & Белое": {"name": "Красное & Белое", "icon": "fas-wine-bottle", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKrasnoe%26Beloe.%20Logotip.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q24933790"}, "addTags": {"brand": "Красное & Белое", "brand:en": "Red&White", "brand:wikidata": "Q24933790", "brand:wikipedia": "en:Red&White", "name": "Красное & Белое", "name:en": "Red&White", "shop": "alcohol"}, "removeTags": {"brand": "Красное & Белое", "brand:en": "Red&White", "brand:wikidata": "Q24933790", "brand:wikipedia": "en:Red&White", "name": "Красное & Белое", "name:en": "Red&White", "shop": "alcohol"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/alcohol/Лион": {"name": "Лион", "icon": "fas-wine-bottle", "geometry": ["point", "area"], "tags": {"shop": "alcohol", "brand:wikidata": "Q3241775"}, "addTags": {"brand": "Лион", "brand:wikidata": "Q3241775", "brand:wikipedia": "en:Lion (Australasian company)", "name": "Лион", "shop": "alcohol"}, "removeTags": {"brand": "Лион", "brand:wikidata": "Q3241775", "brand:wikipedia": "en:Lion (Australasian company)", "name": "Лион", "shop": "alcohol"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/baby_goods/Babies R Us": {"name": "Babies R Us", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/babiesrus/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q17232036"}, "addTags": {"brand": "Babies R Us", "brand:wikidata": "Q17232036", "name": "Babies R Us", "shop": "baby_goods"}, "removeTags": {"brand": "Babies R Us", "brand:wikidata": "Q17232036", "name": "Babies R Us", "shop": "baby_goods"}, "matchScore": 2, "suggestion": true}, "shop/baby_goods/BabyOne": {"name": "BabyOne", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/BabyOne/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q57540408"}, "addTags": {"brand": "BabyOne", "brand:wikidata": "Q57540408", "name": "BabyOne", "shop": "baby_goods"}, "removeTags": {"brand": "BabyOne", "brand:wikidata": "Q57540408", "name": "BabyOne", "shop": "baby_goods"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/baby_goods/Buy Buy Baby": {"name": "Buy Buy Baby", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/buybuyBABY/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "baby_goods", "brand:wikidata": "Q5003352"}, "addTags": {"brand": "Buy Buy Baby", "brand:wikidata": "Q5003352", "brand:wikipedia": "en:Buy Buy Baby", "name": "Buy Buy Baby", "shop": "baby_goods"}, "removeTags": {"brand": "Buy Buy Baby", "brand:wikidata": "Q5003352", "brand:wikipedia": "en:Buy Buy Baby", "name": "Buy Buy Baby", "shop": "baby_goods"}, "matchScore": 2, "suggestion": true}, @@ -3476,17 +3476,17 @@ "shop/sports/Sports Direct": {"name": "Sports Direct", "icon": "fas-futbol", "imageURL": "https://pbs.twimg.com/profile_images/1093476002901168128/0JeA5eGF_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q2913554"}, "addTags": {"brand": "Sports Direct", "brand:wikidata": "Q2913554", "brand:wikipedia": "en:Sports Direct", "name": "Sports Direct", "shop": "sports"}, "removeTags": {"brand": "Sports Direct", "brand:wikidata": "Q2913554", "brand:wikipedia": "en:Sports Direct", "name": "Sports Direct", "shop": "sports"}, "matchScore": 2, "suggestion": true}, "shop/sports/Спортмастер": {"name": "Спортмастер", "icon": "fas-futbol", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSportmaster.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q4438176"}, "addTags": {"brand": "Спортмастер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер", "shop": "sports"}, "removeTags": {"brand": "Спортмастер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер", "shop": "sports"}, "matchScore": 2, "suggestion": true}, "shop/sports/Спортмастер Гипер": {"name": "Спортмастер Гипер", "icon": "fas-futbol", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSportmaster.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "sports", "brand:wikidata": "Q4438176"}, "addTags": {"brand": "Спортмастер Гипер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер Гипер", "shop": "sports"}, "removeTags": {"brand": "Спортмастер Гипер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер Гипер", "shop": "sports"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, - "shop/stationery/Bureau Vallée": {"name": "Bureau Vallée", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q18385014"}, "addTags": {"brand": "Bureau Vallée", "brand:wikidata": "Q18385014", "brand:wikipedia": "fr:Bureau Vallée", "name": "Bureau Vallée", "shop": "stationery"}, "removeTags": {"brand": "Bureau Vallée", "brand:wikidata": "Q18385014", "brand:wikipedia": "fr:Bureau Vallée", "name": "Bureau Vallée", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, - "shop/stationery/McPaper": {"name": "McPaper", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q1915329"}, "addTags": {"brand": "McPaper", "brand:wikidata": "Q1915329", "brand:wikipedia": "de:McPaper", "name": "McPaper", "shop": "stationery"}, "removeTags": {"brand": "McPaper", "brand:wikidata": "Q1915329", "brand:wikipedia": "de:McPaper", "name": "McPaper", "shop": "stationery"}, "countryCodes": ["ch", "de"], "matchScore": 2, "suggestion": true}, - "shop/stationery/Office Depot": {"name": "Office Depot", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1018152775564320768/kH7WpGKV_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q1337797"}, "addTags": {"brand": "Office Depot", "brand:wikidata": "Q1337797", "brand:wikipedia": "en:Office Depot", "name": "Office Depot", "shop": "stationery"}, "removeTags": {"brand": "Office Depot", "brand:wikidata": "Q1337797", "brand:wikipedia": "en:Office Depot", "name": "Office Depot", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, - "shop/stationery/OfficeMax": {"name": "OfficeMax", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q7079111"}, "addTags": {"brand": "OfficeMax", "brand:wikidata": "Q7079111", "brand:wikipedia": "en:OfficeMax", "name": "OfficeMax", "shop": "stationery"}, "removeTags": {"brand": "OfficeMax", "brand:wikidata": "Q7079111", "brand:wikipedia": "en:OfficeMax", "name": "OfficeMax", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, - "shop/stationery/Officeworks": {"name": "Officeworks", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q7079486"}, "addTags": {"brand": "Officeworks", "brand:wikidata": "Q7079486", "brand:wikipedia": "en:Officeworks", "name": "Officeworks", "shop": "stationery"}, "removeTags": {"brand": "Officeworks", "brand:wikidata": "Q7079486", "brand:wikipedia": "en:Officeworks", "name": "Officeworks", "shop": "stationery"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, - "shop/stationery/Pagro": {"name": "Pagro", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q57550022"}, "addTags": {"brand": "Pagro", "brand:wikidata": "Q57550022", "name": "Pagro", "shop": "stationery"}, "removeTags": {"brand": "Pagro", "brand:wikidata": "Q57550022", "name": "Pagro", "shop": "stationery"}, "countryCodes": ["at"], "matchScore": 2, "suggestion": true}, - "shop/stationery/Paper Source": {"name": "Paper Source", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPaper-source-logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q25000269"}, "addTags": {"brand": "Paper Source", "brand:wikidata": "Q25000269", "brand:wikipedia": "en:Paper Source", "name": "Paper Source", "shop": "stationery"}, "removeTags": {"brand": "Paper Source", "brand:wikidata": "Q25000269", "brand:wikipedia": "en:Paper Source", "name": "Paper Source", "shop": "stationery"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, - "shop/stationery/Paperchase": {"name": "Paperchase", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1106525584400805889/Vj2aTZvR_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q7132739"}, "addTags": {"brand": "Paperchase", "brand:wikidata": "Q7132739", "brand:wikipedia": "en:Paperchase", "name": "Paperchase", "shop": "stationery"}, "removeTags": {"brand": "Paperchase", "brand:wikidata": "Q7132739", "brand:wikipedia": "en:Paperchase", "name": "Paperchase", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, - "shop/stationery/Ryman": {"name": "Ryman", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/946036886988083200/_2puYaT9_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q7385188"}, "addTags": {"brand": "Ryman", "brand:wikidata": "Q7385188", "brand:wikipedia": "en:Ryman", "name": "Ryman", "shop": "stationery"}, "removeTags": {"brand": "Ryman", "brand:wikidata": "Q7385188", "brand:wikipedia": "en:Ryman", "name": "Ryman", "shop": "stationery"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, - "shop/stationery/Staples": {"name": "Staples", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/782920908281438208/1-ohJImq_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q785943"}, "addTags": {"brand": "Staples", "brand:wikidata": "Q785943", "brand:wikipedia": "en:Staples Inc.", "name": "Staples", "shop": "stationery"}, "removeTags": {"brand": "Staples", "brand:wikidata": "Q785943", "brand:wikipedia": "en:Staples Inc.", "name": "Staples", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, - "shop/stationery/Комус": {"name": "Комус", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/komusclub/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q4230314"}, "addTags": {"brand": "Комус", "brand:en": "Komus", "brand:wikidata": "Q4230314", "brand:wikipedia": "en:Komus (company)", "name": "Комус", "name:en": "Komus", "shop": "stationery"}, "removeTags": {"brand": "Комус", "brand:en": "Komus", "brand:wikidata": "Q4230314", "brand:wikipedia": "en:Komus (company)", "name": "Комус", "name:en": "Komus", "shop": "stationery"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "shop/stationery/Bureau Vallée": {"name": "Bureau Vallée", "icon": "fas-paperclip", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q18385014"}, "addTags": {"brand": "Bureau Vallée", "brand:wikidata": "Q18385014", "brand:wikipedia": "fr:Bureau Vallée", "name": "Bureau Vallée", "shop": "stationery"}, "removeTags": {"brand": "Bureau Vallée", "brand:wikidata": "Q18385014", "brand:wikipedia": "fr:Bureau Vallée", "name": "Bureau Vallée", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, + "shop/stationery/McPaper": {"name": "McPaper", "icon": "fas-paperclip", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q1915329"}, "addTags": {"brand": "McPaper", "brand:wikidata": "Q1915329", "brand:wikipedia": "de:McPaper", "name": "McPaper", "shop": "stationery"}, "removeTags": {"brand": "McPaper", "brand:wikidata": "Q1915329", "brand:wikipedia": "de:McPaper", "name": "McPaper", "shop": "stationery"}, "countryCodes": ["ch", "de"], "matchScore": 2, "suggestion": true}, + "shop/stationery/Office Depot": {"name": "Office Depot", "icon": "fas-paperclip", "imageURL": "https://pbs.twimg.com/profile_images/1018152775564320768/kH7WpGKV_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q1337797"}, "addTags": {"brand": "Office Depot", "brand:wikidata": "Q1337797", "brand:wikipedia": "en:Office Depot", "name": "Office Depot", "shop": "stationery"}, "removeTags": {"brand": "Office Depot", "brand:wikidata": "Q1337797", "brand:wikipedia": "en:Office Depot", "name": "Office Depot", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, + "shop/stationery/OfficeMax": {"name": "OfficeMax", "icon": "fas-paperclip", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q7079111"}, "addTags": {"brand": "OfficeMax", "brand:wikidata": "Q7079111", "brand:wikipedia": "en:OfficeMax", "name": "OfficeMax", "shop": "stationery"}, "removeTags": {"brand": "OfficeMax", "brand:wikidata": "Q7079111", "brand:wikipedia": "en:OfficeMax", "name": "OfficeMax", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, + "shop/stationery/Officeworks": {"name": "Officeworks", "icon": "fas-paperclip", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q7079486"}, "addTags": {"brand": "Officeworks", "brand:wikidata": "Q7079486", "brand:wikipedia": "en:Officeworks", "name": "Officeworks", "shop": "stationery"}, "removeTags": {"brand": "Officeworks", "brand:wikidata": "Q7079486", "brand:wikipedia": "en:Officeworks", "name": "Officeworks", "shop": "stationery"}, "countryCodes": ["au"], "matchScore": 2, "suggestion": true}, + "shop/stationery/Pagro": {"name": "Pagro", "icon": "fas-paperclip", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q57550022"}, "addTags": {"brand": "Pagro", "brand:wikidata": "Q57550022", "name": "Pagro", "shop": "stationery"}, "removeTags": {"brand": "Pagro", "brand:wikidata": "Q57550022", "name": "Pagro", "shop": "stationery"}, "countryCodes": ["at"], "matchScore": 2, "suggestion": true}, + "shop/stationery/Paper Source": {"name": "Paper Source", "icon": "fas-paperclip", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPaper-source-logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q25000269"}, "addTags": {"brand": "Paper Source", "brand:wikidata": "Q25000269", "brand:wikipedia": "en:Paper Source", "name": "Paper Source", "shop": "stationery"}, "removeTags": {"brand": "Paper Source", "brand:wikidata": "Q25000269", "brand:wikipedia": "en:Paper Source", "name": "Paper Source", "shop": "stationery"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, + "shop/stationery/Paperchase": {"name": "Paperchase", "icon": "fas-paperclip", "imageURL": "https://pbs.twimg.com/profile_images/1106525584400805889/Vj2aTZvR_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q7132739"}, "addTags": {"brand": "Paperchase", "brand:wikidata": "Q7132739", "brand:wikipedia": "en:Paperchase", "name": "Paperchase", "shop": "stationery"}, "removeTags": {"brand": "Paperchase", "brand:wikidata": "Q7132739", "brand:wikipedia": "en:Paperchase", "name": "Paperchase", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, + "shop/stationery/Ryman": {"name": "Ryman", "icon": "fas-paperclip", "imageURL": "https://pbs.twimg.com/profile_images/946036886988083200/_2puYaT9_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q7385188"}, "addTags": {"brand": "Ryman", "brand:wikidata": "Q7385188", "brand:wikipedia": "en:Ryman", "name": "Ryman", "shop": "stationery"}, "removeTags": {"brand": "Ryman", "brand:wikidata": "Q7385188", "brand:wikipedia": "en:Ryman", "name": "Ryman", "shop": "stationery"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, + "shop/stationery/Staples": {"name": "Staples", "icon": "fas-paperclip", "imageURL": "https://pbs.twimg.com/profile_images/782920908281438208/1-ohJImq_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q785943"}, "addTags": {"brand": "Staples", "brand:wikidata": "Q785943", "brand:wikipedia": "en:Staples Inc.", "name": "Staples", "shop": "stationery"}, "removeTags": {"brand": "Staples", "brand:wikidata": "Q785943", "brand:wikipedia": "en:Staples Inc.", "name": "Staples", "shop": "stationery"}, "matchScore": 2, "suggestion": true}, + "shop/stationery/Комус": {"name": "Комус", "icon": "fas-paperclip", "imageURL": "https://graph.facebook.com/komusclub/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "stationery", "brand:wikidata": "Q4230314"}, "addTags": {"brand": "Комус", "brand:en": "Komus", "brand:wikidata": "Q4230314", "brand:wikipedia": "en:Komus (company)", "name": "Комус", "name:en": "Komus", "shop": "stationery"}, "removeTags": {"brand": "Комус", "brand:en": "Komus", "brand:wikidata": "Q4230314", "brand:wikipedia": "en:Komus (company)", "name": "Комус", "name:en": "Komus", "shop": "stationery"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "shop/storage_rental/Extra Space Storage": {"name": "Extra Space Storage", "icon": "fas-warehouse", "geometry": ["point", "area"], "tags": {"shop": "storage_rental", "brand:wikidata": "Q5422162"}, "addTags": {"brand": "Extra Space Storage", "brand:wikidata": "Q5422162", "brand:wikipedia": "en:Extra Space Storage", "name": "Extra Space Storage", "shop": "storage_rental"}, "removeTags": {"brand": "Extra Space Storage", "brand:wikidata": "Q5422162", "brand:wikipedia": "en:Extra Space Storage", "name": "Extra Space Storage", "shop": "storage_rental"}, "countryCodes": ["pr", "us"], "matchScore": 2, "suggestion": true}, "shop/storage_rental/Public Storage": {"name": "Public Storage", "icon": "fas-warehouse", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPublic%20Storage%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "storage_rental", "brand:wikidata": "Q1156045"}, "addTags": {"brand": "Public Storage", "brand:wikidata": "Q1156045", "brand:wikipedia": "en:Public Storage", "name": "Public Storage", "shop": "storage_rental"}, "removeTags": {"brand": "Public Storage", "brand:wikidata": "Q1156045", "brand:wikipedia": "en:Public Storage", "name": "Public Storage", "shop": "storage_rental"}, "matchScore": 2, "suggestion": true}, "shop/supermarket/A&O": {"name": "A&O", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "brand:wikidata": "Q3600279"}, "addTags": {"brand": "A&O", "brand:wikidata": "Q3600279", "brand:wikipedia": "it:A&O", "name": "A&O", "shop": "supermarket"}, "removeTags": {"brand": "A&O", "brand:wikidata": "Q3600279", "brand:wikipedia": "it:A&O", "name": "A&O", "shop": "supermarket"}, "countryCodes": ["it"], "matchScore": 2, "suggestion": true}, diff --git a/data/presets/presets/amenity/biergarten.json b/data/presets/presets/amenity/biergarten.json index 3000f4933..c1c8e4a51 100644 --- a/data/presets/presets/amenity/biergarten.json +++ b/data/presets/presets/amenity/biergarten.json @@ -1,5 +1,5 @@ { - "icon": "maki-beer", + "icon": "fas-beer", "fields": [ "name", "address", diff --git a/data/presets/presets/office/notary.json b/data/presets/presets/office/notary.json index 94d82630d..225331b90 100644 --- a/data/presets/presets/office/notary.json +++ b/data/presets/presets/office/notary.json @@ -1,5 +1,5 @@ { - "icon": "maki-suitcase", + "icon": "fas-stamp", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/agrarian.json b/data/presets/presets/shop/agrarian.json index c4bd9843d..750425780 100644 --- a/data/presets/presets/shop/agrarian.json +++ b/data/presets/presets/shop/agrarian.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-tractor", "fields": [ "{shop}", "agrarian" diff --git a/data/presets/presets/shop/alcohol.json b/data/presets/presets/shop/alcohol.json index 3f2690e22..1ba57cb62 100644 --- a/data/presets/presets/shop/alcohol.json +++ b/data/presets/presets/shop/alcohol.json @@ -1,5 +1,5 @@ { - "icon": "maki-alcohol-shop", + "icon": "fas-wine-bottle", "fields": [ "{shop}", "drive_through" diff --git a/data/presets/presets/shop/radiotechnics.json b/data/presets/presets/shop/radiotechnics.json index c2e2b762a..04ac65ff4 100644 --- a/data/presets/presets/shop/radiotechnics.json +++ b/data/presets/presets/shop/radiotechnics.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-microchip", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/stationery.json b/data/presets/presets/shop/stationery.json index 6b35c174c..eba3c3395 100644 --- a/data/presets/presets/shop/stationery.json +++ b/data/presets/presets/shop/stationery.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-paperclip", "geometry": [ "point", "area" diff --git a/data/presets/presets/tourism/information/guidepost.json b/data/presets/presets/tourism/information/guidepost.json index e554d816e..b40bb0063 100644 --- a/data/presets/presets/tourism/information/guidepost.json +++ b/data/presets/presets/tourism/information/guidepost.json @@ -1,5 +1,5 @@ { - "icon": "maki-information", + "icon": "fas-map-signs", "fields": [ "name", "elevation", diff --git a/data/presets/presets/tourism/information/map.json b/data/presets/presets/tourism/information/map.json index c5550938e..fc6259ce6 100644 --- a/data/presets/presets/tourism/information/map.json +++ b/data/presets/presets/tourism/information/map.json @@ -1,5 +1,5 @@ { - "icon": "maki-information", + "icon": "fas-map", "fields": [ "operator", "map_type", diff --git a/data/presets/presets/traffic_sign.json b/data/presets/presets/traffic_sign.json index 444e77e13..423d66e76 100644 --- a/data/presets/presets/traffic_sign.json +++ b/data/presets/presets/traffic_sign.json @@ -1,5 +1,5 @@ { - "icon": "maki-square-stroked", + "icon": "fas-directions", "fields": [ "traffic_sign", "direction" diff --git a/data/taginfo.json b/data/taginfo.json index f9313a140..49af91a9b 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -69,7 +69,7 @@ {"key": "amenity", "value": "bicycle_parking", "description": "🄿 Bicycle Parking", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"}, {"key": "amenity", "value": "bicycle_rental", "description": "🄿 Bicycle Rental", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"}, {"key": "amenity", "value": "bicycle_repair_station", "description": "🄿 Bicycle Repair Tool Stand", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"}, - {"key": "amenity", "value": "biergarten", "description": "🄿 Biergarten", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/beer-15.svg?sanitize=true"}, + {"key": "amenity", "value": "biergarten", "description": "🄿 Biergarten", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-beer.svg?sanitize=true"}, {"key": "amenity", "value": "boat_rental", "description": "🄿 Boat Rental", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/boating.svg?sanitize=true"}, {"key": "amenity", "value": "bureau_de_change", "description": "🄿 Currency Exchange", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"}, {"key": "amenity", "value": "cafe", "description": "🄿 Cafe", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cafe-15.svg?sanitize=true"}, @@ -721,7 +721,7 @@ {"key": "office", "value": "moving_company", "description": "🄿 Moving Company Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-people-carry.svg?sanitize=true"}, {"key": "office", "value": "newspaper", "description": "🄿 Newspaper Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/library-15.svg?sanitize=true"}, {"key": "office", "value": "ngo", "description": "🄿 NGO Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, - {"key": "office", "value": "notary", "description": "🄿 Notary Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, + {"key": "office", "value": "notary", "description": "🄿 Notary Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-stamp.svg?sanitize=true"}, {"key": "office", "value": "political_party", "description": "🄿 Political Party", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"}, {"key": "office", "value": "private_investigator", "description": "🄿 Private Investigator Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-user-secret.svg?sanitize=true"}, {"key": "office", "value": "quango", "description": "🄿 Quasi-NGO Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, @@ -834,8 +834,8 @@ {"key": "shop", "value": "fishmonger", "description": "🄿 Fishmonger (unsearchable), 🄳 ➜ shop=seafood", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "furnace", "description": "🄿 Furnace Store (unsearchable), 🄳 ➜ shop=fireplace", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "vacant", "description": "🄿 Vacant Shop (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, - {"key": "shop", "value": "agrarian", "description": "🄿 Farm Supply Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, - {"key": "shop", "value": "alcohol", "description": "🄿 Liquor Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/alcohol-shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "agrarian", "description": "🄿 Farm Supply Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-tractor.svg?sanitize=true"}, + {"key": "shop", "value": "alcohol", "description": "🄿 Liquor Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-wine-bottle.svg?sanitize=true"}, {"key": "shop", "value": "anime", "description": "🄿 Anime Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-dragon.svg?sanitize=true"}, {"key": "shop", "value": "antiques", "description": "🄿 Antiques Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "appliance", "description": "🄿 Appliance Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, @@ -937,7 +937,7 @@ {"key": "shop", "value": "pet", "description": "🄿 Pet Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dog-park-15.svg?sanitize=true"}, {"key": "shop", "value": "photo", "description": "🄿 Photography Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-camera-retro.svg?sanitize=true"}, {"key": "shop", "value": "pyrotechnics", "description": "🄿 Fireworks Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, - {"key": "shop", "value": "radiotechnics", "description": "🄿 Radio/Electronic Component Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "radiotechnics", "description": "🄿 Radio/Electronic Component Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-microchip.svg?sanitize=true"}, {"key": "shop", "value": "religion", "description": "🄿 Religious Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "scuba_diving", "description": "🄿 Scuba Diving Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"}, {"key": "shop", "value": "seafood", "description": "🄿 Seafood Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, @@ -945,7 +945,7 @@ {"key": "shop", "value": "sewing", "description": "🄿 Sewing Supply Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "shoes", "description": "🄿 Shoe Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shoe-15.svg?sanitize=true"}, {"key": "shop", "value": "sports", "description": "🄿 Sporting Goods Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-futbol.svg?sanitize=true"}, - {"key": "shop", "value": "stationery", "description": "🄿 Stationery Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "stationery", "description": "🄿 Stationery Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-paperclip.svg?sanitize=true"}, {"key": "shop", "value": "storage_rental", "description": "🄿 Storage Rental", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-warehouse.svg?sanitize=true"}, {"key": "shop", "value": "supermarket", "description": "🄿 Supermarket", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/grocery-15.svg?sanitize=true"}, {"key": "shop", "value": "tailor", "description": "🄿 Tailor", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/clothing-store-15.svg?sanitize=true"}, @@ -988,8 +988,8 @@ {"key": "tourism", "value": "hotel", "description": "🄿 Hotel", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-concierge-bell.svg?sanitize=true"}, {"key": "tourism", "value": "information", "description": "🄿 Information", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"}, {"key": "information", "value": "board", "description": "🄿 Information Board", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"}, - {"key": "information", "value": "guidepost", "description": "🄿 Guidepost", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"}, - {"key": "information", "value": "map", "description": "🄿 Map", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"}, + {"key": "information", "value": "guidepost", "description": "🄿 Guidepost", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-map-signs.svg?sanitize=true"}, + {"key": "information", "value": "map", "description": "🄿 Map", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-map.svg?sanitize=true"}, {"key": "information", "value": "office", "description": "🄿 Tourist Information Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"}, {"key": "information", "value": "route_marker", "description": "🄿 Trail Marker", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"}, {"key": "tourism", "value": "motel", "description": "🄿 Motel", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"}, diff --git a/svg/fontawesome/fas-beer.svg b/svg/fontawesome/fas-beer.svg new file mode 100644 index 000000000..34ec2a382 --- /dev/null +++ b/svg/fontawesome/fas-beer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-directions.svg b/svg/fontawesome/fas-directions.svg new file mode 100644 index 000000000..6c05f379d --- /dev/null +++ b/svg/fontawesome/fas-directions.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-map-signs.svg b/svg/fontawesome/fas-map-signs.svg new file mode 100644 index 000000000..3d77e618f --- /dev/null +++ b/svg/fontawesome/fas-map-signs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-map.svg b/svg/fontawesome/fas-map.svg new file mode 100644 index 000000000..f4dc1cfcd --- /dev/null +++ b/svg/fontawesome/fas-map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-microchip.svg b/svg/fontawesome/fas-microchip.svg new file mode 100644 index 000000000..b48d675e4 --- /dev/null +++ b/svg/fontawesome/fas-microchip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-paperclip.svg b/svg/fontawesome/fas-paperclip.svg new file mode 100644 index 000000000..2ab86b80b --- /dev/null +++ b/svg/fontawesome/fas-paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-stamp.svg b/svg/fontawesome/fas-stamp.svg new file mode 100644 index 000000000..87eccc4a7 --- /dev/null +++ b/svg/fontawesome/fas-stamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-tractor.svg b/svg/fontawesome/fas-tractor.svg new file mode 100644 index 000000000..e85bd6f46 --- /dev/null +++ b/svg/fontawesome/fas-tractor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-wine-bottle.svg b/svg/fontawesome/fas-wine-bottle.svg new file mode 100644 index 000000000..f35496c08 --- /dev/null +++ b/svg/fontawesome/fas-wine-bottle.svg @@ -0,0 +1 @@ + \ No newline at end of file From 9c6974c8f4933936877a30d3bbef13924cc15b74 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Mon, 8 Apr 2019 14:11:55 -0700 Subject: [PATCH 45/50] Add more preset icons --- data/presets/presets.json | 50 +++++++++---------- .../presets/amenity/payment_terminal.json | 2 +- .../amenity/vending_machine/newspapers.json | 2 +- data/presets/presets/office/newspaper.json | 2 +- data/presets/presets/shop/chemist.json | 2 +- data/presets/presets/shop/fabric.json | 2 +- data/presets/presets/shop/newsagent.json | 2 +- data/taginfo.json | 12 ++--- svg/fontawesome/far-credit-card.svg | 1 + svg/fontawesome/far-newspaper.svg | 1 + svg/fontawesome/fas-newspaper.svg | 1 + svg/fontawesome/fas-tape.svg | 1 + 12 files changed, 41 insertions(+), 37 deletions(-) create mode 100644 svg/fontawesome/far-credit-card.svg create mode 100644 svg/fontawesome/far-newspaper.svg create mode 100644 svg/fontawesome/fas-newspaper.svg create mode 100644 svg/fontawesome/fas-tape.svg diff --git a/data/presets/presets.json b/data/presets/presets.json index 2c6ab2351..1ab2345e0 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -129,7 +129,7 @@ "amenity/parking": {"icon": "maki-car", "fields": ["operator", "parking", "capacity", "access_simple", "fee", "surface"], "moreFields": ["name", "supervised", "park_ride", "maxstay", "payment_multi", "address", "website", "phone", "email", "fax", "wheelchair", "covered"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "parking"}, "terms": ["automobile parking", "car lot", "car parking", "rv parking", "truck parking", "vehicle parking"], "name": "Parking Lot"}, "amenity/parking/multi-storey": {"icon": "maki-car", "fields": ["{amenity/parking}", "building", "levels", "height"], "geometry": ["area"], "tags": {"amenity": "parking", "parking": "multi-storey"}, "addTags": {"building": "parking", "amenity": "parking", "parking": "multi-storey"}, "removeTags": {"building": "parking", "amenity": "parking", "parking": "multi-storey"}, "reference": {"key": "parking", "value": "multi-storey"}, "terms": ["car", "indoor parking", "multistorey car park", "parkade", "parking building", "parking deck", "parking garage", "parking ramp", "parking structure"], "name": "Multilevel Parking Garage"}, "amenity/payment_centre": {"icon": "maki-bank", "fields": ["name", "brand", "address", "building_area", "opening_hours", "payment_multi"], "moreFields": ["currency_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["check", "tax pay", "bill pay", "currency", "finance", "cash", "money"], "tags": {"amenity": "payment_centre"}, "name": "Payment Center"}, - "amenity/payment_terminal": {"icon": "maki-bank", "fields": ["name", "brand", "address", "opening_hours", "payment_multi"], "moreFields": ["currency_multi", "wheelchair"], "geometry": ["point"], "terms": ["interactive kiosk", "ekiosk", "atm", "bill pay", "tax pay", "phone pay", "finance", "cash", "money transfer", "card"], "tags": {"amenity": "payment_terminal"}, "name": "Payment Terminal"}, + "amenity/payment_terminal": {"icon": "far-credit-card", "fields": ["name", "brand", "address", "opening_hours", "payment_multi"], "moreFields": ["currency_multi", "wheelchair"], "geometry": ["point"], "terms": ["interactive kiosk", "ekiosk", "atm", "bill pay", "tax pay", "phone pay", "finance", "cash", "money transfer", "card"], "tags": {"amenity": "payment_terminal"}, "name": "Payment Terminal"}, "amenity/pharmacy": {"icon": "maki-pharmacy", "fields": ["name", "operator", "address", "building_area", "drive_through", "dispensing"], "moreFields": ["opening_hours", "payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "healthcare": "pharmacy"}, "removeTags": {"amenity": "pharmacy", "healthcare": "pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "terms": ["apothecary", "drug store", "drugstore", "med*", "prescription"], "name": "Pharmacy Counter"}, "amenity/photo_booth": {"icon": "fas-person-booth", "fields": ["name", "operator", "payment_multi", "wheelchair"], "geometry": ["point", "area"], "terms": ["photobooth", "photo", "booth", "kiosk", "camera"], "tags": {"amenity": "photo_booth"}, "name": "Photo Booth"}, "amenity/place_of_worship": {"icon": "maki-place-of-worship", "fields": ["name", "religion", "denomination", "address", "building_area", "service_times"], "moreFields": ["air_conditioning", "opening_hours", "internet_access", "internet_access/ssid", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["abbey", "basilica", "bethel", "cathedral", "chancel", "chantry", "chapel", "church", "fold", "house of God", "house of prayer", "house of worship", "minster", "mission", "mosque", "oratory", "parish", "sacellum", "sanctuary", "shrine", "synagogue", "tabernacle", "temple"], "tags": {"amenity": "place_of_worship"}, "name": "Place of Worship"}, @@ -211,7 +211,7 @@ "amenity/vending_machine/food": {"icon": "temaki-vending_machine", "geometry": ["point"], "terms": ["food"], "tags": {"amenity": "vending_machine", "vending": "food"}, "reference": {"key": "vending", "value": "food"}, "name": "Food Vending Machine"}, "amenity/vending_machine/fuel": {"icon": "maki-fuel", "geometry": ["point"], "terms": ["petrol", "fuel", "gasoline", "propane", "diesel", "lng", "cng", "biodiesel"], "tags": {"amenity": "vending_machine", "vending": "fuel"}, "reference": {"key": "vending", "value": "fuel"}, "name": "Gas Pump", "matchScore": 0.5}, "amenity/vending_machine/ice_cream": {"icon": "temaki-vending_machine", "geometry": ["point"], "terms": ["chocolate", "ice cream", "frozen", "popsicle", "vanilla"], "tags": {"amenity": "vending_machine", "vending": "ice_cream"}, "reference": {"key": "vending", "value": "ice_cream"}, "name": "Ice Cream Vending Machine"}, - "amenity/vending_machine/newspapers": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "fee", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["newspaper"], "tags": {"amenity": "vending_machine", "vending": "newspapers"}, "reference": {"key": "vending", "value": "newspapers"}, "name": "Newspaper Vending Machine"}, + "amenity/vending_machine/newspapers": {"icon": "far-newspaper", "fields": ["vending", "operator", "fee", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["newspaper"], "tags": {"amenity": "vending_machine", "vending": "newspapers"}, "reference": {"key": "vending", "value": "newspapers"}, "name": "Newspaper Vending Machine"}, "amenity/vending_machine/parcel_pickup_dropoff": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["mail", "parcel", "pickup"], "tags": {"amenity": "vending_machine", "vending": "parcel_pickup;parcel_mail_in"}, "reference": {"key": "vending", "value": "parcel_pickup;parcel_mail_in"}, "name": "Parcel Pickup/Dropoff Locker"}, "amenity/vending_machine/parcel_pickup": {"icon": "temaki-vending_machine", "fields": ["vending", "operator"], "geometry": ["point"], "terms": ["amazon", "locker", "mail", "parcel", "pickup"], "tags": {"amenity": "vending_machine", "vending": "parcel_pickup"}, "reference": {"key": "vending", "value": "parcel_pickup"}, "name": "Parcel Pickup Locker"}, "amenity/vending_machine/parking_tickets": {"icon": "temaki-vending_machine", "geometry": ["point"], "terms": ["parking", "ticket"], "tags": {"amenity": "vending_machine", "vending": "parking_tickets"}, "reference": {"key": "vending", "value": "parking_tickets"}, "matchScore": 0.94, "name": "Parking Ticket Vending Machine"}, @@ -745,7 +745,7 @@ "office/lawyer": {"icon": "fas-balance-scale", "geometry": ["point", "area"], "tags": {"office": "lawyer"}, "terms": [], "name": "Law Office"}, "office/lawyer/notary": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "lawyer", "lawyer": "notary"}, "reference": {"key": "office", "value": "notary"}, "searchable": false, "name": "Notary Office"}, "office/moving_company": {"icon": "fas-people-carry", "geometry": ["point", "area"], "tags": {"office": "moving_company"}, "terms": ["relocation"], "name": "Moving Company Office"}, - "office/newspaper": {"icon": "maki-library", "geometry": ["point", "area"], "tags": {"office": "newspaper"}, "terms": [], "name": "Newspaper Office"}, + "office/newspaper": {"icon": "fas-newspaper", "geometry": ["point", "area"], "tags": {"office": "newspaper"}, "terms": [], "name": "Newspaper Office"}, "office/ngo": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "ngo"}, "terms": ["ngo", "non government", "non-government", "organization", "organisation"], "name": "NGO Office"}, "office/notary": {"icon": "fas-stamp", "geometry": ["point", "area"], "tags": {"office": "notary"}, "terms": ["clerk", "deeds", "estate", "signature", "wills"], "name": "Notary Office"}, "office/political_party": {"icon": "maki-town-hall", "geometry": ["point", "area"], "tags": {"office": "political_party"}, "terms": [], "name": "Political Party"}, @@ -920,7 +920,7 @@ "shop/catalogue": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "catalogue"}, "name": "Catalog Shop"}, "shop/charity": {"icon": "maki-shop", "fields": ["{shop}", "second_hand"], "geometry": ["point", "area"], "terms": ["thrift", "op shop", "nonprofit"], "tags": {"shop": "charity"}, "name": "Charity Store"}, "shop/cheese": {"icon": "fas-cheese", "geometry": ["point", "area"], "tags": {"shop": "cheese"}, "name": "Cheese Store"}, - "shop/chemist": {"icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "chemist"}, "terms": ["apothecary", "beauty", "drug store", "drugstore", "gift", "hair", "med*", "pharmacy", "prescription", "tooth"], "name": "Drugstore"}, + "shop/chemist": {"icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "chemist"}, "terms": ["apothecary", "beauty", "drug store", "drugstore", "gift", "hair", "med*", "pharmacy", "prescription", "tooth"], "name": "Drugstore"}, "shop/chocolate": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "chocolate"}, "terms": ["cocoa"], "name": "Chocolate Store"}, "shop/clothes": {"icon": "maki-clothing-store", "fields": ["name", "clothes", "{shop}"], "geometry": ["point", "area"], "tags": {"shop": "clothes"}, "terms": ["blouses", "boutique", "bras", "clothes", "dresses", "fashion", "pants", "shirts", "shorts", "skirts", "slacks", "socks", "suits", "underwear"], "name": "Clothing Store"}, "shop/clothes/underwear": {"icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "clothes": "underwear"}, "reference": {"key": "clothes", "value": "underwear"}, "terms": ["boutique", "bras", "brassieres", "briefs", "boxers", "fashion", "lingerie", "panties", "slips", "socks", "stockings", "underclothes", "undergarments", "underpants", "undies"], "name": "Underwear Store"}, @@ -942,7 +942,7 @@ "shop/electronics": {"icon": "fas-plug", "geometry": ["point", "area"], "terms": ["appliance", "audio", "blueray", "camera", "computer", "dvd", "home theater", "radio", "speaker", "tv", "video"], "tags": {"shop": "electronics"}, "name": "Electronics Store"}, "shop/erotic": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["sex", "porn"], "tags": {"shop": "erotic"}, "name": "Erotic Store"}, "shop/erotic/lgbtq": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["sex", "porn"], "tags": {"shop": "erotic", "lgbtq": "primary"}, "name": "LGBTQ+ Erotic Store"}, - "shop/fabric": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["sew"], "tags": {"shop": "fabric"}, "name": "Fabric Store"}, + "shop/fabric": {"icon": "fas-tape", "geometry": ["point", "area"], "terms": ["sew"], "tags": {"shop": "fabric"}, "name": "Fabric Store"}, "shop/farm": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["farm shop", "farm stand"], "tags": {"shop": "farm"}, "name": "Produce Stand"}, "shop/fireplace": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["fireplace", "stove", "masonry heater"], "tags": {"shop": "fireplace"}, "name": "Fireplace Store"}, "shop/fishing": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "fishing"}, "terms": ["bait", "fishing line", "flies", "fly", "lure", "reel", "rod", "tackle"], "name": "Fishing Shop"}, @@ -982,7 +982,7 @@ "shop/motorcycle": {"icon": "fas-motorcycle", "fields": ["name", "brand", "{shop}"], "geometry": ["point", "area"], "terms": ["bike"], "tags": {"shop": "motorcycle"}, "name": "Motorcycle Dealership"}, "shop/music": {"icon": "fas-compact-disc", "geometry": ["point", "area"], "terms": ["tape casettes", "CDs", "compact discs", "vinyl records"], "tags": {"shop": "music"}, "name": "Music Store"}, "shop/musical_instrument": {"icon": "fas-guitar", "geometry": ["point", "area"], "terms": ["guitar"], "tags": {"shop": "musical_instrument"}, "name": "Musical Instrument Store"}, - "shop/newsagent": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "newsagent"}, "name": "Newspaper/Magazine Shop"}, + "shop/newsagent": {"icon": "fas-newspaper", "geometry": ["point", "area"], "tags": {"shop": "newsagent"}, "name": "Newspaper/Magazine Shop"}, "shop/nutrition_supplements": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "nutrition_supplements"}, "name": "Nutrition Supplements Store"}, "shop/optician": {"icon": "maki-optician", "geometry": ["point", "area"], "terms": ["eye", "glasses"], "tags": {"shop": "optician"}, "name": "Optician"}, "shop/organic": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "organic": "only"}, "name": "Organic Goods Store"}, @@ -2179,9 +2179,9 @@ "amenity/money_transfer/Western Union": {"name": "Western Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/WesternUnion/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "money_transfer", "brand:wikidata": "Q861042"}, "addTags": {"amenity": "money_transfer", "brand": "Western Union", "brand:wikidata": "Q861042", "brand:wikipedia": "en:Western Union", "name": "Western Union"}, "removeTags": {"amenity": "money_transfer", "brand": "Western Union", "brand:wikidata": "Q861042", "brand:wikipedia": "en:Western Union", "name": "Western Union"}, "matchScore": 2, "suggestion": true}, "amenity/payment_centre/Abitab": {"name": "Abitab", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Abitaboficial/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "payment_centre", "brand:wikidata": "Q16488129"}, "addTags": {"amenity": "payment_centre", "brand": "Abitab", "brand:wikidata": "Q16488129", "brand:wikipedia": "es:Abitab", "name": "Abitab"}, "removeTags": {"amenity": "payment_centre", "brand": "Abitab", "brand:wikidata": "Q16488129", "brand:wikipedia": "es:Abitab", "name": "Abitab"}, "countryCodes": ["uy"], "matchScore": 2, "suggestion": true}, "amenity/payment_centre/Rapipago": {"name": "Rapipago", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Rapipago/picture?type=large", "geometry": ["point", "area"], "tags": {"amenity": "payment_centre", "brand:wikidata": "Q6100413"}, "addTags": {"amenity": "payment_centre", "brand": "Rapipago", "brand:wikidata": "Q6100413", "brand:wikipedia": "es:Rapipago", "name": "Rapipago"}, "removeTags": {"amenity": "payment_centre", "brand": "Rapipago", "brand:wikidata": "Q6100413", "brand:wikipedia": "es:Rapipago", "name": "Rapipago"}, "countryCodes": ["ar"], "matchScore": 2, "suggestion": true}, - "amenity/payment_terminal/Qiwi": {"name": "Qiwi", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/qiwirussia/picture?type=large", "geometry": ["point"], "tags": {"amenity": "payment_terminal", "brand:wikidata": "Q4047736"}, "addTags": {"amenity": "payment_terminal", "brand": "Qiwi", "brand:wikidata": "Q4047736", "brand:wikipedia": "en:Qiwi", "name": "Qiwi"}, "removeTags": {"amenity": "payment_terminal", "brand": "Qiwi", "brand:wikidata": "Q4047736", "brand:wikipedia": "en:Qiwi", "name": "Qiwi"}, "matchScore": 2, "suggestion": true}, - "amenity/payment_terminal/ПриватБанк": {"name": "ПриватБанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/privatbank/picture?type=large", "geometry": ["point"], "tags": {"amenity": "payment_terminal", "brand:wikidata": "Q1515015"}, "addTags": {"amenity": "payment_terminal", "brand": "ПриватБанк", "brand:wikidata": "Q1515015", "brand:wikipedia": "en:PrivatBank", "name": "ПриватБанк"}, "removeTags": {"amenity": "payment_terminal", "brand": "ПриватБанк", "brand:wikidata": "Q1515015", "brand:wikipedia": "en:PrivatBank", "name": "ПриватБанк"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, - "amenity/payment_terminal/Элекснет": {"name": "Элекснет", "icon": "maki-bank", "geometry": ["point"], "tags": {"amenity": "payment_terminal", "brand:wikidata": "Q4530795"}, "addTags": {"amenity": "payment_terminal", "brand": "Элекснет", "brand:wikidata": "Q4530795", "brand:wikipedia": "ru:Элекснет", "name": "Элекснет"}, "removeTags": {"amenity": "payment_terminal", "brand": "Элекснет", "brand:wikidata": "Q4530795", "brand:wikipedia": "ru:Элекснет", "name": "Элекснет"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, + "amenity/payment_terminal/Qiwi": {"name": "Qiwi", "icon": "far-credit-card", "imageURL": "https://graph.facebook.com/qiwirussia/picture?type=large", "geometry": ["point"], "tags": {"amenity": "payment_terminal", "brand:wikidata": "Q4047736"}, "addTags": {"amenity": "payment_terminal", "brand": "Qiwi", "brand:wikidata": "Q4047736", "brand:wikipedia": "en:Qiwi", "name": "Qiwi"}, "removeTags": {"amenity": "payment_terminal", "brand": "Qiwi", "brand:wikidata": "Q4047736", "brand:wikipedia": "en:Qiwi", "name": "Qiwi"}, "matchScore": 2, "suggestion": true}, + "amenity/payment_terminal/ПриватБанк": {"name": "ПриватБанк", "icon": "far-credit-card", "imageURL": "https://graph.facebook.com/privatbank/picture?type=large", "geometry": ["point"], "tags": {"amenity": "payment_terminal", "brand:wikidata": "Q1515015"}, "addTags": {"amenity": "payment_terminal", "brand": "ПриватБанк", "brand:wikidata": "Q1515015", "brand:wikipedia": "en:PrivatBank", "name": "ПриватБанк"}, "removeTags": {"amenity": "payment_terminal", "brand": "ПриватБанк", "brand:wikidata": "Q1515015", "brand:wikipedia": "en:PrivatBank", "name": "ПриватБанк"}, "countryCodes": ["ua"], "matchScore": 2, "suggestion": true}, + "amenity/payment_terminal/Элекснет": {"name": "Элекснет", "icon": "far-credit-card", "geometry": ["point"], "tags": {"amenity": "payment_terminal", "brand:wikidata": "Q4530795"}, "addTags": {"amenity": "payment_terminal", "brand": "Элекснет", "brand:wikidata": "Q4530795", "brand:wikipedia": "ru:Элекснет", "name": "Элекснет"}, "removeTags": {"amenity": "payment_terminal", "brand": "Элекснет", "brand:wikidata": "Q4530795", "brand:wikipedia": "ru:Элекснет", "name": "Элекснет"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/36,6": {"name": "36,6", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q226889"}, "addTags": {"amenity": "pharmacy", "brand": "36,6", "brand:wikidata": "Q226889", "brand:wikipedia": "ru:36,6 (аптечная сеть)", "healthcare": "pharmacy", "name": "36,6"}, "removeTags": {"amenity": "pharmacy", "brand": "36,6", "brand:wikidata": "Q226889", "brand:wikipedia": "ru:36,6 (аптечная сеть)", "healthcare": "pharmacy", "name": "36,6"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ru"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Apotek Hjärtat": {"name": "Apotek Hjärtat", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q10416114"}, "addTags": {"amenity": "pharmacy", "brand": "Apotek Hjärtat", "brand:wikidata": "Q10416114", "brand:wikipedia": "sv:Apotek Hjärtat", "healthcare": "pharmacy", "name": "Apotek Hjärtat"}, "removeTags": {"amenity": "pharmacy", "brand": "Apotek Hjärtat", "brand:wikidata": "Q10416114", "brand:wikipedia": "sv:Apotek Hjärtat", "healthcare": "pharmacy", "name": "Apotek Hjärtat"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["se"], "matchScore": 2, "suggestion": true}, "amenity/pharmacy/Bartell Drugs": {"name": "Bartell Drugs", "icon": "maki-pharmacy", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBartell%20Drugs%20(logo).gif&width=100", "geometry": ["point", "area"], "tags": {"amenity": "pharmacy", "brand:wikidata": "Q4865152"}, "addTags": {"amenity": "pharmacy", "brand": "Bartell Drugs", "brand:wikidata": "Q4865152", "brand:wikipedia": "en:Bartell Drugs", "healthcare": "pharmacy", "name": "Bartell Drugs"}, "removeTags": {"amenity": "pharmacy", "brand": "Bartell Drugs", "brand:wikidata": "Q4865152", "brand:wikipedia": "en:Bartell Drugs", "healthcare": "pharmacy", "name": "Bartell Drugs"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, @@ -2684,17 +2684,17 @@ "shop/charity/Scope": {"name": "Scope", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1098320113835610113/WisJatSW_bigger.png", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q7434435"}, "addTags": {"brand": "Scope", "brand:wikidata": "Q7434435", "brand:wikipedia": "en:Scope (charity)", "name": "Scope", "shop": "charity"}, "removeTags": {"brand": "Scope", "brand:wikidata": "Q7434435", "brand:wikipedia": "en:Scope (charity)", "name": "Scope", "shop": "charity"}, "countryCodes": ["gb"], "matchScore": 2, "suggestion": true}, "shop/charity/Sue Ryder": {"name": "Sue Ryder", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1103043966751133698/BJk80NfX_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q7634271"}, "addTags": {"brand": "Sue Ryder", "brand:wikidata": "Q7634271", "brand:wikipedia": "en:Sue Ryder (charity)", "name": "Sue Ryder", "shop": "charity"}, "removeTags": {"brand": "Sue Ryder", "brand:wikidata": "Q7634271", "brand:wikipedia": "en:Sue Ryder (charity)", "name": "Sue Ryder", "shop": "charity"}, "matchScore": 2, "suggestion": true}, "shop/charity/The Salvation Army": {"name": "The Salvation Army", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1002949313830371328/7sdeOFFk_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "charity", "brand:wikidata": "Q188307"}, "addTags": {"brand": "The Salvation Army", "brand:wikidata": "Q188307", "brand:wikipedia": "en:The Salvation Army", "name": "The Salvation Army", "shop": "charity"}, "removeTags": {"brand": "The Salvation Army", "brand:wikidata": "Q188307", "brand:wikipedia": "en:The Salvation Army", "name": "The Salvation Army", "shop": "charity"}, "matchScore": 2, "suggestion": true}, - "shop/chemist/Bipa": {"name": "Bipa", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBipa%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q864933"}, "addTags": {"brand": "Bipa", "brand:wikidata": "Q864933", "brand:wikipedia": "de:Bipa", "name": "Bipa", "shop": "chemist"}, "removeTags": {"brand": "Bipa", "brand:wikidata": "Q864933", "brand:wikipedia": "de:Bipa", "name": "Bipa", "shop": "chemist"}, "countryCodes": ["at", "hr"], "matchScore": 2, "suggestion": true}, - "shop/chemist/Budnikowsky": {"name": "Budnikowsky", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BUDNI/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q1001516"}, "addTags": {"brand": "Budnikowsky", "brand:wikidata": "Q1001516", "brand:wikipedia": "de:Budnikowsky", "name": "Budnikowsky", "shop": "chemist"}, "removeTags": {"brand": "Budnikowsky", "brand:wikidata": "Q1001516", "brand:wikipedia": "de:Budnikowsky", "name": "Budnikowsky", "shop": "chemist"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, - "shop/chemist/Drogeria Natura": {"name": "Drogeria Natura", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q9212032"}, "addTags": {"brand": "Drogeria Natura", "brand:wikidata": "Q9212032", "brand:wikipedia": "pl:Drogerie Natura", "name": "Drogeria Natura", "shop": "chemist"}, "removeTags": {"brand": "Drogeria Natura", "brand:wikidata": "Q9212032", "brand:wikipedia": "pl:Drogerie Natura", "name": "Drogeria Natura", "shop": "chemist"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/chemist/Etos": {"name": "Etos", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FEtos%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q2609459"}, "addTags": {"brand": "Etos", "brand:wikidata": "Q2609459", "brand:wikipedia": "en:Etos", "name": "Etos", "shop": "chemist"}, "removeTags": {"brand": "Etos", "brand:wikidata": "Q2609459", "brand:wikipedia": "en:Etos", "name": "Etos", "shop": "chemist"}, "matchScore": 2, "suggestion": true}, - "shop/chemist/Kruidvat": {"name": "Kruidvat", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKruidvat%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q2226366"}, "addTags": {"brand": "Kruidvat", "brand:wikidata": "Q2226366", "brand:wikipedia": "en:Kruidvat", "name": "Kruidvat", "shop": "chemist"}, "removeTags": {"brand": "Kruidvat", "brand:wikidata": "Q2226366", "brand:wikipedia": "en:Kruidvat", "name": "Kruidvat", "shop": "chemist"}, "matchScore": 2, "suggestion": true}, - "shop/chemist/Matas": {"name": "Matas", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q6786143"}, "addTags": {"brand": "Matas", "brand:wikidata": "Q6786143", "brand:wikipedia": "en:Matas (drug store)", "name": "Matas", "shop": "chemist"}, "removeTags": {"brand": "Matas", "brand:wikidata": "Q6786143", "brand:wikipedia": "en:Matas (drug store)", "name": "Matas", "shop": "chemist"}, "countryCodes": ["dk"], "matchScore": 2, "suggestion": true}, - "shop/chemist/Rossmann": {"name": "Rossmann", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/rossmann.gmbh/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q316004"}, "addTags": {"brand": "Rossmann", "brand:wikidata": "Q316004", "brand:wikipedia": "de:Dirk Rossmann GmbH", "name": "Rossmann", "shop": "chemist"}, "removeTags": {"brand": "Rossmann", "brand:wikidata": "Q316004", "brand:wikipedia": "de:Dirk Rossmann GmbH", "name": "Rossmann", "shop": "chemist"}, "matchScore": 2, "suggestion": true}, - "shop/chemist/Teta": {"name": "Teta", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q20860823"}, "addTags": {"brand": "Teta", "brand:wikidata": "Q20860823", "brand:wikipedia": "cs:Teta drogerie", "name": "Teta", "shop": "chemist"}, "removeTags": {"brand": "Teta", "brand:wikidata": "Q20860823", "brand:wikipedia": "cs:Teta drogerie", "name": "Teta", "shop": "chemist"}, "matchScore": 2, "suggestion": true}, - "shop/chemist/Trekpleister": {"name": "Trekpleister", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTrekpleister%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q2551576"}, "addTags": {"brand": "Trekpleister", "brand:wikidata": "Q2551576", "brand:wikipedia": "nl:Trekpleister (drogisterij)", "name": "Trekpleister", "shop": "chemist"}, "removeTags": {"brand": "Trekpleister", "brand:wikidata": "Q2551576", "brand:wikipedia": "nl:Trekpleister (drogisterij)", "name": "Trekpleister", "shop": "chemist"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, - "shop/chemist/dm": {"name": "dm", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/dm.Deutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q266572"}, "addTags": {"brand": "dm", "brand:wikidata": "Q266572", "brand:wikipedia": "en:Dm-drogerie markt", "name": "dm", "shop": "chemist"}, "removeTags": {"brand": "dm", "brand:wikidata": "Q266572", "brand:wikipedia": "en:Dm-drogerie markt", "name": "dm", "shop": "chemist"}, "countryCodes": ["at", "ba", "bg", "cz", "de", "hr", "hu", "it", "mk", "ro", "rs", "si", "sk"], "matchScore": 2, "suggestion": true}, - "shop/chemist/康是美": {"name": "康是美", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q11063876"}, "addTags": {"brand": "康是美", "brand:wikidata": "Q11063876", "brand:wikipedia": "zh:康是美藥妝店", "name": "康是美", "shop": "chemist"}, "removeTags": {"brand": "康是美", "brand:wikidata": "Q11063876", "brand:wikipedia": "zh:康是美藥妝店", "name": "康是美", "shop": "chemist"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, + "shop/chemist/Bipa": {"name": "Bipa", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBipa%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q864933"}, "addTags": {"brand": "Bipa", "brand:wikidata": "Q864933", "brand:wikipedia": "de:Bipa", "name": "Bipa", "shop": "chemist"}, "removeTags": {"brand": "Bipa", "brand:wikidata": "Q864933", "brand:wikipedia": "de:Bipa", "name": "Bipa", "shop": "chemist"}, "countryCodes": ["at", "hr"], "matchScore": 2, "suggestion": true}, + "shop/chemist/Budnikowsky": {"name": "Budnikowsky", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/BUDNI/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q1001516"}, "addTags": {"brand": "Budnikowsky", "brand:wikidata": "Q1001516", "brand:wikipedia": "de:Budnikowsky", "name": "Budnikowsky", "shop": "chemist"}, "removeTags": {"brand": "Budnikowsky", "brand:wikidata": "Q1001516", "brand:wikipedia": "de:Budnikowsky", "name": "Budnikowsky", "shop": "chemist"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, + "shop/chemist/Drogeria Natura": {"name": "Drogeria Natura", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q9212032"}, "addTags": {"brand": "Drogeria Natura", "brand:wikidata": "Q9212032", "brand:wikipedia": "pl:Drogerie Natura", "name": "Drogeria Natura", "shop": "chemist"}, "removeTags": {"brand": "Drogeria Natura", "brand:wikidata": "Q9212032", "brand:wikipedia": "pl:Drogerie Natura", "name": "Drogeria Natura", "shop": "chemist"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/chemist/Etos": {"name": "Etos", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FEtos%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q2609459"}, "addTags": {"brand": "Etos", "brand:wikidata": "Q2609459", "brand:wikipedia": "en:Etos", "name": "Etos", "shop": "chemist"}, "removeTags": {"brand": "Etos", "brand:wikidata": "Q2609459", "brand:wikipedia": "en:Etos", "name": "Etos", "shop": "chemist"}, "matchScore": 2, "suggestion": true}, + "shop/chemist/Kruidvat": {"name": "Kruidvat", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKruidvat%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q2226366"}, "addTags": {"brand": "Kruidvat", "brand:wikidata": "Q2226366", "brand:wikipedia": "en:Kruidvat", "name": "Kruidvat", "shop": "chemist"}, "removeTags": {"brand": "Kruidvat", "brand:wikidata": "Q2226366", "brand:wikipedia": "en:Kruidvat", "name": "Kruidvat", "shop": "chemist"}, "matchScore": 2, "suggestion": true}, + "shop/chemist/Matas": {"name": "Matas", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q6786143"}, "addTags": {"brand": "Matas", "brand:wikidata": "Q6786143", "brand:wikipedia": "en:Matas (drug store)", "name": "Matas", "shop": "chemist"}, "removeTags": {"brand": "Matas", "brand:wikidata": "Q6786143", "brand:wikipedia": "en:Matas (drug store)", "name": "Matas", "shop": "chemist"}, "countryCodes": ["dk"], "matchScore": 2, "suggestion": true}, + "shop/chemist/Rossmann": {"name": "Rossmann", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/rossmann.gmbh/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q316004"}, "addTags": {"brand": "Rossmann", "brand:wikidata": "Q316004", "brand:wikipedia": "de:Dirk Rossmann GmbH", "name": "Rossmann", "shop": "chemist"}, "removeTags": {"brand": "Rossmann", "brand:wikidata": "Q316004", "brand:wikipedia": "de:Dirk Rossmann GmbH", "name": "Rossmann", "shop": "chemist"}, "matchScore": 2, "suggestion": true}, + "shop/chemist/Teta": {"name": "Teta", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q20860823"}, "addTags": {"brand": "Teta", "brand:wikidata": "Q20860823", "brand:wikipedia": "cs:Teta drogerie", "name": "Teta", "shop": "chemist"}, "removeTags": {"brand": "Teta", "brand:wikidata": "Q20860823", "brand:wikipedia": "cs:Teta drogerie", "name": "Teta", "shop": "chemist"}, "matchScore": 2, "suggestion": true}, + "shop/chemist/Trekpleister": {"name": "Trekpleister", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTrekpleister%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q2551576"}, "addTags": {"brand": "Trekpleister", "brand:wikidata": "Q2551576", "brand:wikipedia": "nl:Trekpleister (drogisterij)", "name": "Trekpleister", "shop": "chemist"}, "removeTags": {"brand": "Trekpleister", "brand:wikidata": "Q2551576", "brand:wikipedia": "nl:Trekpleister (drogisterij)", "name": "Trekpleister", "shop": "chemist"}, "countryCodes": ["nl"], "matchScore": 2, "suggestion": true}, + "shop/chemist/dm": {"name": "dm", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/dm.Deutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q266572"}, "addTags": {"brand": "dm", "brand:wikidata": "Q266572", "brand:wikipedia": "en:Dm-drogerie markt", "name": "dm", "shop": "chemist"}, "removeTags": {"brand": "dm", "brand:wikidata": "Q266572", "brand:wikipedia": "en:Dm-drogerie markt", "name": "dm", "shop": "chemist"}, "countryCodes": ["at", "ba", "bg", "cz", "de", "hr", "hu", "it", "mk", "ro", "rs", "si", "sk"], "matchScore": 2, "suggestion": true}, + "shop/chemist/康是美": {"name": "康是美", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "chemist", "brand:wikidata": "Q11063876"}, "addTags": {"brand": "康是美", "brand:wikidata": "Q11063876", "brand:wikipedia": "zh:康是美藥妝店", "name": "康是美", "shop": "chemist"}, "removeTags": {"brand": "康是美", "brand:wikidata": "Q11063876", "brand:wikipedia": "zh:康是美藥妝店", "name": "康是美", "shop": "chemist"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "shop/chocolate/Cacau Show": {"name": "Cacau Show", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "chocolate", "brand:wikidata": "Q9671713"}, "addTags": {"brand": "Cacau Show", "brand:wikidata": "Q9671713", "brand:wikipedia": "en:Cacau show", "name": "Cacau Show", "shop": "chocolate"}, "removeTags": {"brand": "Cacau Show", "brand:wikidata": "Q9671713", "brand:wikipedia": "en:Cacau show", "name": "Cacau Show", "shop": "chocolate"}, "countryCodes": ["br"], "matchScore": 2, "suggestion": true}, "shop/chocolate/Leonidas": {"name": "Leonidas", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "chocolate", "brand:wikidata": "Q80335"}, "addTags": {"brand": "Leonidas", "brand:wikidata": "Q80335", "brand:wikipedia": "en:Leonidas (chocolate maker)", "name": "Leonidas", "shop": "chocolate"}, "removeTags": {"brand": "Leonidas", "brand:wikidata": "Q80335", "brand:wikipedia": "en:Leonidas (chocolate maker)", "name": "Leonidas", "shop": "chocolate"}, "matchScore": 2, "suggestion": true}, "shop/clothes/AOKI": {"name": "AOKI", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "brand:wikidata": "Q11189480"}, "addTags": {"brand": "AOKI", "brand:wikidata": "Q11189480", "brand:wikipedia": "ja:AOKIホールディングス", "clothes": "men", "name": "AOKI", "name:ja": "アオキ", "operator": "株式会社AOKIホールディングス", "operator:en": "AOKI Holdings Inc.", "shop": "clothes"}, "removeTags": {"brand": "AOKI", "brand:wikidata": "Q11189480", "brand:wikipedia": "ja:AOKIホールディングス", "clothes": "men", "name": "AOKI", "name:ja": "アオキ", "operator": "株式会社AOKIホールディングス", "operator:en": "AOKI Holdings Inc.", "shop": "clothes"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, @@ -3162,7 +3162,7 @@ "shop/electronics/全國電子": {"name": "全國電子", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q10891540"}, "addTags": {"brand": "全國電子", "brand:en": "E-life Mall", "brand:wikidata": "Q10891540", "brand:wikipedia": "zh:全國電子", "name": "全國電子", "name:en": "E-life Mall", "shop": "electronics"}, "removeTags": {"brand": "全國電子", "brand:en": "E-life Mall", "brand:wikidata": "Q10891540", "brand:wikipedia": "zh:全國電子", "name": "全國電子", "name:en": "E-life Mall", "shop": "electronics"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "shop/electronics/燦坤3C": {"name": "燦坤3C", "icon": "fas-plug", "geometry": ["point", "area"], "tags": {"shop": "electronics", "brand:wikidata": "Q11569285"}, "addTags": {"brand": "燦坤3C", "brand:en": "Tsannkuen 3C", "brand:wikidata": "Q11569285", "brand:wikipedia": "zh:燦坤", "name": "燦坤3C", "name:en": "Tsannkuen 3C", "shop": "electronics"}, "removeTags": {"brand": "燦坤3C", "brand:en": "Tsannkuen 3C", "brand:wikidata": "Q11569285", "brand:wikipedia": "zh:燦坤", "name": "燦坤3C", "name:en": "Tsannkuen 3C", "shop": "electronics"}, "countryCodes": ["tw"], "matchScore": 2, "suggestion": true}, "shop/erotic/Orion": {"name": "Orion", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FNoimage%20pr.gif&width=100", "geometry": ["point", "area"], "tags": {"shop": "erotic", "brand:wikidata": "Q1609577"}, "addTags": {"brand": "Orion", "brand:wikidata": "Q1609577", "brand:wikipedia": "de:Orion (Erotik)", "name": "Orion", "shop": "erotic"}, "removeTags": {"brand": "Orion", "brand:wikidata": "Q1609577", "brand:wikipedia": "de:Orion (Erotik)", "name": "Orion", "shop": "erotic"}, "countryCodes": ["at", "de"], "matchScore": 2, "suggestion": true}, - "shop/fabric/Mondial Tissus": {"name": "Mondial Tissus", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "fabric", "brand:wikidata": "Q17635288"}, "addTags": {"brand": "Mondial Tissus", "brand:wikidata": "Q17635288", "brand:wikipedia": "fr:Mondial Tissus", "name": "Mondial Tissus", "shop": "fabric"}, "removeTags": {"brand": "Mondial Tissus", "brand:wikidata": "Q17635288", "brand:wikipedia": "fr:Mondial Tissus", "name": "Mondial Tissus", "shop": "fabric"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/fabric/Mondial Tissus": {"name": "Mondial Tissus", "icon": "fas-tape", "geometry": ["point", "area"], "tags": {"shop": "fabric", "brand:wikidata": "Q17635288"}, "addTags": {"brand": "Mondial Tissus", "brand:wikidata": "Q17635288", "brand:wikipedia": "fr:Mondial Tissus", "name": "Mondial Tissus", "shop": "fabric"}, "removeTags": {"brand": "Mondial Tissus", "brand:wikidata": "Q17635288", "brand:wikipedia": "fr:Mondial Tissus", "name": "Mondial Tissus", "shop": "fabric"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, "shop/florist/Blume 2000": {"name": "Blume 2000", "icon": "maki-florist", "imageURL": "https://graph.facebook.com/Blume2000.de/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "florist", "brand:wikidata": "Q886166"}, "addTags": {"brand": "Blume 2000", "brand:wikidata": "Q886166", "brand:wikipedia": "de:Blume 2000", "name": "Blume 2000", "shop": "florist"}, "removeTags": {"brand": "Blume 2000", "brand:wikidata": "Q886166", "brand:wikipedia": "de:Blume 2000", "name": "Blume 2000", "shop": "florist"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/florist/Blumen Risse": {"name": "Blumen Risse", "icon": "maki-florist", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Blumen%20Risse.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "florist", "brand:wikidata": "Q886177"}, "addTags": {"brand": "Blumen Risse", "brand:wikidata": "Q886177", "brand:wikipedia": "de:Blumen Risse", "name": "Blumen Risse", "shop": "florist"}, "removeTags": {"brand": "Blumen Risse", "brand:wikidata": "Q886177", "brand:wikipedia": "de:Blumen Risse", "name": "Blumen Risse", "shop": "florist"}, "countryCodes": ["de"], "matchScore": 2, "suggestion": true}, "shop/florist/Interflora": {"name": "Interflora", "icon": "maki-florist", "imageURL": "https://graph.facebook.com/interfloraes/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "florist", "brand:wikidata": "Q692179"}, "addTags": {"brand": "Interflora", "brand:wikidata": "Q692179", "brand:wikipedia": "en:Interflora", "name": "Interflora", "shop": "florist"}, "removeTags": {"brand": "Interflora", "brand:wikidata": "Q692179", "brand:wikipedia": "en:Interflora", "name": "Interflora", "shop": "florist"}, "matchScore": 2, "suggestion": true}, @@ -3335,10 +3335,10 @@ "shop/music/HMV": {"name": "HMV", "icon": "fas-compact-disc", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHMV%20record.JPG&width=100", "geometry": ["point", "area"], "tags": {"shop": "music", "brand:wikidata": "Q10854572"}, "addTags": {"brand": "HMV", "brand:wikidata": "Q10854572", "brand:wikipedia": "en:HMV", "name": "HMV", "shop": "music"}, "removeTags": {"brand": "HMV", "brand:wikidata": "Q10854572", "brand:wikipedia": "en:HMV", "name": "HMV", "shop": "music"}, "matchScore": 2, "suggestion": true}, "shop/music/TSUTAYA": {"name": "TSUTAYA", "icon": "fas-compact-disc", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCulture%20Convenience%20Club%20(CCC)%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "music", "brand:wikidata": "Q5193457"}, "addTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "music"}, "removeTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "music"}, "matchScore": 2, "suggestion": true}, "shop/musical_instrument/Guitar Center": {"name": "Guitar Center", "icon": "fas-guitar", "imageURL": "https://graph.facebook.com/GuitarCenter/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "musical_instrument", "brand:wikidata": "Q3622794"}, "addTags": {"brand": "Guitar Center", "brand:wikidata": "Q3622794", "brand:wikipedia": "en:Guitar Center", "name": "Guitar Center", "shop": "musical_instrument"}, "removeTags": {"brand": "Guitar Center", "brand:wikidata": "Q3622794", "brand:wikipedia": "en:Guitar Center", "name": "Guitar Center", "shop": "musical_instrument"}, "matchScore": 2, "suggestion": true}, - "shop/newsagent/Kolporter": {"name": "Kolporter", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q6427874"}, "addTags": {"brand": "Kolporter", "brand:wikidata": "Q6427874", "brand:wikipedia": "pl:Kolporter (przedsiębiorstwo)", "name": "Kolporter", "shop": "kiosk"}, "removeTags": {"brand": "Kolporter", "brand:wikidata": "Q6427874", "brand:wikipedia": "pl:Kolporter (przedsiębiorstwo)", "name": "Kolporter", "shop": "kiosk"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, - "shop/newsagent/Maison de la Presse": {"name": "Maison de la Presse", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Maison-de-la-Presse-La-culture-à-la-page-260230084083052/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q62085960"}, "addTags": {"brand": "Maison de la Presse", "brand:wikidata": "Q62085960", "name": "Maison de la Presse", "shop": "newsagent"}, "removeTags": {"brand": "Maison de la Presse", "brand:wikidata": "Q62085960", "name": "Maison de la Presse", "shop": "newsagent"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, - "shop/newsagent/k kiosk": {"name": "k kiosk", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q60381703"}, "addTags": {"brand": "k kiosk", "brand:wikidata": "Q60381703", "name": "k kiosk", "shop": "newsagent"}, "removeTags": {"brand": "k kiosk", "brand:wikidata": "Q60381703", "name": "k kiosk", "shop": "newsagent"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, - "shop/newsagent/読売新聞": {"name": "読売新聞", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1091035339232227328/elp0X_L6_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q645218"}, "addTags": {"brand": "読売新聞", "brand:en": "Yomiuri Shimbun", "brand:wikidata": "Q645218", "brand:wikipedia": "en:Yomiuri Shimbun", "name": "読売新聞", "name:en": "Yomiuri Shimbun", "shop": "newsagent"}, "removeTags": {"brand": "読売新聞", "brand:en": "Yomiuri Shimbun", "brand:wikidata": "Q645218", "brand:wikipedia": "en:Yomiuri Shimbun", "name": "読売新聞", "name:en": "Yomiuri Shimbun", "shop": "newsagent"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, + "shop/newsagent/Kolporter": {"name": "Kolporter", "icon": "fas-newspaper", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q6427874"}, "addTags": {"brand": "Kolporter", "brand:wikidata": "Q6427874", "brand:wikipedia": "pl:Kolporter (przedsiębiorstwo)", "name": "Kolporter", "shop": "kiosk"}, "removeTags": {"brand": "Kolporter", "brand:wikidata": "Q6427874", "brand:wikipedia": "pl:Kolporter (przedsiębiorstwo)", "name": "Kolporter", "shop": "kiosk"}, "countryCodes": ["pl"], "matchScore": 2, "suggestion": true}, + "shop/newsagent/Maison de la Presse": {"name": "Maison de la Presse", "icon": "fas-newspaper", "imageURL": "https://graph.facebook.com/Maison-de-la-Presse-La-culture-à-la-page-260230084083052/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q62085960"}, "addTags": {"brand": "Maison de la Presse", "brand:wikidata": "Q62085960", "name": "Maison de la Presse", "shop": "newsagent"}, "removeTags": {"brand": "Maison de la Presse", "brand:wikidata": "Q62085960", "name": "Maison de la Presse", "shop": "newsagent"}, "countryCodes": ["fr"], "matchScore": 2, "suggestion": true}, + "shop/newsagent/k kiosk": {"name": "k kiosk", "icon": "fas-newspaper", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q60381703"}, "addTags": {"brand": "k kiosk", "brand:wikidata": "Q60381703", "name": "k kiosk", "shop": "newsagent"}, "removeTags": {"brand": "k kiosk", "brand:wikidata": "Q60381703", "name": "k kiosk", "shop": "newsagent"}, "countryCodes": ["ch"], "matchScore": 2, "suggestion": true}, + "shop/newsagent/読売新聞": {"name": "読売新聞", "icon": "fas-newspaper", "imageURL": "https://pbs.twimg.com/profile_images/1091035339232227328/elp0X_L6_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "newsagent", "brand:wikidata": "Q645218"}, "addTags": {"brand": "読売新聞", "brand:en": "Yomiuri Shimbun", "brand:wikidata": "Q645218", "brand:wikipedia": "en:Yomiuri Shimbun", "name": "読売新聞", "name:en": "Yomiuri Shimbun", "shop": "newsagent"}, "removeTags": {"brand": "読売新聞", "brand:en": "Yomiuri Shimbun", "brand:wikidata": "Q645218", "brand:wikipedia": "en:Yomiuri Shimbun", "name": "読売新聞", "name:en": "Yomiuri Shimbun", "shop": "newsagent"}, "countryCodes": ["jp"], "matchScore": 2, "suggestion": true}, "shop/nutrition_supplements/GNC": {"name": "GNC", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGNC%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"shop": "nutrition_supplements", "brand:wikidata": "Q4808595"}, "addTags": {"brand": "GNC", "brand:wikidata": "Q4808595", "brand:wikipedia": "en:GNC (store)", "name": "GNC", "shop": "nutrition_supplements"}, "removeTags": {"brand": "GNC", "brand:wikidata": "Q4808595", "brand:wikipedia": "en:GNC (store)", "name": "GNC", "shop": "nutrition_supplements"}, "matchScore": 2, "suggestion": true}, "shop/nutrition_supplements/The Vitamin Shoppe": {"name": "The Vitamin Shoppe", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/THEVITAMINSHOPPE/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "nutrition_supplements", "brand:wikidata": "Q7772938"}, "addTags": {"brand": "The Vitamin Shoppe", "brand:wikidata": "Q7772938", "brand:wikipedia": "en:The Vitamin Shoppe", "name": "The Vitamin Shoppe", "shop": "nutrition_supplements"}, "removeTags": {"brand": "The Vitamin Shoppe", "brand:wikidata": "Q7772938", "brand:wikipedia": "en:The Vitamin Shoppe", "name": "The Vitamin Shoppe", "shop": "nutrition_supplements"}, "countryCodes": ["us"], "matchScore": 2, "suggestion": true}, "shop/optician/Alain Afflelou": {"name": "Alain Afflelou", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"shop": "optician", "brand:wikidata": "Q2829511"}, "addTags": {"brand": "Alain Afflelou", "brand:wikidata": "Q2829511", "brand:wikipedia": "fr:Alain Afflelou (entreprise)", "name": "Alain Afflelou", "shop": "optician"}, "removeTags": {"brand": "Alain Afflelou", "brand:wikidata": "Q2829511", "brand:wikipedia": "fr:Alain Afflelou (entreprise)", "name": "Alain Afflelou", "shop": "optician"}, "matchScore": 2, "suggestion": true}, diff --git a/data/presets/presets/amenity/payment_terminal.json b/data/presets/presets/amenity/payment_terminal.json index a7560a9e4..45cd35389 100644 --- a/data/presets/presets/amenity/payment_terminal.json +++ b/data/presets/presets/amenity/payment_terminal.json @@ -1,5 +1,5 @@ { - "icon": "maki-bank", + "icon": "far-credit-card", "fields": [ "name", "brand", diff --git a/data/presets/presets/amenity/vending_machine/newspapers.json b/data/presets/presets/amenity/vending_machine/newspapers.json index affacec2d..60382483a 100644 --- a/data/presets/presets/amenity/vending_machine/newspapers.json +++ b/data/presets/presets/amenity/vending_machine/newspapers.json @@ -1,5 +1,5 @@ { - "icon": "temaki-vending_machine", + "icon": "far-newspaper", "fields": [ "vending", "operator", diff --git a/data/presets/presets/office/newspaper.json b/data/presets/presets/office/newspaper.json index 574ea454b..08f13ff4f 100644 --- a/data/presets/presets/office/newspaper.json +++ b/data/presets/presets/office/newspaper.json @@ -1,5 +1,5 @@ { - "icon": "maki-library", + "icon": "fas-newspaper", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/chemist.json b/data/presets/presets/shop/chemist.json index 1955e1ac8..287d7a13a 100644 --- a/data/presets/presets/shop/chemist.json +++ b/data/presets/presets/shop/chemist.json @@ -1,5 +1,5 @@ { - "icon": "maki-grocery", + "icon": "fas-shopping-basket", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/fabric.json b/data/presets/presets/shop/fabric.json index e4587dca9..341aee782 100644 --- a/data/presets/presets/shop/fabric.json +++ b/data/presets/presets/shop/fabric.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-tape", "geometry": [ "point", "area" diff --git a/data/presets/presets/shop/newsagent.json b/data/presets/presets/shop/newsagent.json index 623a49954..8f7cc57ac 100644 --- a/data/presets/presets/shop/newsagent.json +++ b/data/presets/presets/shop/newsagent.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-newspaper", "geometry": [ "point", "area" diff --git a/data/taginfo.json b/data/taginfo.json index 49af91a9b..6a5b58d55 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -130,7 +130,7 @@ {"key": "amenity", "value": "parking", "description": "🄿 Parking Lot", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"}, {"key": "parking", "value": "multi-storey", "description": "🄿 Multilevel Parking Garage, 🄵 Type", "object_types": ["area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"}, {"key": "amenity", "value": "payment_centre", "description": "🄿 Payment Center", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"}, - {"key": "amenity", "value": "payment_terminal", "description": "🄿 Payment Terminal", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"}, + {"key": "amenity", "value": "payment_terminal", "description": "🄿 Payment Terminal", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/far-credit-card.svg?sanitize=true"}, {"key": "amenity", "value": "pharmacy", "description": "🄿 Pharmacy Counter", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pharmacy-15.svg?sanitize=true"}, {"key": "amenity", "value": "photo_booth", "description": "🄿 Photo Booth", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-person-booth.svg?sanitize=true"}, {"key": "amenity", "value": "place_of_worship", "description": "🄿 Place of Worship", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"}, @@ -208,7 +208,7 @@ {"key": "vending", "value": "food", "description": "🄿 Food Vending Machine", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"}, {"key": "vending", "value": "fuel", "description": "🄿 Gas Pump", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fuel-15.svg?sanitize=true"}, {"key": "vending", "value": "ice_cream", "description": "🄿 Ice Cream Vending Machine", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"}, - {"key": "vending", "value": "newspapers", "description": "🄿 Newspaper Vending Machine", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"}, + {"key": "vending", "value": "newspapers", "description": "🄿 Newspaper Vending Machine", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/far-newspaper.svg?sanitize=true"}, {"key": "vending", "value": "parcel_pickup;parcel_mail_in", "description": "🄿 Parcel Pickup/Dropoff Locker", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"}, {"key": "vending", "value": "parcel_pickup", "description": "🄿 Parcel Pickup Locker", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"}, {"key": "vending", "value": "parking_tickets", "description": "🄿 Parking Ticket Vending Machine", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"}, @@ -719,7 +719,7 @@ {"key": "office", "value": "lawyer", "description": "🄿 Law Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-balance-scale.svg?sanitize=true"}, {"key": "lawyer", "value": "notary", "description": "🄿 Notary Office (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, {"key": "office", "value": "moving_company", "description": "🄿 Moving Company Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-people-carry.svg?sanitize=true"}, - {"key": "office", "value": "newspaper", "description": "🄿 Newspaper Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/library-15.svg?sanitize=true"}, + {"key": "office", "value": "newspaper", "description": "🄿 Newspaper Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-newspaper.svg?sanitize=true"}, {"key": "office", "value": "ngo", "description": "🄿 NGO Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"}, {"key": "office", "value": "notary", "description": "🄿 Notary Office", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-stamp.svg?sanitize=true"}, {"key": "office", "value": "political_party", "description": "🄿 Political Party", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"}, @@ -862,7 +862,7 @@ {"key": "shop", "value": "catalogue", "description": "🄿 Catalog Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "charity", "description": "🄿 Charity Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "cheese", "description": "🄿 Cheese Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-cheese.svg?sanitize=true"}, - {"key": "shop", "value": "chemist", "description": "🄿 Drugstore", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/grocery-15.svg?sanitize=true"}, + {"key": "shop", "value": "chemist", "description": "🄿 Drugstore", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-shopping-basket.svg?sanitize=true"}, {"key": "shop", "value": "chocolate", "description": "🄿 Chocolate Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "clothes", "description": "🄿 Clothing Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/clothing-store-15.svg?sanitize=true"}, {"key": "clothes", "value": "underwear", "description": "🄿 Underwear Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/clothing-store-15.svg?sanitize=true"}, @@ -883,7 +883,7 @@ {"key": "shop", "value": "e-cigarette", "description": "🄿 E-Cigarette Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "electronics", "description": "🄿 Electronics Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-plug.svg?sanitize=true"}, {"key": "shop", "value": "erotic", "description": "🄿 Erotic Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, - {"key": "shop", "value": "fabric", "description": "🄿 Fabric Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "fabric", "description": "🄿 Fabric Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-tape.svg?sanitize=true"}, {"key": "shop", "value": "farm", "description": "🄿 Produce Stand", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "fireplace", "description": "🄿 Fireplace Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "fishing", "description": "🄿 Fishing Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, @@ -923,7 +923,7 @@ {"key": "shop", "value": "motorcycle", "description": "🄿 Motorcycle Dealership", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-motorcycle.svg?sanitize=true"}, {"key": "shop", "value": "music", "description": "🄿 Music Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-compact-disc.svg?sanitize=true"}, {"key": "shop", "value": "musical_instrument", "description": "🄿 Musical Instrument Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-guitar.svg?sanitize=true"}, - {"key": "shop", "value": "newsagent", "description": "🄿 Newspaper/Magazine Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "newsagent", "description": "🄿 Newspaper/Magazine Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-newspaper.svg?sanitize=true"}, {"key": "shop", "value": "nutrition_supplements", "description": "🄿 Nutrition Supplements Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "optician", "description": "🄿 Optician", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/optician-15.svg?sanitize=true"}, {"key": "organic", "value": "only", "description": "🄿 Organic Goods Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, diff --git a/svg/fontawesome/far-credit-card.svg b/svg/fontawesome/far-credit-card.svg new file mode 100644 index 000000000..8f7dfd035 --- /dev/null +++ b/svg/fontawesome/far-credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/far-newspaper.svg b/svg/fontawesome/far-newspaper.svg new file mode 100644 index 000000000..3967c15b8 --- /dev/null +++ b/svg/fontawesome/far-newspaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-newspaper.svg b/svg/fontawesome/fas-newspaper.svg new file mode 100644 index 000000000..3fc9afa52 --- /dev/null +++ b/svg/fontawesome/fas-newspaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-tape.svg b/svg/fontawesome/fas-tape.svg new file mode 100644 index 000000000..e1cbb63e8 --- /dev/null +++ b/svg/fontawesome/fas-tape.svg @@ -0,0 +1 @@ + \ No newline at end of file From b01f57f9c62252c964b588041f4b319b25b38ad6 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Mon, 8 Apr 2019 17:11:03 -0700 Subject: [PATCH 46/50] Add Convention Center and Events Venue presets Update icon for Party Store preset --- data/presets.yaml | 10 +++++ data/presets/presets.json | 6 ++- .../presets/amenity/conference_centre.json | 36 +++++++++++++++ .../presets/presets/amenity/events_venue.json | 45 +++++++++++++++++++ data/presets/presets/shop/party.json | 2 +- data/taginfo.json | 4 +- dist/locales/en.json | 8 ++++ svg/fontawesome/fas-mask.svg | 1 + svg/fontawesome/fas-user-tie.svg | 1 + svg/fontawesome/fas-users.svg | 1 + 10 files changed, 110 insertions(+), 4 deletions(-) create mode 100644 data/presets/presets/amenity/conference_centre.json create mode 100644 data/presets/presets/amenity/events_venue.json create mode 100644 svg/fontawesome/fas-mask.svg create mode 100644 svg/fontawesome/fas-user-tie.svg create mode 100644 svg/fontawesome/fas-users.svg diff --git a/data/presets.yaml b/data/presets.yaml index d1ac33e2b..fabd7a819 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -2496,6 +2496,11 @@ en: # amenity=compressed_air name: Compressed Air terms: '' + amenity/conference_centre: + # amenity=conference_centre + name: Convention Center + # 'terms: auditorium,conference,exhibition,exposition,lecture' + terms: '' amenity/courthouse: # amenity=courthouse name: Courthouse @@ -2540,6 +2545,11 @@ en: amenity/embassy: # amenity=embassy name: Embassy + amenity/events_venue: + # amenity=events_venue + name: Events Venue + # 'terms: banquet hall,baptism,Bar Mitzvah,Bat Mitzvah,birthdays,celebrations,conferences,confirmation,meetings,parties,party,quinceañera,reunions,weddings' + terms: '' amenity/fast_food: # amenity=fast_food name: Fast Food diff --git a/data/presets/presets.json b/data/presets/presets.json index 1ab2345e0..d809f79ea 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -87,6 +87,7 @@ "amenity/community_centre": {"icon": "maki-town-hall", "fields": ["name", "operator", "address", "building_area"], "moreFields": ["air_conditioning", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["event", "hall"], "tags": {"amenity": "community_centre"}, "name": "Community Center"}, "amenity/community_centre/lgbtq": {"icon": "maki-town-hall", "geometry": ["point", "area"], "terms": ["lgbtq event", "lgbtq hall", "lgbt event", "lgbt hall", "lgb event", "lgb hall"], "tags": {"amenity": "community_centre", "lgbtq": "primary"}, "name": "LGBTQ+ Community Center"}, "amenity/compressed_air": {"icon": "maki-car", "fields": ["operator", "fee", "payment_multi", "lit"], "geometry": ["point", "area"], "tags": {"amenity": "compressed_air"}, "name": "Compressed Air"}, + "amenity/conference_centre": {"icon": "fas-user-tie", "fields": ["name", "operator", "building_area", "address", "website", "internet_access"], "moreFields": ["air_conditioning", "email", "fax", "internet_access/fee", "internet_access/ssid", "phone", "smoking", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "conference_centre"}, "terms": ["auditorium", "conference", "exhibition", "exposition", "lecture"], "name": "Convention Center"}, "amenity/courthouse": {"icon": "fas-gavel", "fields": ["name", "operator", "address", "building_area"], "moreFields": ["website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "courthouse"}, "name": "Courthouse"}, "amenity/crematorium": {"icon": "maki-cemetery", "fields": ["name", "website", "phone", "opening_hours", "wheelchair"], "moreFields": ["address", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["area", "point"], "tags": {"amenity": "crematorium"}, "terms": ["cemetery", "funeral"], "name": "Crematorium"}, "amenity/dentist": {"icon": "maki-dentist", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "moreFields": ["payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["tooth", "teeth"], "tags": {"amenity": "dentist"}, "addTags": {"amenity": "dentist", "healthcare": "dentist"}, "removeTags": {"amenity": "dentist", "healthcare": "dentist"}, "reference": {"key": "amenity", "value": "dentist"}, "name": "Dentist"}, @@ -95,6 +96,7 @@ "amenity/dojo": {"icon": "maki-pitch", "fields": ["name", "sport", "address", "building_area", "opening_hours"], "moreFields": ["payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["martial arts", "dojang"], "tags": {"amenity": "dojo"}, "name": "Dojo / Martial Arts Academy"}, "amenity/drinking_water": {"icon": "maki-drinking-water", "fields": ["operator", "access_simple", "fee", "wheelchair"], "moreFields": ["lit", "covered"], "geometry": ["point"], "tags": {"amenity": "drinking_water"}, "terms": ["potable water source", "water fountain", "drinking fountain", "bubbler", "water tap"], "name": "Drinking Water"}, "amenity/driving_school": {"icon": "maki-car", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "moreFields": ["payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "driving_school"}, "name": "Driving School"}, + "amenity/events_venue": {"icon": "fas-users", "fields": ["name", "operator", "building_area", "address", "website", "internet_access"], "moreFields": ["air_conditioning", "email", "fax", "internet_access/fee", "internet_access/ssid", "phone", "smoking", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "events_venue"}, "terms": ["banquet hall", "baptism", "Bar Mitzvah", "Bat Mitzvah", "birthdays", "celebrations", "conferences", "confirmation", "meetings", "parties", "party", "quinceañera", "reunions", "weddings"], "name": "Events Venue"}, "amenity/fast_food": {"icon": "maki-fast-food", "fields": ["name", "cuisine", "operator", "address", "building_area", "drive_through"], "moreFields": ["air_conditioning", "opening_hours", "diet_multi", "takeaway", "delivery", "smoking", "capacity", "outdoor_seating", "internet_access", "internet_access/fee", "internet_access/ssid", "payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "fast_food"}, "terms": ["restaurant", "takeaway"], "name": "Fast Food"}, "amenity/fast_food/burger": {"icon": "maki-fast-food", "geometry": ["point", "area"], "terms": ["breakfast", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "fast_food", "cuisine": "burger"}, "reference": {"key": "cuisine", "value": "burger"}, "name": "Burger Fast Food"}, "amenity/fast_food/chicken": {"icon": "fas-drumstick-bite", "geometry": ["point", "area"], "terms": ["breakfast", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "fast_food", "cuisine": "chicken"}, "reference": {"key": "cuisine", "value": "chicken"}, "name": "Chicken Fast Food"}, @@ -988,7 +990,7 @@ "shop/organic": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "organic": "only"}, "name": "Organic Goods Store"}, "shop/outdoor": {"icon": "temaki-compass", "geometry": ["point", "area"], "terms": ["camping", "climbing", "hiking", "outfitter", "outdoor equipment", "outdoor supplies"], "tags": {"shop": "outdoor"}, "name": "Outdoors Store"}, "shop/paint": {"icon": "fas-paint-roller", "geometry": ["point", "area"], "tags": {"shop": "paint"}, "name": "Paint Store"}, - "shop/party": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["balloons", "costumes", "decorations", "invitations"], "tags": {"shop": "party"}, "name": "Party Supply Store"}, + "shop/party": {"icon": "fas-mask", "geometry": ["point", "area"], "terms": ["balloons", "costumes", "decorations", "invitations"], "tags": {"shop": "party"}, "name": "Party Supply Store"}, "shop/pastry": {"icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "pastry"}, "terms": ["patisserie", "cake shop", "cakery"], "name": "Pastry Shop"}, "shop/pawnbroker": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "pawnbroker"}, "name": "Pawn Shop"}, "shop/perfumery": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "perfumery"}, "name": "Perfume Store"}, @@ -3378,7 +3380,7 @@ "shop/paint/Jotun": {"name": "Jotun", "icon": "fas-paint-roller", "geometry": ["point", "area"], "tags": {"shop": "paint", "brand:wikidata": "Q1778870"}, "addTags": {"brand": "Jotun", "brand:wikidata": "Q1778870", "brand:wikipedia": "en:Jotun (company)", "name": "Jotun", "shop": "paint"}, "removeTags": {"brand": "Jotun", "brand:wikidata": "Q1778870", "brand:wikipedia": "en:Jotun (company)", "name": "Jotun", "shop": "paint"}, "matchScore": 2, "suggestion": true}, "shop/paint/National Paints": {"name": "National Paints", "icon": "fas-paint-roller", "imageURL": "https://graph.facebook.com/NationalPaints/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "paint", "brand:wikidata": "Q62073521"}, "addTags": {"brand": "National Paints", "brand:wikidata": "Q62073521", "name": "National Paints", "shop": "paint"}, "removeTags": {"brand": "National Paints", "brand:wikidata": "Q62073521", "name": "National Paints", "shop": "paint"}, "matchScore": 2, "suggestion": true}, "shop/paint/Sherwin Williams": {"name": "Sherwin Williams", "icon": "fas-paint-roller", "geometry": ["point", "area"], "tags": {"shop": "paint", "brand:wikidata": "Q48881"}, "addTags": {"brand": "Sherwin Williams", "brand:wikidata": "Q48881", "brand:wikipedia": "en:Sherwin-Williams", "name": "Sherwin Williams", "shop": "paint"}, "removeTags": {"brand": "Sherwin Williams", "brand:wikidata": "Q48881", "brand:wikipedia": "en:Sherwin-Williams", "name": "Sherwin Williams", "shop": "paint"}, "matchScore": 2, "suggestion": true}, - "shop/party/Party City": {"name": "Party City", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPartyCity%20Logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "party", "brand:wikidata": "Q7140896"}, "addTags": {"brand": "Party City", "brand:wikidata": "Q7140896", "brand:wikipedia": "en:Party City", "name": "Party City", "shop": "party"}, "removeTags": {"brand": "Party City", "brand:wikidata": "Q7140896", "brand:wikipedia": "en:Party City", "name": "Party City", "shop": "party"}, "matchScore": 2, "suggestion": true}, + "shop/party/Party City": {"name": "Party City", "icon": "fas-mask", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPartyCity%20Logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"shop": "party", "brand:wikidata": "Q7140896"}, "addTags": {"brand": "Party City", "brand:wikidata": "Q7140896", "brand:wikipedia": "en:Party City", "name": "Party City", "shop": "party"}, "removeTags": {"brand": "Party City", "brand:wikidata": "Q7140896", "brand:wikipedia": "en:Party City", "name": "Party City", "shop": "party"}, "matchScore": 2, "suggestion": true}, "shop/pawnbroker/Cash Converters": {"name": "Cash Converters", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1080851674749640704/GLO4H-z8_bigger.jpg", "geometry": ["point", "area"], "tags": {"shop": "pawnbroker", "brand:wikidata": "Q5048645"}, "addTags": {"brand": "Cash Converters", "brand:wikidata": "Q5048645", "brand:wikipedia": "en:Cash Converters", "name": "Cash Converters", "shop": "pawnbroker"}, "removeTags": {"brand": "Cash Converters", "brand:wikidata": "Q5048645", "brand:wikipedia": "en:Cash Converters", "name": "Cash Converters", "shop": "pawnbroker"}, "matchScore": 2, "suggestion": true}, "shop/pawnbroker/Cebuana Lhuillier": {"name": "Cebuana Lhuillier", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "pawnbroker", "brand:wikidata": "Q17064661"}, "addTags": {"brand": "Cebuana Lhuillier", "brand:wikidata": "Q17064661", "brand:wikipedia": "en:Cebuana Lhuillier", "name": "Cebuana Lhuillier", "shop": "pawnbroker"}, "removeTags": {"brand": "Cebuana Lhuillier", "brand:wikidata": "Q17064661", "brand:wikipedia": "en:Cebuana Lhuillier", "name": "Cebuana Lhuillier", "shop": "pawnbroker"}, "countryCodes": ["ph"], "matchScore": 2, "suggestion": true}, "shop/perfumery/Douglas": {"name": "Douglas", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/DouglasDeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"shop": "perfumery", "brand:wikidata": "Q2052213"}, "addTags": {"brand": "Douglas", "brand:wikidata": "Q2052213", "brand:wikipedia": "de:Parfümerie Douglas", "name": "Douglas", "shop": "perfumery"}, "removeTags": {"brand": "Douglas", "brand:wikidata": "Q2052213", "brand:wikipedia": "de:Parfümerie Douglas", "name": "Douglas", "shop": "perfumery"}, "matchScore": 2, "suggestion": true}, diff --git a/data/presets/presets/amenity/conference_centre.json b/data/presets/presets/amenity/conference_centre.json new file mode 100644 index 000000000..fbece2906 --- /dev/null +++ b/data/presets/presets/amenity/conference_centre.json @@ -0,0 +1,36 @@ +{ + "icon": "fas-user-tie", + "fields": [ + "name", + "operator", + "building_area", + "address", + "website", + "internet_access" + ], + "moreFields" : [ + "air_conditioning", + "email", + "fax", + "internet_access/fee", + "internet_access/ssid", + "phone", + "smoking", + "wheelchair" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "amenity": "conference_centre" + }, + "terms": [ + "auditorium", + "conference", + "exhibition", + "exposition", + "lecture" + ], + "name": "Convention Center" +} diff --git a/data/presets/presets/amenity/events_venue.json b/data/presets/presets/amenity/events_venue.json new file mode 100644 index 000000000..3fa344fa3 --- /dev/null +++ b/data/presets/presets/amenity/events_venue.json @@ -0,0 +1,45 @@ +{ + "icon": "fas-users", + "fields": [ + "name", + "operator", + "building_area", + "address", + "website", + "internet_access" + ], + "moreFields" : [ + "air_conditioning", + "email", + "fax", + "internet_access/fee", + "internet_access/ssid", + "phone", + "smoking", + "wheelchair" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "amenity": "events_venue" + }, + "terms": [ + "banquet hall", + "baptism", + "Bar Mitzvah", + "Bat Mitzvah", + "birthdays", + "celebrations", + "conferences", + "confirmation", + "meetings", + "parties", + "party", + "quinceañera", + "reunions", + "weddings" + ], + "name": "Events Venue" +} diff --git a/data/presets/presets/shop/party.json b/data/presets/presets/shop/party.json index f84e43bb4..57dcbfcf0 100644 --- a/data/presets/presets/shop/party.json +++ b/data/presets/presets/shop/party.json @@ -1,5 +1,5 @@ { - "icon": "maki-shop", + "icon": "fas-mask", "geometry": [ "point", "area" diff --git a/data/taginfo.json b/data/taginfo.json index 6a5b58d55..c98e28c91 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -89,6 +89,7 @@ {"key": "amenity", "value": "college", "description": "🄿 College Grounds", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/college-15.svg?sanitize=true"}, {"key": "amenity", "value": "community_centre", "description": "🄿 Community Center", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"}, {"key": "amenity", "value": "compressed_air", "description": "🄿 Compressed Air", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"}, + {"key": "amenity", "value": "conference_centre", "description": "🄿 Convention Center", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-user-tie.svg?sanitize=true"}, {"key": "amenity", "value": "courthouse", "description": "🄿 Courthouse", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-gavel.svg?sanitize=true"}, {"key": "amenity", "value": "crematorium", "description": "🄿 Crematorium", "object_types": ["area", "node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cemetery-15.svg?sanitize=true"}, {"key": "amenity", "value": "dentist", "description": "🄿 Dentist", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dentist-15.svg?sanitize=true"}, @@ -97,6 +98,7 @@ {"key": "amenity", "value": "dojo", "description": "🄿 Dojo / Martial Arts Academy", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"}, {"key": "amenity", "value": "drinking_water", "description": "🄿 Drinking Water", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/drinking-water-15.svg?sanitize=true"}, {"key": "amenity", "value": "driving_school", "description": "🄿 Driving School", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"}, + {"key": "amenity", "value": "events_venue", "description": "🄿 Events Venue", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-users.svg?sanitize=true"}, {"key": "amenity", "value": "fast_food", "description": "🄿 Fast Food", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fast-food-15.svg?sanitize=true"}, {"key": "cuisine", "value": "burger", "description": "🄿 Burger Fast Food", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fast-food-15.svg?sanitize=true"}, {"key": "cuisine", "value": "chicken", "description": "🄿 Chicken Fast Food", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-drumstick-bite.svg?sanitize=true"}, @@ -929,7 +931,7 @@ {"key": "organic", "value": "only", "description": "🄿 Organic Goods Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "outdoor", "description": "🄿 Outdoors Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/compass.svg?sanitize=true"}, {"key": "shop", "value": "paint", "description": "🄿 Paint Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-paint-roller.svg?sanitize=true"}, - {"key": "shop", "value": "party", "description": "🄿 Party Supply Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, + {"key": "shop", "value": "party", "description": "🄿 Party Supply Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-mask.svg?sanitize=true"}, {"key": "shop", "value": "pastry", "description": "🄿 Pastry Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bakery-15.svg?sanitize=true"}, {"key": "shop", "value": "pawnbroker", "description": "🄿 Pawn Shop", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, {"key": "shop", "value": "perfumery", "description": "🄿 Perfume Store", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"}, diff --git a/dist/locales/en.json b/dist/locales/en.json index f5e3c5f9b..30fea095e 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -4394,6 +4394,10 @@ "name": "Compressed Air", "terms": "" }, + "amenity/conference_centre": { + "name": "Convention Center", + "terms": "auditorium,conference,exhibition,exposition,lecture" + }, "amenity/courthouse": { "name": "Courthouse", "terms": "" @@ -4426,6 +4430,10 @@ "name": "Driving School", "terms": "" }, + "amenity/events_venue": { + "name": "Events Venue", + "terms": "banquet hall,baptism,Bar Mitzvah,Bat Mitzvah,birthdays,celebrations,conferences,confirmation,meetings,parties,party,quinceañera,reunions,weddings" + }, "amenity/fast_food": { "name": "Fast Food", "terms": "restaurant,takeaway" diff --git a/svg/fontawesome/fas-mask.svg b/svg/fontawesome/fas-mask.svg new file mode 100644 index 000000000..040a456f3 --- /dev/null +++ b/svg/fontawesome/fas-mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-user-tie.svg b/svg/fontawesome/fas-user-tie.svg new file mode 100644 index 000000000..66dd01670 --- /dev/null +++ b/svg/fontawesome/fas-user-tie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/fontawesome/fas-users.svg b/svg/fontawesome/fas-users.svg new file mode 100644 index 000000000..845df8fbe --- /dev/null +++ b/svg/fontawesome/fas-users.svg @@ -0,0 +1 @@ + \ No newline at end of file From ae80c88f37585dd3b93ddfc94f4891a09cd150a3 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Mon, 8 Apr 2019 19:58:50 -0700 Subject: [PATCH 47/50] Render relation route icon lines dynamically (close #5926) --- css/20_map.css | 2 +- css/30_highways.css | 22 ++-- css/35_aeroways.css | 2 +- css/40_railways.css | 2 +- css/50_misc.css | 16 +-- css/80_app.css | 23 ++-- data/presets/presets.json | 30 ++--- data/presets/presets/type/route/bicycle.json | 4 +- data/presets/presets/type/route/bus.json | 2 +- data/presets/presets/type/route/ferry.json | 2 +- data/presets/presets/type/route/foot.json | 4 +- data/presets/presets/type/route/hiking.json | 2 +- data/presets/presets/type/route/horse.json | 4 +- .../presets/type/route/light_rail.json | 2 +- data/presets/presets/type/route/pipeline.json | 4 +- data/presets/presets/type/route/piste.json | 4 +- data/presets/presets/type/route/power.json | 4 +- data/presets/presets/type/route/road.json | 4 +- data/presets/presets/type/route/subway.json | 2 +- data/presets/presets/type/route/train.json | 2 +- data/presets/presets/type/route/tram.json | 2 +- data/presets/presets/type/waterway.json | 2 +- data/taginfo.json | 28 ++--- modules/ui/entity_editor.js | 2 +- modules/ui/preset_icon.js | 119 +++++++++++++++--- modules/ui/preset_list.js | 4 +- modules/ui/tools/add_favorite.js | 2 +- modules/ui/tools/add_recent.js | 2 +- modules/ui/tools/search_add.js | 2 +- svg/iD-sprite/presets/route-bicycle.svg | 21 ---- svg/iD-sprite/presets/route-bus.svg | 21 ---- svg/iD-sprite/presets/route-detour.svg | 20 +-- svg/iD-sprite/presets/route-ferry.svg | 21 ---- svg/iD-sprite/presets/route-foot.svg | 21 ---- svg/iD-sprite/presets/route-horse.svg | 21 ---- svg/iD-sprite/presets/route-light-rail.svg | 25 ---- svg/iD-sprite/presets/route-line.svg | 21 ---- svg/iD-sprite/presets/route-pipeline.svg | 25 ---- svg/iD-sprite/presets/route-piste.svg | 21 ---- svg/iD-sprite/presets/route-power.svg | 22 ---- svg/iD-sprite/presets/route-road.svg | 21 ---- svg/iD-sprite/presets/route-subway.svg | 25 ---- svg/iD-sprite/presets/route-train.svg | 21 ---- svg/iD-sprite/presets/route-tram.svg | 26 ---- svg/iD-sprite/presets/route-water.svg | 22 ---- 45 files changed, 192 insertions(+), 462 deletions(-) delete mode 100644 svg/iD-sprite/presets/route-bicycle.svg delete mode 100644 svg/iD-sprite/presets/route-bus.svg delete mode 100644 svg/iD-sprite/presets/route-ferry.svg delete mode 100644 svg/iD-sprite/presets/route-foot.svg delete mode 100644 svg/iD-sprite/presets/route-horse.svg delete mode 100644 svg/iD-sprite/presets/route-light-rail.svg delete mode 100644 svg/iD-sprite/presets/route-line.svg delete mode 100644 svg/iD-sprite/presets/route-pipeline.svg delete mode 100644 svg/iD-sprite/presets/route-piste.svg delete mode 100644 svg/iD-sprite/presets/route-power.svg delete mode 100644 svg/iD-sprite/presets/route-road.svg delete mode 100644 svg/iD-sprite/presets/route-subway.svg delete mode 100644 svg/iD-sprite/presets/route-train.svg delete mode 100644 svg/iD-sprite/presets/route-tram.svg delete mode 100644 svg/iD-sprite/presets/route-water.svg diff --git a/css/20_map.css b/css/20_map.css index d5e7b0e24..6bb193e7e 100644 --- a/css/20_map.css +++ b/css/20_map.css @@ -179,7 +179,7 @@ g.vertex.selected .shadow { .preset-icon .icon.iD-other-line { color: #989898; } -.preset-icon-line path.casing { +.preset-icon-container path.line.casing { stroke: #afafaf; } diff --git a/css/30_highways.css b/css/30_highways.css index 298ceedbf..cb000b1d7 100644 --- a/css/30_highways.css +++ b/css/30_highways.css @@ -1,4 +1,4 @@ -/* highways */ +preset-icon-container/* highways */ /* defaults */ .preset-icon .icon.tag-highway.other-line { @@ -486,10 +486,10 @@ path.line.stroke.tag-highway-path { } path.line.stroke.tag-highway-footway, path.line.stroke.tag-highway_bus_stop, -.preset-icon-line path.casing.tag-highway-footway { +.preset-icon-container path.casing.tag-highway-footway { stroke: #988; } -.preset-icon-line path.stroke.tag-highway-footway:not(.tag-footway-crossing):not(.tag-man_made-pier):not(.tag-public_transport-platform) { +.preset-icon-container path.stroke.tag-highway-footway:not(.tag-footway-crossing):not(.tag-man_made-pier):not(.tag-public_transport-platform) { stroke: #fff; } @@ -500,10 +500,10 @@ path.line.stroke.tag-highway_bus_stop, fill: #fff; } path.line.stroke.tag-highway-cycleway, -.preset-icon-line path.casing.tag-highway-cycleway { +.preset-icon-container path.casing.tag-highway-cycleway { stroke: #58a9ed; } -.preset-icon-line path.stroke.tag-highway-cycleway:not(.tag-crossing) { +.preset-icon-container path.stroke.tag-highway-cycleway:not(.tag-crossing) { stroke: #fff; } @@ -514,10 +514,10 @@ path.line.stroke.tag-highway-cycleway, fill: #fff; } path.line.stroke.tag-highway-bridleway, -.preset-icon-line path.casing.tag-highway-bridleway { +.preset-icon-container path.casing.tag-highway-bridleway { stroke: #e06d5f; } -.preset-icon-line path.stroke.tag-highway-bridleway { +.preset-icon-container path.stroke.tag-highway-bridleway { stroke: #fff; } @@ -526,10 +526,10 @@ path.line.stroke.tag-highway-bridleway, color: rgb(229, 184, 43); } path.line.stroke.tag-leisure-track, -.preset-icon-line path.casing.tag-highway.tag-leisure-track { +.preset-icon-container path.casing.tag-highway.tag-leisure-track { stroke: rgb(229, 184, 43); } -.preset-icon-line path.line.stroke.tag-highway.tag-leisure-track { +.preset-icon-container path.line.stroke.tag-highway.tag-leisure-track { stroke: #fff; } @@ -552,10 +552,10 @@ path.line.casing.tag-highway-steps.tag-unpaved { stroke-dasharray: none; } path.line.stroke.tag-highway-steps, -.preset-icon-line path.line.casing.tag-highway-steps { +.preset-icon-container path.line.casing.tag-highway-steps { stroke: #81d25c; } -.preset-icon-line path.line.stroke.tag-highway-steps { +.preset-icon-container path.line.stroke.tag-highway-steps { stroke: #fff; } diff --git a/css/35_aeroways.css b/css/35_aeroways.css index 56cffee52..22b903331 100644 --- a/css/35_aeroways.css +++ b/css/35_aeroways.css @@ -83,6 +83,6 @@ path.line.stroke.tag-aeroway-runway { stroke-width: 2; stroke-dasharray: 12, 24; } -.preset-icon-line path.line.stroke.tag-aeroway-runway { +.preset-icon-container path.line.stroke.tag-aeroway-runway { stroke-dasharray: 0, 14, 8, 14; } diff --git a/css/40_railways.css b/css/40_railways.css index 0b0adbfbf..2e08618b9 100644 --- a/css/40_railways.css +++ b/css/40_railways.css @@ -33,7 +33,7 @@ path.line.stroke.tag-railway { stroke-width: 2; stroke-dasharray: 6,6; } -.preset-icon-line path.line.stroke.tag-railway:not(.tag-status) { +.preset-icon-container path.line.stroke.tag-railway:not(.tag-status) { stroke-dasharray: 6; } diff --git a/css/50_misc.css b/css/50_misc.css index 127a23fd5..dbf76d81d 100644 --- a/css/50_misc.css +++ b/css/50_misc.css @@ -74,7 +74,7 @@ path.line.stroke.tag-route-ferry { stroke-width: 12; } .low-zoom path.line.stroke.tag-route-ferry, -.preset-icon-line path.line.stroke.tag-route-ferry { +.preset-icon-container path.line.stroke.tag-route-ferry { stroke-width: 2; stroke-dasharray: 6,4; } @@ -163,7 +163,7 @@ path.line.casing.tag-man_made-pipeline { .low-zoom path.line.stroke.tag-man_made-pipeline { stroke-dasharray: 40, 1; } -.preset-icon-line path.line.stroke.tag-man_made-pipeline { +.preset-icon-container path.line.stroke.tag-man_made-pipeline { stroke-dasharray: 19, 1; } @@ -190,7 +190,7 @@ path.line.casing.tag-boundary-national_park { path.line.stroke.tag-barrier:not(.tag-barrier-hedge) { stroke: #ddd; } -.preset-icon-line path.line.stroke.tag-barrier:not(.tag-barrier-hedge) { +.preset-icon-container path.line.stroke.tag-barrier:not(.tag-barrier-hedge) { stroke: rgb(170, 170, 170); } path.line.casing.tag-natural, @@ -213,9 +213,9 @@ path.line.stroke.tag-man_made-breakwater { stroke-linecap: butt; stroke-dasharray: 8, 2, 2, 2; } -.preset-icon-line path.line.stroke.tag-barrier, -.preset-icon-line path.line.stroke.tag-man_made-groyne, -.preset-icon-line path.line.stroke.tag-man_made-breakwater { +.preset-icon-container path.line.stroke.tag-barrier, +.preset-icon-container path.line.stroke.tag-man_made-groyne, +.preset-icon-container path.line.stroke.tag-man_made-breakwater { stroke-dasharray: 1, 4, 6, 4; } @@ -387,11 +387,11 @@ path.line.stroke.tag-highway.tag-status.tag-status-construction { stroke-dasharray: 10, 10; } path.line.casing.tag-highway.tag-status.tag-status-construction, -.preset-icon-line path.line.stroke.tag-highway.tag-status.tag-status-construction { +.preset-icon-container path.line.stroke.tag-highway.tag-status.tag-status-construction { stroke: #fff; } path.line.stroke.tag-highway.tag-status.tag-status-construction, -.preset-icon-line path.line.casing.tag-highway.tag-status.tag-status-construction { +.preset-icon-container path.line.casing.tag-highway.tag-status.tag-status-construction { stroke: #fc6c14; } .low-zoom path.line.shadow.tag-highway.tag-status.tag-status-construction { diff --git a/css/80_app.css b/css/80_app.css index 122bcb87a..5e6a7d27b 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -1202,21 +1202,16 @@ a.hide-toggle { .preset-icon-line { margin: auto; position: absolute; + left: 0; + right: 0; top: 0; width: 100%; height: 100%; } -[dir='ltr'] .preset-icon-line { - left: 0; -} -[dir='rtl'] .preset-icon-line { - right: 0; -} -.preset-icon-line path.line { +.preset-icon-container path { cursor: inherit; } -.preset-icon-line circle.vertex, -.preset-icon-fill circle.vertex { +.preset-icon-container circle.vertex { fill: #fff; stroke: rgba(0, 0, 0, 0.25); } @@ -1225,10 +1220,10 @@ a.hide-toggle { stroke: rgba(0, 0, 0, 0.25); } /* use a consistent stroke width */ -.preset-icon-line path.line.stroke { +.preset-icon-container path.line.stroke { stroke-width: 2 !important; } -.preset-icon-line path.line.casing { +.preset-icon-container path.line.casing { stroke-width: 4 !important; } @@ -1279,7 +1274,8 @@ a.hide-toggle { .preset-icon.framed .icon { transform: scale(0.4); } -.preset-icon.framed.line-geom .icon { +.preset-icon.framed.line-geom .icon, +.preset-icon.framed.route-geom .icon { top: 20%; transform: translateY(-30%) scale(0.4); } @@ -1289,7 +1285,8 @@ a.hide-toggle { .preset-icon-iD.framed .icon { transform: scale(0.74); } -.preset-icon-iD.framed.line-geom .icon { +.preset-icon-iD.framed.line-geom .icon, +.preset-icon-iD.framed.route-geom .icon { transform: translateY(-30%) scale(0.74); } .preset-icon-container.fallback .preset-icon .icon { diff --git a/data/presets/presets.json b/data/presets/presets.json index d809f79ea..93ca5ae12 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -1092,23 +1092,23 @@ "type/restriction/only_u_turn": {"icon": "iD-restriction-only-u-turn", "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "only_u_turn"}, "name": "Only U-turn"}, "type/route_master": {"icon": "iD-route-master", "fields": ["name", "route_master", "ref", "operator", "network"], "moreFields": ["colour", "interval", "opening_hours", "wheelchair"], "geometry": ["relation"], "tags": {"type": "route_master"}, "name": "Route Master"}, "type/route": {"icon": "iD-route", "fields": ["name", "route", "ref_route", "operator", "network"], "geometry": ["relation"], "tags": {"type": "route"}, "name": "Route"}, - "type/route/bicycle": {"icon": "iD-route-bicycle", "fields": ["name", "ref_route", "network_bicycle", "cycle_network", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "bicycle"}, "name": "Cycle Route"}, - "type/route/bus": {"icon": "iD-route-bus", "fields": ["name", "ref_route", "operator", "network", "to", "from"], "moreFields": ["colour", "interval", "opening_hours", "duration", "wheelchair"], "geometry": ["relation"], "tags": {"type": "route", "route": "bus"}, "name": "Bus Route"}, + "type/route/bicycle": {"icon": "maki-bicycle", "fields": ["name", "ref_route", "network_bicycle", "cycle_network", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "bicycle"}, "name": "Cycle Route"}, + "type/route/bus": {"icon": "maki-bus", "fields": ["name", "ref_route", "operator", "network", "to", "from"], "moreFields": ["colour", "interval", "opening_hours", "duration", "wheelchair"], "geometry": ["relation"], "tags": {"type": "route", "route": "bus"}, "name": "Bus Route"}, "type/route/detour": {"icon": "iD-route-detour", "fields": ["name", "ref_route", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "detour"}, "name": "Detour Route"}, - "type/route/ferry": {"icon": "iD-route-ferry", "fields": ["name", "ref_route", "operator", "network", "to", "from"], "moreFields": ["interval", "opening_hours", "duration", "wheelchair"], "geometry": ["relation"], "tags": {"type": "route", "route": "ferry"}, "name": "Ferry Route"}, - "type/route/foot": {"icon": "iD-route-foot", "fields": ["name", "ref_route", "operator", "network_foot", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "foot"}, "name": "Foot Route"}, - "type/route/hiking": {"icon": "iD-route-foot", "fields": ["name", "ref_route", "operator", "network_foot", "description", "distance", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "hiking"}, "name": "Hiking Route"}, - "type/route/horse": {"icon": "iD-route-horse", "fields": ["name", "ref_route", "operator", "network_horse", "description", "distance", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "horse"}, "name": "Riding Route"}, - "type/route/light_rail": {"icon": "iD-route-light-rail", "fields": ["name", "ref_route", "operator", "network", "to", "from"], "moreFields": ["colour", "interval", "opening_hours", "duration", "wheelchair"], "geometry": ["relation"], "tags": {"type": "route", "route": "light_rail"}, "name": "Light Rail Route"}, - "type/route/pipeline": {"icon": "iD-route-pipeline", "fields": ["name", "ref_route", "operator", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "pipeline"}, "name": "Pipeline Route"}, - "type/route/piste": {"icon": "iD-route-piste", "fields": ["name", "piste/type", "colour", "ref_route", "operator", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "piste"}, "name": "Piste/Ski Route"}, - "type/route/power": {"icon": "iD-route-power", "fields": ["name", "ref_route", "operator", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "power"}, "name": "Power Route"}, - "type/route/road": {"icon": "iD-route-road", "fields": ["name", "ref_route", "network_road", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "road"}, "name": "Road Route"}, - "type/route/subway": {"icon": "iD-route-subway", "fields": ["name", "ref_route", "operator", "network", "to", "from"], "moreFields": ["colour", "interval", "opening_hours", "duration", "wheelchair"], "geometry": ["relation"], "tags": {"type": "route", "route": "subway"}, "name": "Subway Route"}, - "type/route/train": {"icon": "iD-route-train", "fields": ["name", "ref_route", "operator", "network", "to", "from"], "moreFields": ["colour", "interval", "opening_hours", "duration", "wheelchair"], "geometry": ["relation"], "tags": {"type": "route", "route": "train"}, "name": "Train Route"}, - "type/route/tram": {"icon": "iD-route-tram", "fields": ["name", "ref_route", "operator", "network", "to", "from"], "moreFields": ["colour", "interval", "opening_hours", "duration", "wheelchair"], "geometry": ["relation"], "tags": {"type": "route", "route": "tram"}, "name": "Tram Route"}, + "type/route/ferry": {"icon": "maki-ferry", "fields": ["name", "ref_route", "operator", "network", "to", "from"], "moreFields": ["interval", "opening_hours", "duration", "wheelchair"], "geometry": ["relation"], "tags": {"type": "route", "route": "ferry"}, "name": "Ferry Route"}, + "type/route/foot": {"icon": "temaki-pedestrian", "fields": ["name", "ref_route", "operator", "network_foot", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "foot"}, "name": "Foot Route"}, + "type/route/hiking": {"icon": "fas-hiking", "fields": ["name", "ref_route", "operator", "network_foot", "description", "distance", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "hiking"}, "name": "Hiking Route"}, + "type/route/horse": {"icon": "maki-horse-riding", "fields": ["name", "ref_route", "operator", "network_horse", "description", "distance", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "horse"}, "name": "Riding Route"}, + "type/route/light_rail": {"icon": "temaki-light_rail", "fields": ["name", "ref_route", "operator", "network", "to", "from"], "moreFields": ["colour", "interval", "opening_hours", "duration", "wheelchair"], "geometry": ["relation"], "tags": {"type": "route", "route": "light_rail"}, "name": "Light Rail Route"}, + "type/route/pipeline": {"icon": "iD-pipeline-line", "fields": ["name", "ref_route", "operator", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "pipeline"}, "name": "Pipeline Route"}, + "type/route/piste": {"icon": "fas-skiing", "fields": ["name", "piste/type", "colour", "ref_route", "operator", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "piste"}, "name": "Piste/Ski Route"}, + "type/route/power": {"icon": "iD-power-line", "fields": ["name", "ref_route", "operator", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "power"}, "name": "Power Route"}, + "type/route/road": {"icon": "iD-highway-unclassified", "fields": ["name", "ref_route", "network_road", "to", "from"], "geometry": ["relation"], "tags": {"type": "route", "route": "road"}, "name": "Road Route"}, + "type/route/subway": {"icon": "temaki-subway", "fields": ["name", "ref_route", "operator", "network", "to", "from"], "moreFields": ["colour", "interval", "opening_hours", "duration", "wheelchair"], "geometry": ["relation"], "tags": {"type": "route", "route": "subway"}, "name": "Subway Route"}, + "type/route/train": {"icon": "iD-railway-rail", "fields": ["name", "ref_route", "operator", "network", "to", "from"], "moreFields": ["colour", "interval", "opening_hours", "duration", "wheelchair"], "geometry": ["relation"], "tags": {"type": "route", "route": "train"}, "name": "Train Route"}, + "type/route/tram": {"icon": "temaki-tram", "fields": ["name", "ref_route", "operator", "network", "to", "from"], "moreFields": ["colour", "interval", "opening_hours", "duration", "wheelchair"], "geometry": ["relation"], "tags": {"type": "route", "route": "tram"}, "name": "Tram Route"}, "type/site": {"icon": "iD-relation", "fields": ["name", "site"], "geometry": ["relation"], "tags": {"type": "site"}, "name": "Site"}, - "type/waterway": {"icon": "iD-route-water", "fields": ["name", "waterway", "ref"], "geometry": ["relation"], "tags": {"type": "waterway"}, "name": "Waterway"}, + "type/waterway": {"icon": "iD-waterway-stream", "fields": ["name", "waterway", "ref"], "geometry": ["relation"], "tags": {"type": "waterway"}, "name": "Waterway"}, "waterway/riverbank": {"icon": "maki-water", "geometry": ["area"], "tags": {"waterway": "riverbank"}, "name": "Riverbank", "searchable": false}, "waterway/boatyard": {"icon": "maki-harbor", "fields": ["name", "operator"], "moreFields": ["address", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["area", "vertex", "point"], "tags": {"waterway": "boatyard"}, "name": "Boatyard"}, "waterway/canal": {"icon": "iD-waterway-canal", "fields": ["name", "width", "intermittent"], "moreFields": ["salt"], "geometry": ["line"], "tags": {"waterway": "canal"}, "name": "Canal"}, diff --git a/data/presets/presets/type/route/bicycle.json b/data/presets/presets/type/route/bicycle.json index 2a26657e7..e905a29eb 100644 --- a/data/presets/presets/type/route/bicycle.json +++ b/data/presets/presets/type/route/bicycle.json @@ -1,11 +1,11 @@ { - "icon": "iD-route-bicycle", + "icon": "maki-bicycle", "fields": [ "name", "ref_route", "network_bicycle", "cycle_network", - "to", + "to", "from" ], "geometry": [ diff --git a/data/presets/presets/type/route/bus.json b/data/presets/presets/type/route/bus.json index 62ddb64fc..838a375f4 100644 --- a/data/presets/presets/type/route/bus.json +++ b/data/presets/presets/type/route/bus.json @@ -1,5 +1,5 @@ { - "icon": "iD-route-bus", + "icon": "maki-bus", "fields": [ "name", "ref_route", diff --git a/data/presets/presets/type/route/ferry.json b/data/presets/presets/type/route/ferry.json index 91152dde7..44ffb38cb 100644 --- a/data/presets/presets/type/route/ferry.json +++ b/data/presets/presets/type/route/ferry.json @@ -1,5 +1,5 @@ { - "icon": "iD-route-ferry", + "icon": "maki-ferry", "fields": [ "name", "ref_route", diff --git a/data/presets/presets/type/route/foot.json b/data/presets/presets/type/route/foot.json index f8c841a91..3bb4739a0 100644 --- a/data/presets/presets/type/route/foot.json +++ b/data/presets/presets/type/route/foot.json @@ -1,11 +1,11 @@ { - "icon": "iD-route-foot", + "icon": "temaki-pedestrian", "fields": [ "name", "ref_route", "operator", "network_foot", - "to", + "to", "from" ], "geometry": [ diff --git a/data/presets/presets/type/route/hiking.json b/data/presets/presets/type/route/hiking.json index a18d19517..e53811c2a 100644 --- a/data/presets/presets/type/route/hiking.json +++ b/data/presets/presets/type/route/hiking.json @@ -1,5 +1,5 @@ { - "icon": "iD-route-foot", + "icon": "fas-hiking", "fields": [ "name", "ref_route", diff --git a/data/presets/presets/type/route/horse.json b/data/presets/presets/type/route/horse.json index d4501ff03..9b8789351 100644 --- a/data/presets/presets/type/route/horse.json +++ b/data/presets/presets/type/route/horse.json @@ -1,5 +1,5 @@ { - "icon": "iD-route-horse", + "icon": "maki-horse-riding", "fields": [ "name", "ref_route", @@ -7,7 +7,7 @@ "network_horse", "description", "distance", - "to", + "to", "from" ], "geometry": [ diff --git a/data/presets/presets/type/route/light_rail.json b/data/presets/presets/type/route/light_rail.json index 1dad43bf8..3d68b665b 100644 --- a/data/presets/presets/type/route/light_rail.json +++ b/data/presets/presets/type/route/light_rail.json @@ -1,5 +1,5 @@ { - "icon": "iD-route-light-rail", + "icon": "temaki-light_rail", "fields": [ "name", "ref_route", diff --git a/data/presets/presets/type/route/pipeline.json b/data/presets/presets/type/route/pipeline.json index d15c7547b..b3a666848 100644 --- a/data/presets/presets/type/route/pipeline.json +++ b/data/presets/presets/type/route/pipeline.json @@ -1,10 +1,10 @@ { - "icon": "iD-route-pipeline", + "icon": "iD-pipeline-line", "fields": [ "name", "ref_route", "operator", - "to", + "to", "from" ], "geometry": [ diff --git a/data/presets/presets/type/route/piste.json b/data/presets/presets/type/route/piste.json index 7f478bd04..0176f2ec6 100644 --- a/data/presets/presets/type/route/piste.json +++ b/data/presets/presets/type/route/piste.json @@ -1,12 +1,12 @@ { - "icon": "iD-route-piste", + "icon": "fas-skiing", "fields": [ "name", "piste/type", "colour", "ref_route", "operator", - "to", + "to", "from" ], "geometry": [ diff --git a/data/presets/presets/type/route/power.json b/data/presets/presets/type/route/power.json index 9689d02bb..58927f92f 100644 --- a/data/presets/presets/type/route/power.json +++ b/data/presets/presets/type/route/power.json @@ -1,10 +1,10 @@ { - "icon": "iD-route-power", + "icon": "iD-power-line", "fields": [ "name", "ref_route", "operator", - "to", + "to", "from" ], "geometry": [ diff --git a/data/presets/presets/type/route/road.json b/data/presets/presets/type/route/road.json index 21908c406..bf874982b 100644 --- a/data/presets/presets/type/route/road.json +++ b/data/presets/presets/type/route/road.json @@ -1,10 +1,10 @@ { - "icon": "iD-route-road", + "icon": "iD-highway-unclassified", "fields": [ "name", "ref_route", "network_road", - "to", + "to", "from" ], "geometry": [ diff --git a/data/presets/presets/type/route/subway.json b/data/presets/presets/type/route/subway.json index b8a302457..6a0fbbae7 100644 --- a/data/presets/presets/type/route/subway.json +++ b/data/presets/presets/type/route/subway.json @@ -1,5 +1,5 @@ { - "icon": "iD-route-subway", + "icon": "temaki-subway", "fields": [ "name", "ref_route", diff --git a/data/presets/presets/type/route/train.json b/data/presets/presets/type/route/train.json index 0f40f7a07..0868434ad 100644 --- a/data/presets/presets/type/route/train.json +++ b/data/presets/presets/type/route/train.json @@ -1,5 +1,5 @@ { - "icon": "iD-route-train", + "icon": "iD-railway-rail", "fields": [ "name", "ref_route", diff --git a/data/presets/presets/type/route/tram.json b/data/presets/presets/type/route/tram.json index 5f19120d9..06952e181 100644 --- a/data/presets/presets/type/route/tram.json +++ b/data/presets/presets/type/route/tram.json @@ -1,5 +1,5 @@ { - "icon": "iD-route-tram", + "icon": "temaki-tram", "fields": [ "name", "ref_route", diff --git a/data/presets/presets/type/waterway.json b/data/presets/presets/type/waterway.json index be2fed808..e7382718d 100644 --- a/data/presets/presets/type/waterway.json +++ b/data/presets/presets/type/waterway.json @@ -1,5 +1,5 @@ { - "icon": "iD-route-water", + "icon": "iD-waterway-stream", "fields": [ "name", "waterway", diff --git a/data/taginfo.json b/data/taginfo.json index c98e28c91..4d0eaf5d5 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -1028,22 +1028,22 @@ {"key": "restriction", "value": "only_u_turn", "description": "🄿 Only U-turn", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-only-u-turn.svg?sanitize=true"}, {"key": "type", "value": "route_master", "description": "🄿 Route Master", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-master.svg?sanitize=true"}, {"key": "type", "value": "route", "description": "🄿 Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route.svg?sanitize=true"}, - {"key": "route", "value": "bicycle", "description": "🄿 Cycle Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-bicycle.svg?sanitize=true"}, - {"key": "route", "value": "bus", "description": "🄿 Bus Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-bus.svg?sanitize=true"}, + {"key": "route", "value": "bicycle", "description": "🄿 Cycle Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"}, + {"key": "route", "value": "bus", "description": "🄿 Bus Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bus-15.svg?sanitize=true"}, {"key": "route", "value": "detour", "description": "🄿 Detour Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-detour.svg?sanitize=true"}, - {"key": "route", "value": "foot", "description": "🄿 Foot Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-foot.svg?sanitize=true"}, - {"key": "route", "value": "hiking", "description": "🄿 Hiking Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-foot.svg?sanitize=true"}, - {"key": "route", "value": "horse", "description": "🄿 Riding Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-horse.svg?sanitize=true"}, - {"key": "route", "value": "light_rail", "description": "🄿 Light Rail Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-light-rail.svg?sanitize=true"}, - {"key": "route", "value": "pipeline", "description": "🄿 Pipeline Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-pipeline.svg?sanitize=true"}, - {"key": "route", "value": "piste", "description": "🄿 Piste/Ski Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-piste.svg?sanitize=true"}, - {"key": "route", "value": "power", "description": "🄿 Power Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-power.svg?sanitize=true"}, - {"key": "route", "value": "road", "description": "🄿 Road Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-road.svg?sanitize=true"}, - {"key": "route", "value": "subway", "description": "🄿 Subway Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-subway.svg?sanitize=true"}, - {"key": "route", "value": "train", "description": "🄿 Train Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-train.svg?sanitize=true"}, - {"key": "route", "value": "tram", "description": "🄿 Tram Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-tram.svg?sanitize=true"}, + {"key": "route", "value": "foot", "description": "🄿 Foot Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/pedestrian.svg?sanitize=true"}, + {"key": "route", "value": "hiking", "description": "🄿 Hiking Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-hiking.svg?sanitize=true"}, + {"key": "route", "value": "horse", "description": "🄿 Riding Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/horse-riding-15.svg?sanitize=true"}, + {"key": "route", "value": "light_rail", "description": "🄿 Light Rail Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/light_rail.svg?sanitize=true"}, + {"key": "route", "value": "pipeline", "description": "🄿 Pipeline Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/pipeline-line.svg?sanitize=true"}, + {"key": "route", "value": "piste", "description": "🄿 Piste/Ski Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-skiing.svg?sanitize=true"}, + {"key": "route", "value": "power", "description": "🄿 Power Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/power-line.svg?sanitize=true"}, + {"key": "route", "value": "road", "description": "🄿 Road Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-unclassified.svg?sanitize=true"}, + {"key": "route", "value": "subway", "description": "🄿 Subway Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/subway.svg?sanitize=true"}, + {"key": "route", "value": "train", "description": "🄿 Train Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-rail.svg?sanitize=true"}, + {"key": "route", "value": "tram", "description": "🄿 Tram Route", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tram.svg?sanitize=true"}, {"key": "type", "value": "site", "description": "🄿 Site", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/relation.svg?sanitize=true"}, - {"key": "type", "value": "waterway", "description": "🄿 Waterway", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-water.svg?sanitize=true"}, + {"key": "type", "value": "waterway", "description": "🄿 Waterway", "object_types": ["relation"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/waterway-stream.svg?sanitize=true"}, {"key": "waterway", "value": "riverbank", "description": "🄿 Riverbank (unsearchable), 🄳 ➜ natural=water + water=river", "object_types": ["area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"}, {"key": "waterway", "value": "boatyard", "description": "🄿 Boatyard", "object_types": ["area", "node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/harbor-15.svg?sanitize=true"}, {"key": "waterway", "value": "canal", "description": "🄿 Canal", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/waterway-canal.svg?sanitize=true"}, diff --git a/modules/ui/entity_editor.js b/modules/ui/entity_editor.js index 1a58a27d2..ba7f4857d 100644 --- a/modules/ui/entity_editor.js +++ b/modules/ui/entity_editor.js @@ -152,7 +152,7 @@ export function uiEntityEditor(context) { }); body.select('.preset-list-item button') - .call(uiPresetIcon() + .call(uiPresetIcon(context) .geometry(context.geometry(_entityID)) .preset(_activePreset) ); diff --git a/modules/ui/preset_icon.js b/modules/ui/preset_icon.js index 87150053d..e8d7a6c0f 100644 --- a/modules/ui/preset_icon.js +++ b/modules/ui/preset_icon.js @@ -3,7 +3,7 @@ import { select as d3_select } from 'd3-selection'; import { svgIcon, svgTagClasses } from '../svg'; import { utilFunctor } from '../util'; -export function uiPresetIcon() { +export function uiPresetIcon(context) { var preset, geometry, sizeClass = 'medium'; function isSmall() { @@ -119,30 +119,87 @@ export function uiPresetIcon() { .attr('height', h) .attr('viewBox', '0 0 ' + w + ' ' + h); - lineEnter.append('path') - .attr('d', 'M' + x1 + ' ' + y + ' L' + x2 + ' ' + y) - .attr('class', 'line casing'); - lineEnter.append('path') - .attr('d', 'M' + x1 + ' ' + y + ' L' + x2 + ' ' + y) - .attr('class', 'line stroke'); - lineEnter.append('circle') - .attr('class', 'vertex') - .attr('cx', x1 - 1) - .attr('cy', y) - .attr('r', r); - lineEnter.append('circle') - .attr('class', 'vertex') - .attr('cx', x2 + 1) - .attr('cy', y) - .attr('r', r); + ['casing', 'stroke'].forEach(function(klass) { + lineEnter.append('path') + .attr('d', 'M' + x1 + ' ' + y + ' L' + x2 + ' ' + y) + .attr('class', 'line ' + klass); + }); + + [[x1 - 1, y], [x2 + 1, y]].forEach(function(loc) { + lineEnter.append('circle') + .attr('class', 'vertex') + .attr('cx', loc[0]) + .attr('cy', loc[1]) + .attr('r', r); + }); } + function renderRoute(routeEnter) { + var d = isSmall() ? 40 : 60; + // draw the route parametrically + var w = d, + h = d, + y1 = Math.round(d*0.80), + y2 = Math.round(d*0.68), + l = Math.round(d*0.6), + r = 2; + var x1 = (w - l)/2, x2 = x1 + l/3, x3 = x2 + l/3, x4 = x3 + l/3; + + routeEnter = routeEnter + .append('svg') + .attr('class', 'preset-icon-route') + .attr('width', w) + .attr('height', h) + .attr('viewBox', '0 0 ' + w + ' ' + h); + + ['casing', 'stroke'].forEach(function(klass) { + routeEnter.append('path') + .attr('d', 'M' + x1 + ' ' + y1 + ' L' + x2 + ' ' + y2) + .attr('class', 'segment0 line ' + klass); + routeEnter.append('path') + .attr('d', 'M' + x2 + ' ' + y2 + ' L' + x3 + ' ' + y1) + .attr('class', 'segment1 line ' + klass); + routeEnter.append('path') + .attr('d', 'M' + x3 + ' ' + y1 + ' L' + x4 + ' ' + y2) + .attr('class', 'segment2 line ' + klass); + }); + + [[x1, y1], [x2, y2], [x3, y1], [x4, y2]].forEach(function(loc) { + routeEnter.append('circle') + .attr('class', 'vertex') + .attr('cx', loc[0]) + .attr('cy', loc[1]) + .attr('r', r); + }); + } + + var routeSegements = { + bicycle: ['highway/cycleway', 'highway/cycleway', 'highway/cycleway'], + bus: ['highway/unclassified', 'highway/secondary', 'highway/primary'], + detour: ['highway/tertiary', 'highway/residential', 'highway/unclassified'], + ferry: ['route/ferry', 'route/ferry', 'route/ferry'], + foot: ['highway/footway', 'highway/footway', 'highway/footway'], + hiking: ['highway/path', 'highway/path', 'highway/path'], + horse: ['highway/bridleway', 'highway/bridleway', 'highway/bridleway'], + light_rail: ['railway/light_rail', 'railway/light_rail', 'railway/light_rail'], + pipeline: ['man_made/pipeline', 'man_made/pipeline', 'man_made/pipeline'], + piste: ['piste/downhill', 'piste/hike', 'piste/nordic'], + power: ['power/line', 'power/line', 'power/line'], + road: ['highway/secondary', 'highway/primary', 'highway/trunk'], + subway: ['railway/subway', 'railway/subway', 'railway/subway'], + train: ['railway/rail', 'railway/rail', 'railway/rail'], + tram: ['railway/tram', 'railway/tram', 'railway/tram'], + waterway: ['waterway/stream', 'waterway/stream', 'waterway/stream'] + }; function render() { var p = preset.apply(this, arguments); var isFallback = isSmall() && p.isFallback && p.isFallback(); var geom = geometry ? geometry.apply(this, arguments) : null; + if (geom === 'relation' && p.tags && ((p.tags.type === 'route' && p.tags.route && routeSegements[p.tags.route]) || p.tags.type === 'waterway')) { + geom = 'route'; + } var imageURL = p.imageURL; var picon = imageURL ? null : getIcon(p, geom); var isMaki = picon && /^maki-/.test(picon); @@ -154,7 +211,8 @@ export function uiPresetIcon() { var drawVertex = picon !== null && geom === 'vertex' && (!isSmall() || !isFallback); var drawLine = picon && geom === 'line' && !isFallback && !isCategory; var drawArea = picon && geom === 'area' && !isFallback; - var isFramed = (drawVertex || drawArea || drawLine); + var drawRoute = picon && geom === 'route'; + var isFramed = (drawVertex || drawArea || drawLine || drawRoute); var tags = !isCategory ? p.setTags({}, geom) : {}; for (var k in tags) { @@ -244,6 +302,31 @@ export function uiPresetIcon() { line.selectAll('path.casing') .attr('class', 'line casing ' + tagClasses); + var route = container.selectAll('.preset-icon-route') + .data(drawRoute ? [0] : []); + + route.exit() + .remove(); + + var routeEnter = route.enter(); + renderRoute(routeEnter); + + route = routeEnter.merge(route); + + if (drawRoute) { + var routeType = p.tags.type === 'waterway' ? 'waterway' : p.tags.route; + var segmentPresetIDs = routeSegements[routeType]; + for (var segmentIndex in segmentPresetIDs) { + var segmentPreset = context.presets().item(segmentPresetIDs[segmentIndex]); + var segmentTagClasses = svgTagClasses().getClassesString(segmentPreset.tags, ''); + route.selectAll('path.stroke.segment' + segmentIndex) + .attr('class', 'segment' + segmentIndex + ' line stroke ' + segmentTagClasses); + route.selectAll('path.casing.segment' + segmentIndex) + .attr('class', 'segment' + segmentIndex + ' line casing ' + segmentTagClasses); + } + + } + var icon = container.selectAll('.preset-icon') .data(picon ? [0] : []); diff --git a/modules/ui/preset_list.js b/modules/ui/preset_list.js index e83a0df30..d91d02768 100644 --- a/modules/ui/preset_list.js +++ b/modules/ui/preset_list.js @@ -292,7 +292,7 @@ export function uiPresetList(context) { .append('button') .attr('class', 'preset-list-button') .classed('expanded', false) - .call(uiPresetIcon() + .call(uiPresetIcon(context) .geometry(context.geometry(_entityID)) .preset(preset)) .on('click', click) @@ -380,7 +380,7 @@ export function uiPresetList(context) { var button = wrap.append('button') .attr('class', 'preset-list-button') - .call(uiPresetIcon() + .call(uiPresetIcon(context) .geometry(context.geometry(_entityID)) .preset(preset)) .on('click', item.choose) diff --git a/modules/ui/tools/add_favorite.js b/modules/ui/tools/add_favorite.js index 89f62388b..c921bc7f6 100644 --- a/modules/ui/tools/add_favorite.js +++ b/modules/ui/tools/add_favorite.js @@ -173,7 +173,7 @@ export function uiToolAddFavorite(context) { buttonsEnter .each(function(d) { d3_select(this) - .call(uiPresetIcon() + .call(uiPresetIcon(context) .geometry((d.geometry === 'point' && !d.preset.matchGeometry(d.geometry)) ? 'vertex' : d.geometry) .preset(d.preset) .sizeClass('small') diff --git a/modules/ui/tools/add_recent.js b/modules/ui/tools/add_recent.js index 5965bd263..9db1803c8 100644 --- a/modules/ui/tools/add_recent.js +++ b/modules/ui/tools/add_recent.js @@ -210,7 +210,7 @@ export function uiToolAddRecent(context) { buttonsEnter .each(function(d) { d3_select(this) - .call(uiPresetIcon() + .call(uiPresetIcon(context) .geometry((d.geometry === 'point' && !d.preset.matchGeometry(d.geometry)) ? 'vertex' : d.geometry) .preset(d.preset) .sizeClass('small') diff --git a/modules/ui/tools/search_add.js b/modules/ui/tools/search_add.js index 66202ca61..682df3de1 100644 --- a/modules/ui/tools/search_add.js +++ b/modules/ui/tools/search_add.js @@ -418,7 +418,7 @@ export function uiToolSearchAdd(context) { row.each(function(d) { d3_select(this).call( - uiPresetIcon() + uiPresetIcon(context) .geometry(d.geometry) .preset(d.preset || d.presets[0]) .sizeClass('small') diff --git a/svg/iD-sprite/presets/route-bicycle.svg b/svg/iD-sprite/presets/route-bicycle.svg deleted file mode 100644 index 9c25ff0da..000000000 --- a/svg/iD-sprite/presets/route-bicycle.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/svg/iD-sprite/presets/route-bus.svg b/svg/iD-sprite/presets/route-bus.svg deleted file mode 100644 index b68d6dffa..000000000 --- a/svg/iD-sprite/presets/route-bus.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/svg/iD-sprite/presets/route-detour.svg b/svg/iD-sprite/presets/route-detour.svg index 93dc5137e..8231c19b0 100644 --- a/svg/iD-sprite/presets/route-detour.svg +++ b/svg/iD-sprite/presets/route-detour.svg @@ -1,23 +1,7 @@ - - - - - - - - - - - - - - - - - + - \ No newline at end of file + diff --git a/svg/iD-sprite/presets/route-ferry.svg b/svg/iD-sprite/presets/route-ferry.svg deleted file mode 100644 index 3c8ba1f75..000000000 --- a/svg/iD-sprite/presets/route-ferry.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/svg/iD-sprite/presets/route-foot.svg b/svg/iD-sprite/presets/route-foot.svg deleted file mode 100644 index 0fef5de75..000000000 --- a/svg/iD-sprite/presets/route-foot.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/svg/iD-sprite/presets/route-horse.svg b/svg/iD-sprite/presets/route-horse.svg deleted file mode 100644 index 717a2e456..000000000 --- a/svg/iD-sprite/presets/route-horse.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/svg/iD-sprite/presets/route-light-rail.svg b/svg/iD-sprite/presets/route-light-rail.svg deleted file mode 100644 index e25e204f1..000000000 --- a/svg/iD-sprite/presets/route-light-rail.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/svg/iD-sprite/presets/route-line.svg b/svg/iD-sprite/presets/route-line.svg deleted file mode 100644 index ecfb9a9e6..000000000 --- a/svg/iD-sprite/presets/route-line.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/svg/iD-sprite/presets/route-pipeline.svg b/svg/iD-sprite/presets/route-pipeline.svg deleted file mode 100644 index 9ab78c031..000000000 --- a/svg/iD-sprite/presets/route-pipeline.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/svg/iD-sprite/presets/route-piste.svg b/svg/iD-sprite/presets/route-piste.svg deleted file mode 100644 index 9cc4cd626..000000000 --- a/svg/iD-sprite/presets/route-piste.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/svg/iD-sprite/presets/route-power.svg b/svg/iD-sprite/presets/route-power.svg deleted file mode 100644 index baf9121ac..000000000 --- a/svg/iD-sprite/presets/route-power.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/svg/iD-sprite/presets/route-road.svg b/svg/iD-sprite/presets/route-road.svg deleted file mode 100644 index 6ab66d4e6..000000000 --- a/svg/iD-sprite/presets/route-road.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/svg/iD-sprite/presets/route-subway.svg b/svg/iD-sprite/presets/route-subway.svg deleted file mode 100644 index b39b0e6cd..000000000 --- a/svg/iD-sprite/presets/route-subway.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/svg/iD-sprite/presets/route-train.svg b/svg/iD-sprite/presets/route-train.svg deleted file mode 100644 index 78feb1f20..000000000 --- a/svg/iD-sprite/presets/route-train.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/svg/iD-sprite/presets/route-tram.svg b/svg/iD-sprite/presets/route-tram.svg deleted file mode 100644 index d54b356cb..000000000 --- a/svg/iD-sprite/presets/route-tram.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/svg/iD-sprite/presets/route-water.svg b/svg/iD-sprite/presets/route-water.svg deleted file mode 100644 index 3031ca461..000000000 --- a/svg/iD-sprite/presets/route-water.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file From 60ce58694c6533a861bea62e1d0aaff1a28d0891 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Tue, 9 Apr 2019 09:53:31 -0700 Subject: [PATCH 48/50] Add Screens field to Cinema preset --- data/presets.yaml | 5 +++++ data/presets/fields.json | 1 + data/presets/fields/screen.json | 7 +++++++ data/presets/presets.json | 2 +- data/presets/presets/amenity/cinema.json | 5 +++-- data/taginfo.json | 1 + dist/locales/en.json | 4 ++++ 7 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 data/presets/fields/screen.json diff --git a/data/presets.yaml b/data/presets.yaml index fabd7a819..5429fdb13 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -1597,6 +1597,11 @@ en: sanitary_dump_station: # sanitary_dump_station=* label: Toilet Disposal + screen: + # screen=* + label: Screens + # screen field placeholder + placeholder: '1, 4, 8…' scuba_diving: # 'scuba_diving:=*' label: Services diff --git a/data/presets/fields.json b/data/presets/fields.json index 5ee4c0427..877fc76b5 100644 --- a/data/presets/fields.json +++ b/data/presets/fields.json @@ -291,6 +291,7 @@ "sac_scale": {"key": "sac_scale", "type": "combo", "label": "Hiking Difficulty", "placeholder": "Mountain Hiking, Alpine Hiking...", "strings": {"options": {"hiking": "T1: Hiking", "mountain_hiking": "T2: Mountain Hiking", "demanding_mountain_hiking": "T3: Demanding Mountain Hiking", "alpine_hiking": "T4: Alpine Hiking", "demanding_alpine_hiking": "T5: Demanding Alpine Hiking", "difficult_alpine_hiking": "T6: Difficult Alpine Hiking"}}}, "salt": {"key": "salt", "type": "check", "label": "Salt"}, "sanitary_dump_station": {"key": "sanitary_dump_station", "type": "check", "label": "Toilet Disposal"}, + "screen": {"key": "screen", "type": "number", "label": "Screens", "placeholder": "1, 4, 8…", "minValue": 0}, "scuba_diving": {"key": "scuba_diving:", "type": "multiCombo", "label": "Services", "options": ["repair", "courses", "rental", "filling", "air_filling", "nitrox_filling", "trimix_filling", "oxygen_filling"]}, "seamark/beacon_isolated_danger/shape": {"key": "seamark:beacon_isolated_danger:shape", "type": "combo", "label": "Shape"}, "seamark/beacon_lateral/category": {"key": "seamark:beacon_lateral:category", "type": "combo", "label": "Category", "strings": {"options": {"port": "Port", "starboard": "Starboard", "waterway_left": "Waterway Left", "waterway_right": "Waterway Right", "danger_left": "Danger Left", "danger_right": "Danger Right"}}}, diff --git a/data/presets/fields/screen.json b/data/presets/fields/screen.json new file mode 100644 index 000000000..0ab289eb4 --- /dev/null +++ b/data/presets/fields/screen.json @@ -0,0 +1,7 @@ +{ + "key": "screen", + "type": "number", + "label": "Screens", + "placeholder": "1, 4, 8…", + "minValue": 0 +} diff --git a/data/presets/presets.json b/data/presets/presets.json index 93ca5ae12..705a90cbc 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -77,7 +77,7 @@ "amenity/casino": {"icon": "maki-casino", "fields": ["name", "operator", "address", "building_area", "opening_hours", "smoking"], "moreFields": ["air_conditioning", "payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["gambling", "roulette", "craps", "poker", "blackjack"], "tags": {"amenity": "casino"}, "name": "Casino"}, "amenity/charging_station": {"icon": "fas-charging-station", "fields": ["name", "operator", "capacity", "fee", "payment_multi"], "geometry": ["point"], "tags": {"amenity": "charging_station"}, "terms": ["EV", "Electric Vehicle", "Supercharger"], "name": "Charging Station"}, "amenity/childcare": {"icon": "fas-child", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "moreFields": ["payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["daycare", "orphanage", "playgroup"], "tags": {"amenity": "childcare"}, "name": "Nursery/Childcare"}, - "amenity/cinema": {"icon": "maki-cinema", "fields": ["name", "address", "building_area", "opening_hours", "payment_multi"], "moreFields": ["air_conditioning", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["drive-in", "film", "flick", "movie", "theater", "picture", "show", "screen"], "tags": {"amenity": "cinema"}, "name": "Cinema"}, + "amenity/cinema": {"icon": "maki-cinema", "fields": ["name", "address", "screen", "building_area", "opening_hours", "payment_multi"], "moreFields": ["air_conditioning", "email", "fax", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["drive-in", "film", "flick", "movie", "theater", "picture", "show", "screen"], "tags": {"amenity": "cinema"}, "name": "Cinema"}, "amenity/clinic": {"icon": "maki-doctor", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "moreFields": ["air_conditioning", "payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["medical", "urgentcare"], "tags": {"amenity": "clinic"}, "addTags": {"amenity": "clinic", "healthcare": "clinic"}, "removeTags": {"amenity": "clinic", "healthcare": "clinic"}, "reference": {"key": "amenity", "value": "clinic"}, "name": "Clinic"}, "amenity/clinic/abortion": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": [], "tags": {"amenity": "clinic", "healthcare": "clinic", "healthcare:speciality": "abortion"}, "reference": {"key": "amenity", "value": "clinic"}, "name": "Abortion Clinic"}, "amenity/clinic/fertility": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["egg", "fertility", "reproductive", "sperm", "ovulation"], "tags": {"amenity": "clinic", "healthcare": "clinic", "healthcare:speciality": "fertility"}, "reference": {"key": "amenity", "value": "clinic"}, "name": "Fertility Clinic"}, diff --git a/data/presets/presets/amenity/cinema.json b/data/presets/presets/amenity/cinema.json index 06567c413..fdb7de0cd 100644 --- a/data/presets/presets/amenity/cinema.json +++ b/data/presets/presets/amenity/cinema.json @@ -3,16 +3,17 @@ "fields": [ "name", "address", + "screen", "building_area", "opening_hours", "payment_multi" ], "moreFields": [ "air_conditioning", - "website", - "phone", "email", "fax", + "phone", + "website", "wheelchair" ], "geometry": [ diff --git a/data/taginfo.json b/data/taginfo.json index 4d0eaf5d5..bea907d9c 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -1487,6 +1487,7 @@ {"key": "sac_scale", "value": "difficult_alpine_hiking", "description": "🄵 Hiking Difficulty"}, {"key": "salt", "description": "🄵 Salt"}, {"key": "sanitary_dump_station", "description": "🄵 Toilet Disposal"}, + {"key": "screen", "description": "🄵 Screens"}, {"key": "scuba_diving:", "description": "🄵 Services"}, {"key": "seamark:beacon_isolated_danger:shape", "description": "🄵 Shape"}, {"key": "seamark:beacon_lateral:category", "value": "port", "description": "🄵 Category"}, diff --git a/dist/locales/en.json b/dist/locales/en.json index 30fea095e..91947d387 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -3541,6 +3541,10 @@ "sanitary_dump_station": { "label": "Toilet Disposal" }, + "screen": { + "label": "Screens", + "placeholder": "1, 4, 8…" + }, "scuba_diving": { "label": "Services" }, From 89d8f887be9d27c81d3bc713e06db584bc8e820e Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Tue, 9 Apr 2019 14:04:52 -0700 Subject: [PATCH 49/50] Allow disconnecting multiple selected vertices at once (close #6164) --- modules/operations/disconnect.js | 47 ++++++++++++++++++++++++-------- 1 file changed, 36 insertions(+), 11 deletions(-) diff --git a/modules/operations/disconnect.js b/modules/operations/disconnect.js index 55a12831c..0b35597f7 100644 --- a/modules/operations/disconnect.js +++ b/modules/operations/disconnect.js @@ -5,32 +5,52 @@ import { behaviorOperation } from '../behavior/index'; export function operationDisconnect(selectedIDs, context) { var vertices = [], - ways = []; + ways = [], + others = []; selectedIDs.forEach(function(id) { if (context.geometry(id) === 'vertex') { vertices.push(id); - } else { + } else if (context.entity(id).type === 'way'){ ways.push(id); + } else { + others.push(id); } }); - var entityID = vertices[0]; - var action = actionDisconnect(entityID); + var actions = []; - if (entityID && selectedIDs.length > 1) { - var ids = selectedIDs.filter(function(id) { return id !== entityID; }); - action.limitWays(ids); - } + vertices.forEach(function(vertexID) { + var action = actionDisconnect(vertexID); + + if (ways.length > 0) { + var waysIDsForVertex = ways.filter(function(wayID) { + return context.graph().entity(wayID).nodes.includes(vertexID); + }); + action.limitWays(waysIDsForVertex); + } + actions.push(action); + }); var operation = function() { - context.perform(action, operation.annotation()); + context.perform(function(graph) { + actions.forEach(function(action) { + graph = action(graph); + }); + return graph; + }, operation.annotation()); }; operation.available = function() { - return vertices.length === 1 && ways.every(function(way) { return context.graph().entity(way).nodes.includes(vertices[0]); }); + return vertices.length > 0 && + others.length === 0 && + (ways.length === 0 || ways.every(function(way) { + return vertices.some(function(vertex) { + return context.graph().entity(way).nodes.includes(vertex); + }); + })); }; @@ -39,7 +59,12 @@ export function operationDisconnect(selectedIDs, context) { if (selectedIDs.some(context.hasHiddenConnections)) { reason = 'connected_to_hidden'; } - return action.disabled(context.graph()) || reason; + for (var actionIndex in actions) { + var action = actions[actionIndex]; + var actionReason = action.disabled(context.graph()); + if (actionReason) return actionReason; + } + return reason; }; From df7a2f978e7cabc3d4e99387b62251a2746033c5 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Tue, 9 Apr 2019 19:07:00 -0700 Subject: [PATCH 50/50] Use highway tags for golf paths and cart paths (close #6165) Offer to upgrade golf paths missing highway tags --- css/50_misc.css | 42 ------------------- data/presets.yaml | 8 +--- data/presets/categories.json | 1 - data/presets/categories/golf.json | 1 - data/presets/presets.json | 5 +-- data/presets/presets/golf/cartpath.json | 14 ++++++- .../presets/golf/cartpath_service.json | 20 --------- data/presets/presets/golf/path.json | 9 ++++ data/taginfo.json | 5 ++- dist/locales/en.json | 4 -- 10 files changed, 28 insertions(+), 81 deletions(-) delete mode 100644 data/presets/presets/golf/cartpath_service.json diff --git a/css/50_misc.css b/css/50_misc.css index dbf76d81d..6d098ba7b 100644 --- a/css/50_misc.css +++ b/css/50_misc.css @@ -414,45 +414,3 @@ path.fill.tag-building { stroke: rgba(224, 110, 95, 0.3); fill: rgba(224, 110, 95, 0.3); } - - -/* "Special" paths - highways that aren't highways */ -.preset-icon .icon.tag-golf-path { - color: #988; - fill: #dca; -} - -path.line.shadow.tag-golf-path { - stroke-width: 16; -} -path.line.casing.tag-golf-path { - stroke: #dca; - stroke-width: 5; - stroke-linecap: round; - stroke-dasharray: none; -} -path.line.stroke.tag-golf-path { - stroke: #988; - stroke-width: 3; - stroke-linecap: butt; - stroke-dasharray: 6, 6; -} - -.low-zoom path.line.shadow.tag-golf-path { - stroke-width: 12; -} -.low-zoom path.line.casing.tag-golf-path { - stroke-width: 3; -} -.low-zoom path.line.stroke.tag-golf-path { - stroke-width: 1; - stroke-linecap: butt; - stroke-dasharray: 3, 3; -} - -g.midpoint.tag-golf-path .fill { - fill: #fff; - stroke: #333; - stroke-opacity: .8; - opacity: .8; -} diff --git a/data/presets.yaml b/data/presets.yaml index 5429fdb13..05a4c37c9 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -3940,13 +3940,9 @@ en: # 'terms: hazard,bunker' terms: '' golf/cartpath: - # 'golf=cartpath, golf_cart=designated' + # golf=cartpath name: Golf Cartpath terms: '' - golf/cartpath_service: - # 'highway=service, golf=cartpath, golf_cart=designated' - name: Golf Cartpath / Service Road - terms: '' golf/driving_range: # 'golf=driving_range, landuse=grass' name: Driving Range @@ -3968,7 +3964,7 @@ en: name: Lateral Water Hazard terms: '' golf/path: - # 'golf=path, foot=designated' + # golf=path name: Golf Walking Path terms: '' golf/rough: diff --git a/data/presets/categories.json b/data/presets/categories.json index 72e385243..bcb42b85d 100644 --- a/data/presets/categories.json +++ b/data/presets/categories.json @@ -41,7 +41,6 @@ "golf/driving_range", "golf/hole", "golf/cartpath", - "golf/cartpath_service", "golf/path" ] }, diff --git a/data/presets/categories/golf.json b/data/presets/categories/golf.json index 8b175b4ed..4b3212fc3 100644 --- a/data/presets/categories/golf.json +++ b/data/presets/categories/golf.json @@ -12,7 +12,6 @@ "golf/driving_range", "golf/hole", "golf/cartpath", - "golf/cartpath_service", "golf/path" ] } diff --git a/data/presets/presets.json b/data/presets/presets.json index 705a90cbc..8d7b87f25 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -395,14 +395,13 @@ "entrance": {"icon": "maki-entrance-alt1", "geometry": ["vertex"], "terms": ["entrance", "exit", "door"], "tags": {"entrance": "*"}, "fields": ["entrance", "door", "access_simple", "address"], "matchScore": 0.8, "name": "Entrance/Exit"}, "ford": {"geometry": ["vertex"], "tags": {"ford": "yes"}, "name": "Ford"}, "golf/bunker": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "bunker", "natural": "sand"}, "terms": ["hazard", "bunker"], "reference": {"key": "golf", "value": "bunker"}, "name": "Sand Trap"}, - "golf/cartpath_service": {"icon": "maki-golf", "fields": ["{golf/path}", "maxspeed"], "geometry": ["line"], "tags": {"highway": "service", "golf": "cartpath", "golf_cart": "designated"}, "reference": {"key": "golf", "value": "cartpath"}, "name": "Golf Cartpath / Service Road"}, - "golf/cartpath": {"icon": "maki-golf", "fields": ["{golf/path}"], "geometry": ["line"], "tags": {"golf": "cartpath", "golf_cart": "designated"}, "reference": {"key": "golf", "value": "cartpath"}, "name": "Golf Cartpath"}, + "golf/cartpath": {"icon": "maki-golf", "fields": ["{golf/path}", "maxspeed"], "geometry": ["line"], "tags": {"golf": "cartpath"}, "addTags": {"golf": "cartpath", "golf_cart": "designated", "highway": "service"}, "removeTags": {"golf": "cartpath", "golf_cart": "designated", "highway": "service"}, "reference": {"key": "golf", "value": "cartpath"}, "name": "Golf Cartpath"}, "golf/driving_range": {"icon": "maki-golf", "fields": ["name", "capacity"], "geometry": ["area"], "tags": {"golf": "driving_range", "landuse": "grass"}, "reference": {"key": "golf", "value": "driving_range"}, "name": "Driving Range"}, "golf/fairway": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "fairway", "landuse": "grass"}, "reference": {"key": "golf", "value": "fairway"}, "name": "Fairway"}, "golf/green": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "green", "landuse": "grass", "leisure": "pitch", "sport": "golf"}, "reference": {"key": "golf", "value": "green"}, "name": "Putting Green"}, "golf/hole": {"icon": "maki-golf", "fields": ["name", "ref_golf_hole", "par", "handicap"], "geometry": ["line"], "tags": {"golf": "hole"}, "name": "Golf Hole"}, "golf/lateral_water_hazard": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "lateral_water_hazard", "natural": "water"}, "reference": {"key": "golf", "value": "lateral_water_hazard"}, "name": "Lateral Water Hazard"}, - "golf/path": {"icon": "maki-golf", "fields": ["name", "surface", "width", "structure", "incline"], "geometry": ["line"], "tags": {"golf": "path", "foot": "designated"}, "reference": {"key": "golf", "value": "path"}, "name": "Golf Walking Path"}, + "golf/path": {"icon": "maki-golf", "fields": ["name", "surface", "width", "structure", "incline"], "geometry": ["line"], "tags": {"golf": "path"}, "addTags": {"golf": "path", "highway": "path", "foot": "designated"}, "removeTags": {"golf": "path", "highway": "path", "foot": "designated"}, "reference": {"key": "golf", "value": "path"}, "name": "Golf Walking Path"}, "golf/rough": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "rough", "landuse": "grass"}, "reference": {"key": "golf", "value": "rough"}, "name": "Rough"}, "golf/tee": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "tee", "landuse": "grass"}, "terms": ["teeing ground"], "reference": {"key": "golf", "value": "tee"}, "name": "Tee Box"}, "golf/water_hazard": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "water_hazard", "natural": "water"}, "reference": {"key": "golf", "value": "water_hazard"}, "name": "Water Hazard"}, diff --git a/data/presets/presets/golf/cartpath.json b/data/presets/presets/golf/cartpath.json index 45e5892c9..cb469c496 100644 --- a/data/presets/presets/golf/cartpath.json +++ b/data/presets/presets/golf/cartpath.json @@ -1,14 +1,24 @@ { "icon": "maki-golf", "fields": [ - "{golf/path}" + "{golf/path}", + "maxspeed" ], "geometry": [ "line" ], "tags": { + "golf": "cartpath" + }, + "addTags": { "golf": "cartpath", - "golf_cart": "designated" + "golf_cart": "designated", + "highway": "service" + }, + "removeTags": { + "golf": "cartpath", + "golf_cart": "designated", + "highway": "service" }, "reference": { "key": "golf", diff --git a/data/presets/presets/golf/cartpath_service.json b/data/presets/presets/golf/cartpath_service.json deleted file mode 100644 index ff3d463b1..000000000 --- a/data/presets/presets/golf/cartpath_service.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-golf", - "fields": [ - "{golf/path}", - "maxspeed" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "service", - "golf": "cartpath", - "golf_cart": "designated" - }, - "reference": { - "key": "golf", - "value": "cartpath" - }, - "name": "Golf Cartpath / Service Road" -} diff --git a/data/presets/presets/golf/path.json b/data/presets/presets/golf/path.json index 8f4941788..51820a0bc 100644 --- a/data/presets/presets/golf/path.json +++ b/data/presets/presets/golf/path.json @@ -11,7 +11,16 @@ "line" ], "tags": { + "golf": "path" + }, + "addTags": { "golf": "path", + "highway": "path", + "foot": "designated" + }, + "removeTags": { + "golf": "path", + "highway": "path", "foot": "designated" }, "reference": { diff --git a/data/taginfo.json b/data/taginfo.json index bea907d9c..4f66dbb45 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -391,12 +391,12 @@ {"key": "entrance", "description": "🄿 Entrance/Exit, 🄵 Type", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/entrance-alt1-15.svg?sanitize=true"}, {"key": "ford", "value": "yes", "description": "🄿 Ford", "object_types": ["node"]}, {"key": "natural", "value": "sand", "description": "🄿 Sand Trap, 🄿 Sand", "object_types": ["area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"}, - {"key": "golf_cart", "value": "designated", "description": "🄿 Golf Cartpath / Service Road, 🄿 Golf Cartpath", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"}, + {"key": "golf", "value": "cartpath", "description": "🄿 Golf Cartpath", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"}, {"key": "landuse", "value": "grass", "description": "🄿 Driving Range, 🄿 Fairway, 🄿 Rough, 🄿 Tee Box, 🄿 Grass", "object_types": ["area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"}, {"key": "sport", "value": "golf", "description": "🄿 Putting Green", "object_types": ["area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"}, {"key": "golf", "value": "hole", "description": "🄿 Golf Hole", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"}, {"key": "natural", "value": "water", "description": "🄿 Lateral Water Hazard, 🄿 Water Hazard, 🄿 Water", "object_types": ["area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"}, - {"key": "foot", "value": "designated", "description": "🄿 Golf Walking Path, 🄿 Cycle & Foot Path, 🄵 Allowed Access", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"}, + {"key": "golf", "value": "path", "description": "🄿 Golf Walking Path", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"}, {"key": "healthcare", "description": "🄿 Healthcare Facility, 🄵 Type", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, {"key": "healthcare", "value": "alternative", "description": "🄿 Alternative Medicine", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, {"key": "healthcare:speciality", "value": "chiropractic", "description": "🄿 Chiropractor", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, @@ -423,6 +423,7 @@ {"key": "crossing", "value": "marked", "description": "🄿 Marked Crosswalk, 🄿 Marked Cycle Crossing", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/pedestrian.svg?sanitize=true"}, {"key": "highway", "value": "crossing", "description": "🄿 Unmarked Crossing", "object_types": ["node"]}, {"key": "highway", "value": "cycleway", "description": "🄿 Cycle Path", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"}, + {"key": "foot", "value": "designated", "description": "🄿 Cycle & Foot Path, 🄵 Allowed Access", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"}, {"key": "cycleway", "value": "crossing", "description": "🄿 Unmarked Cycle Crossing", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"}, {"key": "highway", "value": "elevator", "description": "🄿 Elevator", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/elevator.svg?sanitize=true"}, {"key": "highway", "value": "footway", "description": "🄿 Foot Path", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/pedestrian.svg?sanitize=true"}, diff --git a/dist/locales/en.json b/dist/locales/en.json index 91947d387..54d854650 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -5630,10 +5630,6 @@ "name": "Sand Trap", "terms": "hazard,bunker" }, - "golf/cartpath_service": { - "name": "Golf Cartpath / Service Road", - "terms": "" - }, "golf/cartpath": { "name": "Golf Cartpath", "terms": ""