diff --git a/CHANGELOG.md b/CHANGELOG.md index 06d107f..bbaa4a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # CHANGELOG +## 3.8.0 + +- Normalize name, address and city of stations if put in uppercase or lowercase exclusively +- Allow to override station data from local file (address, postal code, city, brand, logo) +- Add fuel type on sensor attributes +- Add icon for service +- Sensor entity will now restore last value after a restart if price is not available + +## 3.7.0 + +- Add lat/lon to the output of the service call + ## 3.6.0 - Fix event loop warning diff --git a/README.fr.md b/README.fr.md index e5acc9b..3fcd4f0 100644 --- a/README.fr.md +++ b/README.fr.md @@ -10,7 +10,13 @@ Un service est mis à disposition pour trouver le meilleur prix d'un carburant d ### Ajouter/modifier une station -Faire une PR en ajoutant/modifiant la station dans le fichier [stations_name.json](custom_components/prix_carburant/stations_name.json). Bien vérifier que le champs `Marque` corresponde à une marque existante en respectant la casse. +Faire une PR en ajoutant/modifiant la station dans le fichier [stations_name.json](custom_components/prix_carburant/stations_name.json). Bien vérifier que le champs `brand` corresponde à une marque existante en respectant la casse. Il est possible de surcharger par rapport aux données fournis par l'API les informations suivantes: + +- `name`: Nom de la station +- `brand`: Marque de la station +- `address`: Adresse de la station +- `postal_code`: Code postal de la station +- `city`: Ville de la station ### Ajouter/corriger une image d'entité (entity picture) @@ -326,10 +332,14 @@ card_mod: margin-top: 0em; } ``` + ### Créer une carte et indiquer les stations autour d'un device movible + Note: c'est un exemple donc on peut changer comme on veut. + 1. Créer le sensor avec des stations autour de 'toi' Utiliser le service (action) + ``` template: - trigger: @@ -349,13 +359,14 @@ template: attributes: stations: "{{ stations_feed.stations }}" ``` -Ça donne -![image](https://github.com/user-attachments/assets/fc174513-9a06-4d19-a752-f4e91b16b81e) +Ça donne +![image](https://github.com/user-attachments/assets/fc174513-9a06-4d19-a752-f4e91b16b81e) 2. l'automatisation pour créer des zones qui représentent les stations Important: il faut installer ['spook'](https://github.com/frenck/spook) pour avoir les services/actions 'create zone' et 'delete zone' -Ici par exemple chaque minute une maj (trops je pense) mais on peut aussi utiliser un trigger quand le mobile bouge +Ici par exemple chaque minute une maj (trops je pense) mais on peut aussi utiliser un trigger quand le mobile bouge + ``` alias: Station Zones description: "" @@ -384,11 +395,11 @@ action: longitude: "{{ repeat.item.longitude }}" mode: single ``` + 3. Créer la carte ![image](https://github.com/user-attachments/assets/77be362e-7f2a-4cfd-93ee-2165469a1469) - ``` type: custom:auto-entities card: diff --git a/custom_components/prix_carburant/__init__.py b/custom_components/prix_carburant/__init__.py index ff2ad74..1e945ff 100644 --- a/custom_components/prix_carburant/__init__.py +++ b/custom_components/prix_carburant/__init__.py @@ -4,7 +4,12 @@ import logging from homeassistant.config_entries import ConfigEntry -from homeassistant.const import ATTR_NAME, CONF_SCAN_INTERVAL, ATTR_LATITUDE, ATTR_LONGITUDE +from homeassistant.const import ( + ATTR_LATITUDE, + ATTR_LONGITUDE, + ATTR_NAME, + CONF_SCAN_INTERVAL, +) from homeassistant.core import ( HomeAssistant, ServiceCall, diff --git a/custom_components/prix_carburant/button.py b/custom_components/prix_carburant/button.py index 1b439dd..1d296e9 100644 --- a/custom_components/prix_carburant/button.py +++ b/custom_components/prix_carburant/button.py @@ -1,4 +1,5 @@ """Prix Carburant button platform.""" + from __future__ import annotations import logging @@ -35,7 +36,7 @@ def __init__(self, coordinator) -> None: self._attr_device_class = ButtonDeviceClass.UPDATE self._attr_name = "Prix Carburant - Refresh prices" self._attr_icon = "mdi:refresh-circle" - self._attr_unique_id = "_".join([DOMAIN, "refresh_button"]) + self._attr_unique_id = f"{DOMAIN}_refresh_button" async def async_press(self) -> None: """Press the button.""" diff --git a/custom_components/prix_carburant/config_flow.py b/custom_components/prix_carburant/config_flow.py index a8c8e40..4934d2c 100644 --- a/custom_components/prix_carburant/config_flow.py +++ b/custom_components/prix_carburant/config_flow.py @@ -1,4 +1,5 @@ """Config flow to configure the Prix Carburant integration.""" + from __future__ import annotations from collections.abc import Mapping @@ -6,10 +7,14 @@ import voluptuous as vol -from homeassistant.config_entries import ConfigEntry, ConfigFlow, OptionsFlow +from homeassistant.config_entries import ( + ConfigEntry, + ConfigFlow, + ConfigFlowResult, + OptionsFlow, +) from homeassistant.const import CONF_SCAN_INTERVAL from homeassistant.core import callback -from homeassistant.data_entry_flow import FlowResult from .const import ( CONF_DISPLAY_ENTITY_PICTURES, @@ -65,7 +70,7 @@ class PrixCarburantConfigFlow(ConfigFlow, domain=DOMAIN): VERSION = 1 - async def async_step_import(self, import_info) -> FlowResult: + async def async_step_import(self, import_info) -> ConfigFlowResult: """Import a config entry from YAML config.""" entry = await self.async_set_unique_id(DOMAIN) @@ -75,7 +80,7 @@ async def async_step_import(self, import_info) -> FlowResult: return self.async_create_entry(title=DEFAULT_NAME, data=import_info) - async def async_step_user(self, user_input=None) -> FlowResult: + async def async_step_user(self, user_input=None) -> ConfigFlowResult: """Get configuration from the user.""" errors: dict[str, str] = {} if user_input is None: @@ -107,7 +112,7 @@ def __init__(self, config_entry: ConfigEntry) -> None: """Initialize options flow.""" self.config_entry = config_entry - async def async_step_init(self, user_input) -> FlowResult: + async def async_step_init(self, user_input) -> ConfigFlowResult: """Manage the options.""" errors: dict[str, str] = {} if user_input is not None: diff --git a/custom_components/prix_carburant/const.py b/custom_components/prix_carburant/const.py index 805c767..0e4626c 100644 --- a/custom_components/prix_carburant/const.py +++ b/custom_components/prix_carburant/const.py @@ -1,10 +1,11 @@ """Constants for the Prix Carburant integration.""" + from typing import Final from homeassistant.const import Platform DOMAIN: Final = "prix_carburant" -PLATFORMS: Final = [Platform.SENSOR, Platform.BUTTON] +PLATFORMS: Final = [Platform.BUTTON, Platform.SENSOR] DEFAULT_NAME: Final = "Prix Carburant" DEFAULT_MAX_KM: Final = 15 @@ -16,6 +17,7 @@ ATTR_CITY = "city" ATTR_DISTANCE = "distance" ATTR_FUELS = "fuels" +ATTR_FUEL_TYPE = "fuel_type" ATTR_UPDATED_DATE = "updated_date" ATTR_DAYS_SINCE_LAST_UPDATE = "days_since_last_update" ATTR_PRICE = "price" diff --git a/custom_components/prix_carburant/manifest.json b/custom_components/prix_carburant/manifest.json index 507cc12..3490875 100644 --- a/custom_components/prix_carburant/manifest.json +++ b/custom_components/prix_carburant/manifest.json @@ -10,5 +10,5 @@ "iot_class": "cloud_polling", "issue_tracker": "https://github.com/Aohzan/hass-prixcarburant/issues", "requirements": [], - "version": "3.7.0-2" + "version": "3.8.0" } diff --git a/custom_components/prix_carburant/sensor.py b/custom_components/prix_carburant/sensor.py index 6cc1519..544ca24 100644 --- a/custom_components/prix_carburant/sensor.py +++ b/custom_components/prix_carburant/sensor.py @@ -7,12 +7,15 @@ import voluptuous as vol -from homeassistant.components.sensor import SensorDeviceClass, SensorEntity +from homeassistant.components.sensor import ( + PLATFORM_SCHEMA_BASE, + RestoreSensor, + SensorDeviceClass, +) from homeassistant.config_entries import SOURCE_IMPORT, ConfigEntry from homeassistant.const import ATTR_LATITUDE, ATTR_LONGITUDE, ATTR_NAME, CURRENCY_EURO from homeassistant.core import HomeAssistant import homeassistant.helpers.config_validation as cv -from homeassistant.helpers.config_validation import PLATFORM_SCHEMA_BASE from homeassistant.helpers.device_registry import DeviceInfo from homeassistant.helpers.entity_platform import AddEntitiesCallback from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType @@ -24,6 +27,7 @@ ATTR_CITY, ATTR_DAYS_SINCE_LAST_UPDATE, ATTR_DISTANCE, + ATTR_FUEL_TYPE, ATTR_FUELS, ATTR_POSTAL_CODE, ATTR_PRICE, @@ -34,7 +38,7 @@ DOMAIN, FUELS, ) -from .tools import PrixCarburantTool, get_entity_picture +from .tools import PrixCarburantTool, get_entity_picture, normalize_string _LOGGER = logging.getLogger(__name__) @@ -92,7 +96,7 @@ async def async_setup_entry( async_add_entities(entities, True) -class PrixCarburant(CoordinatorEntity, SensorEntity): +class PrixCarburant(CoordinatorEntity, RestoreSensor): """Representation of a Sensor.""" _attr_icon = "mdi:gas-station" @@ -129,16 +133,17 @@ def __init__( configuration_url="https://www.prix-carburants.gouv.fr/", ) self._attr_extra_state_attributes = { - ATTR_NAME: self.station_info[ATTR_NAME], + ATTR_NAME: normalize_string(self.station_info[ATTR_NAME]), ATTR_BRAND: self.station_info[ATTR_BRAND], - ATTR_ADDRESS: self.station_info[ATTR_ADDRESS], + ATTR_ADDRESS: normalize_string(self.station_info[ATTR_ADDRESS]), ATTR_POSTAL_CODE: self.station_info[ATTR_POSTAL_CODE], - ATTR_CITY: self.station_info[ATTR_CITY], + ATTR_CITY: normalize_string(self.station_info[ATTR_CITY]), ATTR_LATITUDE: self.station_info[ATTR_LATITUDE], ATTR_LONGITUDE: self.station_info[ATTR_LONGITUDE], ATTR_DISTANCE: self.station_info[ATTR_DISTANCE], ATTR_UPDATED_DATE: None, ATTR_DAYS_SINCE_LAST_UPDATE: None, + ATTR_FUEL_TYPE: self.fuel, } @property diff --git a/custom_components/prix_carburant/stations_name.json b/custom_components/prix_carburant/stations_name.json index 4b24990..8022f46 100644 --- a/custom_components/prix_carburant/stations_name.json +++ b/custom_components/prix_carburant/stations_name.json @@ -1,38934 +1,38943 @@ { "1000001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1000002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1000004": { - "Nom": "SARL WALES DISTRIBUTION", - "Marque": "Total" + "name": "SARL WALES DISTRIBUTION", + "brand": "Total" }, "1000006": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "1000007": { - "Nom": "CENTRE E. LECLERC", - "Marque": "Leclerc" + "name": "CENTRE E. LECLERC", + "brand": "Leclerc" }, "1000008": { - "Nom": "Carrefour bourg en bresse", - "Marque": "Carrefour" + "name": "Carrefour bourg en bresse", + "brand": "Carrefour" }, "1000009": { - "Nom": "Intermarché BOURG EN BRESSE", - "Marque": "Intermarché" + "name": "Intermarché BOURG EN BRESSE", + "brand": "Intermarché" }, "1000012": { - "Nom": "RELAIS DES VAVRES", - "Marque": "Total" + "name": "RELAIS DES VAVRES", + "brand": "Total" }, "1000013": { - "Nom": "RELAIS BOURG", - "Marque": "Total Access" + "name": "RELAIS BOURG", + "brand": "Total Access" }, "1090001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "1100001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "1100002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1100004": { - "Nom": "STATION SERVICE AVIA", - "Marque": "Avia" + "name": "STATION SERVICE AVIA", + "brand": "Avia" }, "1100006": { - "Nom": "DB OYONNAX", - "Marque": "Intermarché" + "name": "DB OYONNAX", + "brand": "Intermarché" }, "1100007": { - "Nom": "RELAIS DES CRETETS", - "Marque": "Total" + "name": "RELAIS DES CRETETS", + "brand": "Total" }, "1110001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1120004": { - "Nom": "SUPER U MONTLUEL", - "Marque": "Système U" + "name": "SUPER U MONTLUEL", + "brand": "Système U" }, "1120005": { - "Nom": "Intermarché LA BOISSE-MONTLUEL", - "Marque": "Intermarché" + "name": "Intermarché LA BOISSE-MONTLUEL", + "brand": "Intermarché" }, "1120006": { - "Nom": "GARAGE DE LA BOISSE", - "Marque": "Total" + "name": "GARAGE DE LA BOISSE", + "brand": "Total" }, "1120007": { - "Nom": "SHELL", - "Marque": "Shell" + "name": "SHELL", + "brand": "Shell" }, "1120008": { - "Nom": "RELAIS DE DAGNEUX", - "Marque": "Total" + "name": "RELAIS DE DAGNEUX", + "brand": "Total" }, "1130002": { - "Nom": "SARL GARAGE MEUNIER", - "Marque": "Avia" + "name": "SARL GARAGE MEUNIER", + "brand": "Avia" }, "1130003": { - "Nom": "RELAIS RESIDENCE", - "Marque": "Total Access" + "name": "RELAIS RESIDENCE", + "brand": "Total Access" }, "1140001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "1150001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1150002": { - "Nom": "Total SAINT VULBAS", - "Marque": "Total" + "name": "Total SAINT VULBAS", + "brand": "Total" }, "1160002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "1160003": { - "Nom": "Intermarché NEUVILLE SUR AIN", - "Marque": "Intermarché" + "name": "Intermarché NEUVILLE SUR AIN", + "brand": "Intermarché" }, "1160005": { - "Nom": "RELAIS DU CHENE", - "Marque": "Total Access" + "name": "RELAIS DU CHENE", + "brand": "Total Access" }, "1170001": { - "Nom": "Carrefour SEGNY", - "Marque": "Carrefour" + "name": "Carrefour SEGNY", + "brand": "Carrefour" }, "1170002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1170003": { - "Nom": "Intermarché GEX", - "Marque": "Intermarché" + "name": "Intermarché GEX", + "brand": "Intermarché" }, "1170005": { - "Nom": "Station des Tilleuls", - "Marque": "Avia" + "name": "Station des Tilleuls", + "brand": "Avia" }, "1190001": { - "Nom": "BI1 Saint-Bénigne", - "Marque": "Atac" + "name": "BI1 Saint-Bénigne", + "brand": "Atac" }, "1200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1200003": { - "Nom": "Carrefour PROVENCIA HYPER", - "Marque": "Carrefour" + "name": "Carrefour PROVENCIA HYPER", + "brand": "Carrefour" }, "1210001": { - "Nom": "Carrefour FERNEY VOLTAIRE", - "Marque": "Carrefour" + "name": "Carrefour FERNEY VOLTAIRE", + "brand": "Carrefour" }, "1210002": { - "Nom": "GARAGE DUNAND", - "Marque": "Total" + "name": "GARAGE DUNAND", + "brand": "Total" }, "1210003": { - "Nom": "CENTRE E.LECLERC", - "Marque": "Leclerc" + "name": "CENTRE E.LECLERC", + "brand": "Leclerc" }, "1220001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1230002": { - "Nom": "SARL MATHY GARAGE DE L EUROPE", - "Marque": "Avia" + "name": "SARL MATHY GARAGE DE L EUROPE", + "brand": "Avia" }, "1230003": { - "Nom": "STATION ELAN GARAGE BOLLEY", - "Marque": "Elan" + "name": "STATION ELAN GARAGE BOLLEY", + "brand": "Elan" }, "1250002": { - "Nom": "BP A40 AIRE DE BOURG TEYSONGUE", - "Marque": "BP" + "name": "BP A40 AIRE DE BOURG TEYSONGUE", + "brand": "BP" }, "1250004": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "1250005": { - "Nom": "RELAIS BOURG JASSERON", - "Marque": "Total" + "name": "RELAIS BOURG JASSERON", + "brand": "Total" }, "1290001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "1300001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1300002": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "1300003": { - "Nom": "Intermarché CHAZEY BONS", - "Marque": "Intermarché" + "name": "Intermarché CHAZEY BONS", + "brand": "Intermarché" }, "1310001": { - "Nom": "GARAGE GUIGUE SA", - "Marque": "Total" + "name": "GARAGE GUIGUE SA", + "brand": "Total" }, "1310003": { - "Nom": "Casino", - "Marque": "Casino" + "name": "Casino", + "brand": "Casino" }, "1320001": { - "Nom": "SARL JACQUET AUTOMOBILES", - "Marque": "Elan" + "name": "SARL JACQUET AUTOMOBILES", + "brand": "Elan" }, "1320002": { - "Nom": "DISTRIBUTION CASINO FRANCE", - "Marque": "Casino" + "name": "DISTRIBUTION CASINO FRANCE", + "brand": "Casino" }, "1330001": { - "Nom": "SARL BUTILLON", - "Marque": "Total" + "name": "SARL BUTILLON", + "brand": "Total" }, "1330002": { - "Nom": "super u", - "Marque": "Système U" + "name": "super u", + "brand": "Système U" }, "1340002": { - "Nom": "SARL GOYARD", - "Marque": "Total" + "name": "SARL GOYARD", + "brand": "Total" }, "1340003": { - "Nom": "Intermarché MONTREVEL EN BRESSE", - "Marque": "Intermarché" + "name": "Intermarché MONTREVEL EN BRESSE", + "brand": "Intermarché" }, "1340004": { - "Nom": "GARAGE DES PRÉS", - "Marque": "Dyneff" + "name": "GARAGE DES PRÉS", + "brand": "Dyneff" }, "1340005": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "1350001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1350003": { - "Nom": "Intermarché BEON", - "Marque": "Intermarché" + "name": "Intermarché BEON", + "brand": "Intermarché" }, "1360002": { - "Nom": "Station service ELAN", - "Marque": "Elan" + "name": "Station service ELAN", + "brand": "Elan" }, "1370001": { - "Nom": "SARL CIRA DISTRIBUTION", - "Marque": "Total" + "name": "SARL CIRA DISTRIBUTION", + "brand": "Total" }, "1370003": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "1380001": { - "Nom": "DATS BAGE LA VILLE", - "Marque": "Colruyt" + "name": "DATS BAGE LA VILLE", + "brand": "Colruyt" }, "1390001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1390002": { - "Nom": "RELAIS SAINT ANDRE DE CORCY", - "Marque": "Total" + "name": "RELAIS SAINT ANDRE DE CORCY", + "brand": "Total" }, "1390009": { - "Nom": "A46 AIRE DE MIONNAY EST- SENS SUD NORD", - "Marque": "Agip" + "name": "A46 AIRE DE MIONNAY EST- SENS SUD NORD", + "brand": "Agip" }, "1390010": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "1400001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1400005": { - "Nom": "Intermarché CHATILLON", - "Marque": "Intermarché" + "name": "Intermarché CHATILLON", + "brand": "Intermarché" }, "1400006": { - "Nom": "NETTO", - "Marque": "Netto" + "name": "NETTO", + "brand": "Netto" }, "1430003": { - "Nom": "AGIP CEIGNES A40 SENS ANNECY BOURG EN BRESSE", - "Marque": "Agip" + "name": "AGIP CEIGNES A40 SENS ANNECY BOURG EN BRESSE", + "brand": "Agip" }, "1430004": { - "Nom": "GARAGE MURET", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE MURET", + "brand": "Indépendant sans enseigne" }, "1430005": { - "Nom": "RELAIS DE CEIGNES CERDON", - "Marque": "Total" + "name": "RELAIS DE CEIGNES CERDON", + "brand": "Total" }, "1440001": { - "Nom": "GARAGE BERRODIER", - "Marque": "Total" + "name": "GARAGE BERRODIER", + "brand": "Total" }, "1440002": { - "Nom": "STE DU VEHICULE INDUSTRIEL SAS", - "Marque": "Total" + "name": "STE DU VEHICULE INDUSTRIEL SAS", + "brand": "Total" }, "1440003": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "1460001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1460002": { - "Nom": "ETS CRAUSAZ", - "Marque": "Total" + "name": "ETS CRAUSAZ", + "brand": "Total" }, "1460003": { - "Nom": "Intermarché PORT", - "Marque": "Intermarché" + "name": "Intermarché PORT", + "brand": "Intermarché" }, "1470002": { - "Nom": "Intermarché Briord", - "Marque": "Intermarché" + "name": "Intermarché Briord", + "brand": "Intermarché" }, "1480001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1500001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1500003": { - "Nom": "RELAIS CHATEAU-GAILLARD", - "Marque": "Total" + "name": "RELAIS CHATEAU-GAILLARD", + "brand": "Total" }, "1500004": { - "Nom": "GARAGE VINCENT SAS", - "Marque": "Avia" + "name": "GARAGE VINCENT SAS", + "brand": "Avia" }, "1500006": { - "Nom": "LE RELAIS DE CHATEAU-GAILLARD", - "Marque": "Avia" + "name": "LE RELAIS DE CHATEAU-GAILLARD", + "brand": "Avia" }, "1500007": { - "Nom": "Intermarché AMBERIEU EN BUGEY", - "Marque": "Intermarché" + "name": "Intermarché AMBERIEU EN BUGEY", + "brand": "Intermarché" }, "1510002": { - "Nom": "Garage de La Gare", - "Marque": "Avia" + "name": "Garage de La Gare", + "brand": "Avia" }, "1510003": { - "Nom": "CEGOVIDA", - "Marque": "Carrefour Contact" + "name": "CEGOVIDA", + "brand": "Carrefour Contact" }, "1540001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1540002": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "1560001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "1570001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "1590001": { - "Nom": "GARAGE CLAUDE SARL", - "Marque": "Avia" + "name": "GARAGE CLAUDE SARL", + "brand": "Avia" }, "1590002": { - "Nom": "Intermarché", - "Marque": "Intermarché Contact" + "name": "Intermarché", + "brand": "Intermarché Contact" }, "1600001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1600002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1600003": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "1630001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "1630003": { - "Nom": "Intermarché ST GENIS POUILLY", - "Marque": "Intermarché" + "name": "Intermarché ST GENIS POUILLY", + "brand": "Intermarché" }, "1630004": { - "Nom": "Intermarché PERON", - "Marque": "Intermarché" + "name": "Intermarché PERON", + "brand": "Intermarché" }, "1640001": { - "Nom": "GARAGE CEYZERIAT", - "Marque": "Elan" + "name": "GARAGE CEYZERIAT", + "brand": "Elan" }, "1700003": { - "Nom": "ESSO LES ECHETS", - "Marque": "Esso Express" + "name": "ESSO LES ECHETS", + "brand": "Esso Express" }, "1700004": { - "Nom": "SAS BEDIS", - "Marque": "Leclerc" + "name": "SAS BEDIS", + "brand": "Leclerc" }, "1710001": { - "Nom": "MIGROS", - "Marque": "MIGROS" + "name": "MIGROS", + "brand": "MIGROS" }, "1750001": { - "Nom": "Intermarché REPLONGES", - "Marque": "Intermarché" + "name": "Intermarché REPLONGES", + "brand": "Intermarché" }, "1800001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "1800002": { - "Nom": "SARL GARAGE ROUSSET", - "Marque": "Elan" + "name": "SARL GARAGE ROUSSET", + "brand": "Elan" }, "1960001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "1960004": { - "Nom": "AGIP PERONNAS", - "Marque": "Agip" + "name": "AGIP PERONNAS", + "brand": "Agip" }, "1960005": { - "Nom": "Intermarché SAS INDARRA", - "Marque": "Intermarché Contact" + "name": "Intermarché SAS INDARRA", + "brand": "Intermarché Contact" }, "1980001": { - "Nom": "cst distribution", - "Marque": "Total" + "name": "cst distribution", + "brand": "Total" }, "2000002": { - "Nom": "Carrefour Laon", - "Marque": "Carrefour" + "name": "Carrefour Laon", + "brand": "Carrefour" }, "2000003": { - "Nom": "Carrefour Market Christ", - "Marque": "Carrefour Market" + "name": "Carrefour Market Christ", + "brand": "Carrefour Market" }, "2000005": { - "Nom": "GGE EUROPE AUTO", - "Marque": "Total" + "name": "GGE EUROPE AUTO", + "brand": "Total" }, "2000007": { - "Nom": "ESSO CARNOT LAON", - "Marque": "Esso Express" + "name": "ESSO CARNOT LAON", + "brand": "Esso Express" }, "2000008": { - "Nom": "LAONDIS", - "Marque": "Leclerc" + "name": "LAONDIS", + "brand": "Leclerc" }, "2000009": { - "Nom": "Intermarché LAON", - "Marque": "Intermarché" + "name": "Intermarché LAON", + "brand": "Intermarché" }, "2000010": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "2100001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "2100008": { - "Nom": "ESSO FAIDHERBE", - "Marque": "Esso Express" + "name": "ESSO FAIDHERBE", + "brand": "Esso Express" }, "2100009": { - "Nom": "LECLERC", - "Marque": "Leclerc" + "name": "LECLERC", + "brand": "Leclerc" }, "2100011": { - "Nom": "POREZ AUTO LOCA STATION", - "Marque": "Total Access" + "name": "POREZ AUTO LOCA STATION", + "brand": "Total Access" }, "2100012": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "2100013": { - "Nom": "Intermarché SAINT-QUENTIN /ZAC", - "Marque": "Intermarché" + "name": "Intermarché SAINT-QUENTIN /ZAC", + "brand": "Intermarché" }, "2100017": { - "Nom": "SARL MAROLEG", - "Marque": "Netto" + "name": "SARL MAROLEG", + "brand": "Netto" }, "2100018": { - "Nom": "DM Combustibles", - "Marque": "Indépendant sans enseigne" + "name": "DM Combustibles", + "brand": "Indépendant sans enseigne" }, "2100019": { - "Nom": "Intermarché 153 Rue de Mulhouse", - "Marque": "Intermarché" + "name": "Intermarché 153 Rue de Mulhouse", + "brand": "Intermarché" }, "2100020": { - "Nom": "RELAIS ST QUENTIN CAMILLE GUERIN", - "Marque": "Total Access" + "name": "RELAIS ST QUENTIN CAMILLE GUERIN", + "brand": "Total Access" }, "2100021": { - "Nom": "LECLERC", - "Marque": "Leclerc" + "name": "LECLERC", + "brand": "Leclerc" }, "2110002": { - "Nom": "Intermarché BOHAIN-EN-VERMANDOIS", - "Marque": "Intermarché" + "name": "Intermarché BOHAIN-EN-VERMANDOIS", + "brand": "Intermarché" }, "2120003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "2120004": { - "Nom": "Intermarché GUISE", - "Marque": "Intermarché" + "name": "Intermarché GUISE", + "brand": "Intermarché" }, "2120005": { - "Nom": "STATION Total LE CLAIR", - "Marque": "Total" + "name": "STATION Total LE CLAIR", + "brand": "Total" }, "2130001": { - "Nom": "SAS SOFERDIS", - "Marque": "Système U" + "name": "SAS SOFERDIS", + "brand": "Système U" }, "2130005": { - "Nom": "Aire de tardenois sud", - "Marque": "Avia" + "name": "Aire de tardenois sud", + "brand": "Avia" }, "2130006": { - "Nom": "Avia tardenois nord", - "Marque": "Avia" + "name": "Avia tardenois nord", + "brand": "Avia" }, "2140002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "2140003": { - "Nom": "Intermarché VERVINS", - "Marque": "Intermarché" + "name": "Intermarché VERVINS", + "brand": "Intermarché" }, "2170001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "2190003": { - "Nom": "SARL MARCHAND", - "Marque": "Avia" + "name": "SARL MARCHAND", + "brand": "Avia" }, "2190004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "2190005": { - "Nom": "Station AVIA", - "Marque": "Avia" + "name": "Station AVIA", + "brand": "Avia" }, "2200001": { - "Nom": "CORA SOISSONS", - "Marque": "CORA" + "name": "CORA SOISSONS", + "brand": "CORA" }, "2200007": { - "Nom": "ESSO SOISSONS", - "Marque": "Esso Express" + "name": "ESSO SOISSONS", + "brand": "Esso Express" }, "2200008": { - "Nom": "ESSO VAUXBUIN", - "Marque": "Esso Express" + "name": "ESSO VAUXBUIN", + "brand": "Esso Express" }, "2200010": { - "Nom": "Intermarché BELLEU", - "Marque": "Intermarché" + "name": "Intermarché BELLEU", + "brand": "Intermarché" }, "2200011": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "2200012": { - "Nom": "SARL JP DISTRI", - "Marque": "Carrefour Contact" + "name": "SARL JP DISTRI", + "brand": "Carrefour Contact" }, "2200013": { - "Nom": "RELAIS MAUPAS", - "Marque": "Total" + "name": "RELAIS MAUPAS", + "brand": "Total" }, "2200014": { - "Nom": "RELAIS SOISSONS", - "Marque": "Total" + "name": "RELAIS SOISSONS", + "brand": "Total" }, "2200015": { - "Nom": "RELAIS SAINTE EUGENIE", - "Marque": "Total Access" + "name": "RELAIS SAINTE EUGENIE", + "brand": "Total Access" }, "2210001": { - "Nom": "ALLART", - "Marque": "Total" + "name": "ALLART", + "brand": "Total" }, "2220001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "2230002": { - "Nom": "Carrefour market fresnoy", - "Marque": "Carrefour Market" + "name": "Carrefour market fresnoy", + "brand": "Carrefour Market" }, "2240001": { - "Nom": "Intermarché RIBEMONT", - "Marque": "Intermarché" + "name": "Intermarché RIBEMONT", + "brand": "Intermarché" }, "2240002": { - "Nom": "sarl le clair", - "Marque": "Total" + "name": "sarl le clair", + "brand": "Total" }, "2250001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "2250002": { - "Nom": "GHEKIERE", - "Marque": "Total" + "name": "GHEKIERE", + "brand": "Total" }, "2260001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "2270001": { - "Nom": "TL DISTRI", - "Marque": "Carrefour Contact" + "name": "TL DISTRI", + "brand": "Carrefour Contact" }, "2280001": { - "Nom": "Intermarché SAINT-ERME", - "Marque": "Intermarché" + "name": "Intermarché SAINT-ERME", + "brand": "Intermarché" }, "2290001": { - "Nom": "PARADIS SERVICE SA", - "Marque": "Indépendant sans enseigne" + "name": "PARADIS SERVICE SA", + "brand": "Indépendant sans enseigne" }, "2300001": { - "Nom": "AUCHAN VIRY NOUREUIL", - "Marque": "Auchan" + "name": "AUCHAN VIRY NOUREUIL", + "brand": "Auchan" }, "2300002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "2300006": { - "Nom": "Intermarché CHAUNY", - "Marque": "Intermarché" + "name": "Intermarché CHAUNY", + "brand": "Intermarché" }, "2300009": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "2310001": { - "Nom": "SAS LES ILETTES", - "Marque": "Système U" + "name": "SAS LES ILETTES", + "brand": "Système U" }, "2310002": { - "Nom": "Station de l'Ourcq", - "Marque": "Avia" + "name": "Station de l'Ourcq", + "brand": "Avia" }, "2320001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "2320002": { - "Nom": "Intermarché ANIZY-LE-CHATEAU", - "Marque": "Intermarché" + "name": "Intermarché ANIZY-LE-CHATEAU", + "brand": "Intermarché" }, "2340001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "2360001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "2370004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "2380002": { - "Nom": "RELAIS CRECY AU MONT", - "Marque": "Total Access" + "name": "RELAIS CRECY AU MONT", + "brand": "Total Access" }, "2390002": { - "Nom": "Origny", - "Marque": "Indépendant sans enseigne" + "name": "Origny", + "brand": "Indépendant sans enseigne" }, "2400001": { - "Nom": "Carrefour CHATEAU-THIERRY", - "Marque": "Carrefour" + "name": "Carrefour CHATEAU-THIERRY", + "brand": "Carrefour" }, "2400004": { - "Nom": "E.LECLERC - CASTELDIS", - "Marque": "Leclerc" + "name": "E.LECLERC - CASTELDIS", + "brand": "Leclerc" }, "2400005": { - "Nom": "Intermarché CHATEAU-THIERRY", - "Marque": "Intermarché" + "name": "Intermarché CHATEAU-THIERRY", + "brand": "Intermarché" }, "2400007": { - "Nom": "NETTO", - "Marque": "NETTO" + "name": "NETTO", + "brand": "NETTO" }, "2400008": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "2420001": { - "Nom": "BELOT", - "Marque": "Total" + "name": "BELOT", + "brand": "Total" }, "2430001": { - "Nom": "Intermarché GAUCHY", - "Marque": "Intermarché" + "name": "Intermarché GAUCHY", + "brand": "Intermarché" }, "2450002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "2460001": { - "Nom": "S.A. DIXY", - "Marque": "Intermarché" + "name": "S.A. DIXY", + "brand": "Intermarché" }, "2480001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "2500001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "2500003": { - "Nom": "SODHIRS", - "Marque": "Leclerc" + "name": "SODHIRS", + "brand": "Leclerc" }, "2500004": { - "Nom": "RELAIS HIRSON DE GAULLE", - "Marque": "Total Access" + "name": "RELAIS HIRSON DE GAULLE", + "brand": "Total Access" }, "2600001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "2600003": { - "Nom": "GARAGE DE LA FORET", - "Marque": "Total" + "name": "GARAGE DE LA FORET", + "brand": "Total" }, "2600004": { - "Nom": "RELAIS DU MOULIN SARL", - "Marque": "Avia" + "name": "RELAIS DU MOULIN SARL", + "brand": "Avia" }, "2600005": { - "Nom": "AUTOMOBILES VILLERS SERVICES", - "Marque": "Total" + "name": "AUTOMOBILES VILLERS SERVICES", + "brand": "Total" }, "2603001": { - "Nom": "VILLERDIS", - "Marque": "Leclerc" + "name": "VILLERDIS", + "brand": "Leclerc" }, "2690002": { - "Nom": "RELAIS URVILLERS", - "Marque": "Total" + "name": "RELAIS URVILLERS", + "brand": "Total" }, "2700001": { - "Nom": "LE RELAIS DE PARIS", - "Marque": "Total" + "name": "LE RELAIS DE PARIS", + "brand": "Total" }, "2700002": { - "Nom": "LEADER PRICE TERGNIER", - "Marque": "Leader Price" + "name": "LEADER PRICE TERGNIER", + "brand": "Leader Price" }, "2800003": { - "Nom": "S.A.S. DISBEAU", - "Marque": "Leclerc" + "name": "S.A.S. DISBEAU", + "brand": "Leclerc" }, "2800004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "2860001": { - "Nom": "GARAGE PETETIN", - "Marque": "Total" + "name": "GARAGE PETETIN", + "brand": "Total" }, "2880001": { - "Nom": "AUTOPIECE", - "Marque": "Roady" + "name": "AUTOPIECE", + "brand": "Roady" }, "3000001": { - "Nom": "Carrefour MOULINS", - "Marque": "Carrefour" + "name": "Carrefour MOULINS", + "brand": "Carrefour" }, "3000003": { - "Nom": "SA AVERMES DISTRIBUTION", - "Marque": "Leclerc" + "name": "SA AVERMES DISTRIBUTION", + "brand": "Leclerc" }, "3000004": { - "Nom": "Dubois-Dallois Station Total", - "Marque": "Total" + "name": "Dubois-Dallois Station Total", + "brand": "Total" }, "3000005": { - "Nom": "Intermarché MOULINS", - "Marque": "Intermarché" + "name": "Intermarché MOULINS", + "brand": "Intermarché" }, "3000006": { - "Nom": "Station les portes de l'Allier - SAS Avermes Distribution", - "Marque": "Leclerc" + "name": "Station les portes de l'Allier - SAS Avermes Distribution", + "brand": "Leclerc" }, "3100001": { - "Nom": "Carrefour MONTLUCON", - "Marque": "Carrefour" + "name": "Carrefour MONTLUCON", + "brand": "Carrefour" }, "3100002": { - "Nom": "Relais Lagarde Montluçon", - "Marque": "Total" + "name": "Relais Lagarde Montluçon", + "brand": "Total" }, "3100005": { - "Nom": "Marais-Dis", - "Marque": "Leclerc" + "name": "Marais-Dis", + "brand": "Leclerc" }, "3100006": { - "Nom": "Avia", - "Marque": "Avia" + "name": "Avia", + "brand": "Avia" }, "3100007": { - "Nom": "LECLERC EXPRESS", - "Marque": "Leclerc" + "name": "LECLERC EXPRESS", + "brand": "Leclerc" }, "3100008": { - "Nom": "Intermarché MONTLUCON", - "Marque": "Intermarché" + "name": "Intermarché MONTLUCON", + "brand": "Intermarché" }, "3100009": { - "Nom": "ENI FRANCE RELAIS SAINT JEAN", - "Marque": "ENI FRANCE" + "name": "ENI FRANCE RELAIS SAINT JEAN", + "brand": "ENI FRANCE" }, "3100010": { - "Nom": "Intermarché MONTLUCON", - "Marque": "Intermarché" + "name": "Intermarché MONTLUCON", + "brand": "Intermarché" }, "3110001": { - "Nom": "Charmeil", - "Marque": "Total" + "name": "Charmeil", + "brand": "Total" }, "3110003": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "3120001": { - "Nom": "AGIP LAPALISSE - STATION CANTAT", - "Marque": "Agip" + "name": "AGIP LAPALISSE - STATION CANTAT", + "brand": "Agip" }, "3120002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "3120003": { - "Nom": "Intermarché LAPALISSE", - "Marque": "Intermarché" + "name": "Intermarché LAPALISSE", + "brand": "Intermarché" }, "3120004": { - "Nom": "Aire des verites", - "Marque": "Total Access" + "name": "Aire des verites", + "brand": "Total Access" }, "3120005": { - "Nom": "LAPALISSE ESSENCE", - "Marque": "Indépendant sans enseigne" + "name": "LAPALISSE ESSENCE", + "brand": "Indépendant sans enseigne" }, "3130002": { - "Nom": "STATION DONJONNAISE", - "Marque": "Dyneff" + "name": "STATION DONJONNAISE", + "brand": "Dyneff" }, "3150001": { - "Nom": "Relais Lagarde Varennes", - "Marque": "Total" + "name": "Relais Lagarde Varennes", + "brand": "Total" }, "3150004": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "3150005": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "3150006": { - "Nom": "RELAIS DU VAL D'ALLIER", - "Marque": "Avia" + "name": "RELAIS DU VAL D'ALLIER", + "brand": "Avia" }, "3160001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "3170001": { - "Nom": "Avia", - "Marque": "Avia" + "name": "Avia", + "brand": "Avia" }, "3190003": { - "Nom": "Carrefour Contact Vallon-en-Sully", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact Vallon-en-Sully", + "brand": "Carrefour Contact" }, "3200002": { - "Nom": "Relais Total du Vernet", - "Marque": "Total" + "name": "Relais Total du Vernet", + "brand": "Total" }, "3200003": { - "Nom": "Relais de Gramont", - "Marque": "Total" + "name": "Relais de Gramont", + "brand": "Total" }, "3200005": { - "Nom": "CORA VICHY", - "Marque": "CORA" + "name": "CORA VICHY", + "brand": "CORA" }, "3210001": { - "Nom": "Intermarché Contact SOUVIGNY", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact SOUVIGNY", + "brand": "Intermarché Contact" }, "3240002": { - "Nom": "RELAIS LAGARDE Total DEUX CHAISES", - "Marque": "Total" + "name": "RELAIS LAGARDE Total DEUX CHAISES", + "brand": "Total" }, "3250002": { - "Nom": "Intermarché LE MAYET DE MONTAGNE", - "Marque": "Intermarché" + "name": "Intermarché LE MAYET DE MONTAGNE", + "brand": "Intermarché" }, "3260001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché" + "name": "Intermarché Contact", + "brand": "Intermarché" }, "3270001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "3290001": { - "Nom": "ATAC DOMPIERRE SUR BESBRE", - "Marque": "Atac" + "name": "ATAC DOMPIERRE SUR BESBRE", + "brand": "Atac" }, "3290002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "3290003": { - "Nom": "ESSO GARAGE MICHAUD", - "Marque": "Esso" + "name": "ESSO GARAGE MICHAUD", + "brand": "Esso" }, "3300001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "3300002": { - "Nom": "Relais Lagarde Cusset", - "Marque": "Total" + "name": "Relais Lagarde Cusset", + "brand": "Total" }, "3300003": { - "Nom": "Carrefour", - "Marque": "Carrefour" + "name": "Carrefour", + "brand": "Carrefour" }, "3310002": { - "Nom": "SARL ADOL NERIS LES BAINS", - "Marque": "Intermarché" + "name": "SARL ADOL NERIS LES BAINS", + "brand": "Intermarché" }, "3320001": { - "Nom": "ATAC LURCY LEVIS", - "Marque": "Atac" + "name": "ATAC LURCY LEVIS", + "brand": "Atac" }, "3350002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "3360001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "3380001": { - "Nom": "MME CARTERON COLETTE", - "Marque": "Total" + "name": "MME CARTERON COLETTE", + "brand": "Total" }, "3380002": { - "Nom": "Intermarché HURIEL", - "Marque": "Intermarché Contact" + "name": "Intermarché HURIEL", + "brand": "Intermarché Contact" }, "3390003": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "3400001": { - "Nom": "Relais Lagarde Yzeure", - "Marque": "Total" + "name": "Relais Lagarde Yzeure", + "brand": "Total" }, "3400002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "3400003": { - "Nom": "RELAIS BEAU SOLEIL", - "Marque": "Avia" + "name": "RELAIS BEAU SOLEIL", + "brand": "Avia" }, "3410001": { - "Nom": "AUCHAN CARBURANT MONTLUCON-DOMERAT", - "Marque": "Auchan" + "name": "AUCHAN CARBURANT MONTLUCON-DOMERAT", + "brand": "Auchan" }, "3410004": { - "Nom": "EURL BITEZ", - "Marque": "Agip" + "name": "EURL BITEZ", + "brand": "Agip" }, "3410007": { - "Nom": "ESSO EXPRESS DOMERAT TERRE NEUVE", - "Marque": "Esso Express" + "name": "ESSO EXPRESS DOMERAT TERRE NEUVE", + "brand": "Esso Express" }, "3410008": { - "Nom": "LECLERC CHATEAUGAY", - "Marque": "Leclerc" + "name": "LECLERC CHATEAUGAY", + "brand": "Leclerc" }, "3410009": { - "Nom": "LECLERC LA LOUE", - "Marque": "Leclerc" + "name": "LECLERC LA LOUE", + "brand": "Leclerc" }, "3410010": { - "Nom": "SUPERMARCHE CASINO DOMERAT", - "Marque": "Casino" + "name": "SUPERMARCHE CASINO DOMERAT", + "brand": "Casino" }, "3430001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "3450001": { - "Nom": "CMN", - "Marque": "Indépendant sans enseigne" + "name": "CMN", + "brand": "Indépendant sans enseigne" }, "3500002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "3500003": { - "Nom": "Relais de la Sioule Total Lagarde", - "Marque": "Total" + "name": "Relais de la Sioule Total Lagarde", + "brand": "Total" }, "3500004": { - "Nom": "RELAIS PARIS PYRENEES", - "Marque": "Avia" + "name": "RELAIS PARIS PYRENEES", + "brand": "Avia" }, "3500005": { - "Nom": "DATS ST POURCAIN SUR SIOULE", - "Marque": "Colruyt" + "name": "DATS ST POURCAIN SUR SIOULE", + "brand": "Colruyt" }, "3500006": { - "Nom": "Station Total access Relais des Beaumenus", - "Marque": "Total Access" + "name": "Station Total access Relais des Beaumenus", + "brand": "Total Access" }, "3600001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "3600003": { - "Nom": "Intermarché COMMENTRY MALICORNE", - "Marque": "Intermarché" + "name": "Intermarché COMMENTRY MALICORNE", + "brand": "Intermarché" }, "3630003": { - "Nom": "RELAIS CHATELARD", - "Marque": "Total Access" + "name": "RELAIS CHATELARD", + "brand": "Total Access" }, "3630004": { - "Nom": "MARKET DESERTINES", - "Marque": "Carrefour Market" + "name": "MARKET DESERTINES", + "brand": "Carrefour Market" }, "3700002": { - "Nom": "Relais Lagarde Bellerive", - "Marque": "Total" + "name": "Relais Lagarde Bellerive", + "brand": "Total" }, "3700004": { - "Nom": "BELLERIVEDIS", - "Marque": "Leclerc" + "name": "BELLERIVEDIS", + "brand": "Leclerc" }, "3800001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "3800003": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "3800004": { - "Nom": "Relais Lagarde Gannat MENDES FRANCE", - "Marque": "Total" + "name": "Relais Lagarde Gannat MENDES FRANCE", + "brand": "Total" }, "3800005": { - "Nom": "Relais Lagarde Paris Lozère", - "Marque": "Total" + "name": "Relais Lagarde Paris Lozère", + "brand": "Total" }, "3800006": { - "Nom": "SA SAIVE", - "Marque": "Intermarché" + "name": "SA SAIVE", + "brand": "Intermarché" }, "4000001": { - "Nom": "Carrefour DIGNE", - "Marque": "Carrefour" + "name": "Carrefour DIGNE", + "brand": "Carrefour" }, "4000003": { - "Nom": "ESSO DES CIMES", - "Marque": "Esso Express" + "name": "ESSO DES CIMES", + "brand": "Esso Express" }, "4000004": { - "Nom": "Intermarché DIGNE", - "Marque": "Intermarché" + "name": "Intermarché DIGNE", + "brand": "Intermarché" }, "4100001": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "4100002": { - "Nom": "AUCHAN MANOSQUE", - "Marque": "Auchan" + "name": "AUCHAN MANOSQUE", + "brand": "Auchan" }, "4100007": { - "Nom": "SAS SODIALPES", - "Marque": "Leclerc" + "name": "SAS SODIALPES", + "brand": "Leclerc" }, "4100009": { - "Nom": "ETS GARCIN FRERES SAS", - "Marque": "GARCIN FRERES" + "name": "ETS GARCIN FRERES SAS", + "brand": "GARCIN FRERES" }, "4100010": { - "Nom": "RELAIS DES PONCHES", - "Marque": "Total" + "name": "RELAIS DES PONCHES", + "brand": "Total" }, "4100011": { - "Nom": "RELAIS PLANTIERS", - "Marque": "Total Access" + "name": "RELAIS PLANTIERS", + "brand": "Total Access" }, "4103001": { - "Nom": "Hyper U", - "Marque": "Système U" + "name": "Hyper U", + "brand": "Système U" }, "4120002": { - "Nom": "Supérette 8 à Huit - LA BOUTIQUE", - "Marque": "Huit à 8" + "name": "Supérette 8 à Huit - LA BOUTIQUE", + "brand": "Huit à 8" }, "4120003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "4120004": { - "Nom": "Relais Napoléon", - "Marque": "Avia" + "name": "Relais Napoléon", + "brand": "Avia" }, "4130004": { - "Nom": "RELAIS DE VOLX", - "Marque": "Total" + "name": "RELAIS DE VOLX", + "brand": "Total" }, "4130005": { - "Nom": "RELAIS DE MANOSQUE", - "Marque": "Total" + "name": "RELAIS DE MANOSQUE", + "brand": "Total" }, "4140001": { - "Nom": "Intermarché SEYNE LES ALPES", - "Marque": "Intermarché" + "name": "Intermarché SEYNE LES ALPES", + "brand": "Intermarché" }, "4160002": { - "Nom": "SARL SNEGP - AGENT PEUGEOT", - "Marque": "Total" + "name": "SARL SNEGP - AGENT PEUGEOT", + "brand": "Total" }, "4160003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "4160004": { - "Nom": "RELAIS LE BELVEDERE", - "Marque": "Total Access" + "name": "RELAIS LE BELVEDERE", + "brand": "Total Access" }, "4170002": { - "Nom": "SARL GARAGE STATION CHABOT", - "Marque": "Elan" + "name": "SARL GARAGE STATION CHABOT", + "brand": "Elan" }, "4170003": { - "Nom": "U EXPRESS ST ANDRE LES ALPES", - "Marque": "Système U" + "name": "U EXPRESS ST ANDRE LES ALPES", + "brand": "Système U" }, "4190001": { - "Nom": "Intermarché LES MEES", - "Marque": "Intermarché" + "name": "Intermarché LES MEES", + "brand": "Intermarché" }, "4200003": { - "Nom": "Intermarché PEIPIN", - "Marque": "Intermarché" + "name": "Intermarché PEIPIN", + "brand": "Intermarché" }, "4200006": { - "Nom": "Aire aubignosc", - "Marque": "Avia" + "name": "Aire aubignosc", + "brand": "Avia" }, "4200007": { - "Nom": "STATION LOUIS", - "Marque": "NEANT" + "name": "STATION LOUIS", + "brand": "NEANT" }, "4200008": { - "Nom": "Total DServices", - "Marque": "Total" + "name": "Total DServices", + "brand": "Total" }, "4204001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "4210004": { - "Nom": "Ets GARCIN FRERES", - "Marque": "GARCIN FRERES" + "name": "Ets GARCIN FRERES", + "brand": "GARCIN FRERES" }, "4210005": { - "Nom": "Carrefour EXPRESS", - "Marque": "Carrefour Express" + "name": "Carrefour EXPRESS", + "brand": "Carrefour Express" }, "4240002": { - "Nom": "Intermarché ANNOT", - "Marque": "Intermarché" + "name": "Intermarché ANNOT", + "brand": "Intermarché" }, "4260002": { - "Nom": "Le relais de Rochecline", - "Marque": "Indépendant sans enseigne" + "name": "Le relais de Rochecline", + "brand": "Indépendant sans enseigne" }, "4280001": { - "Nom": "Station U", - "Marque": "Système U" + "name": "Station U", + "brand": "Système U" }, "4300001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "4300002": { - "Nom": "Intermarché FORCALQUIER", - "Marque": "Intermarché" + "name": "Intermarché FORCALQUIER", + "brand": "Intermarché" }, "4320001": { - "Nom": "SARL ENERGY ENTREVAUX JAUME", - "Marque": "Agip" + "name": "SARL ENERGY ENTREVAUX JAUME", + "brand": "Agip" }, "4320002": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "4330004": { - "Nom": "SARL DOMI et STEPH", - "Marque": "Avia" + "name": "SARL DOMI et STEPH", + "brand": "Avia" }, "4360001": { - "Nom": "GARAGE HONORAT", - "Marque": "Total" + "name": "GARAGE HONORAT", + "brand": "Total" }, "4370001": { - "Nom": "M.MICHEL BERAUD", - "Marque": "Total" + "name": "M.MICHEL BERAUD", + "brand": "Total" }, "4400001": { - "Nom": "SARL MICHAUD", - "Marque": "Total" + "name": "SARL MICHAUD", + "brand": "Total" }, "4400002": { - "Nom": "SARL GARAGE DE RESTEFOND", - "Marque": "Total" + "name": "SARL GARAGE DE RESTEFOND", + "brand": "Total" }, "4400003": { - "Nom": "STATION DU GRAVIER. SATA.", - "Marque": "Indépendant sans enseigne" + "name": "STATION DU GRAVIER. SATA.", + "brand": "Indépendant sans enseigne" }, "4400004": { - "Nom": "RELAIS DE TERRES NEUVES. SATA.", - "Marque": "Indépendant sans enseigne" + "name": "RELAIS DE TERRES NEUVES. SATA.", + "brand": "Indépendant sans enseigne" }, "4500001": { - "Nom": "SARL FLORENZANO Station AVIA", - "Marque": "Avia" + "name": "SARL FLORENZANO Station AVIA", + "brand": "Avia" }, "4500003": { - "Nom": "Intermarché RIEZ", - "Marque": "Intermarché" + "name": "Intermarché RIEZ", + "brand": "Intermarché" }, "4510003": { - "Nom": "Station Avia", - "Marque": "Avia" + "name": "Station Avia", + "brand": "Avia" }, "4600001": { - "Nom": "M.ALAIN CARMONA - AGENT PEUGEOT", - "Marque": "Avia" + "name": "M.ALAIN CARMONA - AGENT PEUGEOT", + "brand": "Avia" }, "4700002": { - "Nom": "Intermarché ORAISON", - "Marque": "Intermarché" + "name": "Intermarché ORAISON", + "brand": "Intermarché" }, "4700003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "4700004": { - "Nom": "Relais des Mélanes", - "Marque": "Total" + "name": "Relais des Mélanes", + "brand": "Total" }, "4800001": { - "Nom": "SAS L'OLIVERAIE", - "Marque": "Total" + "name": "SAS L'OLIVERAIE", + "brand": "Total" }, "5000001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "5000005": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "5000006": { - "Nom": "SUDALP", - "Marque": "Leclerc" + "name": "SUDALP", + "brand": "Leclerc" }, "5000008": { - "Nom": "Intermarché GAP", - "Marque": "Intermarché" + "name": "Intermarché GAP", + "brand": "Intermarché" }, "5000010": { - "Nom": "ESSO FONT REYNE", - "Marque": "Esso Express" + "name": "ESSO FONT REYNE", + "brand": "Esso Express" }, "5000017": { - "Nom": "RELAIS CHARANCE", - "Marque": "Total" + "name": "RELAIS CHARANCE", + "brand": "Total" }, "5000018": { - "Nom": "RELAIS PUYMAURE", - "Marque": "Total" + "name": "RELAIS PUYMAURE", + "brand": "Total" }, "5100001": { - "Nom": "SNC ROLLAND JACK", - "Marque": "Esso" + "name": "SNC ROLLAND JACK", + "brand": "Esso" }, "5100004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "5100008": { - "Nom": "RELAIS GDE BOUCLE", - "Marque": "Total Access" + "name": "RELAIS GDE BOUCLE", + "brand": "Total Access" }, "5120002": { - "Nom": "Carrefour Contact L ARGENTIERE LA BESSEE", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact L ARGENTIERE LA BESSEE", + "brand": "Carrefour Contact" }, "5120003": { - "Nom": "LECLERC", - "Marque": "Leclerc" + "name": "LECLERC", + "brand": "Leclerc" }, "5130002": { - "Nom": "Intermarché TALLARD", - "Marque": "Intermarché" + "name": "Intermarché TALLARD", + "brand": "Intermarché" }, "5130003": { - "Nom": "CASINO AVENUE DE PROVENCE", - "Marque": "Casino" + "name": "CASINO AVENUE DE PROVENCE", + "brand": "Casino" }, "5160001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "5190001": { - "Nom": "CASINO REMOLLON", - "Marque": "Casino" + "name": "CASINO REMOLLON", + "brand": "Casino" }, "5200001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "5200004": { - "Nom": "Intermarché EMBRUN", - "Marque": "Intermarché" + "name": "Intermarché EMBRUN", + "brand": "Intermarché" }, "5200005": { - "Nom": "CENTRE AUTO VIANOR FIORANI MYLENE", - "Marque": "VIANOR" + "name": "CENTRE AUTO VIANOR FIORANI MYLENE", + "brand": "VIANOR" }, "5200007": { - "Nom": "AVIA EURL SATINE", - "Marque": "Avia" + "name": "AVIA EURL SATINE", + "brand": "Avia" }, "5200008": { - "Nom": "hskm station Total", - "Marque": "Total" + "name": "hskm station Total", + "brand": "Total" }, "5220001": { - "Nom": "LECLERC", - "Marque": "Leclerc" + "name": "LECLERC", + "brand": "Leclerc" }, "5230003": { - "Nom": "Intermarché CHORGES", - "Marque": "Intermarché" + "name": "Intermarché CHORGES", + "brand": "Intermarché" }, "5230004": { - "Nom": "ELAN - BRENIER", - "Marque": "Elan" + "name": "ELAN - BRENIER", + "brand": "Elan" }, "5230007": { - "Nom": "RELAIS CHORGES", - "Marque": "Total Access" + "name": "RELAIS CHORGES", + "brand": "Total Access" }, "5240001": { - "Nom": "RELAIS DU TELEPHERIQUE", - "Marque": "Total contact" + "name": "RELAIS DU TELEPHERIQUE", + "brand": "Total contact" }, "5240002": { - "Nom": "eurl vaiani carburants", - "Marque": "Avia" + "name": "eurl vaiani carburants", + "brand": "Avia" }, "5260001": { - "Nom": "MR. RANGUIS J.P.", - "Marque": "Total" + "name": "MR. RANGUIS J.P.", + "brand": "Total" }, "5300001": { - "Nom": "SARL GARAGE LAMBERT", - "Marque": "Total" + "name": "SARL GARAGE LAMBERT", + "brand": "Total" }, "5300002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "5300003": { - "Nom": "Intermarché LARAGNE", - "Marque": "Intermarché" + "name": "Intermarché LARAGNE", + "brand": "Intermarché" }, "5300004": { - "Nom": "GARAGE DU RIOU STATION", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE DU RIOU STATION", + "brand": "Indépendant sans enseigne" }, "5350001": { - "Nom": "LE RELAIS DE CHARPENEL", - "Marque": "Elan" + "name": "LE RELAIS DE CHARPENEL", + "brand": "Elan" }, "5400002": { - "Nom": "Super u veynes", - "Marque": "Système U" + "name": "Super u veynes", + "brand": "Système U" }, "5400003": { - "Nom": "Relais la gazoline", - "Marque": "Atac" + "name": "Relais la gazoline", + "brand": "Atac" }, "5400004": { - "Nom": "MARKET", - "Marque": "Carrefour Market" + "name": "MARKET", + "brand": "Carrefour Market" }, "5500001": { - "Nom": "Intermarché LA FARE EN CHAMPSAUR", - "Marque": "Intermarché" + "name": "Intermarché LA FARE EN CHAMPSAUR", + "brand": "Intermarché" }, "5500002": { - "Nom": "SAINT BONNET EN CHAMPSAUR", - "Marque": "Carrefour Market" + "name": "SAINT BONNET EN CHAMPSAUR", + "brand": "Carrefour Market" }, "5560001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "5600002": { - "Nom": "Intermarché GUILLESTRE", - "Marque": "Intermarché" + "name": "Intermarché GUILLESTRE", + "brand": "Intermarché" }, "5600004": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "5600005": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "5600006": { - "Nom": "Carrefour market", - "Marque": "Carrefour Market" + "name": "Carrefour market", + "brand": "Carrefour Market" }, "5700001": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "5700002": { - "Nom": "Station-service Les Chambons", - "Marque": "Indépendant sans enseigne" + "name": "Station-service Les Chambons", + "brand": "Indépendant sans enseigne" }, "6000007": { - "Nom": "TERRIN SARL", - "Marque": "Avia" + "name": "TERRIN SARL", + "brand": "Avia" }, "6000009": { - "Nom": "SARL TERRIN", - "Marque": "Shell" + "name": "SARL TERRIN", + "brand": "Shell" }, "6000026": { - "Nom": "RELAIS NICE ARMEE DES ALPES", - "Marque": "Total" + "name": "RELAIS NICE ARMEE DES ALPES", + "brand": "Total" }, "6000027": { - "Nom": "RELAIS DU PAILLON", - "Marque": "Total" + "name": "RELAIS DU PAILLON", + "brand": "Total" }, "6000028": { - "Nom": "RELAIS PARC IMPERIAL", - "Marque": "Total" + "name": "RELAIS PARC IMPERIAL", + "brand": "Total" }, "6000029": { - "Nom": "RELAIS DE LEVENS", - "Marque": "Total Access" + "name": "RELAIS DE LEVENS", + "brand": "Total Access" }, "6000032": { - "Nom": "BP NICE GAMBETTA", - "Marque": "BP" + "name": "BP NICE GAMBETTA", + "brand": "BP" }, "6000035": { - "Nom": "BP NICE FRANKLIN", - "Marque": "BP" + "name": "BP NICE FRANKLIN", + "brand": "BP" }, "6000036": { - "Nom": "BP NICE FALICON", - "Marque": "BP" + "name": "BP NICE FALICON", + "brand": "BP" }, "6110002": { - "Nom": "SARL CHENEAU", - "Marque": "Avia" + "name": "SARL CHENEAU", + "brand": "Avia" }, "6110004": { - "Nom": "ESSO MOULIERES", - "Marque": "Esso Express" + "name": "ESSO MOULIERES", + "brand": "Esso Express" }, "6110005": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "6110006": { - "Nom": "KAMELIA SAS", - "Marque": "Leclerc" + "name": "KAMELIA SAS", + "brand": "Leclerc" }, "6110008": { - "Nom": "station service La Roseraie", - "Marque": "Indépendant" + "name": "station service La Roseraie", + "brand": "Indépendant" }, "6110009": { - "Nom": "RELAIS LE CANNET LA FRAYERE", - "Marque": "Total Access" + "name": "RELAIS LE CANNET LA FRAYERE", + "brand": "Total Access" }, "6130001": { - "Nom": "AUCHAN GRASSE", - "Marque": "Auchan" + "name": "AUCHAN GRASSE", + "brand": "Auchan" }, "6130006": { - "Nom": "BP GRASSE LES CAMPAGNETTES", - "Marque": "BP" + "name": "BP GRASSE LES CAMPAGNETTES", + "brand": "BP" }, "6130007": { - "Nom": "SAS HYPER LECLERC GRASSE", - "Marque": "Leclerc" + "name": "SAS HYPER LECLERC GRASSE", + "brand": "Leclerc" }, "6130008": { - "Nom": "ESSO PARFUMS", - "Marque": "Esso Express" + "name": "ESSO PARFUMS", + "brand": "Esso Express" }, "6130009": { - "Nom": "BP LE PLAN DE GRASSE", - "Marque": "BP" + "name": "BP LE PLAN DE GRASSE", + "brand": "BP" }, "6130010": { - "Nom": "RELAIS DE GRASSE MOULIN", - "Marque": "Total" + "name": "RELAIS DE GRASSE MOULIN", + "brand": "Total" }, "6130011": { - "Nom": "BP GRASSE CASTELLARAS -PLASCASSIER", - "Marque": "BP" + "name": "BP GRASSE CASTELLARAS -PLASCASSIER", + "brand": "BP" }, "6140004": { - "Nom": "RELAIS VENCE LA ROCADE", - "Marque": "Total" + "name": "RELAIS VENCE LA ROCADE", + "brand": "Total" }, "6140005": { - "Nom": "Carrefour Contact Vence", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact Vence", + "brand": "Carrefour Contact" }, "6150004": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "6150005": { - "Nom": "Intermarché CANNES LA BOCCA", - "Marque": "Intermarché" + "name": "Intermarché CANNES LA BOCCA", + "brand": "Intermarché" }, "6150007": { - "Nom": "STATION LECLERC RANDIS", - "Marque": "Leclerc" + "name": "STATION LECLERC RANDIS", + "brand": "Leclerc" }, "6150008": { - "Nom": "RELAIS ST CASSIEN", - "Marque": "Total Access" + "name": "RELAIS ST CASSIEN", + "brand": "Total Access" }, "6150009": { - "Nom": "AGIP CANNES", - "Marque": "Agip" + "name": "AGIP CANNES", + "brand": "Agip" }, "6156001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "6160007": { - "Nom": "AGIP ANTIBES JUAN LES PINS", - "Marque": "Agip" + "name": "AGIP ANTIBES JUAN LES PINS", + "brand": "Agip" }, "6190004": { - "Nom": "STATION SERVICE DU STADE", - "Marque": "Esso" + "name": "STATION SERVICE DU STADE", + "brand": "Esso" }, "6190008": { - "Nom": "RELAIS DU GORBIO", - "Marque": "Total Access" + "name": "RELAIS DU GORBIO", + "brand": "Total Access" }, "6190009": { - "Nom": "STATION ENI ROQUEBRUNE-CAP-MARTIN", - "Marque": "Agip" + "name": "STATION ENI ROQUEBRUNE-CAP-MARTIN", + "brand": "Agip" }, "6200006": { - "Nom": "BP NICE GRAND SOLEIL", - "Marque": "BP" + "name": "BP NICE GRAND SOLEIL", + "brand": "BP" }, "6200014": { - "Nom": "Esso La Manda", - "Marque": "Esso Express" + "name": "Esso La Manda", + "brand": "Esso Express" }, "6200022": { - "Nom": "AGIP NICE MARGUERITE", - "Marque": "Agip" + "name": "AGIP NICE MARGUERITE", + "brand": "Agip" }, "6200026": { - "Nom": "RELAIS NICE PR.D.ANGLAIS", - "Marque": "Total Access" + "name": "RELAIS NICE PR.D.ANGLAIS", + "brand": "Total Access" }, "6200027": { - "Nom": "RELAIS STE MARGUERITE GRENOBLE", - "Marque": "Total Access" + "name": "RELAIS STE MARGUERITE GRENOBLE", + "brand": "Total Access" }, "6200028": { - "Nom": "RELAIS DES PERGOLAS", - "Marque": "Total Access" + "name": "RELAIS DES PERGOLAS", + "brand": "Total Access" }, "6200029": { - "Nom": "BP NICE MAGNAN", - "Marque": "BP" + "name": "BP NICE MAGNAN", + "brand": "BP" }, "6200031": { - "Nom": "Dyneff Nice", - "Marque": "Dyneff" + "name": "Dyneff Nice", + "brand": "Dyneff" }, "6200032": { - "Nom": "BP NICE ARENAS", - "Marque": "BP" + "name": "BP NICE ARENAS", + "brand": "BP" }, "6201001": { - "Nom": "Carrefour NICE LINGOSTIERE", - "Marque": "Carrefour" + "name": "Carrefour NICE LINGOSTIERE", + "brand": "Carrefour" }, "6201002": { - "Nom": "SAS NIKAIADIS", - "Marque": "Leclerc" + "name": "SAS NIKAIADIS", + "brand": "Leclerc" }, "6210009": { - "Nom": "BP MANDELIEU RELAIS L'ESTEREL", - "Marque": "BP" + "name": "BP MANDELIEU RELAIS L'ESTEREL", + "brand": "BP" }, "6211001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "6220003": { - "Nom": "Intermarché VALLAURIS", - "Marque": "Intermarché" + "name": "Intermarché VALLAURIS", + "brand": "Intermarché" }, "6220005": { - "Nom": "RELAIS BATTERIE", - "Marque": "Total" + "name": "RELAIS BATTERIE", + "brand": "Total" }, "6220006": { - "Nom": "E.LECLERC VALLAURIS", - "Marque": "Leclerc" + "name": "E.LECLERC VALLAURIS", + "brand": "Leclerc" }, "6230002": { - "Nom": "ESSO CORNE D'OR", - "Marque": "Esso Express" + "name": "ESSO CORNE D'OR", + "brand": "Esso Express" }, "6230003": { - "Nom": "RELAIS PONT ST JEAN", - "Marque": "Total" + "name": "RELAIS PONT ST JEAN", + "brand": "Total" }, "6240003": { - "Nom": "SARL PCD 06", - "Marque": "Avia" + "name": "SARL PCD 06", + "brand": "Avia" }, "6240004": { - "Nom": "L'Español", - "Marque": "SEAM" + "name": "L'Español", + "brand": "SEAM" }, "6250001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "6250006": { - "Nom": "SARL SESAR", - "Marque": "Shell" + "name": "SARL SESAR", + "brand": "Shell" }, "6250009": { - "Nom": "RELAIS DE BREGUIERES SUD", - "Marque": "Total" + "name": "RELAIS DE BREGUIERES SUD", + "brand": "Total" }, "6250010": { - "Nom": "RELAIS MOUGINS LES CAMPELIER", - "Marque": "Total Access" + "name": "RELAIS MOUGINS LES CAMPELIER", + "brand": "Total Access" }, "6250011": { - "Nom": "BP MOUGINS SAINT MARTIN", - "Marque": "BP" + "name": "BP MOUGINS SAINT MARTIN", + "brand": "BP" }, "6260001": { - "Nom": "JM KUCINIC", - "Marque": "Total" + "name": "JM KUCINIC", + "brand": "Total" }, "6260002": { - "Nom": "SAS PUGEDIS", - "Marque": "Carrefour Market" + "name": "SAS PUGEDIS", + "brand": "Carrefour Market" }, "6270001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "6270003": { - "Nom": "Intermarché VILLENEUVE LOUBET", - "Marque": "Intermarché" + "name": "Intermarché VILLENEUVE LOUBET", + "brand": "Intermarché" }, "6296001": { - "Nom": "STATION DU MIN", - "Marque": "Indépendant sans enseigne" + "name": "STATION DU MIN", + "brand": "Indépendant sans enseigne" }, "6300002": { - "Nom": "GATTO MAZOUT SAR", - "Marque": "Avia" + "name": "GATTO MAZOUT SAR", + "brand": "Avia" }, "6300008": { - "Nom": "ESSO ST ROCH NICE", - "Marque": "Esso Express" + "name": "ESSO ST ROCH NICE", + "brand": "Esso Express" }, "6300012": { - "Nom": "STATION DES OLIVIERS", - "Marque": "Indépendant sans enseigne" + "name": "STATION DES OLIVIERS", + "brand": "Indépendant sans enseigne" }, "6300015": { - "Nom": "SAS Aldebaran Station Carnot", - "Marque": "Total" + "name": "SAS Aldebaran Station Carnot", + "brand": "Total" }, "6300016": { - "Nom": "RELAIS DE SEMERIA", - "Marque": "Total" + "name": "RELAIS DE SEMERIA", + "brand": "Total" }, "6300017": { - "Nom": "RELAIS NICE GARIGLIANO", - "Marque": "Total" + "name": "RELAIS NICE GARIGLIANO", + "brand": "Total" }, "6300018": { - "Nom": "RELAIS ROQUEBILLIERE", - "Marque": "Total Access" + "name": "RELAIS ROQUEBILLIERE", + "brand": "Total Access" }, "6300019": { - "Nom": "STATION SERVICE RRB", - "Marque": "ELAN" + "name": "STATION SERVICE RRB", + "brand": "ELAN" }, "6310002": { - "Nom": "RELAIS PLAISANCIERS", - "Marque": "Total" + "name": "RELAIS PLAISANCIERS", + "brand": "Total" }, "6320003": { - "Nom": "ESSO LA SCOPERTA", - "Marque": "Esso" + "name": "ESSO LA SCOPERTA", + "brand": "Esso" }, "6320004": { - "Nom": "C'TNT", - "Marque": "Indépendant sans enseigne" + "name": "C'TNT", + "brand": "Indépendant sans enseigne" }, "6320005": { - "Nom": "RELAIS CAP D'AIL", - "Marque": "Total" + "name": "RELAIS CAP D'AIL", + "brand": "Total" }, "6320006": { - "Nom": "RELAIS CAP D'AIL BASSE CORNICHE", - "Marque": "Total" + "name": "RELAIS CAP D'AIL BASSE CORNICHE", + "brand": "Total" }, "6330002": { - "Nom": "Intermarché ROQUEFORT LES PINS", - "Marque": "Intermarché" + "name": "Intermarché ROQUEFORT LES PINS", + "brand": "Intermarché" }, "6330003": { - "Nom": "Relais de roquefort les pins", - "Marque": "Total" + "name": "Relais de roquefort les pins", + "brand": "Total" }, "6340001": { - "Nom": "GARAGE DE LA VALLEE - BARNOIN", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE DE LA VALLEE - BARNOIN", + "brand": "Indépendant sans enseigne" }, "6340002": { - "Nom": "Intermarché CANTARON", - "Marque": "Intermarché" + "name": "Intermarché CANTARON", + "brand": "Intermarché" }, "6345001": { - "Nom": "AUCHAN NICE LA TRINITE", - "Marque": "Auchan" + "name": "AUCHAN NICE LA TRINITE", + "brand": "Auchan" }, "6360001": { - "Nom": "SARL RELAIS D'EZE", - "Marque": "Avia" + "name": "SARL RELAIS D'EZE", + "brand": "Avia" }, "6370001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "6400001": { - "Nom": "SARL MONTFLEURY", - "Marque": "Total" + "name": "SARL MONTFLEURY", + "brand": "Total" }, "6400004": { - "Nom": "ESSO CALIFORNIE", - "Marque": "Esso Express" + "name": "ESSO CALIFORNIE", + "brand": "Esso Express" }, "6400005": { - "Nom": "Station de la californie", - "Marque": "Avia" + "name": "Station de la californie", + "brand": "Avia" }, "6400010": { - "Nom": "RELAIS CANNES RIOU", - "Marque": "Total" + "name": "RELAIS CANNES RIOU", + "brand": "Total" }, "6400013": { - "Nom": "BP CANNES VALLOMBROSA", - "Marque": "BP" + "name": "BP CANNES VALLOMBROSA", + "brand": "BP" }, "6410003": { - "Nom": "D R T STATION ST GREGOIRE", - "Marque": "Avia" + "name": "D R T STATION ST GREGOIRE", + "brand": "Avia" }, "6420001": { - "Nom": "SP AUTO", - "Marque": "Indépendant sans enseigne" + "name": "SP AUTO", + "brand": "Indépendant sans enseigne" }, "6430001": { - "Nom": "Bati Roya Energie", - "Marque": "Indépendant sans enseigne" + "name": "Bati Roya Energie", + "brand": "Indépendant sans enseigne" }, "6450001": { - "Nom": "SARL GARAGE DES DEUX VALLEES", - "Marque": "Elan" + "name": "SARL GARAGE DES DEUX VALLEES", + "brand": "Elan" }, "6450002": { - "Nom": "Station Vesubienne", - "Marque": "Indépendant sans enseigne" + "name": "Station Vesubienne", + "brand": "Indépendant sans enseigne" }, "6460002": { - "Nom": "Intermarché ST VALLIER DE THIEY", - "Marque": "Intermarché Contact" + "name": "Intermarché ST VALLIER DE THIEY", + "brand": "Intermarché Contact" }, "6480002": { - "Nom": "AUREDIS", - "Marque": "Leclerc" + "name": "AUREDIS", + "brand": "Leclerc" }, "6500004": { - "Nom": "Intermarché MENTON BORRIGO", - "Marque": "Intermarché" + "name": "Intermarché MENTON BORRIGO", + "brand": "Intermarché" }, "6500005": { - "Nom": "Intermarché MENTON CAREÏ", - "Marque": "Intermarché" + "name": "Intermarché MENTON CAREÏ", + "brand": "Intermarché" }, "6500008": { - "Nom": "RELAIS MENTON GARAVAN ROUTE", - "Marque": "Total" + "name": "RELAIS MENTON GARAVAN ROUTE", + "brand": "Total" }, "6500010": { - "Nom": "BP MENTON UNION", - "Marque": "BP" + "name": "BP MENTON UNION", + "brand": "BP" }, "6510001": { - "Nom": "Station Total Carros", - "Marque": "Total" + "name": "Station Total Carros", + "brand": "Total" }, "6510003": { - "Nom": "Intermarché GATTIERES", - "Marque": "Intermarché" + "name": "Intermarché GATTIERES", + "brand": "Intermarché" }, "6520001": { - "Nom": "ESSO MAGAGNOSC", - "Marque": "Esso Express" + "name": "ESSO MAGAGNOSC", + "brand": "Esso Express" }, "6530002": { - "Nom": "Intermarché PEYMEINADE", - "Marque": "Intermarché" + "name": "Intermarché PEYMEINADE", + "brand": "Intermarché" }, "6530003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "6530004": { - "Nom": "RELAIS DE LA BISE", - "Marque": "Total" + "name": "RELAIS DE LA BISE", + "brand": "Total" }, "6540001": { - "Nom": "MR PEY GERARD", - "Marque": "Total" + "name": "MR PEY GERARD", + "brand": "Total" }, "6540002": { - "Nom": "STATION ENI", - "Marque": "ENI" + "name": "STATION ENI", + "brand": "ENI" }, "6550001": { - "Nom": "AGIP LA ROQUETTE AV DE LA REPUBLIQUE", - "Marque": "Agip" + "name": "AGIP LA ROQUETTE AV DE LA REPUBLIQUE", + "brand": "Agip" }, "6550002": { - "Nom": "Intermarché LA ROQUETTE/SIAGNE", - "Marque": "Intermarché" + "name": "Intermarché LA ROQUETTE/SIAGNE", + "brand": "Intermarché" }, "6560001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "6560005": { - "Nom": "STATION ESSO", - "Marque": "Esso" + "name": "STATION ESSO", + "brand": "Esso" }, "6580001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "6600001": { - "Nom": "Carrefour Antibes station service", - "Marque": "Carrefour" + "name": "Carrefour Antibes station service", + "brand": "Carrefour" }, "6600007": { - "Nom": "ETS SARL CHENEAU", - "Marque": "Avia" + "name": "ETS SARL CHENEAU", + "brand": "Avia" }, "6600008": { - "Nom": "ESSO DU CAP", - "Marque": "Esso Express" + "name": "ESSO DU CAP", + "brand": "Esso Express" }, "6600009": { - "Nom": "ESSO DUGOMMIER", - "Marque": "Esso Express" + "name": "ESSO DUGOMMIER", + "brand": "Esso Express" }, "6600010": { - "Nom": "ESSO TERRES BLANCHES", - "Marque": "Esso Express" + "name": "ESSO TERRES BLANCHES", + "brand": "Esso Express" }, "6600012": { - "Nom": "RELAIS DE LA BRAGUE", - "Marque": "Elan" + "name": "RELAIS DE LA BRAGUE", + "brand": "Elan" }, "6600013": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "6600014": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "6600022": { - "Nom": "RELAIS FORT CARRE", - "Marque": "Total" + "name": "RELAIS FORT CARRE", + "brand": "Total" }, "6600023": { - "Nom": "RELAIS RIVIERA", - "Marque": "Total" + "name": "RELAIS RIVIERA", + "brand": "Total" }, "6600024": { - "Nom": "RELAIS DES BASTIDES", - "Marque": "Total Access" + "name": "RELAIS DES BASTIDES", + "brand": "Total Access" }, "6600025": { - "Nom": "BP ANTIBES LES PALMIERS", - "Marque": "BP" + "name": "BP ANTIBES LES PALMIERS", + "brand": "BP" }, "6610001": { - "Nom": "SARL GARAGE GAUDOIS", - "Marque": "Indépendant sans enseigne" + "name": "SARL GARAGE GAUDOIS", + "brand": "Indépendant sans enseigne" }, "6640001": { - "Nom": "STATION DES BAOUS", - "Marque": "Esso" + "name": "STATION DES BAOUS", + "brand": "Esso" }, "6650001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "6650002": { - "Nom": "Delpy", - "Marque": "Indépendant sans enseigne" + "name": "Delpy", + "brand": "Indépendant sans enseigne" }, "6650003": { - "Nom": "SARL LSWD", - "Marque": "Avia" + "name": "SARL LSWD", + "brand": "Avia" }, "6660001": { - "Nom": "GARAGE LATIL ET FILS", - "Marque": "Elan" + "name": "GARAGE LATIL ET FILS", + "brand": "Elan" }, "6670003": { - "Nom": "SARL CLAUSS", - "Marque": "Elan" + "name": "SARL CLAUSS", + "brand": "Elan" }, "6670007": { - "Nom": "RELAIS COLOMARS LES VALLEES", - "Marque": "Total Access" + "name": "RELAIS COLOMARS LES VALLEES", + "brand": "Total Access" }, "6670008": { - "Nom": "Energies Services", - "Marque": "Avia" + "name": "Energies Services", + "brand": "Avia" }, "6670009": { - "Nom": "AGIP COLOMARS", - "Marque": "Agip" + "name": "AGIP COLOMARS", + "brand": "Agip" }, "6700002": { - "Nom": "CHENEAU SARL", - "Marque": "Avia" + "name": "CHENEAU SARL", + "brand": "Avia" }, "6700003": { - "Nom": "CHENEAU SARL", - "Marque": "Avia" + "name": "CHENEAU SARL", + "brand": "Avia" }, "6700005": { - "Nom": "BOCCANERA", - "Marque": "Indépendant sans enseigne" + "name": "BOCCANERA", + "brand": "Indépendant sans enseigne" }, "6700006": { - "Nom": "RELAIS DE GAULLE", - "Marque": "Total" + "name": "RELAIS DE GAULLE", + "brand": "Total" }, "6750002": { - "Nom": "STATION VILLAUTE - GIRARDIN", - "Marque": "GIRARDIN" + "name": "STATION VILLAUTE - GIRARDIN", + "brand": "GIRARDIN" }, "6770002": { - "Nom": "RELAIS DE CARROS", - "Marque": "Total Access" + "name": "RELAIS DE CARROS", + "brand": "Total Access" }, "6800006": { - "Nom": "AGIP CROS DE CAGNES BD DE LA PLAGE", - "Marque": "Agip" + "name": "AGIP CROS DE CAGNES BD DE LA PLAGE", + "brand": "Agip" }, "6800017": { - "Nom": "RELAIS VAL FLEURI", - "Marque": "Total" + "name": "RELAIS VAL FLEURI", + "brand": "Total" }, "6800018": { - "Nom": "RELAIS DU PALMIER", - "Marque": "Total" + "name": "RELAIS DU PALMIER", + "brand": "Total" }, "6800019": { - "Nom": "RELAIS DES OLIVIERS", - "Marque": "Total Access" + "name": "RELAIS DES OLIVIERS", + "brand": "Total Access" }, "6800020": { - "Nom": "RELAIS GRANDS PLANS", - "Marque": "Total Access" + "name": "RELAIS GRANDS PLANS", + "brand": "Total Access" }, "6800022": { - "Nom": "BP CAGNES SUR MER MALVAN", - "Marque": "BP" + "name": "BP CAGNES SUR MER MALVAN", + "brand": "BP" }, "6800024": { - "Nom": "AGIP CAGNES SUR MER", - "Marque": "Agip" + "name": "AGIP CAGNES SUR MER", + "brand": "Agip" }, "6800025": { - "Nom": "BP CAGNES PENETRANTE", - "Marque": "BP" + "name": "BP CAGNES PENETRANTE", + "brand": "BP" }, "7000002": { - "Nom": "Intermarché PRIVAS", - "Marque": "Intermarché" + "name": "Intermarché PRIVAS", + "brand": "Intermarché" }, "7000003": { - "Nom": "STATION AGIP Veyras", - "Marque": "AGIP" + "name": "STATION AGIP Veyras", + "brand": "AGIP" }, "7100002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "7100006": { - "Nom": "CLUZEL SE", - "Marque": "Indépendant sans enseigne" + "name": "CLUZEL SE", + "brand": "Indépendant sans enseigne" }, "7100007": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "7100008": { - "Nom": "STATION BROSSIER ENERGIES", - "Marque": "BROSSIER" + "name": "STATION BROSSIER ENERGIES", + "brand": "BROSSIER" }, "7110004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "7120001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "7120004": { - "Nom": "SNC LIXSO", - "Marque": "Elan" + "name": "SNC LIXSO", + "brand": "Elan" }, "7130002": { - "Nom": "SARL JUCLEMAT", - "Marque": "Avia" + "name": "SARL JUCLEMAT", + "brand": "Avia" }, "7130004": { - "Nom": "Garage andré station Total", - "Marque": "Total" + "name": "Garage andré station Total", + "brand": "Total" }, "7140001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "7140002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "7150001": { - "Nom": "GARAGE DU PONT", - "Marque": "Elan" + "name": "GARAGE DU PONT", + "brand": "Elan" }, "7150003": { - "Nom": "Intermarché VALLON PONT D'ARC", - "Marque": "Intermarché" + "name": "Intermarché VALLON PONT D'ARC", + "brand": "Intermarché" }, "7160001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "7160003": { - "Nom": "Intermarché LE CHEYLARD", - "Marque": "Intermarché" + "name": "Intermarché LE CHEYLARD", + "brand": "Intermarché" }, "7170001": { - "Nom": "SARL GARAGE GABRIEL", - "Marque": "Total" + "name": "SARL GARAGE GABRIEL", + "brand": "Total" }, "7170002": { - "Nom": "AGIP LAVILLEDIEU RN 102", - "Marque": "Agip" + "name": "AGIP LAVILLEDIEU RN 102", + "brand": "Agip" }, "7170003": { - "Nom": "Intermarché VILLENEUVE DE BERG", - "Marque": "Intermarché" + "name": "Intermarché VILLENEUVE DE BERG", + "brand": "Intermarché" }, "7190001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "7200003": { - "Nom": "BRELY SARL", - "Marque": "Avia" + "name": "BRELY SARL", + "brand": "Avia" }, "7200005": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "7200006": { - "Nom": "CENTRE E LECLERC AUBENAS", - "Marque": "Leclerc" + "name": "CENTRE E LECLERC AUBENAS", + "brand": "Leclerc" }, "7200007": { - "Nom": "Intermarché HYPER", - "Marque": "Intermarché" + "name": "Intermarché HYPER", + "brand": "Intermarché" }, "7200008": { - "Nom": "RELAIS DE FONTBONNE", - "Marque": "Total Access" + "name": "RELAIS DE FONTBONNE", + "brand": "Total Access" }, "7200009": { - "Nom": "station Elan SARL Garage Joseph", - "Marque": "Elan" + "name": "station Elan SARL Garage Joseph", + "brand": "Elan" }, "7200010": { - "Nom": "AMS Distrib", - "Marque": "Carrefour Market" + "name": "AMS Distrib", + "brand": "Carrefour Market" }, "7200011": { - "Nom": "SARL SEB AUTO SERVICE", - "Marque": "Indépendant" + "name": "SARL SEB AUTO SERVICE", + "brand": "Indépendant" }, "7210001": { - "Nom": "Hyper U", - "Marque": "Système U" + "name": "Hyper U", + "brand": "Système U" }, "7220003": { - "Nom": "Carrefour Contact VIVIERS", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact VIVIERS", + "brand": "Carrefour Contact" }, "7230001": { - "Nom": "SAS RANDRE", - "Marque": "Netto" + "name": "SAS RANDRE", + "brand": "Netto" }, "7240002": { - "Nom": "Intermarché VERNOUX EN VIVARAIS", - "Marque": "Intermarché" + "name": "Intermarché VERNOUX EN VIVARAIS", + "brand": "Intermarché" }, "7250001": { - "Nom": "Station Total TF Distribution", - "Marque": "Total" + "name": "Station Total TF Distribution", + "brand": "Total" }, "7250004": { - "Nom": "Station Avia méhari sun", - "Marque": "Avia" + "name": "Station Avia méhari sun", + "brand": "Avia" }, "7260001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "7260002": { - "Nom": "Intermarché ROSIERES", - "Marque": "Intermarché" + "name": "Intermarché ROSIERES", + "brand": "Intermarché" }, "7270001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "7290000": { - "Nom": "STATION 3C", - "Marque": "Indépendant sans enseigne" + "name": "STATION 3C", + "brand": "Indépendant sans enseigne" }, "7300001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "7300003": { - "Nom": "Intermarché ST JEAN DE MUZOLS", - "Marque": "Intermarché" + "name": "Intermarché ST JEAN DE MUZOLS", + "brand": "Intermarché" }, "7300005": { - "Nom": "BOURG DISTRIBUTION", - "Marque": "Leclerc" + "name": "BOURG DISTRIBUTION", + "brand": "Leclerc" }, "7300006": { - "Nom": "RELAIS DES LUETTES", - "Marque": "Total" + "name": "RELAIS DES LUETTES", + "brand": "Total" }, "7300007": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "7330001": { - "Nom": "VERPILLAT", - "Marque": "Total" + "name": "VERPILLAT", + "brand": "Total" }, "7340001": { - "Nom": "Station Total", - "Marque": "Total" + "name": "Station Total", + "brand": "Total" }, "7340002": { - "Nom": "DRIVE DAVEZIEUX", - "Marque": "Leclerc" + "name": "DRIVE DAVEZIEUX", + "brand": "Leclerc" }, "7380001": { - "Nom": "SARL GARAGE CEVENNES DIESEL", - "Marque": "Elan" + "name": "SARL GARAGE CEVENNES DIESEL", + "brand": "Elan" }, "7380002": { - "Nom": "Intermarché LALEVADE", - "Marque": "Intermarché" + "name": "Intermarché LALEVADE", + "brand": "Intermarché" }, "7400002": { - "Nom": "Intermarché LE TEIL", - "Marque": "Intermarché" + "name": "Intermarché LE TEIL", + "brand": "Intermarché" }, "7400003": { - "Nom": "Relais de la Roche Noire", - "Marque": "Total" + "name": "Relais de la Roche Noire", + "brand": "Total" }, "7410001": { - "Nom": "STATION BROSSIER ENERGIES", - "Marque": "BROSSIER" + "name": "STATION BROSSIER ENERGIES", + "brand": "BROSSIER" }, "7430001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "7430002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "7430003": { - "Nom": "SARL JUCLEMAT", - "Marque": "Avia" + "name": "SARL JUCLEMAT", + "brand": "Avia" }, "7500001": { - "Nom": "AUCHAN GUILHERAND GRANGES", - "Marque": "Auchan" + "name": "AUCHAN GUILHERAND GRANGES", + "brand": "Auchan" }, "7500002": { - "Nom": "Intermarché SOYONS", - "Marque": "Intermarché" + "name": "Intermarché SOYONS", + "brand": "Intermarché" }, "7580002": { - "Nom": "SAINT JEAN AUTO SERVICE", - "Marque": "Avia" + "name": "SAINT JEAN AUTO SERVICE", + "brand": "Avia" }, "7700002": { - "Nom": "Intermarché BOURG SAINT ANDEOL", - "Marque": "Intermarché" + "name": "Intermarché BOURG SAINT ANDEOL", + "brand": "Intermarché" }, "7700003": { - "Nom": "SAS ANCIA", - "Marque": "Intermarché Contact" + "name": "SAS ANCIA", + "brand": "Intermarché Contact" }, "7800001": { - "Nom": "SARL RELAIS DE CHARMES", - "Marque": "Total" + "name": "SARL RELAIS DE CHARMES", + "brand": "Total" }, "7800003": { - "Nom": "Intermarché LA VOULTE SUR RHONE", - "Marque": "Intermarché" + "name": "Intermarché LA VOULTE SUR RHONE", + "brand": "Intermarché" }, "7800006": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "8000001": { - "Nom": "Carrefour CHARLEVILLE-MEZIERES", - "Marque": "Carrefour" + "name": "Carrefour CHARLEVILLE-MEZIERES", + "brand": "Carrefour" }, "8000002": { - "Nom": "Supermarché Match CHARLEVILLE", - "Marque": "Supermarché Match" + "name": "Supermarché Match CHARLEVILLE", + "brand": "Supermarché Match" }, "8000005": { - "Nom": "ESSO RIMBAUD", - "Marque": "Esso Express" + "name": "ESSO RIMBAUD", + "brand": "Esso Express" }, "8000006": { - "Nom": "CORA VILLERS-SEMEUSE", - "Marque": "CORA" + "name": "CORA VILLERS-SEMEUSE", + "brand": "CORA" }, "8000007": { - "Nom": "Intermarché CHARLEVILLE MEZIERES", - "Marque": "Intermarché" + "name": "Intermarché CHARLEVILLE MEZIERES", + "brand": "Intermarché" }, "8000008": { - "Nom": "Intermarché CHARLEVILLE CARNOT", - "Marque": "Intermarché" + "name": "Intermarché CHARLEVILLE CARNOT", + "brand": "Intermarché" }, "8000010": { - "Nom": "RELAIS BAYARD", - "Marque": "Total" + "name": "RELAIS BAYARD", + "brand": "Total" }, "8090001": { - "Nom": "ESSO CLIRON", - "Marque": "Esso Express" + "name": "ESSO CLIRON", + "brand": "Esso Express" }, "8110001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "8110002": { - "Nom": "SAS DALISSIME", - "Marque": "Intermarché" + "name": "SAS DALISSIME", + "brand": "Intermarché" }, "8120001": { - "Nom": "Intermarché BOGNY SUR MEUSE", - "Marque": "Intermarché" + "name": "Intermarché BOGNY SUR MEUSE", + "brand": "Intermarché" }, "8130003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "8130004": { - "Nom": "GARAGE RENAUDIN CEDRIC", - "Marque": "Total" + "name": "GARAGE RENAUDIN CEDRIC", + "brand": "Total" }, "8140002": { - "Nom": "GEANT CASINO BAZEILLES", - "Marque": "Super Casino" + "name": "GEANT CASINO BAZEILLES", + "brand": "Super Casino" }, "8150001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "8150002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "8170001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "8170004": { - "Nom": "Total SAS L'ARDOISIERE", - "Marque": "Total" + "name": "Total SAS L'ARDOISIERE", + "brand": "Total" }, "8190001": { - "Nom": "EOR ASFELD SARL RAGUET", - "Marque": "Total" + "name": "EOR ASFELD SARL RAGUET", + "brand": "Total" }, "8190003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "8200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "8200004": { - "Nom": "ESSO LAMARCK", - "Marque": "Esso Express" + "name": "ESSO LAMARCK", + "brand": "Esso Express" }, "8200005": { - "Nom": "SAS SEDAN EXPLOITATION", - "Marque": "Leclerc" + "name": "SAS SEDAN EXPLOITATION", + "brand": "Leclerc" }, "8200007": { - "Nom": "Intermarché SEDAN", - "Marque": "Intermarché" + "name": "Intermarché SEDAN", + "brand": "Intermarché" }, "8200010": { - "Nom": "RELAIS SEDAN MARNE", - "Marque": "Total Access" + "name": "RELAIS SEDAN MARNE", + "brand": "Total Access" }, "8210001": { - "Nom": "MOUZON FEDRICQ STATION ESSO", - "Marque": "Esso" + "name": "MOUZON FEDRICQ STATION ESSO", + "brand": "Esso" }, "8230001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "8260002": { - "Nom": "Intermarché Contact SAS Serlimon", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact SAS Serlimon", + "brand": "Intermarché Contact" }, "8270002": { - "Nom": "RELAIS DES ARDENNES", - "Marque": "Total" + "name": "RELAIS DES ARDENNES", + "brand": "Total" }, "8300001": { - "Nom": "Carrefour RETHEL", - "Marque": "Carrefour" + "name": "Carrefour RETHEL", + "brand": "Carrefour" }, "8300006": { - "Nom": "Intermarché SAS Jeanclair", - "Marque": "Intermarché" + "name": "Intermarché SAS Jeanclair", + "brand": "Intermarché" }, "8300007": { - "Nom": "SAS GEOMASE", - "Marque": "Intermarché" + "name": "SAS GEOMASE", + "brand": "Intermarché" }, "8300008": { - "Nom": "RELAIS DES EBURONS", - "Marque": "Total Access" + "name": "RELAIS DES EBURONS", + "brand": "Total Access" }, "8310001": { - "Nom": "GARAGE VIVES ALAIN", - "Marque": "Total" + "name": "GARAGE VIVES ALAIN", + "brand": "Total" }, "8320002": { - "Nom": "SAS VICTOM", - "Marque": "Intermarché" + "name": "SAS VICTOM", + "brand": "Intermarché" }, "8320003": { - "Nom": "FIOUL SERVICE", - "Marque": "FIOUL SERVICE" + "name": "FIOUL SERVICE", + "brand": "FIOUL SERVICE" }, "8330002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "8350002": { - "Nom": "Carrefour EXPRESS", - "Marque": "Carrefour Express" + "name": "Carrefour EXPRESS", + "brand": "Carrefour Express" }, "8360003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "8400002": { - "Nom": "ESSO CHANZY", - "Marque": "Esso Express" + "name": "ESSO CHANZY", + "brand": "Esso Express" }, "8400003": { - "Nom": "VOUDIS", - "Marque": "Leclerc" + "name": "VOUDIS", + "brand": "Leclerc" }, "8400004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "8430001": { - "Nom": "AUTO SERVICES PIXIEN", - "Marque": "Indépendant sans enseigne" + "name": "AUTO SERVICES PIXIEN", + "brand": "Indépendant sans enseigne" }, "8500002": { - "Nom": "Intermarché REVIN", - "Marque": "Intermarché" + "name": "Intermarché REVIN", + "brand": "Intermarché" }, "8600002": { - "Nom": "STATION DE L'ECSALE", - "Marque": "Esso" + "name": "STATION DE L'ECSALE", + "brand": "Esso" }, "8600003": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "8700001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "8800001": { - "Nom": "R. DES 2 VALLEES", - "Marque": "Total" + "name": "R. DES 2 VALLEES", + "brand": "Total" }, "8800004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "8800008": { - "Nom": "sas districarb hr", - "Marque": "Indépendant sans enseigne" + "name": "sas districarb hr", + "brand": "Indépendant sans enseigne" }, "9000001": { - "Nom": "MR FAVARETTO", - "Marque": "Total" + "name": "MR FAVARETTO", + "brand": "Total" }, "9000002": { - "Nom": "MR TAILLEZ", - "Marque": "Dyneff" + "name": "MR TAILLEZ", + "brand": "Dyneff" }, "9000003": { - "Nom": "EOR FOIX AUTORAMA", - "Marque": "Total" + "name": "EOR FOIX AUTORAMA", + "brand": "Total" }, "9000004": { - "Nom": "FUXEDIS", - "Marque": "Leclerc" + "name": "FUXEDIS", + "brand": "Leclerc" }, "9000005": { - "Nom": "Leader Price", - "Marque": "Indépendant sans enseigne" + "name": "Leader Price", + "brand": "Indépendant sans enseigne" }, "9000006": { - "Nom": "Intermarché FOIX", - "Marque": "Intermarché" + "name": "Intermarché FOIX", + "brand": "Intermarché" }, "9100001": { - "Nom": "SAS ALTIS PAMIERS", - "Marque": "Intermarché" + "name": "SAS ALTIS PAMIERS", + "brand": "Intermarché" }, "9100002": { - "Nom": "RELAIS LESTANG", - "Marque": "Total" + "name": "RELAIS LESTANG", + "brand": "Total" }, "9100003": { - "Nom": "SARL PYRENEES AUTOS", - "Marque": "Total" + "name": "SARL PYRENEES AUTOS", + "brand": "Total" }, "9100004": { - "Nom": "ARIEDIS", - "Marque": "Leclerc" + "name": "ARIEDIS", + "brand": "Leclerc" }, "9100005": { - "Nom": "UNIMAG FAURE", - "Marque": "Indépendant sans enseigne" + "name": "UNIMAG FAURE", + "brand": "Indépendant sans enseigne" }, "9100006": { - "Nom": "SAS LAGARDE Intermarché", - "Marque": "Intermarché" + "name": "SAS LAGARDE Intermarché", + "brand": "Intermarché" }, "9110001": { - "Nom": "Intermarché Super", - "Marque": "Intermarché" + "name": "Intermarché Super", + "brand": "Intermarché" }, "9110002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "9120001": { - "Nom": "RELAIS DU MONTCALM", - "Marque": "Esso" + "name": "RELAIS DU MONTCALM", + "brand": "Esso" }, "9130001": { - "Nom": "ROUILLOU & FILS", - "Marque": "Total" + "name": "ROUILLOU & FILS", + "brand": "Total" }, "9140001": { - "Nom": "SARL ETS ROZES", - "Marque": "Total" + "name": "SARL ETS ROZES", + "brand": "Total" }, "9190001": { - "Nom": "Leader Price", - "Marque": "Indépendant sans enseigne" + "name": "Leader Price", + "brand": "Indépendant sans enseigne" }, "9190002": { - "Nom": "Intermarché SAINT LIZIER", - "Marque": "Intermarché" + "name": "Intermarché SAINT LIZIER", + "brand": "Intermarché" }, "9190004": { - "Nom": "SARL INTER CLUB", - "Marque": "INTER CLUB" + "name": "SARL INTER CLUB", + "brand": "INTER CLUB" }, "9200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "9200003": { - "Nom": "DEFA", - "Marque": "Indépendant sans enseigne" + "name": "DEFA", + "brand": "Indépendant sans enseigne" }, "9210001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "9220001": { - "Nom": "SPAR", - "Marque": "Indépendant sans enseigne" + "name": "SPAR", + "brand": "Indépendant sans enseigne" }, "9240002": { - "Nom": "SPAR LABASTIDE", - "Marque": "SPAR" + "name": "SPAR LABASTIDE", + "brand": "SPAR" }, "9270003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "9300002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "9300005": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "9300006": { - "Nom": "SAS NICO", - "Marque": "Intermarché" + "name": "SAS NICO", + "brand": "Intermarché" }, "9340001": { - "Nom": "SUPER U VERNIOLLE", - "Marque": "Système U" + "name": "SUPER U VERNIOLLE", + "brand": "Système U" }, "9350002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "9400001": { - "Nom": "super u station", - "Marque": "Système U" + "name": "super u station", + "brand": "Système U" }, "9400002": { - "Nom": "SARL J. CHAGUE", - "Marque": "Esso" + "name": "SARL J. CHAGUE", + "brand": "Esso" }, "9500001": { - "Nom": "SARL SJCP", - "Marque": "Total Access" + "name": "SARL SJCP", + "brand": "Total Access" }, "9500002": { - "Nom": "SARL RELAIS SAINT CHRISTOPHE KAPFER", - "Marque": "Indépendant sans enseigne" + "name": "SARL RELAIS SAINT CHRISTOPHE KAPFER", + "brand": "Indépendant sans enseigne" }, "9500003": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "9600002": { - "Nom": "LABATUT SARL", - "Marque": "Indépendant sans enseigne" + "name": "LABATUT SARL", + "brand": "Indépendant sans enseigne" }, "9600003": { - "Nom": "SAS NICO", - "Marque": "Intermarché" + "name": "SAS NICO", + "brand": "Intermarché" }, "9700001": { - "Nom": "Intermarché SAVERDUN", - "Marque": "Intermarché" + "name": "Intermarché SAVERDUN", + "brand": "Intermarché" }, "10000005": { - "Nom": "ESSO ST JULLIEN", - "Marque": "Esso Express" + "name": "ESSO ST JULLIEN", + "brand": "Esso Express" }, "10000006": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "10000018": { - "Nom": "RELAIS DU VOULDY", - "Marque": "Total" + "name": "RELAIS DU VOULDY", + "brand": "Total" }, "10000019": { - "Nom": "RELAIS TROYES POMPIDOU", - "Marque": "Total Access" + "name": "RELAIS TROYES POMPIDOU", + "brand": "Total Access" }, "10000020": { - "Nom": "RELAIS TROYES MAISONNEUVE", - "Marque": "Total Access" + "name": "RELAIS TROYES MAISONNEUVE", + "brand": "Total Access" }, "10100001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "10100002": { - "Nom": "SARL LACOUR", - "Marque": "Total" + "name": "SARL LACOUR", + "brand": "Total" }, "10100003": { - "Nom": "ESSO BOULE D'OR", - "Marque": "Esso Express" + "name": "ESSO BOULE D'OR", + "brand": "Esso Express" }, "10100004": { - "Nom": "SODIROM/SOROJARD", - "Marque": "Leclerc" + "name": "SODIROM/SOROJARD", + "brand": "Leclerc" }, "10110001": { - "Nom": "ESSO BARSEQUANAISE", - "Marque": "Esso Express" + "name": "ESSO BARSEQUANAISE", + "brand": "Esso Express" }, "10110002": { - "Nom": "Intermarché BAR SUR SEINE", - "Marque": "Intermarché" + "name": "Intermarché BAR SUR SEINE", + "brand": "Intermarché" }, "10120001": { - "Nom": "MR BARRET", - "Marque": "Total" + "name": "MR BARRET", + "brand": "Total" }, "10120002": { - "Nom": "SAS OCEANE JET", - "Marque": "Total" + "name": "SAS OCEANE JET", + "brand": "Total" }, "10120004": { - "Nom": "SUPER U SAINT GERMAIN", - "Marque": "Système U" + "name": "SUPER U SAINT GERMAIN", + "brand": "Système U" }, "10120005": { - "Nom": "Avia", - "Marque": "Avia" + "name": "Avia", + "brand": "Avia" }, "10123001": { - "Nom": "Carrefour ST ANDRE LES VERGERS", - "Marque": "Carrefour" + "name": "Carrefour ST ANDRE LES VERGERS", + "brand": "Carrefour" }, "10130001": { - "Nom": "ATAC ERVY LE CHATEL", - "Marque": "Atac" + "name": "ATAC ERVY LE CHATEL", + "brand": "Atac" }, "10130002": { - "Nom": "GARAGE DU PEAGE", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE DU PEAGE", + "brand": "Indépendant sans enseigne" }, "10130004": { - "Nom": "Intermarché AUXON ADISAUX", - "Marque": "Intermarché" + "name": "Intermarché AUXON ADISAUX", + "brand": "Intermarché" }, "10140001": { - "Nom": "Bi1 VENDEUVRE SUR BARSE", - "Marque": "Bi1" + "name": "Bi1 VENDEUVRE SUR BARSE", + "brand": "Bi1" }, "10150001": { - "Nom": "ESSO DU STADE PSM", - "Marque": "Esso Express" + "name": "ESSO DU STADE PSM", + "brand": "Esso Express" }, "10150002": { - "Nom": "Intermarché CRENEY PRES TROYES", - "Marque": "Intermarché" + "name": "Intermarché CRENEY PRES TROYES", + "brand": "Intermarché" }, "10150003": { - "Nom": "CHARMONT SOUS BARBUISE", - "Marque": "Indépendant sans enseigne" + "name": "CHARMONT SOUS BARBUISE", + "brand": "Indépendant sans enseigne" }, "10160001": { - "Nom": "SA MARVILA", - "Marque": "Intermarché" + "name": "SA MARVILA", + "brand": "Intermarché" }, "10170001": { - "Nom": "Intermarché MERY SUR SEINE", - "Marque": "Intermarché" + "name": "Intermarché MERY SUR SEINE", + "brand": "Intermarché" }, "10180001": { - "Nom": "SA GUYEVE", - "Marque": "Intermarché" + "name": "SA GUYEVE", + "brand": "Intermarché" }, "10190001": { - "Nom": "MAXIMARCHE ESTISSAC", - "Marque": "Maximarché" + "name": "MAXIMARCHE ESTISSAC", + "brand": "Maximarché" }, "10200001": { - "Nom": "MR ET MME SILVA ELISIO", - "Marque": "Total" + "name": "MR ET MME SILVA ELISIO", + "brand": "Total" }, "10200002": { - "Nom": "BARDIS", - "Marque": "Leclerc" + "name": "BARDIS", + "brand": "Leclerc" }, "10200003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "10200004": { - "Nom": "SARL Maitre et Cie", - "Marque": "ESSO" + "name": "SARL Maitre et Cie", + "brand": "ESSO" }, "10210001": { - "Nom": "Garage chaourçois", - "Marque": "Oil France" + "name": "Garage chaourçois", + "brand": "Oil France" }, "10210002": { - "Nom": "STATION ATAC", - "Marque": "petrovex" + "name": "STATION ATAC", + "brand": "petrovex" }, "10230001": { - "Nom": "MAXIMARCHE MAILLY LE CAMP", - "Marque": "Maximarché" + "name": "MAXIMARCHE MAILLY LE CAMP", + "brand": "Maximarché" }, "10230002": { - "Nom": "GARAGE GUITTON", - "Marque": "Elan" + "name": "GARAGE GUITTON", + "brand": "Elan" }, "10250001": { - "Nom": "GARAGE MATHIEU STATION AVIA", - "Marque": "Avia" + "name": "GARAGE MATHIEU STATION AVIA", + "brand": "Avia" }, "10260001": { - "Nom": "SARL DOSIERES AUTO SPORT", - "Marque": "Total" + "name": "SARL DOSIERES AUTO SPORT", + "brand": "Total" }, "10260003": { - "Nom": "Carrefour Contact sarl margot", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact sarl margot", + "brand": "Carrefour Contact" }, "10270005": { - "Nom": "Carrefour Express", - "Marque": "Carrefour Express" + "name": "Carrefour Express", + "brand": "Carrefour Express" }, "10270006": { - "Nom": "RELAIS FRESNOY LE CHÂTEAU", - "Marque": "Total" + "name": "RELAIS FRESNOY LE CHÂTEAU", + "brand": "Total" }, "10270007": { - "Nom": "RELAIS DE TROYES PLESSIS", - "Marque": "Total" + "name": "RELAIS DE TROYES PLESSIS", + "brand": "Total" }, "10270009": { - "Nom": "E.LECLERC TROYDIS LSB", - "Marque": "Leclerc" + "name": "E.LECLERC TROYDIS LSB", + "brand": "Leclerc" }, "10300002": { - "Nom": "ESSO STE SAVINE", - "Marque": "Esso Express" + "name": "ESSO STE SAVINE", + "brand": "Esso Express" }, "10300005": { - "Nom": "RELAIS SAINTE SAVINE", - "Marque": "Total Access" + "name": "RELAIS SAINTE SAVINE", + "brand": "Total Access" }, "10340001": { - "Nom": "SARL GARAGE ROY", - "Marque": "Avia" + "name": "SARL GARAGE ROY", + "brand": "Avia" }, "10350001": { - "Nom": "STATION SERVICE 24/24", - "Marque": "Intermarché" + "name": "STATION SERVICE 24/24", + "brand": "Intermarché" }, "10370001": { - "Nom": "Intermarché VILLENAUXE LA GRANDE", - "Marque": "Intermarché" + "name": "Intermarché VILLENAUXE LA GRANDE", + "brand": "Intermarché" }, "10400002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "10400003": { - "Nom": "Intermarché NOGENT SUR SEINE", - "Marque": "Intermarché" + "name": "Intermarché NOGENT SUR SEINE", + "brand": "Intermarché" }, "10400005": { - "Nom": "Maximarche o halles fraicheur", - "Marque": "Maximarché" + "name": "Maximarche o halles fraicheur", + "brand": "Maximarché" }, "10410001": { - "Nom": "TROYDIS SAS", - "Marque": "Leclerc" + "name": "TROYDIS SAS", + "brand": "Leclerc" }, "10410003": { - "Nom": "E.LECLERC TROYDIS SPT", - "Marque": "Leclerc" + "name": "E.LECLERC TROYDIS SPT", + "brand": "Leclerc" }, "10430001": { - "Nom": "Intermarché ROSIERES", - "Marque": "Intermarché" + "name": "Intermarché ROSIERES", + "brand": "Intermarché" }, "10430002": { - "Nom": "TROYDIS SAS", - "Marque": "Leclerc" + "name": "TROYDIS SAS", + "brand": "Leclerc" }, "10430003": { - "Nom": "E.LECLERC TROYDIS RPT", - "Marque": "Leclerc" + "name": "E.LECLERC TROYDIS RPT", + "brand": "Leclerc" }, "10500001": { - "Nom": "SARL RS MILLON", - "Marque": "Total" + "name": "SARL RS MILLON", + "brand": "Total" }, "10500002": { - "Nom": "Intermarché BRIENNE LE CHATEAU", - "Marque": "Intermarché" + "name": "Intermarché BRIENNE LE CHATEAU", + "brand": "Intermarché" }, "10500004": { - "Nom": "SUPERMARCHE CASINO BRIENNE LE CHATEAU", - "Marque": "Casino" + "name": "SUPERMARCHE CASINO BRIENNE LE CHATEAU", + "brand": "Casino" }, "10500005": { - "Nom": "LECLERC EXPRESS", - "Marque": "Leclerc" + "name": "LECLERC EXPRESS", + "brand": "Leclerc" }, "10600001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "10600002": { - "Nom": "Carrefour Sainte-Savine", - "Marque": "Carrefour" + "name": "Carrefour Sainte-Savine", + "brand": "Carrefour" }, "10600005": { - "Nom": "Relais de chantereigne", - "Marque": "Esso" + "name": "Relais de chantereigne", + "brand": "Esso" }, "10600009": { - "Nom": "RELAIS DE BARBEREY", - "Marque": "Total Access" + "name": "RELAIS DE BARBEREY", + "brand": "Total Access" }, "10600012": { - "Nom": "AUCHAN BARBEREY-SAINT-SULPICE (TROYES)", - "Marque": "Auchan" + "name": "AUCHAN BARBEREY-SAINT-SULPICE (TROYES)", + "brand": "Auchan" }, "10700001": { - "Nom": "SARL NOEL", - "Marque": "Total" + "name": "SARL NOEL", + "brand": "Total" }, "10700002": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "10700003": { - "Nom": "Intermarché ARCIS SUR AUBE", - "Marque": "Intermarché" + "name": "Intermarché ARCIS SUR AUBE", + "brand": "Intermarché" }, "10800001": { - "Nom": "VAN WYNSBERGHE", - "Marque": "Total" + "name": "VAN WYNSBERGHE", + "brand": "Total" }, "10800002": { - "Nom": "Intermarché LES RIVES DE SEINE", - "Marque": "Intermarché" + "name": "Intermarché LES RIVES DE SEINE", + "brand": "Intermarché" }, "10800003": { - "Nom": "Intermarché ST JULIEN DES VILLAS", - "Marque": "Intermarché" + "name": "Intermarché ST JULIEN DES VILLAS", + "brand": "Intermarché" }, "10800006": { - "Nom": "Carrefour Contact BUCHERES", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact BUCHERES", + "brand": "Carrefour Contact" }, "10800007": { - "Nom": "SAS Les Philippats 2 Station Services", - "Marque": "Intermarché" + "name": "SAS Les Philippats 2 Station Services", + "brand": "Intermarché" }, "11000001": { - "Nom": "GEANT CASINO CITE 2", - "Marque": "Géant" + "name": "GEANT CASINO CITE 2", + "brand": "Géant" }, "11000003": { - "Nom": "SAS PEYROT ET FILS", - "Marque": "Total" + "name": "SAS PEYROT ET FILS", + "brand": "Total" }, "11000005": { - "Nom": "ESSO DE LA CITE", - "Marque": "Esso Express" + "name": "ESSO DE LA CITE", + "brand": "Esso Express" }, "11000007": { - "Nom": "T.P.L.M.", - "Marque": "Leclerc" + "name": "T.P.L.M.", + "brand": "Leclerc" }, "11000008": { - "Nom": "Sarl gorlin cite", - "Marque": "Avia" + "name": "Sarl gorlin cite", + "brand": "Avia" }, "11000009": { - "Nom": "Intermarché CARCASSONNE", - "Marque": "Intermarché" + "name": "Intermarché CARCASSONNE", + "brand": "Intermarché" }, "11000012": { - "Nom": "SARL TRIAY FRERES", - "Marque": "Indépendant sans enseigne" + "name": "SARL TRIAY FRERES", + "brand": "Indépendant sans enseigne" }, "11000013": { - "Nom": "Intermarché NARBONNE", - "Marque": "Intermarché" + "name": "Intermarché NARBONNE", + "brand": "Intermarché" }, "11000014": { - "Nom": "DYNEFF Iena", - "Marque": "Dyneff" + "name": "DYNEFF Iena", + "brand": "Dyneff" }, "11000015": { - "Nom": "RELAIS DU VIGUIER", - "Marque": "Total Access" + "name": "RELAIS DU VIGUIER", + "brand": "Total Access" }, "11000016": { - "Nom": "Carrefour PONT ROUGE", - "Marque": "Carrefour" + "name": "Carrefour PONT ROUGE", + "brand": "Carrefour" }, "11100001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "11100002": { - "Nom": "DYNEFF Carnot", - "Marque": "Dyneff" + "name": "DYNEFF Carnot", + "brand": "Dyneff" }, "11100003": { - "Nom": "DYNEFF Narbonne", - "Marque": "Dyneff" + "name": "DYNEFF Narbonne", + "brand": "Dyneff" }, "11100004": { - "Nom": "€SSENCE Cap de Pla", - "Marque": "€SSENCE" + "name": "€SSENCE Cap de Pla", + "brand": "€SSENCE" }, "11100008": { - "Nom": "ESSO CROIX SUD EST", - "Marque": "Esso Express" + "name": "ESSO CROIX SUD EST", + "brand": "Esso Express" }, "11100009": { - "Nom": "ESSO MISTRAL", - "Marque": "Esso Express" + "name": "ESSO MISTRAL", + "brand": "Esso Express" }, "11100010": { - "Nom": "ESSO CROIX SUD OUEST", - "Marque": "Esso Express" + "name": "ESSO CROIX SUD OUEST", + "brand": "Esso Express" }, "11100011": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "11100013": { - "Nom": "RELAIS NARBONNE LE CERS", - "Marque": "Total Access" + "name": "RELAIS NARBONNE LE CERS", + "brand": "Total Access" }, "11100014": { - "Nom": "CARNOT MINUTE", - "Marque": "Total" + "name": "CARNOT MINUTE", + "brand": "Total" }, "11101001": { - "Nom": "STATION SERVICE DE L'HYPERMARCHE Carrefour DE NARBONNE", - "Marque": "Carrefour" + "name": "STATION SERVICE DE L'HYPERMARCHE Carrefour DE NARBONNE", + "brand": "Carrefour" }, "11106001": { - "Nom": "Centre Leclerc/SAS SODILANG", - "Marque": "Leclerc" + "name": "Centre Leclerc/SAS SODILANG", + "brand": "Leclerc" }, "11110001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "11110004": { - "Nom": "Intermarché SALLES D'AUDE", - "Marque": "Intermarché" + "name": "Intermarché SALLES D'AUDE", + "brand": "Intermarché" }, "11110005": { - "Nom": "RELAIS DE VINASSAN", - "Marque": "Total" + "name": "RELAIS DE VINASSAN", + "brand": "Total" }, "11110008": { - "Nom": "SODIPLEC NARBONNE", - "Marque": "Leclerc" + "name": "SODIPLEC NARBONNE", + "brand": "Leclerc" }, "11120001": { - "Nom": "Intermarché ST MARCEL SUR AUDE", - "Marque": "Intermarché" + "name": "Intermarché ST MARCEL SUR AUDE", + "brand": "Intermarché" }, "11120002": { - "Nom": "STATION Contact LEZIGNAN CORBIERES", - "Marque": "Carrefour Contact" + "name": "STATION Contact LEZIGNAN CORBIERES", + "brand": "Carrefour Contact" }, "11130001": { - "Nom": "Intermarché SIGEAN", - "Marque": "Intermarché" + "name": "Intermarché SIGEAN", + "brand": "Intermarché" }, "11140001": { - "Nom": "DYNEFF Axat", - "Marque": "Dyneff" + "name": "DYNEFF Axat", + "brand": "Dyneff" }, "11150001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "11150002": { - "Nom": "STATION BOURREL", - "Marque": "Indépendant sans enseigne" + "name": "STATION BOURREL", + "brand": "Indépendant sans enseigne" }, "11160001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "11160002": { - "Nom": "Station service communale", - "Marque": "Indépendant sans enseigne" + "name": "Station service communale", + "brand": "Indépendant sans enseigne" }, "11170002": { - "Nom": "Intermarché ALZONNE", - "Marque": "Intermarché" + "name": "Intermarché ALZONNE", + "brand": "Intermarché" }, "11200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "11200002": { - "Nom": "DYNEFF Lézignan-Corbières", - "Marque": "Dyneff" + "name": "DYNEFF Lézignan-Corbières", + "brand": "Dyneff" }, "11200003": { - "Nom": "DYNEFF Mauguio", - "Marque": "Dyneff" + "name": "DYNEFF Mauguio", + "brand": "Dyneff" }, "11200006": { - "Nom": "Intermarché LEZIGNAN LES CORBIER", - "Marque": "Intermarché" + "name": "Intermarché LEZIGNAN LES CORBIER", + "brand": "Intermarché" }, "11200007": { - "Nom": "STATION LACANS", - "Marque": "Système U" + "name": "STATION LACANS", + "brand": "Système U" }, "11200008": { - "Nom": "RELAIS LEZIGNAN CORBIERES", - "Marque": "Total Access" + "name": "RELAIS LEZIGNAN CORBIERES", + "brand": "Total Access" }, "11210002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "11220001": { - "Nom": "SAINT LAURENT AUTO", - "Marque": "Dyneff" + "name": "SAINT LAURENT AUTO", + "brand": "Dyneff" }, "11260001": { - "Nom": "Intermarché ESPERAZA", - "Marque": "Intermarché" + "name": "Intermarché ESPERAZA", + "brand": "Intermarché" }, "11290001": { - "Nom": "ROMPETROL Arzens Sud", - "Marque": "ROMPETROL" + "name": "ROMPETROL Arzens Sud", + "brand": "ROMPETROL" }, "11290002": { - "Nom": "ROMPETROL Arzens Nord", - "Marque": "ROMPETROL" + "name": "ROMPETROL Arzens Nord", + "brand": "ROMPETROL" }, "11290003": { - "Nom": "MR PAYCHENQ", - "Marque": "Total" + "name": "MR PAYCHENQ", + "brand": "Total" }, "11300001": { - "Nom": "STATION SERVICE BAR DU STADE", - "Marque": "Dyneff" + "name": "STATION SERVICE BAR DU STADE", + "brand": "Dyneff" }, "11300002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "11300003": { - "Nom": "ESSO LIMOUX", - "Marque": "Esso Express" + "name": "ESSO LIMOUX", + "brand": "Esso Express" }, "11300004": { - "Nom": "LIMOUX DISTRIB SODILIM", - "Marque": "Leclerc" + "name": "LIMOUX DISTRIB SODILIM", + "brand": "Leclerc" }, "11370001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "11370004": { - "Nom": "ESSO PORT LEUCATE", - "Marque": "Esso" + "name": "ESSO PORT LEUCATE", + "brand": "Esso" }, "11390001": { - "Nom": "REGIE MUNICIPALE DES CARBURANTS", - "Marque": "Indépendant sans enseigne" + "name": "REGIE MUNICIPALE DES CARBURANTS", + "brand": "Indépendant sans enseigne" }, "11400001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "11400002": { - "Nom": "DYNEFF Castelnaudary", - "Marque": "Dyneff" + "name": "DYNEFF Castelnaudary", + "brand": "Dyneff" }, "11400004": { - "Nom": "EOR CASTELNAUDARY FRANCO", - "Marque": "Total" + "name": "EOR CASTELNAUDARY FRANCO", + "brand": "Total" }, "11400005": { - "Nom": "Intermarché CASTELNAUDARY", - "Marque": "Intermarché" + "name": "Intermarché CASTELNAUDARY", + "brand": "Intermarché" }, "11400006": { - "Nom": "ESSO STATION", - "Marque": "ESSO" + "name": "ESSO STATION", + "brand": "ESSO" }, "11430001": { - "Nom": "DYNEFF Gruissan", - "Marque": "Dyneff" + "name": "DYNEFF Gruissan", + "brand": "Dyneff" }, "11430002": { - "Nom": "Intermarché GRUISSAN", - "Marque": "Intermarché" + "name": "Intermarché GRUISSAN", + "brand": "Intermarché" }, "11480001": { - "Nom": "AIRE DE LA PALME OUEST", - "Marque": "Carrefour" + "name": "AIRE DE LA PALME OUEST", + "brand": "Carrefour" }, "11480007": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "11480008": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "11500001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "11500002": { - "Nom": "SAS GARAGE ROOSLI", - "Marque": "Total" + "name": "SAS GARAGE ROOSLI", + "brand": "Total" }, "11500004": { - "Nom": "SARL LOPEZ et Fils", - "Marque": "Indépendant sans enseigne" + "name": "SARL LOPEZ et Fils", + "brand": "Indépendant sans enseigne" }, "11540001": { - "Nom": "EOR RELAIS DES COTES DE R", - "Marque": "Total" + "name": "EOR RELAIS DES COTES DE R", + "brand": "Total" }, "11560001": { - "Nom": "STATION Total Contact", - "Marque": "Total" + "name": "STATION Total Contact", + "brand": "Total" }, "11590002": { - "Nom": "ETS PLANTADE", - "Marque": "Indépendant sans enseigne" + "name": "ETS PLANTADE", + "brand": "Indépendant sans enseigne" }, "11590003": { - "Nom": "Supermarché Casino Sallèles d'Aude", - "Marque": "Super Casino" + "name": "Supermarché Casino Sallèles d'Aude", + "brand": "Super Casino" }, "11600005": { - "Nom": "DYNEFF Villegly", - "Marque": "Dyneff" + "name": "DYNEFF Villegly", + "brand": "Dyneff" }, "11620001": { - "Nom": "DYNEFF Villemoustaussou", - "Marque": "Dyneff" + "name": "DYNEFF Villemoustaussou", + "brand": "Dyneff" }, "11700001": { - "Nom": "DYNEFF Capendu", - "Marque": "Dyneff" + "name": "DYNEFF Capendu", + "brand": "Dyneff" }, "11700003": { - "Nom": "ESSO SERVICE LES CORBIERES NORD", - "Marque": "Esso" + "name": "ESSO SERVICE LES CORBIERES NORD", + "brand": "Esso" }, "11700005": { - "Nom": "Intermarché LA REDORTE", - "Marque": "Intermarché" + "name": "Intermarché LA REDORTE", + "brand": "Intermarché" }, "11700006": { - "Nom": "STATION SHELL", - "Marque": "Shell" + "name": "STATION SHELL", + "brand": "Shell" }, "11800003": { - "Nom": "Intermarché TREBES", - "Marque": "Intermarché" + "name": "Intermarché TREBES", + "brand": "Intermarché" }, "11880001": { - "Nom": "GEANT CASINO Salvaza", - "Marque": "Géant" + "name": "GEANT CASINO Salvaza", + "brand": "Géant" }, "12000001": { - "Nom": "RELAIS DE L'OCCITANIE", - "Marque": "Total" + "name": "RELAIS DE L'OCCITANIE", + "brand": "Total" }, "12000002": { - "Nom": "SAS FABRE ET RUDELLE", - "Marque": "Total" + "name": "SAS FABRE ET RUDELLE", + "brand": "Total" }, "12000003": { - "Nom": "TENZO SL", - "Marque": "Total" + "name": "TENZO SL", + "brand": "Total" }, "12000007": { - "Nom": "TRANSCAREL", - "Marque": "Indépendant sans enseigne" + "name": "TRANSCAREL", + "brand": "Indépendant sans enseigne" }, "12000009": { - "Nom": "CARROSSERIE SERVICES", - "Marque": "Indépendant sans enseigne" + "name": "CARROSSERIE SERVICES", + "brand": "Indépendant sans enseigne" }, "12000010": { - "Nom": "DRIVE E. LECLERC SEBADIS", - "Marque": "Leclerc" + "name": "DRIVE E. LECLERC SEBADIS", + "brand": "Leclerc" }, "12000011": { - "Nom": "SAS JANELI", - "Marque": "Intermarché" + "name": "SAS JANELI", + "brand": "Intermarché" }, "12000012": { - "Nom": "Station 2M", - "Marque": "Dyneff" + "name": "Station 2M", + "brand": "Dyneff" }, "12000013": { - "Nom": "SARL TENZO SL", - "Marque": "Total" + "name": "SARL TENZO SL", + "brand": "Total" }, "12100001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "12100002": { - "Nom": "RELAIS DU STADE", - "Marque": "Total" + "name": "RELAIS DU STADE", + "brand": "Total" }, "12100004": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "12100005": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "12100006": { - "Nom": "CENTRE LECLERC CREISSELS/MILLAU", - "Marque": "Leclerc" + "name": "CENTRE LECLERC CREISSELS/MILLAU", + "brand": "Leclerc" }, "12100009": { - "Nom": "Leclerc", - "Marque": "Leclerc" + "name": "Leclerc", + "brand": "Leclerc" }, "12100010": { - "Nom": "SERVIFIOUL", - "Marque": "Indépendant sans enseigne" + "name": "SERVIFIOUL", + "brand": "Indépendant sans enseigne" }, "12110002": { - "Nom": "Intermarché CRANSAC", - "Marque": "Intermarché" + "name": "Intermarché CRANSAC", + "brand": "Intermarché" }, "12110003": { - "Nom": "Intermarché VIVIEZ", - "Marque": "Intermarché" + "name": "Intermarché VIVIEZ", + "brand": "Intermarché" }, "12110004": { - "Nom": "Causse automobile", - "Marque": "Total" + "name": "Causse automobile", + "brand": "Total" }, "12120001": { - "Nom": "SARL AUCA Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "SARL AUCA Carrefour Contact", + "brand": "Carrefour Contact" }, "12130001": { - "Nom": "SARL ALMERAS", - "Marque": "Total" + "name": "SARL ALMERAS", + "brand": "Total" }, "12130002": { - "Nom": "Intermarché ST-GENIEZ D'OLT", - "Marque": "Intermarché" + "name": "Intermarché ST-GENIEZ D'OLT", + "brand": "Intermarché" }, "12140001": { - "Nom": "Malpel gilles", - "Marque": "Dyneff" + "name": "Malpel gilles", + "brand": "Dyneff" }, "12150003": { - "Nom": "SIXTELLE SARL", - "Marque": "Netto" + "name": "SIXTELLE SARL", + "brand": "Netto" }, "12150004": { - "Nom": "Intermarché SEVERAC LE CHATEAU", - "Marque": "Intermarché" + "name": "Intermarché SEVERAC LE CHATEAU", + "brand": "Intermarché" }, "12150005": { - "Nom": "TERRE DES GRANDS CAUSSES", - "Marque": "Indépendant sans enseigne" + "name": "TERRE DES GRANDS CAUSSES", + "brand": "Indépendant sans enseigne" }, "12150006": { - "Nom": "RELAIS SEVERAC LE CHÂTEAU", - "Marque": "Total" + "name": "RELAIS SEVERAC LE CHÂTEAU", + "brand": "Total" }, "12160002": { - "Nom": "SACRISPEYRE GARAGE", - "Marque": "Elan" + "name": "SACRISPEYRE GARAGE", + "brand": "Elan" }, "12160003": { - "Nom": "Carrefour MARKET BARAQUEVILLE", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET BARAQUEVILLE", + "brand": "Carrefour Market" }, "12170001": { - "Nom": "Carrefour Contact REQUISTA", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact REQUISTA", + "brand": "Carrefour Contact" }, "12170004": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "12200001": { - "Nom": "SARL PORTAL J-P.", - "Marque": "Total" + "name": "SARL PORTAL J-P.", + "brand": "Total" }, "12200002": { - "Nom": "Carrefour", - "Marque": "Carrefour" + "name": "Carrefour", + "brand": "Carrefour" }, "12200003": { - "Nom": "ESSO LA ROCADE", - "Marque": "Esso Express" + "name": "ESSO LA ROCADE", + "brand": "Esso Express" }, "12200004": { - "Nom": "HABILOIS", - "Marque": "Leclerc" + "name": "HABILOIS", + "brand": "Leclerc" }, "12200005": { - "Nom": "Intermarché VILLEFRANCHE/ROUERGU", - "Marque": "Intermarché" + "name": "Intermarché VILLEFRANCHE/ROUERGU", + "brand": "Intermarché" }, "12200006": { - "Nom": "Station du rouergue", - "Marque": "Elan" + "name": "Station du rouergue", + "brand": "Elan" }, "12210001": { - "Nom": "Sarl lsf atac", - "Marque": "Casino" + "name": "Sarl lsf atac", + "brand": "Casino" }, "12220001": { - "Nom": "U MONTBAZENS", - "Marque": "Système U" + "name": "U MONTBAZENS", + "brand": "Système U" }, "12230001": { - "Nom": "SARL GGE SAQUET", - "Marque": "Total" + "name": "SARL GGE SAQUET", + "brand": "Total" }, "12230003": { - "Nom": "SERVIFIOUL", - "Marque": "Coccinelle" + "name": "SERVIFIOUL", + "brand": "Coccinelle" }, "12240002": { - "Nom": "Intermarché RIEUPEYROUX", - "Marque": "Intermarché" + "name": "Intermarché RIEUPEYROUX", + "brand": "Intermarché" }, "12240003": { - "Nom": "Total AUTOMAT", - "Marque": "Total" + "name": "Total AUTOMAT", + "brand": "Total" }, "12260002": { - "Nom": "SARL FREJEROQUES PNEUS", - "Marque": "Total" + "name": "SARL FREJEROQUES PNEUS", + "brand": "Total" }, "12270001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "12270002": { - "Nom": "Station du Rouergue - cros corinne", - "Marque": "Elan" + "name": "Station du Rouergue - cros corinne", + "brand": "Elan" }, "12290001": { - "Nom": "EOR PONT DE SALARS 2", - "Marque": "Total" + "name": "EOR PONT DE SALARS 2", + "brand": "Total" }, "12290003": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "12300001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "12300003": { - "Nom": "ESSO GAMBETTA 12", - "Marque": "Esso Express" + "name": "ESSO GAMBETTA 12", + "brand": "Esso Express" }, "12300004": { - "Nom": "Intermarché FLAGNAC", - "Marque": "Intermarché" + "name": "Intermarché FLAGNAC", + "brand": "Intermarché" }, "12310001": { - "Nom": "MR MAJOREL", - "Marque": "Total" + "name": "MR MAJOREL", + "brand": "Total" }, "12310002": { - "Nom": "Intermarché Contact LAISSAC", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact LAISSAC", + "brand": "Intermarché Contact" }, "12330002": { - "Nom": "SEE PICHON ANDRE SARL", - "Marque": "Total" + "name": "SEE PICHON ANDRE SARL", + "brand": "Total" }, "12330003": { - "Nom": "Intermarché MARCILLAC VALLON", - "Marque": "Intermarché" + "name": "Intermarché MARCILLAC VALLON", + "brand": "Intermarché" }, "12330004": { - "Nom": "Netto Saint Christophe", - "Marque": "Netto" + "name": "Netto Saint Christophe", + "brand": "Netto" }, "12330006": { - "Nom": "gibergu'auto", - "Marque": "gibergu'auto" + "name": "gibergu'auto", + "brand": "gibergu'auto" }, "12340001": { - "Nom": "SARL GARAGE VIGUIER ET FILS", - "Marque": "Total" + "name": "SARL GARAGE VIGUIER ET FILS", + "brand": "Total" }, "12340002": { - "Nom": "Intermarché BOZOULS", - "Marque": "Intermarché Contact" + "name": "Intermarché BOZOULS", + "brand": "Intermarché Contact" }, "12350002": { - "Nom": "SPAR LANUEJOULS", - "Marque": "Supermarchés Spar" + "name": "SPAR LANUEJOULS", + "brand": "Supermarchés Spar" }, "12360001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "12390001": { - "Nom": "U Express", - "Marque": "Système U" + "name": "U Express", + "brand": "Système U" }, "12400001": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "12400002": { - "Nom": "EOR ST AFFRIQUE BIROT", - "Marque": "Total" + "name": "EOR ST AFFRIQUE BIROT", + "brand": "Total" }, "12400003": { - "Nom": "Intermarché VABRES L'ABBAYE", - "Marque": "Intermarché" + "name": "Intermarché VABRES L'ABBAYE", + "brand": "Intermarché" }, "12400005": { - "Nom": "SARL VIGUIER STATION", - "Marque": "Indépendant sans enseigne" + "name": "SARL VIGUIER STATION", + "brand": "Indépendant sans enseigne" }, "12400006": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "12400007": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "12420001": { - "Nom": "SARL GARAGE DUMAS", - "Marque": "Indépendant sans enseigne" + "name": "SARL GARAGE DUMAS", + "brand": "Indépendant sans enseigne" }, "12430001": { - "Nom": "BONNEFOUS", - "Marque": "Total" + "name": "BONNEFOUS", + "brand": "Total" }, "12450001": { - "Nom": "STATION LA PRIMAUBE", - "Marque": "Carrefour Market" + "name": "STATION LA PRIMAUBE", + "brand": "Carrefour Market" }, "12450002": { - "Nom": "SARL TENZO", - "Marque": "Total" + "name": "SARL TENZO", + "brand": "Total" }, "12490001": { - "Nom": "STATION SUAU MICHEL", - "Marque": "Indépendant sans enseigne" + "name": "STATION SUAU MICHEL", + "brand": "Indépendant sans enseigne" }, "12490002": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "12500002": { - "Nom": "Sarl ginisty privat", - "Marque": "Total" + "name": "Sarl ginisty privat", + "brand": "Total" }, "12500003": { - "Nom": "EURL STATION D'OLT", - "Marque": "Indépendant sans enseigne" + "name": "EURL STATION D'OLT", + "brand": "Indépendant sans enseigne" }, "12500004": { - "Nom": "Super u", - "Marque": "Système U" + "name": "Super u", + "brand": "Système U" }, "12510001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "12560001": { - "Nom": "ASS ST LAURENT SERVICE DISTRIBUTION", - "Marque": "Indépendant sans enseigne" + "name": "ASS ST LAURENT SERVICE DISTRIBUTION", + "brand": "Indépendant sans enseigne" }, "12560002": { - "Nom": "Station \"Les Rebels\" - Garage Causse", - "Marque": "Indépendant sans enseigne" + "name": "Station \"Les Rebels\" - Garage Causse", + "brand": "Indépendant sans enseigne" }, "12580001": { - "Nom": "STATION SERVICE DU PLATEAU", - "Marque": "Indépendant sans enseigne" + "name": "STATION SERVICE DU PLATEAU", + "brand": "Indépendant sans enseigne" }, "12600001": { - "Nom": "GARAGE JEAN YVES YERLES", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE JEAN YVES YERLES", + "brand": "Indépendant sans enseigne" }, "12600002": { - "Nom": "AUVERGNE CARBURANTS", - "Marque": "Avia" + "name": "AUVERGNE CARBURANTS", + "brand": "Avia" }, "12700001": { - "Nom": "Intermarché CAPDENAC", - "Marque": "Intermarché" + "name": "Intermarché CAPDENAC", + "brand": "Intermarché" }, "12780002": { - "Nom": "Station Porte du Lévézou", - "Marque": "Indépendant sans enseigne" + "name": "Station Porte du Lévézou", + "brand": "Indépendant sans enseigne" }, "12800001": { - "Nom": "SARL GARAGE SERRES", - "Marque": "Total" + "name": "SARL GARAGE SERRES", + "brand": "Total" }, "12800002": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "12800003": { - "Nom": "Station Energie", - "Marque": "Indépendant sans enseigne" + "name": "Station Energie", + "brand": "Indépendant sans enseigne" }, "12850001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "12850002": { - "Nom": "HYPERMARCHE E. LECLERC SEBADIS", - "Marque": "Leclerc" + "name": "HYPERMARCHE E. LECLERC SEBADIS", + "brand": "Leclerc" }, "12850004": { - "Nom": "SUPERMARCHE E. LECLERC SEBADIS", - "Marque": "Leclerc" + "name": "SUPERMARCHE E. LECLERC SEBADIS", + "brand": "Leclerc" }, "13000001": { - "Nom": "Intermarché MARSEILLE", - "Marque": "Intermarché" + "name": "Intermarché MARSEILLE", + "brand": "Intermarché" }, "13002004": { - "Nom": "MASOREA AVIA", - "Marque": "Avia" + "name": "MASOREA AVIA", + "brand": "Avia" }, "13003004": { - "Nom": "RELAIS PLOMBIERES", - "Marque": "Total Access" + "name": "RELAIS PLOMBIERES", + "brand": "Total Access" }, "13004005": { - "Nom": "RELAIS DU JARRET", - "Marque": "Total Access" + "name": "RELAIS DU JARRET", + "brand": "Total Access" }, "13005011": { - "Nom": "RELAIS FACULTES", - "Marque": "Total" + "name": "RELAIS FACULTES", + "brand": "Total" }, "13005012": { - "Nom": "RELAIS LA ROCADE", - "Marque": "Total" + "name": "RELAIS LA ROCADE", + "brand": "Total" }, "13005013": { - "Nom": "RELAIS PARC BARRY", - "Marque": "Total Access" + "name": "RELAIS PARC BARRY", + "brand": "Total Access" }, "13006003": { - "Nom": "GARAGE NOTRE DAME DE LA GARDE", - "Marque": "Avia" + "name": "GARAGE NOTRE DAME DE LA GARDE", + "brand": "Avia" }, "13006005": { - "Nom": "RELAIS MARSEILLE MEDITERRANE", - "Marque": "Total" + "name": "RELAIS MARSEILLE MEDITERRANE", + "brand": "Total" }, "13007001": { - "Nom": "ESSO LE PHARO", - "Marque": "Esso Express" + "name": "ESSO LE PHARO", + "brand": "Esso Express" }, "13007007": { - "Nom": "AGIP MARSEILLE LES ROCHES", - "Marque": "Agip" + "name": "AGIP MARSEILLE LES ROCHES", + "brand": "Agip" }, "13008001": { - "Nom": "GEANT CASINO Ste Anne", - "Marque": "Géant" + "name": "GEANT CASINO Ste Anne", + "brand": "Géant" }, "13008004": { - "Nom": "ESSO SABLIERS", - "Marque": "Esso Express" + "name": "ESSO SABLIERS", + "brand": "Esso Express" }, "13008008": { - "Nom": "Carrefour MARSEILLE BONNEVEINE", - "Marque": "Carrefour" + "name": "Carrefour MARSEILLE BONNEVEINE", + "brand": "Carrefour" }, "13008013": { - "Nom": "AGIP MARSEILLE CLOT BEY", - "Marque": "Agip" + "name": "AGIP MARSEILLE CLOT BEY", + "brand": "Agip" }, "13008014": { - "Nom": "SARL CP - AVIA", - "Marque": "Avia" + "name": "SARL CP - AVIA", + "brand": "Avia" }, "13008016": { - "Nom": "RELAIS PARC CHANOT", - "Marque": "Total" + "name": "RELAIS PARC CHANOT", + "brand": "Total" }, "13008017": { - "Nom": "RELAIS MARSEILLE MAZARGUES", - "Marque": "Total Access" + "name": "RELAIS MARSEILLE MAZARGUES", + "brand": "Total Access" }, "13009005": { - "Nom": "ESSO MAZARGUES", - "Marque": "Esso Express" + "name": "ESSO MAZARGUES", + "brand": "Esso Express" }, "13009006": { - "Nom": "ROYDIS", - "Marque": "Leclerc" + "name": "ROYDIS", + "brand": "Leclerc" }, "13009008": { - "Nom": "RELAIS Total PARC SPORTS", - "Marque": "Total Access" + "name": "RELAIS Total PARC SPORTS", + "brand": "Total Access" }, "13009009": { - "Nom": "MASOREA AVIA", - "Marque": "Avia" + "name": "MASOREA AVIA", + "brand": "Avia" }, "13010001": { - "Nom": "AUCHAN ST LOUP", - "Marque": "Auchan" + "name": "AUCHAN ST LOUP", + "brand": "Auchan" }, "13010005": { - "Nom": "ESSO LA TIMONE", - "Marque": "Esso Express" + "name": "ESSO LA TIMONE", + "brand": "Esso Express" }, "13010011": { - "Nom": "RELAIS PAUL CLAUDEL", - "Marque": "Total Access" + "name": "RELAIS PAUL CLAUDEL", + "brand": "Total Access" }, "13010012": { - "Nom": "CLAUDEL AUTOMOBILES", - "Marque": "Indépendant sans enseigne" + "name": "CLAUDEL AUTOMOBILES", + "brand": "Indépendant sans enseigne" }, "13011003": { - "Nom": "Station AVIA - B2M SARL", - "Marque": "Avia" + "name": "Station AVIA - B2M SARL", + "brand": "Avia" }, "13011014": { - "Nom": "AGIP MARSEILLE SAINT LOUP", - "Marque": "Agip" + "name": "AGIP MARSEILLE SAINT LOUP", + "brand": "Agip" }, "13011015": { - "Nom": "Carrefour Contact GEGARYNE", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact GEGARYNE", + "brand": "Carrefour Contact" }, "13011017": { - "Nom": "RELAIS MAZENODE", - "Marque": "Total Access" + "name": "RELAIS MAZENODE", + "brand": "Total Access" }, "13011018": { - "Nom": "Intermarché CARTONNERIE", - "Marque": "Intermarché" + "name": "Intermarché CARTONNERIE", + "brand": "Intermarché" }, "13011019": { - "Nom": "Station Service La Source", - "Marque": "Indépendant sans enseigne" + "name": "Station Service La Source", + "brand": "Indépendant sans enseigne" }, "13011020": { - "Nom": "Carrefour Contact Saint-Marcel 11e", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact Saint-Marcel 11e", + "brand": "Carrefour Contact" }, "13012001": { - "Nom": "GEANT CASINO Les CAILLOLS", - "Marque": "Géant" + "name": "GEANT CASINO Les CAILLOLS", + "brand": "Géant" }, "13012015": { - "Nom": "SUPERMARCHÉ Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "SUPERMARCHÉ Carrefour MARKET", + "brand": "Carrefour Market" }, "13012016": { - "Nom": "Intermarché St Jean du désert", - "Marque": "Intermarché" + "name": "Intermarché St Jean du désert", + "brand": "Intermarché" }, "13012022": { - "Nom": "RELAIS LA FOURRAGERE", - "Marque": "Total Access" + "name": "RELAIS LA FOURRAGERE", + "brand": "Total Access" }, "13012023": { - "Nom": "STATION DE LA GRANDE BASTIDE (OIL FRANCE)", - "Marque": "Oil France" + "name": "STATION DE LA GRANDE BASTIDE (OIL FRANCE)", + "brand": "Oil France" }, "13012024": { - "Nom": "Fremarc SA", - "Marque": "Auchan" + "name": "Fremarc SA", + "brand": "Auchan" }, "13012025": { - "Nom": "BP MARSEILLE ST BARNABE 8 à Huit", - "Marque": "BP" + "name": "BP MARSEILLE ST BARNABE 8 à Huit", + "brand": "BP" }, "13013002": { - "Nom": "BP MARSEILLE L ETOILE", - "Marque": "BP" + "name": "BP MARSEILLE L ETOILE", + "brand": "BP" }, "13013003": { - "Nom": "BP MARSEILLE S8", - "Marque": "BP" + "name": "BP MARSEILLE S8", + "brand": "BP" }, "13013007": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "13013008": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "13013011": { - "Nom": "Relais des Olives", - "Marque": "GAROUCHA" + "name": "Relais des Olives", + "brand": "GAROUCHA" }, "13013012": { - "Nom": "L.R.D.P.", - "Marque": "Indépendant sans enseigne" + "name": "L.R.D.P.", + "brand": "Indépendant sans enseigne" }, "13013014": { - "Nom": "AGIP MARSEILLE ST JUST", - "Marque": "Agip" + "name": "AGIP MARSEILLE ST JUST", + "brand": "Agip" }, "13013016": { - "Nom": "RELAIS DES OLIVES", - "Marque": "Total Access" + "name": "RELAIS DES OLIVES", + "brand": "Total Access" }, "13013017": { - "Nom": "RELAIS LOUBIERE", - "Marque": "Total Access" + "name": "RELAIS LOUBIERE", + "brand": "Total Access" }, "13014001": { - "Nom": "Carrefour LE MERLAN", - "Marque": "Carrefour" + "name": "Carrefour LE MERLAN", + "brand": "Carrefour" }, "13014008": { - "Nom": "AGIP MARSEILLE SAINTE MARTHE", - "Marque": "Agip" + "name": "AGIP MARSEILLE SAINTE MARTHE", + "brand": "Agip" }, "13014010": { - "Nom": "AVIA - B2M SARL", - "Marque": "Avia" + "name": "AVIA - B2M SARL", + "brand": "Avia" }, "13015004": { - "Nom": "ESSO N.D. LIMITE", - "Marque": "Esso Express" + "name": "ESSO N.D. LIMITE", + "brand": "Esso Express" }, "13015013": { - "Nom": "AGIP MARSEILLE MADRAGUE", - "Marque": "Agip" + "name": "AGIP MARSEILLE MADRAGUE", + "brand": "Agip" }, "13015016": { - "Nom": "AGIP MARSEILLE RN DE ST ANTOINE", - "Marque": "Agip" + "name": "AGIP MARSEILLE RN DE ST ANTOINE", + "brand": "Agip" }, "13015019": { - "Nom": "RELAIS ST.ANTOINE", - "Marque": "Total Access" + "name": "RELAIS ST.ANTOINE", + "brand": "Total Access" }, "13016007": { - "Nom": "RELAIS SAUMATY", - "Marque": "Total" + "name": "RELAIS SAUMATY", + "brand": "Total" }, "13016008": { - "Nom": "RELAIS MARSEILLE LITTORAL", - "Marque": "Total Access" + "name": "RELAIS MARSEILLE LITTORAL", + "brand": "Total Access" }, "13090017": { - "Nom": "RELAIS PONT DE L'ARC", - "Marque": "Total Access" + "name": "RELAIS PONT DE L'ARC", + "brand": "Total Access" }, "13090018": { - "Nom": "RELAIS PLATRIERES", - "Marque": "Total Access" + "name": "RELAIS PLATRIERES", + "brand": "Total Access" }, "13090019": { - "Nom": "AGIP AIX EN PROVENCE RN7", - "Marque": "Agip" + "name": "AGIP AIX EN PROVENCE RN7", + "brand": "Agip" }, "13097001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "13100005": { - "Nom": "ESSO TOURELLES", - "Marque": "Esso Express" + "name": "ESSO TOURELLES", + "brand": "Esso Express" }, "13100006": { - "Nom": "ESSO ARCADES", - "Marque": "Esso Express" + "name": "ESSO ARCADES", + "brand": "Esso Express" }, "13100008": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "13100013": { - "Nom": "RELAIS DES MILLES", - "Marque": "Total Access" + "name": "RELAIS DES MILLES", + "brand": "Total Access" }, "13100014": { - "Nom": "RELAIS AIX EN PR.GAMBETTA", - "Marque": "Total Access" + "name": "RELAIS AIX EN PR.GAMBETTA", + "brand": "Total Access" }, "13100015": { - "Nom": "RELAIS DES THERMES", - "Marque": "Total Access" + "name": "RELAIS DES THERMES", + "brand": "Total Access" }, "13100016": { - "Nom": "RELAIS DE GALICE", - "Marque": "Total" + "name": "RELAIS DE GALICE", + "brand": "Total" }, "13100017": { - "Nom": "RELAIS DE L ARC", - "Marque": "Total Access" + "name": "RELAIS DE L ARC", + "brand": "Total Access" }, "13100018": { - "Nom": "BP AIX EN PROVENCE MAL JUIN 8 à Huit", - "Marque": "BP" + "name": "BP AIX EN PROVENCE MAL JUIN 8 à Huit", + "brand": "BP" }, "13105001": { - "Nom": "Intermarché MIMET", - "Marque": "Intermarché" + "name": "Intermarché MIMET", + "brand": "Intermarché" }, "13110003": { - "Nom": "Carrefour Port de Bouc", - "Marque": "Carrefour" + "name": "Carrefour Port de Bouc", + "brand": "Carrefour" }, "13110004": { - "Nom": "Station Service Navarro", - "Marque": "Indépendant sans enseigne" + "name": "Station Service Navarro", + "brand": "Indépendant sans enseigne" }, "13110005": { - "Nom": "RELAIS PONT DU ROY", - "Marque": "Total" + "name": "RELAIS PONT DU ROY", + "brand": "Total" }, "13112002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "13112003": { - "Nom": "Intermarché LA DESTROUSSE", - "Marque": "Intermarché" + "name": "Intermarché LA DESTROUSSE", + "brand": "Intermarché" }, "13112005": { - "Nom": "B2M SARL AVIA", - "Marque": "Avia" + "name": "B2M SARL AVIA", + "brand": "Avia" }, "13115001": { - "Nom": "EURL CARROSSERIE GARD STATION Total Contact", - "Marque": "Total" + "name": "EURL CARROSSERIE GARD STATION Total Contact", + "brand": "Total" }, "13120001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "13120002": { - "Nom": "STATION Total DU PAYANNET", - "Marque": "Total" + "name": "STATION Total DU PAYANNET", + "brand": "Total" }, "13120003": { - "Nom": "Intermarché GARDANNE", - "Marque": "Intermarché" + "name": "Intermarché GARDANNE", + "brand": "Intermarché" }, "13120004": { - "Nom": "Relais de la garde", - "Marque": "Indépendant sans enseigne" + "name": "Relais de la garde", + "brand": "Indépendant sans enseigne" }, "13120005": { - "Nom": "STATION SERVICE DE BIVER", - "Marque": "Indépendant sans enseigne" + "name": "STATION SERVICE DE BIVER", + "brand": "Indépendant sans enseigne" }, "13120006": { - "Nom": "Leader Gardanne", - "Marque": "Leader Price" + "name": "Leader Gardanne", + "brand": "Leader Price" }, "13122001": { - "Nom": "MR L. DARET", - "Marque": "Total" + "name": "MR L. DARET", + "brand": "Total" }, "13122002": { - "Nom": "Intermarché VENTABREN", - "Marque": "Intermarché" + "name": "Intermarché VENTABREN", + "brand": "Intermarché" }, "13124001": { - "Nom": "AIRE DE BAUME DE MARRON", - "Marque": "CARAUTOROUTES" + "name": "AIRE DE BAUME DE MARRON", + "brand": "CARAUTOROUTES" }, "13124002": { - "Nom": "ROMPETROL Peypin", - "Marque": "ROMPETROL" + "name": "ROMPETROL Peypin", + "brand": "ROMPETROL" }, "13127005": { - "Nom": "AGIP VITROLLES EST A7 SENS MARSEILLE VERS LYON", - "Marque": "Agip" + "name": "AGIP VITROLLES EST A7 SENS MARSEILLE VERS LYON", + "brand": "Agip" }, "13127006": { - "Nom": "E.LECLERC VITROLLES", - "Marque": "Leclerc" + "name": "E.LECLERC VITROLLES", + "brand": "Leclerc" }, "13127009": { - "Nom": "Station des Cadestaux", - "Marque": "Garoucha" + "name": "Station des Cadestaux", + "brand": "Garoucha" }, "13127010": { - "Nom": "RELAIS DE L'ANJOLY", - "Marque": "Total" + "name": "RELAIS DE L'ANJOLY", + "brand": "Total" }, "13127012": { - "Nom": "ESSO VITROLLES LES PINS", - "Marque": "Esso Express" + "name": "ESSO VITROLLES LES PINS", + "brand": "Esso Express" }, "13130002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "13130005": { - "Nom": "SARL le nouveau relais de berre", - "Marque": "Dyneff" + "name": "SARL le nouveau relais de berre", + "brand": "Dyneff" }, "13130006": { - "Nom": "Total Access Les Chasseurs", - "Marque": "Total Access" + "name": "Total Access Les Chasseurs", + "brand": "Total Access" }, "13140001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "13140002": { - "Nom": "Station services des molieres", - "Marque": "Dyneff" + "name": "Station services des molieres", + "brand": "Dyneff" }, "13140005": { - "Nom": "Intermarché MIRAMAS", - "Marque": "Intermarché" + "name": "Intermarché MIRAMAS", + "brand": "Intermarché" }, "13140010": { - "Nom": "RELAIS DU MAS NEUF", - "Marque": "Total Access" + "name": "RELAIS DU MAS NEUF", + "brand": "Total Access" }, "13150001": { - "Nom": "AUCHAN TARASCON", - "Marque": "Auchan" + "name": "AUCHAN TARASCON", + "brand": "Auchan" }, "13150003": { - "Nom": "Intermarché TARASCON", - "Marque": "Intermarché" + "name": "Intermarché TARASCON", + "brand": "Intermarché" }, "13150006": { - "Nom": "RELAIS D'ARGENCE", - "Marque": "Total Access" + "name": "RELAIS D'ARGENCE", + "brand": "Total Access" }, "13160001": { - "Nom": "GAROUCHA", - "Marque": "Indépendant sans enseigne" + "name": "GAROUCHA", + "brand": "Indépendant sans enseigne" }, "13160002": { - "Nom": "Intermarché CHATEAURENARD", - "Marque": "Intermarché" + "name": "Intermarché CHATEAURENARD", + "brand": "Intermarché" }, "13160004": { - "Nom": "CSF FRANCE STATION SERVICE", - "Marque": "Carrefour Market" + "name": "CSF FRANCE STATION SERVICE", + "brand": "Carrefour Market" }, "13160005": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "13170003": { - "Nom": "AGIP LES PENNES MIRABEAU RN 113", - "Marque": "Agip" + "name": "AGIP LES PENNES MIRABEAU RN 113", + "brand": "Agip" }, "13170007": { - "Nom": "PACA Carburant", - "Marque": "Avia" + "name": "PACA Carburant", + "brand": "Avia" }, "13170008": { - "Nom": "Le Relais des Cadeneaux", - "Marque": "Indépendant sans enseigne" + "name": "Le Relais des Cadeneaux", + "brand": "Indépendant sans enseigne" }, "13170010": { - "Nom": "L.R.D.P.", - "Marque": "Indépendant sans enseigne" + "name": "L.R.D.P.", + "brand": "Indépendant sans enseigne" }, "13170011": { - "Nom": "RELAIS MIRABEAU", - "Marque": "Total Access" + "name": "RELAIS MIRABEAU", + "brand": "Total Access" }, "13180001": { - "Nom": "AGIP GIGNAC A55 SENS MARSEILLE VERS MARTIGUES", - "Marque": "Agip" + "name": "AGIP GIGNAC A55 SENS MARSEILLE VERS MARTIGUES", + "brand": "Agip" }, "13180002": { - "Nom": "Market Gignac-la-Nerthe", - "Marque": "Carrefour Market" + "name": "Market Gignac-la-Nerthe", + "brand": "Carrefour Market" }, "13190001": { - "Nom": "SEGGA", - "Marque": "Total" + "name": "SEGGA", + "brand": "Total" }, "13200004": { - "Nom": "SARL CATNAT", - "Marque": "Total" + "name": "SARL CATNAT", + "brand": "Total" }, "13200006": { - "Nom": "DELTADIS", - "Marque": "Leclerc" + "name": "DELTADIS", + "brand": "Leclerc" }, "13200009": { - "Nom": "Intermarché ARLES", - "Marque": "Intermarché" + "name": "Intermarché ARLES", + "brand": "Intermarché" }, "13200013": { - "Nom": "GENEVEZ AUTO STATION\" Sarl Jlg Auto", - "Marque": "Indépendant sans enseigne" + "name": "GENEVEZ AUTO STATION\" Sarl Jlg Auto", + "brand": "Indépendant sans enseigne" }, "13200014": { - "Nom": "RELAIS CANTARELLES", - "Marque": "Total" + "name": "RELAIS CANTARELLES", + "brand": "Total" }, "13200015": { - "Nom": "RELAIS PT VAN GOGH", - "Marque": "Total" + "name": "RELAIS PT VAN GOGH", + "brand": "Total" }, "13200016": { - "Nom": "RELAIS DES CIGALES", - "Marque": "Total Access" + "name": "RELAIS DES CIGALES", + "brand": "Total Access" }, "13200019": { - "Nom": "ESSO ARLES SUD", - "Marque": "Esso Express" + "name": "ESSO ARLES SUD", + "brand": "Esso Express" }, "13210001": { - "Nom": "EOR ST REMY PR MANSON", - "Marque": "Total" + "name": "EOR ST REMY PR MANSON", + "brand": "Total" }, "13210002": { - "Nom": "Intermarché ST REMY DE PROVENCE", - "Marque": "Intermarché" + "name": "Intermarché ST REMY DE PROVENCE", + "brand": "Intermarché" }, "13210003": { - "Nom": "RELAIS DE LA TRINITEE", - "Marque": "Total" + "name": "RELAIS DE LA TRINITEE", + "brand": "Total" }, "13220003": { - "Nom": "Carrefour", - "Marque": "Carrefour" + "name": "Carrefour", + "brand": "Carrefour" }, "13230001": { - "Nom": "SAS CLAUGINIE", - "Marque": "Intermarché" + "name": "SAS CLAUGINIE", + "brand": "Intermarché" }, "13230002": { - "Nom": "NETTO PORT SAINT LOUIS", - "Marque": "Netto" + "name": "NETTO PORT SAINT LOUIS", + "brand": "Netto" }, "13230003": { - "Nom": "Sarl RODRIGUEZ", - "Marque": "Indépendant sans enseigne" + "name": "Sarl RODRIGUEZ", + "brand": "Indépendant sans enseigne" }, "13260002": { - "Nom": "RELAIS STE CROIX", - "Marque": "Total" + "name": "RELAIS STE CROIX", + "brand": "Total" }, "13270004": { - "Nom": "ESSO FOS OUEST", - "Marque": "Esso Express" + "name": "ESSO FOS OUEST", + "brand": "Esso Express" }, "13270005": { - "Nom": "Intermarché FOS SUR MER", - "Marque": "Intermarché" + "name": "Intermarché FOS SUR MER", + "brand": "Intermarché" }, "13270008": { - "Nom": "Relais des Pins", - "Marque": "Indépendant sans enseigne" + "name": "Relais des Pins", + "brand": "Indépendant sans enseigne" }, "13270011": { - "Nom": "RELAIS DU VENTILLON", - "Marque": "Total Access" + "name": "RELAIS DU VENTILLON", + "brand": "Total Access" }, "13270012": { - "Nom": "RELAIS FOS SUR MER", - "Marque": "Total Access" + "name": "RELAIS FOS SUR MER", + "brand": "Total Access" }, "13270013": { - "Nom": "RELAIS MARRONEDE", - "Marque": "Total Access" + "name": "RELAIS MARRONEDE", + "brand": "Total Access" }, "13300001": { - "Nom": "EOR SA SAPAS", - "Marque": "Total" + "name": "EOR SA SAPAS", + "brand": "Total" }, "13300002": { - "Nom": "SARL GGE NATIONA", - "Marque": "Total" + "name": "SARL GGE NATIONA", + "brand": "Total" }, "13300005": { - "Nom": "Centre E. Leclerc SAS SALONDIS", - "Marque": "Leclerc" + "name": "Centre E. Leclerc SAS SALONDIS", + "brand": "Leclerc" }, "13300006": { - "Nom": "Station DYNEFF - SARL 2D SERVICES", - "Marque": "Dyneff" + "name": "Station DYNEFF - SARL 2D SERVICES", + "brand": "Dyneff" }, "13300008": { - "Nom": "Intermarché SALON DE PROVENCE", - "Marque": "Intermarché" + "name": "Intermarché SALON DE PROVENCE", + "brand": "Intermarché" }, "13300009": { - "Nom": "Escadrille", - "Marque": "GAROUCHA" + "name": "Escadrille", + "brand": "GAROUCHA" }, "13300010": { - "Nom": "RELAIS LA CRAU", - "Marque": "Total Access" + "name": "RELAIS LA CRAU", + "brand": "Total Access" }, "13300011": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "13310001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "13310002": { - "Nom": "SA FRACY - Intermarché", - "Marque": "Intermarché" + "name": "SA FRACY - Intermarché", + "brand": "Intermarché" }, "13320004": { - "Nom": "ESSO VIOLESI", - "Marque": "Esso Express" + "name": "ESSO VIOLESI", + "brand": "Esso Express" }, "13320005": { - "Nom": "ESSO CABRIES", - "Marque": "Esso" + "name": "ESSO CABRIES", + "brand": "Esso" }, "13320009": { - "Nom": "RELAIS DE PROVENCE", - "Marque": "Avia" + "name": "RELAIS DE PROVENCE", + "brand": "Avia" }, "13320010": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "13320011": { - "Nom": "RELAIS LA CHAMPOUSE", - "Marque": "Total" + "name": "RELAIS LA CHAMPOUSE", + "brand": "Total" }, "13320012": { - "Nom": "RELAIS DE LA MOUNINE", - "Marque": "Total" + "name": "RELAIS DE LA MOUNINE", + "brand": "Total" }, "13320013": { - "Nom": "Station Total Relais de la Salle", - "Marque": "Total" + "name": "Station Total Relais de la Salle", + "brand": "Total" }, "13340001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "13340004": { - "Nom": "STATION DES ALLIES", - "Marque": "Dyneff" + "name": "STATION DES ALLIES", + "brand": "Dyneff" }, "13360001": { - "Nom": "Intermarché ROQUEVAIRE", - "Marque": "Intermarché" + "name": "Intermarché ROQUEVAIRE", + "brand": "Intermarché" }, "13368001": { - "Nom": "GEANT CASINO La Valentine", - "Marque": "Géant" + "name": "GEANT CASINO La Valentine", + "brand": "Géant" }, "13370003": { - "Nom": "Intermarché MALLEMORT", - "Marque": "Intermarché" + "name": "Intermarché MALLEMORT", + "brand": "Intermarché" }, "13370005": { - "Nom": "RELAIS DE DOUNEAU", - "Marque": "Indépendant sans enseigne" + "name": "RELAIS DE DOUNEAU", + "brand": "Indépendant sans enseigne" }, "13370006": { - "Nom": "STATION DU MOULIN PONT ROYAL", - "Marque": "Intermarché" + "name": "STATION DU MOULIN PONT ROYAL", + "brand": "Intermarché" }, "13380002": { - "Nom": "ESSO LES MADETS", - "Marque": "Esso Express" + "name": "ESSO LES MADETS", + "brand": "Esso Express" }, "13390001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "13400001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "13400002": { - "Nom": "EOR SA PARASCANDOLA", - "Marque": "Total" + "name": "EOR SA PARASCANDOLA", + "brand": "Total" }, "13400003": { - "Nom": "SARL STATION ET SCES CAMP", - "Marque": "Total" + "name": "SARL STATION ET SCES CAMP", + "brand": "Total" }, "13400007": { - "Nom": "ESSO LA DEMANDE", - "Marque": "Esso Express" + "name": "ESSO LA DEMANDE", + "brand": "Esso Express" }, "13400009": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "13400014": { - "Nom": "RELAIS PIN VERT", - "Marque": "Total" + "name": "RELAIS PIN VERT", + "brand": "Total" }, "13400015": { - "Nom": "Station et Services des Paluds", - "Marque": "Total" + "name": "Station et Services des Paluds", + "brand": "Total" }, "13410001": { - "Nom": "SHOPI LAMBESC", - "Marque": "Shopi" + "name": "SHOPI LAMBESC", + "brand": "Shopi" }, "13410002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "13420001": { - "Nom": "Eurl SVF Station service de gemenos Avia", - "Marque": "Avia" + "name": "Eurl SVF Station service de gemenos Avia", + "brand": "Avia" }, "13430001": { - "Nom": "Intermarché EYGUIERES", - "Marque": "Intermarché" + "name": "Intermarché EYGUIERES", + "brand": "Intermarché" }, "13430002": { - "Nom": "Station du sud", - "Marque": "Indépendant sans enseigne" + "name": "Station du sud", + "brand": "Indépendant sans enseigne" }, "13440002": { - "Nom": "Intermarché CABANNES", - "Marque": "Intermarché Contact" + "name": "Intermarché CABANNES", + "brand": "Intermarché Contact" }, "13440003": { - "Nom": "DISTRIFIOUL PROVENCE", - "Marque": "DISTRIFIOUL PC" + "name": "DISTRIFIOUL PROVENCE", + "brand": "DISTRIFIOUL PC" }, "13450001": { - "Nom": "UEXPRESS GRANS", - "Marque": "Système U" + "name": "UEXPRESS GRANS", + "brand": "Système U" }, "13460001": { - "Nom": "SARL Les Tamaris", - "Marque": "Indépendant sans enseigne" + "name": "SARL Les Tamaris", + "brand": "Indépendant sans enseigne" }, "13460003": { - "Nom": "Station Flamants Services (Les Flamants)", - "Marque": "Indépendant sans enseigne" + "name": "Station Flamants Services (Les Flamants)", + "brand": "Indépendant sans enseigne" }, "13463001": { - "Nom": "Carrefour MARSEILLE GRAND LITTORAL", - "Marque": "Carrefour" + "name": "Carrefour MARSEILLE GRAND LITTORAL", + "brand": "Carrefour" }, "13470001": { - "Nom": "Intermarché CARNOUX EN PROVENCE", - "Marque": "Intermarché" + "name": "Intermarché CARNOUX EN PROVENCE", + "brand": "Intermarché" }, "13480001": { - "Nom": "SARL CALAS AUTOMOBILE", - "Marque": "Total" + "name": "SARL CALAS AUTOMOBILE", + "brand": "Total" }, "13480002": { - "Nom": "S.A. SODIPLAN", - "Marque": "Leclerc" + "name": "S.A. SODIPLAN", + "brand": "Leclerc" }, "13500001": { - "Nom": "AUCHAN MARTIGUES", - "Marque": "Auchan" + "name": "AUCHAN MARTIGUES", + "brand": "Auchan" }, "13500005": { - "Nom": "ESSO CROIX SAINTE", - "Marque": "Esso Express" + "name": "ESSO CROIX SAINTE", + "brand": "Esso Express" }, "13500006": { - "Nom": "Intermarché CROIVY MARTIGUES", - "Marque": "Intermarché" + "name": "Intermarché CROIVY MARTIGUES", + "brand": "Intermarché" }, "13500011": { - "Nom": "RELAIS DE CARONTE", - "Marque": "Total" + "name": "RELAIS DE CARONTE", + "brand": "Total" }, "13500012": { - "Nom": "RELAIS CANTO PERDRIX", - "Marque": "Total Access" + "name": "RELAIS CANTO PERDRIX", + "brand": "Total Access" }, "13500014": { - "Nom": "BP MARTIGUES SAINTE ANNE SPEEDY", - "Marque": "BP" + "name": "BP MARTIGUES SAINTE ANNE SPEEDY", + "brand": "BP" }, "13510001": { - "Nom": "REL.JALASSIERES", - "Marque": "Total" + "name": "REL.JALASSIERES", + "brand": "Total" }, "13510002": { - "Nom": "STE EGUILLEENNE GGE M", - "Marque": "Total" + "name": "STE EGUILLEENNE GGE M", + "brand": "Total" }, "13520001": { - "Nom": "EOR LE PARADOU", - "Marque": "Total" + "name": "EOR LE PARADOU", + "brand": "Total" }, "13530001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "13530002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "13545001": { - "Nom": "Carrefour AIX EN PROVENCE", - "Marque": "Carrefour" + "name": "Carrefour AIX EN PROVENCE", + "brand": "Carrefour" }, "13550001": { - "Nom": "STATION Total M. HACHIMI PATRICK", - "Marque": "Total" + "name": "STATION Total M. HACHIMI PATRICK", + "brand": "Total" }, "13560001": { - "Nom": "EURL Station Les Cèdres", - "Marque": "Total" + "name": "EURL Station Les Cèdres", + "brand": "Total" }, "13560002": { - "Nom": "GARAGE SEMAP", - "Marque": "Elan" + "name": "GARAGE SEMAP", + "brand": "Elan" }, "13560003": { - "Nom": "STATION AUTO RELAX", - "Marque": "Garoucha" + "name": "STATION AUTO RELAX", + "brand": "Garoucha" }, "13560004": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "13570001": { - "Nom": "SAS BARBEN", - "Marque": "Intermarché Contact" + "name": "SAS BARBEN", + "brand": "Intermarché Contact" }, "13580002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "13580003": { - "Nom": "RELAIS DE LA FARE", - "Marque": "Indépendant sans enseigne" + "name": "RELAIS DE LA FARE", + "brand": "Indépendant sans enseigne" }, "13590002": { - "Nom": "CASINO MEYREUIL", - "Marque": "Super Casino" + "name": "CASINO MEYREUIL", + "brand": "Super Casino" }, "13590003": { - "Nom": "SARL JAJE", - "Marque": "Total" + "name": "SARL JAJE", + "brand": "Total" }, "13600001": { - "Nom": "STATION DYNEFF/MESNIER/SARL ETS LEVEQUE", - "Marque": "Dyneff" + "name": "STATION DYNEFF/MESNIER/SARL ETS LEVEQUE", + "brand": "Dyneff" }, "13600004": { - "Nom": "SARL CAIL ET BOURDON", - "Marque": "Total" + "name": "SARL CAIL ET BOURDON", + "brand": "Total" }, "13600005": { - "Nom": "Carrefour La Ciotat", - "Marque": "Carrefour" + "name": "Carrefour La Ciotat", + "brand": "Carrefour" }, "13600006": { - "Nom": "Station AVIA -B2M SARL", - "Marque": "Avia" + "name": "Station AVIA -B2M SARL", + "brand": "Avia" }, "13600013": { - "Nom": "BP A50 AIRE DES PLAINES BARONNES", - "Marque": "BP" + "name": "BP A50 AIRE DES PLAINES BARONNES", + "brand": "BP" }, "13600014": { - "Nom": "HYPER CASINO", - "Marque": "Casino" + "name": "HYPER CASINO", + "brand": "Casino" }, "13600015": { - "Nom": "RELAIS LES FELIBRES", - "Marque": "Total Access" + "name": "RELAIS LES FELIBRES", + "brand": "Total Access" }, "13600016": { - "Nom": "AGIP LE LIOUQUET A 50", - "Marque": "Agip" + "name": "AGIP LE LIOUQUET A 50", + "brand": "Agip" }, "13610001": { - "Nom": "SARL WILLY", - "Marque": "Total" + "name": "SARL WILLY", + "brand": "Total" }, "13620002": { - "Nom": "STATION Service ABEL", - "Marque": "Indépendant sans enseigne" + "name": "STATION Service ABEL", + "brand": "Indépendant sans enseigne" }, "13620003": { - "Nom": "SAS GARAGE DE LA TUILIERE", - "Marque": "Total" + "name": "SAS GARAGE DE LA TUILIERE", + "brand": "Total" }, "13626001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "13630003": { - "Nom": "STATION ASTOUIN", - "Marque": "Indépendant sans enseigne" + "name": "STATION ASTOUIN", + "brand": "Indépendant sans enseigne" }, "13630004": { - "Nom": "U.EXPRESS", - "Marque": "Système U" + "name": "U.EXPRESS", + "brand": "Système U" }, "13640001": { - "Nom": "GARAGE SL MOTORS", - "Marque": "Total" + "name": "GARAGE SL MOTORS", + "brand": "Total" }, "13650002": { - "Nom": "ESSO 4 VENTS", - "Marque": "ESSO" + "name": "ESSO 4 VENTS", + "brand": "ESSO" }, "13650003": { - "Nom": "AVIA aire de meyrargues", - "Marque": "Avia" + "name": "AVIA aire de meyrargues", + "brand": "Avia" }, "13660002": { - "Nom": "CAP 9", - "Marque": "Indépendant sans enseigne" + "name": "CAP 9", + "brand": "Indépendant sans enseigne" }, "13660005": { - "Nom": "Intermarché SAS CYMADIS", - "Marque": "Intermarché" + "name": "Intermarché SAS CYMADIS", + "brand": "Intermarché" }, "13670001": { - "Nom": "Relais des M.I.N.", - "Marque": "Indépendant sans enseigne" + "name": "Relais des M.I.N.", + "brand": "Indépendant sans enseigne" }, "13680003": { - "Nom": "SARL SDR AUTO SERVICE", - "Marque": "Avia" + "name": "SARL SDR AUTO SERVICE", + "brand": "Avia" }, "13680004": { - "Nom": "Intermarché LANCON DE PROVENCE", - "Marque": "Intermarché" + "name": "Intermarché LANCON DE PROVENCE", + "brand": "Intermarché" }, "13680007": { - "Nom": "RELAIS LANCON DE PROVENCE", - "Marque": "Total" + "name": "RELAIS LANCON DE PROVENCE", + "brand": "Total" }, "13680008": { - "Nom": "RELAIS SENEGUIER", - "Marque": "Total" + "name": "RELAIS SENEGUIER", + "brand": "Total" }, "13700005": { - "Nom": "MARIDIS", - "Marque": "Leclerc" + "name": "MARIDIS", + "brand": "Leclerc" }, "13700006": { - "Nom": "SARL SOCARMEC", - "Marque": "Indépendant sans enseigne" + "name": "SARL SOCARMEC", + "brand": "Indépendant sans enseigne" }, "13700007": { - "Nom": "Intermarché MARIGNANE", - "Marque": "Intermarché" + "name": "Intermarché MARIGNANE", + "brand": "Intermarché" }, "13700009": { - "Nom": "RELAIS DE LA NERTHE", - "Marque": "Total" + "name": "RELAIS DE LA NERTHE", + "brand": "Total" }, "13700010": { - "Nom": "RELAIS DE BOLMON", - "Marque": "Total" + "name": "RELAIS DE BOLMON", + "brand": "Total" }, "13700011": { - "Nom": "RELAIS SAINTE ANNE", - "Marque": "Total Access" + "name": "RELAIS SAINTE ANNE", + "brand": "Total Access" }, "13710001": { - "Nom": "Total FUVEAU", - "Marque": "Total" + "name": "Total FUVEAU", + "brand": "Total" }, "13710002": { - "Nom": "ESSO 4 CHEMINS", - "Marque": "Esso Express" + "name": "ESSO 4 CHEMINS", + "brand": "Esso Express" }, "13710003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "13710004": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "13730001": { - "Nom": "HYPER CASINO St VICTORET", - "Marque": "Casino" + "name": "HYPER CASINO St VICTORET", + "brand": "Casino" }, "13740001": { - "Nom": "LE ROVE AUTOMOBILES ET SERVICES", - "Marque": "Total" + "name": "LE ROVE AUTOMOBILES ET SERVICES", + "brand": "Total" }, "13740002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "13741001": { - "Nom": "Carrefour VITROLLES", - "Marque": "Carrefour" + "name": "Carrefour VITROLLES", + "brand": "Carrefour" }, "13750003": { - "Nom": "ESSO SERVICE RN7", - "Marque": "Esso" + "name": "ESSO SERVICE RN7", + "brand": "Esso" }, "13750004": { - "Nom": "ROLLI SAS - Total", - "Marque": "Total" + "name": "ROLLI SAS - Total", + "brand": "Total" }, "13750005": { - "Nom": "STATION PELISSIER", - "Marque": "Total" + "name": "STATION PELISSIER", + "brand": "Total" }, "13751001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "13770001": { - "Nom": "BP VENELLES LES CABASSOLS", - "Marque": "BP" + "name": "BP VENELLES LES CABASSOLS", + "brand": "BP" }, "13770002": { - "Nom": "Intermarché VENELLES", - "Marque": "Intermarché" + "name": "Intermarché VENELLES", + "brand": "Intermarché" }, "13780005": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "13790001": { - "Nom": "AIRE DE L'ARC", - "Marque": "CARAUTOROUTES" + "name": "AIRE DE L'ARC", + "brand": "CARAUTOROUTES" }, "13790003": { - "Nom": "AVIA ROUSSET", - "Marque": "Avia" + "name": "AVIA ROUSSET", + "brand": "Avia" }, "13800001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "13800004": { - "Nom": "SODISTRES SA", - "Marque": "Leclerc" + "name": "SODISTRES SA", + "brand": "Leclerc" }, "13800007": { - "Nom": "MCVA STATION Total ISTRES", - "Marque": "Total" + "name": "MCVA STATION Total ISTRES", + "brand": "Total" }, "13800009": { - "Nom": "SARL SUD AUTO 2000 - STATION AVIA", - "Marque": "Avia" + "name": "SARL SUD AUTO 2000 - STATION AVIA", + "brand": "Avia" }, "13850001": { - "Nom": "Intermarché GREASQUE", - "Marque": "Intermarché" + "name": "Intermarché GREASQUE", + "brand": "Intermarché" }, "13860001": { - "Nom": "station peyrolles", - "Marque": "Indépendant sans enseigne" + "name": "station peyrolles", + "brand": "Indépendant sans enseigne" }, "13870001": { - "Nom": "SARL MARIDAME - U EXPRESS", - "Marque": "Système U" + "name": "SARL MARIDAME - U EXPRESS", + "brand": "Système U" }, "13870002": { - "Nom": "Garage-sighinolfi", - "Marque": "Indépendant sans enseigne" + "name": "Garage-sighinolfi", + "brand": "Indépendant sans enseigne" }, "13880001": { - "Nom": "STATION SERVICE DE VELAUX", - "Marque": "Avia" + "name": "STATION SERVICE DE VELAUX", + "brand": "Avia" }, "13880002": { - "Nom": "Intermarché VELAUX", - "Marque": "Intermarché" + "name": "Intermarché VELAUX", + "brand": "Intermarché" }, "13890000": { - "Nom": "Station du Vallat", - "Marque": "Indépendant sans enseigne" + "name": "Station du Vallat", + "brand": "Indépendant sans enseigne" }, "13920003": { - "Nom": "Le Chalet", - "Marque": "LE CHALET" + "name": "Le Chalet", + "brand": "LE CHALET" }, "13920004": { - "Nom": "MARKET", - "Marque": "Carrefour Market" + "name": "MARKET", + "brand": "Carrefour Market" }, "13920005": { - "Nom": "Esso Les Remparts", - "Marque": "Esso" + "name": "Esso Les Remparts", + "brand": "Esso" }, "13990002": { - "Nom": "Le Lutin des Alpilles", - "Marque": "Elan" + "name": "Le Lutin des Alpilles", + "brand": "Elan" }, "14000003": { - "Nom": "SARL GARAGE CRAPART ET FILS", - "Marque": "Total" + "name": "SARL GARAGE CRAPART ET FILS", + "brand": "Total" }, "14000009": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "14000010": { - "Nom": "Intermarché CAEN", - "Marque": "Intermarché" + "name": "Intermarché CAEN", + "brand": "Intermarché" }, "14000014": { - "Nom": "CAEN DISTRIBUTION", - "Marque": "Leclerc" + "name": "CAEN DISTRIBUTION", + "brand": "Leclerc" }, "14000019": { - "Nom": "RELAIS SAINT-GILLES", - "Marque": "Total" + "name": "RELAIS SAINT-GILLES", + "brand": "Total" }, "14000020": { - "Nom": "RELAIS BEAU SITE", - "Marque": "Total Access" + "name": "RELAIS BEAU SITE", + "brand": "Total Access" }, "14000021": { - "Nom": "RELAIS CAEN COTE DE NACRE", - "Marque": "Total Access" + "name": "RELAIS CAEN COTE DE NACRE", + "brand": "Total Access" }, "14051003": { - "Nom": "BP VIRE", - "Marque": "BP" + "name": "BP VIRE", + "brand": "BP" }, "14053001": { - "Nom": "Carrefour Caen Cote de Nacre", - "Marque": "Carrefour" + "name": "Carrefour Caen Cote de Nacre", + "brand": "Carrefour" }, "14100002": { - "Nom": "GARAGE HORNET", - "Marque": "Elan" + "name": "GARAGE HORNET", + "brand": "Elan" }, "14100003": { - "Nom": "LISIEUX-DISTRIBUTION", - "Marque": "Leclerc" + "name": "LISIEUX-DISTRIBUTION", + "brand": "Leclerc" }, "14100004": { - "Nom": "RELAIS AUTO LEXOVIEN", - "Marque": "Esso" + "name": "RELAIS AUTO LEXOVIEN", + "brand": "Esso" }, "14100005": { - "Nom": "RELAIS AUTO LEXOVIEN", - "Marque": "Total" + "name": "RELAIS AUTO LEXOVIEN", + "brand": "Total" }, "14100006": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "14100007": { - "Nom": "Intermarché LISIEUX", - "Marque": "Intermarché" + "name": "Intermarché LISIEUX", + "brand": "Intermarché" }, "14100008": { - "Nom": "SARL MERCURIO", - "Marque": "Avia" + "name": "SARL MERCURIO", + "brand": "Avia" }, "14110001": { - "Nom": "SARL NEVEU", - "Marque": "Total Access" + "name": "SARL NEVEU", + "brand": "Total Access" }, "14110002": { - "Nom": "Intermarché CONDE/NOIREAU", - "Marque": "Intermarché" + "name": "Intermarché CONDE/NOIREAU", + "brand": "Intermarché" }, "14111001": { - "Nom": "Intermarché LOUVIGNY", - "Marque": "Intermarché" + "name": "Intermarché LOUVIGNY", + "brand": "Intermarché" }, "14112001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "14120001": { - "Nom": "SUPER U MONDEVILLE", - "Marque": "Système U" + "name": "SUPER U MONDEVILLE", + "brand": "Système U" }, "14120002": { - "Nom": "SARL MACON MONDEVILLE", - "Marque": "Total" + "name": "SARL MACON MONDEVILLE", + "brand": "Total" }, "14123001": { - "Nom": "AUCHAN supermarché", - "Marque": "Simply Market" + "name": "AUCHAN supermarché", + "brand": "Simply Market" }, "14123004": { - "Nom": "HYPERMARCHE LECLERC", - "Marque": "Leclerc" + "name": "HYPERMARCHE LECLERC", + "brand": "Leclerc" }, "14123005": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "14123007": { - "Nom": "RELAIS D.CALLOUINS", - "Marque": "Total Access" + "name": "RELAIS D.CALLOUINS", + "brand": "Total Access" }, "14123008": { - "Nom": "RELAIS D'IFS", - "Marque": "Total" + "name": "RELAIS D'IFS", + "brand": "Total" }, "14123009": { - "Nom": "DRIVE LECLERC", - "Marque": "Leclerc" + "name": "DRIVE LECLERC", + "brand": "Leclerc" }, "14125001": { - "Nom": "Carrefour MONDEVILLE", - "Marque": "Carrefour" + "name": "Carrefour MONDEVILLE", + "brand": "Carrefour" }, "14130001": { - "Nom": "MSA PAYS D AUGE SITE DE PONT L'EVE", - "Marque": "Total" + "name": "MSA PAYS D AUGE SITE DE PONT L'EVE", + "brand": "Total" }, "14130003": { - "Nom": "Intermarché SODIPLE", - "Marque": "Intermarché" + "name": "Intermarché SODIPLE", + "brand": "Intermarché" }, "14130004": { - "Nom": "Intermarché SODIPLE", - "Marque": "Intermarché" + "name": "Intermarché SODIPLE", + "brand": "Intermarché" }, "14130007": { - "Nom": "RELAIS AMIRAL HAMELIN", - "Marque": "Total Access" + "name": "RELAIS AMIRAL HAMELIN", + "brand": "Total Access" }, "14140001": { - "Nom": "Intermarché LIVAROT", - "Marque": "Intermarché" + "name": "Intermarché LIVAROT", + "brand": "Intermarché" }, "14140002": { - "Nom": "LE RELAIS COUR DEBIERRE", - "Marque": "Leader Price" + "name": "LE RELAIS COUR DEBIERRE", + "brand": "Leader Price" }, "14140003": { - "Nom": "Leader Price", - "Marque": "Leader Price" + "name": "Leader Price", + "brand": "Leader Price" }, "14150001": { - "Nom": "ESSO RIVA BELLA", - "Marque": "Esso Express" + "name": "ESSO RIVA BELLA", + "brand": "Esso Express" }, "14160002": { - "Nom": "SARL STADIS", - "Marque": "Géant" + "name": "SARL STADIS", + "brand": "Géant" }, "14160003": { - "Nom": "Intermarché DIVES SUR MER", - "Marque": "Intermarché" + "name": "Intermarché DIVES SUR MER", + "brand": "Intermarché" }, "14160004": { - "Nom": "RELAIS DIVES-SUR-MER", - "Marque": "Total" + "name": "RELAIS DIVES-SUR-MER", + "brand": "Total" }, "14170001": { - "Nom": "SARL GARAGE CHRETIEN", - "Marque": "Total" + "name": "SARL GARAGE CHRETIEN", + "brand": "Total" }, "14170003": { - "Nom": "HYPER CASINO", - "Marque": "Casino" + "name": "HYPER CASINO", + "brand": "Casino" }, "14200002": { - "Nom": "ESSO - Garage FORD", - "Marque": "Esso" + "name": "ESSO - Garage FORD", + "brand": "Esso" }, "14200006": { - "Nom": "SUPER U du Viaduc", - "Marque": "Système U" + "name": "SUPER U du Viaduc", + "brand": "Système U" }, "14200008": { - "Nom": "AUCHAN supermarché LEBISEY", - "Marque": "Auchan" + "name": "AUCHAN supermarché LEBISEY", + "brand": "Auchan" }, "14200009": { - "Nom": "RELAIS DE LA VALEUSE", - "Marque": "Total Access" + "name": "RELAIS DE LA VALEUSE", + "brand": "Total Access" }, "14204001": { - "Nom": "Carrefour HEROUVILLE SAINT CLAIR", - "Marque": "Carrefour" + "name": "Carrefour HEROUVILLE SAINT CLAIR", + "brand": "Carrefour" }, "14210001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "14220002": { - "Nom": "Sarl Garage Amand", - "Marque": "X.BEE" + "name": "Sarl Garage Amand", + "brand": "X.BEE" }, "14230002": { - "Nom": "Intermarché ISIGNY SUR MER", - "Marque": "Intermarché" + "name": "Intermarché ISIGNY SUR MER", + "brand": "Intermarché" }, "14230003": { - "Nom": "SARL LEALDIS", - "Marque": "Carrefour Market" + "name": "SARL LEALDIS", + "brand": "Carrefour Market" }, "14240001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "14250002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "14260001": { - "Nom": "LEADER PRICE AUNAY SUR ODON", - "Marque": "Leader Price" + "name": "LEADER PRICE AUNAY SUR ODON", + "brand": "Leader Price" }, "14260002": { - "Nom": "CATJEAN", - "Marque": "Intermarché" + "name": "CATJEAN", + "brand": "Intermarché" }, "14270001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "14280002": { - "Nom": "STATION SAINT CONTEST", - "Marque": "Indépendant sans enseigne" + "name": "STATION SAINT CONTEST", + "brand": "Indépendant sans enseigne" }, "14290001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "14310002": { - "Nom": "EURL LE RELAIS CLEMENCEAU", - "Marque": "Total" + "name": "EURL LE RELAIS CLEMENCEAU", + "brand": "Total" }, "14310004": { - "Nom": "SAS VILLERS BOCAGE DIST", - "Marque": "Leclerc" + "name": "SAS VILLERS BOCAGE DIST", + "brand": "Leclerc" }, "14320001": { - "Nom": "GGE OZENNE SARL", - "Marque": "Total" + "name": "GGE OZENNE SARL", + "brand": "Total" }, "14320003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "14330001": { - "Nom": "super u", - "Marque": "Système U" + "name": "super u", + "brand": "Système U" }, "14350002": { - "Nom": "Sarl garage carpin", - "Marque": "Total" + "name": "Sarl garage carpin", + "brand": "Total" }, "14370003": { - "Nom": "LECLERC ARGENCES", - "Marque": "Leclerc" + "name": "LECLERC ARGENCES", + "brand": "Leclerc" }, "14380001": { - "Nom": "SARL SEVDIST", - "Marque": "Carrefour Contact" + "name": "SARL SEVDIST", + "brand": "Carrefour Contact" }, "14380002": { - "Nom": "GARAGE MARTINS", - "Marque": "Total" + "name": "GARAGE MARTINS", + "brand": "Total" }, "14380003": { - "Nom": "S.A.S JOSSE", - "Marque": "Avia" + "name": "S.A.S JOSSE", + "brand": "Avia" }, "14390001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "14400003": { - "Nom": "Total SCAUTO BAYEUX", - "Marque": "Total Access" + "name": "Total SCAUTO BAYEUX", + "brand": "Total Access" }, "14400004": { - "Nom": "ESSO MONTGOMERY", - "Marque": "Esso Express" + "name": "ESSO MONTGOMERY", + "brand": "Esso Express" }, "14400007": { - "Nom": "SAINT VIGOR LE GRAND", - "Marque": "Auchan" + "name": "SAINT VIGOR LE GRAND", + "brand": "Auchan" }, "14400009": { - "Nom": "Carrefour", - "Marque": "Carrefour" + "name": "Carrefour", + "brand": "Carrefour" }, "14400010": { - "Nom": "RELAIS DE VAUCELLES", - "Marque": "Total Access" + "name": "RELAIS DE VAUCELLES", + "brand": "Total Access" }, "14404001": { - "Nom": "SOBADIS", - "Marque": "Leclerc" + "name": "SOBADIS", + "brand": "Leclerc" }, "14410002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "14420001": { - "Nom": "AMB DISTRIBUTION", - "Marque": "Carrefour Contact" + "name": "AMB DISTRIBUTION", + "brand": "Carrefour Contact" }, "14430001": { - "Nom": "DOZULEENNE DE DISTRIBUTION", - "Marque": "Système U" + "name": "DOZULEENNE DE DISTRIBUTION", + "brand": "Système U" }, "14440001": { - "Nom": "Total LETOUZEY", - "Marque": "Total" + "name": "Total LETOUZEY", + "brand": "Total" }, "14440002": { - "Nom": "Hyper U", - "Marque": "Système U" + "name": "Hyper U", + "brand": "Système U" }, "14450001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "14460002": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "14470001": { - "Nom": "SA COURSEULLES GARAGE", - "Marque": "Total" + "name": "SA COURSEULLES GARAGE", + "brand": "Total" }, "14470002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "14500001": { - "Nom": "SA PRUNIER", - "Marque": "Total" + "name": "SA PRUNIER", + "brand": "Total" }, "14500003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "14500005": { - "Nom": "VAUDRY-DIS", - "Marque": "Leclerc" + "name": "VAUDRY-DIS", + "brand": "Leclerc" }, "14500006": { - "Nom": "ROADY VIRE", - "Marque": "Roady" + "name": "ROADY VIRE", + "brand": "Roady" }, "14500007": { - "Nom": "Station Service Yann Bourquin", - "Marque": "Elan" + "name": "Station Service Yann Bourquin", + "brand": "Elan" }, "14500008": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "14520002": { - "Nom": "STATION ELAN SARL VALLY", - "Marque": "Elan" + "name": "STATION ELAN SARL VALLY", + "brand": "Elan" }, "14520003": { - "Nom": "SAS DURTANGES", - "Marque": "Système U" + "name": "SAS DURTANGES", + "brand": "Système U" }, "14520004": { - "Nom": "SA SORCA", - "Marque": "Système U" + "name": "SA SORCA", + "brand": "Système U" }, "14540001": { - "Nom": "Carrefour Contact soliers", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact soliers", + "brand": "Carrefour Contact" }, "14550001": { - "Nom": "E. LECLERC BLAINVILLE SUR ORNE", - "Marque": "Leclerc" + "name": "E. LECLERC BLAINVILLE SUR ORNE", + "brand": "Leclerc" }, "14600003": { - "Nom": "HONFLEUR-DISTRIBUTION", - "Marque": "Leclerc" + "name": "HONFLEUR-DISTRIBUTION", + "brand": "Leclerc" }, "14600004": { - "Nom": "Intermarché EQUEMAUVILLE", - "Marque": "Intermarché" + "name": "Intermarché EQUEMAUVILLE", + "brand": "Intermarché" }, "14600007": { - "Nom": "RELAIS DU PONT DE NORMANDIE", - "Marque": "Total Access" + "name": "RELAIS DU PONT DE NORMANDIE", + "brand": "Total Access" }, "14640001": { - "Nom": "GARAGE LION", - "Marque": "Elan" + "name": "GARAGE LION", + "brand": "Elan" }, "14670001": { - "Nom": "SAS BAM DISTRIBUTION", - "Marque": "Système U" + "name": "SAS BAM DISTRIBUTION", + "brand": "Système U" }, "14680001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "14700001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "14700004": { - "Nom": "CENTRE E LECLERC", - "Marque": "Leclerc" + "name": "CENTRE E LECLERC", + "brand": "Leclerc" }, "14700005": { - "Nom": "SARL GARAGE LEPY", - "Marque": "ELAN" + "name": "SARL GARAGE LEPY", + "brand": "ELAN" }, "14700007": { - "Nom": "Station ESSO", - "Marque": "ESSO" + "name": "Station ESSO", + "brand": "ESSO" }, "14710001": { - "Nom": "STATION-SERVICE COMMUNALE", - "Marque": "Communale" + "name": "STATION-SERVICE COMMUNALE", + "brand": "Communale" }, "14730001": { - "Nom": "BP A13 AIRE DE GIBERVILLE SUD", - "Marque": "BP" + "name": "BP A13 AIRE DE GIBERVILLE SUD", + "brand": "BP" }, "14730002": { - "Nom": "ESSO GIBERVILLE", - "Marque": "Esso" + "name": "ESSO GIBERVILLE", + "brand": "Esso" }, "14740001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "14760002": { - "Nom": "RELAIS BRETTEVILLE SUR ODON", - "Marque": "Total Access" + "name": "RELAIS BRETTEVILLE SUR ODON", + "brand": "Total Access" }, "14780002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "14790001": { - "Nom": "SARL Godefroy-Gondouin", - "Marque": "Total" + "name": "SARL Godefroy-Gondouin", + "brand": "Total" }, "14800005": { - "Nom": "CENTRE E. LECLERC", - "Marque": "Leclerc" + "name": "CENTRE E. LECLERC", + "brand": "Leclerc" }, "14800006": { - "Nom": "Carrefour HYPER", - "Marque": "Carrefour" + "name": "Carrefour HYPER", + "brand": "Carrefour" }, "14800008": { - "Nom": "AUTO SERVICE FRANCE AVIA", - "Marque": "Avia" + "name": "AUTO SERVICE FRANCE AVIA", + "brand": "Avia" }, "14800009": { - "Nom": "RELAIS DE LA TOUQUE", - "Marque": "Total" + "name": "RELAIS DE LA TOUQUE", + "brand": "Total" }, "14880002": { - "Nom": "GARAGE LE GROS BUISSON", - "Marque": "Elan" + "name": "GARAGE LE GROS BUISSON", + "brand": "Elan" }, "14920001": { - "Nom": "ESSO MATHIEU", - "Marque": "Esso Express" + "name": "ESSO MATHIEU", + "brand": "Esso Express" }, "14970003": { - "Nom": "LEADER PRICE", - "Marque": "Leader Price" + "name": "LEADER PRICE", + "brand": "Leader Price" }, "14980002": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "14980006": { - "Nom": "BP CAEN RN13-ROTS", - "Marque": "BP" + "name": "BP CAEN RN13-ROTS", + "brand": "BP" }, "14990002": { - "Nom": "SA LODA - Intermarché", - "Marque": "Intermarché" + "name": "SA LODA - Intermarché", + "brand": "Intermarché" }, "15000001": { - "Nom": "AUCHAN supermarché", - "Marque": "Auchan" + "name": "AUCHAN supermarché", + "brand": "Auchan" }, "15000003": { - "Nom": "SARL BS AUTO", - "Marque": "Total" + "name": "SARL BS AUTO", + "brand": "Total" }, "15000005": { - "Nom": "Relais du Parc", - "Marque": "Total" + "name": "Relais du Parc", + "brand": "Total" }, "15000008": { - "Nom": "Intermarché AURILLAC FIRMINY", - "Marque": "Intermarché" + "name": "Intermarché AURILLAC FIRMINY", + "brand": "Intermarché" }, "15000009": { - "Nom": "Intermarché AURILLAC11124", - "Marque": "Intermarché" + "name": "Intermarché AURILLAC11124", + "brand": "Intermarché" }, "15000012": { - "Nom": "AUVERGNE CARBURANTS", - "Marque": "Avia" + "name": "AUVERGNE CARBURANTS", + "brand": "Avia" }, "15000013": { - "Nom": "AUVERGNE CARBURANTS", - "Marque": "Avia" + "name": "AUVERGNE CARBURANTS", + "brand": "Avia" }, "15000014": { - "Nom": "SARL GARAGE DU NORD", - "Marque": "Elan" + "name": "SARL GARAGE DU NORD", + "brand": "Elan" }, "15000016": { - "Nom": "RELAIS PONT JULIEN", - "Marque": "Total Access" + "name": "RELAIS PONT JULIEN", + "brand": "Total Access" }, "15004001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "15004002": { - "Nom": "AURILLAC DISTRIBUTION", - "Marque": "Leclerc" + "name": "AURILLAC DISTRIBUTION", + "brand": "Leclerc" }, "15100001": { - "Nom": "MME FROMENT SYLVIE", - "Marque": "Total" + "name": "MME FROMENT SYLVIE", + "brand": "Total" }, "15100003": { - "Nom": "SAS ENERGIES SANFLORAINES", - "Marque": "Esso" + "name": "SAS ENERGIES SANFLORAINES", + "brand": "Esso" }, "15100004": { - "Nom": "AUTOS REPUBLIQUE", - "Marque": "ESSO" + "name": "AUTOS REPUBLIQUE", + "brand": "ESSO" }, "15100005": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "15100006": { - "Nom": "Intermarché ST FLOUR", - "Marque": "Intermarché" + "name": "Intermarché ST FLOUR", + "brand": "Intermarché" }, "15100008": { - "Nom": "Garage venet des menuires", - "Marque": "Elan" + "name": "Garage venet des menuires", + "brand": "Elan" }, "15100009": { - "Nom": "Leader Price", - "Marque": "Leader Price" + "name": "Leader Price", + "brand": "Leader Price" }, "15100010": { - "Nom": "Aire de service du cantal A75 SORTIE 29", - "Marque": "Intermarché" + "name": "Aire de service du cantal A75 SORTIE 29", + "brand": "Intermarché" }, "15100011": { - "Nom": "ORCEYRE CARBURANTS", - "Marque": "Indépendant sans enseigne" + "name": "ORCEYRE CARBURANTS", + "brand": "Indépendant sans enseigne" }, "15110001": { - "Nom": "MR FABRE PHILIPPE", - "Marque": "Total" + "name": "MR FABRE PHILIPPE", + "brand": "Total" }, "15110003": { - "Nom": "ESBRAT ROCHE CHAUDES AIGUES", - "Marque": "Indépendant sans enseigne" + "name": "ESBRAT ROCHE CHAUDES AIGUES", + "brand": "Indépendant sans enseigne" }, "15130001": { - "Nom": "MR PUECH", - "Marque": "Total" + "name": "MR PUECH", + "brand": "Total" }, "15130003": { - "Nom": "ESBRAT ROCHE PIERREFORT", - "Marque": "Esso" + "name": "ESBRAT ROCHE PIERREFORT", + "brand": "Esso" }, "15190001": { - "Nom": "DESSERT", - "Marque": "ESSO" + "name": "DESSERT", + "brand": "ESSO" }, "15190002": { - "Nom": "Carrefour Contact", - "Marque": "Shopi" + "name": "Carrefour Contact", + "brand": "Shopi" }, "15200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "15200004": { - "Nom": "Intermarché MAURIAC", - "Marque": "Intermarché" + "name": "Intermarché MAURIAC", + "brand": "Intermarché" }, "15210001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "15220002": { - "Nom": "CONSTANT AUTOMOBILES", - "Marque": "Indépendant sans enseigne" + "name": "CONSTANT AUTOMOBILES", + "brand": "Indépendant sans enseigne" }, "15250001": { - "Nom": "SARL BOUSQUET", - "Marque": "Total" + "name": "SARL BOUSQUET", + "brand": "Total" }, "15250003": { - "Nom": "SARL SPLACH", - "Marque": "Total" + "name": "SARL SPLACH", + "brand": "Total" }, "15250004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "15250006": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "15290001": { - "Nom": "ETS LACOMBE", - "Marque": "Indépendant sans enseigne" + "name": "ETS LACOMBE", + "brand": "Indépendant sans enseigne" }, "15300002": { - "Nom": "SARL DOLLY", - "Marque": "Total" + "name": "SARL DOLLY", + "brand": "Total" }, "15300003": { - "Nom": "SAS MURALIE Intermarché", - "Marque": "Intermarché" + "name": "SAS MURALIE Intermarché", + "brand": "Intermarché" }, "15300006": { - "Nom": "AUVERGNE CARBURANTS", - "Marque": "Avia" + "name": "AUVERGNE CARBURANTS", + "brand": "Avia" }, "15300007": { - "Nom": "Relais de la Planeze", - "Marque": "Indépendant sans enseigne" + "name": "Relais de la Planeze", + "brand": "Indépendant sans enseigne" }, "15310001": { - "Nom": "CHANTAL Didier", - "Marque": "Elan" + "name": "CHANTAL Didier", + "brand": "Elan" }, "15320001": { - "Nom": "ORCEYRE CARBURANTS", - "Marque": "Indépendant sans enseigne" + "name": "ORCEYRE CARBURANTS", + "brand": "Indépendant sans enseigne" }, "15400002": { - "Nom": "STATION ESSO JOUVE", - "Marque": "ESSO" + "name": "STATION ESSO JOUVE", + "brand": "ESSO" }, "15400003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "15400004": { - "Nom": "STATION ELAN", - "Marque": "Elan" + "name": "STATION ELAN", + "brand": "Elan" }, "15500003": { - "Nom": "Intermarché MASSIAC", - "Marque": "Intermarché" + "name": "Intermarché MASSIAC", + "brand": "Intermarché" }, "15500006": { - "Nom": "ORCEYRE CARBURANTS", - "Marque": "Indépendant sans enseigne" + "name": "ORCEYRE CARBURANTS", + "brand": "Indépendant sans enseigne" }, "15500007": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "15600001": { - "Nom": "SARL GGE LAVIGNE", - "Marque": "Total" + "name": "SARL GGE LAVIGNE", + "brand": "Total" }, "15600003": { - "Nom": "Intermarché ST ETIENNE DE MAURS", - "Marque": "Intermarché" + "name": "Intermarché ST ETIENNE DE MAURS", + "brand": "Intermarché" }, "15700001": { - "Nom": "STATION PHILIPPE PIAULT", - "Marque": "Avia" + "name": "STATION PHILIPPE PIAULT", + "brand": "Avia" }, "15700005": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "15800002": { - "Nom": "Intermarché Contact VIC SUR CERE", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact VIC SUR CERE", + "brand": "Intermarché Contact" }, "15800003": { - "Nom": "SAS RUSVIC", - "Marque": "Intermarché Contact" + "name": "SAS RUSVIC", + "brand": "Intermarché Contact" }, "15800004": { - "Nom": "Station Service Communale", - "Marque": "Indépendant sans enseigne" + "name": "Station Service Communale", + "brand": "Indépendant sans enseigne" }, "16000004": { - "Nom": "Intermarché ANGOULEME", - "Marque": "Intermarché" + "name": "Intermarché ANGOULEME", + "brand": "Intermarché" }, "16000005": { - "Nom": "Intermarché ANGOULEME - CC PLEIN SUD", - "Marque": "Intermarché" + "name": "Intermarché ANGOULEME - CC PLEIN SUD", + "brand": "Intermarché" }, "16000008": { - "Nom": "RELAIS ANGOULEME SILLAC STAR", - "Marque": "Total Access" + "name": "RELAIS ANGOULEME SILLAC STAR", + "brand": "Total Access" }, "16000009": { - "Nom": "RELAIS ANGOULEME RUBEMPRE", - "Marque": "Total Access" + "name": "RELAIS ANGOULEME RUBEMPRE", + "brand": "Total Access" }, "16021001": { - "Nom": "ANGOULEME DISTRIBUTION", - "Marque": "Leclerc" + "name": "ANGOULEME DISTRIBUTION", + "brand": "Leclerc" }, "16100001": { - "Nom": "AUCHAN CHATEAUBERNARD", - "Marque": "Auchan" + "name": "AUCHAN CHATEAUBERNARD", + "brand": "Auchan" }, "16100004": { - "Nom": "COGNAC DISTRIBUTION", - "Marque": "Leclerc" + "name": "COGNAC DISTRIBUTION", + "brand": "Leclerc" }, "16100005": { - "Nom": "AVIA PICOTY ENERGIES SERVICES", - "Marque": "Avia" + "name": "AVIA PICOTY ENERGIES SERVICES", + "brand": "Avia" }, "16100006": { - "Nom": "Intermarché COGNAC", - "Marque": "Intermarché" + "name": "Intermarché COGNAC", + "brand": "Intermarché" }, "16100007": { - "Nom": "Intermarché Contact COGNAC", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact COGNAC", + "brand": "Intermarché Contact" }, "16100008": { - "Nom": "RELAIS COGNAC CORDERIE STAR", - "Marque": "Total" + "name": "RELAIS COGNAC CORDERIE STAR", + "brand": "Total" }, "16110001": { - "Nom": "SODIROCHE", - "Marque": "Leclerc" + "name": "SODIROCHE", + "brand": "Leclerc" }, "16110002": { - "Nom": "DUBREUIL STATION LA ROCHEFOUCAULD", - "Marque": "Esso" + "name": "DUBREUIL STATION LA ROCHEFOUCAULD", + "brand": "Esso" }, "16110003": { - "Nom": "SARL BESSON DISTRIBUTION", - "Marque": "Casino" + "name": "SARL BESSON DISTRIBUTION", + "brand": "Casino" }, "16110004": { - "Nom": "ETS BORDIER", - "Marque": "AVIA" + "name": "ETS BORDIER", + "brand": "AVIA" }, "16120001": { - "Nom": "Super U CHATEAUNEUF SUR CHARENTE", - "Marque": "Système U" + "name": "Super U CHATEAUNEUF SUR CHARENTE", + "brand": "Système U" }, "16120004": { - "Nom": "Carrefour Contact - SA ELIMODIS", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact - SA ELIMODIS", + "brand": "Carrefour Contact" }, "16130002": { - "Nom": "Intermarché SEGONZAC", - "Marque": "Intermarché" + "name": "Intermarché SEGONZAC", + "brand": "Intermarché" }, "16140001": { - "Nom": "PICOTY ENERGIES SERVICES", - "Marque": "Avia" + "name": "PICOTY ENERGIES SERVICES", + "brand": "Avia" }, "16150003": { - "Nom": "Super U CHABANAIS", - "Marque": "Système U" + "name": "Super U CHABANAIS", + "brand": "Système U" }, "16150004": { - "Nom": "RELAIS CHANTALOUETTE", - "Marque": "Elan" + "name": "RELAIS CHANTALOUETTE", + "brand": "Elan" }, "16160001": { - "Nom": "AVIA PICOTY ENERGIES", - "Marque": "Avia" + "name": "AVIA PICOTY ENERGIES", + "brand": "Avia" }, "16170001": { - "Nom": "Super U ROUILLAC", - "Marque": "Système U" + "name": "Super U ROUILLAC", + "brand": "Système U" }, "16190001": { - "Nom": "Super U Coop Atlantique Montmoreau", - "Marque": "Système U" + "name": "Super U Coop Atlantique Montmoreau", + "brand": "Système U" }, "16200001": { - "Nom": "U Express Coop Atlantique Jarnac", - "Marque": "Système U" + "name": "U Express Coop Atlantique Jarnac", + "brand": "Système U" }, "16200003": { - "Nom": "Intermarché JARNAC", - "Marque": "Intermarché" + "name": "Intermarché JARNAC", + "brand": "Intermarché" }, "16200004": { - "Nom": "STATION Total", - "Marque": "Total" + "name": "STATION Total", + "brand": "Total" }, "16210001": { - "Nom": "Intermarché CHALAIS", - "Marque": "Intermarché" + "name": "Intermarché CHALAIS", + "brand": "Intermarché" }, "16220001": { - "Nom": "Intermarché MONTBRON", - "Marque": "Intermarché" + "name": "Intermarché MONTBRON", + "brand": "Intermarché" }, "16230001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "16230002": { - "Nom": "Super U Coop Atlantique Mansle", - "Marque": "Système U" + "name": "Super U Coop Atlantique Mansle", + "brand": "Système U" }, "16250001": { - "Nom": "Carrefour Contact SARL ZETIMARCEL", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact SARL ZETIMARCEL", + "brand": "Carrefour Contact" }, "16260001": { - "Nom": "SARL AGENCE DE LA TOISON D'OR", - "Marque": "Total" + "name": "SARL AGENCE DE LA TOISON D'OR", + "brand": "Total" }, "16260002": { - "Nom": "Intermarché SAS BELEOKING", - "Marque": "Intermarché" + "name": "Intermarché SAS BELEOKING", + "brand": "Intermarché" }, "16270001": { - "Nom": "U Express Coop Atlantique Roumazières", - "Marque": "Système U" + "name": "U Express Coop Atlantique Roumazières", + "brand": "Système U" }, "16270003": { - "Nom": "Intermarché ROUMAZIERES LOUBERT", - "Marque": "Intermarché" + "name": "Intermarché ROUMAZIERES LOUBERT", + "brand": "Intermarché" }, "16300001": { - "Nom": "SAS ENA", - "Marque": "Total" + "name": "SAS ENA", + "brand": "Total" }, "16300002": { - "Nom": "SODIBA", - "Marque": "Leclerc" + "name": "SODIBA", + "brand": "Leclerc" }, "16300004": { - "Nom": "Intermarché BARBEZIEUX", - "Marque": "Intermarché" + "name": "Intermarché BARBEZIEUX", + "brand": "Intermarché" }, "16320003": { - "Nom": "Super U VILLEBOIS LAVALETTE", - "Marque": "Système U" + "name": "Super U VILLEBOIS LAVALETTE", + "brand": "Système U" }, "16320005": { - "Nom": "STATION 24/24", - "Marque": "Indépendant" + "name": "STATION 24/24", + "brand": "Indépendant" }, "16330001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "16340002": { - "Nom": "ESSO EXPRESS ISLE D ESPAGNAC", - "Marque": "Esso Express" + "name": "ESSO EXPRESS ISLE D ESPAGNAC", + "brand": "Esso Express" }, "16350001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "16360001": { - "Nom": "LAUTRET SA", - "Marque": "Total" + "name": "LAUTRET SA", + "brand": "Total" }, "16360002": { - "Nom": "Intermarché BAIGNES", - "Marque": "Intermarché" + "name": "Intermarché BAIGNES", + "brand": "Intermarché" }, "16400001": { - "Nom": "AUCHAN ANGOULEME", - "Marque": "Auchan" + "name": "AUCHAN ANGOULEME", + "brand": "Auchan" }, "16400002": { - "Nom": "Super U Coop Atlantique La Couronne", - "Marque": "Système U" + "name": "Super U Coop Atlantique La Couronne", + "brand": "Système U" }, "16430001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "16430004": { - "Nom": "Intermarché CHAMPNIERS", - "Marque": "Intermarché" + "name": "Intermarché CHAMPNIERS", + "brand": "Intermarché" }, "16430005": { - "Nom": "RELAIS LES CHAUVAUDS", - "Marque": "Total Access" + "name": "RELAIS LES CHAUVAUDS", + "brand": "Total Access" }, "16500002": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "16600001": { - "Nom": "Intermarché RUELLE", - "Marque": "Intermarché" + "name": "Intermarché RUELLE", + "brand": "Intermarché" }, "16700002": { - "Nom": "DUPE TROLL RUFFEC", - "Marque": "Shell" + "name": "DUPE TROLL RUFFEC", + "brand": "Shell" }, "16700003": { - "Nom": "RUDIS", - "Marque": "Leclerc" + "name": "RUDIS", + "brand": "Leclerc" }, "16700004": { - "Nom": "Intermarché RUFFEC", - "Marque": "Intermarché" + "name": "Intermarché RUFFEC", + "brand": "Intermarché" }, "16700006": { - "Nom": "SARL MARAYME", - "Marque": "Avia" + "name": "SARL MARAYME", + "brand": "Avia" }, "16710001": { - "Nom": "Super U Coop Atlantique St Yrieix/Charente", - "Marque": "Système U" + "name": "Super U Coop Atlantique St Yrieix/Charente", + "brand": "Système U" }, "16730001": { - "Nom": "GARAGE CHAUVEAU SARL", - "Marque": "Avia" + "name": "GARAGE CHAUVEAU SARL", + "brand": "Avia" }, "16730002": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "16800001": { - "Nom": "Carrefour SOYAUX", - "Marque": "Carrefour" + "name": "Carrefour SOYAUX", + "brand": "Carrefour" }, "17000005": { - "Nom": "E.LECLERC SAUTEL-DISTRIBUTION", - "Marque": "Leclerc" + "name": "E.LECLERC SAUTEL-DISTRIBUTION", + "brand": "Leclerc" }, "17000007": { - "Nom": "PICOTY SA LA PALLICE", - "Marque": "Avia" + "name": "PICOTY SA LA PALLICE", + "brand": "Avia" }, "17000010": { - "Nom": "ESSO EXPRESS LA ROCHELLE GRAND PORT", - "Marque": "Esso Express" + "name": "ESSO EXPRESS LA ROCHELLE GRAND PORT", + "brand": "Esso Express" }, "17000011": { - "Nom": "ESSO EXPRESS LA ROCHELLE EUROPE 234", - "Marque": "Esso Express" + "name": "ESSO EXPRESS LA ROCHELLE EUROPE 234", + "brand": "Esso Express" }, "17000012": { - "Nom": "RELAIS STAR VILLENEUVE LES SALINES", - "Marque": "Total" + "name": "RELAIS STAR VILLENEUVE LES SALINES", + "brand": "Total" }, "17100001": { - "Nom": "MR FRUCHART PATRICE", - "Marque": "Total" + "name": "MR FRUCHART PATRICE", + "brand": "Total" }, "17100005": { - "Nom": "CENTRE LECLERC LES COTEAUX", - "Marque": "Leclerc" + "name": "CENTRE LECLERC LES COTEAUX", + "brand": "Leclerc" }, "17100006": { - "Nom": "SAM SAS", - "Marque": "Leclerc" + "name": "SAM SAS", + "brand": "Leclerc" }, "17100007": { - "Nom": "Intermarché SAINTES", - "Marque": "Intermarché" + "name": "Intermarché SAINTES", + "brand": "Intermarché" }, "17100008": { - "Nom": "Intermarché LES BOIFFIERS", - "Marque": "Intermarché" + "name": "Intermarché LES BOIFFIERS", + "brand": "Intermarché" }, "17100009": { - "Nom": "Total", - "Marque": "Total" + "name": "Total", + "brand": "Total" }, "17100011": { - "Nom": "ESSO EXPRESS SAINTES LES FLEURS", - "Marque": "Esso Express" + "name": "ESSO EXPRESS SAINTES LES FLEURS", + "brand": "Esso Express" }, "17100013": { - "Nom": "RELAIS LA PALUE", - "Marque": "Total Access" + "name": "RELAIS LA PALUE", + "brand": "Total Access" }, "17102001": { - "Nom": "Hyper U Coop Atlantique Saintes", - "Marque": "Système U" + "name": "Hyper U Coop Atlantique Saintes", + "brand": "Système U" }, "17110001": { - "Nom": "Super U Coop Atlantique St Georges Didonne", - "Marque": "Système U" + "name": "Super U Coop Atlantique St Georges Didonne", + "brand": "Système U" }, "17120002": { - "Nom": "Super U Coop Atlantique Cozes", - "Marque": "Système U" + "name": "Super U Coop Atlantique Cozes", + "brand": "Système U" }, "17120003": { - "Nom": "SARL LE RELAIS DE BEL AIR", - "Marque": "Avia" + "name": "SARL LE RELAIS DE BEL AIR", + "brand": "Avia" }, "17120004": { - "Nom": "CHEZ CHOUCHOU", - "Marque": "Indépendant sans enseigne" + "name": "CHEZ CHOUCHOU", + "brand": "Indépendant sans enseigne" }, "17120005": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "17130001": { - "Nom": "U Express Coop Atlantique Montendre", - "Marque": "Système U" + "name": "U Express Coop Atlantique Montendre", + "brand": "Système U" }, "17130003": { - "Nom": "GARAGE CORBI SA", - "Marque": "Total" + "name": "GARAGE CORBI SA", + "brand": "Total" }, "17130004": { - "Nom": "Intermarché MONTENDRE", - "Marque": "Intermarché" + "name": "Intermarché MONTENDRE", + "brand": "Intermarché" }, "17132001": { - "Nom": "Super U MESCHERS", - "Marque": "Système U" + "name": "Super U MESCHERS", + "brand": "Système U" }, "17137001": { - "Nom": "SARL GARAGE PLAIRE", - "Marque": "Total" + "name": "SARL GARAGE PLAIRE", + "brand": "Total" }, "17137002": { - "Nom": "SUPER U NIEUL SUR MER", - "Marque": "Système U" + "name": "SUPER U NIEUL SUR MER", + "brand": "Système U" }, "17138006": { - "Nom": "RELAIS PUILBOREAU", - "Marque": "Total Access" + "name": "RELAIS PUILBOREAU", + "brand": "Total Access" }, "17138007": { - "Nom": "RELAIS DE BEAULIEU", - "Marque": "Total Access" + "name": "RELAIS DE BEAULIEU", + "brand": "Total Access" }, "17138008": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "17139001": { - "Nom": "U Express DOMPIERRE SUR MER", - "Marque": "Système U" + "name": "U Express DOMPIERRE SUR MER", + "brand": "Système U" }, "17139002": { - "Nom": "SARL GARAGE BRILLAULT", - "Marque": "Indépendant sans enseigne" + "name": "SARL GARAGE BRILLAULT", + "brand": "Indépendant sans enseigne" }, "17140001": { - "Nom": "S.M-CHARENTAIS", - "Marque": "Leclerc" + "name": "S.M-CHARENTAIS", + "brand": "Leclerc" }, "17150001": { - "Nom": "Super U MIRAMBEAU", - "Marque": "Système U" + "name": "Super U MIRAMBEAU", + "brand": "Système U" }, "17160001": { - "Nom": "Intermarché MATHA", - "Marque": "Intermarché" + "name": "Intermarché MATHA", + "brand": "Intermarché" }, "17160002": { - "Nom": "U Express Coop Atlantique Matha", - "Marque": "Système U" + "name": "U Express Coop Atlantique Matha", + "brand": "Système U" }, "17160003": { - "Nom": "SUPERMARCHE CASINO /SAS TAMNIDIS", - "Marque": "Casino" + "name": "SUPERMARCHE CASINO /SAS TAMNIDIS", + "brand": "Casino" }, "17170003": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "17200001": { - "Nom": "Super U Coop Atlantique Royan", - "Marque": "Système U" + "name": "Super U Coop Atlantique Royan", + "brand": "Système U" }, "17200003": { - "Nom": "MR TANTIN MICHEL", - "Marque": "Total" + "name": "MR TANTIN MICHEL", + "brand": "Total" }, "17200006": { - "Nom": "Intermarché contact ST SULPICE DE ROYAN", - "Marque": "Intermarché Contact" + "name": "Intermarché contact ST SULPICE DE ROYAN", + "brand": "Intermarché Contact" }, "17200007": { - "Nom": "SODIGEST SAS", - "Marque": "Avia" + "name": "SODIGEST SAS", + "brand": "Avia" }, "17200008": { - "Nom": "RELAIS DE ROYAN LIBERATION", - "Marque": "Total Access" + "name": "RELAIS DE ROYAN LIBERATION", + "brand": "Total Access" }, "17200009": { - "Nom": "RELAIS ROYAN BASTIE STAR", - "Marque": "Total Access" + "name": "RELAIS ROYAN BASTIE STAR", + "brand": "Total Access" }, "17201001": { - "Nom": "LECLERC ROYAN SODISROY", - "Marque": "Leclerc" + "name": "LECLERC ROYAN SODISROY", + "brand": "Leclerc" }, "17210001": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "17210002": { - "Nom": "ESSO BEDENAC 2", - "Marque": "Esso" + "name": "ESSO BEDENAC 2", + "brand": "Esso" }, "17210004": { - "Nom": "KM488", - "Marque": "Indépendant sans enseigne" + "name": "KM488", + "brand": "Indépendant sans enseigne" }, "17220001": { - "Nom": "Intermarché LA JARRIE", - "Marque": "Intermarché" + "name": "Intermarché LA JARRIE", + "brand": "Intermarché" }, "17220002": { - "Nom": "Intermarché SALLES SUR MER", - "Marque": "Intermarché" + "name": "Intermarché SALLES SUR MER", + "brand": "Intermarché" }, "17220003": { - "Nom": "ROGADIA", - "Marque": "Système U" + "name": "ROGADIA", + "brand": "Système U" }, "17230002": { - "Nom": "Super U MARANS", - "Marque": "Système U" + "name": "Super U MARANS", + "brand": "Système U" }, "17230004": { - "Nom": "Intermarché MARANS", - "Marque": "Intermarché" + "name": "Intermarché MARANS", + "brand": "Intermarché" }, "17240001": { - "Nom": "SAS FUEL 17", - "Marque": "Total" + "name": "SAS FUEL 17", + "brand": "Total" }, "17250002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "17250003": { - "Nom": "Intermarché", - "Marque": "Intermarché Contact" + "name": "Intermarché", + "brand": "Intermarché Contact" }, "17260001": { - "Nom": "Super U GEMOZAC", - "Marque": "Système U" + "name": "Super U GEMOZAC", + "brand": "Système U" }, "17270001": { - "Nom": "Intermarché MONTGUYON", - "Marque": "Intermarché" + "name": "Intermarché MONTGUYON", + "brand": "Intermarché" }, "17285001": { - "Nom": "Hyper U Coop Atlantique La Rochelle", - "Marque": "Système U" + "name": "Hyper U Coop Atlantique La Rochelle", + "brand": "Système U" }, "17290001": { - "Nom": "M. BARDON ALAIN", - "Marque": "Total" + "name": "M. BARDON ALAIN", + "brand": "Total" }, "17290003": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "17300003": { - "Nom": "AUDIS-DISROCH", - "Marque": "Leclerc" + "name": "AUDIS-DISROCH", + "brand": "Leclerc" }, "17300004": { - "Nom": "Intermarché HYPER", - "Marque": "Intermarché" + "name": "Intermarché HYPER", + "brand": "Intermarché" }, "17300006": { - "Nom": "ESSO EXPRESS ROCHEFORT BOIS BERNARD", - "Marque": "Esso Express" + "name": "ESSO EXPRESS ROCHEFORT BOIS BERNARD", + "brand": "Esso Express" }, "17300007": { - "Nom": "U EXPRESS ROCHEFORDIS", - "Marque": "Système U" + "name": "U EXPRESS ROCHEFORDIS", + "brand": "Système U" }, "17310001": { - "Nom": "Super U Coop Atlantique St Pierre Oléron", - "Marque": "Système U" + "name": "Super U Coop Atlantique St Pierre Oléron", + "brand": "Système U" }, "17310003": { - "Nom": "SARL RAFAEL NETO", - "Marque": "Total" + "name": "SARL RAFAEL NETO", + "brand": "Total" }, "17310004": { - "Nom": "E.Leclerc Saint Pierre d'Oléron", - "Marque": "Leclerc" + "name": "E.Leclerc Saint Pierre d'Oléron", + "brand": "Leclerc" }, "17320002": { - "Nom": "SODIMAR", - "Marque": "Leclerc" + "name": "SODIMAR", + "brand": "Leclerc" }, "17320003": { - "Nom": "Intermarché MARENNES", - "Marque": "Intermarché" + "name": "Intermarché MARENNES", + "brand": "Intermarché" }, "17320004": { - "Nom": "E. LECLERC", - "Marque": "Leclerc" + "name": "E. LECLERC", + "brand": "Leclerc" }, "17330001": { - "Nom": "SARL GARAGE ROY", - "Marque": "Indépendant sans enseigne" + "name": "SARL GARAGE ROY", + "brand": "Indépendant sans enseigne" }, "17350001": { - "Nom": "AIRE DE FENIOUX EST", - "Marque": "Shell" + "name": "AIRE DE FENIOUX EST", + "brand": "Shell" }, "17350003": { - "Nom": "SARL GARAGE GARNIER", - "Marque": "Total" + "name": "SARL GARAGE GARNIER", + "brand": "Total" }, "17350005": { - "Nom": "Super U Coop Atlantique St Savinien", - "Marque": "Système U" + "name": "Super U Coop Atlantique St Savinien", + "brand": "Système U" }, "17350006": { - "Nom": "AGIP FENIOUX OUEST A10", - "Marque": "Agip" + "name": "AGIP FENIOUX OUEST A10", + "brand": "Agip" }, "17360001": { - "Nom": "U Express Coop Atlantique St Aigulin", - "Marque": "Système U" + "name": "U Express Coop Atlantique St Aigulin", + "brand": "Système U" }, "17390002": { - "Nom": "SAS COTREM", - "Marque": "Intermarché" + "name": "SAS COTREM", + "brand": "Intermarché" }, "17400002": { - "Nom": "ANGELY-DIS", - "Marque": "Leclerc" + "name": "ANGELY-DIS", + "brand": "Leclerc" }, "17400003": { - "Nom": "Intermarché ST JEAN D'ANGELY", - "Marque": "Intermarché" + "name": "Intermarché ST JEAN D'ANGELY", + "brand": "Intermarché" }, "17400004": { - "Nom": "DUBREUIL STATION ST JEAN D'ANGELY", - "Marque": "Esso" + "name": "DUBREUIL STATION ST JEAN D'ANGELY", + "brand": "Esso" }, "17410001": { - "Nom": "E.LECLERC ST MARTIN DE RE", - "Marque": "Leclerc" + "name": "E.LECLERC ST MARTIN DE RE", + "brand": "Leclerc" }, "17410002": { - "Nom": "Intermarché ST MARTIN DE RE", - "Marque": "Intermarché" + "name": "Intermarché ST MARTIN DE RE", + "brand": "Intermarché" }, "17420001": { - "Nom": "Super U Coop Atlantique St Palais/Mer", - "Marque": "Système U" + "name": "Super U Coop Atlantique St Palais/Mer", + "brand": "Système U" }, "17430001": { - "Nom": "Super U TONNAY CHARENTE", - "Marque": "Système U" + "name": "Super U TONNAY CHARENTE", + "brand": "Système U" }, "17430007": { - "Nom": "RELAIS TONNAY CHARENTE", - "Marque": "Total Access" + "name": "RELAIS TONNAY CHARENTE", + "brand": "Total Access" }, "17440001": { - "Nom": "RELAIS DE BELLE AIRE", - "Marque": "Total" + "name": "RELAIS DE BELLE AIRE", + "brand": "Total" }, "17440003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "17450001": { - "Nom": "Super U FOURAS", - "Marque": "Système U" + "name": "Super U FOURAS", + "brand": "Système U" }, "17470001": { - "Nom": "Intermarché AULNAY DE SAINTONGE", - "Marque": "Intermarché" + "name": "Intermarché AULNAY DE SAINTONGE", + "brand": "Intermarché" }, "17480003": { - "Nom": "E.Leclerc Le Château d'Oléron", - "Marque": "Leclerc" + "name": "E.Leclerc Le Château d'Oléron", + "brand": "Leclerc" }, "17500002": { - "Nom": "SEUGNE-DIST", - "Marque": "Leclerc" + "name": "SEUGNE-DIST", + "brand": "Leclerc" }, "17500003": { - "Nom": "Intermarché JONZAC", - "Marque": "Intermarché" + "name": "Intermarché JONZAC", + "brand": "Intermarché" }, "17530001": { - "Nom": "Super U Coop Atlantique Arvert", - "Marque": "Système U" + "name": "Super U Coop Atlantique Arvert", + "brand": "Système U" }, "17530003": { - "Nom": "SARL ANIMEDIS.", - "Marque": "Carrefour Contact" + "name": "SARL ANIMEDIS.", + "brand": "Carrefour Contact" }, "17550001": { - "Nom": "Intermarché DOLUS D OLERON", - "Marque": "Intermarché" + "name": "Intermarché DOLUS D OLERON", + "brand": "Intermarché" }, "17570001": { - "Nom": "SARL JAUDEAU & CIE", - "Marque": "Elan" + "name": "SARL JAUDEAU & CIE", + "brand": "Elan" }, "17580001": { - "Nom": "SAS SODIBOIS", - "Marque": "Carrefour Contact" + "name": "SAS SODIBOIS", + "brand": "Carrefour Contact" }, "17590002": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "17600001": { - "Nom": "Super U SAUJON", - "Marque": "Système U" + "name": "Super U SAUJON", + "brand": "Système U" }, "17600003": { - "Nom": "SAS LARDIDEN", - "Marque": "Intermarché" + "name": "SAS LARDIDEN", + "brand": "Intermarché" }, "17600004": { - "Nom": "MEDIS", - "Marque": "Leclerc" + "name": "MEDIS", + "brand": "Leclerc" }, "17610002": { - "Nom": "le planet", - "Marque": "Elan" + "name": "le planet", + "brand": "Elan" }, "17620002": { - "Nom": "SUPER U ECHILLAIS", - "Marque": "Système U" + "name": "SUPER U ECHILLAIS", + "brand": "Système U" }, "17630001": { - "Nom": "Intermarché LA FLOTTE EN RE", - "Marque": "Intermarché" + "name": "Intermarché LA FLOTTE EN RE", + "brand": "Intermarché" }, "17640001": { - "Nom": "U Express VAUX SUR MER", - "Marque": "Système U" + "name": "U Express VAUX SUR MER", + "brand": "Système U" }, "17640002": { - "Nom": "SAS Les Perches Distribution Intermarché", - "Marque": "Intermarché" + "name": "SAS Les Perches Distribution Intermarché", + "brand": "Intermarché" }, "17690001": { - "Nom": "Carrefour Angoulins (La Rochelle) 24/24h", - "Marque": "Carrefour" + "name": "Carrefour Angoulins (La Rochelle) 24/24h", + "brand": "Carrefour" }, "17690002": { - "Nom": "Total Access", - "Marque": "Total Access" + "name": "Total Access", + "brand": "Total Access" }, "17690003": { - "Nom": "SODI OUEST", - "Marque": "Avia" + "name": "SODI OUEST", + "brand": "Avia" }, "17700001": { - "Nom": "U Express Coop Atlantique Surgères", - "Marque": "Système U" + "name": "U Express Coop Atlantique Surgères", + "brand": "Système U" }, "17700002": { - "Nom": "MME PETIT", - "Marque": "Total" + "name": "MME PETIT", + "brand": "Total" }, "17700003": { - "Nom": "SODISUR", - "Marque": "Leclerc" + "name": "SODISUR", + "brand": "Leclerc" }, "17700004": { - "Nom": "Intermarché SURGERES", - "Marque": "Intermarché" + "name": "Intermarché SURGERES", + "brand": "Intermarché" }, "17740001": { - "Nom": "LE RELAIS DU PERTUIS", - "Marque": "Total" + "name": "LE RELAIS DU PERTUIS", + "brand": "Total" }, "17780001": { - "Nom": "STATION Intermarché", - "Marque": "Intermarché Contact" + "name": "STATION Intermarché", + "brand": "Intermarché Contact" }, "17800001": { - "Nom": "BP A10 AIRE CHARENTES EST", - "Marque": "BP" + "name": "BP A10 AIRE CHARENTES EST", + "brand": "BP" }, "17800004": { - "Nom": "E.LECLERC SODIPONS", - "Marque": "Leclerc" + "name": "E.LECLERC SODIPONS", + "brand": "Leclerc" }, "17800005": { - "Nom": "STATION BP SAINT-LEGER OUEST", - "Marque": "BP" + "name": "STATION BP SAINT-LEGER OUEST", + "brand": "BP" }, "17920001": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "18000001": { - "Nom": "CSF FRANCE", - "Marque": "Carrefour Market" + "name": "CSF FRANCE", + "brand": "Carrefour Market" }, "18000002": { - "Nom": "Carrefour BOURGES", - "Marque": "Carrefour" + "name": "Carrefour BOURGES", + "brand": "Carrefour" }, "18000004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "18000011": { - "Nom": "AUCHAN SUPERMARCHE BOURGES", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE BOURGES", + "brand": "Auchan" }, "18000014": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "18000016": { - "Nom": "ESSO EXPRESS BOURGES AURON", - "Marque": "Esso Express" + "name": "ESSO EXPRESS BOURGES AURON", + "brand": "Esso Express" }, "18000017": { - "Nom": "RELAIS DES PRES LE ROI", - "Marque": "Total" + "name": "RELAIS DES PRES LE ROI", + "brand": "Total" }, "18000018": { - "Nom": "RELAIS BOURGES CAMPING", - "Marque": "Total Access" + "name": "RELAIS BOURGES CAMPING", + "brand": "Total Access" }, "18000019": { - "Nom": "RELAIS BOURGES AVENIR", - "Marque": "Total Access" + "name": "RELAIS BOURGES AVENIR", + "brand": "Total Access" }, "18100001": { - "Nom": "Market SARL VIFORDIS", - "Marque": "Carrefour Market" + "name": "Market SARL VIFORDIS", + "brand": "Carrefour Market" }, "18100002": { - "Nom": "Hyper U Coop Atlantique Vierzon", - "Marque": "Système U" + "name": "Hyper U Coop Atlantique Vierzon", + "brand": "Système U" }, "18100008": { - "Nom": "Intermarché VIERZON", - "Marque": "Intermarché" + "name": "Intermarché VIERZON", + "brand": "Intermarché" }, "18100010": { - "Nom": "ESSO EXPRESS VIERZON FORGES", - "Marque": "Esso Express" + "name": "ESSO EXPRESS VIERZON FORGES", + "brand": "Esso Express" }, "18100011": { - "Nom": "RELAIS DE LA CHEVROLERIE", - "Marque": "Total Access" + "name": "RELAIS DE LA CHEVROLERIE", + "brand": "Total Access" }, "18100014": { - "Nom": "MARKET", - "Marque": "Carrefour Market" + "name": "MARKET", + "brand": "Carrefour Market" }, "18103001": { - "Nom": "VIERZON-DIS", - "Marque": "Leclerc" + "name": "VIERZON-DIS", + "brand": "Leclerc" }, "18110001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "18130001": { - "Nom": "ATAC DUN SUR AURON", - "Marque": "Atac" + "name": "ATAC DUN SUR AURON", + "brand": "Atac" }, "18130002": { - "Nom": "SUPER U DUN SUR AURON", - "Marque": "Système U" + "name": "SUPER U DUN SUR AURON", + "brand": "Système U" }, "18140002": { - "Nom": "GARAGE MONGEREAU", - "Marque": "ESSO" + "name": "GARAGE MONGEREAU", + "brand": "ESSO" }, "18150001": { - "Nom": "ATAC LA GUERCHE SUR L AUBOIS", - "Marque": "Atac" + "name": "ATAC LA GUERCHE SUR L AUBOIS", + "brand": "Atac" }, "18160001": { - "Nom": "Market SAS LIGNIERIS", - "Marque": "Carrefour Market" + "name": "Market SAS LIGNIERIS", + "brand": "Carrefour Market" }, "18170001": { - "Nom": "U Express LE CHATELET", - "Marque": "Système U" + "name": "U Express LE CHATELET", + "brand": "Système U" }, "18190001": { - "Nom": "Intermarché CHATEAUNEUF SUR CHER", - "Marque": "Intermarché Contact" + "name": "Intermarché CHATEAUNEUF SUR CHER", + "brand": "Intermarché Contact" }, "18200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "18200002": { - "Nom": "SCAC ST AMAND MONTROND", - "Marque": "Total" + "name": "SCAC ST AMAND MONTROND", + "brand": "Total" }, "18200005": { - "Nom": "Intermarché ST AMAND MONTROND", - "Marque": "Intermarché" + "name": "Intermarché ST AMAND MONTROND", + "brand": "Intermarché" }, "18200007": { - "Nom": "SAS SAMDIS", - "Marque": "Leclerc" + "name": "SAS SAMDIS", + "brand": "Leclerc" }, "18200011": { - "Nom": "Esso Centre de la France", - "Marque": "Esso" + "name": "Esso Centre de la France", + "brand": "Esso" }, "18220001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "18230001": { - "Nom": "GEANT CASINO floreal", - "Marque": "Géant" + "name": "GEANT CASINO floreal", + "brand": "Géant" }, "18230004": { - "Nom": "LECLERC SAINT DOULCHARD", - "Marque": "Leclerc" + "name": "LECLERC SAINT DOULCHARD", + "brand": "Leclerc" }, "18240001": { - "Nom": "Utile BELLEVILLE SUR LOIRE", - "Marque": "Système U" + "name": "Utile BELLEVILLE SUR LOIRE", + "brand": "Système U" }, "18240002": { - "Nom": "SARL ASVL", - "Marque": "Avia" + "name": "SARL ASVL", + "brand": "Avia" }, "18250002": { - "Nom": "Intermarché HENRICHEMONT", - "Marque": "Intermarché" + "name": "Intermarché HENRICHEMONT", + "brand": "Intermarché" }, "18300001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "18300003": { - "Nom": "GARAGE SANCERROIS SARL FOUCAULT", - "Marque": "Avia" + "name": "GARAGE SANCERROIS SARL FOUCAULT", + "brand": "Avia" }, "18300005": { - "Nom": "033 DATS SAINT SATUR", - "Marque": "Colruyt" + "name": "033 DATS SAINT SATUR", + "brand": "Colruyt" }, "18310001": { - "Nom": "Carrefour Contact Graçay", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact Graçay", + "brand": "Carrefour Contact" }, "18330001": { - "Nom": "GARAGE AMICHAUD", - "Marque": "Avia" + "name": "GARAGE AMICHAUD", + "brand": "Avia" }, "18350001": { - "Nom": "Intermarché NERONDES", - "Marque": "Intermarché Contact" + "name": "Intermarché NERONDES", + "brand": "Intermarché Contact" }, "18370001": { - "Nom": "Intermarché CHATEAUMEILLANT", - "Marque": "Intermarché" + "name": "Intermarché CHATEAUMEILLANT", + "brand": "Intermarché" }, "18390003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "18400001": { - "Nom": "Super U ST FLORENT SUR CHER", - "Marque": "Système U" + "name": "Super U ST FLORENT SUR CHER", + "brand": "Système U" }, "18410002": { - "Nom": "SAS SOLAUDIS", - "Marque": "Système U" + "name": "SAS SOLAUDIS", + "brand": "Système U" }, "18500001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "18500004": { - "Nom": "Intermarché MEHUN S/YEVRE", - "Marque": "Intermarché" + "name": "Intermarché MEHUN S/YEVRE", + "brand": "Intermarché" }, "18500006": { - "Nom": "AGIP BOURGES MARMAGNE A 71", - "Marque": "Agip" + "name": "AGIP BOURGES MARMAGNE A 71", + "brand": "Agip" }, "18500007": { - "Nom": "Esso Bourges Ste Thorette", - "Marque": "Esso" + "name": "Esso Bourges Ste Thorette", + "brand": "Esso" }, "18520001": { - "Nom": "Intermarché AVORD", - "Marque": "Intermarché" + "name": "Intermarché AVORD", + "brand": "Intermarché" }, "18570002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "18600001": { - "Nom": "ATAC SANCOINS", - "Marque": "Atac" + "name": "ATAC SANCOINS", + "brand": "Atac" }, "18600003": { - "Nom": "Intermarché SANCOINS", - "Marque": "Intermarché" + "name": "Intermarché SANCOINS", + "brand": "Intermarché" }, "18700001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "18700003": { - "Nom": "Intermarché AUBIGNY-SUR-NERE", - "Marque": "Intermarché" + "name": "Intermarché AUBIGNY-SUR-NERE", + "brand": "Intermarché" }, "18800001": { - "Nom": "ATAC BAUGY", - "Marque": "Atac" + "name": "ATAC BAUGY", + "brand": "Atac" }, "19000002": { - "Nom": "TULLE-DISTRIBUTION", - "Marque": "Leclerc" + "name": "TULLE-DISTRIBUTION", + "brand": "Leclerc" }, "19000003": { - "Nom": "Intermarché ROUTE NAVES", - "Marque": "Intermarché" + "name": "Intermarché ROUTE NAVES", + "brand": "Intermarché" }, "19000006": { - "Nom": "Intermarché QUAI CONTINSOUZA", - "Marque": "Intermarché" + "name": "Intermarché QUAI CONTINSOUZA", + "brand": "Intermarché" }, "19000008": { - "Nom": "RELAIS TULLE LA SOLANE", - "Marque": "Total" + "name": "RELAIS TULLE LA SOLANE", + "brand": "Total" }, "19100001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "19100009": { - "Nom": "Intermarché du PILOU", - "Marque": "Intermarché" + "name": "Intermarché du PILOU", + "brand": "Intermarché" }, "19100010": { - "Nom": "Intermarché BRIVE", - "Marque": "Intermarché" + "name": "Intermarché BRIVE", + "brand": "Intermarché" }, "19100011": { - "Nom": "NODISCO E.LECLERC", - "Marque": "Leclerc" + "name": "NODISCO E.LECLERC", + "brand": "Leclerc" }, "19100014": { - "Nom": "ESSO EXPRESS BRIVE LA GAILLARDE BRUNE", - "Marque": "Esso Express" + "name": "ESSO EXPRESS BRIVE LA GAILLARDE BRUNE", + "brand": "Esso Express" }, "19100015": { - "Nom": "ESSO EXPRESS BRIVE LA GAILLARDE BORDEAUX LYON", - "Marque": "Esso Express" + "name": "ESSO EXPRESS BRIVE LA GAILLARDE BORDEAUX LYON", + "brand": "Esso Express" }, "19100016": { - "Nom": "RELAIS BRIVE SEMARD", - "Marque": "Total Access" + "name": "RELAIS BRIVE SEMARD", + "brand": "Total Access" }, "19100017": { - "Nom": "RELAIS DE VIALMUR", - "Marque": "Total Access" + "name": "RELAIS DE VIALMUR", + "brand": "Total Access" }, "19110001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "19120001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "19130001": { - "Nom": "8 à Huit Saint-Aulaire", - "Marque": "Huit à 8" + "name": "8 à Huit Saint-Aulaire", + "brand": "Huit à 8" }, "19130002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "19130003": { - "Nom": "ESPACE AUTO SARL", - "Marque": "Total" + "name": "ESPACE AUTO SARL", + "brand": "Total" }, "19130004": { - "Nom": "Intermarché OBJAT", - "Marque": "Intermarché" + "name": "Intermarché OBJAT", + "brand": "Intermarché" }, "19140001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "19140003": { - "Nom": "Intermarché SUPER UZERCHE", - "Marque": "Intermarché" + "name": "Intermarché SUPER UZERCHE", + "brand": "Intermarché" }, "19140005": { - "Nom": "SAS LEVELOC", - "Marque": "Netto" + "name": "SAS LEVELOC", + "brand": "Netto" }, "19140006": { - "Nom": "AVIA UZERCHE", - "Marque": "Avia" + "name": "AVIA UZERCHE", + "brand": "Avia" }, "19150002": { - "Nom": "SUPER U LAGUENNE", - "Marque": "Système U" + "name": "SUPER U LAGUENNE", + "brand": "Système U" }, "19160001": { - "Nom": "Intermarché NEUVIC", - "Marque": "Intermarché Contact" + "name": "Intermarché NEUVIC", + "brand": "Intermarché Contact" }, "19170001": { - "Nom": "REGAUDIE", - "Marque": "Total" + "name": "REGAUDIE", + "brand": "Total" }, "19190001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "19190002": { - "Nom": "RELAIS STAR LE PESCHER", - "Marque": "Total" + "name": "RELAIS STAR LE PESCHER", + "brand": "Total" }, "19200002": { - "Nom": "ETS SALAGNAC ET FILS", - "Marque": "Avia" + "name": "ETS SALAGNAC ET FILS", + "brand": "Avia" }, "19200003": { - "Nom": "USSEL DISTRIBUTION", - "Marque": "Leclerc" + "name": "USSEL DISTRIBUTION", + "brand": "Leclerc" }, "19200004": { - "Nom": "CORREZE AUTO MARCHE", - "Marque": "Indépendant sans enseigne" + "name": "CORREZE AUTO MARCHE", + "brand": "Indépendant sans enseigne" }, "19200006": { - "Nom": "Chaudagne sa", - "Marque": "Total" + "name": "Chaudagne sa", + "brand": "Total" }, "19210001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "19210002": { - "Nom": "E. LECLERC", - "Marque": "Leclerc" + "name": "E. LECLERC", + "brand": "Leclerc" }, "19230001": { - "Nom": "Intermarché SAINT SORNIN LAVOLPS", - "Marque": "Intermarché" + "name": "Intermarché SAINT SORNIN LAVOLPS", + "brand": "Intermarché" }, "19240002": { - "Nom": "SARL BROCHETON DISTRI", - "Marque": "Shopi" + "name": "SARL BROCHETON DISTRI", + "brand": "Shopi" }, "19240003": { - "Nom": "Intermarché ALLASSAC", - "Marque": "Intermarché Contact" + "name": "Intermarché ALLASSAC", + "brand": "Intermarché Contact" }, "19250001": { - "Nom": "VERGNE MARCEL", - "Marque": "Total" + "name": "VERGNE MARCEL", + "brand": "Total" }, "19250003": { - "Nom": "Intermarché SUPER", - "Marque": "Intermarché Contact" + "name": "Intermarché SUPER", + "brand": "Intermarché Contact" }, "19250005": { - "Nom": "CASINO CARBURANT", - "Marque": "Casino" + "name": "CASINO CARBURANT", + "brand": "Casino" }, "19260002": { - "Nom": "Intermarché TREIGNAC", - "Marque": "Intermarché" + "name": "Intermarché TREIGNAC", + "brand": "Intermarché" }, "19270003": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché" + "name": "Intermarché Contact", + "brand": "Intermarché" }, "19300001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "19300002": { - "Nom": "Super U Coop Atlantique Egletons", - "Marque": "Système U" + "name": "Super U Coop Atlantique Egletons", + "brand": "Système U" }, "19300003": { - "Nom": "EGLETONS LACHAUD", - "Marque": "Total" + "name": "EGLETONS LACHAUD", + "brand": "Total" }, "19316001": { - "Nom": "Carrefour BRIVE LA GAILLARDE", - "Marque": "Carrefour" + "name": "Carrefour BRIVE LA GAILLARDE", + "brand": "Carrefour" }, "19330001": { - "Nom": "GARAGE LAGARDE-STATION AVIA", - "Marque": "Avia" + "name": "GARAGE LAGARDE-STATION AVIA", + "brand": "Avia" }, "19330002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "19340002": { - "Nom": "SARL COSTE Père & Fils", - "Marque": "Total" + "name": "SARL COSTE Père & Fils", + "brand": "Total" }, "19340003": { - "Nom": "AVIA CHAVANON", - "Marque": "Avia" + "name": "AVIA CHAVANON", + "brand": "Avia" }, "19350001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "19360001": { - "Nom": "GEANT BRIVE- FLOREAL YG330", - "Marque": "Géant" + "name": "GEANT BRIVE- FLOREAL YG330", + "brand": "Géant" }, "19360002": { - "Nom": "VALIBHAY ZOUEBALY", - "Marque": "Elan" + "name": "VALIBHAY ZOUEBALY", + "brand": "Elan" }, "19400004": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Super Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Super Casino" }, "19400005": { - "Nom": "Garage CONSTANT", - "Marque": "Indépendant sans enseigne" + "name": "Garage CONSTANT", + "brand": "Indépendant sans enseigne" }, "19460002": { - "Nom": "Station Total", - "Marque": "Total" + "name": "Station Total", + "brand": "Total" }, "19500002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "19510002": { - "Nom": "RELAIS PORTE DE CORREZE", - "Marque": "Total" + "name": "RELAIS PORTE DE CORREZE", + "brand": "Total" }, "19600001": { - "Nom": "Carrefour Contact USSAC", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact USSAC", + "brand": "Carrefour Contact" }, "19600002": { - "Nom": "AGIP BRIVE A 89", - "Marque": "Agip" + "name": "AGIP BRIVE A 89", + "brand": "Agip" }, "19600003": { - "Nom": "Relais de la croix blanche", - "Marque": "Total" + "name": "Relais de la croix blanche", + "brand": "Total" }, "19700001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "19800001": { - "Nom": "GARAGE VINATIER STATION Total", - "Marque": "Total" + "name": "GARAGE VINATIER STATION Total", + "brand": "Total" }, "19800002": { - "Nom": "SARL MONTAGNE", - "Marque": "Shell" + "name": "SARL MONTAGNE", + "brand": "Shell" }, "19800004": { - "Nom": "Pro-tech auto", - "Marque": "Indépendant sans enseigne" + "name": "Pro-tech auto", + "brand": "Indépendant sans enseigne" }, "20000002": { - "Nom": "LUIGI SA", - "Marque": "VITO" + "name": "LUIGI SA", + "brand": "VITO" }, "20000006": { - "Nom": "RELAIS CECCALDI - ESSO", - "Marque": "Esso" + "name": "RELAIS CECCALDI - ESSO", + "brand": "Esso" }, "20000007": { - "Nom": "SARL FABIANI STATION Total", - "Marque": "Total" + "name": "SARL FABIANI STATION Total", + "brand": "Total" }, "20090001": { - "Nom": "U STRETTU SARL", - "Marque": "VITO" + "name": "U STRETTU SARL", + "brand": "VITO" }, "20090002": { - "Nom": "SAS STATION ST JOSEPH", - "Marque": "Total" + "name": "SAS STATION ST JOSEPH", + "brand": "Total" }, "20090004": { - "Nom": "Station service la madunuccia Martinetti Mathieu", - "Marque": "VITO" + "name": "Station service la madunuccia Martinetti Mathieu", + "brand": "VITO" }, "20090007": { - "Nom": "Aspretto Carburants", - "Marque": "VITO" + "name": "Aspretto Carburants", + "brand": "VITO" }, "20090011": { - "Nom": "U-STRETTU NORD", - "Marque": "VITO" + "name": "U-STRETTU NORD", + "brand": "VITO" }, "20090014": { - "Nom": "ESSO CASTEL VECCHIO - SAS MATEYS", - "Marque": "Esso" + "name": "ESSO CASTEL VECCHIO - SAS MATEYS", + "brand": "Esso" }, "20090015": { - "Nom": "Relais Kennedy", - "Marque": "Esso" + "name": "Relais Kennedy", + "brand": "Esso" }, "20100001": { - "Nom": "M. DIGIACOMI Ange-Noël", - "Marque": "Total" + "name": "M. DIGIACOMI Ange-Noël", + "brand": "Total" }, "20100003": { - "Nom": "SARL GAST", - "Marque": "BP" + "name": "SARL GAST", + "brand": "BP" }, "20100005": { - "Nom": "SARL CANGIONI", - "Marque": "VITO" + "name": "SARL CANGIONI", + "brand": "VITO" }, "20110003": { - "Nom": "ESSO SERVICE DIGIACOMI & FILS", - "Marque": "Esso" + "name": "ESSO SERVICE DIGIACOMI & FILS", + "brand": "Esso" }, "20110005": { - "Nom": "STATION VITO SANSONE", - "Marque": "VITO" + "name": "STATION VITO SANSONE", + "brand": "VITO" }, "20111001": { - "Nom": "VITO TIUCCIA SARL SOCIDI", - "Marque": "VITO" + "name": "VITO TIUCCIA SARL SOCIDI", + "brand": "VITO" }, "20113001": { - "Nom": "M. LEONETTI André", - "Marque": "Total" + "name": "M. LEONETTI André", + "brand": "Total" }, "20113002": { - "Nom": "SARL BARACCI AUTOMOBILES", - "Marque": "Total" + "name": "SARL BARACCI AUTOMOBILES", + "brand": "Total" }, "20115001": { - "Nom": "SARL L'ARBAGIO", - "Marque": "Esso" + "name": "SARL L'ARBAGIO", + "brand": "Esso" }, "20118001": { - "Nom": "SARL RELAIS DU PONT DE SAGONE", - "Marque": "Total" + "name": "SARL RELAIS DU PONT DE SAGONE", + "brand": "Total" }, "20118005": { - "Nom": "Esso Malatesta Ludovic", - "Marque": "Esso" + "name": "Esso Malatesta Ludovic", + "brand": "Esso" }, "20129001": { - "Nom": "FOLACCI STATION SERVICE", - "Marque": "VITO" + "name": "FOLACCI STATION SERVICE", + "brand": "VITO" }, "20130002": { - "Nom": "Station Total Cargèse", - "Marque": "Total" + "name": "Station Total Cargèse", + "brand": "Total" }, "20131001": { - "Nom": "GARAGE QUILICHINI", - "Marque": "VITO" + "name": "GARAGE QUILICHINI", + "brand": "VITO" }, "20131002": { - "Nom": "EURL TOMASI Marie-Josée", - "Marque": "Total" + "name": "EURL TOMASI Marie-Josée", + "brand": "Total" }, "20137003": { - "Nom": "SARL Ets CUCCHI", - "Marque": "Total" + "name": "SARL Ets CUCCHI", + "brand": "Total" }, "20137004": { - "Nom": "RELAIS DE TRINITE ANDREANI", - "Marque": "Total" + "name": "RELAIS DE TRINITE ANDREANI", + "brand": "Total" }, "20137005": { - "Nom": "SARL RELAIS DE PALOMBAGGIA", - "Marque": "Total" + "name": "SARL RELAIS DE PALOMBAGGIA", + "brand": "Total" }, "20137006": { - "Nom": "Le relais du soleil", - "Marque": "Total" + "name": "Le relais du soleil", + "brand": "Total" }, "20137007": { - "Nom": "SARL BEL OMBRA", - "Marque": "Total" + "name": "SARL BEL OMBRA", + "brand": "Total" }, "20137008": { - "Nom": "STATION VITO ST CYPRIEN", - "Marque": "VITO" + "name": "STATION VITO ST CYPRIEN", + "brand": "VITO" }, "20137009": { - "Nom": "SARL EPB station VITO", - "Marque": "VITO" + "name": "SARL EPB station VITO", + "brand": "VITO" }, "20140001": { - "Nom": "STATION VITO SANTONI", - "Marque": "VITO" + "name": "STATION VITO SANTONI", + "brand": "VITO" }, "20144002": { - "Nom": "GROUPE BRADESI SARL", - "Marque": "VITO" + "name": "GROUPE BRADESI SARL", + "brand": "VITO" }, "20144003": { - "Nom": "STATION VITO", - "Marque": "VITO" + "name": "STATION VITO", + "brand": "VITO" }, "20145001": { - "Nom": "SARL Relais de la Côte des Nacres", - "Marque": "Total" + "name": "SARL Relais de la Côte des Nacres", + "brand": "Total" }, "20145004": { - "Nom": "relais de bavella", - "Marque": "Total" + "name": "relais de bavella", + "brand": "Total" }, "20147001": { - "Nom": "Mme bertolani evelyne", - "Marque": "Total" + "name": "Mme bertolani evelyne", + "brand": "Total" }, "20148001": { - "Nom": "ESSO SAS A NOCE", - "Marque": "Esso" + "name": "ESSO SAS A NOCE", + "brand": "Esso" }, "20150003": { - "Nom": "Station Vito LCA", - "Marque": "VITO" + "name": "Station Vito LCA", + "brand": "VITO" }, "20153002": { - "Nom": "STATION Total CASAMARTA", - "Marque": "Total" + "name": "STATION Total CASAMARTA", + "brand": "Total" }, "20156001": { - "Nom": "BARTOLI SARL", - "Marque": "VITO" + "name": "BARTOLI SARL", + "brand": "VITO" }, "20160001": { - "Nom": "FIESCHI SANDRA", - "Marque": "Esso" + "name": "FIESCHI SANDRA", + "brand": "Esso" }, "20166002": { - "Nom": "M. MELO NUNES José", - "Marque": "Total" + "name": "M. MELO NUNES José", + "brand": "Total" }, "20166004": { - "Nom": "RELAIS BENISTA CARBURANT", - "Marque": "VITO" + "name": "RELAIS BENISTA CARBURANT", + "brand": "VITO" }, "20166005": { - "Nom": "Station Vito - Veta Distribution", - "Marque": "VITO" + "name": "Station Vito - Veta Distribution", + "brand": "VITO" }, "20166006": { - "Nom": "Station Total Les Marines", - "Marque": "Total" + "name": "Station Total Les Marines", + "brand": "Total" }, "20167002": { - "Nom": "SARL PIETRI ET FILS", - "Marque": "VITO" + "name": "SARL PIETRI ET FILS", + "brand": "VITO" }, "20167003": { - "Nom": "Station service Martinetti Mathieu", - "Marque": "VITO" + "name": "Station service Martinetti Mathieu", + "brand": "VITO" }, "20167004": { - "Nom": "Station Rossi", - "Marque": "Total" + "name": "Station Rossi", + "brand": "Total" }, "20167005": { - "Nom": "Station Martinetti La Rocade", - "Marque": "VITO" + "name": "Station Martinetti La Rocade", + "brand": "VITO" }, "20167006": { - "Nom": "RELAIS ACQUALONGA ESSO", - "Marque": "ESSO" + "name": "RELAIS ACQUALONGA ESSO", + "brand": "ESSO" }, "20167008": { - "Nom": "Relais U culombu 2", - "Marque": "VITO" + "name": "Relais U culombu 2", + "brand": "VITO" }, "20167010": { - "Nom": "Relais poggioli", - "Marque": "VITO" + "name": "Relais poggioli", + "brand": "VITO" }, "20169002": { - "Nom": "Sarl Ets Botti", - "Marque": "Depuis 1959" + "name": "Sarl Ets Botti", + "brand": "Depuis 1959" }, "20169003": { - "Nom": "SASU ASJP", - "Marque": "Total" + "name": "SASU ASJP", + "brand": "Total" }, "20170001": { - "Nom": "SARL CESARI", - "Marque": "Total" + "name": "SARL CESARI", + "brand": "Total" }, "20189001": { - "Nom": "SARL PAOLETTI PRODUITS PETROLIERS", - "Marque": "Total" + "name": "SARL PAOLETTI PRODUITS PETROLIERS", + "brand": "Total" }, "20189002": { - "Nom": "AJACCIO AUTOMOBILES SA", - "Marque": "Total" + "name": "AJACCIO AUTOMOBILES SA", + "brand": "Total" }, "20200002": { - "Nom": "Station Vito Faillace", - "Marque": "VITO" + "name": "Station Vito Faillace", + "brand": "VITO" }, "20200006": { - "Nom": "ETS FERRARI", - "Marque": "Total" + "name": "ETS FERRARI", + "brand": "Total" }, "20200008": { - "Nom": "SARL MILANI CLAUDE - ESSO NOUVEAU PORT", - "Marque": "Esso" + "name": "SARL MILANI CLAUDE - ESSO NOUVEAU PORT", + "brand": "Esso" }, "20200013": { - "Nom": "CAP 200", - "Marque": "VITO" + "name": "CAP 200", + "brand": "VITO" }, "20200014": { - "Nom": "Vito - sas sacha 173", - "Marque": "VITO" + "name": "Vito - sas sacha 173", + "brand": "VITO" }, "20213003": { - "Nom": "Total FOLELLI", - "Marque": "Total" + "name": "Total FOLELLI", + "brand": "Total" }, "20213004": { - "Nom": "Station SARL AGC", - "Marque": "VITO" + "name": "Station SARL AGC", + "brand": "VITO" }, "20213005": { - "Nom": "SAS KALLISCAR", - "Marque": "VITO" + "name": "SAS KALLISCAR", + "brand": "VITO" }, "20214001": { - "Nom": "STATION ESSO CALENZANA SERVICES", - "Marque": "Esso" + "name": "STATION ESSO CALENZANA SERVICES", + "brand": "Esso" }, "20215001": { - "Nom": "AUTOMOBILES BARTHES", - "Marque": "VITO" + "name": "AUTOMOBILES BARTHES", + "brand": "VITO" }, "20217001": { - "Nom": "DOMARCHI MARC ET SEBASTIEN", - "Marque": "VITO" + "name": "DOMARCHI MARC ET SEBASTIEN", + "brand": "VITO" }, "20217004": { - "Nom": "ETS ORSINI JM", - "Marque": "VITO" + "name": "ETS ORSINI JM", + "brand": "VITO" }, "20217005": { - "Nom": "Relais Dominique", - "Marque": "VITO" + "name": "Relais Dominique", + "brand": "VITO" }, "20218001": { - "Nom": "STATION ANTONIOTTI SERGE", - "Marque": "VITO" + "name": "STATION ANTONIOTTI SERGE", + "brand": "VITO" }, "20218004": { - "Nom": "Ets SARL MARIANI et FILS", - "Marque": "VITO" + "name": "Ets SARL MARIANI et FILS", + "brand": "VITO" }, "20218006": { - "Nom": "SARL LE RELAIS DU SAN PEDRONE", - "Marque": "Esso" + "name": "SARL LE RELAIS DU SAN PEDRONE", + "brand": "Esso" }, "20218007": { - "Nom": "STATION COGNETTI-VITA", - "Marque": "Total" + "name": "STATION COGNETTI-VITA", + "brand": "Total" }, "20218008": { - "Nom": "Sarl BRULE", - "Marque": "VITO" + "name": "Sarl BRULE", + "brand": "VITO" }, "20219003": { - "Nom": "Total CASARZA", - "Marque": "Total" + "name": "Total CASARZA", + "brand": "Total" }, "20220001": { - "Nom": "SAs STATION GRAZIANI", - "Marque": "Total" + "name": "SAs STATION GRAZIANI", + "brand": "Total" }, "20220002": { - "Nom": "DYNES - RELAIS DE LA PIETRA", - "Marque": "VITO" + "name": "DYNES - RELAIS DE LA PIETRA", + "brand": "VITO" }, "20220003": { - "Nom": "SARL ESSO ILE ROUSSE", - "Marque": "Esso" + "name": "SARL ESSO ILE ROUSSE", + "brand": "Esso" }, "20220004": { - "Nom": "DYNES - RELAIS PASQUALE PAOLI", - "Marque": "VITO" + "name": "DYNES - RELAIS PASQUALE PAOLI", + "brand": "VITO" }, "20220006": { - "Nom": "STATION Total ALGAJOLA", - "Marque": "Total" + "name": "STATION Total ALGAJOLA", + "brand": "Total" }, "20221001": { - "Nom": "ROSSI PRUNETE", - "Marque": "VITO" + "name": "ROSSI PRUNETE", + "brand": "VITO" }, "20222001": { - "Nom": "SARL BRANDO SERVICE", - "Marque": "Esso" + "name": "SARL BRANDO SERVICE", + "brand": "Esso" }, "20224001": { - "Nom": "SARL ACQUAVIVA", - "Marque": "Total" + "name": "SARL ACQUAVIVA", + "brand": "Total" }, "20228002": { - "Nom": "STATION VITO", - "Marque": "VITO" + "name": "STATION VITO", + "brand": "VITO" }, "20230002": { - "Nom": "SARL OLMICCIA SAVOIE", - "Marque": "Total" + "name": "SARL OLMICCIA SAVOIE", + "brand": "Total" }, "20230003": { - "Nom": "SARL RELAIS DE TAVAGNA", - "Marque": "VITO" + "name": "SARL RELAIS DE TAVAGNA", + "brand": "VITO" }, "20230006": { - "Nom": "Total Moriani", - "Marque": "Total" + "name": "Total Moriani", + "brand": "Total" }, "20230008": { - "Nom": "Station du Phare", - "Marque": "VITO" + "name": "Station du Phare", + "brand": "VITO" }, "20230009": { - "Nom": "RELAIS DE PADULELLA", - "Marque": "Esso" + "name": "RELAIS DE PADULELLA", + "brand": "Esso" }, "20235001": { - "Nom": "SARL GATT ET FILS", - "Marque": "Total" + "name": "SARL GATT ET FILS", + "brand": "Total" }, "20240001": { - "Nom": "SODIPP SARL VITO", - "Marque": "VITO" + "name": "SODIPP SARL VITO", + "brand": "VITO" }, "20240002": { - "Nom": "SAS MARTINEZ", - "Marque": "Total" + "name": "SAS MARTINEZ", + "brand": "Total" }, "20240003": { - "Nom": "M. CORSINI Jacques", - "Marque": "Total" + "name": "M. CORSINI Jacques", + "brand": "Total" }, "20240004": { - "Nom": "ESSO SERVICES BENASSI", - "Marque": "Esso" + "name": "ESSO SERVICES BENASSI", + "brand": "Esso" }, "20240005": { - "Nom": "Vito", - "Marque": "VITO" + "name": "Vito", + "brand": "VITO" }, "20243001": { - "Nom": "SARL RELAIS AUTO DU FIUMORBO", - "Marque": "Total" + "name": "SARL RELAIS AUTO DU FIUMORBO", + "brand": "Total" }, "20245001": { - "Nom": "SASU FANGU", - "Marque": "VITO" + "name": "SASU FANGU", + "brand": "VITO" }, "20245002": { - "Nom": "GALERIA SERVICES", - "Marque": "ENERGIASUPRANA" + "name": "GALERIA SERVICES", + "brand": "ENERGIASUPRANA" }, "20250001": { - "Nom": "STATION VITO CORTE", - "Marque": "VITO" + "name": "STATION VITO CORTE", + "brand": "VITO" }, "20250002": { - "Nom": "SARL DE L ORTA", - "Marque": "Total" + "name": "SARL DE L ORTA", + "brand": "Total" }, "20250003": { - "Nom": "STATION VITO RELAIS DE SANTA MARIA", - "Marque": "VITO" + "name": "STATION VITO RELAIS DE SANTA MARIA", + "brand": "VITO" }, "20250006": { - "Nom": "SARL PADC", - "Marque": "VITO CORSE" + "name": "SARL PADC", + "brand": "VITO CORSE" }, "20250007": { - "Nom": "CASANOVA DISTRIBUTION SAS", - "Marque": "Esso" + "name": "CASANOVA DISTRIBUTION SAS", + "brand": "Esso" }, "20260001": { - "Nom": "Sasu AUTO EXPRESS CORSE", - "Marque": "VITO" + "name": "Sasu AUTO EXPRESS CORSE", + "brand": "VITO" }, "20260002": { - "Nom": "SARL d'Exploitation du Relais de BALAGNE", - "Marque": "Total" + "name": "SARL d'Exploitation du Relais de BALAGNE", + "brand": "Total" }, "20260003": { - "Nom": "M. ACQUAVIVA Jean-Pascal", - "Marque": "VITO" + "name": "M. ACQUAVIVA Jean-Pascal", + "brand": "VITO" }, "20260005": { - "Nom": "Eurl SEFICAR-Station VITO ASTOLFI", - "Marque": "VITO" + "name": "Eurl SEFICAR-Station VITO ASTOLFI", + "brand": "VITO" }, "20270001": { - "Nom": "STATION SERVICE", - "Marque": "VITO" + "name": "STATION SERVICE", + "brand": "VITO" }, "20270003": { - "Nom": "ESSO RELAIS DE LA PLAINE", - "Marque": "Esso" + "name": "ESSO RELAIS DE LA PLAINE", + "brand": "Esso" }, "20290002": { - "Nom": "SARL MARCELLI", - "Marque": "Total" + "name": "SARL MARCELLI", + "brand": "Total" }, "20290003": { - "Nom": "SARL RELAIS DE BORGO", - "Marque": "Total" + "name": "SARL RELAIS DE BORGO", + "brand": "Total" }, "20290008": { - "Nom": "Jessica MARCELLI", - "Marque": "VITO" + "name": "Jessica MARCELLI", + "brand": "VITO" }, "20290009": { - "Nom": "Sarl agc", - "Marque": "VITO" + "name": "Sarl agc", + "brand": "VITO" }, "20538001": { - "Nom": "Station VITO BALESI AUTOMOBILES", - "Marque": "VITO" + "name": "Station VITO BALESI AUTOMOBILES", + "brand": "VITO" }, "20600002": { - "Nom": "U NIOLU SARL", - "Marque": "VITO" + "name": "U NIOLU SARL", + "brand": "VITO" }, "20600003": { - "Nom": "ETS MARCEL FERRARI", - "Marque": "Total" + "name": "ETS MARCEL FERRARI", + "brand": "Total" }, "20600004": { - "Nom": "SARL CIAVALDINI STRABONI", - "Marque": "Total" + "name": "SARL CIAVALDINI STRABONI", + "brand": "Total" }, "20600005": { - "Nom": "M. BARTOLI Camille", - "Marque": "VITO" + "name": "M. BARTOLI Camille", + "brand": "VITO" }, "20600006": { - "Nom": "SARL BRUNINI ET FILS", - "Marque": "Total" + "name": "SARL BRUNINI ET FILS", + "brand": "Total" }, "20600007": { - "Nom": "SAS FERRANDI FILS", - "Marque": "Esso" + "name": "SAS FERRANDI FILS", + "brand": "Esso" }, "20600009": { - "Nom": "STATION DU PRADO", - "Marque": "Esso" + "name": "STATION DU PRADO", + "brand": "Esso" }, "20600010": { - "Nom": "STATION LA ROCADE", - "Marque": "VITO" + "name": "STATION LA ROCADE", + "brand": "VITO" }, "20600011": { - "Nom": "SARL CAMPOMETA", - "Marque": "VITO" + "name": "SARL CAMPOMETA", + "brand": "VITO" }, "20620002": { - "Nom": "STATION D'ORTALE N°4 ( ESSO)", - "Marque": "ESSO" + "name": "STATION D'ORTALE N°4 ( ESSO)", + "brand": "ESSO" }, "20620004": { - "Nom": "SARL Relais de Biguglia", - "Marque": "Esso" + "name": "SARL Relais de Biguglia", + "brand": "Esso" }, "20620005": { - "Nom": "SASU BENAZZI", - "Marque": "VITO" + "name": "SASU BENAZZI", + "brand": "VITO" }, "21000001": { - "Nom": "Carrefour DIJON TOISON D OR", - "Marque": "Carrefour" + "name": "Carrefour DIJON TOISON D OR", + "brand": "Carrefour" }, "21000006": { - "Nom": "MS SOULIER", - "Marque": "Avia" + "name": "MS SOULIER", + "brand": "Avia" }, "21000009": { - "Nom": "ESSO DIJON LANGRES", - "Marque": "Esso Express" + "name": "ESSO DIJON LANGRES", + "brand": "Esso Express" }, "21000010": { - "Nom": "ESSO SCHUMANN", - "Marque": "Esso Express" + "name": "ESSO SCHUMANN", + "brand": "Esso Express" }, "21000011": { - "Nom": "ESSO BOURROCHES", - "Marque": "Esso Express" + "name": "ESSO BOURROCHES", + "brand": "Esso Express" }, "21000012": { - "Nom": "Centre APOLIDIS", - "Marque": "Leclerc" + "name": "Centre APOLIDIS", + "brand": "Leclerc" }, "21000013": { - "Nom": "PIRETTI Total", - "Marque": "Total" + "name": "PIRETTI Total", + "brand": "Total" }, "21000017": { - "Nom": "RELAIS DU MONT BLANC", - "Marque": "Avia" + "name": "RELAIS DU MONT BLANC", + "brand": "Avia" }, "21000022": { - "Nom": "AVIA XPRESS EPIREY", - "Marque": "Avia" + "name": "AVIA XPRESS EPIREY", + "brand": "Avia" }, "21000023": { - "Nom": "SAS TOLIMA", - "Marque": "Intermarché" + "name": "SAS TOLIMA", + "brand": "Intermarché" }, "21000025": { - "Nom": "RELAIS DE LA ROCADE", - "Marque": "Total" + "name": "RELAIS DE LA ROCADE", + "brand": "Total" }, "21000026": { - "Nom": "RELAIS CHARTREUX", - "Marque": "Total" + "name": "RELAIS CHARTREUX", + "brand": "Total" }, "21000027": { - "Nom": "RELAIS ROUTE BLANCHE", - "Marque": "Total" + "name": "RELAIS ROUTE BLANCHE", + "brand": "Total" }, "21000029": { - "Nom": "Total diables bleus", - "Marque": "Total" + "name": "Total diables bleus", + "brand": "Total" }, "21100001": { - "Nom": "STATION DATS", - "Marque": "Colruyt" + "name": "STATION DATS", + "brand": "Colruyt" }, "21110001": { - "Nom": "ATAC AISEREY", - "Marque": "Atac" + "name": "ATAC AISEREY", + "brand": "Atac" }, "21110002": { - "Nom": "RENAULT GENLIS SA", - "Marque": "Total" + "name": "RENAULT GENLIS SA", + "brand": "Total" }, "21110003": { - "Nom": "ESSO DU CHATEAU", - "Marque": "Esso Express" + "name": "ESSO DU CHATEAU", + "brand": "Esso Express" }, "21110005": { - "Nom": "Intermarché GENLIS", - "Marque": "Intermarché" + "name": "Intermarché GENLIS", + "brand": "Intermarché" }, "21120001": { - "Nom": "AVIA IS SUR TILLE", - "Marque": "Avia" + "name": "AVIA IS SUR TILLE", + "brand": "Avia" }, "21120002": { - "Nom": "AGIP TILCHATEL RN 74", - "Marque": "Agip" + "name": "AGIP TILCHATEL RN 74", + "brand": "Agip" }, "21120003": { - "Nom": "SARL RONDOT", - "Marque": "Indépendant sans enseigne" + "name": "SARL RONDOT", + "brand": "Indépendant sans enseigne" }, "21120004": { - "Nom": "RELAIS LE VILLAGE", - "Marque": "Avia" + "name": "RELAIS LE VILLAGE", + "brand": "Avia" }, "21120005": { - "Nom": "SAS SOFRALDI", - "Marque": "Intermarché" + "name": "SAS SOFRALDI", + "brand": "Intermarché" }, "21121001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "21121003": { - "Nom": "Intermarché FONTAINE LES DIJON", - "Marque": "Intermarché" + "name": "Intermarché FONTAINE LES DIJON", + "brand": "Intermarché" }, "21121007": { - "Nom": "RELAIS ALLOBROGES", - "Marque": "Total Access" + "name": "RELAIS ALLOBROGES", + "brand": "Total Access" }, "21130003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "21130004": { - "Nom": "Intermarché AUXONNE", - "Marque": "Intermarché" + "name": "Intermarché AUXONNE", + "brand": "Intermarché" }, "21130005": { - "Nom": "BP A39 AIRE DE PONT SUD CHENE D'ARGENT", - "Marque": "BP" + "name": "BP A39 AIRE DE PONT SUD CHENE D'ARGENT", + "brand": "BP" }, "21130006": { - "Nom": "BP A39 AIRE DE PONT VAL DE SAONE", - "Marque": "BP" + "name": "BP A39 AIRE DE PONT VAL DE SAONE", + "brand": "BP" }, "21130008": { - "Nom": "E.LECLERC AUXODIS", - "Marque": "Leclerc" + "name": "E.LECLERC AUXODIS", + "brand": "Leclerc" }, "21140001": { - "Nom": "AUCHAN SEMUR EN AUXOIS", - "Marque": "Auchan" + "name": "AUCHAN SEMUR EN AUXOIS", + "brand": "Auchan" }, "21140002": { - "Nom": "SEMUR AUTO SERVICES", - "Marque": "Elan" + "name": "SEMUR AUTO SERVICES", + "brand": "Elan" }, "21140003": { - "Nom": "Intermarché SEMUR EN AUXOIS", - "Marque": "Intermarché" + "name": "Intermarché SEMUR EN AUXOIS", + "brand": "Intermarché" }, "21150001": { - "Nom": "ATAC VENAREY LES LAUMES", - "Marque": "Atac" + "name": "ATAC VENAREY LES LAUMES", + "brand": "Atac" }, "21150002": { - "Nom": "Venardis sas", - "Marque": "Système U" + "name": "Venardis sas", + "brand": "Système U" }, "21160001": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "21160004": { - "Nom": "RELAIS DE LA COTE", - "Marque": "Total" + "name": "RELAIS DE LA COTE", + "brand": "Total" }, "21160005": { - "Nom": "SAS SODIMARS", - "Marque": "Leclerc" + "name": "SAS SODIMARS", + "brand": "Leclerc" }, "21170001": { - "Nom": "Intermarché SAINT USAGE", - "Marque": "Intermarché" + "name": "Intermarché SAINT USAGE", + "brand": "Intermarché" }, "21190002": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "21190006": { - "Nom": "RELAIS DE BEAUNE TAILLY", - "Marque": "Total" + "name": "RELAIS DE BEAUNE TAILLY", + "brand": "Total" }, "21190007": { - "Nom": "RELAIS DE MERCEUIL", - "Marque": "Total" + "name": "RELAIS DE MERCEUIL", + "brand": "Total" }, "21200001": { - "Nom": "Carrefour BEAUNE", - "Marque": "Carrefour" + "name": "Carrefour BEAUNE", + "brand": "Carrefour" }, "21200003": { - "Nom": "ESSO BEAUNE SUD", - "Marque": "Esso Express" + "name": "ESSO BEAUNE SUD", + "brand": "Esso Express" }, "21200004": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "21200005": { - "Nom": "DISTRIBEAUNE", - "Marque": "Leclerc" + "name": "DISTRIBEAUNE", + "brand": "Leclerc" }, "21200006": { - "Nom": "Intermarché BEAUNE", - "Marque": "Intermarché" + "name": "Intermarché BEAUNE", + "brand": "Intermarché" }, "21200007": { - "Nom": "BP BEAUNE SAINT-JACQUES", - "Marque": "BP" + "name": "BP BEAUNE SAINT-JACQUES", + "brand": "BP" }, "21204001": { - "Nom": "BEAUNE AUTOMOBILES SA", - "Marque": "Total" + "name": "BEAUNE AUTOMOBILES SA", + "brand": "Total" }, "21210001": { - "Nom": "Bi1 SAULIEU", - "Marque": "Atac" + "name": "Bi1 SAULIEU", + "brand": "Atac" }, "21210003": { - "Nom": "GARAGE MODERNE SARL", - "Marque": "Total" + "name": "GARAGE MODERNE SARL", + "brand": "Total" }, "21220002": { - "Nom": "ESSO GEVREY OUEST", - "Marque": "Esso" + "name": "ESSO GEVREY OUEST", + "brand": "Esso" }, "21220003": { - "Nom": "SUPER U GEVREY/BROCHON", - "Marque": "Système U" + "name": "SUPER U GEVREY/BROCHON", + "brand": "Système U" }, "21220004": { - "Nom": "ESSO GEVREY EST", - "Marque": "Esso" + "name": "ESSO GEVREY EST", + "brand": "Esso" }, "21230004": { - "Nom": "STATION DU PARC", - "Marque": "Agip" + "name": "STATION DU PARC", + "brand": "Agip" }, "21230005": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "21230006": { - "Nom": "Bi1", - "Marque": "BI1" + "name": "Bi1", + "brand": "BI1" }, "21240003": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "21240004": { - "Nom": "RELAIS LOGIS BOURGOGNE", - "Marque": "Total Access" + "name": "RELAIS LOGIS BOURGOGNE", + "brand": "Total Access" }, "21250001": { - "Nom": "Bi1 SEURRE", - "Marque": "Atac" + "name": "Bi1 SEURRE", + "brand": "Atac" }, "21250002": { - "Nom": "LE RELAIS DE LA SAONE", - "Marque": "Total" + "name": "LE RELAIS DE LA SAONE", + "brand": "Total" }, "21250005": { - "Nom": "SARL BRYSSE", - "Marque": "Avia" + "name": "SARL BRYSSE", + "brand": "Avia" }, "21250006": { - "Nom": "Intermarché SEURRE", - "Marque": "Intermarché" + "name": "Intermarché SEURRE", + "brand": "Intermarché" }, "21250009": { - "Nom": "SARL BRYSSE", - "Marque": "Avia" + "name": "SARL BRYSSE", + "brand": "Avia" }, "21260001": { - "Nom": "ATAC SELONGEY", - "Marque": "Atac" + "name": "ATAC SELONGEY", + "brand": "Atac" }, "21270001": { - "Nom": "ATAC PONTAILLER SUR SAONE", - "Marque": "Atac" + "name": "ATAC PONTAILLER SUR SAONE", + "brand": "Atac" }, "21300001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "21300004": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "21300007": { - "Nom": "RELAIS CHENOVE EST", - "Marque": "Total Access" + "name": "RELAIS CHENOVE EST", + "brand": "Total Access" }, "21310004": { - "Nom": "SAS AUBERIME", - "Marque": "Intermarché" + "name": "SAS AUBERIME", + "brand": "Intermarché" }, "21310005": { - "Nom": "Carrefour Contact Mirebeau", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact Mirebeau", + "brand": "Carrefour Contact" }, "21320001": { - "Nom": "sarl station TRUCHOT", - "Marque": "Système U" + "name": "sarl station TRUCHOT", + "brand": "Système U" }, "21320004": { - "Nom": "EURL REIMDYS", - "Marque": "Carrefour Contact" + "name": "EURL REIMDYS", + "brand": "Carrefour Contact" }, "21320005": { - "Nom": "CHIEN BLANC", - "Marque": "Avia" + "name": "CHIEN BLANC", + "brand": "Avia" }, "21320006": { - "Nom": "POUILLY AUTOMOBILE", - "Marque": "Avia" + "name": "POUILLY AUTOMOBILE", + "brand": "Avia" }, "21320007": { - "Nom": "AGIP AIRE DES LOCHERES A6 SUD NORD", - "Marque": "Agip" + "name": "AGIP AIRE DES LOCHERES A6 SUD NORD", + "brand": "Agip" }, "21330001": { - "Nom": "RELAIS DES VIGNOTTES", - "Marque": "Avia" + "name": "RELAIS DES VIGNOTTES", + "brand": "Avia" }, "21340001": { - "Nom": "ATAC NOLAY", - "Marque": "Atac" + "name": "ATAC NOLAY", + "brand": "Atac" }, "21340002": { - "Nom": "GARAGE FOURRIER", - "Marque": "Total" + "name": "GARAGE FOURRIER", + "brand": "Total" }, "21350001": { - "Nom": "ATAC VITTEAUX", - "Marque": "Atac" + "name": "ATAC VITTEAUX", + "brand": "Atac" }, "21360001": { - "Nom": "MAXIMARCHE BLIGNY SUR OUCHE", - "Marque": "Maximarché" + "name": "MAXIMARCHE BLIGNY SUR OUCHE", + "brand": "Maximarché" }, "21360003": { - "Nom": "ESSO BLIGNY LA FORET", - "Marque": "Esso" + "name": "ESSO BLIGNY LA FORET", + "brand": "Esso" }, "21360004": { - "Nom": "AVIA Creux Moreau", - "Marque": "Avia" + "name": "AVIA Creux Moreau", + "brand": "Avia" }, "21370001": { - "Nom": "008 DATS Velars sur Ouche", - "Marque": "Colruyt" + "name": "008 DATS Velars sur Ouche", + "brand": "Colruyt" }, "21390001": { - "Nom": "MAXIMARCHE PRECY SOUS THIL", - "Marque": "Maximarché" + "name": "MAXIMARCHE PRECY SOUS THIL", + "brand": "Maximarché" }, "21400001": { - "Nom": "AUCHAN CHATILLON Schiever Carburant", - "Marque": "Auchan" + "name": "AUCHAN CHATILLON Schiever Carburant", + "brand": "Auchan" }, "21400002": { - "Nom": "SARL COLLARD", - "Marque": "Total" + "name": "SARL COLLARD", + "brand": "Total" }, "21400003": { - "Nom": "MM MUTEZ", - "Marque": "Avia" + "name": "MM MUTEZ", + "brand": "Avia" }, "21400005": { - "Nom": "Intermarché CHATILLON SUR SEINE", - "Marque": "Intermarché" + "name": "Intermarché CHATILLON SUR SEINE", + "brand": "Intermarché" }, "21410001": { - "Nom": "SAS ANJUEL", - "Marque": "Intermarché Contact" + "name": "SAS ANJUEL", + "brand": "Intermarché Contact" }, "21430003": { - "Nom": "ROUSSEAU CARBURANT", - "Marque": "Indépendant sans enseigne" + "name": "ROUSSEAU CARBURANT", + "brand": "Indépendant sans enseigne" }, "21460002": { - "Nom": "MAXIMARCHE TOUTRY", - "Marque": "Maximarché" + "name": "MAXIMARCHE TOUTRY", + "brand": "Maximarché" }, "21460003": { - "Nom": "Maximarché Epoisses", - "Marque": "Maximarché" + "name": "Maximarché Epoisses", + "brand": "Maximarché" }, "21490003": { - "Nom": "RELAIS DE DIJON BROGNON", - "Marque": "Total" + "name": "RELAIS DE DIJON BROGNON", + "brand": "Total" }, "21490004": { - "Nom": "sarl julidis", - "Marque": "Carrefour Contact" + "name": "sarl julidis", + "brand": "Carrefour Contact" }, "21500002": { - "Nom": "SARL MONNET CH.", - "Marque": "Total" + "name": "SARL MONNET CH.", + "brand": "Total" }, "21500003": { - "Nom": "STATION SERVICE DE L'OLIVIER", - "Marque": "Total" + "name": "STATION SERVICE DE L'OLIVIER", + "brand": "Total" }, "21500004": { - "Nom": "NETTO MONTBARD", - "Marque": "Netto" + "name": "NETTO MONTBARD", + "brand": "Netto" }, "21500005": { - "Nom": "Intermarché LA COTE", - "Marque": "Intermarché" + "name": "Intermarché LA COTE", + "brand": "Intermarché" }, "21510001": { - "Nom": "Sarl Garage CHEVALLIER", - "Marque": "Avia" + "name": "Sarl Garage CHEVALLIER", + "brand": "Avia" }, "21530002": { - "Nom": "perreau carburants", - "Marque": "Indépendant sans enseigne" + "name": "perreau carburants", + "brand": "Indépendant sans enseigne" }, "21540001": { - "Nom": "SAS TRISON - Super U", - "Marque": "Système U" + "name": "SAS TRISON - Super U", + "brand": "Système U" }, "21540002": { - "Nom": "NETTO", - "Marque": "Netto" + "name": "NETTO", + "brand": "Netto" }, "21560001": { - "Nom": "SAS ARCDIS", - "Marque": "Système U" + "name": "SAS ARCDIS", + "brand": "Système U" }, "21600006": { - "Nom": "Relais de Longvic", - "Marque": "Total" + "name": "Relais de Longvic", + "brand": "Total" }, "21600007": { - "Nom": "AVIA LONGVIC", - "Marque": "Avia" + "name": "AVIA LONGVIC", + "brand": "Avia" }, "21640001": { - "Nom": "MR KUBIEZ", - "Marque": "Total" + "name": "MR KUBIEZ", + "brand": "Total" }, "21700001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "21700004": { - "Nom": "Intermarché NUITS ST GEORGES", - "Marque": "Intermarché" + "name": "Intermarché NUITS ST GEORGES", + "brand": "Intermarché" }, "21700005": { - "Nom": "Relais du poirier au Loup", - "Marque": "Avia" + "name": "Relais du poirier au Loup", + "brand": "Avia" }, "21700006": { - "Nom": "014 DATS NUITS", - "Marque": "Colruyt" + "name": "014 DATS NUITS", + "brand": "Colruyt" }, "21800001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "21800002": { - "Nom": "Carrefour QUETIGNY", - "Marque": "Carrefour" + "name": "Carrefour QUETIGNY", + "brand": "Carrefour" }, "21800007": { - "Nom": "SAS SENNECEYDIS Super U", - "Marque": "Système U" + "name": "SAS SENNECEYDIS Super U", + "brand": "Système U" }, "21800008": { - "Nom": "DATS CHEVIGNY ST SAUVEUR", - "Marque": "Colruyt" + "name": "DATS CHEVIGNY ST SAUVEUR", + "brand": "Colruyt" }, "21800009": { - "Nom": "RELAIS QUETIGNY", - "Marque": "Total Access" + "name": "RELAIS QUETIGNY", + "brand": "Total Access" }, "21850002": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "21910001": { - "Nom": "SCHIEVER CARBURANTS", - "Marque": "Atac" + "name": "SCHIEVER CARBURANTS", + "brand": "Atac" }, "22000001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "22000002": { - "Nom": "U EXPRESS CESSON ST BRIEUC", - "Marque": "Système U" + "name": "U EXPRESS CESSON ST BRIEUC", + "brand": "Système U" }, "22000003": { - "Nom": "SARL RONDEL", - "Marque": "Total" + "name": "SARL RONDEL", + "brand": "Total" }, "22000010": { - "Nom": "RELAIS SAINT-BRIEUC CHARNER", - "Marque": "Total" + "name": "RELAIS SAINT-BRIEUC CHARNER", + "brand": "Total" }, "22000011": { - "Nom": "RELAIS APOLLINAIRE", - "Marque": "Total Access" + "name": "RELAIS APOLLINAIRE", + "brand": "Total Access" }, "22100001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "22100004": { - "Nom": "Intermarché TADEN", - "Marque": "Intermarché" + "name": "Intermarché TADEN", + "brand": "Intermarché" }, "22100005": { - "Nom": "STATION VITO GINAL SERVICE", - "Marque": "VITO" + "name": "STATION VITO GINAL SERVICE", + "brand": "VITO" }, "22100006": { - "Nom": "Intermarché LANVALLAY", - "Marque": "Intermarché" + "name": "Intermarché LANVALLAY", + "brand": "Intermarché" }, "22100007": { - "Nom": "Super U LANVALLAY", - "Marque": "Système U" + "name": "Super U LANVALLAY", + "brand": "Système U" }, "22100008": { - "Nom": "ESSO service Duguesclin", - "Marque": "ESSO" + "name": "ESSO service Duguesclin", + "brand": "ESSO" }, "22100009": { - "Nom": "RELAIS DE DINAN", - "Marque": "Total" + "name": "RELAIS DE DINAN", + "brand": "Total" }, "22104001": { - "Nom": "DINANDIS", - "Marque": "Leclerc" + "name": "DINANDIS", + "brand": "Leclerc" }, "22110002": { - "Nom": "LAIRODIS", - "Marque": "Leclerc" + "name": "LAIRODIS", + "brand": "Leclerc" }, "22110003": { - "Nom": "Intermarché ROSTRENEN", - "Marque": "Intermarché" + "name": "Intermarché ROSTRENEN", + "brand": "Intermarché" }, "22120001": { - "Nom": "Hyper U YFFINIAC", - "Marque": "Système U" + "name": "Hyper U YFFINIAC", + "brand": "Système U" }, "22120002": { - "Nom": "SARL JERNAD22", - "Marque": "Avia" + "name": "SARL JERNAD22", + "brand": "Avia" }, "22120003": { - "Nom": "STATION DE LA BAIE / BOLLORE ENERGY", - "Marque": "Indépendant sans enseigne" + "name": "STATION DE LA BAIE / BOLLORE ENERGY", + "brand": "Indépendant sans enseigne" }, "22120005": { - "Nom": "INTERMARCHÉ QUESSOY", - "Marque": "Intermarché" + "name": "INTERMARCHÉ QUESSOY", + "brand": "Intermarché" }, "22130001": { - "Nom": "Hyper U PLANCOET", - "Marque": "Système U" + "name": "Hyper U PLANCOET", + "brand": "Système U" }, "22130002": { - "Nom": "S.A.S. PLUDIS", - "Marque": "Leclerc" + "name": "S.A.S. PLUDIS", + "brand": "Leclerc" }, "22140001": { - "Nom": "MR MENAIS ALAIN", - "Marque": "Total" + "name": "MR MENAIS ALAIN", + "brand": "Total" }, "22140002": { - "Nom": "Intermarché BEGARD", - "Marque": "Intermarché" + "name": "Intermarché BEGARD", + "brand": "Intermarché" }, "22150004": { - "Nom": "Intermarché PLOUGUENAST", - "Marque": "Intermarché Contact" + "name": "Intermarché PLOUGUENAST", + "brand": "Intermarché Contact" }, "22150005": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "22160001": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Super Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Super Casino" }, "22160003": { - "Nom": "Intermarché SA JOUBEL", - "Marque": "Intermarché" + "name": "Intermarché SA JOUBEL", + "brand": "Intermarché" }, "22170003": { - "Nom": "CarrefourMARKET", - "Marque": "Carrefour Market" + "name": "CarrefourMARKET", + "brand": "Carrefour Market" }, "22170004": { - "Nom": "RELAIS PLERNEUF LE GOELO", - "Marque": "Total Access" + "name": "RELAIS PLERNEUF LE GOELO", + "brand": "Total Access" }, "22190001": { - "Nom": "E.LECLERC PLERIN", - "Marque": "Leclerc" + "name": "E.LECLERC PLERIN", + "brand": "Leclerc" }, "22200003": { - "Nom": "Carrefour PAYS DE GUINGAMP", - "Marque": "Carrefour" + "name": "Carrefour PAYS DE GUINGAMP", + "brand": "Carrefour" }, "22200004": { - "Nom": "Intermarché GUINGAMP-ST AGATHON", - "Marque": "Intermarché" + "name": "Intermarché GUINGAMP-ST AGATHON", + "brand": "Intermarché" }, "22200005": { - "Nom": "Guingamp services sarl", - "Marque": "Avia" + "name": "Guingamp services sarl", + "brand": "Avia" }, "22200006": { - "Nom": "RELAIS PLOUMAGOAR", - "Marque": "Total Access" + "name": "RELAIS PLOUMAGOAR", + "brand": "Total Access" }, "22203001": { - "Nom": "GUINGAMP-DISTRIBUTION", - "Marque": "Leclerc" + "name": "GUINGAMP-DISTRIBUTION", + "brand": "Leclerc" }, "22210001": { - "Nom": "Super U PLEMET", - "Marque": "Système U" + "name": "Super U PLEMET", + "brand": "Système U" }, "22220001": { - "Nom": "Super U TREGUIER", - "Marque": "Système U" + "name": "Super U TREGUIER", + "brand": "Système U" }, "22220003": { - "Nom": "Intermarché MINIHY-TREGUIER", - "Marque": "Intermarché" + "name": "Intermarché MINIHY-TREGUIER", + "brand": "Intermarché" }, "22230001": { - "Nom": "MR SOHIER MICHEL", - "Marque": "Total" + "name": "MR SOHIER MICHEL", + "brand": "Total" }, "22230003": { - "Nom": "Super U MERDRIGNAC", - "Marque": "Système U" + "name": "Super U MERDRIGNAC", + "brand": "Système U" }, "22240001": { - "Nom": "SARL DUPRETZ", - "Marque": "Total" + "name": "SARL DUPRETZ", + "brand": "Total" }, "22250001": { - "Nom": "SUPER U BROONS", - "Marque": "Système U" + "name": "SUPER U BROONS", + "brand": "Système U" }, "22250002": { - "Nom": "Intermarché SUPER", - "Marque": "Intermarché" + "name": "Intermarché SUPER", + "brand": "Intermarché" }, "22260001": { - "Nom": "Intermarché PONTRIEUX", - "Marque": "Intermarché" + "name": "Intermarché PONTRIEUX", + "brand": "Intermarché" }, "22270001": { - "Nom": "Carrefour EXPRESS Jugon-les-Lacs", - "Marque": "Carrefour Express" + "name": "Carrefour EXPRESS Jugon-les-Lacs", + "brand": "Carrefour Express" }, "22290001": { - "Nom": "Super U LANVOLLON", - "Marque": "Système U" + "name": "Super U LANVOLLON", + "brand": "Système U" }, "22290002": { - "Nom": "SARL GARAGE DE LA TRINITE", - "Marque": "Total" + "name": "SARL GARAGE DE LA TRINITE", + "brand": "Total" }, "22290003": { - "Nom": "GOELO SERVICES", - "Marque": "Indépendant sans enseigne" + "name": "GOELO SERVICES", + "brand": "Indépendant sans enseigne" }, "22300001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "22300002": { - "Nom": "PERLANDIS 2", - "Marque": "Leclerc" + "name": "PERLANDIS 2", + "brand": "Leclerc" }, "22300003": { - "Nom": "PERLANDIS", - "Marque": "Leclerc" + "name": "PERLANDIS", + "brand": "Leclerc" }, "22300004": { - "Nom": "Intermarché LANNION St MARC", - "Marque": "Intermarché" + "name": "Intermarché LANNION St MARC", + "brand": "Intermarché" }, "22300005": { - "Nom": "Intermarché LANNION PLOULEC'H", - "Marque": "Intermarché" + "name": "Intermarché LANNION PLOULEC'H", + "brand": "Intermarché" }, "22300006": { - "Nom": "Intermarché PLOUBEZRE", - "Marque": "Intermarché" + "name": "Intermarché PLOUBEZRE", + "brand": "Intermarché" }, "22300007": { - "Nom": "Intermarché Contact LANNION", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact LANNION", + "brand": "Intermarché Contact" }, "22302001": { - "Nom": "Total Access", - "Marque": "Total Access" + "name": "Total Access", + "brand": "Total Access" }, "22310001": { - "Nom": "Super U PLESTIN LES GREVES", - "Marque": "Système U" + "name": "Super U PLESTIN LES GREVES", + "brand": "Système U" }, "22320001": { - "Nom": "Carrefour EXPRESS", - "Marque": "Carrefour Express" + "name": "Carrefour EXPRESS", + "brand": "Carrefour Express" }, "22350004": { - "Nom": "Intermarché CAULNES", - "Marque": "Intermarché" + "name": "Intermarché CAULNES", + "brand": "Intermarché" }, "22350006": { - "Nom": "ESSO", - "Marque": "Esso" + "name": "ESSO", + "brand": "Esso" }, "22360001": { - "Nom": "Carrefour SAINT BRIEUC-LANGUEUX", - "Marque": "Carrefour" + "name": "Carrefour SAINT BRIEUC-LANGUEUX", + "brand": "Carrefour" }, "22370001": { - "Nom": "E.LECLERC PLENEUF VAL ANDRE", - "Marque": "Leclerc" + "name": "E.LECLERC PLENEUF VAL ANDRE", + "brand": "Leclerc" }, "22380002": { - "Nom": "U EXPRESS SAINT CAST LE GUILDO", - "Marque": "Système U" + "name": "U EXPRESS SAINT CAST LE GUILDO", + "brand": "Système U" }, "22390001": { - "Nom": "SHOPI", - "Marque": "Shopi" + "name": "SHOPI", + "brand": "Shopi" }, "22400001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "22400004": { - "Nom": "SAS TREGORDIS", - "Marque": "Leclerc" + "name": "SAS TREGORDIS", + "brand": "Leclerc" }, "22400005": { - "Nom": "Intermarché LAMBALLE", - "Marque": "Intermarché" + "name": "Intermarché LAMBALLE", + "brand": "Intermarché" }, "22400007": { - "Nom": "RELAIS COETMIEUX", - "Marque": "Total Access" + "name": "RELAIS COETMIEUX", + "brand": "Total Access" }, "22410001": { - "Nom": "NETTO", - "Marque": "Netto" + "name": "NETTO", + "brand": "Netto" }, "22420001": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Super Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Super Casino" }, "22430001": { - "Nom": "Super U ERQUY", - "Marque": "Système U" + "name": "Super U ERQUY", + "brand": "Système U" }, "22440001": { - "Nom": "E.LECLERC PLOUFRAGAN", - "Marque": "Leclerc" + "name": "E.LECLERC PLOUFRAGAN", + "brand": "Leclerc" }, "22440002": { - "Nom": "Intermarché TREMUSON", - "Marque": "Intermarché" + "name": "Intermarché TREMUSON", + "brand": "Intermarché" }, "22460003": { - "Nom": "Carrefour EXPRESS", - "Marque": "Carrefour Express" + "name": "Carrefour EXPRESS", + "brand": "Carrefour Express" }, "22460005": { - "Nom": "STATION Total UZEL", - "Marque": "Total" + "name": "STATION Total UZEL", + "brand": "Total" }, "22480001": { - "Nom": "Super U ST NICOLAS DU PELEM", - "Marque": "Système U" + "name": "Super U ST NICOLAS DU PELEM", + "brand": "Système U" }, "22480003": { - "Nom": "STATION Total", - "Marque": "Total" + "name": "STATION Total", + "brand": "Total" }, "22490001": { - "Nom": "Super U PLOUER S/RANCE", - "Marque": "Système U" + "name": "Super U PLOUER S/RANCE", + "brand": "Système U" }, "22500001": { - "Nom": "Carrefour PAIMPOL", - "Marque": "Carrefour" + "name": "Carrefour PAIMPOL", + "brand": "Carrefour" }, "22500002": { - "Nom": "RELAIS DU GOELO/STATION AVIA", - "Marque": "Avia" + "name": "RELAIS DU GOELO/STATION AVIA", + "brand": "Avia" }, "22500003": { - "Nom": "ARCADIE AUTOMOBILES SAS", - "Marque": "Total Access" + "name": "ARCADIE AUTOMOBILES SAS", + "brand": "Total Access" }, "22500004": { - "Nom": "E. LECLERC PAIMPOL", - "Marque": "Leclerc" + "name": "E. LECLERC PAIMPOL", + "brand": "Leclerc" }, "22500005": { - "Nom": "Intermarché PAIMPOL", - "Marque": "Intermarché" + "name": "Intermarché PAIMPOL", + "brand": "Intermarché" }, "22520001": { - "Nom": "Super U BINIC", - "Marque": "Système U" + "name": "Super U BINIC", + "brand": "Système U" }, "22530001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché" + "name": "Intermarché Contact", + "brand": "Intermarché" }, "22540001": { - "Nom": "COCU SARL", - "Marque": "Elan" + "name": "COCU SARL", + "brand": "Elan" }, "22540002": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "22550001": { - "Nom": "Super U MATIGNON", - "Marque": "Système U" + "name": "Super U MATIGNON", + "brand": "Système U" }, "22560001": { - "Nom": "Intermarché TREBEURDEN", - "Marque": "Intermarché" + "name": "Intermarché TREBEURDEN", + "brand": "Intermarché" }, "22570001": { - "Nom": "EURL MARTIN SEBASTIEN", - "Marque": "Total" + "name": "EURL MARTIN SEBASTIEN", + "brand": "Total" }, "22580001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "22590001": { - "Nom": "Intermarché PORDIC", - "Marque": "Intermarché" + "name": "Intermarché PORDIC", + "brand": "Intermarché" }, "22600002": { - "Nom": "SARL GARAGE JOSSELIN", - "Marque": "Total" + "name": "SARL GARAGE JOSSELIN", + "brand": "Total" }, "22600003": { - "Nom": "ETS ROBIN JEAN SAS", - "Marque": "Avia" + "name": "ETS ROBIN JEAN SAS", + "brand": "Avia" }, "22600004": { - "Nom": "SAS LOUDELAC", - "Marque": "Leclerc" + "name": "SAS LOUDELAC", + "brand": "Leclerc" }, "22600005": { - "Nom": "Station des parpareux", - "Marque": "Elan" + "name": "Station des parpareux", + "brand": "Elan" }, "22600006": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "22600008": { - "Nom": "Intermarché LOUDEAC", - "Marque": "Intermarché" + "name": "Intermarché LOUDEAC", + "brand": "Intermarché" }, "22610001": { - "Nom": "U Express PLEUBIAN", - "Marque": "Système U" + "name": "U Express PLEUBIAN", + "brand": "Système U" }, "22630002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "22640001": { - "Nom": "MR BRIEUC Y.", - "Marque": "Total" + "name": "MR BRIEUC Y.", + "brand": "Total" }, "22640003": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "22650001": { - "Nom": "SARL GARAGE DE LA BAIE", - "Marque": "Total" + "name": "SARL GARAGE DE LA BAIE", + "brand": "Total" }, "22650002": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "22700001": { - "Nom": "SARL LE CHARPENT", - "Marque": "Total" + "name": "SARL LE CHARPENT", + "brand": "Total" }, "22700002": { - "Nom": "Intermarché ST QUAY PERROS", - "Marque": "Intermarché" + "name": "Intermarché ST QUAY PERROS", + "brand": "Intermarché" }, "22710001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "22730001": { - "Nom": "Super U TREGASTEL", - "Marque": "Système U" + "name": "Super U TREGASTEL", + "brand": "Système U" }, "22800001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "22800002": { - "Nom": "Centre Leclerc", - "Marque": "Leclerc" + "name": "Centre Leclerc", + "brand": "Leclerc" }, "22810002": { - "Nom": "RELAIS PORZ AN PARK", - "Marque": "Total" + "name": "RELAIS PORZ AN PARK", + "brand": "Total" }, "22940002": { - "Nom": "Intermarché PLAINTEL", - "Marque": "Intermarché" + "name": "Intermarché PLAINTEL", + "brand": "Intermarché" }, "22950003": { - "Nom": "Intermarché TREGUEUX", - "Marque": "Intermarché" + "name": "Intermarché TREGUEUX", + "brand": "Intermarché" }, "22960001": { - "Nom": "Market Plédran", - "Marque": "Carrefour Market" + "name": "Market Plédran", + "brand": "Carrefour Market" }, "22980002": { - "Nom": "SAS KARMALO", - "Marque": "Intermarché" + "name": "SAS KARMALO", + "brand": "Intermarché" }, "23000001": { - "Nom": "Carrefour GUERET", - "Marque": "Carrefour" + "name": "Carrefour GUERET", + "brand": "Carrefour" }, "23000004": { - "Nom": "AVIA SARL REMERAND", - "Marque": "Avia" + "name": "AVIA SARL REMERAND", + "brand": "Avia" }, "23000005": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "23000006": { - "Nom": "Intermarché GUERET", - "Marque": "Intermarché" + "name": "Intermarché GUERET", + "brand": "Intermarché" }, "23000007": { - "Nom": "SARL REMERAND MANOUVRIER", - "Marque": "Avia" + "name": "SARL REMERAND MANOUVRIER", + "brand": "Avia" }, "23008001": { - "Nom": "*** LECLERC *** GUERET", - "Marque": "Leclerc" + "name": "*** LECLERC *** GUERET", + "brand": "Leclerc" }, "23110002": { - "Nom": "U Express EVAUX LES BAINS", - "Marque": "Système U" + "name": "U Express EVAUX LES BAINS", + "brand": "Système U" }, "23130001": { - "Nom": "8 à Huit CHENERAILLES", - "Marque": "Huit à 8" + "name": "8 à Huit CHENERAILLES", + "brand": "Huit à 8" }, "23140003": { - "Nom": "RELAIS DE PARSAC", - "Marque": "Total" + "name": "RELAIS DE PARSAC", + "brand": "Total" }, "23150001": { - "Nom": "Intermarché AHUN", - "Marque": "Intermarché" + "name": "Intermarché AHUN", + "brand": "Intermarché" }, "23170001": { - "Nom": "Intermarché CHAMBON SUR VOUEIZE", - "Marque": "Intermarché Contact" + "name": "Intermarché CHAMBON SUR VOUEIZE", + "brand": "Intermarché Contact" }, "23200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "23200002": { - "Nom": "LES MOUSQUETAIRES", - "Marque": "Netto" + "name": "LES MOUSQUETAIRES", + "brand": "Netto" }, "23220001": { - "Nom": "Intermarché BONNAT", - "Marque": "Intermarché Contact" + "name": "Intermarché BONNAT", + "brand": "Intermarché Contact" }, "23230001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "23240002": { - "Nom": "Trullen Distribution", - "Marque": "Elan" + "name": "Trullen Distribution", + "brand": "Elan" }, "23290001": { - "Nom": "PICOTY SA-MAIRIE PT PIERRE DE FURSAC", - "Marque": "Avia" + "name": "PICOTY SA-MAIRIE PT PIERRE DE FURSAC", + "brand": "Avia" }, "23300001": { - "Nom": "SARL LAVILLE", - "Marque": "Total" + "name": "SARL LAVILLE", + "brand": "Total" }, "23300002": { - "Nom": "PICOTY SA LA PRADE", - "Marque": "Avia" + "name": "PICOTY SA LA PRADE", + "brand": "Avia" }, "23300004": { - "Nom": "CENTRE E.LECLERC", - "Marque": "Leclerc" + "name": "CENTRE E.LECLERC", + "brand": "Leclerc" }, "23300005": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "23300006": { - "Nom": "Hypermarché Leclerc", - "Marque": "Leclerc" + "name": "Hypermarché Leclerc", + "brand": "Leclerc" }, "23320001": { - "Nom": "STATION ST VAURY 24/24", - "Marque": "LDI" + "name": "STATION ST VAURY 24/24", + "brand": "LDI" }, "23400001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "23400003": { - "Nom": "SARL RELAIS DU PUY", - "Marque": "Elan" + "name": "SARL RELAIS DU PUY", + "brand": "Elan" }, "23500002": { - "Nom": "Intermarché FELLETIN", - "Marque": "Intermarché" + "name": "Intermarché FELLETIN", + "brand": "Intermarché" }, "23600001": { - "Nom": "Market BOUSSAC", - "Marque": "Carrefour Market" + "name": "Market BOUSSAC", + "brand": "Carrefour Market" }, "23600002": { - "Nom": "Supermarché Simply Market", - "Marque": "Simply Market" + "name": "Supermarché Simply Market", + "brand": "Simply Market" }, "23700001": { - "Nom": "Intermarché AUZANCES", - "Marque": "Intermarché" + "name": "Intermarché AUZANCES", + "brand": "Intermarché" }, "23800001": { - "Nom": "Intermarché DUN LE PALESTEL", - "Marque": "Intermarché" + "name": "Intermarché DUN LE PALESTEL", + "brand": "Intermarché" }, "24000001": { - "Nom": "DE GUGLIELMI", - "Marque": "Total" + "name": "DE GUGLIELMI", + "brand": "Total" }, "24000002": { - "Nom": "SARL FURELAUD", - "Marque": "Total" + "name": "SARL FURELAUD", + "brand": "Total" }, "24000004": { - "Nom": "Total Access MAGOT CAVARD", - "Marque": "Total Access" + "name": "Total Access MAGOT CAVARD", + "brand": "Total Access" }, "24000007": { - "Nom": "DISPER", - "Marque": "Leclerc" + "name": "DISPER", + "brand": "Leclerc" }, "24000010": { - "Nom": "ESSO EXPRESS PERIGUEUX FENELON", - "Marque": "Esso Express" + "name": "ESSO EXPRESS PERIGUEUX FENELON", + "brand": "Esso Express" }, "24000011": { - "Nom": "RELAIS PERIGUEUX LE TOULONS", - "Marque": "Total Access" + "name": "RELAIS PERIGUEUX LE TOULONS", + "brand": "Total Access" }, "24100003": { - "Nom": "SARL EVANO", - "Marque": "Total" + "name": "SARL EVANO", + "brand": "Total" }, "24100004": { - "Nom": "BMVO DISTRIBUTION SARL", - "Marque": "Avia" + "name": "BMVO DISTRIBUTION SARL", + "brand": "Avia" }, "24100005": { - "Nom": "Intermarché SA SAINT MARTIN", - "Marque": "Intermarché" + "name": "Intermarché SA SAINT MARTIN", + "brand": "Intermarché" }, "24100007": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "24100008": { - "Nom": "Carrefour MARKET - Route de Sainte Alvère", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET - Route de Sainte Alvère", + "brand": "Carrefour Market" }, "24100010": { - "Nom": "MAYA RELAIS DE L'AEROPORT Total", - "Marque": "Total" + "name": "MAYA RELAIS DE L'AEROPORT Total", + "brand": "Total" }, "24100011": { - "Nom": "Intermarché CREYSSE", - "Marque": "Intermarché" + "name": "Intermarché CREYSSE", + "brand": "Intermarché" }, "24100012": { - "Nom": "Intermarché BERGERAC - Route de Marmande", - "Marque": "Intermarché" + "name": "Intermarché BERGERAC - Route de Marmande", + "brand": "Intermarché" }, "24100014": { - "Nom": "RELAIS BERGERAC LA SOURCE", - "Marque": "Total Access" + "name": "RELAIS BERGERAC LA SOURCE", + "brand": "Total Access" }, "24100016": { - "Nom": "SAS CREYNAUVE", - "Marque": "Netto" + "name": "SAS CREYNAUVE", + "brand": "Netto" }, "24107001": { - "Nom": "S.A. PASTEUR DISTRIBUTION", - "Marque": "Leclerc" + "name": "S.A. PASTEUR DISTRIBUTION", + "brand": "Leclerc" }, "24110001": { - "Nom": "SAINT ASTIER DISTRIBUTION", - "Marque": "Leclerc" + "name": "SAINT ASTIER DISTRIBUTION", + "brand": "Leclerc" }, "24110002": { - "Nom": "BRICO STATION", - "Marque": "Leclerc" + "name": "BRICO STATION", + "brand": "Leclerc" }, "24114001": { - "Nom": "BERCADIS", - "Marque": "Leclerc" + "name": "BERCADIS", + "brand": "Leclerc" }, "24120001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "24120005": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "24120006": { - "Nom": "Intermarché TERRASSON LA VILLEDI", - "Marque": "Intermarché" + "name": "Intermarché TERRASSON LA VILLEDI", + "brand": "Intermarché" }, "24120007": { - "Nom": "RELAIS MOULIN ROUGE", - "Marque": "Total Access" + "name": "RELAIS MOULIN ROUGE", + "brand": "Total Access" }, "24120008": { - "Nom": "SAS LOUMAX", - "Marque": "Intermarché" + "name": "SAS LOUMAX", + "brand": "Intermarché" }, "24130002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "24130003": { - "Nom": "8 à Huit La Force", - "Marque": "Huit à 8" + "name": "8 à Huit La Force", + "brand": "Huit à 8" }, "24150001": { - "Nom": "Intermarché LALINDE", - "Marque": "Intermarché" + "name": "Intermarché LALINDE", + "brand": "Intermarché" }, "24160001": { - "Nom": "Super U Coop Atlantique St Martial Albarede", - "Marque": "Système U" + "name": "Super U Coop Atlantique St Martial Albarede", + "brand": "Système U" }, "24160002": { - "Nom": "MR BRANDY", - "Marque": "Total" + "name": "MR BRANDY", + "brand": "Total" }, "24170001": { - "Nom": "BELVES RIBETTE", - "Marque": "Total" + "name": "BELVES RIBETTE", + "brand": "Total" }, "24170002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "24190001": { - "Nom": "Intermarché NEUVIC SUR L'ISLE", - "Marque": "Intermarché" + "name": "Intermarché NEUVIC SUR L'ISLE", + "brand": "Intermarché" }, "24200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "24200002": { - "Nom": "MONSIEUR FAUGERE HENRI", - "Marque": "Total" + "name": "MONSIEUR FAUGERE HENRI", + "brand": "Total" }, "24200005": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "24200006": { - "Nom": "SARLAT-DIS", - "Marque": "Leclerc" + "name": "SARLAT-DIS", + "brand": "Leclerc" }, "24210002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "24220002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "24230002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "24240001": { - "Nom": "Supermarche Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Supermarche Carrefour Contact", + "brand": "Carrefour Contact" }, "24250001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "24250003": { - "Nom": "STATION Total Contact", - "Marque": "Total" + "name": "STATION Total Contact", + "brand": "Total" }, "24260001": { - "Nom": "Intermarché LE BUGUE", - "Marque": "Intermarché" + "name": "Intermarché LE BUGUE", + "brand": "Intermarché" }, "24270001": { - "Nom": "SARL CARBU 24", - "Marque": "Total" + "name": "SARL CARBU 24", + "brand": "Total" }, "24270004": { - "Nom": "Utile Savignac-Lédrier", - "Marque": "Système U" + "name": "Utile Savignac-Lédrier", + "brand": "Système U" }, "24290001": { - "Nom": "Intermarché MONTIGNAC", - "Marque": "Intermarché" + "name": "Intermarché MONTIGNAC", + "brand": "Intermarché" }, "24300001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "24300004": { - "Nom": "Intermarché NONTRON", - "Marque": "Intermarché" + "name": "Intermarché NONTRON", + "brand": "Intermarché" }, "24300005": { - "Nom": "Carrosserie AMS", - "Marque": "Total" + "name": "Carrosserie AMS", + "brand": "Total" }, "24310001": { - "Nom": "EODR BRANTOME DESVERGNE", - "Marque": "Total" + "name": "EODR BRANTOME DESVERGNE", + "brand": "Total" }, "24310002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "24320002": { - "Nom": "PRO ENERGIES SERVICES", - "Marque": "Avia" + "name": "PRO ENERGIES SERVICES", + "brand": "Avia" }, "24330003": { - "Nom": "RELAIS DE NIVERSAC", - "Marque": "Total" + "name": "RELAIS DE NIVERSAC", + "brand": "Total" }, "24330005": { - "Nom": "ST PIERRE AUTOS", - "Marque": "Indépendant sans enseigne" + "name": "ST PIERRE AUTOS", + "brand": "Indépendant sans enseigne" }, "24330006": { - "Nom": "RELAIS DE PERIGUEUX-MANOIRE", - "Marque": "Total" + "name": "RELAIS DE PERIGUEUX-MANOIRE", + "brand": "Total" }, "24340002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "24350002": { - "Nom": "SA TOCAPRE Intermarché", - "Marque": "Intermarché" + "name": "SA TOCAPRE Intermarché", + "brand": "Intermarché" }, "24360002": { - "Nom": "Intermarché PIEGUT PLUVIERS", - "Marque": "Intermarché" + "name": "Intermarché PIEGUT PLUVIERS", + "brand": "Intermarché" }, "24380001": { - "Nom": "Intermarché VERGT", - "Marque": "Intermarché" + "name": "Intermarché VERGT", + "brand": "Intermarché" }, "24390001": { - "Nom": "Intermarché HAUTEFORT", - "Marque": "Intermarché" + "name": "Intermarché HAUTEFORT", + "brand": "Intermarché" }, "24400001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "24400003": { - "Nom": "station super u", - "Marque": "Système U" + "name": "station super u", + "brand": "Système U" }, "24400004": { - "Nom": "Intermarché ST MEDARD MUSSIDAN", - "Marque": "Intermarché" + "name": "Intermarché ST MEDARD MUSSIDAN", + "brand": "Intermarché" }, "24400005": { - "Nom": "RIEUPET CARBURANTS", - "Marque": "Indépendant sans enseigne" + "name": "RIEUPET CARBURANTS", + "brand": "Indépendant sans enseigne" }, "24410001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "24420001": { - "Nom": "RELAIS DE L'ISLE", - "Marque": "Total" + "name": "RELAIS DE L'ISLE", + "brand": "Total" }, "24430001": { - "Nom": "AUCHAN MARSAC SUR L'ISLE", - "Marque": "Auchan" + "name": "AUCHAN MARSAC SUR L'ISLE", + "brand": "Auchan" }, "24430003": { - "Nom": "MARSAC AUTO SERVICE", - "Marque": "Elan" + "name": "MARSAC AUTO SERVICE", + "brand": "Elan" }, "24440001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "24450001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "24460002": { - "Nom": "STATION ELAN", - "Marque": "Elan" + "name": "STATION ELAN", + "brand": "Elan" }, "24470001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "24480001": { - "Nom": "POILLEUX", - "Marque": "Total" + "name": "POILLEUX", + "brand": "Total" }, "24490002": { - "Nom": "Intermarché LA ROCHE CHALAIS", - "Marque": "Intermarché" + "name": "Intermarché LA ROCHE CHALAIS", + "brand": "Intermarché" }, "24500002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "24580001": { - "Nom": "SARL SOBGAR Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "SARL SOBGAR Carrefour Contact", + "brand": "Carrefour Contact" }, "24590002": { - "Nom": "Intermarché SALIGNAC EYVIGUES", - "Marque": "Intermarché" + "name": "Intermarché SALIGNAC EYVIGUES", + "brand": "Intermarché" }, "24600003": { - "Nom": "Intermarché RIBERAC", - "Marque": "Intermarché" + "name": "Intermarché RIBERAC", + "brand": "Intermarché" }, "24600004": { - "Nom": "SORIDIS - Leclerc", - "Marque": "Leclerc" + "name": "SORIDIS - Leclerc", + "brand": "Leclerc" }, "24620001": { - "Nom": "Relais des Mousquetaires SAS CHRISFANIE", - "Marque": "Intermarché Contact" + "name": "Relais des Mousquetaires SAS CHRISFANIE", + "brand": "Intermarché Contact" }, "24650001": { - "Nom": "Intermarché CHANCELADE", - "Marque": "Intermarché" + "name": "Intermarché CHANCELADE", + "brand": "Intermarché" }, "24660003": { - "Nom": "Intermarché COULOUNIEIX-CHAMIERS", - "Marque": "Intermarché" + "name": "Intermarché COULOUNIEIX-CHAMIERS", + "brand": "Intermarché" }, "24660004": { - "Nom": "SUPER U NOTRE DAME DE SANILHAC", - "Marque": "Système U" + "name": "SUPER U NOTRE DAME DE SANILHAC", + "brand": "Système U" }, "24700001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "24750001": { - "Nom": "Hyper U Coop Atlantique Boulazac", - "Marque": "Système U" + "name": "Hyper U Coop Atlantique Boulazac", + "brand": "Système U" }, "24750002": { - "Nom": "TRELIDIS S.A", - "Marque": "Leclerc" + "name": "TRELIDIS S.A", + "brand": "Leclerc" }, "24750004": { - "Nom": "Intermarché TRELISSAC", - "Marque": "Intermarché" + "name": "Intermarché TRELISSAC", + "brand": "Intermarché" }, "24800002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "24800003": { - "Nom": "La station Maguer 24/24", - "Marque": "Indépendant sans enseigne" + "name": "La station Maguer 24/24", + "brand": "Indépendant sans enseigne" }, "25000002": { - "Nom": "MR.ET MME GONCALVES", - "Marque": "Total" + "name": "MR.ET MME GONCALVES", + "brand": "Total" }, "25000007": { - "Nom": "SUPER U DE BESANCON", - "Marque": "Système U" + "name": "SUPER U DE BESANCON", + "brand": "Système U" }, "25000008": { - "Nom": "ESSO LES 4 VENTS", - "Marque": "Esso Express" + "name": "ESSO LES 4 VENTS", + "brand": "Esso Express" }, "25000009": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "25000011": { - "Nom": "Intermarché BESANCON", - "Marque": "Intermarché" + "name": "Intermarché BESANCON", + "brand": "Intermarché" }, "25000016": { - "Nom": "Maison du Pneu Mariotte PROFIL +", - "Marque": "Indépendant sans enseigne" + "name": "Maison du Pneu Mariotte PROFIL +", + "brand": "Indépendant sans enseigne" }, "25000020": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "25000021": { - "Nom": "Total Chemaudin", - "Marque": "Total" + "name": "Total Chemaudin", + "brand": "Total" }, "25000022": { - "Nom": "Sarl sdc station des chaprais", - "Marque": "Indépendant sans enseigne" + "name": "Sarl sdc station des chaprais", + "brand": "Indépendant sans enseigne" }, "25000023": { - "Nom": "RELAIS DE LA VIOTTE", - "Marque": "Total" + "name": "RELAIS DE LA VIOTTE", + "brand": "Total" }, "25000024": { - "Nom": "RELAIS CHÂTEAU FARINE", - "Marque": "Total" + "name": "RELAIS CHÂTEAU FARINE", + "brand": "Total" }, "25022001": { - "Nom": "Carrefour CHALEZEULE", - "Marque": "Carrefour" + "name": "Carrefour CHALEZEULE", + "brand": "Carrefour" }, "25057001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "25110001": { - "Nom": "GARAGE DROZ SARL", - "Marque": "Total" + "name": "GARAGE DROZ SARL", + "brand": "Total" }, "25110002": { - "Nom": "SUPER U Baume les Dames", - "Marque": "Système U" + "name": "SUPER U Baume les Dames", + "brand": "Système U" }, "25110003": { - "Nom": "F3C Sas", - "Marque": "Indépendant sans enseigne" + "name": "F3C Sas", + "brand": "Indépendant sans enseigne" }, "25110004": { - "Nom": "Intermarché BAUME LES DAMES", - "Marque": "Intermarché" + "name": "Intermarché BAUME LES DAMES", + "brand": "Intermarché" }, "25115001": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "25120001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "25120004": { - "Nom": "SA DETROISEM", - "Marque": "Intermarché" + "name": "SA DETROISEM", + "brand": "Intermarché" }, "25130001": { - "Nom": "Bi1 VILLERS LE LAC", - "Marque": "Atac" + "name": "Bi1 VILLERS LE LAC", + "brand": "Atac" }, "25150002": { - "Nom": "Intermarché PONT DE ROIDE", - "Marque": "Intermarché" + "name": "Intermarché PONT DE ROIDE", + "brand": "Intermarché" }, "25150003": { - "Nom": "Station Avia", - "Marque": "Avia" + "name": "Station Avia", + "brand": "Avia" }, "25150005": { - "Nom": "SARL DE RONCHI - GARAGE DU LION", - "Marque": "Total" + "name": "SARL DE RONCHI - GARAGE DU LION", + "brand": "Total" }, "25200001": { - "Nom": "C.C CORA MONTBELIARD", - "Marque": "CORA" + "name": "C.C CORA MONTBELIARD", + "brand": "CORA" }, "25200002": { - "Nom": "SCA PEUGEOT MONTBELIARD BELFORT", - "Marque": "Total Access" + "name": "SCA PEUGEOT MONTBELIARD BELFORT", + "brand": "Total Access" }, "25200003": { - "Nom": "SUPER U MONTBELIARD", - "Marque": "Système U" + "name": "SUPER U MONTBELIARD", + "brand": "Système U" }, "25200005": { - "Nom": "E.LECLERC", - "Marque": "Leclerc" + "name": "E.LECLERC", + "brand": "Leclerc" }, "25200006": { - "Nom": "DATS Bethoncourt", - "Marque": "Colruyt" + "name": "DATS Bethoncourt", + "brand": "Colruyt" }, "25210002": { - "Nom": "Station guillaume", - "Marque": "Indépendant sans enseigne" + "name": "Station guillaume", + "brand": "Indépendant sans enseigne" }, "25210003": { - "Nom": "SAS LES BOULEAUX STATION U", - "Marque": "Indépendant sans enseigne" + "name": "SAS LES BOULEAUX STATION U", + "brand": "Indépendant sans enseigne" }, "25220002": { - "Nom": "Avia", - "Marque": "Avia" + "name": "Avia", + "brand": "Avia" }, "25220003": { - "Nom": "SAS SODIROCHE", - "Marque": "Système U" + "name": "SAS SODIROCHE", + "brand": "Système U" }, "25230002": { - "Nom": "SAS TOURIS", - "Marque": "Intermarché" + "name": "SAS TOURIS", + "brand": "Intermarché" }, "25240001": { - "Nom": "ATAC MOUTHE", - "Marque": "Atac" + "name": "ATAC MOUTHE", + "brand": "Atac" }, "25250002": { - "Nom": "Intermarché L'ISLE SUR LE DOUBS", - "Marque": "Intermarché" + "name": "Intermarché L'ISLE SUR LE DOUBS", + "brand": "Intermarché" }, "25270001": { - "Nom": "ATAC LEVIER", - "Marque": "Atac" + "name": "ATAC LEVIER", + "brand": "Atac" }, "25290001": { - "Nom": "ATAC ORNANS", - "Marque": "Atac" + "name": "ATAC ORNANS", + "brand": "Atac" }, "25290005": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "25300001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "25300002": { - "Nom": "DEFEUILLE CARBURANTS", - "Marque": "Total" + "name": "DEFEUILLE CARBURANTS", + "brand": "Total" }, "25300005": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "25300006": { - "Nom": "CENTRE E. LECLERC", - "Marque": "Leclerc" + "name": "CENTRE E. LECLERC", + "brand": "Leclerc" }, "25300007": { - "Nom": "La Maison Du Pneu Pontarlier SILIGOM", - "Marque": "Indépendant sans enseigne" + "name": "La Maison Du Pneu Pontarlier SILIGOM", + "brand": "Indépendant sans enseigne" }, "25300009": { - "Nom": "MOULIN MAUGAIN", - "Marque": "Avia" + "name": "MOULIN MAUGAIN", + "brand": "Avia" }, "25320001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "25330001": { - "Nom": "MAXIMARCHE AMANCEY", - "Marque": "Maximarché" + "name": "MAXIMARCHE AMANCEY", + "brand": "Maximarché" }, "25340001": { - "Nom": "STATION AVIA GARAGE CARLIN", - "Marque": "Avia" + "name": "STATION AVIA GARAGE CARLIN", + "brand": "Avia" }, "25350001": { - "Nom": "SA MANDEURE DISTRIBUTION", - "Marque": "Système U" + "name": "SA MANDEURE DISTRIBUTION", + "brand": "Système U" }, "25370002": { - "Nom": "Intermarché LES HOPITAUX NEUFS", - "Marque": "Intermarché" + "name": "Intermarché LES HOPITAUX NEUFS", + "brand": "Intermarché" }, "25390001": { - "Nom": "EURL STATION DE LA VERDOLLE", - "Marque": "Système U" + "name": "EURL STATION DE LA VERDOLLE", + "brand": "Système U" }, "25400001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "25400003": { - "Nom": "Intermarché AUDINCOURT", - "Marque": "Intermarché" + "name": "Intermarché AUDINCOURT", + "brand": "Intermarché" }, "25400004": { - "Nom": "PMA SERVICES", - "Marque": "Système U" + "name": "PMA SERVICES", + "brand": "Système U" }, "25410002": { - "Nom": "STATION U - Super U", - "Marque": "Système U" + "name": "STATION U - Super U", + "brand": "Système U" }, "25410004": { - "Nom": "Intermarché SAINT VIT", - "Marque": "Intermarché" + "name": "Intermarché SAINT VIT", + "brand": "Intermarché" }, "25410005": { - "Nom": "LA STATION SERVICE AVIA DES ESSARTS", - "Marque": "Avia" + "name": "LA STATION SERVICE AVIA DES ESSARTS", + "brand": "Avia" }, "25410007": { - "Nom": "NETTO", - "Marque": "Netto" + "name": "NETTO", + "brand": "Netto" }, "25420001": { - "Nom": "ATAC VOUJEAUCOURT", - "Marque": "Atac" + "name": "ATAC VOUJEAUCOURT", + "brand": "Atac" }, "25420002": { - "Nom": "EURL NEDEY", - "Marque": "Total" + "name": "EURL NEDEY", + "brand": "Total" }, "25420005": { - "Nom": "STATION AVIA - GARAGE BEUCLER", - "Marque": "Avia" + "name": "STATION AVIA - GARAGE BEUCLER", + "brand": "Avia" }, "25430002": { - "Nom": "GRUT Jean-Louis", - "Marque": "Avia" + "name": "GRUT Jean-Louis", + "brand": "Avia" }, "25440001": { - "Nom": "Intermarché PIPOLUX", - "Marque": "Intermarché" + "name": "Intermarché PIPOLUX", + "brand": "Intermarché" }, "25480001": { - "Nom": "Carrefour VALENTIN", - "Marque": "Carrefour" + "name": "Carrefour VALENTIN", + "brand": "Carrefour" }, "25480003": { - "Nom": "RELAIS DU BOIS DE PIREY", - "Marque": "Total" + "name": "RELAIS DU BOIS DE PIREY", + "brand": "Total" }, "25480004": { - "Nom": "STATION AVIA", - "Marque": "AVIA" + "name": "STATION AVIA", + "brand": "AVIA" }, "25490001": { - "Nom": "Intermarché - SAS JILAV", - "Marque": "Intermarché" + "name": "Intermarché - SAS JILAV", + "brand": "Intermarché" }, "25500001": { - "Nom": "SAS ROGNON CYPRIEN", - "Marque": "ROGNON" + "name": "SAS ROGNON CYPRIEN", + "brand": "ROGNON" }, "25500002": { - "Nom": "GARAGE CENTRAL BARBIER DUBOIS SA", - "Marque": "Total" + "name": "GARAGE CENTRAL BARBIER DUBOIS SA", + "brand": "Total" }, "25500005": { - "Nom": "Intermarché MORTEAU", - "Marque": "Intermarché" + "name": "Intermarché MORTEAU", + "brand": "Intermarché" }, "25500006": { - "Nom": "Floreal Casino", - "Marque": "Casino" + "name": "Floreal Casino", + "brand": "Casino" }, "25510001": { - "Nom": "MAXIMARCHE PIERRE FONTAINE", - "Marque": "Maximarché" + "name": "MAXIMARCHE PIERRE FONTAINE", + "brand": "Maximarché" }, "25530001": { - "Nom": "SARL VERCELDIS", - "Marque": "Carrefour Express" + "name": "SARL VERCELDIS", + "brand": "Carrefour Express" }, "25550001": { - "Nom": "DATS BAVANS", - "Marque": "Colruyt" + "name": "DATS BAVANS", + "brand": "Colruyt" }, "25560001": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "25600003": { - "Nom": "SAS SOCODIS", - "Marque": "Intermarché" + "name": "SAS SOCODIS", + "brand": "Intermarché" }, "25610001": { - "Nom": "SUPERMARCHE BI1", - "Marque": "Bi1" + "name": "SUPERMARCHE BI1", + "brand": "Bi1" }, "25620001": { - "Nom": "RELAIS MAMIROLLE", - "Marque": "Total Access" + "name": "RELAIS MAMIROLLE", + "brand": "Total Access" }, "25640003": { - "Nom": "ESSO MARCHAUX", - "Marque": "Esso" + "name": "ESSO MARCHAUX", + "brand": "Esso" }, "25640007": { - "Nom": "RELAIS DES MARCHAUX", - "Marque": "Total" + "name": "RELAIS DES MARCHAUX", + "brand": "Total" }, "25640008": { - "Nom": "SAS SEMMAX", - "Marque": "Intermarché" + "name": "SAS SEMMAX", + "brand": "Intermarché" }, "25650002": { - "Nom": "SARL GUINCHARD JACQUIN", - "Marque": "GUINCHARD JACQ" + "name": "SARL GUINCHARD JACQUIN", + "brand": "GUINCHARD JACQ" }, "25650003": { - "Nom": "GARAGE POURCHET", - "Marque": "POURCHET" + "name": "GARAGE POURCHET", + "brand": "POURCHET" }, "25660002": { - "Nom": "Ancopi", - "Marque": "Système U" + "name": "Ancopi", + "brand": "Système U" }, "25660003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "25680001": { - "Nom": "Total CUSE ET ADRISANS", - "Marque": "Total" + "name": "Total CUSE ET ADRISANS", + "brand": "Total" }, "25700002": { - "Nom": "030 DATS MATHAY", - "Marque": "Colruyt" + "name": "030 DATS MATHAY", + "brand": "Colruyt" }, "25700003": { - "Nom": "RELAIS DU DOUBS", - "Marque": "Total" + "name": "RELAIS DU DOUBS", + "brand": "Total" }, "25720002": { - "Nom": "STATION SERVICE AVIA", - "Marque": "Avia" + "name": "STATION SERVICE AVIA", + "brand": "Avia" }, "25720009": { - "Nom": "AGIP BEURE ROUTE DE LYON", - "Marque": "Agip" + "name": "AGIP BEURE ROUTE DE LYON", + "brand": "Agip" }, "25750001": { - "Nom": "DATS ARCEY", - "Marque": "Colruyt" + "name": "DATS ARCEY", + "brand": "Colruyt" }, "25800001": { - "Nom": "SA ANACO", - "Marque": "Système U" + "name": "SA ANACO", + "brand": "Système U" }, "25800002": { - "Nom": "E.LECLERC VALDAHON", - "Marque": "Leclerc" + "name": "E.LECLERC VALDAHON", + "brand": "Leclerc" }, "25800003": { - "Nom": "SAS RYMOGO", - "Marque": "Netto" + "name": "SAS RYMOGO", + "brand": "Netto" }, "25870002": { - "Nom": "Station U Devecey", - "Marque": "Système U" + "name": "Station U Devecey", + "brand": "Système U" }, "26000001": { - "Nom": "GEANT CASINO valence sud", - "Marque": "Géant" + "name": "GEANT CASINO valence sud", + "brand": "Géant" }, "26000005": { - "Nom": "VALENCE LIBERATION", - "Marque": "Total" + "name": "VALENCE LIBERATION", + "brand": "Total" }, "26000007": { - "Nom": "ESSO VICTOR HUGO VALENCE", - "Marque": "Esso Express" + "name": "ESSO VICTOR HUGO VALENCE", + "brand": "Esso Express" }, "26000008": { - "Nom": "ESSO CHABEUIL", - "Marque": "Esso Express" + "name": "ESSO CHABEUIL", + "brand": "Esso Express" }, "26000013": { - "Nom": "Intermarché VALENCE", - "Marque": "Intermarché" + "name": "Intermarché VALENCE", + "brand": "Intermarché" }, "26000014": { - "Nom": "RELAIS EPERVIERE", - "Marque": "Total Access" + "name": "RELAIS EPERVIERE", + "brand": "Total Access" }, "26000015": { - "Nom": "RELAIS PETIT ROUSSET", - "Marque": "Total Access" + "name": "RELAIS PETIT ROUSSET", + "brand": "Total Access" }, "26000016": { - "Nom": "RELAIS VALENCE DAME BLANCHE", - "Marque": "Total Access" + "name": "RELAIS VALENCE DAME BLANCHE", + "brand": "Total Access" }, "26000018": { - "Nom": "AGRODIA MONTMEYRAN", - "Marque": "Indépendant sans enseigne" + "name": "AGRODIA MONTMEYRAN", + "brand": "Indépendant sans enseigne" }, "26000019": { - "Nom": "STATION SERVICE RAUCH - ENI", - "Marque": "Agip" + "name": "STATION SERVICE RAUCH - ENI", + "brand": "Agip" }, "26100001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "26100002": { - "Nom": "SAS JFM - Hyper U", - "Marque": "Système U" + "name": "SAS JFM - Hyper U", + "brand": "Système U" }, "26100003": { - "Nom": "AVIA XPRESS", - "Marque": "Avia" + "name": "AVIA XPRESS", + "brand": "Avia" }, "26100008": { - "Nom": "SARL ROMTIN Station AVIA", - "Marque": "Avia" + "name": "SARL ROMTIN Station AVIA", + "brand": "Avia" }, "26110003": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "26110004": { - "Nom": "Intermarché NYONS", - "Marque": "Intermarché" + "name": "Intermarché NYONS", + "brand": "Intermarché" }, "26110006": { - "Nom": "Nanostation Market", - "Marque": "Carrefour Market" + "name": "Nanostation Market", + "brand": "Carrefour Market" }, "26120001": { - "Nom": "Total access la caillette", - "Marque": "Total Access" + "name": "Total access la caillette", + "brand": "Total Access" }, "26120003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "26120004": { - "Nom": "Intermarché MONTELIER", - "Marque": "Intermarché" + "name": "Intermarché MONTELIER", + "brand": "Intermarché" }, "26130002": { - "Nom": "Intermarché ST PAUL 3 CHATEAUX", - "Marque": "Intermarché" + "name": "Intermarché ST PAUL 3 CHATEAUX", + "brand": "Intermarché" }, "26140002": { - "Nom": "BP A7 AIRE DE SAINT RAMBERT D'ALBON", - "Marque": "BP" + "name": "BP A7 AIRE DE SAINT RAMBERT D'ALBON", + "brand": "BP" }, "26140003": { - "Nom": "Intermarché SAS ANEBUIS", - "Marque": "Intermarché" + "name": "Intermarché SAS ANEBUIS", + "brand": "Intermarché" }, "26140004": { - "Nom": "Centre E LECLERC", - "Marque": "Leclerc" + "name": "Centre E LECLERC", + "brand": "Leclerc" }, "26140005": { - "Nom": "E. LECLERC", - "Marque": "Leclerc" + "name": "E. LECLERC", + "brand": "Leclerc" }, "26150001": { - "Nom": "Intermarché DIE", - "Marque": "Intermarché" + "name": "Intermarché DIE", + "brand": "Intermarché" }, "26150002": { - "Nom": "Station service Combet Energies", - "Marque": "Indépendant sans enseigne" + "name": "Station service Combet Energies", + "brand": "Indépendant sans enseigne" }, "26160001": { - "Nom": "UTILE", - "Marque": "Système U" + "name": "UTILE", + "brand": "Système U" }, "26170002": { - "Nom": "SARL GARAGE ENGUENT", - "Marque": "AVIA" + "name": "SARL GARAGE ENGUENT", + "brand": "AVIA" }, "26190001": { - "Nom": "GARAGE MAGNAN", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE MAGNAN", + "brand": "Indépendant sans enseigne" }, "26190002": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "26200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "26200003": { - "Nom": "ESSO MEDITERRANEE", - "Marque": "Esso Express" + "name": "ESSO MEDITERRANEE", + "brand": "Esso Express" }, "26200004": { - "Nom": "ROMANDIS SA", - "Marque": "Leclerc" + "name": "ROMANDIS SA", + "brand": "Leclerc" }, "26200006": { - "Nom": "AVIA NERS SARL MANAT", - "Marque": "Avia" + "name": "AVIA NERS SARL MANAT", + "brand": "Avia" }, "26200007": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "26200008": { - "Nom": "Auchan Montélimar", - "Marque": "Auchan" + "name": "Auchan Montélimar", + "brand": "Auchan" }, "26208001": { - "Nom": "Carrefour MONTELIMAR", - "Marque": "Carrefour" + "name": "Carrefour MONTELIMAR", + "brand": "Carrefour" }, "26210001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "26216001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "26220001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "26230002": { - "Nom": "CLEMARINE GRIGNAN", - "Marque": "Intermarché" + "name": "CLEMARINE GRIGNAN", + "brand": "Intermarché" }, "26240002": { - "Nom": "Total echinard & faure", - "Marque": "Total" + "name": "Total echinard & faure", + "brand": "Total" }, "26240004": { - "Nom": "ESSO DIANE DE POITIERS RN7", - "Marque": "Esso" + "name": "ESSO DIANE DE POITIERS RN7", + "brand": "Esso" }, "26240006": { - "Nom": "SAS LOVIRIC", - "Marque": "Intermarché" + "name": "SAS LOVIRIC", + "brand": "Intermarché" }, "26240007": { - "Nom": "Leader Price Saint Vallier", - "Marque": "Leader Price" + "name": "Leader Price Saint Vallier", + "brand": "Leader Price" }, "26240008": { - "Nom": "NETTO SAINT VALLIER", - "Marque": "Netto" + "name": "NETTO SAINT VALLIER", + "brand": "Netto" }, "26250001": { - "Nom": "AGIP LIVRON RN7", - "Marque": "AGIP" + "name": "AGIP LIVRON RN7", + "brand": "AGIP" }, "26260001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "26260002": { - "Nom": "NETTO SAINT DONAT SUR L'HERBASSE", - "Marque": "Netto" + "name": "NETTO SAINT DONAT SUR L'HERBASSE", + "brand": "Netto" }, "26270003": { - "Nom": "ESSO SERVICE BELAIR", - "Marque": "Esso" + "name": "ESSO SERVICE BELAIR", + "brand": "Esso" }, "26270004": { - "Nom": "Intermarché LORIOL", - "Marque": "Intermarché" + "name": "Intermarché LORIOL", + "brand": "Intermarché" }, "26270005": { - "Nom": "AGIP A 7 AIRE DE SAULCE EST", - "Marque": "Agip" + "name": "AGIP A 7 AIRE DE SAULCE EST", + "brand": "Agip" }, "26270006": { - "Nom": "LECLERC SAULCE SUR RHONE", - "Marque": "Leclerc" + "name": "LECLERC SAULCE SUR RHONE", + "brand": "Leclerc" }, "26290003": { - "Nom": "ESSO DONZERE", - "Marque": "Esso Express" + "name": "ESSO DONZERE", + "brand": "Esso Express" }, "26290008": { - "Nom": "SAS PRODON", - "Marque": "Système U" + "name": "SAS PRODON", + "brand": "Système U" }, "26290009": { - "Nom": "RELAIS DONZERE", - "Marque": "Total Access" + "name": "RELAIS DONZERE", + "brand": "Total Access" }, "26300001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "26300003": { - "Nom": "SARL D. GAUTHIER", - "Marque": "Total" + "name": "SARL D. GAUTHIER", + "brand": "Total" }, "26300005": { - "Nom": "ESSO GRAND SOLEIL", - "Marque": "Esso Express" + "name": "ESSO GRAND SOLEIL", + "brand": "Esso Express" }, "26300008": { - "Nom": "Station 24/24 - Garage ROCHE", - "Marque": "Indépendant sans enseigne" + "name": "Station 24/24 - Garage ROCHE", + "brand": "Indépendant sans enseigne" }, "26300009": { - "Nom": "AGRODIA CHATEAUNEUF SUR ISERE", - "Marque": "Alpha" + "name": "AGRODIA CHATEAUNEUF SUR ISERE", + "brand": "Alpha" }, "26300010": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "26300011": { - "Nom": "RELAIS BOURG DE PEAGE", - "Marque": "Total" + "name": "RELAIS BOURG DE PEAGE", + "brand": "Total" }, "26300012": { - "Nom": "RELAIS LA BAYANNE", - "Marque": "Total Access" + "name": "RELAIS LA BAYANNE", + "brand": "Total Access" }, "26310000": { - "Nom": "SARL CARBURANTS SERVICES", - "Marque": "Indépendant sans enseigne" + "name": "SARL CARBURANTS SERVICES", + "brand": "Indépendant sans enseigne" }, "26320001": { - "Nom": "Agrodia", - "Marque": "Indépendant sans enseigne" + "name": "Agrodia", + "brand": "Indépendant sans enseigne" }, "26340000": { - "Nom": "SARL CARBURANTS SERVICES", - "Marque": "Indépendant sans enseigne" + "name": "SARL CARBURANTS SERVICES", + "brand": "Indépendant sans enseigne" }, "26380001": { - "Nom": "AGIP PEYRINS LES ESCOFFERS", - "Marque": "Agip" + "name": "AGIP PEYRINS LES ESCOFFERS", + "brand": "Agip" }, "26390001": { - "Nom": "SAS BLAISANI", - "Marque": "Intermarché Contact" + "name": "SAS BLAISANI", + "brand": "Intermarché Contact" }, "26400002": { - "Nom": "AGIP CREST AV FAYOLLE", - "Marque": "Agip" + "name": "AGIP CREST AV FAYOLLE", + "brand": "Agip" }, "26400003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "26400004": { - "Nom": "Intermarché AOUSTE SUR SYE", - "Marque": "Intermarché" + "name": "Intermarché AOUSTE SUR SYE", + "brand": "Intermarché" }, "26400005": { - "Nom": "SARL CARBURANTS SERVICES", - "Marque": "Indépendant sans enseigne" + "name": "SARL CARBURANTS SERVICES", + "brand": "Indépendant sans enseigne" }, "26400006": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "26400007": { - "Nom": "RELAIS DES DAUPHINS", - "Marque": "Total" + "name": "RELAIS DES DAUPHINS", + "brand": "Total" }, "26450001": { - "Nom": "NATURA PRO GAMM VERT", - "Marque": "Indépendant sans enseigne" + "name": "NATURA PRO GAMM VERT", + "brand": "Indépendant sans enseigne" }, "26450002": { - "Nom": "STATION U Express PSM", - "Marque": "Système U" + "name": "STATION U Express PSM", + "brand": "Système U" }, "26500002": { - "Nom": "CMS VALENCE NORD", - "Marque": "Total Access" + "name": "CMS VALENCE NORD", + "brand": "Total Access" }, "26500003": { - "Nom": "Intermarché BOURG LES VALENCE", - "Marque": "Intermarché" + "name": "Intermarché BOURG LES VALENCE", + "brand": "Intermarché" }, "26503001": { - "Nom": "BOURG-DISTRIBUTION", - "Marque": "Leclerc" + "name": "BOURG-DISTRIBUTION", + "brand": "Leclerc" }, "26540001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "26600002": { - "Nom": "RELAIS DES COTES DU RHONE", - "Marque": "Total" + "name": "RELAIS DES COTES DU RHONE", + "brand": "Total" }, "26600003": { - "Nom": "AVIA SARL JUCLEMAT", - "Marque": "Avia" + "name": "AVIA SARL JUCLEMAT", + "brand": "Avia" }, "26600007": { - "Nom": "Intermarché TAIN L'HERMITAGE", - "Marque": "Intermarché" + "name": "Intermarché TAIN L'HERMITAGE", + "brand": "Intermarché" }, "26600008": { - "Nom": "NETTO", - "Marque": "Netto" + "name": "NETTO", + "brand": "Netto" }, "26600011": { - "Nom": "AVIA Latitude 45", - "Marque": "Avia" + "name": "AVIA Latitude 45", + "brand": "Avia" }, "26600013": { - "Nom": "RELAIS PONT DE L'ISERE", - "Marque": "Total" + "name": "RELAIS PONT DE L'ISERE", + "brand": "Total" }, "26600014": { - "Nom": "RELAIS PONT DE L'ISERE RN 7", - "Marque": "Total Access" + "name": "RELAIS PONT DE L'ISERE RN 7", + "brand": "Total Access" }, "26620001": { - "Nom": "SARL PARRON JEAN - AUTOMAT24", - "Marque": "Avia" + "name": "SARL PARRON JEAN - AUTOMAT24", + "brand": "Avia" }, "26700001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "26730001": { - "Nom": "Station Total", - "Marque": "Total" + "name": "Station Total", + "brand": "Total" }, "26730005": { - "Nom": "Esso Aire Royans Vercors", - "Marque": "Esso" + "name": "Esso Aire Royans Vercors", + "brand": "Esso" }, "26730006": { - "Nom": "Esso Porte de la Drome", - "Marque": "Esso" + "name": "Esso Porte de la Drome", + "brand": "Esso" }, "26740001": { - "Nom": "AVIA SNC CYROM", - "Marque": "Avia" + "name": "AVIA SNC CYROM", + "brand": "Avia" }, "26740002": { - "Nom": "AGIP MONTBOUCHER", - "Marque": "Agip" + "name": "AGIP MONTBOUCHER", + "brand": "Agip" }, "26740003": { - "Nom": "RELAIS TOURRETTES", - "Marque": "Total" + "name": "RELAIS TOURRETTES", + "brand": "Total" }, "26750001": { - "Nom": "S.A.S ROUDAUT", - "Marque": "Leclerc" + "name": "S.A.S ROUDAUT", + "brand": "Leclerc" }, "26760001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "26780002": { - "Nom": "RELAIS MONTELIMAR", - "Marque": "Shell" + "name": "RELAIS MONTELIMAR", + "brand": "Shell" }, "26780004": { - "Nom": "SARL ROCAMAR", - "Marque": "Shell" + "name": "SARL ROCAMAR", + "brand": "Shell" }, "26780005": { - "Nom": "PETROLIMED DYNEFF", - "Marque": "Dyneff" + "name": "PETROLIMED DYNEFF", + "brand": "Dyneff" }, "26780006": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "26780007": { - "Nom": "RELAIS DE LA GIRANE", - "Marque": "Total Access" + "name": "RELAIS DE LA GIRANE", + "brand": "Total Access" }, "26790003": { - "Nom": "station service u", - "Marque": "Système U" + "name": "station service u", + "brand": "Système U" }, "26800002": { - "Nom": "SARL SRV", - "Marque": "Avia" + "name": "SARL SRV", + "brand": "Avia" }, "26800004": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "26800005": { - "Nom": "Intermarché ETOILE SUR RHONE", - "Marque": "Intermarché" + "name": "Intermarché ETOILE SUR RHONE", + "brand": "Intermarché" }, "26800007": { - "Nom": "RELAIS VALENTINOIS", - "Marque": "Total" + "name": "RELAIS VALENTINOIS", + "brand": "Total" }, "26800008": { - "Nom": "AGIP PORTES LES VALENCES", - "Marque": "Agip" + "name": "AGIP PORTES LES VALENCES", + "brand": "Agip" }, "26902001": { - "Nom": "GEANT CASINO VALENCE 2", - "Marque": "Géant" + "name": "GEANT CASINO VALENCE 2", + "brand": "Géant" }, "27000003": { - "Nom": "SUPER U SA PRIMA", - "Marque": "Système U" + "name": "SUPER U SA PRIMA", + "brand": "Système U" }, "27000004": { - "Nom": "Intermarché EVREUX", - "Marque": "Intermarché" + "name": "Intermarché EVREUX", + "brand": "Intermarché" }, "27000006": { - "Nom": "Intermarché EVREUX La Madeleine", - "Marque": "Intermarché" + "name": "Intermarché EVREUX La Madeleine", + "brand": "Intermarché" }, "27000007": { - "Nom": "Intermarché EVREUX ST-MICHEL", - "Marque": "Intermarché" + "name": "Intermarché EVREUX ST-MICHEL", + "brand": "Intermarché" }, "27000008": { - "Nom": "RELAIS DE NORMANDIE", - "Marque": "Total Access" + "name": "RELAIS DE NORMANDIE", + "brand": "Total Access" }, "27009001": { - "Nom": "CORA EVREUX", - "Marque": "CORA" + "name": "CORA EVREUX", + "brand": "CORA" }, "27100001": { - "Nom": "Auchan supermarché", - "Marque": "Auchan" + "name": "Auchan supermarché", + "brand": "Auchan" }, "27110002": { - "Nom": "S.D.N.E.", - "Marque": "Leclerc" + "name": "S.D.N.E.", + "brand": "Leclerc" }, "27110003": { - "Nom": "Intermarché LE NEUBOURG", - "Marque": "Intermarché" + "name": "Intermarché LE NEUBOURG", + "brand": "Intermarché" }, "27120001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27120002": { - "Nom": "Intermarché PACY-SUR-EURE", - "Marque": "Intermarché" + "name": "Intermarché PACY-SUR-EURE", + "brand": "Intermarché" }, "27120003": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "27130001": { - "Nom": "SARL CARPEDIEM", - "Marque": "Carrefour Market" + "name": "SARL CARPEDIEM", + "brand": "Carrefour Market" }, "27130002": { - "Nom": "ETS JEAN CHANOINE", - "Marque": "Total" + "name": "ETS JEAN CHANOINE", + "brand": "Total" }, "27130003": { - "Nom": "AVREDIS STATION LECLERC RN 12", - "Marque": "Leclerc" + "name": "AVREDIS STATION LECLERC RN 12", + "brand": "Leclerc" }, "27130004": { - "Nom": "Station Service Avci", - "Marque": "Indépendant sans enseigne" + "name": "Station Service Avci", + "brand": "Indépendant sans enseigne" }, "27130005": { - "Nom": "Intermarché VERNEUIL SUR AVRE", - "Marque": "Intermarché" + "name": "Intermarché VERNEUIL SUR AVRE", + "brand": "Intermarché" }, "27140002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27140004": { - "Nom": "Intermarché GISORS", - "Marque": "Intermarché" + "name": "Intermarché GISORS", + "brand": "Intermarché" }, "27140006": { - "Nom": "RELAIS DES TEMPLIERS", - "Marque": "Total" + "name": "RELAIS DES TEMPLIERS", + "brand": "Total" }, "27150001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27150002": { - "Nom": "SAS JULIANE", - "Marque": "Système U" + "name": "SAS JULIANE", + "brand": "Système U" }, "27160001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27170002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27170003": { - "Nom": "SAS SACHA", - "Marque": "Total" + "name": "SAS SACHA", + "brand": "Total" }, "27190002": { - "Nom": "Intermarché CONCHES EN OUCHE", - "Marque": "Intermarché" + "name": "Intermarché CONCHES EN OUCHE", + "brand": "Intermarché" }, "27190003": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché" + "name": "Intermarché Contact", + "brand": "Intermarché" }, "27190004": { - "Nom": "S.A.R.L Ny TIANA", - "Marque": "Total" + "name": "S.A.R.L Ny TIANA", + "brand": "Total" }, "27200001": { - "Nom": "Carrefour VERNON", - "Marque": "Carrefour" + "name": "Carrefour VERNON", + "brand": "Carrefour" }, "27200002": { - "Nom": "STATION Total", - "Marque": "Total" + "name": "STATION Total", + "brand": "Total" }, "27200004": { - "Nom": "SARL ALBIK", - "Marque": "Avia" + "name": "SARL ALBIK", + "brand": "Avia" }, "27201001": { - "Nom": "VERMADIS", - "Marque": "Leclerc" + "name": "VERMADIS", + "brand": "Leclerc" }, "27210003": { - "Nom": "Intermarché BEUZEVILLE", - "Marque": "Intermarché" + "name": "Intermarché BEUZEVILLE", + "brand": "Intermarché" }, "27210004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27210006": { - "Nom": "STATION AVIA - SARL DENIMA", - "Marque": "Avia" + "name": "STATION AVIA - SARL DENIMA", + "brand": "Avia" }, "27210007": { - "Nom": "RELAIS BEUZEVILLE NORD", - "Marque": "Total" + "name": "RELAIS BEUZEVILLE NORD", + "brand": "Total" }, "27220001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27230002": { - "Nom": "yves anet", - "Marque": "Elan" + "name": "yves anet", + "brand": "Elan" }, "27230003": { - "Nom": "GARAGE DU STADE", - "Marque": "Total" + "name": "GARAGE DU STADE", + "brand": "Total" }, "27230004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27240001": { - "Nom": "Carrefour Market (SARL MARIEDIS)", - "Marque": "Carrefour Market" + "name": "Carrefour Market (SARL MARIEDIS)", + "brand": "Carrefour Market" }, "27250001": { - "Nom": "LEADER PRICE", - "Marque": "LE MUTANT" + "name": "LEADER PRICE", + "brand": "LE MUTANT" }, "27250002": { - "Nom": "Intermarché BOIS ARNAULT", - "Marque": "Intermarché" + "name": "Intermarché BOIS ARNAULT", + "brand": "Intermarché" }, "27260001": { - "Nom": "SARL GGE DUFOUR", - "Marque": "Total" + "name": "SARL GGE DUFOUR", + "brand": "Total" }, "27260002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27290001": { - "Nom": "Intermarché ST PHILBERT SUR RISL", - "Marque": "Intermarché" + "name": "Intermarché ST PHILBERT SUR RISL", + "brand": "Intermarché" }, "27300004": { - "Nom": "S.D.M.", - "Marque": "Leclerc" + "name": "S.D.M.", + "brand": "Leclerc" }, "27300005": { - "Nom": "Intermarché BERNAY", - "Marque": "Intermarché" + "name": "Intermarché BERNAY", + "brand": "Intermarché" }, "27300006": { - "Nom": "RELAIS MALBROUCK", - "Marque": "Total Access" + "name": "RELAIS MALBROUCK", + "brand": "Total Access" }, "27310005": { - "Nom": "Intermarché BOURG ACHARD", - "Marque": "Intermarché" + "name": "Intermarché BOURG ACHARD", + "brand": "Intermarché" }, "27310006": { - "Nom": "SARL GASOLINA", - "Marque": "Shell" + "name": "SARL GASOLINA", + "brand": "Shell" }, "27310007": { - "Nom": "RELAIS DU BOSGOUET", - "Marque": "Total" + "name": "RELAIS DU BOSGOUET", + "brand": "Total" }, "27310008": { - "Nom": "MARKET", - "Marque": "Carrefour Market" + "name": "MARKET", + "brand": "Carrefour Market" }, "27320001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27350001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "27350003": { - "Nom": "Station Service Medine", - "Marque": "Total" + "name": "Station Service Medine", + "brand": "Total" }, "27370001": { - "Nom": "SA GGE DOLPIERRE", - "Marque": "Total" + "name": "SA GGE DOLPIERRE", + "brand": "Total" }, "27370002": { - "Nom": "Intermarché ST PIERRE DES FLEURS", - "Marque": "Intermarché" + "name": "Intermarché ST PIERRE DES FLEURS", + "brand": "Intermarché" }, "27380001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27380002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27400001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "27400004": { - "Nom": "ESSO DU STADE", - "Marque": "ESSO" + "name": "ESSO DU STADE", + "brand": "ESSO" }, "27400007": { - "Nom": "BP VIRONVAY SUD", - "Marque": "BP" + "name": "BP VIRONVAY SUD", + "brand": "BP" }, "27400009": { - "Nom": "BP A13 AIRE DE VIRONVAY NORD", - "Marque": "BP" + "name": "BP A13 AIRE DE VIRONVAY NORD", + "brand": "BP" }, "27404001": { - "Nom": "Total LOUVIERS", - "Marque": "Total" + "name": "Total LOUVIERS", + "brand": "Total" }, "27406001": { - "Nom": "LOUVIERS DISTRIBUTION", - "Marque": "Leclerc" + "name": "LOUVIERS DISTRIBUTION", + "brand": "Leclerc" }, "27460001": { - "Nom": "SAS CLEMENCE 2", - "Marque": "Système U" + "name": "SAS CLEMENCE 2", + "brand": "Système U" }, "27460002": { - "Nom": "SARL DERENSY", - "Marque": "Total" + "name": "SARL DERENSY", + "brand": "Total" }, "27460003": { - "Nom": "ESSO IGOVILLE", - "Marque": "Esso Express" + "name": "ESSO IGOVILLE", + "brand": "Esso Express" }, "27500001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27500002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27500003": { - "Nom": "MR LECOEUR", - "Marque": "Total" + "name": "MR LECOEUR", + "brand": "Total" }, "27500004": { - "Nom": "Intermarché PONT AUDEMER", - "Marque": "Intermarché" + "name": "Intermarché PONT AUDEMER", + "brand": "Intermarché" }, "27500005": { - "Nom": "SA ALOHA", - "Marque": "Intermarché" + "name": "SA ALOHA", + "brand": "Intermarché" }, "27520001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "27540001": { - "Nom": "Intermarché IVRY LA BATAILLE", - "Marque": "Intermarché" + "name": "Intermarché IVRY LA BATAILLE", + "brand": "Intermarché" }, "27560001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "27600001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "27600006": { - "Nom": "RELAIS DE GAILLON", - "Marque": "Total Access" + "name": "RELAIS DE GAILLON", + "brand": "Total Access" }, "27610001": { - "Nom": "Intermarché ROMILLY SUR ANDELLE", - "Marque": "Intermarché" + "name": "Intermarché ROMILLY SUR ANDELLE", + "brand": "Intermarché" }, "27620002": { - "Nom": "Intermarché GASNY", - "Marque": "Intermarché" + "name": "Intermarché GASNY", + "brand": "Intermarché" }, "27670002": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "27670003": { - "Nom": "SAS K.M UNIVERSAL PETROL STATION", - "Marque": "Total" + "name": "SAS K.M UNIVERSAL PETROL STATION", + "brand": "Total" }, "27700001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27700004": { - "Nom": "Intermarché LES ANDELYS", - "Marque": "Intermarché" + "name": "Intermarché LES ANDELYS", + "brand": "Intermarché" }, "27700005": { - "Nom": "RELAIS NICOLAS POUSSIN", - "Marque": "Total" + "name": "RELAIS NICOLAS POUSSIN", + "brand": "Total" }, "27800001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27800002": { - "Nom": "Intermarché BRIONNE", - "Marque": "Intermarché" + "name": "Intermarché BRIONNE", + "brand": "Intermarché" }, "27910001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "27930001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "27930002": { - "Nom": "Carrefour EVREUX", - "Marque": "Carrefour" + "name": "Carrefour EVREUX", + "brand": "Carrefour" }, "27930005": { - "Nom": "Sa reclo", - "Marque": "Leclerc" + "name": "Sa reclo", + "brand": "Leclerc" }, "27930008": { - "Nom": "RELAIS GRAVIGNY", - "Marque": "Total Access" + "name": "RELAIS GRAVIGNY", + "brand": "Total Access" }, "27930009": { - "Nom": "SAS GPLTR", - "Marque": "Total" + "name": "SAS GPLTR", + "brand": "Total" }, "27940003": { - "Nom": "Intermarché AUBEVOYE", - "Marque": "Intermarché" + "name": "Intermarché AUBEVOYE", + "brand": "Intermarché" }, "27950001": { - "Nom": "MENNETRIER SCES AUTOMOBIL", - "Marque": "Total" + "name": "MENNETRIER SCES AUTOMOBIL", + "brand": "Total" }, "27950002": { - "Nom": "Intermarché SAINT-MARCEL", - "Marque": "Intermarché" + "name": "Intermarché SAINT-MARCEL", + "brand": "Intermarché" }, "28000001": { - "Nom": "Carrefour CHARTRES", - "Marque": "Carrefour" + "name": "Carrefour CHARTRES", + "brand": "Carrefour" }, "28000002": { - "Nom": "GARAGE GROULT AUTOMOBILE", - "Marque": "Total" + "name": "GARAGE GROULT AUTOMOBILE", + "brand": "Total" }, "28000007": { - "Nom": "Intermarché CHARTRES", - "Marque": "Intermarché" + "name": "Intermarché CHARTRES", + "brand": "Intermarché" }, "28000009": { - "Nom": "RELAIS ROCADE CHARTRES", - "Marque": "Total" + "name": "RELAIS ROCADE CHARTRES", + "brand": "Total" }, "28000010": { - "Nom": "RELAIS DES BEAUMONTS", - "Marque": "Total Access" + "name": "RELAIS DES BEAUMONTS", + "brand": "Total Access" }, "28000011": { - "Nom": "relais Total Chartres Mermoz", - "Marque": "Total Access" + "name": "relais Total Chartres Mermoz", + "brand": "Total Access" }, "28100002": { - "Nom": "S.A.S DREUDIS", - "Marque": "Leclerc" + "name": "S.A.S DREUDIS", + "brand": "Leclerc" }, "28100003": { - "Nom": "CORA DREUX", - "Marque": "CORA" + "name": "CORA DREUX", + "brand": "CORA" }, "28100006": { - "Nom": "RELAIS DE DREUX", - "Marque": "Total Access" + "name": "RELAIS DE DREUX", + "brand": "Total Access" }, "28112001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "28120002": { - "Nom": "SA ILLIERS DISTRIBUTION", - "Marque": "Intermarché" + "name": "SA ILLIERS DISTRIBUTION", + "brand": "Intermarché" }, "28120003": { - "Nom": "Intermarché BAILLEAU LE PIN", - "Marque": "Intermarché" + "name": "Intermarché BAILLEAU LE PIN", + "brand": "Intermarché" }, "28130001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "28130002": { - "Nom": "Hyper U HANCHES", - "Marque": "Système U" + "name": "Hyper U HANCHES", + "brand": "Système U" }, "28130003": { - "Nom": "Intermarché MAINTENON", - "Marque": "Intermarché" + "name": "Intermarché MAINTENON", + "brand": "Intermarché" }, "28150001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "28150002": { - "Nom": "Intermarché - SAS POMME", - "Marque": "Intermarché" + "name": "Intermarché - SAS POMME", + "brand": "Intermarché" }, "28160003": { - "Nom": "SAS GGE PICHARD", - "Marque": "Total" + "name": "SAS GGE PICHARD", + "brand": "Total" }, "28160004": { - "Nom": "ESSO BROU DAMPIERRE", - "Marque": "Esso" + "name": "ESSO BROU DAMPIERRE", + "brand": "Esso" }, "28160005": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "28160006": { - "Nom": "Intermarché BROU", - "Marque": "Intermarché" + "name": "Intermarché BROU", + "brand": "Intermarché" }, "28160008": { - "Nom": "STATION BP MANOIR DU PERCHE", - "Marque": "BP" + "name": "STATION BP MANOIR DU PERCHE", + "brand": "BP" }, "28170002": { - "Nom": "FAVRIL Alain", - "Marque": "Indépendant sans enseigne" + "name": "FAVRIL Alain", + "brand": "Indépendant sans enseigne" }, "28190001": { - "Nom": "Intermarché ST GEORGES SUR EURE", - "Marque": "Intermarché" + "name": "Intermarché ST GEORGES SUR EURE", + "brand": "Intermarché" }, "28190002": { - "Nom": "Intermarché FONTAINE LA GUYON", - "Marque": "Intermarché" + "name": "Intermarché FONTAINE LA GUYON", + "brand": "Intermarché" }, "28190003": { - "Nom": "Super u", - "Marque": "Système U" + "name": "Super u", + "brand": "Système U" }, "28200002": { - "Nom": "CHATEAUDUN SNVRA", - "Marque": "Total" + "name": "CHATEAUDUN SNVRA", + "brand": "Total" }, "28200003": { - "Nom": "DUNOIS DISTRIBUTION", - "Marque": "Leclerc" + "name": "DUNOIS DISTRIBUTION", + "brand": "Leclerc" }, "28200005": { - "Nom": "Intermarché LES GARENNES", - "Marque": "Intermarché" + "name": "Intermarché LES GARENNES", + "brand": "Intermarché" }, "28210002": { - "Nom": "Intermarché NOGENT LE ROI", - "Marque": "Intermarché" + "name": "Intermarché NOGENT LE ROI", + "brand": "Intermarché" }, "28210003": { - "Nom": "NOGENT SERVICES AUTOMOBILES", - "Marque": "Total" + "name": "NOGENT SERVICES AUTOMOBILES", + "brand": "Total" }, "28220002": { - "Nom": "Intermarché CLOYES", - "Marque": "Intermarché" + "name": "Intermarché CLOYES", + "brand": "Intermarché" }, "28240001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "28240005": { - "Nom": "Sas BENEFAN", - "Marque": "Intermarché" + "name": "Sas BENEFAN", + "brand": "Intermarché" }, "28250001": { - "Nom": "Intermarché SENONCHES", - "Marque": "Intermarché" + "name": "Intermarché SENONCHES", + "brand": "Intermarché" }, "28260003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "28260005": { - "Nom": "Anetdis", - "Marque": "Leclerc" + "name": "Anetdis", + "brand": "Leclerc" }, "28270002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "28290001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "28300004": { - "Nom": "Intermarché MAINVILLIERS", - "Marque": "Intermarché" + "name": "Intermarché MAINVILLIERS", + "brand": "Intermarché" }, "28300005": { - "Nom": "Intermarché CHAMPHOL", - "Marque": "Intermarché" + "name": "Intermarché CHAMPHOL", + "brand": "Intermarché" }, "28300008": { - "Nom": "RELAIS AMILLY", - "Marque": "Total Access" + "name": "RELAIS AMILLY", + "brand": "Total Access" }, "28300009": { - "Nom": "Shell Bois-Paris Sarl FD Performance", - "Marque": "Shell" + "name": "Shell Bois-Paris Sarl FD Performance", + "brand": "Shell" }, "28300010": { - "Nom": "STATION SHELL GASVILLE", - "Marque": "Shell" + "name": "STATION SHELL GASVILLE", + "brand": "Shell" }, "28310002": { - "Nom": "SARL ETS GODART", - "Marque": "Total" + "name": "SARL ETS GODART", + "brand": "Total" }, "28310004": { - "Nom": "SIGVAL SHELL", - "Marque": "Shell" + "name": "SIGVAL SHELL", + "brand": "Shell" }, "28310006": { - "Nom": "Intermarché JANVILLE", - "Marque": "Intermarché" + "name": "Intermarché JANVILLE", + "brand": "Intermarché" }, "28310010": { - "Nom": "SHELL PLAINES DE BEAUCE", - "Marque": "Shell" + "name": "SHELL PLAINES DE BEAUCE", + "brand": "Shell" }, "28320002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "28330002": { - "Nom": "Intermarché LA BAZOCHE GOUET", - "Marque": "Intermarché" + "name": "Intermarché LA BAZOCHE GOUET", + "brand": "Intermarché" }, "28330003": { - "Nom": "PROXI SUPER", - "Marque": "PROXI SUPER" + "name": "PROXI SUPER", + "brand": "PROXI SUPER" }, "28350001": { - "Nom": "AVREDIS", - "Marque": "Leclerc" + "name": "AVREDIS", + "brand": "Leclerc" }, "28400002": { - "Nom": "SOMADIS", - "Marque": "Leclerc" + "name": "SOMADIS", + "brand": "Leclerc" }, "28400004": { - "Nom": "Intermarché Hyper", - "Marque": "Intermarché" + "name": "Intermarché Hyper", + "brand": "Intermarché" }, "28400005": { - "Nom": "AMG EXPRESS", - "Marque": "Total" + "name": "AMG EXPRESS", + "brand": "Total" }, "28403001": { - "Nom": "BP NOGENT LE ROTROU", - "Marque": "BP" + "name": "BP NOGENT LE ROTROU", + "brand": "BP" }, "28410002": { - "Nom": "Carrefour Contact ABONDANT", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact ABONDANT", + "brand": "Carrefour Contact" }, "28420001": { - "Nom": "SARL GOUHIER", - "Marque": "Total" + "name": "SARL GOUHIER", + "brand": "Total" }, "28480001": { - "Nom": "ELAN - GARAGE DE L'ETANG", - "Marque": "Elan" + "name": "ELAN - GARAGE DE L'ETANG", + "brand": "Elan" }, "28500001": { - "Nom": "GOURNAY DISTRIBUTION", - "Marque": "Système U" + "name": "GOURNAY DISTRIBUTION", + "brand": "Système U" }, "28500005": { - "Nom": "Intermarché VERNOUILLET", - "Marque": "Intermarché" + "name": "Intermarché VERNOUILLET", + "brand": "Intermarché" }, "28500006": { - "Nom": "Intermarché CHERISY", - "Marque": "Intermarché" + "name": "Intermarché CHERISY", + "brand": "Intermarché" }, "28500007": { - "Nom": "RELAIS DE LA COUETTE", - "Marque": "Total" + "name": "RELAIS DE LA COUETTE", + "brand": "Total" }, "28500008": { - "Nom": "RELAIS DU BOIS DE VERT", - "Marque": "Total Access" + "name": "RELAIS DU BOIS DE VERT", + "brand": "Total Access" }, "28600002": { - "Nom": "SODICHAR", - "Marque": "Leclerc" + "name": "SODICHAR", + "brand": "Leclerc" }, "28600003": { - "Nom": "Total RELAIS DE LA CAVEE", - "Marque": "Total" + "name": "Total RELAIS DE LA CAVEE", + "brand": "Total" }, "28630001": { - "Nom": "Intermarché MORANCEZ", - "Marque": "Intermarché Contact" + "name": "Intermarché MORANCEZ", + "brand": "Intermarché Contact" }, "28700001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "28700003": { - "Nom": "LEADER PRICE ROINVILLE SOUS AUNEAU", - "Marque": "Leader Price" + "name": "LEADER PRICE ROINVILLE SOUS AUNEAU", + "brand": "Leader Price" }, "28700004": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "28800001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "29000001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "29000005": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "29000006": { - "Nom": "LECLERC QUIMPER (KERVILLY) - 150 route de Brest 29000 QUIMPER", - "Marque": "Leclerc" + "name": "LECLERC QUIMPER (KERVILLY) - 150 route de Brest 29000 QUIMPER", + "brand": "Leclerc" }, "29000007": { - "Nom": "GARAGE HERVE Pascal", - "Marque": "Esso" + "name": "GARAGE HERVE Pascal", + "brand": "Esso" }, "29000011": { - "Nom": "RELAIS DU FRUGY", - "Marque": "Total" + "name": "RELAIS DU FRUGY", + "brand": "Total" }, "29000012": { - "Nom": "RELAIS QUIMPER ROCADE SUD", - "Marque": "Total Access" + "name": "RELAIS QUIMPER ROCADE SUD", + "brand": "Total Access" }, "29000013": { - "Nom": "RELAIS QUIMPER CENTRE", - "Marque": "Total Access" + "name": "RELAIS QUIMPER CENTRE", + "brand": "Total Access" }, "29000014": { - "Nom": "LECLERC STANG BIHAN", - "Marque": "Leclerc" + "name": "LECLERC STANG BIHAN", + "brand": "Leclerc" }, "29100003": { - "Nom": "Centre E.Leclerc Douarnenez", - "Marque": "Leclerc" + "name": "Centre E.Leclerc Douarnenez", + "brand": "Leclerc" }, "29100004": { - "Nom": "Intermarché DOUARNENEZ", - "Marque": "Intermarché" + "name": "Intermarché DOUARNENEZ", + "brand": "Intermarché" }, "29100007": { - "Nom": "RELAIS DOUARNENEZ KERHARO", - "Marque": "Total Access" + "name": "RELAIS DOUARNENEZ KERHARO", + "brand": "Total Access" }, "29120001": { - "Nom": "Super U COMBRIT", - "Marque": "Système U" + "name": "Super U COMBRIT", + "brand": "Système U" }, "29120003": { - "Nom": "Leclerc Pont l'Abbé", - "Marque": "Leclerc" + "name": "Leclerc Pont l'Abbé", + "brand": "Leclerc" }, "29120004": { - "Nom": "Intermarché PONT-L'ABBE", - "Marque": "Intermarché" + "name": "Intermarché PONT-L'ABBE", + "brand": "Intermarché" }, "29120005": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "29120006": { - "Nom": "Intermarché PLOMEUR", - "Marque": "Intermarché" + "name": "Intermarché PLOMEUR", + "brand": "Intermarché" }, "29120007": { - "Nom": "RELAIS DE L'ETANG", - "Marque": "Total Access" + "name": "RELAIS DE L'ETANG", + "brand": "Total Access" }, "29129001": { - "Nom": "Intermarché NEVEZ", - "Marque": "Intermarché" + "name": "Intermarché NEVEZ", + "brand": "Intermarché" }, "29140002": { - "Nom": "Super U ROSPORDEN", - "Marque": "Système U" + "name": "Super U ROSPORDEN", + "brand": "Système U" }, "29140003": { - "Nom": "SARL RELAIS DE L'ETANG", - "Marque": "Total" + "name": "SARL RELAIS DE L'ETANG", + "brand": "Total" }, "29140008": { - "Nom": "RELAIS DE SAINT-YVI", - "Marque": "Total Access" + "name": "RELAIS DE SAINT-YVI", + "brand": "Total Access" }, "29140009": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "29143001": { - "Nom": "Intermarché PLOZEVET", - "Marque": "Intermarché" + "name": "Intermarché PLOZEVET", + "brand": "Intermarché" }, "29150003": { - "Nom": "Leclerc chateaulin", - "Marque": "Leclerc" + "name": "Leclerc chateaulin", + "brand": "Leclerc" }, "29150004": { - "Nom": "Intermarché CHATEAULIN", - "Marque": "Intermarché" + "name": "Intermarché CHATEAULIN", + "brand": "Intermarché" }, "29150005": { - "Nom": "SARL HERVE FEILLANT", - "Marque": "Total" + "name": "SARL HERVE FEILLANT", + "brand": "Total" }, "29160001": { - "Nom": "STATION SERVICE Total", - "Marque": "Total" + "name": "STATION SERVICE Total", + "brand": "Total" }, "29160002": { - "Nom": "GARAGE DONNARD SARL", - "Marque": "Elan" + "name": "GARAGE DONNARD SARL", + "brand": "Elan" }, "29160003": { - "Nom": "CROZONDIS DISTRIBUTION", - "Marque": "Leclerc" + "name": "CROZONDIS DISTRIBUTION", + "brand": "Leclerc" }, "29160004": { - "Nom": "CROZONDIS EXPRESS", - "Marque": "Leclerc" + "name": "CROZONDIS EXPRESS", + "brand": "Leclerc" }, "29170001": { - "Nom": "E.Leclerc Fouesnant/Pleuven", - "Marque": "Leclerc" + "name": "E.Leclerc Fouesnant/Pleuven", + "brand": "Leclerc" }, "29170004": { - "Nom": "GARAGE MERRIEN", - "Marque": "Total" + "name": "GARAGE MERRIEN", + "brand": "Total" }, "29170005": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "29180001": { - "Nom": "Super U PLOGONNEC", - "Marque": "Système U" + "name": "Super U PLOGONNEC", + "brand": "Système U" }, "29190001": { - "Nom": "Intermarché PLEYBEN", - "Marque": "Intermarché" + "name": "Intermarché PLEYBEN", + "brand": "Intermarché" }, "29196001": { - "Nom": "Carrefour QUIMPER", - "Marque": "Carrefour" + "name": "Carrefour QUIMPER", + "brand": "Carrefour" }, "29200001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "29200002": { - "Nom": "Super U BREST KEREDERN", - "Marque": "Système U" + "name": "Super U BREST KEREDERN", + "brand": "Système U" }, "29200004": { - "Nom": "ATELIERS CAUGANT SA", - "Marque": "Total Access" + "name": "ATELIERS CAUGANT SA", + "brand": "Total Access" }, "29200008": { - "Nom": "Carrefour BREST", - "Marque": "Carrefour" + "name": "Carrefour BREST", + "brand": "Carrefour" }, "29200009": { - "Nom": "Intermarché SAS HEBRIDES BREST MASSON", - "Marque": "Intermarché" + "name": "Intermarché SAS HEBRIDES BREST MASSON", + "brand": "Intermarché" }, "29200014": { - "Nom": "Intermarché LE VALLON", - "Marque": "Intermarché" + "name": "Intermarché LE VALLON", + "brand": "Intermarché" }, "29200015": { - "Nom": "RELAIS BREST EUROPE", - "Marque": "Total Access" + "name": "RELAIS BREST EUROPE", + "brand": "Total Access" }, "29200016": { - "Nom": "RELAIS VIEUX ST MARC", - "Marque": "Total Access" + "name": "RELAIS VIEUX ST MARC", + "brand": "Total Access" }, "29200017": { - "Nom": "RELAIS DE KERANROY", - "Marque": "Total Access" + "name": "RELAIS DE KERANROY", + "brand": "Total Access" }, "29200018": { - "Nom": "U Express KERICHEN", - "Marque": "Système U" + "name": "U Express KERICHEN", + "brand": "Système U" }, "29217001": { - "Nom": "Intermarché PLOUGONVELIN", - "Marque": "Intermarché" + "name": "Intermarché PLOUGONVELIN", + "brand": "Intermarché" }, "29228001": { - "Nom": "E LECLERC PORTE DE GOUESNOU", - "Marque": "Leclerc" + "name": "E LECLERC PORTE DE GOUESNOU", + "brand": "Leclerc" }, "29233001": { - "Nom": "U Express CLEDER", - "Marque": "Système U" + "name": "U Express CLEDER", + "brand": "Système U" }, "29234001": { - "Nom": "EURL DI GIOVANNI", - "Marque": "Total" + "name": "EURL DI GIOVANNI", + "brand": "Total" }, "29250001": { - "Nom": "Super U ST POL DE LEON", - "Marque": "Système U" + "name": "Super U ST POL DE LEON", + "brand": "Système U" }, "29250002": { - "Nom": "POLDIS", - "Marque": "Leclerc" + "name": "POLDIS", + "brand": "Leclerc" }, "29260002": { - "Nom": "REL COTE LEGENDES", - "Marque": "Total" + "name": "REL COTE LEGENDES", + "brand": "Total" }, "29260003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "29260004": { - "Nom": "SA COTE DES LEGENDES", - "Marque": "Leclerc" + "name": "SA COTE DES LEGENDES", + "brand": "Leclerc" }, "29270003": { - "Nom": "Intermarché CARHAIX", - "Marque": "Intermarché" + "name": "Intermarché CARHAIX", + "brand": "Intermarché" }, "29270005": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Super Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Super Casino" }, "29280001": { - "Nom": "Carrefour PLOUZANE", - "Marque": "Carrefour" + "name": "Carrefour PLOUZANE", + "brand": "Carrefour" }, "29280003": { - "Nom": "Intermarché PLOUZANE", - "Marque": "Intermarché" + "name": "Intermarché PLOUZANE", + "brand": "Intermarché" }, "29290001": { - "Nom": "Carrefour ST RENAN", - "Marque": "Carrefour" + "name": "Carrefour ST RENAN", + "brand": "Carrefour" }, "29290002": { - "Nom": "TY KORN SARL", - "Marque": "Elan" + "name": "TY KORN SARL", + "brand": "Elan" }, "29290003": { - "Nom": "CAFFEROUR Contact LOCMARIA-PLOUZANE", - "Marque": "Carrefour Contact" + "name": "CAFFEROUR Contact LOCMARIA-PLOUZANE", + "brand": "Carrefour Contact" }, "29291001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "29300002": { - "Nom": "ELLE-DISTRIBUTION", - "Marque": "Leclerc" + "name": "ELLE-DISTRIBUTION", + "brand": "Leclerc" }, "29300003": { - "Nom": "Intermarché MELLAC", - "Marque": "Intermarché" + "name": "Intermarché MELLAC", + "brand": "Intermarché" }, "29300004": { - "Nom": "Carrefourmarket", - "Marque": "Carrefour Market" + "name": "Carrefourmarket", + "brand": "Carrefour Market" }, "29300005": { - "Nom": "Lina", - "Marque": "Indépendant sans enseigne" + "name": "Lina", + "brand": "Indépendant sans enseigne" }, "29340001": { - "Nom": "ZAJDEL Laurent", - "Marque": "Total" + "name": "ZAJDEL Laurent", + "brand": "Total" }, "29340002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "29350001": { - "Nom": "Intermarché MOELAN SUR MER", - "Marque": "Intermarché" + "name": "Intermarché MOELAN SUR MER", + "brand": "Intermarché" }, "29350002": { - "Nom": "STAN TP", - "Marque": "Indépendant sans enseigne" + "name": "STAN TP", + "brand": "Indépendant sans enseigne" }, "29360002": { - "Nom": "SUPERMARCHE Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "SUPERMARCHE Carrefour Contact", + "brand": "Carrefour Contact" }, "29380001": { - "Nom": "Intermarché BANNALEC", - "Marque": "Intermarché" + "name": "Intermarché BANNALEC", + "brand": "Intermarché" }, "29390002": { - "Nom": "SCAER DISTRIBUTION", - "Marque": "Leclerc" + "name": "SCAER DISTRIBUTION", + "brand": "Leclerc" }, "29400001": { - "Nom": "Super U LANDIVISIAU", - "Marque": "Système U" + "name": "Super U LANDIVISIAU", + "brand": "Système U" }, "29400002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "29403001": { - "Nom": "LANDI-DISTRIBUTION", - "Marque": "Leclerc" + "name": "LANDI-DISTRIBUTION", + "brand": "Leclerc" }, "29410001": { - "Nom": "Super U PLEYBER CHRIST", - "Marque": "Système U" + "name": "Super U PLEYBER CHRIST", + "brand": "Système U" }, "29419001": { - "Nom": "SODILECK S.A.S", - "Marque": "Leclerc" + "name": "SODILECK S.A.S", + "brand": "Leclerc" }, "29420001": { - "Nom": "U Express PLOUENAN", - "Marque": "Système U" + "name": "U Express PLOUENAN", + "brand": "Système U" }, "29420002": { - "Nom": "GARAGE DE LA GARE-PLOUVORN", - "Marque": "Total" + "name": "GARAGE DE LA GARE-PLOUVORN", + "brand": "Total" }, "29420003": { - "Nom": "Carrefour Contact", - "Marque": "Colruyt" + "name": "Carrefour Contact", + "brand": "Colruyt" }, "29430001": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Super Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Super Casino" }, "29430002": { - "Nom": "Intermarché PLOUESCAT", - "Marque": "Intermarché" + "name": "Intermarché PLOUESCAT", + "brand": "Intermarché" }, "29440001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "29450001": { - "Nom": "Station U du Pont Bleu", - "Marque": "Système U" + "name": "Station U du Pont Bleu", + "brand": "Système U" }, "29460001": { - "Nom": "Super U DAOULAS", - "Marque": "Système U" + "name": "Super U DAOULAS", + "brand": "Système U" }, "29460003": { - "Nom": "GGE GUEZENEC", - "Marque": "Total" + "name": "GGE GUEZENEC", + "brand": "Total" }, "29470003": { - "Nom": "E.LECLERC PLOUGASTEL", - "Marque": "Leclerc" + "name": "E.LECLERC PLOUGASTEL", + "brand": "Leclerc" }, "29470004": { - "Nom": "Super U PLOUGASTEL", - "Marque": "Système U" + "name": "Super U PLOUGASTEL", + "brand": "Système U" }, "29480001": { - "Nom": "SAS LRK DIS", - "Marque": "Leclerc" + "name": "SAS LRK DIS", + "brand": "Leclerc" }, "29490002": { - "Nom": "SUPER U GUIPAVAS", - "Marque": "Système U" + "name": "SUPER U GUIPAVAS", + "brand": "Système U" }, "29500003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "29510004": { - "Nom": "Intermarché BRIEC DE L'ODET", - "Marque": "Intermarché" + "name": "Intermarché BRIEC DE L'ODET", + "brand": "Intermarché" }, "29520001": { - "Nom": "CHATEAUNEUF-DISTRIBUTION", - "Marque": "Leclerc" + "name": "CHATEAUNEUF-DISTRIBUTION", + "brand": "Leclerc" }, "29520003": { - "Nom": "Intermarché CHATEAUNEUF DU FAOU", - "Marque": "Intermarché" + "name": "Intermarché CHATEAUNEUF DU FAOU", + "brand": "Intermarché" }, "29550001": { - "Nom": "Intermarché PLOMODIERN", - "Marque": "Intermarché" + "name": "Intermarché PLOMODIERN", + "brand": "Intermarché" }, "29570001": { - "Nom": "Super U CAMARET", - "Marque": "Système U" + "name": "Super U CAMARET", + "brand": "Système U" }, "29580001": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Super Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Super Casino" }, "29590001": { - "Nom": "Super U LE FAOU", - "Marque": "Système U" + "name": "Super U LE FAOU", + "brand": "Système U" }, "29600002": { - "Nom": "MORLAIX DISTRIBUTION", - "Marque": "Leclerc" + "name": "MORLAIX DISTRIBUTION", + "brand": "Leclerc" }, "29600003": { - "Nom": "Intermarché PLOURIN LES MORLAIX", - "Marque": "Intermarché" + "name": "Intermarché PLOURIN LES MORLAIX", + "brand": "Intermarché" }, "29600004": { - "Nom": "RELAIS KEROLZEC", - "Marque": "Total" + "name": "RELAIS KEROLZEC", + "brand": "Total" }, "29610002": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Casino" }, "29620001": { - "Nom": "Super U LANMEUR", - "Marque": "Système U" + "name": "Super U LANMEUR", + "brand": "Système U" }, "29630002": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Super Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Super Casino" }, "29640001": { - "Nom": "SUPERMARCHE SPAR", - "Marque": "Supermarchés Spar" + "name": "SUPERMARCHE SPAR", + "brand": "Supermarchés Spar" }, "29650001": { - "Nom": "U Express GUERLESQUIN", - "Marque": "Système U" + "name": "U Express GUERLESQUIN", + "brand": "Système U" }, "29660002": { - "Nom": "CASINO CARANTEC", - "Marque": "Casino" + "name": "CASINO CARANTEC", + "brand": "Casino" }, "29680002": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Super Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Super Casino" }, "29690002": { - "Nom": "Intermarché HUELGOAT", - "Marque": "Intermarché" + "name": "Intermarché HUELGOAT", + "brand": "Intermarché" }, "29700001": { - "Nom": "8 à Huit PLOMELIN", - "Marque": "Carrefour Express" + "name": "8 à Huit PLOMELIN", + "brand": "Carrefour Express" }, "29700002": { - "Nom": "Intermarché PLUGUFFAN", - "Marque": "Intermarché" + "name": "Intermarché PLUGUFFAN", + "brand": "Intermarché" }, "29710002": { - "Nom": "Intermarché PLONEIS", - "Marque": "Intermarché Contact" + "name": "Intermarché PLONEIS", + "brand": "Intermarché Contact" }, "29710004": { - "Nom": "SUPER U - SARL HEOL", - "Marque": "Système U" + "name": "SUPER U - SARL HEOL", + "brand": "Système U" }, "29720002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "29720003": { - "Nom": "Station Service E. Leclerc Kerganet", - "Marque": "Leclerc" + "name": "Station Service E. Leclerc Kerganet", + "brand": "Leclerc" }, "29730004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "29740001": { - "Nom": "Super U PLOBANNALEC", - "Marque": "Système U" + "name": "Super U PLOBANNALEC", + "brand": "Système U" }, "29750001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "29760004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "29770001": { - "Nom": "M.BUREL", - "Marque": "Total" + "name": "M.BUREL", + "brand": "Total" }, "29770002": { - "Nom": "AUDIERNE-DIS", - "Marque": "Leclerc" + "name": "AUDIERNE-DIS", + "brand": "Leclerc" }, "29770003": { - "Nom": "ECOMARCHE PRIMELIN", - "Marque": "Intermarché" + "name": "ECOMARCHE PRIMELIN", + "brand": "Intermarché" }, "29780001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "29790001": { - "Nom": "Super U PONT CROIX", - "Marque": "Système U" + "name": "Super U PONT CROIX", + "brand": "Système U" }, "29800001": { - "Nom": "GARAGE nicolas", - "Marque": "Total" + "name": "GARAGE nicolas", + "brand": "Total" }, "29800003": { - "Nom": "Intermarché LANDERNEAU", - "Marque": "Intermarché" + "name": "Intermarché LANDERNEAU", + "brand": "Intermarché" }, "29800004": { - "Nom": "E.LECLERC EXPRESS", - "Marque": "Leclerc" + "name": "E.LECLERC EXPRESS", + "brand": "Leclerc" }, "29810002": { - "Nom": "Super U PLOUARZEL", - "Marque": "Système U" + "name": "Super U PLOUARZEL", + "brand": "Système U" }, "29820001": { - "Nom": "E.LECLERC GUILERS", - "Marque": "Leclerc" + "name": "E.LECLERC GUILERS", + "brand": "Leclerc" }, "29820002": { - "Nom": "E.LECLERC Avenue 1 ère DFL", - "Marque": "Leclerc" + "name": "E.LECLERC Avenue 1 ère DFL", + "brand": "Leclerc" }, "29830002": { - "Nom": "PLOUDAL DISTRIBUTION S.A.", - "Marque": "Leclerc" + "name": "PLOUDAL DISTRIBUTION S.A.", + "brand": "Leclerc" }, "29830003": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Super Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Super Casino" }, "29833001": { - "Nom": "CARHAIX DISTRIBUTION", - "Marque": "Leclerc" + "name": "CARHAIX DISTRIBUTION", + "brand": "Leclerc" }, "29860002": { - "Nom": "Super U PLABENNEC", - "Marque": "Système U" + "name": "Super U PLABENNEC", + "brand": "Système U" }, "29860003": { - "Nom": "Intermarché PLABENNEC", - "Marque": "Intermarché" + "name": "Intermarché PLABENNEC", + "brand": "Intermarché" }, "29870001": { - "Nom": "PLOUDINER SAS", - "Marque": "Leclerc" + "name": "PLOUDINER SAS", + "brand": "Leclerc" }, "29870002": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Super Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Super Casino" }, "29870003": { - "Nom": "Total Lannilis", - "Marque": "Total" + "name": "Total Lannilis", + "brand": "Total" }, "29880002": { - "Nom": "Intermarché PLOUGUERNEAU", - "Marque": "Intermarché" + "name": "Intermarché PLOUGUERNEAU", + "brand": "Intermarché" }, "29880005": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "29890002": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Super Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Super Casino" }, "29900003": { - "Nom": "CONCARNEAU-DISTRIBUTION", - "Marque": "Leclerc" + "name": "CONCARNEAU-DISTRIBUTION", + "brand": "Leclerc" }, "29900004": { - "Nom": "Intermarché CONCARNEAU", - "Marque": "Intermarché" + "name": "Intermarché CONCARNEAU", + "brand": "Intermarché" }, "29900005": { - "Nom": "Garage du Minaouët - Station Total", - "Marque": "Total" + "name": "Garage du Minaouët - Station Total", + "brand": "Total" }, "29910002": { - "Nom": "CASINO TREGUNC", - "Marque": "Casino" + "name": "CASINO TREGUNC", + "brand": "Casino" }, "29930002": { - "Nom": "Intermarché PONT AVEN", - "Marque": "Intermarché" + "name": "Intermarché PONT AVEN", + "brand": "Intermarché" }, "29950001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "30000006": { - "Nom": "ESSO MILLE COLONNES", - "Marque": "Esso Express" + "name": "ESSO MILLE COLONNES", + "brand": "Esso Express" }, "30000008": { - "Nom": "NEMODIS SAS", - "Marque": "Leclerc" + "name": "NEMODIS SAS", + "brand": "Leclerc" }, "30000009": { - "Nom": "Campus", - "Marque": "Campus" + "name": "Campus", + "brand": "Campus" }, "30000010": { - "Nom": "sarl lothi porte des cevennes", - "Marque": "Campus" + "name": "sarl lothi porte des cevennes", + "brand": "Campus" }, "30000011": { - "Nom": "Intermarché NIMES", - "Marque": "Intermarché" + "name": "Intermarché NIMES", + "brand": "Intermarché" }, "30000012": { - "Nom": "Intermarché VACQUEROLLES", - "Marque": "Intermarché" + "name": "Intermarché VACQUEROLLES", + "brand": "Intermarché" }, "30000016": { - "Nom": "LECLERC - DRIVE", - "Marque": "Leclerc" + "name": "LECLERC - DRIVE", + "brand": "Leclerc" }, "30000019": { - "Nom": "RELAIS NIMES LECLERC", - "Marque": "Total Access" + "name": "RELAIS NIMES LECLERC", + "brand": "Total Access" }, "30000020": { - "Nom": "BP NIMES PROVENCE 8 à Huit", - "Marque": "BP" + "name": "BP NIMES PROVENCE 8 à Huit", + "brand": "BP" }, "30000021": { - "Nom": "Sarl 2 T Services", - "Marque": "Total" + "name": "Sarl 2 T Services", + "brand": "Total" }, "30021001": { - "Nom": "Carrefour NIMES SUD", - "Marque": "Carrefour" + "name": "Carrefour NIMES SUD", + "brand": "Carrefour" }, "30100001": { - "Nom": "Hyper U", - "Marque": "Système U" + "name": "Hyper U", + "brand": "Système U" }, "30100002": { - "Nom": "Casino", - "Marque": "Casino" + "name": "Casino", + "brand": "Casino" }, "30100003": { - "Nom": "SUPER U ALES BRUEGES", - "Marque": "Système U" + "name": "SUPER U ALES BRUEGES", + "brand": "Système U" }, "30100005": { - "Nom": "RELAIS LA CHADENEDE", - "Marque": "Total" + "name": "RELAIS LA CHADENEDE", + "brand": "Total" }, "30100007": { - "Nom": "SOGARDIS", - "Marque": "Leclerc" + "name": "SOGARDIS", + "brand": "Leclerc" }, "30100011": { - "Nom": "STATION SERVICE DE CLAVIERES", - "Marque": "Agip" + "name": "STATION SERVICE DE CLAVIERES", + "brand": "Agip" }, "30100012": { - "Nom": "intermarche les allemandes", - "Marque": "Intermarché" + "name": "intermarche les allemandes", + "brand": "Intermarché" }, "30100013": { - "Nom": "RELAIS BRUEGES", - "Marque": "Total Access" + "name": "RELAIS BRUEGES", + "brand": "Total Access" }, "30104001": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "30110003": { - "Nom": "Intermarché LA GRAND COMBE", - "Marque": "Intermarché" + "name": "Intermarché LA GRAND COMBE", + "brand": "Intermarché" }, "30110004": { - "Nom": "SAS HOGGAR", - "Marque": "Netto" + "name": "SAS HOGGAR", + "brand": "Netto" }, "30120002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "30120003": { - "Nom": "Intermarché AVEZE", - "Marque": "Intermarché" + "name": "Intermarché AVEZE", + "brand": "Intermarché" }, "30126003": { - "Nom": "CASINO CARBURANTS", - "Marque": "Casino" + "name": "CASINO CARBURANTS", + "brand": "Casino" }, "30126005": { - "Nom": "ESSO TAVEL NORD", - "Marque": "Esso" + "name": "ESSO TAVEL NORD", + "brand": "Esso" }, "30126008": { - "Nom": "AGIP TAVEL SUD", - "Marque": "Agip" + "name": "AGIP TAVEL SUD", + "brand": "Agip" }, "30127001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "30129001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "30129002": { - "Nom": "Intermarché MANDUEL", - "Marque": "Intermarché" + "name": "Intermarché MANDUEL", + "brand": "Intermarché" }, "30130002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "30130003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "30130004": { - "Nom": "Intermarché PONT SAINT ESPRIT", - "Marque": "Intermarché" + "name": "Intermarché PONT SAINT ESPRIT", + "brand": "Intermarché" }, "30130005": { - "Nom": "Garage du pont cassé", - "Marque": "Indépendant sans enseigne" + "name": "Garage du pont cassé", + "brand": "Indépendant sans enseigne" }, "30130010": { - "Nom": "RELAIS DU LAUZON", - "Marque": "Total" + "name": "RELAIS DU LAUZON", + "brand": "Total" }, "30132002": { - "Nom": "Intermarché CAISSARGUES", - "Marque": "Intermarché" + "name": "Intermarché CAISSARGUES", + "brand": "Intermarché" }, "30132003": { - "Nom": "Station Le Mirman", - "Marque": "Dyneff" + "name": "Station Le Mirman", + "brand": "Dyneff" }, "30133001": { - "Nom": "S.A. ANGLEDIS", - "Marque": "Leclerc" + "name": "S.A. ANGLEDIS", + "brand": "Leclerc" }, "30140001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "30140002": { - "Nom": "GARAGE ROLLIN", - "Marque": "Avia" + "name": "GARAGE ROLLIN", + "brand": "Avia" }, "30140003": { - "Nom": "Intermarché SAS LABAHOU", - "Marque": "Intermarché" + "name": "Intermarché SAS LABAHOU", + "brand": "Intermarché" }, "30140005": { - "Nom": "Sation service porte des cevennes", - "Marque": "Indépendant sans enseigne" + "name": "Sation service porte des cevennes", + "brand": "Indépendant sans enseigne" }, "30150001": { - "Nom": "SERVOZ JEAN-FRANCOIS", - "Marque": "Indépendant sans enseigne" + "name": "SERVOZ JEAN-FRANCOIS", + "brand": "Indépendant sans enseigne" }, "30150002": { - "Nom": "SARL SORODIS", - "Marque": "Indépendant sans enseigne" + "name": "SARL SORODIS", + "brand": "Indépendant sans enseigne" }, "30160001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "30160002": { - "Nom": "GAGNIERES AUTOS", - "Marque": "Indépendant sans enseigne" + "name": "GAGNIERES AUTOS", + "brand": "Indépendant sans enseigne" }, "30170001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "30190002": { - "Nom": "SARL BERBON", - "Marque": "Indépendant sans enseigne" + "name": "SARL BERBON", + "brand": "Indépendant sans enseigne" }, "30190003": { - "Nom": "CASINO", - "Marque": "Casino" + "name": "CASINO", + "brand": "Casino" }, "30190004": { - "Nom": "Intermarché ST GENIES DE MALGOIRES", - "Marque": "Intermarché" + "name": "Intermarché ST GENIES DE MALGOIRES", + "brand": "Intermarché" }, "30200003": { - "Nom": "STATION Total", - "Marque": "Total" + "name": "STATION Total", + "brand": "Total" }, "30200004": { - "Nom": "Intermarché BAGNOLS-SUR-CEZE", - "Marque": "Intermarché" + "name": "Intermarché BAGNOLS-SUR-CEZE", + "brand": "Intermarché" }, "30200006": { - "Nom": "RELAIS D'ORSAN", - "Marque": "Total Access" + "name": "RELAIS D'ORSAN", + "brand": "Total Access" }, "30210001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "30210002": { - "Nom": "SARL ANDREOTTI", - "Marque": "Total" + "name": "SARL ANDREOTTI", + "brand": "Total" }, "30210006": { - "Nom": "Station Avia", - "Marque": "Avia" + "name": "Station Avia", + "brand": "Avia" }, "30220001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "30220002": { - "Nom": "Intermarché AIGUES MORTES", - "Marque": "Intermarché" + "name": "Intermarché AIGUES MORTES", + "brand": "Intermarché" }, "30220003": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "30240001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "30240002": { - "Nom": "Station Monplaisir EURL JMM", - "Marque": "Indépendant sans enseigne" + "name": "Station Monplaisir EURL JMM", + "brand": "Indépendant sans enseigne" }, "30240004": { - "Nom": "STATION DU SUD", - "Marque": "Indépendant sans enseigne" + "name": "STATION DU SUD", + "brand": "Indépendant sans enseigne" }, "30250001": { - "Nom": "Intermarché SOMMIERES", - "Marque": "Intermarché" + "name": "Intermarché SOMMIERES", + "brand": "Intermarché" }, "30250002": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "30250003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "30260001": { - "Nom": "COUTACH PNEUS PIACENTINO", - "Marque": "Indépendant sans enseigne" + "name": "COUTACH PNEUS PIACENTINO", + "brand": "Indépendant sans enseigne" }, "30260002": { - "Nom": "GARAGE ENGRAND", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE ENGRAND", + "brand": "Indépendant sans enseigne" }, "30290001": { - "Nom": "U EXPRESS LAUDUN LA STATION U", - "Marque": "Système U" + "name": "U EXPRESS LAUDUN LA STATION U", + "brand": "Système U" }, "30300003": { - "Nom": "Carrefour BEAUCAIRE", - "Marque": "Carrefour" + "name": "Carrefour BEAUCAIRE", + "brand": "Carrefour" }, "30300005": { - "Nom": "STATION SERVICE DE MATAGOT", - "Marque": "Indépendant sans enseigne" + "name": "STATION SERVICE DE MATAGOT", + "brand": "Indépendant sans enseigne" }, "30300006": { - "Nom": "RELAIS DES COLLONGUES", - "Marque": "Total" + "name": "RELAIS DES COLLONGUES", + "brand": "Total" }, "30300008": { - "Nom": "Le Mistral", - "Marque": "Esso" + "name": "Le Mistral", + "brand": "Esso" }, "30300010": { - "Nom": "RELAIS BEAUCAIRE", - "Marque": "Total Access" + "name": "RELAIS BEAUCAIRE", + "brand": "Total Access" }, "30300011": { - "Nom": "THEVENIN DUCROT DISTRIBUTION", - "Marque": "Avia" + "name": "THEVENIN DUCROT DISTRIBUTION", + "brand": "Avia" }, "30310001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "30320001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "30320004": { - "Nom": "Intermarché MARGUERITTES", - "Marque": "Intermarché" + "name": "Intermarché MARGUERITTES", + "brand": "Intermarché" }, "30320005": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "30320006": { - "Nom": "RELAIS MARGUERITTES NORD", - "Marque": "Total" + "name": "RELAIS MARGUERITTES NORD", + "brand": "Total" }, "30320007": { - "Nom": "Sodi Est - station Avia", - "Marque": "Avia" + "name": "Sodi Est - station Avia", + "brand": "Avia" }, "30330001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "30330003": { - "Nom": "ZAGAUX", - "Marque": "Intermarché Contact" + "name": "ZAGAUX", + "brand": "Intermarché Contact" }, "30340003": { - "Nom": "GARAGE DE ST PRIVAT - DYNEFF", - "Marque": "Dyneff" + "name": "GARAGE DE ST PRIVAT - DYNEFF", + "brand": "Dyneff" }, "30350001": { - "Nom": "Eurl gonzalez jean marc", - "Marque": "Indépendant sans enseigne" + "name": "Eurl gonzalez jean marc", + "brand": "Indépendant sans enseigne" }, "30360001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché" + "name": "Intermarché Contact", + "brand": "Intermarché" }, "30360002": { - "Nom": "VEZE Contact", - "Marque": "Carrefour Contact" + "name": "VEZE Contact", + "brand": "Carrefour Contact" }, "30380001": { - "Nom": "Intermarché ST CHRISTOL LES ALES", - "Marque": "Intermarché" + "name": "Intermarché ST CHRISTOL LES ALES", + "brand": "Intermarché" }, "30390001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "30400001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "30400004": { - "Nom": "LE RELAIS DE L'OLIVIER SARL", - "Marque": "Agip" + "name": "LE RELAIS DE L'OLIVIER SARL", + "brand": "Agip" }, "30400005": { - "Nom": "RELAIS VILLENEUVE LES AVIGNON", - "Marque": "Total Access" + "name": "RELAIS VILLENEUVE LES AVIGNON", + "brand": "Total Access" }, "30410001": { - "Nom": "POINT SERVICE", - "Marque": "Dyneff" + "name": "POINT SERVICE", + "brand": "Dyneff" }, "30420001": { - "Nom": "EURL CALVISSON SERRAT", - "Marque": "Total" + "name": "EURL CALVISSON SERRAT", + "brand": "Total" }, "30420002": { - "Nom": "UEXPRESS CALVISSON", - "Marque": "Système U" + "name": "UEXPRESS CALVISSON", + "brand": "Système U" }, "30430002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "30470001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "30470004": { - "Nom": "RELAIS SERIGUETTE", - "Marque": "Total Access" + "name": "RELAIS SERIGUETTE", + "brand": "Total Access" }, "30490002": { - "Nom": "Intermarché MONTFRIN", - "Marque": "Intermarché" + "name": "Intermarché MONTFRIN", + "brand": "Intermarché" }, "30500001": { - "Nom": "AUTO 16", - "Marque": "Avia" + "name": "AUTO 16", + "brand": "Avia" }, "30500002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "30500003": { - "Nom": "Intermarché SAINT AMBROIX", - "Marque": "Intermarché" + "name": "Intermarché SAINT AMBROIX", + "brand": "Intermarché" }, "30510002": { - "Nom": "AUTO PASSION BABIAK NICOLAS", - "Marque": "Avia" + "name": "AUTO PASSION BABIAK NICOLAS", + "brand": "Avia" }, "30540001": { - "Nom": "Intermarché MILHAUD", - "Marque": "Intermarché" + "name": "Intermarché MILHAUD", + "brand": "Intermarché" }, "30580001": { - "Nom": "BONNAURE PHILIPPE", - "Marque": "Indépendant sans enseigne" + "name": "BONNAURE PHILIPPE", + "brand": "Indépendant sans enseigne" }, "30600002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "30600003": { - "Nom": "SAS MAFE", - "Marque": "Intermarché" + "name": "SAS MAFE", + "brand": "Intermarché" }, "30620001": { - "Nom": "CASINO CARBURANTS", - "Marque": "Casino" + "name": "CASINO CARBURANTS", + "brand": "Casino" }, "30640001": { - "Nom": "EURL SODIS", - "Marque": "Système U" + "name": "EURL SODIS", + "brand": "Système U" }, "30650001": { - "Nom": "PRUVOST GEORGES AGENT RENAULT", - "Marque": "Indépendant sans enseigne" + "name": "PRUVOST GEORGES AGENT RENAULT", + "brand": "Indépendant sans enseigne" }, "30700001": { - "Nom": "Carrefour UZES", - "Marque": "Carrefour" + "name": "Carrefour UZES", + "brand": "Carrefour" }, "30700003": { - "Nom": "EOR UZES", - "Marque": "Total" + "name": "EOR UZES", + "brand": "Total" }, "30700004": { - "Nom": "Intermarché MONTAREN", - "Marque": "Intermarché" + "name": "Intermarché MONTAREN", + "brand": "Intermarché" }, "30700006": { - "Nom": "ETS LABORIE", - "Marque": "Indépendant sans enseigne" + "name": "ETS LABORIE", + "brand": "Indépendant sans enseigne" }, "30700007": { - "Nom": "RELAIS UZES", - "Marque": "Total Access" + "name": "RELAIS UZES", + "brand": "Total Access" }, "30750001": { - "Nom": "DYNEFF Lanuéjols", - "Marque": "Dyneff" + "name": "DYNEFF Lanuéjols", + "brand": "Dyneff" }, "30800001": { - "Nom": "Intermarché SAINT GILLES", - "Marque": "Intermarché" + "name": "Intermarché SAINT GILLES", + "brand": "Intermarché" }, "30800002": { - "Nom": "ST GILLES", - "Marque": "Intermarché" + "name": "ST GILLES", + "brand": "Intermarché" }, "30820002": { - "Nom": "Intermarché CAVEIRAC", - "Marque": "Intermarché" + "name": "Intermarché CAVEIRAC", + "brand": "Intermarché" }, "30900001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "30900002": { - "Nom": "Carrefour NIMES VILLE ACTIVE", - "Marque": "Carrefour" + "name": "Carrefour NIMES VILLE ACTIVE", + "brand": "Carrefour" }, "30900004": { - "Nom": "ESSO DES ARTS", - "Marque": "Esso Express" + "name": "ESSO DES ARTS", + "brand": "Esso Express" }, "30900015": { - "Nom": "RELAIS MAS CHEYLON", - "Marque": "Total" + "name": "RELAIS MAS CHEYLON", + "brand": "Total" }, "30900016": { - "Nom": "RELAIS VALDEGOUR", - "Marque": "Total Access" + "name": "RELAIS VALDEGOUR", + "brand": "Total Access" }, "30900017": { - "Nom": "RELAIS NIMES AGEL", - "Marque": "Total Access" + "name": "RELAIS NIMES AGEL", + "brand": "Total Access" }, "30900018": { - "Nom": "RELAIS KM DELTA", - "Marque": "Total Access" + "name": "RELAIS KM DELTA", + "brand": "Total Access" }, "30900021": { - "Nom": "BP NIMES LANGUEDOC", - "Marque": "BP" + "name": "BP NIMES LANGUEDOC", + "brand": "BP" }, "30960001": { - "Nom": "RELAIS DES CAMBONS", - "Marque": "Indépendant sans enseigne" + "name": "RELAIS DES CAMBONS", + "brand": "Indépendant sans enseigne" }, "30960002": { - "Nom": "SARL MELOBRI", - "Marque": "Casino" + "name": "SARL MELOBRI", + "brand": "Casino" }, "30980001": { - "Nom": "CASINO SAINT DIONISY", - "Marque": "Super Casino" + "name": "CASINO SAINT DIONISY", + "brand": "Super Casino" }, "31000001": { - "Nom": "SARL CHAF", - "Marque": "Total" + "name": "SARL CHAF", + "brand": "Total" }, "31000003": { - "Nom": "Intermarché TOULOUSE", - "Marque": "Intermarché" + "name": "Intermarché TOULOUSE", + "brand": "Intermarché" }, "31000004": { - "Nom": "RELAIS ROSERAIE", - "Marque": "Total Access" + "name": "RELAIS ROSERAIE", + "brand": "Total Access" }, "31075001": { - "Nom": "AUCHAN TOULOUSE", - "Marque": "Auchan" + "name": "AUCHAN TOULOUSE", + "brand": "Auchan" }, "31076001": { - "Nom": "Carrefour Toulouse Purpan", - "Marque": "Carrefour" + "name": "Carrefour Toulouse Purpan", + "brand": "Carrefour" }, "31084001": { - "Nom": "SARL RELAIS DE THIBAUD", - "Marque": "Total" + "name": "SARL RELAIS DE THIBAUD", + "brand": "Total" }, "31100003": { - "Nom": "Intermarché TOULOUSE", - "Marque": "Intermarché" + "name": "Intermarché TOULOUSE", + "brand": "Intermarché" }, "31100004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "31100010": { - "Nom": "RELAIS LE MIRAIL", - "Marque": "Total Access" + "name": "RELAIS LE MIRAIL", + "brand": "Total Access" }, "31100011": { - "Nom": "RELAIS D'ESPAGNE", - "Marque": "Total Access" + "name": "RELAIS D'ESPAGNE", + "brand": "Total Access" }, "31106001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "31110001": { - "Nom": "STATION ESSO", - "Marque": "Esso" + "name": "STATION ESSO", + "brand": "Esso" }, "31110002": { - "Nom": "Intermarché BAGNERES DE LUCHON", - "Marque": "Intermarché" + "name": "Intermarché BAGNERES DE LUCHON", + "brand": "Intermarché" }, "31120001": { - "Nom": "Carrefour PORTET SUR GARONNE", - "Marque": "Carrefour" + "name": "Carrefour PORTET SUR GARONNE", + "brand": "Carrefour" }, "31120003": { - "Nom": "LE RELAIS DES COTEAUX", - "Marque": "Total" + "name": "LE RELAIS DES COTEAUX", + "brand": "Total" }, "31120005": { - "Nom": "ESSO DE CLAIRFONT", - "Marque": "Esso Express" + "name": "ESSO DE CLAIRFONT", + "brand": "Esso Express" }, "31120006": { - "Nom": "SODIGAR sas", - "Marque": "Leclerc" + "name": "SODIGAR sas", + "brand": "Leclerc" }, "31120007": { - "Nom": "Intermarché PINSAGUEL", - "Marque": "Intermarché" + "name": "Intermarché PINSAGUEL", + "brand": "Intermarché" }, "31120009": { - "Nom": "RELAIS DE PORTET OUEST", - "Marque": "Total Access" + "name": "RELAIS DE PORTET OUEST", + "brand": "Total Access" }, "31120010": { - "Nom": "RELAIS DU PORTET EST", - "Marque": "Total Access" + "name": "RELAIS DU PORTET EST", + "brand": "Total Access" }, "31130002": { - "Nom": "SA GGE CARRIERE", - "Marque": "Total" + "name": "SA GGE CARRIERE", + "brand": "Total" }, "31130003": { - "Nom": "ESSO BALMA", - "Marque": "Esso Express" + "name": "ESSO BALMA", + "brand": "Esso Express" }, "31130004": { - "Nom": "Intermarché BALMA", - "Marque": "Intermarché" + "name": "Intermarché BALMA", + "brand": "Intermarché" }, "31130007": { - "Nom": "SUPER U FLOURENS", - "Marque": "Système U" + "name": "SUPER U FLOURENS", + "brand": "Système U" }, "31130008": { - "Nom": "RELAIS BALMA AV DE TOULOUSE", - "Marque": "Total Access" + "name": "RELAIS BALMA AV DE TOULOUSE", + "brand": "Total Access" }, "31140004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "31140005": { - "Nom": "Sarl val fleuri st alban", - "Marque": "Indépendant sans enseigne" + "name": "Sarl val fleuri st alban", + "brand": "Indépendant sans enseigne" }, "31140006": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Simply Market" + "name": "AUCHAN SUPERMARCHE", + "brand": "Simply Market" }, "31140007": { - "Nom": "RELAIS DES CEDRES SAS", - "Marque": "Elan" + "name": "RELAIS DES CEDRES SAS", + "brand": "Elan" }, "31140008": { - "Nom": "SUPER U FONBEAUZARD", - "Marque": "Système U" + "name": "SUPER U FONBEAUZARD", + "brand": "Système U" }, "31140010": { - "Nom": "RELAIS ST ALBAN", - "Marque": "Total Access" + "name": "RELAIS ST ALBAN", + "brand": "Total Access" }, "31140011": { - "Nom": "Station 24h/24h E. Leclerc", - "Marque": "Leclerc" + "name": "Station 24h/24h E. Leclerc", + "brand": "Leclerc" }, "31150001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "31150002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "31150004": { - "Nom": "Intermarché GRATENTOUR", - "Marque": "Intermarché" + "name": "Intermarché GRATENTOUR", + "brand": "Intermarché" }, "31150005": { - "Nom": "RELAIS BRUGUIERES", - "Marque": "Total" + "name": "RELAIS BRUGUIERES", + "brand": "Total" }, "31150006": { - "Nom": "Station 24h/24h E Leclerc", - "Marque": "Leclerc" + "name": "Station 24h/24h E Leclerc", + "brand": "Leclerc" }, "31150007": { - "Nom": "SU GAGNAC SUR GARONNE", - "Marque": "Système U" + "name": "SU GAGNAC SUR GARONNE", + "brand": "Système U" }, "31170001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "31170002": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "31170004": { - "Nom": "STATION KAI TOURNEFEUILLE", - "Marque": "KAI" + "name": "STATION KAI TOURNEFEUILLE", + "brand": "KAI" }, "31170007": { - "Nom": "Station AVIA-SARL 2LLS", - "Marque": "Avia" + "name": "Station AVIA-SARL 2LLS", + "brand": "Avia" }, "31180001": { - "Nom": "SAS ROUFFIAC-DISTRIBUTION", - "Marque": "Leclerc" + "name": "SAS ROUFFIAC-DISTRIBUTION", + "brand": "Leclerc" }, "31190002": { - "Nom": "NETTO", - "Marque": "Netto" + "name": "NETTO", + "brand": "Netto" }, "31190003": { - "Nom": "Carrefourmarket", - "Marque": "Carrefour Market" + "name": "Carrefourmarket", + "brand": "Carrefour Market" }, "31190004": { - "Nom": "RELAIS TREBONS", - "Marque": "Total Access" + "name": "RELAIS TREBONS", + "brand": "Total Access" }, "31200002": { - "Nom": "RELAIS PONT DE L'HERS", - "Marque": "Total" + "name": "RELAIS PONT DE L'HERS", + "brand": "Total" }, "31200008": { - "Nom": "ESSO DU MARCHE", - "Marque": "Esso Express" + "name": "ESSO DU MARCHE", + "brand": "Esso Express" }, "31200009": { - "Nom": "STATION KAI Etats-Unis", - "Marque": "KAI" + "name": "STATION KAI Etats-Unis", + "brand": "KAI" }, "31200019": { - "Nom": "DYNEFF LACOURT", - "Marque": "Dyneff" + "name": "DYNEFF LACOURT", + "brand": "Dyneff" }, "31200020": { - "Nom": "RELAIS TOULOUSE SUISSE", - "Marque": "Total" + "name": "RELAIS TOULOUSE SUISSE", + "brand": "Total" }, "31200021": { - "Nom": "RELAIS DU RAISIN", - "Marque": "Total" + "name": "RELAIS DU RAISIN", + "brand": "Total" }, "31200022": { - "Nom": "RELAIS DE LA PIMPE", - "Marque": "Total Access" + "name": "RELAIS DE LA PIMPE", + "brand": "Total Access" }, "31200023": { - "Nom": "RELAIS DES ETATS UNIS", - "Marque": "Total Access" + "name": "RELAIS DES ETATS UNIS", + "brand": "Total Access" }, "31210001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "31210004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "31210005": { - "Nom": "Station du vallon", - "Marque": "Total" + "name": "Station du vallon", + "brand": "Total" }, "31210006": { - "Nom": "LE RELAIS DES CIMES", - "Marque": "Indépendant sans enseigne" + "name": "LE RELAIS DES CIMES", + "brand": "Indépendant sans enseigne" }, "31210007": { - "Nom": "Avia", - "Marque": "Avia" + "name": "Avia", + "brand": "Avia" }, "31220001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "31220002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "31220005": { - "Nom": "Intermarché CAZERES SUR GARONNE", - "Marque": "Intermarché" + "name": "Intermarché CAZERES SUR GARONNE", + "brand": "Intermarché" }, "31220006": { - "Nom": "SAS BEL AIR IMMO", - "Marque": "Indépendant Discount" + "name": "SAS BEL AIR IMMO", + "brand": "Indépendant Discount" }, "31230003": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "31230004": { - "Nom": "Total -SARL COJEMI", - "Marque": "Total" + "name": "Total -SARL COJEMI", + "brand": "Total" }, "31240002": { - "Nom": "STATION KAI L'UNION", - "Marque": "KAI" + "name": "STATION KAI L'UNION", + "brand": "KAI" }, "31240003": { - "Nom": "Intermarché SAINT JEAN", - "Marque": "Intermarché" + "name": "Intermarché SAINT JEAN", + "brand": "Intermarché" }, "31240004": { - "Nom": "Intermarché L'UNION", - "Marque": "Intermarché" + "name": "Intermarché L'UNION", + "brand": "Intermarché" }, "31250001": { - "Nom": "ALQUIER", - "Marque": "Total" + "name": "ALQUIER", + "brand": "Total" }, "31250002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "31250003": { - "Nom": "REVEL MOTORS", - "Marque": "Elan" + "name": "REVEL MOTORS", + "brand": "Elan" }, "31250004": { - "Nom": "Intermarché REVEL", - "Marque": "Intermarché" + "name": "Intermarché REVEL", + "brand": "Intermarché" }, "31250005": { - "Nom": "SAS REVEL DISCOUNT", - "Marque": "Leader Price" + "name": "SAS REVEL DISCOUNT", + "brand": "Leader Price" }, "31260001": { - "Nom": "Intermarché MANE", - "Marque": "Intermarché" + "name": "Intermarché MANE", + "brand": "Intermarché" }, "31270003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "31270004": { - "Nom": "Intermarché CUGNAUX", - "Marque": "Intermarché" + "name": "Intermarché CUGNAUX", + "brand": "Intermarché" }, "31270005": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "31270007": { - "Nom": "RELAIS BLANQUET", - "Marque": "Total Access" + "name": "RELAIS BLANQUET", + "brand": "Total Access" }, "31290001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "31290004": { - "Nom": "EURL SEGA MARTINEZ", - "Marque": "Total" + "name": "EURL SEGA MARTINEZ", + "brand": "Total" }, "31290005": { - "Nom": "ESSO LAURAGAIS", - "Marque": "Esso Express" + "name": "ESSO LAURAGAIS", + "brand": "Esso Express" }, "31290007": { - "Nom": "SAS 4B -", - "Marque": "Super U" + "name": "SAS 4B -", + "brand": "Super U" }, "31290008": { - "Nom": "RELAIS DE PORT LAURAGAIS SUD", - "Marque": "Total" + "name": "RELAIS DE PORT LAURAGAIS SUD", + "brand": "Total" }, "31290009": { - "Nom": "RELAIS DE PORT LAURAGAIS NORD", - "Marque": "Total" + "name": "RELAIS DE PORT LAURAGAIS NORD", + "brand": "Total" }, "31290011": { - "Nom": "SAS JEMANO", - "Marque": "Intermarché" + "name": "SAS JEMANO", + "brand": "Intermarché" }, "31300006": { - "Nom": "RELAIS DE LA ROCADE OUEST", - "Marque": "Total" + "name": "RELAIS DE LA ROCADE OUEST", + "brand": "Total" }, "31300007": { - "Nom": "RELAIS TOULOUSE GRANDE BRETAGNE", - "Marque": "Total" + "name": "RELAIS TOULOUSE GRANDE BRETAGNE", + "brand": "Total" }, "31300008": { - "Nom": "RELAIS ROCADE PURPAN", - "Marque": "Total" + "name": "RELAIS ROCADE PURPAN", + "brand": "Total" }, "31310002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "31310004": { - "Nom": "SARL RIEUX ENERGIES", - "Marque": "Total" + "name": "SARL RIEUX ENERGIES", + "brand": "Total" }, "31320001": { - "Nom": "Intermarché CASTANET TOLOSAN", - "Marque": "Intermarché" + "name": "Intermarché CASTANET TOLOSAN", + "brand": "Intermarché" }, "31330001": { - "Nom": "SUPER U SAS GRENADINE", - "Marque": "Système U" + "name": "SUPER U SAS GRENADINE", + "brand": "Système U" }, "31330002": { - "Nom": "Sas jucel", - "Marque": "Intermarché" + "name": "Sas jucel", + "brand": "Intermarché" }, "31330004": { - "Nom": "Intermarché Merville", - "Marque": "Intermarché" + "name": "Intermarché Merville", + "brand": "Intermarché" }, "31330005": { - "Nom": "Garage Teulade", - "Marque": "Esso" + "name": "Garage Teulade", + "brand": "Esso" }, "31340001": { - "Nom": "SAS VILDI PARTICIPATION", - "Marque": "Leclerc" + "name": "SAS VILDI PARTICIPATION", + "brand": "Leclerc" }, "31350002": { - "Nom": "SAS BERFASYL", - "Marque": "Intermarché" + "name": "SAS BERFASYL", + "brand": "Intermarché" }, "31350003": { - "Nom": "DINNAT", - "Marque": "Leader Price" + "name": "DINNAT", + "brand": "Leader Price" }, "31370001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "31380002": { - "Nom": "Intermarché GARIDECH", - "Marque": "Intermarché" + "name": "Intermarché GARIDECH", + "brand": "Intermarché" }, "31390001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "31390002": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "31400002": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "31400005": { - "Nom": "ESSO ST AGNE", - "Marque": "Esso Express" + "name": "ESSO ST AGNE", + "brand": "Esso Express" }, "31400006": { - "Nom": "ESSO MONTAUDRAN", - "Marque": "Esso Express" + "name": "ESSO MONTAUDRAN", + "brand": "Esso Express" }, "31400007": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "31400008": { - "Nom": "DYNEFF Lespinet", - "Marque": "Dyneff" + "name": "DYNEFF Lespinet", + "brand": "Dyneff" }, "31400009": { - "Nom": "STATION AVIA TARDA", - "Marque": "Avia" + "name": "STATION AVIA TARDA", + "brand": "Avia" }, "31400010": { - "Nom": "RELAIS TOULOUSE DEMOISELLES", - "Marque": "Total" + "name": "RELAIS TOULOUSE DEMOISELLES", + "brand": "Total" }, "31410001": { - "Nom": "MR THUBERT", - "Marque": "Total" + "name": "MR THUBERT", + "brand": "Total" }, "31410002": { - "Nom": "SGAR SAS", - "Marque": "Shell" + "name": "SGAR SAS", + "brand": "Shell" }, "31410003": { - "Nom": "SGAR SAS", - "Marque": "Shell" + "name": "SGAR SAS", + "brand": "Shell" }, "31410004": { - "Nom": "Intermarché LAVERNOSE-LACASSE", - "Marque": "Intermarché" + "name": "Intermarché LAVERNOSE-LACASSE", + "brand": "Intermarché" }, "31410007": { - "Nom": "Intermarché ST SULPICE SUR LEZE", - "Marque": "Intermarché" + "name": "Intermarché ST SULPICE SUR LEZE", + "brand": "Intermarché" }, "31410008": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "31420003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "31430002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "31440001": { - "Nom": "STE EXPL DES ETS FERNANDEZ", - "Marque": "Elan" + "name": "STE EXPL DES ETS FERNANDEZ", + "brand": "Elan" }, "31440002": { - "Nom": "Intermarché CIERP-GAUD", - "Marque": "Intermarché" + "name": "Intermarché CIERP-GAUD", + "brand": "Intermarché" }, "31450001": { - "Nom": "AIRE DE TOULOUSE SUD/NORD", - "Marque": "CARAUTOROUTES" + "name": "AIRE DE TOULOUSE SUD/NORD", + "brand": "CARAUTOROUTES" }, "31450002": { - "Nom": "SODIPLEC TOULOUSE SUD", - "Marque": "Leclerc" + "name": "SODIPLEC TOULOUSE SUD", + "brand": "Leclerc" }, "31450003": { - "Nom": "Intermarché MONTGISCARD", - "Marque": "Intermarché" + "name": "Intermarché MONTGISCARD", + "brand": "Intermarché" }, "31450004": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "31460002": { - "Nom": "G20", - "Marque": "Indépendant sans enseigne" + "name": "G20", + "brand": "Indépendant sans enseigne" }, "31470001": { - "Nom": "SARL RELAIS DE FONSORBES", - "Marque": "Total" + "name": "SARL RELAIS DE FONSORBES", + "brand": "Total" }, "31470002": { - "Nom": "ME DAL GRANDE", - "Marque": "Total" + "name": "ME DAL GRANDE", + "brand": "Total" }, "31470004": { - "Nom": "Intermarché FONSORBES", - "Marque": "Intermarché" + "name": "Intermarché FONSORBES", + "brand": "Intermarché" }, "31470005": { - "Nom": "Intermarché SAINT-LYS", - "Marque": "Intermarché" + "name": "Intermarché SAINT-LYS", + "brand": "Intermarché" }, "31470006": { - "Nom": "SARL FONTENERGIE", - "Marque": "Carrefour Contact" + "name": "SARL FONTENERGIE", + "brand": "Carrefour Contact" }, "31470007": { - "Nom": "MARKET", - "Marque": "Carrefour Market" + "name": "MARKET", + "brand": "Carrefour Market" }, "31480002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "31490001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "31500004": { - "Nom": "STATION AVIA TARDA", - "Marque": "Avia" + "name": "STATION AVIA TARDA", + "brand": "Avia" }, "31500006": { - "Nom": "ESSO JOLIMONT", - "Marque": "Esso Express" + "name": "ESSO JOLIMONT", + "brand": "Esso Express" }, "31500007": { - "Nom": "ESSO CROIX DAURADE", - "Marque": "Esso Express" + "name": "ESSO CROIX DAURADE", + "brand": "Esso Express" }, "31500008": { - "Nom": "STATION KAI CHAUBET", - "Marque": "KAI" + "name": "STATION KAI CHAUBET", + "brand": "KAI" }, "31500012": { - "Nom": "Station AVIA 2LLS", - "Marque": "Avia" + "name": "Station AVIA 2LLS", + "brand": "Avia" }, "31500013": { - "Nom": "Carrefour Market Hers", - "Marque": "Carrefour Market" + "name": "Carrefour Market Hers", + "brand": "Carrefour Market" }, "31520003": { - "Nom": "Intermarché RAMONVILLE ST AGNE", - "Marque": "Intermarché" + "name": "Intermarché RAMONVILLE ST AGNE", + "brand": "Intermarché" }, "31520005": { - "Nom": "RELAIS RAMONVILLE ST AGNE", - "Marque": "Total" + "name": "RELAIS RAMONVILLE ST AGNE", + "brand": "Total" }, "31530003": { - "Nom": "Intermarché SAINT PAUL SUR SAVE", - "Marque": "Intermarché" + "name": "Intermarché SAINT PAUL SUR SAVE", + "brand": "Intermarché" }, "31530004": { - "Nom": "CORTESE SERVICES ENERGIE SAS", - "Marque": "Elan" + "name": "CORTESE SERVICES ENERGIE SAS", + "brand": "Elan" }, "31560001": { - "Nom": "Station Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Station Carrefour Contact", + "brand": "Carrefour Contact" }, "31570001": { - "Nom": "G20 LANTA", - "Marque": "Indépendant sans enseigne" + "name": "G20 LANTA", + "brand": "Indépendant sans enseigne" }, "31590001": { - "Nom": "SARL RELAIS DU STADE", - "Marque": "Total" + "name": "SARL RELAIS DU STADE", + "brand": "Total" }, "31590002": { - "Nom": "SA PERVER Intermarché VERFEIL", - "Marque": "Intermarché Contact" + "name": "SA PERVER Intermarché VERFEIL", + "brand": "Intermarché Contact" }, "31590003": { - "Nom": "Avia Ramonville Saint Agne", - "Marque": "Avia" + "name": "Avia Ramonville Saint Agne", + "brand": "Avia" }, "31600001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "31600002": { - "Nom": "MENDES SARL", - "Marque": "Avia" + "name": "MENDES SARL", + "brand": "Avia" }, "31600004": { - "Nom": "Intermarché MURET SUD", - "Marque": "Intermarché" + "name": "Intermarché MURET SUD", + "brand": "Intermarché" }, "31600005": { - "Nom": "Intermarché SEYSSES", - "Marque": "Intermarché" + "name": "Intermarché SEYSSES", + "brand": "Intermarché" }, "31600006": { - "Nom": "Intermarché MURET NORD", - "Marque": "Intermarché" + "name": "Intermarché MURET NORD", + "brand": "Intermarché" }, "31600007": { - "Nom": "RELAIS GUERIN", - "Marque": "Total Access" + "name": "RELAIS GUERIN", + "brand": "Total Access" }, "31600008": { - "Nom": "PAREA / AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "PAREA / AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "31620002": { - "Nom": "EOR BOULOC CAZENEUVE", - "Marque": "Total" + "name": "EOR BOULOC CAZENEUVE", + "brand": "Total" }, "31620005": { - "Nom": "SAS FRONTAL", - "Marque": "Intermarché" + "name": "SAS FRONTAL", + "brand": "Intermarché" }, "31620006": { - "Nom": "Intermarché CASTELNAU", - "Marque": "Intermarché" + "name": "Intermarché CASTELNAU", + "brand": "Intermarché" }, "31620007": { - "Nom": "Eurocentre FAL Distri", - "Marque": "FAL DISTRI" + "name": "Eurocentre FAL Distri", + "brand": "FAL DISTRI" }, "31620009": { - "Nom": "Intermarché BOULOC", - "Marque": "Intermarché Contact" + "name": "Intermarché BOULOC", + "brand": "Intermarché Contact" }, "31620010": { - "Nom": "AVIA FRONTONNAIS SUD", - "Marque": "Avia" + "name": "AVIA FRONTONNAIS SUD", + "brand": "Avia" }, "31620011": { - "Nom": "BP A62 AIRE DE FRONTONNAIS", - "Marque": "BP" + "name": "BP A62 AIRE DE FRONTONNAIS", + "brand": "BP" }, "31650002": { - "Nom": "SODIREV", - "Marque": "Leclerc" + "name": "SODIREV", + "brand": "Leclerc" }, "31650003": { - "Nom": "RELAIS DE ST ORENS", - "Marque": "Total Access" + "name": "RELAIS DE ST ORENS", + "brand": "Total Access" }, "31660001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "31660004": { - "Nom": "SAS SEYNET", - "Marque": "Intermarché" + "name": "SAS SEYNET", + "brand": "Intermarché" }, "31670001": { - "Nom": "STATION KAI LABEGE", - "Marque": "KAI" + "name": "STATION KAI LABEGE", + "brand": "KAI" }, "31673001": { - "Nom": "Carrefour LABEGE", - "Marque": "Carrefour" + "name": "Carrefour LABEGE", + "brand": "Carrefour" }, "31700001": { - "Nom": "SARL DIFRADIS", - "Marque": "Carrefour Market" + "name": "SARL DIFRADIS", + "brand": "Carrefour Market" }, "31700004": { - "Nom": "ESSO BLAGNAC", - "Marque": "Esso Express" + "name": "ESSO BLAGNAC", + "brand": "Esso Express" }, "31700005": { - "Nom": "NOBLADIS", - "Marque": "Leclerc" + "name": "NOBLADIS", + "brand": "Leclerc" }, "31700006": { - "Nom": "Intermarché CORNEBARRIEU", - "Marque": "Intermarché" + "name": "Intermarché CORNEBARRIEU", + "brand": "Intermarché" }, "31700007": { - "Nom": "SAS NALHA", - "Marque": "Netto" + "name": "SAS NALHA", + "brand": "Netto" }, "31700009": { - "Nom": "RELAIS BLAGNAC LOMAGNE", - "Marque": "Total Access" + "name": "RELAIS BLAGNAC LOMAGNE", + "brand": "Total Access" }, "31700010": { - "Nom": "RELAIS BLAGNAC ROCADE", - "Marque": "Total Access" + "name": "RELAIS BLAGNAC ROCADE", + "brand": "Total Access" }, "31770001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "31770004": { - "Nom": "ESSO COLOMIERS", - "Marque": "Esso Express" + "name": "ESSO COLOMIERS", + "brand": "Esso Express" }, "31770005": { - "Nom": "RELAIS CENTRAL", - "Marque": "Total Access" + "name": "RELAIS CENTRAL", + "brand": "Total Access" }, "31780001": { - "Nom": "Intermarché CASTELGINEST", - "Marque": "Intermarché" + "name": "Intermarché CASTELGINEST", + "brand": "Intermarché" }, "31790002": { - "Nom": "SARL KAMERIS", - "Marque": "Total" + "name": "SARL KAMERIS", + "brand": "Total" }, "31790003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "31790004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "31800003": { - "Nom": "SODEXCO CENTRE LECLERC", - "Marque": "Leclerc" + "name": "SODEXCO CENTRE LECLERC", + "brand": "Leclerc" }, "31800004": { - "Nom": "CASINO ESTANCARBON", - "Marque": "Casino" + "name": "CASINO ESTANCARBON", + "brand": "Casino" }, "31800005": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Simply Market" + "name": "AUCHAN SUPERMARCHE", + "brand": "Simply Market" }, "31800007": { - "Nom": "RELAIS ST GAUDENS EST", - "Marque": "Total Access" + "name": "RELAIS ST GAUDENS EST", + "brand": "Total Access" }, "31800008": { - "Nom": "SAS SODEXCO STGOPÔLE", - "Marque": "Leclerc" + "name": "SAS SODEXCO STGOPÔLE", + "brand": "Leclerc" }, "31800009": { - "Nom": "Carbu Comminges", - "Marque": "Total" + "name": "Carbu Comminges", + "brand": "Total" }, "31810002": { - "Nom": "Intermarché VENERQUE", - "Marque": "Intermarché" + "name": "Intermarché VENERQUE", + "brand": "Intermarché" }, "31810003": { - "Nom": "STATION KAÏ VERNET", - "Marque": "KAI" + "name": "STATION KAÏ VERNET", + "brand": "KAI" }, "31820001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "31830001": { - "Nom": "Intermarché PLAISANCE DU TOUCH", - "Marque": "Intermarché" + "name": "Intermarché PLAISANCE DU TOUCH", + "brand": "Intermarché" }, "31840001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "31850003": { - "Nom": "SEBASTIEN ROBERT-VERD", - "Marque": "Système U" + "name": "SEBASTIEN ROBERT-VERD", + "brand": "Système U" }, "31860001": { - "Nom": "EOR LABARTHE S/LEZE IMPER", - "Marque": "Total" + "name": "EOR LABARTHE S/LEZE IMPER", + "brand": "Total" }, "31860004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "31860005": { - "Nom": "Intermarché Labarthe sur Leze", - "Marque": "Intermarché" + "name": "Intermarché Labarthe sur Leze", + "brand": "Intermarché" }, "31880001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "32000001": { - "Nom": "Carrefour", - "Marque": "Carrefour" + "name": "Carrefour", + "brand": "Carrefour" }, "32000002": { - "Nom": "SARL SAMA", - "Marque": "Avia" + "name": "SARL SAMA", + "brand": "Avia" }, "32000004": { - "Nom": "AUCH HYPER-DIS SA", - "Marque": "Leclerc" + "name": "AUCH HYPER-DIS SA", + "brand": "Leclerc" }, "32000005": { - "Nom": "STATION DU GARROS", - "Marque": "Total" + "name": "STATION DU GARROS", + "brand": "Total" }, "32000006": { - "Nom": "AUCH .AUCH. Intermarché", - "Marque": "Intermarché" + "name": "AUCH .AUCH. Intermarché", + "brand": "Intermarché" }, "32000008": { - "Nom": "PETRAM", - "Marque": "Indépendant sans enseigne" + "name": "PETRAM", + "brand": "Indépendant sans enseigne" }, "32100001": { - "Nom": "STATION BOUE MPA", - "Marque": "Total" + "name": "STATION BOUE MPA", + "brand": "Total" }, "32100002": { - "Nom": "Intermarché CONDOM", - "Marque": "Intermarché" + "name": "Intermarché CONDOM", + "brand": "Intermarché" }, "32100003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "32110001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "32120001": { - "Nom": "LE PORS MOUSSARON", - "Marque": "Elan" + "name": "LE PORS MOUSSARON", + "brand": "Elan" }, "32120002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "32130001": { - "Nom": "SARL SAMATANDIS", - "Marque": "Carrefour Contact" + "name": "SARL SAMATANDIS", + "brand": "Carrefour Contact" }, "32130002": { - "Nom": "STE EXPL.GGE MAR", - "Marque": "Total" + "name": "STE EXPL.GGE MAR", + "brand": "Total" }, "32140001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "32150002": { - "Nom": "Intermarché CAZAUBON", - "Marque": "Intermarché" + "name": "Intermarché CAZAUBON", + "brand": "Intermarché" }, "32160001": { - "Nom": "Intermarché PLAISANCE DU GERS", - "Marque": "Intermarché" + "name": "Intermarché PLAISANCE DU GERS", + "brand": "Intermarché" }, "32190001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "32190002": { - "Nom": "MR DEVILLERS F.", - "Marque": "Total" + "name": "MR DEVILLERS F.", + "brand": "Total" }, "32190003": { - "Nom": "Intermarché VIC FEZENSAC", - "Marque": "Intermarché" + "name": "Intermarché VIC FEZENSAC", + "brand": "Intermarché" }, "32200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "32200005": { - "Nom": "gers coast custom", - "Marque": "Indépendant sans enseigne" + "name": "gers coast custom", + "brand": "Indépendant sans enseigne" }, "32200006": { - "Nom": "CANTONI", - "Marque": "Elan" + "name": "CANTONI", + "brand": "Elan" }, "32220001": { - "Nom": "Intermarché LOMBEZ", - "Marque": "Intermarché" + "name": "Intermarché LOMBEZ", + "brand": "Intermarché" }, "32230002": { - "Nom": "SUPER U MARCIAC", - "Marque": "Système U" + "name": "SUPER U MARCIAC", + "brand": "Système U" }, "32260001": { - "Nom": "M.BRUNO GRIVELLARO", - "Marque": "Total" + "name": "M.BRUNO GRIVELLARO", + "brand": "Total" }, "32260002": { - "Nom": "Intermarché SEISSAN", - "Marque": "Intermarché" + "name": "Intermarché SEISSAN", + "brand": "Intermarché" }, "32300001": { - "Nom": "Intermarché MIRANDE", - "Marque": "Intermarché" + "name": "Intermarché MIRANDE", + "brand": "Intermarché" }, "32300002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "32300003": { - "Nom": "STATION Total", - "Marque": "Total" + "name": "STATION Total", + "brand": "Total" }, "32310004": { - "Nom": "Carrefour Contact Valence sur Baïse", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact Valence sur Baïse", + "brand": "Carrefour Contact" }, "32340001": { - "Nom": "Sarl val fleuri miradoux", - "Marque": "Indépendant sans enseigne" + "name": "Sarl val fleuri miradoux", + "brand": "Indépendant sans enseigne" }, "32380001": { - "Nom": "Intermarché Saint Clar", - "Marque": "Intermarché" + "name": "Intermarché Saint Clar", + "brand": "Intermarché" }, "32400001": { - "Nom": "Contact", - "Marque": "Carrefour Contact" + "name": "Contact", + "brand": "Carrefour Contact" }, "32400003": { - "Nom": "GGE DELLE VEDOVE", - "Marque": "Total" + "name": "GGE DELLE VEDOVE", + "brand": "Total" }, "32460001": { - "Nom": "VAL FLEURI LE HOUGA", - "Marque": "Aire C" + "name": "VAL FLEURI LE HOUGA", + "brand": "Aire C" }, "32500001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "32500002": { - "Nom": "SN LE RELAIS DU CUSSE", - "Marque": "Total" + "name": "SN LE RELAIS DU CUSSE", + "brand": "Total" }, "32500003": { - "Nom": "AVIA LARREGNESTE", - "Marque": "Avia" + "name": "AVIA LARREGNESTE", + "brand": "Avia" }, "32500004": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "32500005": { - "Nom": "FRATUS J.Claude", - "Marque": "Elan" + "name": "FRATUS J.Claude", + "brand": "Elan" }, "32550001": { - "Nom": "SERVICES GARAGE AUTO 2000", - "Marque": "Total" + "name": "SERVICES GARAGE AUTO 2000", + "brand": "Total" }, "32600001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "32600002": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "32700001": { - "Nom": "ALVEA", - "Marque": "Elan" + "name": "ALVEA", + "brand": "Elan" }, "32700002": { - "Nom": "Intermarché LECTOURE", - "Marque": "Intermarché" + "name": "Intermarché LECTOURE", + "brand": "Intermarché" }, "32730004": { - "Nom": "Vintage Motor's Passion 32", - "Marque": "Dyneff" + "name": "Vintage Motor's Passion 32", + "brand": "Dyneff" }, "32800001": { - "Nom": "SAS SODISEL", - "Marque": "Leclerc" + "name": "SAS SODISEL", + "brand": "Leclerc" }, "32800002": { - "Nom": "EAUDIS", - "Marque": "Leader Price" + "name": "EAUDIS", + "brand": "Leader Price" }, "32810003": { - "Nom": "SNC CAEDCO", - "Marque": "Elan" + "name": "SNC CAEDCO", + "brand": "Elan" }, "33000010": { - "Nom": "Intermarché CAUDERAN", - "Marque": "Intermarché" + "name": "Intermarché CAUDERAN", + "brand": "Intermarché" }, "33000014": { - "Nom": "ESSO EXPRESS BORDEAUX PIERRE 1ER", - "Marque": "Esso Express" + "name": "ESSO EXPRESS BORDEAUX PIERRE 1ER", + "brand": "Esso Express" }, "33000015": { - "Nom": "ESSO EXPRESS BORDEAUX ANTOINE GAUTIER", - "Marque": "Esso Express" + "name": "ESSO EXPRESS BORDEAUX ANTOINE GAUTIER", + "brand": "Esso Express" }, "33000016": { - "Nom": "ESSO EXPRESS BORDEAUX HAUT BRION", - "Marque": "Esso Express" + "name": "ESSO EXPRESS BORDEAUX HAUT BRION", + "brand": "Esso Express" }, "33000021": { - "Nom": "RELAIS PALUDATE", - "Marque": "Total" + "name": "RELAIS PALUDATE", + "brand": "Total" }, "33000022": { - "Nom": "RELAIS TRINQUET", - "Marque": "Total" + "name": "RELAIS TRINQUET", + "brand": "Total" }, "33000023": { - "Nom": "RELAIS DE TOURATTE", - "Marque": "Total Access" + "name": "RELAIS DE TOURATTE", + "brand": "Total Access" }, "33000024": { - "Nom": "RELAIS RAVEZIES", - "Marque": "Total Access" + "name": "RELAIS RAVEZIES", + "brand": "Total Access" }, "33080001": { - "Nom": "Auchan Bordeaux le lac", - "Marque": "Auchan" + "name": "Auchan Bordeaux le lac", + "brand": "Auchan" }, "33100001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "33110003": { - "Nom": "MONOPRIX LE BOUSCAT GRAND PARC", - "Marque": "Monoprix" + "name": "MONOPRIX LE BOUSCAT GRAND PARC", + "brand": "Monoprix" }, "33110007": { - "Nom": "RELAIS DES ORANGERS", - "Marque": "Total Access" + "name": "RELAIS DES ORANGERS", + "brand": "Total Access" }, "33112001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "33113002": { - "Nom": "Intermarché SAINT SYMPHORIEN", - "Marque": "Intermarché" + "name": "Intermarché SAINT SYMPHORIEN", + "brand": "Intermarché" }, "33114001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "33120003": { - "Nom": "SARL THIBURCE GUY", - "Marque": "Avia" + "name": "SARL THIBURCE GUY", + "brand": "Avia" }, "33120007": { - "Nom": "RELAIS DES ABATILLES", - "Marque": "Total" + "name": "RELAIS DES ABATILLES", + "brand": "Total" }, "33121002": { - "Nom": "Carrefour Contact SAS CARDIS", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact SAS CARDIS", + "brand": "Carrefour Contact" }, "33124001": { - "Nom": "Station du Bois Majou Nord", - "Marque": "Safety carb" + "name": "Station du Bois Majou Nord", + "brand": "Safety carb" }, "33127002": { - "Nom": "De Oliveira Automobiles", - "Marque": "Elan" + "name": "De Oliveira Automobiles", + "brand": "Elan" }, "33127003": { - "Nom": "CASINO CARBURANT", - "Marque": "Casino" + "name": "CASINO CARBURANT", + "brand": "Casino" }, "33127004": { - "Nom": "Intermarché MARTIGNAS SUR JALLES", - "Marque": "Intermarché" + "name": "Intermarché MARTIGNAS SUR JALLES", + "brand": "Intermarché" }, "33130002": { - "Nom": "Carrefour Bordeaux Bègles - Rives d'Arcins", - "Marque": "Carrefour" + "name": "Carrefour Bordeaux Bègles - Rives d'Arcins", + "brand": "Carrefour" }, "33130004": { - "Nom": "SIMPLY MARKET", - "Marque": "Auchan" + "name": "SIMPLY MARKET", + "brand": "Auchan" }, "33130006": { - "Nom": "ESSO EXPRESS BEGLES", - "Marque": "Esso Express" + "name": "ESSO EXPRESS BEGLES", + "brand": "Esso Express" }, "33133002": { - "Nom": "SAS SUP'AL", - "Marque": "Système U" + "name": "SAS SUP'AL", + "brand": "Système U" }, "33138001": { - "Nom": "Intermarché LANTON", - "Marque": "Intermarché" + "name": "Intermarché LANTON", + "brand": "Intermarché" }, "33140001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "33140006": { - "Nom": "Intermarché CADAUJAC", - "Marque": "Intermarché" + "name": "Intermarché CADAUJAC", + "brand": "Intermarché" }, "33140009": { - "Nom": "ESSO EXPRESS VILLENAVE D ORNON CHAMBERY", - "Marque": "Esso Express" + "name": "ESSO EXPRESS VILLENAVE D ORNON CHAMBERY", + "brand": "Esso Express" }, "33140010": { - "Nom": "STATION DE LA PLAINE", - "Marque": "Esso" + "name": "STATION DE LA PLAINE", + "brand": "Esso" }, "33150003": { - "Nom": "ESSO EXPRESS CENON CASSAGNE", - "Marque": "Esso Express" + "name": "ESSO EXPRESS CENON CASSAGNE", + "brand": "Esso Express" }, "33160003": { - "Nom": "Intermarché ST MEDARD EN JALLES", - "Marque": "Intermarché" + "name": "Intermarché ST MEDARD EN JALLES", + "brand": "Intermarché" }, "33167001": { - "Nom": "HYPER-COSMOS", - "Marque": "Leclerc" + "name": "HYPER-COSMOS", + "brand": "Leclerc" }, "33170003": { - "Nom": "ANDRE OLLIVIER SARL", - "Marque": "Avia" + "name": "ANDRE OLLIVIER SARL", + "brand": "Avia" }, "33170004": { - "Nom": "AGIP GRADIGNAN A63 SENS BAYONNE VERS BORDEAUX", - "Marque": "Agip" + "name": "AGIP GRADIGNAN A63 SENS BAYONNE VERS BORDEAUX", + "brand": "Agip" }, "33170005": { - "Nom": "Intermarché GRADIGNAN", - "Marque": "Intermarché" + "name": "Intermarché GRADIGNAN", + "brand": "Intermarché" }, "33170008": { - "Nom": "RELAIS GRADIGNAN DE GAULLE", - "Marque": "Total Access" + "name": "RELAIS GRADIGNAN DE GAULLE", + "brand": "Total Access" }, "33187002": { - "Nom": "RELAIS 5 CHEMINS", - "Marque": "Total" + "name": "RELAIS 5 CHEMINS", + "brand": "Total" }, "33190004": { - "Nom": "Intermarché LA REOLE", - "Marque": "Intermarché" + "name": "Intermarché LA REOLE", + "brand": "Intermarché" }, "33190005": { - "Nom": "EURL Zanchettin Damien", - "Marque": "Total" + "name": "EURL Zanchettin Damien", + "brand": "Total" }, "33190006": { - "Nom": "SARL COUSTENOBLE", - "Marque": "Total" + "name": "SARL COUSTENOBLE", + "brand": "Total" }, "33200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "33210001": { - "Nom": "SARL MERIDIENNE", - "Marque": "Total" + "name": "SARL MERIDIENNE", + "brand": "Total" }, "33210003": { - "Nom": "E.LECLERC LANGON", - "Marque": "Leclerc" + "name": "E.LECLERC LANGON", + "brand": "Leclerc" }, "33210008": { - "Nom": "NETTO LANGON", - "Marque": "Netto" + "name": "NETTO LANGON", + "brand": "Netto" }, "33210010": { - "Nom": "INTERMACHE LANGON", - "Marque": "Intermarché" + "name": "INTERMACHE LANGON", + "brand": "Intermarché" }, "33210011": { - "Nom": "REL. DE LANGON", - "Marque": "Total Access" + "name": "REL. DE LANGON", + "brand": "Total Access" }, "33220001": { - "Nom": "POFODIS", - "Marque": "Leclerc" + "name": "POFODIS", + "brand": "Leclerc" }, "33220003": { - "Nom": "EURL LA TRAPELLE", - "Marque": "Elan" + "name": "EURL LA TRAPELLE", + "brand": "Elan" }, "33220004": { - "Nom": "Intermarché PORT SAINTE-FOY", - "Marque": "Intermarché" + "name": "Intermarché PORT SAINTE-FOY", + "brand": "Intermarché" }, "33220006": { - "Nom": "Centre E. Leclerc Grand Pineuilh", - "Marque": "Leclerc" + "name": "Centre E. Leclerc Grand Pineuilh", + "brand": "Leclerc" }, "33220007": { - "Nom": "SUPER U PINEUILH", - "Marque": "Système U" + "name": "SUPER U PINEUILH", + "brand": "Système U" }, "33230001": { - "Nom": "SODISC", - "Marque": "Leclerc" + "name": "SODISC", + "brand": "Leclerc" }, "33230002": { - "Nom": "Intermarché COUTRAS", - "Marque": "Intermarché" + "name": "Intermarché COUTRAS", + "brand": "Intermarché" }, "33240001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "33240003": { - "Nom": "RELAIS DES QUATRE VENTS", - "Marque": "Total" + "name": "RELAIS DES QUATRE VENTS", + "brand": "Total" }, "33240005": { - "Nom": "BP A10 AIRE DE MEILLAC", - "Marque": "BP" + "name": "BP A10 AIRE DE MEILLAC", + "brand": "BP" }, "33240007": { - "Nom": "Intermarché ST ANDRE DE CUBZAC", - "Marque": "Intermarché" + "name": "Intermarché ST ANDRE DE CUBZAC", + "brand": "Intermarché" }, "33240008": { - "Nom": "8 à Huit LA LANDE-DE-FRONSAC", - "Marque": "Huit à 8" + "name": "8 à Huit LA LANDE-DE-FRONSAC", + "brand": "Huit à 8" }, "33240010": { - "Nom": "RELAIS L ESTALOT", - "Marque": "Total" + "name": "RELAIS L ESTALOT", + "brand": "Total" }, "33240011": { - "Nom": "RELAIS ST ANDRE DE CUBZAC", - "Marque": "Total" + "name": "RELAIS ST ANDRE DE CUBZAC", + "brand": "Total" }, "33240012": { - "Nom": "CARREFOUR CONTACT LALANDE DE FRONSAC", - "Marque": "Carrefour contact" + "name": "CARREFOUR CONTACT LALANDE DE FRONSAC", + "brand": "Carrefour contact" }, "33240013": { - "Nom": "AUCHAN SAINT ANDRÉ DE CUBZAC", - "Marque": "Auchan" + "name": "AUCHAN SAINT ANDRÉ DE CUBZAC", + "brand": "Auchan" }, "33250002": { - "Nom": "EURL LOPEZ CLEMENT", - "Marque": "Total" + "name": "EURL LOPEZ CLEMENT", + "brand": "Total" }, "33250003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "33250004": { - "Nom": "Intermarché PAUILLAC", - "Marque": "Intermarché" + "name": "Intermarché PAUILLAC", + "brand": "Intermarché" }, "33260001": { - "Nom": "SAS LAGRUA LA TESTE", - "Marque": "Intermarché" + "name": "SAS LAGRUA LA TESTE", + "brand": "Intermarché" }, "33260005": { - "Nom": "S.A.FOROCEAN LA TESTE", - "Marque": "Intermarché" + "name": "S.A.FOROCEAN LA TESTE", + "brand": "Intermarché" }, "33260010": { - "Nom": "Auchan supermarché cazaux", - "Marque": "Atac" + "name": "Auchan supermarché cazaux", + "brand": "Atac" }, "33260011": { - "Nom": "E.LECLERC LA TESTE DE BUCH", - "Marque": "Leclerc" + "name": "E.LECLERC LA TESTE DE BUCH", + "brand": "Leclerc" }, "33260012": { - "Nom": "RELAIS LA TESTE", - "Marque": "Total Access" + "name": "RELAIS LA TESTE", + "brand": "Total Access" }, "33270001": { - "Nom": "AUCHAN BOULIAC", - "Marque": "Auchan" + "name": "AUCHAN BOULIAC", + "brand": "Auchan" }, "33290001": { - "Nom": "RELAIS DU PIAN MEDOC", - "Marque": "Total Access" + "name": "RELAIS DU PIAN MEDOC", + "brand": "Total Access" }, "33290003": { - "Nom": "LE PIAN DISTRIBUTION", - "Marque": "Leclerc" + "name": "LE PIAN DISTRIBUTION", + "brand": "Leclerc" }, "33290004": { - "Nom": "Intermarché PAREMPUYRE", - "Marque": "Intermarché" + "name": "Intermarché PAREMPUYRE", + "brand": "Intermarché" }, "33290009": { - "Nom": "RELAIS DE LA RENNEY", - "Marque": "Total Access" + "name": "RELAIS DE LA RENNEY", + "brand": "Total Access" }, "33300003": { - "Nom": "SAS SOFIBOR", - "Marque": "Leclerc" + "name": "SAS SOFIBOR", + "brand": "Leclerc" }, "33300005": { - "Nom": "RELAIS GRAND PARC", - "Marque": "Total Access" + "name": "RELAIS GRAND PARC", + "brand": "Total Access" }, "33306001": { - "Nom": "Carrefour LORMONT", - "Marque": "Carrefour" + "name": "Carrefour LORMONT", + "brand": "Carrefour" }, "33310006": { - "Nom": "STATION AVIA LORMONT", - "Marque": "Avia" + "name": "STATION AVIA LORMONT", + "brand": "Avia" }, "33310007": { - "Nom": "RELAIS LORMONT FONTBELLEAU A", - "Marque": "Total" + "name": "RELAIS LORMONT FONTBELLEAU A", + "brand": "Total" }, "33310008": { - "Nom": "RELAIS FONTBELLEAU", - "Marque": "Total" + "name": "RELAIS FONTBELLEAU", + "brand": "Total" }, "33310009": { - "Nom": "CARREFOUR LORMONT", - "Marque": "Carrefour" + "name": "CARREFOUR LORMONT", + "brand": "Carrefour" }, "33320003": { - "Nom": "Intermarché EYSINES", - "Marque": "Intermarché" + "name": "Intermarché EYSINES", + "brand": "Intermarché" }, "33320004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "33320008": { - "Nom": "RELAIS EYSINES STAR", - "Marque": "Total Access" + "name": "RELAIS EYSINES STAR", + "brand": "Total Access" }, "33323001": { - "Nom": "BEGLES-DISTRIBUTION", - "Marque": "Leclerc" + "name": "BEGLES-DISTRIBUTION", + "brand": "Leclerc" }, "33330002": { - "Nom": "STATION EMILION", - "Marque": "Elan" + "name": "STATION EMILION", + "brand": "Elan" }, "33340001": { - "Nom": "EOR LESPARRE RELAIS DU ME", - "Marque": "Total" + "name": "EOR LESPARRE RELAIS DU ME", + "brand": "Total" }, "33340002": { - "Nom": "SARL BECCAVIN", - "Marque": "Total" + "name": "SARL BECCAVIN", + "brand": "Total" }, "33340003": { - "Nom": "SAS SODIL", - "Marque": "Leclerc" + "name": "SAS SODIL", + "brand": "Leclerc" }, "33340004": { - "Nom": "Carrefour LESPARRE", - "Marque": "Carrefour" + "name": "Carrefour LESPARRE", + "brand": "Carrefour" }, "33350002": { - "Nom": "ST MAGNE DISTRIBUTION", - "Marque": "Leclerc" + "name": "ST MAGNE DISTRIBUTION", + "brand": "Leclerc" }, "33350003": { - "Nom": "Intermarché CASTILLON LA BATAILLE", - "Marque": "Intermarché" + "name": "Intermarché CASTILLON LA BATAILLE", + "brand": "Intermarché" }, "33360002": { - "Nom": "STATION U SAS HECODIS Super U", - "Marque": "Système U" + "name": "STATION U SAS HECODIS Super U", + "brand": "Système U" }, "33360003": { - "Nom": "RELAIS DE LATRESNE", - "Marque": "Total" + "name": "RELAIS DE LATRESNE", + "brand": "Total" }, "33370002": { - "Nom": "TOTAL Acces TRESSES", - "Marque": "Total Access" + "name": "TOTAL Acces TRESSES", + "brand": "Total Access" }, "33370005": { - "Nom": "Intermarché YVRAC", - "Marque": "Intermarché" + "name": "Intermarché YVRAC", + "brand": "Intermarché" }, "33370006": { - "Nom": "Intermarché ARTIGUES", - "Marque": "Intermarché" + "name": "Intermarché ARTIGUES", + "brand": "Intermarché" }, "33370007": { - "Nom": "SUPER U FARGUES SAINT HILAIRE", - "Marque": "Système U" + "name": "SUPER U FARGUES SAINT HILAIRE", + "brand": "Système U" }, "33370008": { - "Nom": "AUCHAN ARTIGUES", - "Marque": "Atac" + "name": "AUCHAN ARTIGUES", + "brand": "Atac" }, "33370014": { - "Nom": "RELAIS TRESSES STAR", - "Marque": "Total Access" + "name": "RELAIS TRESSES STAR", + "brand": "Total Access" }, "33370015": { - "Nom": "TOTAL RELAIS DU MOULINAT ARTIGUES", - "Marque": "Total Access" + "name": "TOTAL RELAIS DU MOULINAT ARTIGUES", + "brand": "Total Access" }, "33370016": { - "Nom": "CARREFOUR CONTACT SALLEBOEUF", - "Marque": "Carrefour Contact" + "name": "CARREFOUR CONTACT SALLEBOEUF", + "brand": "Carrefour Contact" }, "33380001": { - "Nom": "AUCHAN BIGANOS", - "Marque": "Auchan" + "name": "AUCHAN BIGANOS", + "brand": "Auchan" }, "33380002": { - "Nom": "Intermarché MARCHEPRIME", - "Marque": "Intermarché" + "name": "Intermarché MARCHEPRIME", + "brand": "Intermarché" }, "33380003": { - "Nom": "SA BURGANA JEAN-LOUIS", - "Marque": "Avia" + "name": "SA BURGANA JEAN-LOUIS", + "brand": "Avia" }, "33380004": { - "Nom": "Leclerc Mios", - "Marque": "Leclerc" + "name": "Leclerc Mios", + "brand": "Leclerc" }, "33390001": { - "Nom": "SARL LE RELAIS DU PONTET", - "Marque": "Total" + "name": "SARL LE RELAIS DU PONTET", + "brand": "Total" }, "33390003": { - "Nom": "BLAYE-DIS", - "Marque": "Leclerc" + "name": "BLAYE-DIS", + "brand": "Leclerc" }, "33390004": { - "Nom": "SUPER U SAINT-CIERS", - "Marque": "Système U" + "name": "SUPER U SAINT-CIERS", + "brand": "Système U" }, "33400004": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "33400005": { - "Nom": "Intermarché TALENCE", - "Marque": "Intermarché" + "name": "Intermarché TALENCE", + "brand": "Intermarché" }, "33400008": { - "Nom": "ESSO EXPRESS TALENCE BORDEAUX PYRÉNÉES", - "Marque": "Esso Express" + "name": "ESSO EXPRESS TALENCE BORDEAUX PYRÉNÉES", + "brand": "Esso Express" }, "33400009": { - "Nom": "ESSO EXPRESS TALENCE CHANTELOISEAU", - "Marque": "Esso Express" + "name": "ESSO EXPRESS TALENCE CHANTELOISEAU", + "brand": "Esso Express" }, "33402001": { - "Nom": "PACADIS", - "Marque": "Leclerc" + "name": "PACADIS", + "brand": "Leclerc" }, "33410001": { - "Nom": "SARL GARAGE LACORTE", - "Marque": "Total" + "name": "SARL GARAGE LACORTE", + "brand": "Total" }, "33410003": { - "Nom": "Intermarché BEGUEY CADILLAC", - "Marque": "Intermarché" + "name": "Intermarché BEGUEY CADILLAC", + "brand": "Intermarché" }, "33410006": { - "Nom": "LECLERC BEGUEY", - "Marque": "Leclerc" + "name": "LECLERC BEGUEY", + "brand": "Leclerc" }, "33420002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "33420003": { - "Nom": "UTILE COOP GENISSAC", - "Marque": "Système U" + "name": "UTILE COOP GENISSAC", + "brand": "Système U" }, "33430001": { - "Nom": "SUPER U BAZAS", - "Marque": "Système U" + "name": "SUPER U BAZAS", + "brand": "Système U" }, "33430002": { - "Nom": "SARL DARCOS AUTO", - "Marque": "Total" + "name": "SARL DARCOS AUTO", + "brand": "Total" }, "33430005": { - "Nom": "STATION Intermarché", - "Marque": "Intermarché" + "name": "STATION Intermarché", + "brand": "Intermarché" }, "33440002": { - "Nom": "BRICO JARDI E.LECLERC", - "Marque": "Leclerc" + "name": "BRICO JARDI E.LECLERC", + "brand": "Leclerc" }, "33440004": { - "Nom": "ALSAGA SAS", - "Marque": "Supermarchés Spar" + "name": "ALSAGA SAS", + "brand": "Supermarchés Spar" }, "33440006": { - "Nom": "AVIA AMBARES", - "Marque": "Avia" + "name": "AVIA AMBARES", + "brand": "Avia" }, "33450001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "33450002": { - "Nom": "SUPER U SAINT SULPICE ET CAMEYRAC", - "Marque": "Système U" + "name": "SUPER U SAINT SULPICE ET CAMEYRAC", + "brand": "Système U" }, "33450004": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "33450005": { - "Nom": "Total Access - ST LOUBES - SARL KEMPF", - "Marque": "Total Access" + "name": "Total Access - ST LOUBES - SARL KEMPF", + "brand": "Total Access" }, "33450006": { - "Nom": "CASINO CARBURANT MONTUSSAN", - "Marque": "Casino" + "name": "CASINO CARBURANT MONTUSSAN", + "brand": "Casino" }, "33450007": { - "Nom": "CARREFOUR MARKET ST LOUBES", - "Marque": "Carrefour Market" + "name": "CARREFOUR MARKET ST LOUBES", + "brand": "Carrefour Market" }, "33450008": { - "Nom": "INTERMARCHE MONTUSSAN", - "Marque": "Intermarché" + "name": "INTERMARCHE MONTUSSAN", + "brand": "Intermarché" }, "33450009": { - "Nom": "INTERMARCHE IZON", - "Marque": "Intermarché" + "name": "INTERMARCHE IZON", + "brand": "Intermarché" }, "33460003": { - "Nom": "Eurl lautrec", - "Marque": "Total" + "name": "Eurl lautrec", + "brand": "Total" }, "33460004": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "33470001": { - "Nom": "Hyper U GUJAN-MESTRAS", - "Marque": "Système U" + "name": "Hyper U GUJAN-MESTRAS", + "brand": "Système U" }, "33470002": { - "Nom": "Carrefour Market GUJAN-MESTRAS", - "Marque": "Carrefour Market" + "name": "Carrefour Market GUJAN-MESTRAS", + "brand": "Carrefour Market" }, "33470003": { - "Nom": "Super U LE TEICH", - "Marque": "Système U" + "name": "Super U LE TEICH", + "brand": "Système U" }, "33480002": { - "Nom": "RELAIS Total CASTELNAU", - "Marque": "Total" + "name": "RELAIS Total CASTELNAU", + "brand": "Total" }, "33480003": { - "Nom": "Intermarché AVENSAN", - "Marque": "Intermarché" + "name": "Intermarché AVENSAN", + "brand": "Intermarché" }, "33480005": { - "Nom": "CASINO", - "Marque": "Casino" + "name": "CASINO", + "brand": "Casino" }, "33480006": { - "Nom": "Intermarché SAINTE HELENE", - "Marque": "Intermarché" + "name": "Intermarché SAINTE HELENE", + "brand": "Intermarché" }, "33490002": { - "Nom": "SARL REPAR-AUTO", - "Marque": "Total" + "name": "SARL REPAR-AUTO", + "brand": "Total" }, "33500001": { - "Nom": "Carrefour LIBOURNE", - "Marque": "Carrefour" + "name": "Carrefour LIBOURNE", + "brand": "Carrefour" }, "33500004": { - "Nom": "LECLERC LIBOURNE", - "Marque": "Leclerc" + "name": "LECLERC LIBOURNE", + "brand": "Leclerc" }, "33500005": { - "Nom": "Intermarché LIBOURNE", - "Marque": "Intermarché" + "name": "Intermarché LIBOURNE", + "brand": "Intermarché" }, "33500006": { - "Nom": "DUBREUIL STATION LIBOURNE", - "Marque": "Esso" + "name": "DUBREUIL STATION LIBOURNE", + "brand": "Esso" }, "33500007": { - "Nom": "RELAIS ARVEYRES LA ROTONDE", - "Marque": "Total" + "name": "RELAIS ARVEYRES LA ROTONDE", + "brand": "Total" }, "33502001": { - "Nom": "LIBOURNE FAYAT", - "Marque": "Total" + "name": "LIBOURNE FAYAT", + "brand": "Total" }, "33510002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "33510003": { - "Nom": "Intermarché ANDERNOS", - "Marque": "Intermarché" + "name": "Intermarché ANDERNOS", + "brand": "Intermarché" }, "33520002": { - "Nom": "ESSO AQUITAINE 2", - "Marque": "Esso" + "name": "ESSO AQUITAINE 2", + "brand": "Esso" }, "33520003": { - "Nom": "ESSO AQUITAINE 1", - "Marque": "Esso" + "name": "ESSO AQUITAINE 1", + "brand": "Esso" }, "33520005": { - "Nom": "ESSO EXPRESS BRUGES VIGEAN", - "Marque": "Esso Express" + "name": "ESSO EXPRESS BRUGES VIGEAN", + "brand": "Esso Express" }, "33523001": { - "Nom": "S.N. BRUDIS", - "Marque": "Leclerc" + "name": "S.N. BRUDIS", + "brand": "Leclerc" }, "33540001": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "33550001": { - "Nom": "SARL CENTRE AUTOMOBILE DU TOURNE", - "Marque": "Dyneff" + "name": "SARL CENTRE AUTOMOBILE DU TOURNE", + "brand": "Dyneff" }, "33550002": { - "Nom": "Intermarché LANGOIRAN", - "Marque": "Intermarché" + "name": "Intermarché LANGOIRAN", + "brand": "Intermarché" }, "33560002": { - "Nom": "LECLERC STE EULALIE GRAND TOUR", - "Marque": "Leclerc" + "name": "LECLERC STE EULALIE GRAND TOUR", + "brand": "Leclerc" }, "33560003": { - "Nom": "Intermarché CARBON BLANC", - "Marque": "Intermarché" + "name": "Intermarché CARBON BLANC", + "brand": "Intermarché" }, "33560004": { - "Nom": "TOTAL EIRAM CARBON BLANC", - "Marque": "Total" + "name": "TOTAL EIRAM CARBON BLANC", + "brand": "Total" }, "33580001": { - "Nom": "SARL ANPAROS", - "Marque": "Carrefour Contact" + "name": "SARL ANPAROS", + "brand": "Carrefour Contact" }, "33600001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "33600006": { - "Nom": "ESSO ALOUETTE PESSAC", - "Marque": "Esso Express" + "name": "ESSO ALOUETTE PESSAC", + "brand": "Esso Express" }, "33600009": { - "Nom": "RELAIS HAUT LEVEQUE PESSAC", - "Marque": "Total" + "name": "RELAIS HAUT LEVEQUE PESSAC", + "brand": "Total" }, "33600010": { - "Nom": "RELAIS DE PESSAC", - "Marque": "Total" + "name": "RELAIS DE PESSAC", + "brand": "Total" }, "33600011": { - "Nom": "RELAIS CAP DE BOS PESSAC", - "Marque": "Total Access" + "name": "RELAIS CAP DE BOS PESSAC", + "brand": "Total Access" }, "33600013": { - "Nom": "Auchan Bois Bersol PESSAC", - "Marque": "Auchan" + "name": "Auchan Bois Bersol PESSAC", + "brand": "Auchan" }, "33610001": { - "Nom": "SAS BRUGAR", - "Marque": "Système U" + "name": "SAS BRUGAR", + "brand": "Système U" }, "33610005": { - "Nom": "Intermarché CESTAS", - "Marque": "Intermarché" + "name": "Intermarché CESTAS", + "brand": "Intermarché" }, "33610007": { - "Nom": "SHELL CESTAS EST", - "Marque": "Shell" + "name": "SHELL CESTAS EST", + "brand": "Shell" }, "33610008": { - "Nom": "SARL MONTAGNE OUEST", - "Marque": "Shell" + "name": "SARL MONTAGNE OUEST", + "brand": "Shell" }, "33620001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "33620002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "33640002": { - "Nom": "SARL CHAPMAN ASSOCIES", - "Marque": "Elan" + "name": "SARL CHAPMAN ASSOCIES", + "brand": "Elan" }, "33640003": { - "Nom": "Carrefour MARKET BEAUTIRAN", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET BEAUTIRAN", + "brand": "Carrefour Market" }, "33650003": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "33650004": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "33660001": { - "Nom": "ROMPETROL Palombières", - "Marque": "ROMPETROL" + "name": "ROMPETROL Palombières", + "brand": "ROMPETROL" }, "33660003": { - "Nom": "super u", - "Marque": "Système U" + "name": "super u", + "brand": "Système U" }, "33670001": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "33680001": { - "Nom": "REL.DE LACANAU", - "Marque": "Total Access" + "name": "REL.DE LACANAU", + "brand": "Total Access" }, "33680003": { - "Nom": "Carrefour Contact SAS COSTAL", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact SAS COSTAL", + "brand": "Carrefour Contact" }, "33680004": { - "Nom": "STATION DU LITTORAL", - "Marque": "Avia" + "name": "STATION DU LITTORAL", + "brand": "Avia" }, "33680005": { - "Nom": "STATION U LACANAU", - "Marque": "Système U" + "name": "STATION U LACANAU", + "brand": "Système U" }, "33680006": { - "Nom": "Intermarché LE PORGE", - "Marque": "Intermarché" + "name": "Intermarché LE PORGE", + "brand": "Intermarché" }, "33690001": { - "Nom": "SARL CCP AUTOS", - "Marque": "Total" + "name": "SARL CCP AUTOS", + "brand": "Total" }, "33700001": { - "Nom": "Carrefour MERIGNAC", - "Marque": "Carrefour" + "name": "Carrefour MERIGNAC", + "brand": "Carrefour" }, "33700002": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "33700009": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "33700010": { - "Nom": "Supermarche SIMPLY MARKET", - "Marque": "Simply Market" + "name": "Supermarche SIMPLY MARKET", + "brand": "Simply Market" }, "33700012": { - "Nom": "Intermarché MERIGNAC", - "Marque": "Intermarché" + "name": "Intermarché MERIGNAC", + "brand": "Intermarché" }, "33700020": { - "Nom": "RELAIS DE PICHEY", - "Marque": "Total" + "name": "RELAIS DE PICHEY", + "brand": "Total" }, "33700021": { - "Nom": "RELAIS MERIGNAC MARNE", - "Marque": "Total Access" + "name": "RELAIS MERIGNAC MARNE", + "brand": "Total Access" }, "33700022": { - "Nom": "RELAIS DE GIRONDE", - "Marque": "Total Access" + "name": "RELAIS DE GIRONDE", + "brand": "Total Access" }, "33700023": { - "Nom": "RELAIS AQUITAINE", - "Marque": "Total Access" + "name": "RELAIS AQUITAINE", + "brand": "Total Access" }, "33700024": { - "Nom": "RELAIS Mérignac Somme MÉRIGNAC", - "Marque": "Total Access" + "name": "RELAIS Mérignac Somme MÉRIGNAC", + "brand": "Total Access" }, "33710002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "33710003": { - "Nom": "Intermarché PUGNAC", - "Marque": "Intermarché" + "name": "Intermarché PUGNAC", + "brand": "Intermarché" }, "33720001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "33720005": { - "Nom": "LAULAN FREDERIC", - "Marque": "Elan" + "name": "LAULAN FREDERIC", + "brand": "Elan" }, "33720006": { - "Nom": "SARL BOTELHO SICRE AUTO", - "Marque": "Avia" + "name": "SARL BOTELHO SICRE AUTO", + "brand": "Avia" }, "33720007": { - "Nom": "STATION SHELL AIRE DES TERRES DE GRAVES NORD", - "Marque": "Shell" + "name": "STATION SHELL AIRE DES TERRES DE GRAVES NORD", + "brand": "Shell" }, "33720008": { - "Nom": "RELAIS LES LANDES", - "Marque": "Total" + "name": "RELAIS LES LANDES", + "brand": "Total" }, "33730001": { - "Nom": "SARL D.V.S AUTO", - "Marque": "Elan" + "name": "SARL D.V.S AUTO", + "brand": "Elan" }, "33730002": { - "Nom": "SARL VAL FLEURI", - "Marque": "Indépendant sans enseigne" + "name": "SARL VAL FLEURI", + "brand": "Indépendant sans enseigne" }, "33730003": { - "Nom": "Carrefour Contact Noaillan", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact Noaillan", + "brand": "Carrefour Contact" }, "33740001": { - "Nom": "SODICAR", - "Marque": "Leclerc" + "name": "SODICAR", + "brand": "Leclerc" }, "33750003": { - "Nom": "RELAIS DU CANTELOUP", - "Marque": "Total Access" + "name": "RELAIS DU CANTELOUP", + "brand": "Total Access" }, "33750004": { - "Nom": "CARREFOUR CONTACT ST GERMAIN DU PUCH", - "Marque": "Carrefour Contact" + "name": "CARREFOUR CONTACT ST GERMAIN DU PUCH", + "brand": "Carrefour Contact" }, "33760001": { - "Nom": "GARINEAU ORTEGA", - "Marque": "Total" + "name": "GARINEAU ORTEGA", + "brand": "Total" }, "33760002": { - "Nom": "Carrefour Contact SARL LOUARDIS", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact SARL LOUARDIS", + "brand": "Carrefour Contact" }, "33770001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "33780001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "33790001": { - "Nom": "Intermarché", - "Marque": "Intermarché Contact" + "name": "Intermarché", + "brand": "Intermarché Contact" }, "33820001": { - "Nom": "Intermarché ETAULIERS", - "Marque": "Intermarché" + "name": "Intermarché ETAULIERS", + "brand": "Intermarché" }, "33830001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "33840003": { - "Nom": "AGIP / SIG'REST CAPTIEUX", - "Marque": "Agip" + "name": "AGIP / SIG'REST CAPTIEUX", + "brand": "Agip" }, "33850001": { - "Nom": "BLENAN SAS - E. LECLERC", - "Marque": "Leclerc" + "name": "BLENAN SAS - E. LECLERC", + "brand": "Leclerc" }, "33850002": { - "Nom": "SODIREG", - "Marque": "Système U" + "name": "SODIREG", + "brand": "Système U" }, "33910001": { - "Nom": "Intermarché ST DENIS DE PILE", - "Marque": "Intermarché" + "name": "Intermarché ST DENIS DE PILE", + "brand": "Intermarché" }, "33920002": { - "Nom": "ESSO SAUGON", - "Marque": "Esso" + "name": "ESSO SAUGON", + "brand": "Esso" }, "33920003": { - "Nom": "Intermarché ST SAVIN DE BLAYE", - "Marque": "Intermarché" + "name": "Intermarché ST SAVIN DE BLAYE", + "brand": "Intermarché" }, "33920004": { - "Nom": "SARL P.A.C.T.", - "Marque": "Avia" + "name": "SARL P.A.C.T.", + "brand": "Avia" }, "33930001": { - "Nom": "STATION DE L'EUROPE", - "Marque": "Elan" + "name": "STATION DE L'EUROPE", + "brand": "Elan" }, "33930002": { - "Nom": "Carrefour Contact SAS JOSDIS", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact SAS JOSDIS", + "brand": "Carrefour Contact" }, "33930003": { - "Nom": "STATION DU CENTRE", - "Marque": "Indépendant" + "name": "STATION DU CENTRE", + "brand": "Indépendant" }, "33950001": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "33950002": { - "Nom": "Carrefour Contact SAS LEDIS", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact SAS LEDIS", + "brand": "Carrefour Contact" }, "33980002": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "33990002": { - "Nom": "Carrefour Contact SAS SODILAC", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact SAS SODILAC", + "brand": "Carrefour Contact" }, "33990003": { - "Nom": "Garage dulucq", - "Marque": "Indépendant sans enseigne" + "name": "Garage dulucq", + "brand": "Indépendant sans enseigne" }, "34000001": { - "Nom": "DYNEFF Marché Gare", - "Marque": "Dyneff" + "name": "DYNEFF Marché Gare", + "brand": "Dyneff" }, "34000009": { - "Nom": "ESSO DU POLYGONE", - "Marque": "Esso Express" + "name": "ESSO DU POLYGONE", + "brand": "Esso Express" }, "34000010": { - "Nom": "AGIP MONTPELLIER TOURNEZY", - "Marque": "Agip" + "name": "AGIP MONTPELLIER TOURNEZY", + "brand": "Agip" }, "34000011": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "34000013": { - "Nom": "RELAIS LA LIRONDE", - "Marque": "Elf" + "name": "RELAIS LA LIRONDE", + "brand": "Elf" }, "34000014": { - "Nom": "RELAIS DE GIMEL", - "Marque": "Total" + "name": "RELAIS DE GIMEL", + "brand": "Total" }, "34000015": { - "Nom": "RELAIS COSTEBELLE", - "Marque": "Total" + "name": "RELAIS COSTEBELLE", + "brand": "Total" }, "34070001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "34070002": { - "Nom": "Auchan Pérols", - "Marque": "Auchan" + "name": "Auchan Pérols", + "brand": "Auchan" }, "34070003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "34070004": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Simply Market" + "name": "AUCHAN SUPERMARCHE", + "brand": "Simply Market" }, "34070012": { - "Nom": "STATION DYNEFF", - "Marque": "Dyneff" + "name": "STATION DYNEFF", + "brand": "Dyneff" }, "34070014": { - "Nom": "Station BeauSoleil Dyneff", - "Marque": "Dyneff" + "name": "Station BeauSoleil Dyneff", + "brand": "Dyneff" }, "34070016": { - "Nom": "RELAIS MARTELLE", - "Marque": "Total" + "name": "RELAIS MARTELLE", + "brand": "Total" }, "34070017": { - "Nom": "RELAIS ABRIVADO", - "Marque": "Total" + "name": "RELAIS ABRIVADO", + "brand": "Total" }, "34070018": { - "Nom": "RELAIS MONTPELLIER VANIERES", - "Marque": "Total Access" + "name": "RELAIS MONTPELLIER VANIERES", + "brand": "Total Access" }, "34070019": { - "Nom": "RELAIS MONTPELLIER CLUB", - "Marque": "Total Access" + "name": "RELAIS MONTPELLIER CLUB", + "brand": "Total Access" }, "34070020": { - "Nom": "AGIP MONTPELLIER PALAVAS", - "Marque": "Agip" + "name": "AGIP MONTPELLIER PALAVAS", + "brand": "Agip" }, "34080001": { - "Nom": "ESSO CELLENEUVE", - "Marque": "Esso Express" + "name": "ESSO CELLENEUVE", + "brand": "Esso Express" }, "34090003": { - "Nom": "RELAIS AIGUELONGUE", - "Marque": "Total Access" + "name": "RELAIS AIGUELONGUE", + "brand": "Total Access" }, "34100001": { - "Nom": "AGIP MONTPELLIER RIMBAUD", - "Marque": "Agip" + "name": "AGIP MONTPELLIER RIMBAUD", + "brand": "Agip" }, "34110002": { - "Nom": "Carbur", - "Marque": "Indépendant sans enseigne" + "name": "Carbur", + "brand": "Indépendant sans enseigne" }, "34110003": { - "Nom": "Intermarché FRONTIGNAN", - "Marque": "Intermarché" + "name": "Intermarché FRONTIGNAN", + "brand": "Intermarché" }, "34110004": { - "Nom": "Dyneff", - "Marque": "Dyneff" + "name": "Dyneff", + "brand": "Dyneff" }, "34110005": { - "Nom": "RELAIS GARDIOLE", - "Marque": "Total" + "name": "RELAIS GARDIOLE", + "brand": "Total" }, "34120001": { - "Nom": "SARL GAUTRAND PNEU", - "Marque": "Total" + "name": "SARL GAUTRAND PNEU", + "brand": "Total" }, "34120002": { - "Nom": "Station Total", - "Marque": "Total" + "name": "Station Total", + "brand": "Total" }, "34120005": { - "Nom": "SARL Pézenas Carburants", - "Marque": "Indépendant sans enseigne" + "name": "SARL Pézenas Carburants", + "brand": "Indépendant sans enseigne" }, "34120006": { - "Nom": "SARL PIN RUDY", - "Marque": "Esso" + "name": "SARL PIN RUDY", + "brand": "Esso" }, "34130002": { - "Nom": "S.A.S HYPER SAINT AUNES", - "Marque": "Leclerc" + "name": "S.A.S HYPER SAINT AUNES", + "brand": "Leclerc" }, "34130003": { - "Nom": "Intermarché MAUGUIO", - "Marque": "Intermarché" + "name": "Intermarché MAUGUIO", + "brand": "Intermarché" }, "34130004": { - "Nom": "EURL ROVA", - "Marque": "Total" + "name": "EURL ROVA", + "brand": "Total" }, "34130005": { - "Nom": "STATION LA LOUVADE", - "Marque": "Intermarché" + "name": "STATION LA LOUVADE", + "brand": "Intermarché" }, "34140001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "34140003": { - "Nom": "AGIP MEZE RN 113", - "Marque": "Agip" + "name": "AGIP MEZE RN 113", + "brand": "Agip" }, "34140004": { - "Nom": "Intermarché MEZE", - "Marque": "Intermarché" + "name": "Intermarché MEZE", + "brand": "Intermarché" }, "34140006": { - "Nom": "sarl carbur", - "Marque": "Dyneff" + "name": "sarl carbur", + "brand": "Dyneff" }, "34150001": { - "Nom": "SPAR", - "Marque": "Supermarchés Spar" + "name": "SPAR", + "brand": "Supermarchés Spar" }, "34150003": { - "Nom": "Intermarché GIGNAC", - "Marque": "Intermarché" + "name": "Intermarché GIGNAC", + "brand": "Intermarché" }, "34160001": { - "Nom": "SARL AGATA", - "Marque": "Indépendant sans enseigne" + "name": "SARL AGATA", + "brand": "Indépendant sans enseigne" }, "34170001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "34170004": { - "Nom": "CASTELNAU-LE-LEZ", - "Marque": "Netto" + "name": "CASTELNAU-LE-LEZ", + "brand": "Netto" }, "34170005": { - "Nom": "CASINO CARBURANTS", - "Marque": "Casino" + "name": "CASINO CARBURANTS", + "brand": "Casino" }, "34190001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "34190002": { - "Nom": "Intermarché LAROQUE", - "Marque": "Intermarché" + "name": "Intermarché LAROQUE", + "brand": "Intermarché" }, "34200001": { - "Nom": "AUCHAN SETE", - "Marque": "Auchan" + "name": "AUCHAN SETE", + "brand": "Auchan" }, "34200002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "34200003": { - "Nom": "DYNEFF Sète", - "Marque": "Dyneff" + "name": "DYNEFF Sète", + "brand": "Dyneff" }, "34200012": { - "Nom": "Avia", - "Marque": "Avia" + "name": "Avia", + "brand": "Avia" }, "34200013": { - "Nom": "RELAIS DU TRIOLET", - "Marque": "Total Access" + "name": "RELAIS DU TRIOLET", + "brand": "Total Access" }, "34210003": { - "Nom": "EF", - "Marque": "Indépendant sans enseigne" + "name": "EF", + "brand": "Indépendant sans enseigne" }, "34220001": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "34220002": { - "Nom": "GALLIEN Saint Pons", - "Marque": "GALLIEN" + "name": "GALLIEN Saint Pons", + "brand": "GALLIEN" }, "34230002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "34250002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "34250003": { - "Nom": "RELAIS 4 CANAUX", - "Marque": "Total Access" + "name": "RELAIS 4 CANAUX", + "brand": "Total Access" }, "34260001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "34270001": { - "Nom": "Intermarché ST MATHIEU TREVIERS", - "Marque": "Intermarché" + "name": "Intermarché ST MATHIEU TREVIERS", + "brand": "Intermarché" }, "34280001": { - "Nom": "SARL ROUX SF", - "Marque": "Total" + "name": "SARL ROUX SF", + "brand": "Total" }, "34280004": { - "Nom": "RELAIS PYRAMIDES", - "Marque": "Total Access" + "name": "RELAIS PYRAMIDES", + "brand": "Total Access" }, "34280005": { - "Nom": "RELAIS DE L'OR", - "Marque": "Total Access" + "name": "RELAIS DE L'OR", + "brand": "Total Access" }, "34290001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "34290003": { - "Nom": "SARL ROCAMAR", - "Marque": "Shell" + "name": "SARL ROCAMAR", + "brand": "Shell" }, "34290004": { - "Nom": "Sarl SGPA", - "Marque": "Shell" + "name": "Sarl SGPA", + "brand": "Shell" }, "34300001": { - "Nom": "Hyper U", - "Marque": "Système U" + "name": "Hyper U", + "brand": "Système U" }, "34300002": { - "Nom": "L OCCITANE AUTOMOBILES", - "Marque": "Total" + "name": "L OCCITANE AUTOMOBILES", + "brand": "Total" }, "34300006": { - "Nom": "Intermarché AGDE - ACAR", - "Marque": "Intermarché" + "name": "Intermarché AGDE - ACAR", + "brand": "Intermarché" }, "34300008": { - "Nom": "LONGUELANES SERVICE ROUTE", - "Marque": "Indépendant sans enseigne" + "name": "LONGUELANES SERVICE ROUTE", + "brand": "Indépendant sans enseigne" }, "34300009": { - "Nom": "RELAIS CAP D'AGDE", - "Marque": "Total" + "name": "RELAIS CAP D'AGDE", + "brand": "Total" }, "34300011": { - "Nom": "AGIP CAP D'AGDE", - "Marque": "Agip" + "name": "AGIP CAP D'AGDE", + "brand": "Agip" }, "34310002": { - "Nom": "Intermarché CAPESTANG", - "Marque": "Intermarché" + "name": "Intermarché CAPESTANG", + "brand": "Intermarché" }, "34311001": { - "Nom": "LECLERC", - "Marque": "Leclerc" + "name": "LECLERC", + "brand": "Leclerc" }, "34320001": { - "Nom": "SARL LAFITTE", - "Marque": "Elan" + "name": "SARL LAFITTE", + "brand": "Elan" }, "34320003": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "34330001": { - "Nom": "SEBE ET FILS", - "Marque": "Elan" + "name": "SEBE ET FILS", + "brand": "Elan" }, "34340002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "34350003": { - "Nom": "TRUCK ETAPE", - "Marque": "Indépendant sans enseigne" + "name": "TRUCK ETAPE", + "brand": "Indépendant sans enseigne" }, "34360001": { - "Nom": "STE EXPL.BERNARD", - "Marque": "Total" + "name": "STE EXPL.BERNARD", + "brand": "Total" }, "34360002": { - "Nom": "SA COVALSTE", - "Marque": "Intermarché Contact" + "name": "SA COVALSTE", + "brand": "Intermarché Contact" }, "34370001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "34400004": { - "Nom": "ESSO LUNELLOISE", - "Marque": "Esso Express" + "name": "ESSO LUNELLOISE", + "brand": "Esso Express" }, "34400007": { - "Nom": "Intermarché LUNEL", - "Marque": "Intermarché" + "name": "Intermarché LUNEL", + "brand": "Intermarché" }, "34400013": { - "Nom": "Intermarché LUNEL LES PORTES DE LA MER", - "Marque": "Intermarché" + "name": "Intermarché LUNEL LES PORTES DE LA MER", + "brand": "Intermarché" }, "34400016": { - "Nom": "BP A9 AIRE AMBRUSSUM NORD", - "Marque": "BP" + "name": "BP A9 AIRE AMBRUSSUM NORD", + "brand": "BP" }, "34400017": { - "Nom": "RELAIS DU VIDOURLE", - "Marque": "Total" + "name": "RELAIS DU VIDOURLE", + "brand": "Total" }, "34400018": { - "Nom": "RELAIS LA PETIOLE", - "Marque": "Total Access" + "name": "RELAIS LA PETIOLE", + "brand": "Total Access" }, "34402001": { - "Nom": "LECLERC-LEVANDIS SAS", - "Marque": "Leclerc" + "name": "LECLERC-LEVANDIS SAS", + "brand": "Leclerc" }, "34410002": { - "Nom": "Carrefour", - "Marque": "Carrefour" + "name": "Carrefour", + "brand": "Carrefour" }, "34410003": { - "Nom": "SARL BOIVIN AMH", - "Marque": "Dyneff" + "name": "SARL BOIVIN AMH", + "brand": "Dyneff" }, "34410006": { - "Nom": "Dyneff Valras", - "Marque": "Dyneff" + "name": "Dyneff Valras", + "brand": "Dyneff" }, "34420003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "34420004": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "34430001": { - "Nom": "STATION ST JEAN VED BESSAC", - "Marque": "Total" + "name": "STATION ST JEAN VED BESSAC", + "brand": "Total" }, "34430002": { - "Nom": "Carrefour ST-JEAN DE VEDAS", - "Marque": "Carrefour" + "name": "Carrefour ST-JEAN DE VEDAS", + "brand": "Carrefour" }, "34440001": { - "Nom": "DYNEFF Colombiers", - "Marque": "Dyneff" + "name": "DYNEFF Colombiers", + "brand": "Dyneff" }, "34440002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Super Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Super Casino" }, "34450001": { - "Nom": "EOR VIAS", - "Marque": "Total" + "name": "EOR VIAS", + "brand": "Total" }, "34450002": { - "Nom": "Intermarché VIAS", - "Marque": "Intermarché" + "name": "Intermarché VIAS", + "brand": "Intermarché" }, "34460001": { - "Nom": "STATION DYNEFF", - "Marque": "Dyneff" + "name": "STATION DYNEFF", + "brand": "Dyneff" }, "34480001": { - "Nom": "Intermarché MAGALAS", - "Marque": "Intermarché" + "name": "Intermarché MAGALAS", + "brand": "Intermarché" }, "34490001": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "34490002": { - "Nom": "Intermarché LIGNAN S/ORB", - "Marque": "Intermarché" + "name": "Intermarché LIGNAN S/ORB", + "brand": "Intermarché" }, "34500006": { - "Nom": "AGIP BEZIERS PEZENAS", - "Marque": "Agip" + "name": "AGIP BEZIERS PEZENAS", + "brand": "Agip" }, "34500007": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "34500008": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "34500012": { - "Nom": "DYNEFF", - "Marque": "Dyneff" + "name": "DYNEFF", + "brand": "Dyneff" }, "34500023": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "34500024": { - "Nom": "Dyneff Beziers", - "Marque": "Dyneff" + "name": "Dyneff Beziers", + "brand": "Dyneff" }, "34500025": { - "Nom": "RELAIS DE LA CAPELIERE", - "Marque": "Total" + "name": "RELAIS DE LA CAPELIERE", + "brand": "Total" }, "34500026": { - "Nom": "RELAIS L'HORT MONSEIGNEUR", - "Marque": "Total Access" + "name": "RELAIS L'HORT MONSEIGNEUR", + "brand": "Total Access" }, "34500027": { - "Nom": "RELAIS DEVEZE", - "Marque": "Total Access" + "name": "RELAIS DEVEZE", + "brand": "Total Access" }, "34500028": { - "Nom": "RELAIS LES ARENES", - "Marque": "Total Access" + "name": "RELAIS LES ARENES", + "brand": "Total Access" }, "34510002": { - "Nom": "SPAR DYNEFF", - "Marque": "Dyneff" + "name": "SPAR DYNEFF", + "brand": "Dyneff" }, "34520002": { - "Nom": "RELAIS DU CAYLAR", - "Marque": "Total" + "name": "RELAIS DU CAYLAR", + "brand": "Total" }, "34530001": { - "Nom": "Tabac Station Service Lopez", - "Marque": "Indépendant sans enseigne" + "name": "Tabac Station Service Lopez", + "brand": "Indépendant sans enseigne" }, "34535001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "34540001": { - "Nom": "Carrefour BALARUC", - "Marque": "Carrefour" + "name": "Carrefour BALARUC", + "brand": "Carrefour" }, "34540002": { - "Nom": "SARL MONLLOR", - "Marque": "Total Access" + "name": "SARL MONLLOR", + "brand": "Total Access" }, "34550001": { - "Nom": "ESSO MONTS RAMUS", - "Marque": "Esso Express" + "name": "ESSO MONTS RAMUS", + "brand": "Esso Express" }, "34550002": { - "Nom": "Intermarché BESSAN", - "Marque": "Intermarché" + "name": "Intermarché BESSAN", + "brand": "Intermarché" }, "34560001": { - "Nom": "SUPERMARCHE SPAR STATION", - "Marque": "SPAR STATION" + "name": "SUPERMARCHE SPAR STATION", + "brand": "SPAR STATION" }, "34560002": { - "Nom": "MARKET POUSSAN", - "Marque": "Carrefour Market" + "name": "MARKET POUSSAN", + "brand": "Carrefour Market" }, "34570001": { - "Nom": "GARAGE PARIS FRERES", - "Marque": "Total" + "name": "GARAGE PARIS FRERES", + "brand": "Total" }, "34570002": { - "Nom": "SUPER U MONTARNAUD", - "Marque": "Système U" + "name": "SUPER U MONTARNAUD", + "brand": "Système U" }, "34590001": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "34600001": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "34600002": { - "Nom": "GALLIEN Faugères", - "Marque": "GALLIEN" + "name": "GALLIEN Faugères", + "brand": "GALLIEN" }, "34600003": { - "Nom": "Intermarché VILLEMAGNE BEDARIEUX", - "Marque": "Intermarché" + "name": "Intermarché VILLEMAGNE BEDARIEUX", + "brand": "Intermarché" }, "34620001": { - "Nom": "Carbutech", - "Marque": "Indépendant sans enseigne" + "name": "Carbutech", + "brand": "Indépendant sans enseigne" }, "34620002": { - "Nom": "Sarl yvars bernard station dyneff", - "Marque": "Dyneff" + "name": "Sarl yvars bernard station dyneff", + "brand": "Dyneff" }, "34660001": { - "Nom": "Intermarché COURNONSEC", - "Marque": "Intermarché" + "name": "Intermarché COURNONSEC", + "brand": "Intermarché" }, "34670001": { - "Nom": "SAS AVION", - "Marque": "Intermarché Contact" + "name": "SAS AVION", + "brand": "Intermarché Contact" }, "34690004": { - "Nom": "Intermarché FABREGUES", - "Marque": "Intermarché" + "name": "Intermarché FABREGUES", + "brand": "Intermarché" }, "34690006": { - "Nom": "BP A9 AIRE DE FABREGUES SUD", - "Marque": "BP" + "name": "BP A9 AIRE DE FABREGUES SUD", + "brand": "BP" }, "34690007": { - "Nom": "AGIP FABREGUES", - "Marque": "Agip" + "name": "AGIP FABREGUES", + "brand": "Agip" }, "34700001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "34700002": { - "Nom": "STATION AVIA RAMOND", - "Marque": "Avia" + "name": "STATION AVIA RAMOND", + "brand": "Avia" }, "34700005": { - "Nom": "E.LECLERC - LE BOSC - SALAGOU", - "Marque": "Leclerc" + "name": "E.LECLERC - LE BOSC - SALAGOU", + "brand": "Leclerc" }, "34725001": { - "Nom": "ESSO BOURGEOIS", - "Marque": "Esso" + "name": "ESSO BOURGEOIS", + "brand": "Esso" }, "34730001": { - "Nom": "Intermarché PRADES LE LEZ", - "Marque": "Intermarché" + "name": "Intermarché PRADES LE LEZ", + "brand": "Intermarché" }, "34740002": { - "Nom": "ESSO VENDARGUES", - "Marque": "Esso Express" + "name": "ESSO VENDARGUES", + "brand": "Esso Express" }, "34740004": { - "Nom": "RELAIS DE VENDARGUE", - "Marque": "Total Access" + "name": "RELAIS DE VENDARGUE", + "brand": "Total Access" }, "34750001": { - "Nom": "Intermarché VILLENEUVE LES MAGUE", - "Marque": "Intermarché" + "name": "Intermarché VILLENEUVE LES MAGUE", + "brand": "Intermarché" }, "34770001": { - "Nom": "STATION PRADE DE FOURMEL", - "Marque": "Total Access" + "name": "STATION PRADE DE FOURMEL", + "brand": "Total Access" }, "34770002": { - "Nom": "ESSO LITTORAL", - "Marque": "Esso Express" + "name": "ESSO LITTORAL", + "brand": "Esso Express" }, "34770005": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "34790001": { - "Nom": "Casino", - "Marque": "Casino" + "name": "Casino", + "brand": "Casino" }, "34790002": { - "Nom": "SARL GARAGE CLERGUE", - "Marque": "Esso" + "name": "SARL GARAGE CLERGUE", + "brand": "Esso" }, "34800001": { - "Nom": "Hyper U", - "Marque": "Système U" + "name": "Hyper U", + "brand": "Système U" }, "34800002": { - "Nom": "AVIA CLERMONT L'HERAULT RN9", - "Marque": "Avia" + "name": "AVIA CLERMONT L'HERAULT RN9", + "brand": "Avia" }, "34800004": { - "Nom": "Intermarché CLERMONT L'HERAULT", - "Marque": "Intermarché" + "name": "Intermarché CLERMONT L'HERAULT", + "brand": "Intermarché" }, "34800005": { - "Nom": "STATION SERVICE E.LECLERC", - "Marque": "Leclerc" + "name": "STATION SERVICE E.LECLERC", + "brand": "Leclerc" }, "34810001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "34830001": { - "Nom": "Intermarché JACOU", - "Marque": "Intermarché" + "name": "Intermarché JACOU", + "brand": "Intermarché" }, "34920001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "34920002": { - "Nom": "Carrefour", - "Marque": "Carrefour" + "name": "Carrefour", + "brand": "Carrefour" }, "34973001": { - "Nom": "Carrefour LATTES", - "Marque": "Carrefour" + "name": "Carrefour LATTES", + "brand": "Carrefour" }, "34980001": { - "Nom": "Carrefour ST CLEMENT", - "Marque": "Carrefour" + "name": "Carrefour ST CLEMENT", + "brand": "Carrefour" }, "34980002": { - "Nom": "Intermarché ST GELY DU FESC", - "Marque": "Intermarché" + "name": "Intermarché ST GELY DU FESC", + "brand": "Intermarché" }, "34990001": { - "Nom": "Intermarché JUVIGNAC", - "Marque": "Intermarché" + "name": "Intermarché JUVIGNAC", + "brand": "Intermarché" }, "35000006": { - "Nom": "SARL LEFEBVRE MICHEL", - "Marque": "Total" + "name": "SARL LEFEBVRE MICHEL", + "brand": "Total" }, "35000008": { - "Nom": "SARL JERNAD22", - "Marque": "Avia" + "name": "SARL JERNAD22", + "brand": "Avia" }, "35000012": { - "Nom": "LECLERC REN'OUEST", - "Marque": "Leclerc" + "name": "LECLERC REN'OUEST", + "brand": "Leclerc" }, "35000013": { - "Nom": "Station Malo", - "Marque": "Station Malo" + "name": "Station Malo", + "brand": "Station Malo" }, "35000015": { - "Nom": "ESSO EXPRESS RENNES OUEST", - "Marque": "Esso Express" + "name": "ESSO EXPRESS RENNES OUEST", + "brand": "Esso Express" }, "35000017": { - "Nom": "RELAIS BARRE THOMAS", - "Marque": "Total" + "name": "RELAIS BARRE THOMAS", + "brand": "Total" }, "35000018": { - "Nom": "RELAIS DU LANDRY", - "Marque": "Total" + "name": "RELAIS DU LANDRY", + "brand": "Total" }, "35000019": { - "Nom": "RELAIS ILE DE FRANCE", - "Marque": "Total" + "name": "RELAIS ILE DE FRANCE", + "brand": "Total" }, "35000020": { - "Nom": "RELAIS RENNES LECLERC", - "Marque": "Total Access" + "name": "RELAIS RENNES LECLERC", + "brand": "Total Access" }, "35000021": { - "Nom": "RELAIS RENNES ALMA", - "Marque": "Total Access" + "name": "RELAIS RENNES ALMA", + "brand": "Total Access" }, "35000022": { - "Nom": "RELAIS RENNES HIPPODROME", - "Marque": "Total Access" + "name": "RELAIS RENNES HIPPODROME", + "brand": "Total Access" }, "35000023": { - "Nom": "RELAIS MALIFEU", - "Marque": "Total Access" + "name": "RELAIS MALIFEU", + "brand": "Total Access" }, "35111001": { - "Nom": "Utile LA FRESNAIS", - "Marque": "Système U" + "name": "Utile LA FRESNAIS", + "brand": "Système U" }, "35113002": { - "Nom": "8 à Huit Domagné", - "Marque": "Huit à 8" + "name": "8 à Huit Domagné", + "brand": "Huit à 8" }, "35114002": { - "Nom": "STATION GARAGE DE LA BAIE", - "Marque": "Total" + "name": "STATION GARAGE DE LA BAIE", + "brand": "Total" }, "35120001": { - "Nom": "Carrefour Market DOL DE BRETAGNE", - "Marque": "Carrefour Market" + "name": "Carrefour Market DOL DE BRETAGNE", + "brand": "Carrefour Market" }, "35120002": { - "Nom": "Super U DOL DE BRETAGNE", - "Marque": "Système U" + "name": "Super U DOL DE BRETAGNE", + "brand": "Système U" }, "35130001": { - "Nom": "Super U LA GUERCHE DE BRETAGNE", - "Marque": "Système U" + "name": "Super U LA GUERCHE DE BRETAGNE", + "brand": "Système U" }, "35130003": { - "Nom": "Intermarché LA GUERCHE/BRETAGNE", - "Marque": "Intermarché" + "name": "Intermarché LA GUERCHE/BRETAGNE", + "brand": "Intermarché" }, "35131001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "35132004": { - "Nom": "RELAIS LES TROIS MARCHES", - "Marque": "Total Access" + "name": "RELAIS LES TROIS MARCHES", + "brand": "Total Access" }, "35133001": { - "Nom": "FOUGERES DISTRIBUTION", - "Marque": "Leclerc" + "name": "FOUGERES DISTRIBUTION", + "brand": "Leclerc" }, "35135001": { - "Nom": "Intermarché CHANTEPIE", - "Marque": "Intermarché" + "name": "Intermarché CHANTEPIE", + "brand": "Intermarché" }, "35136004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "35137001": { - "Nom": "LECLERC PLEUMELEUC", - "Marque": "Leclerc" + "name": "LECLERC PLEUMELEUC", + "brand": "Leclerc" }, "35140001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "35150001": { - "Nom": "Super U JANZE", - "Marque": "Système U" + "name": "Super U JANZE", + "brand": "Système U" }, "35150003": { - "Nom": "Intermarché JANZE", - "Marque": "Intermarché" + "name": "Intermarché JANZE", + "brand": "Intermarché" }, "35150004": { - "Nom": "Total BRIE", - "Marque": "Total BRIE" + "name": "Total BRIE", + "brand": "Total BRIE" }, "35160001": { - "Nom": "Super U PAYS DE MONTFORT", - "Marque": "Système U" + "name": "Super U PAYS DE MONTFORT", + "brand": "Système U" }, "35160002": { - "Nom": "SARL GARAGE GANDON GILLES", - "Marque": "Total" + "name": "SARL GARAGE GANDON GILLES", + "brand": "Total" }, "35170001": { - "Nom": "Intermarché BRUZ", - "Marque": "Intermarché" + "name": "Intermarché BRUZ", + "brand": "Intermarché" }, "35170002": { - "Nom": "SUPER U BRUZ", - "Marque": "Système U" + "name": "SUPER U BRUZ", + "brand": "Système U" }, "35190003": { - "Nom": "Super U TINTENIAC", - "Marque": "Système U" + "name": "Super U TINTENIAC", + "brand": "Système U" }, "35190004": { - "Nom": "GARAGE COLLET-TOSTIVINT STATION AVIA", - "Marque": "Avia" + "name": "GARAGE COLLET-TOSTIVINT STATION AVIA", + "brand": "Avia" }, "35200003": { - "Nom": "Carrefour Market LA POTERIE", - "Marque": "Carrefour Market" + "name": "Carrefour Market LA POTERIE", + "brand": "Carrefour Market" }, "35200005": { - "Nom": "Super U RENNES Sarah Bernhardt", - "Marque": "Système U" + "name": "Super U RENNES Sarah Bernhardt", + "brand": "Système U" }, "35200007": { - "Nom": "RELAIS RENNES ROUTE DE NANTES", - "Marque": "Total Access" + "name": "RELAIS RENNES ROUTE DE NANTES", + "brand": "Total Access" }, "35205001": { - "Nom": "Super U RENNES ST JACQUES", - "Marque": "Système U" + "name": "Super U RENNES ST JACQUES", + "brand": "Système U" }, "35220001": { - "Nom": "Super U CHATEAUBOURG", - "Marque": "Système U" + "name": "Super U CHATEAUBOURG", + "brand": "Système U" }, "35230001": { - "Nom": "Super U NOYAL CHATILLON", - "Marque": "Système U" + "name": "Super U NOYAL CHATILLON", + "brand": "Système U" }, "35230004": { - "Nom": "Intermarché ORGERES", - "Marque": "Intermarché" + "name": "Intermarché ORGERES", + "brand": "Intermarché" }, "35230006": { - "Nom": "ESSO EXPRESS NOYAL CHATILLON SUR SEICHE", - "Marque": "Esso Express" + "name": "ESSO EXPRESS NOYAL CHATILLON SUR SEICHE", + "brand": "Esso Express" }, "35235001": { - "Nom": "SARL ABR - GARAGE MACE", - "Marque": "Total" + "name": "SARL ABR - GARAGE MACE", + "brand": "Total" }, "35240001": { - "Nom": "Super U RETIERS", - "Marque": "Système U" + "name": "Super U RETIERS", + "brand": "Système U" }, "35250001": { - "Nom": "Super U ST AUBIN D'AUBIGNE", - "Marque": "Système U" + "name": "Super U ST AUBIN D'AUBIGNE", + "brand": "Système U" }, "35260002": { - "Nom": "Super U CANCALE", - "Marque": "Système U" + "name": "Super U CANCALE", + "brand": "Système U" }, "35270001": { - "Nom": "Hyper U COMBOURG", - "Marque": "Système U" + "name": "Hyper U COMBOURG", + "brand": "Système U" }, "35270002": { - "Nom": "Intermarché COMBOURG", - "Marque": "Intermarché" + "name": "Intermarché COMBOURG", + "brand": "Intermarché" }, "35290001": { - "Nom": "Super U ST MEEN LE GRAND", - "Marque": "Système U" + "name": "Super U ST MEEN LE GRAND", + "brand": "Système U" }, "35290003": { - "Nom": "Intermarché ST MEEN LE GRAND", - "Marque": "Intermarché" + "name": "Intermarché ST MEEN LE GRAND", + "brand": "Intermarché" }, "35300001": { - "Nom": "ESSO EMERAUDE", - "Marque": "Esso Express" + "name": "ESSO EMERAUDE", + "brand": "Esso Express" }, "35300002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "35300003": { - "Nom": "Total", - "Marque": "Total" + "name": "Total", + "brand": "Total" }, "35301001": { - "Nom": "Carrefour FOUGERES", - "Marque": "Carrefour" + "name": "Carrefour FOUGERES", + "brand": "Carrefour" }, "35310002": { - "Nom": "Super U MORDELLES", - "Marque": "Système U" + "name": "Super U MORDELLES", + "brand": "Système U" }, "35310004": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "35320002": { - "Nom": "Utile", - "Marque": "Système U" + "name": "Utile", + "brand": "Système U" }, "35330001": { - "Nom": "LEPELTIER S.A.R.L.", - "Marque": "Elan" + "name": "LEPELTIER S.A.R.L.", + "brand": "Elan" }, "35330002": { - "Nom": "Intermarché MERNEL", - "Marque": "Intermarché" + "name": "Intermarché MERNEL", + "brand": "Intermarché" }, "35340002": { - "Nom": "Intermarché LIFFRE", - "Marque": "Intermarché" + "name": "Intermarché LIFFRE", + "brand": "Intermarché" }, "35340003": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "35342001": { - "Nom": "Super U LIFFRE", - "Marque": "Système U" + "name": "Super U LIFFRE", + "brand": "Système U" }, "35350003": { - "Nom": "Intermarché ST MELOIR DES ONDES", - "Marque": "Intermarché" + "name": "Intermarché ST MELOIR DES ONDES", + "brand": "Intermarché" }, "35350004": { - "Nom": "La Halte de Bonaban", - "Marque": "Indépendant" + "name": "La Halte de Bonaban", + "brand": "Indépendant" }, "35360001": { - "Nom": "Intermarché MONTAUBAN DE BRETAGN", - "Marque": "Intermarché" + "name": "Intermarché MONTAUBAN DE BRETAGN", + "brand": "Intermarché" }, "35370002": { - "Nom": "Intermarché ARGENTRE DU PLESSIS", - "Marque": "Intermarché" + "name": "Intermarché ARGENTRE DU PLESSIS", + "brand": "Intermarché" }, "35370003": { - "Nom": "RELAIS MONDEVERT", - "Marque": "Total" + "name": "RELAIS MONDEVERT", + "brand": "Total" }, "35370004": { - "Nom": "SAS KERALLI STATION", - "Marque": "Intermarché" + "name": "SAS KERALLI STATION", + "brand": "Intermarché" }, "35380001": { - "Nom": "Super U PLELAN LE GRAND", - "Marque": "Système U" + "name": "Super U PLELAN LE GRAND", + "brand": "Système U" }, "35390001": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "35400002": { - "Nom": "SARL ACDL- SAINT MALO", - "Marque": "Total" + "name": "SARL ACDL- SAINT MALO", + "brand": "Total" }, "35400006": { - "Nom": "Carrefour SAINT MALO", - "Marque": "Carrefour" + "name": "Carrefour SAINT MALO", + "brand": "Carrefour" }, "35400007": { - "Nom": "E.LECLERC ST MALO DISTRIBUTION", - "Marque": "Leclerc" + "name": "E.LECLERC ST MALO DISTRIBUTION", + "brand": "Leclerc" }, "35400008": { - "Nom": "BISQUINE-Intermarché SAINT MALO", - "Marque": "Intermarché" + "name": "BISQUINE-Intermarché SAINT MALO", + "brand": "Intermarché" }, "35400009": { - "Nom": "RELAIS MALOUIN", - "Marque": "Total" + "name": "RELAIS MALOUIN", + "brand": "Total" }, "35400010": { - "Nom": "RELAIS ST SERVAN LA BALUE", - "Marque": "Total Access" + "name": "RELAIS ST SERVAN LA BALUE", + "brand": "Total Access" }, "35400011": { - "Nom": "RELAIS ST MALO OUEST PETIT COTE", - "Marque": "Total Access" + "name": "RELAIS ST MALO OUEST PETIT COTE", + "brand": "Total Access" }, "35400012": { - "Nom": "RELAIS ST MALO EST - GD COTE", - "Marque": "Total Access" + "name": "RELAIS ST MALO EST - GD COTE", + "brand": "Total Access" }, "35410001": { - "Nom": "Hyper U CHATEAUGIRON", - "Marque": "Système U" + "name": "Hyper U CHATEAUGIRON", + "brand": "Système U" }, "35410002": { - "Nom": "Intermarché les Mousquetaires DOMLOUP CHATEAUGIRON", - "Marque": "Intermarché" + "name": "Intermarché les Mousquetaires DOMLOUP CHATEAUGIRON", + "brand": "Intermarché" }, "35420001": { - "Nom": "Super U LOUVIGNE DU DESERT", - "Marque": "Système U" + "name": "Super U LOUVIGNE DU DESERT", + "brand": "Système U" }, "35430001": { - "Nom": "Cora Saint Jouan des Guérets", - "Marque": "CORA" + "name": "Cora Saint Jouan des Guérets", + "brand": "CORA" }, "35440002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "35460001": { - "Nom": "Super U ST BRICE EN COGLES", - "Marque": "Système U" + "name": "Super U ST BRICE EN COGLES", + "brand": "Système U" }, "35470001": { - "Nom": "Z_SAS DACAR", - "Marque": "Leclerc" + "name": "Z_SAS DACAR", + "brand": "Leclerc" }, "35470003": { - "Nom": "Intermarché BAIN DE BRETAGNE", - "Marque": "Intermarché" + "name": "Intermarché BAIN DE BRETAGNE", + "brand": "Intermarché" }, "35470004": { - "Nom": "RELAIS POMMENIAC", - "Marque": "Total" + "name": "RELAIS POMMENIAC", + "brand": "Total" }, "35480001": { - "Nom": "Super U GUIPRY", - "Marque": "Système U" + "name": "Super U GUIPRY", + "brand": "Système U" }, "35480002": { - "Nom": "SAINDON Agnès", - "Marque": "Elan" + "name": "SAINDON Agnès", + "brand": "Elan" }, "35480003": { - "Nom": "SNC CARVA", - "Marque": "Indépendant sans enseigne" + "name": "SNC CARVA", + "brand": "Indépendant sans enseigne" }, "35490001": { - "Nom": "JLJ DISTRIBUTION", - "Marque": "Total" + "name": "JLJ DISTRIBUTION", + "brand": "Total" }, "35490003": { - "Nom": "Intermarché VIEUX VY S/ COUESNON", - "Marque": "Intermarché" + "name": "Intermarché VIEUX VY S/ COUESNON", + "brand": "Intermarché" }, "35500001": { - "Nom": "Hyper U VITRE", - "Marque": "Système U" + "name": "Hyper U VITRE", + "brand": "Système U" }, "35500004": { - "Nom": "VITRE-DIS", - "Marque": "Leclerc" + "name": "VITRE-DIS", + "brand": "Leclerc" }, "35500006": { - "Nom": "Intermarché VITRE", - "Marque": "Intermarché" + "name": "Intermarché VITRE", + "brand": "Intermarché" }, "35500008": { - "Nom": "INTERMACHE SUPER", - "Marque": "Intermarché" + "name": "INTERMACHE SUPER", + "brand": "Intermarché" }, "35500009": { - "Nom": "RELAIS ERBREE", - "Marque": "Total" + "name": "RELAIS ERBREE", + "brand": "Total" }, "35510001": { - "Nom": "Carrefour CESSON SEVIGNE", - "Marque": "Carrefour" + "name": "Carrefour CESSON SEVIGNE", + "brand": "Carrefour" }, "35510004": { - "Nom": "Carrefour Contact / SARL JENITON", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact / SARL JENITON", + "brand": "Carrefour Contact" }, "35510005": { - "Nom": "RELAIS CESSON SEVIGNE", - "Marque": "Total" + "name": "RELAIS CESSON SEVIGNE", + "brand": "Total" }, "35520001": { - "Nom": "Super U MELESSE", - "Marque": "Système U" + "name": "Super U MELESSE", + "brand": "Système U" }, "35520002": { - "Nom": "SARL DVT", - "Marque": "Total" + "name": "SARL DVT", + "brand": "Total" }, "35520003": { - "Nom": "Intermarché LA MEZIERE", - "Marque": "Intermarché" + "name": "Intermarché LA MEZIERE", + "brand": "Intermarché" }, "35520004": { - "Nom": "station LECLERC CAP MALO", - "Marque": "Leclerc" + "name": "station LECLERC CAP MALO", + "brand": "Leclerc" }, "35530001": { - "Nom": "SONODIS", - "Marque": "Leclerc" + "name": "SONODIS", + "brand": "Leclerc" }, "35530002": { - "Nom": "SERVON SUR VILAINE", - "Marque": "Avia" + "name": "SERVON SUR VILAINE", + "brand": "Avia" }, "35540004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "35540005": { - "Nom": "U express", - "Marque": "Système U" + "name": "U express", + "brand": "Système U" }, "35550004": { - "Nom": "Super U PIPRIAC", - "Marque": "Système U" + "name": "Super U PIPRIAC", + "brand": "Système U" }, "35550005": { - "Nom": "LOHEAC STAND AUTO", - "Marque": "Elan" + "name": "LOHEAC STAND AUTO", + "brand": "Elan" }, "35560003": { - "Nom": "Carrefour Contact ANTRAIN", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact ANTRAIN", + "brand": "Carrefour Contact" }, "35560005": { - "Nom": "utile bazouges la perouse", - "Marque": "Système U" + "name": "utile bazouges la perouse", + "brand": "Système U" }, "35580001": { - "Nom": "Hyper U GUICHEN", - "Marque": "Système U" + "name": "Hyper U GUICHEN", + "brand": "Système U" }, "35580002": { - "Nom": "EURL Station COLAS", - "Marque": "Total Access" + "name": "EURL Station COLAS", + "brand": "Total Access" }, "35580003": { - "Nom": "Intermarché GOVEN", - "Marque": "Intermarché" + "name": "Intermarché GOVEN", + "brand": "Intermarché" }, "35590001": { - "Nom": "Super U L'HERMITAGE", - "Marque": "Système U" + "name": "Super U L'HERMITAGE", + "brand": "Système U" }, "35590004": { - "Nom": "Aire d'Armor et d'Argoat", - "Marque": "Shell" + "name": "Aire d'Armor et d'Argoat", + "brand": "Shell" }, "35590007": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "35590008": { - "Nom": "RELAIS DU PAYS DE RENNES", - "Marque": "Total" + "name": "RELAIS DU PAYS DE RENNES", + "brand": "Total" }, "35600001": { - "Nom": "DESMOTS", - "Marque": "Total" + "name": "DESMOTS", + "brand": "Total" }, "35600002": { - "Nom": "GARAGE ROUXEL SARL", - "Marque": "Elan" + "name": "GARAGE ROUXEL SARL", + "brand": "Elan" }, "35600003": { - "Nom": "Intermarché REDON", - "Marque": "Intermarché" + "name": "Intermarché REDON", + "brand": "Intermarché" }, "35610001": { - "Nom": "Intermarché PLEINE FOUGERES", - "Marque": "Intermarché" + "name": "Intermarché PLEINE FOUGERES", + "brand": "Intermarché" }, "35640001": { - "Nom": "Intermarché SAS JUGUERO", - "Marque": "Intermarché Contact" + "name": "Intermarché SAS JUGUERO", + "brand": "Intermarché Contact" }, "35650001": { - "Nom": "CASINO CARBURANTS", - "Marque": "Casino" + "name": "CASINO CARBURANTS", + "brand": "Casino" }, "35650002": { - "Nom": "Super U LE RHEU", - "Marque": "Système U" + "name": "Super U LE RHEU", + "brand": "Système U" }, "35660001": { - "Nom": "HOCHARD", - "Marque": "Total" + "name": "HOCHARD", + "brand": "Total" }, "35660003": { - "Nom": "Café des sports", - "Marque": "Indépendant sans enseigne" + "name": "Café des sports", + "brand": "Indépendant sans enseigne" }, "35680001": { - "Nom": "LOUVIGNE AUTO SERVICE", - "Marque": "Elan" + "name": "LOUVIGNE AUTO SERVICE", + "brand": "Elan" }, "35700001": { - "Nom": "Intermarché RENNES", - "Marque": "Intermarché" + "name": "Intermarché RENNES", + "brand": "Intermarché" }, "35720001": { - "Nom": "COMBOURG- GGE JOURDAN", - "Marque": "Total" + "name": "COMBOURG- GGE JOURDAN", + "brand": "Total" }, "35720004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "35730001": { - "Nom": "Super U PLEURTUIT", - "Marque": "Système U" + "name": "Super U PLEURTUIT", + "brand": "Système U" }, "35740001": { - "Nom": "AUTO PACE SERVICES", - "Marque": "Elan" + "name": "AUTO PACE SERVICES", + "brand": "Elan" }, "35743001": { - "Nom": "Cora", - "Marque": "CORA" + "name": "Cora", + "brand": "CORA" }, "35750002": { - "Nom": "Station Total garage NOGUES", - "Marque": "Total" + "name": "Station Total garage NOGUES", + "brand": "Total" }, "35760002": { - "Nom": "LECLERC ST-GREGOIRE", - "Marque": "Leclerc" + "name": "LECLERC ST-GREGOIRE", + "brand": "Leclerc" }, "35760004": { - "Nom": "RELAIS SAINT-GREGOIRE", - "Marque": "Total" + "name": "RELAIS SAINT-GREGOIRE", + "brand": "Total" }, "35761001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "35770001": { - "Nom": "Z VERN SUR SEICHE", - "Marque": "Leclerc" + "name": "Z VERN SUR SEICHE", + "brand": "Leclerc" }, "35770002": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "35770006": { - "Nom": "RELAIS DE VERN SUR SEICHE", - "Marque": "Total Access" + "name": "RELAIS DE VERN SUR SEICHE", + "brand": "Total Access" }, "35780001": { - "Nom": "Intermarché LA RICHARDAIS", - "Marque": "Intermarché" + "name": "Intermarché LA RICHARDAIS", + "brand": "Intermarché" }, "35800002": { - "Nom": "BRETECHE STATION SERVICES", - "Marque": "Avia" + "name": "BRETECHE STATION SERVICES", + "brand": "Avia" }, "35800003": { - "Nom": "Intermarché POLIGNY", - "Marque": "Intermarché" + "name": "Intermarché POLIGNY", + "brand": "Intermarché" }, "35800004": { - "Nom": "RELAIS DU PRIEURE", - "Marque": "Total Access" + "name": "RELAIS DU PRIEURE", + "brand": "Total Access" }, "35830001": { - "Nom": "GARAGE ACTION AUTOMOBILE", - "Marque": "Esso" + "name": "GARAGE ACTION AUTOMOBILE", + "brand": "Esso" }, "35850001": { - "Nom": "Super U ROMILLE", - "Marque": "Système U" + "name": "Super U ROMILLE", + "brand": "Système U" }, "35850003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "35890001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "36000001": { - "Nom": "AUCHAN CHATEAUROUX", - "Marque": "Auchan" + "name": "AUCHAN CHATEAUROUX", + "brand": "Auchan" }, "36000003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "36000009": { - "Nom": "Total Access Carrefour", - "Marque": "Total Access" + "name": "Total Access Carrefour", + "brand": "Total Access" }, "36000010": { - "Nom": "SA CHIRAULT", - "Marque": "Indépendant" + "name": "SA CHIRAULT", + "brand": "Indépendant" }, "36000012": { - "Nom": "U Express CHATEAUROUX", - "Marque": "Système U" + "name": "U Express CHATEAUROUX", + "brand": "Système U" }, "36000014": { - "Nom": "SAS MYMIKA - Intermarché", - "Marque": "Intermarché" + "name": "SAS MYMIKA - Intermarché", + "brand": "Intermarché" }, "36000016": { - "Nom": "RELAIS DE TOUT VENT", - "Marque": "Total Access" + "name": "RELAIS DE TOUT VENT", + "brand": "Total Access" }, "36100001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "36100002": { - "Nom": "LIMOISE-DISTR", - "Marque": "Leclerc" + "name": "LIMOISE-DISTR", + "brand": "Leclerc" }, "36100003": { - "Nom": "FOUGERE AUTO", - "Marque": "Elan" + "name": "FOUGERE AUTO", + "brand": "Elan" }, "36100005": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "36110001": { - "Nom": "Super U Coop Atlantique Levroux", - "Marque": "Système U" + "name": "Super U Coop Atlantique Levroux", + "brand": "Système U" }, "36120001": { - "Nom": "MARTEAU SARL GARAGE", - "Marque": "Avia" + "name": "MARTEAU SARL GARAGE", + "brand": "Avia" }, "36130001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "36130004": { - "Nom": "RELAIS GRANDEOLS", - "Marque": "Total Access" + "name": "RELAIS GRANDEOLS", + "brand": "Total Access" }, "36140002": { - "Nom": "Intermarché AIGURANDE", - "Marque": "Intermarché" + "name": "Intermarché AIGURANDE", + "brand": "Intermarché" }, "36140003": { - "Nom": "SAS Tisseron", - "Marque": "Total" + "name": "SAS Tisseron", + "brand": "Total" }, "36150001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "36150002": { - "Nom": "BP A20 AIRE DES CHAMPS D' AMOUR", - "Marque": "BP" + "name": "BP A20 AIRE DES CHAMPS D' AMOUR", + "brand": "BP" }, "36150004": { - "Nom": "BP A20 AIRE DES CHAMPS D' AMOUR", - "Marque": "BP" + "name": "BP A20 AIRE DES CHAMPS D' AMOUR", + "brand": "BP" }, "36170001": { - "Nom": "Super U ST BENOIT DU SAULT", - "Marque": "Système U" + "name": "Super U ST BENOIT DU SAULT", + "brand": "Système U" }, "36200001": { - "Nom": "CSF FRANCE STATIONS SERVICE", - "Marque": "Carrefour Market" + "name": "CSF FRANCE STATIONS SERVICE", + "brand": "Carrefour Market" }, "36200002": { - "Nom": "SAS SN GEBHARD-PNEU", - "Marque": "Total Access" + "name": "SAS SN GEBHARD-PNEU", + "brand": "Total Access" }, "36200003": { - "Nom": "Intermarché ARGENTON SUR CREUSE", - "Marque": "Intermarché" + "name": "Intermarché ARGENTON SUR CREUSE", + "brand": "Intermarché" }, "36210001": { - "Nom": "Super U CHABRIS", - "Marque": "Système U" + "name": "Super U CHABRIS", + "brand": "Système U" }, "36230002": { - "Nom": "SARL ELGATAN", - "Marque": "Système U" + "name": "SARL ELGATAN", + "brand": "Système U" }, "36250003": { - "Nom": "BELLEVUE-DIS", - "Marque": "Leclerc" + "name": "BELLEVUE-DIS", + "brand": "Leclerc" }, "36250006": { - "Nom": "Sas cap sud", - "Marque": "Leclerc" + "name": "Sas cap sud", + "brand": "Leclerc" }, "36250007": { - "Nom": "RELAIS TERRES NOIRES", - "Marque": "Total Access" + "name": "RELAIS TERRES NOIRES", + "brand": "Total Access" }, "36260001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "36270001": { - "Nom": "Super U EGUZON", - "Marque": "Système U" + "name": "Super U EGUZON", + "brand": "Système U" }, "36290001": { - "Nom": "STATION SERVICE ELAN MENAGER", - "Marque": "Elan" + "name": "STATION SERVICE ELAN MENAGER", + "brand": "Elan" }, "36300002": { - "Nom": "BERRY ENERGIE FIOUL", - "Marque": "Avia" + "name": "BERRY ENERGIE FIOUL", + "brand": "Avia" }, "36300004": { - "Nom": "BERRY DISTRIBUTION", - "Marque": "Leclerc" + "name": "BERRY DISTRIBUTION", + "brand": "Leclerc" }, "36300005": { - "Nom": "Intermarché LE BLANC", - "Marque": "Intermarché" + "name": "Intermarché LE BLANC", + "brand": "Intermarché" }, "36300006": { - "Nom": "SU LE BLANC", - "Marque": "Système U" + "name": "SU LE BLANC", + "brand": "Système U" }, "36330001": { - "Nom": "SGAR SAS", - "Marque": "Shell" + "name": "SGAR SAS", + "brand": "Shell" }, "36350002": { - "Nom": "RELAIS MILLE ETANGS", - "Marque": "Total" + "name": "RELAIS MILLE ETANGS", + "brand": "Total" }, "36400001": { - "Nom": "Super U LA CHATRE /INDRE", - "Marque": "Système U" + "name": "Super U LA CHATRE /INDRE", + "brand": "Système U" }, "36400004": { - "Nom": "Intermarché LA CHATRE", - "Marque": "Intermarché" + "name": "Intermarché LA CHATRE", + "brand": "Intermarché" }, "36400005": { - "Nom": "Total Access", - "Marque": "Total Access" + "name": "Total Access", + "brand": "Total Access" }, "36400006": { - "Nom": "Sarl Berry Fioul", - "Marque": "Indépendant sans enseigne" + "name": "Sarl Berry Fioul", + "brand": "Indépendant sans enseigne" }, "36500001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "36500002": { - "Nom": "JUPILLAT", - "Marque": "Total" + "name": "JUPILLAT", + "brand": "Total" }, "36500004": { - "Nom": "Intermarché BUZANCAIS", - "Marque": "Intermarché" + "name": "Intermarché BUZANCAIS", + "brand": "Intermarché" }, "36600001": { - "Nom": "DEBRAIS ET FILS SAS", - "Marque": "Elan" + "name": "DEBRAIS ET FILS SAS", + "brand": "Elan" }, "36600002": { - "Nom": "Intermarché VALENCAY", - "Marque": "Intermarché" + "name": "Intermarché VALENCAY", + "brand": "Intermarché" }, "36700001": { - "Nom": "SAS THERET FRERES.", - "Marque": "Total" + "name": "SAS THERET FRERES.", + "brand": "Total" }, "36700002": { - "Nom": "Intermarché CHATILLON SUR INDRE", - "Marque": "Intermarché" + "name": "Intermarché CHATILLON SUR INDRE", + "brand": "Intermarché" }, "36800001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "37000002": { - "Nom": "SARL GMS", - "Marque": "Total" + "name": "SARL GMS", + "brand": "Total" }, "37000007": { - "Nom": "Carrefour Market RENAULT", - "Marque": "Carrefour Market" + "name": "Carrefour Market RENAULT", + "brand": "Carrefour Market" }, "37000011": { - "Nom": "ESSO EXPRESS TOURS RIVES CHER", - "Marque": "Esso Express" + "name": "ESSO EXPRESS TOURS RIVES CHER", + "brand": "Esso Express" }, "37000014": { - "Nom": "RELAIS ST FRANCOIS", - "Marque": "Total" + "name": "RELAIS ST FRANCOIS", + "brand": "Total" }, "37000015": { - "Nom": "RELAIS TOURS BALZAC", - "Marque": "Total" + "name": "RELAIS TOURS BALZAC", + "brand": "Total" }, "37000016": { - "Nom": "STATION Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "STATION Carrefour MARKET", + "brand": "Carrefour Market" }, "37003001": { - "Nom": "LECLERC TOURS NORD", - "Marque": "Leclerc" + "name": "LECLERC TOURS NORD", + "brand": "Leclerc" }, "37100001": { - "Nom": "AUCHAN LA PETITE ARCHE", - "Marque": "Auchan" + "name": "AUCHAN LA PETITE ARCHE", + "brand": "Auchan" }, "37100002": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "37100010": { - "Nom": "RELAIS TOURS SAINTE RADEGONDE", - "Marque": "Total" + "name": "RELAIS TOURS SAINTE RADEGONDE", + "brand": "Total" }, "37100011": { - "Nom": "RELAIS TOURS AEROPORT", - "Marque": "Total Access" + "name": "RELAIS TOURS AEROPORT", + "brand": "Total Access" }, "37100012": { - "Nom": "U express", - "Marque": "Système U" + "name": "U express", + "brand": "Système U" }, "37110002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "37110003": { - "Nom": "Intermarché CHATEAU RENAULT", - "Marque": "Intermarché" + "name": "Intermarché CHATEAU RENAULT", + "brand": "Intermarché" }, "37110004": { - "Nom": "RELAIS DE VILLEDOMER", - "Marque": "Total Access" + "name": "RELAIS DE VILLEDOMER", + "brand": "Total Access" }, "37120001": { - "Nom": "Intermarché CHAVEIGNES", - "Marque": "Intermarché" + "name": "Intermarché CHAVEIGNES", + "brand": "Intermarché" }, "37130001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "37130003": { - "Nom": "LEADER PRICE CINQ MARS LA PILE", - "Marque": "Leader Price" + "name": "LEADER PRICE CINQ MARS LA PILE", + "brand": "Leader Price" }, "37140001": { - "Nom": "Hyper U BOURGUEIL", - "Marque": "Système U" + "name": "Hyper U BOURGUEIL", + "brand": "Système U" }, "37150002": { - "Nom": "MARKET", - "Marque": "Carrefour Market" + "name": "MARKET", + "brand": "Carrefour Market" }, "37150003": { - "Nom": "Intermarché BLERE", - "Marque": "Intermarché" + "name": "Intermarché BLERE", + "brand": "Intermarché" }, "37150004": { - "Nom": "EURL GARAGE DU CHATEAU Total", - "Marque": "Total" + "name": "EURL GARAGE DU CHATEAU Total", + "brand": "Total" }, "37160001": { - "Nom": "Intermarché DESCARTES", - "Marque": "Intermarché" + "name": "Intermarché DESCARTES", + "brand": "Intermarché" }, "37160003": { - "Nom": "Intermarché DESCARTES", - "Marque": "Intermarché" + "name": "Intermarché DESCARTES", + "brand": "Intermarché" }, "37170006": { - "Nom": "RELAIS LES RENARDIERES", - "Marque": "Total Access" + "name": "RELAIS LES RENARDIERES", + "brand": "Total Access" }, "37170007": { - "Nom": "RELAIS CROIX FOUCREAU", - "Marque": "Total Access" + "name": "RELAIS CROIX FOUCREAU", + "brand": "Total Access" }, "37172001": { - "Nom": "STATION AUCHAN CHAMBRAY", - "Marque": "Auchan" + "name": "STATION AUCHAN CHAMBRAY", + "brand": "Auchan" }, "37190001": { - "Nom": "LES LOGES AUTOMOBILES", - "Marque": "Elan" + "name": "LES LOGES AUTOMOBILES", + "brand": "Elan" }, "37190002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "37190003": { - "Nom": "Relais des Jardins de Villandry SARL DESPIERRE", - "Marque": "Avia" + "name": "Relais des Jardins de Villandry SARL DESPIERRE", + "brand": "Avia" }, "37200004": { - "Nom": "RELAIS CENTRE ATLANTIQUE", - "Marque": "Total Access" + "name": "RELAIS CENTRE ATLANTIQUE", + "brand": "Total Access" }, "37210002": { - "Nom": "Super U VERNOU SUR BRENNE", - "Marque": "Système U" + "name": "Super U VERNOU SUR BRENNE", + "brand": "Système U" }, "37210004": { - "Nom": "Supermarché Auchan", - "Marque": "Auchan" + "name": "Supermarché Auchan", + "brand": "Auchan" }, "37220001": { - "Nom": "Super U L'ILE BOUCHARD", - "Marque": "Système U" + "name": "Super U L'ILE BOUCHARD", + "brand": "Système U" }, "37220002": { - "Nom": "RICHER", - "Marque": "Elan" + "name": "RICHER", + "brand": "Elan" }, "37230001": { - "Nom": "Super U LUYNES", - "Marque": "Système U" + "name": "Super U LUYNES", + "brand": "Système U" }, "37230003": { - "Nom": "SA FONDIS", - "Marque": "Leclerc" + "name": "SA FONDIS", + "brand": "Leclerc" }, "37240001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "37250002": { - "Nom": "Intermarché VEIGNE", - "Marque": "Intermarché" + "name": "Intermarché VEIGNE", + "brand": "Intermarché" }, "37250003": { - "Nom": "SIMPLY MARKET SORIGNY", - "Marque": "Simply Market" + "name": "SIMPLY MARKET SORIGNY", + "brand": "Simply Market" }, "37250005": { - "Nom": "ESSO EXPRESS VEIGNE LA BODINIÈRE", - "Marque": "Esso Express" + "name": "ESSO EXPRESS VEIGNE LA BODINIÈRE", + "brand": "Esso Express" }, "37260001": { - "Nom": "Super U MONTS", - "Marque": "Système U" + "name": "Super U MONTS", + "brand": "Système U" }, "37270001": { - "Nom": "Super U MONTLOUIS", - "Marque": "Système U" + "name": "Super U MONTLOUIS", + "brand": "Système U" }, "37270002": { - "Nom": "SARL GARAGE MILLON", - "Marque": "Total" + "name": "SARL GARAGE MILLON", + "brand": "Total" }, "37270005": { - "Nom": "Intermarché VERETZ", - "Marque": "Intermarché" + "name": "Intermarché VERETZ", + "brand": "Intermarché" }, "37270006": { - "Nom": "AGIP AIRE ATHEE A85", - "Marque": "Agip" + "name": "AGIP AIRE ATHEE A85", + "brand": "Agip" }, "37290001": { - "Nom": "Intermarché YZEURES S/CREUSE", - "Marque": "Intermarché" + "name": "Intermarché YZEURES S/CREUSE", + "brand": "Intermarché" }, "37300001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "37300004": { - "Nom": "Intermarché JOUE-LES-TOURS", - "Marque": "Intermarché" + "name": "Intermarché JOUE-LES-TOURS", + "brand": "Intermarché" }, "37300006": { - "Nom": "ESSO EXPRESS JOUE LES TOURS VALLÉE VIOLETTE", - "Marque": "Esso Express" + "name": "ESSO EXPRESS JOUE LES TOURS VALLÉE VIOLETTE", + "brand": "Esso Express" }, "37300007": { - "Nom": "STATION SERVICE 24/24", - "Marque": "Aldi" + "name": "STATION SERVICE 24/24", + "brand": "Aldi" }, "37300008": { - "Nom": "RELAIS JOUE LES TOURS", - "Marque": "Total Access" + "name": "RELAIS JOUE LES TOURS", + "brand": "Total Access" }, "37306001": { - "Nom": "JOUE DISTRIBUTION", - "Marque": "Leclerc" + "name": "JOUE DISTRIBUTION", + "brand": "Leclerc" }, "37320001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "37320006": { - "Nom": "KLMC DISTRIBUTION", - "Marque": "Carrefour Contact" + "name": "KLMC DISTRIBUTION", + "brand": "Carrefour Contact" }, "37320008": { - "Nom": "SUPERMARCHE G20 ST BRANCHS", - "Marque": "SUPERMARCHEG20" + "name": "SUPERMARCHE G20 ST BRANCHS", + "brand": "SUPERMARCHEG20" }, "37330001": { - "Nom": "Super U CHÂTEAU LA VALLIERE", - "Marque": "Système U" + "name": "Super U CHÂTEAU LA VALLIERE", + "brand": "Système U" }, "37340001": { - "Nom": "Super U SAVIGNE LATHAN", - "Marque": "Système U" + "name": "Super U SAVIGNE LATHAN", + "brand": "Système U" }, "37340002": { - "Nom": "Utile AMBILLOU", - "Marque": "Système U" + "name": "Utile AMBILLOU", + "brand": "Système U" }, "37360001": { - "Nom": "Super U NEUILLE PONT PIERRE", - "Marque": "Système U" + "name": "Super U NEUILLE PONT PIERRE", + "brand": "Système U" }, "37380001": { - "Nom": "SARL VBM", - "Marque": "Simply Market" + "name": "SARL VBM", + "brand": "Simply Market" }, "37380003": { - "Nom": "BP A10 AIRE DE TOURS LA LONGUE VUE", - "Marque": "BP" + "name": "BP A10 AIRE DE TOURS LA LONGUE VUE", + "brand": "BP" }, "37380004": { - "Nom": "RELAIS DE MESLAY", - "Marque": "Total" + "name": "RELAIS DE MESLAY", + "brand": "Total" }, "37390001": { - "Nom": "SARL RELAIS DE MAZAGRAN", - "Marque": "Total" + "name": "SARL RELAIS DE MAZAGRAN", + "brand": "Total" }, "37390002": { - "Nom": "Intermarché NOTRE DAME D'OE", - "Marque": "Intermarché" + "name": "Intermarché NOTRE DAME D'OE", + "brand": "Intermarché" }, "37390003": { - "Nom": "Super U CHANCEAUX SUR CHOISILLE", - "Marque": "Système U" + "name": "Super U CHANCEAUX SUR CHOISILLE", + "brand": "Système U" }, "37400002": { - "Nom": "LA MONTGOLFIERE SA", - "Marque": "Leclerc" + "name": "LA MONTGOLFIERE SA", + "brand": "Leclerc" }, "37400004": { - "Nom": "NETTO AMBOISE", - "Marque": "Netto" + "name": "NETTO AMBOISE", + "brand": "Netto" }, "37400006": { - "Nom": "SAS ALKAN CARBURANT", - "Marque": "Total" + "name": "SAS ALKAN CARBURANT", + "brand": "Total" }, "37400007": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "37420002": { - "Nom": "SAS AVOINE AUTOMOBILES", - "Marque": "Total" + "name": "SAS AVOINE AUTOMOBILES", + "brand": "Total" }, "37420003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "37500001": { - "Nom": "Super U CHINON", - "Marque": "Système U" + "name": "Super U CHINON", + "brand": "Système U" }, "37500002": { - "Nom": "GARAGE FOUSSIER", - "Marque": "Elan" + "name": "GARAGE FOUSSIER", + "brand": "Elan" }, "37500003": { - "Nom": "SORADIS BATIMAT", - "Marque": "Leclerc" + "name": "SORADIS BATIMAT", + "brand": "Leclerc" }, "37510001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "37520001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "37520002": { - "Nom": "Super U LA RICHE", - "Marque": "Système U" + "name": "Super U LA RICHE", + "brand": "Système U" }, "37530001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "37530002": { - "Nom": "Intermarché DE POCE SUR CISSE", - "Marque": "Intermarché" + "name": "Intermarché DE POCE SUR CISSE", + "brand": "Intermarché" }, "37540001": { - "Nom": "AUCHAN ST CYR", - "Marque": "Auchan" + "name": "AUCHAN ST CYR", + "brand": "Auchan" }, "37540003": { - "Nom": "MR BANCEL ALFRED", - "Marque": "Total" + "name": "MR BANCEL ALFRED", + "brand": "Total" }, "37550001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "37600001": { - "Nom": "Super U LOCHES", - "Marque": "Système U" + "name": "Super U LOCHES", + "brand": "Système U" }, "37600004": { - "Nom": "SOLODIS", - "Marque": "Leclerc" + "name": "SOLODIS", + "brand": "Leclerc" }, "37600006": { - "Nom": "GLEMAREC SARL", - "Marque": "Indépendant sans enseigne" + "name": "GLEMAREC SARL", + "brand": "Indépendant sans enseigne" }, "37700001": { - "Nom": "Carrefour Tours-St Pierre des Corps", - "Marque": "Carrefour" + "name": "Carrefour Tours-St Pierre des Corps", + "brand": "Carrefour" }, "37700004": { - "Nom": "DAMES-DIS", - "Marque": "Leclerc" + "name": "DAMES-DIS", + "brand": "Leclerc" }, "37700010": { - "Nom": "RELAIS DU ROCHIN", - "Marque": "Total" + "name": "RELAIS DU ROCHIN", + "brand": "Total" }, "37700011": { - "Nom": "RELAIS BRETECHE", - "Marque": "Total Access" + "name": "RELAIS BRETECHE", + "brand": "Total Access" }, "37800004": { - "Nom": "SARL GARAGE LAROSE", - "Marque": "Total" + "name": "SARL GARAGE LAROSE", + "brand": "Total" }, "37800005": { - "Nom": "Intermarché STE MAURE DE TOURAINE", - "Marque": "Intermarché" + "name": "Intermarché STE MAURE DE TOURAINE", + "brand": "Intermarché" }, "37800006": { - "Nom": "RELAIS STE MAURE", - "Marque": "Total" + "name": "RELAIS STE MAURE", + "brand": "Total" }, "37800008": { - "Nom": "STATION BP FONTAINE COLETTE", - "Marque": "BP" + "name": "STATION BP FONTAINE COLETTE", + "brand": "BP" }, "38000015": { - "Nom": "BP GRENOBLE CHARTREUSE 8 à Huit", - "Marque": "BP" + "name": "BP GRENOBLE CHARTREUSE 8 à Huit", + "brand": "BP" }, "38000016": { - "Nom": "ENI AVENUE RHIN ET DANUBE", - "Marque": "Agip" + "name": "ENI AVENUE RHIN ET DANUBE", + "brand": "Agip" }, "38070001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "38080003": { - "Nom": "Carrefour L ISLE D ABEAU", - "Marque": "Carrefour" + "name": "Carrefour L ISLE D ABEAU", + "brand": "Carrefour" }, "38080006": { - "Nom": "RELAIS DU LOMBARD", - "Marque": "Total" + "name": "RELAIS DU LOMBARD", + "brand": "Total" }, "38080007": { - "Nom": "AVIA SARL KARADEMIR", - "Marque": "Avia" + "name": "AVIA SARL KARADEMIR", + "brand": "Avia" }, "38090004": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "38100003": { - "Nom": "BP GRENOBLE BELLEDONNE", - "Marque": "BP" + "name": "BP GRENOBLE BELLEDONNE", + "brand": "BP" }, "38100008": { - "Nom": "AGIP GRENOBLE PERROT", - "Marque": "Agip" + "name": "AGIP GRENOBLE PERROT", + "brand": "Agip" }, "38100012": { - "Nom": "RELAIS FOCH", - "Marque": "Total" + "name": "RELAIS FOCH", + "brand": "Total" }, "38100013": { - "Nom": "BP GRENOBLE VERCORS 8 à Huit", - "Marque": "BP" + "name": "BP GRENOBLE VERCORS 8 à Huit", + "brand": "BP" }, "38110001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "38110002": { - "Nom": "STATION Total", - "Marque": "Total" + "name": "STATION Total", + "brand": "Total" }, "38110004": { - "Nom": "Intermarché ST JEAN DE SOUDAIN", - "Marque": "Intermarché" + "name": "Intermarché ST JEAN DE SOUDAIN", + "brand": "Intermarché" }, "38113001": { - "Nom": "Esso Service Voroize", - "Marque": "ESSO" + "name": "Esso Service Voroize", + "brand": "ESSO" }, "38120001": { - "Nom": "Carrefour Saint-Egreve", - "Marque": "Carrefour" + "name": "Carrefour Saint-Egreve", + "brand": "Carrefour" }, "38120002": { - "Nom": "GARAGE DU ROCHER", - "Marque": "Total" + "name": "GARAGE DU ROCHER", + "brand": "Total" }, "38121001": { - "Nom": "STATION DU GRAND CHEMIN", - "Marque": "Indépendant sans enseigne" + "name": "STATION DU GRAND CHEMIN", + "brand": "Indépendant sans enseigne" }, "38130002": { - "Nom": "ECHIROLLES DISTRIBUTION", - "Marque": "Leclerc" + "name": "ECHIROLLES DISTRIBUTION", + "brand": "Leclerc" }, "38140004": { - "Nom": "CASINO", - "Marque": "Casino" + "name": "CASINO", + "brand": "Casino" }, "38140005": { - "Nom": "Intermarché APPRIEU", - "Marque": "Intermarché" + "name": "Intermarché APPRIEU", + "brand": "Intermarché" }, "38142001": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "38150001": { - "Nom": "Carrefour SALAISE", - "Marque": "Carrefour" + "name": "Carrefour SALAISE", + "brand": "Carrefour" }, "38150003": { - "Nom": "SAS ANTON AUTOMOBILES", - "Marque": "Dyneff" + "name": "SAS ANTON AUTOMOBILES", + "brand": "Dyneff" }, "38150005": { - "Nom": "Intermarché CHANAS", - "Marque": "Intermarché" + "name": "Intermarché CHANAS", + "brand": "Intermarché" }, "38150008": { - "Nom": "CASINO SALAISE", - "Marque": "Casino" + "name": "CASINO SALAISE", + "brand": "Casino" }, "38150010": { - "Nom": "RELAIS SALAISE SUR SANNE", - "Marque": "Total Access" + "name": "RELAIS SALAISE SUR SANNE", + "brand": "Total Access" }, "38160002": { - "Nom": "ISERE DISTRIBUTION", - "Marque": "Leclerc" + "name": "ISERE DISTRIBUTION", + "brand": "Leclerc" }, "38160003": { - "Nom": "SAS SAUDIDRO", - "Marque": "Intermarché" + "name": "SAS SAUDIDRO", + "brand": "Intermarché" }, "38160006": { - "Nom": "SARL ROMTIN", - "Marque": "Avia" + "name": "SARL ROMTIN", + "brand": "Avia" }, "38170004": { - "Nom": "RELAIS DU DRAC", - "Marque": "Total Access" + "name": "RELAIS DU DRAC", + "brand": "Total Access" }, "38180001": { - "Nom": "Intermarché SEYSSINS", - "Marque": "Intermarché" + "name": "Intermarché SEYSSINS", + "brand": "Intermarché" }, "38190001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "38190004": { - "Nom": "ESSO DU GRESIVAUDAN", - "Marque": "Esso" + "name": "ESSO DU GRESIVAUDAN", + "brand": "Esso" }, "38200003": { - "Nom": "MONOPRIX VIENNE", - "Marque": "Monoprix" + "name": "MONOPRIX VIENNE", + "brand": "Monoprix" }, "38200004": { - "Nom": "VIENNEDIS", - "Marque": "Leclerc" + "name": "VIENNEDIS", + "brand": "Leclerc" }, "38200007": { - "Nom": "Intermarché VIENNE", - "Marque": "Intermarché" + "name": "Intermarché VIENNE", + "brand": "Intermarché" }, "38200014": { - "Nom": "Relais du Champs de Mars", - "Marque": "Total" + "name": "Relais du Champs de Mars", + "brand": "Total" }, "38200016": { - "Nom": "LANGOUSTIER", - "Marque": "Intermarché" + "name": "LANGOUSTIER", + "brand": "Intermarché" }, "38200017": { - "Nom": "Carrefour Market Vienne Estressin", - "Marque": "Carrefour Market" + "name": "Carrefour Market Vienne Estressin", + "brand": "Carrefour Market" }, "38200018": { - "Nom": "RELAIS Total ST BENOIT", - "Marque": "Total Access" + "name": "RELAIS Total ST BENOIT", + "brand": "Total Access" }, "38210001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "38210003": { - "Nom": "STATION DE LA PLAINE", - "Marque": "Avia" + "name": "STATION DE LA PLAINE", + "brand": "Avia" }, "38210004": { - "Nom": "Intermarché TULLINS", - "Marque": "Intermarché" + "name": "Intermarché TULLINS", + "brand": "Intermarché" }, "38220001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "38220002": { - "Nom": "VIZILLE STATION LETELLIER", - "Marque": "Total" + "name": "VIZILLE STATION LETELLIER", + "brand": "Total" }, "38230001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "38230002": { - "Nom": "ATR AUTO", - "Marque": "Total" + "name": "ATR AUTO", + "brand": "Total" }, "38230003": { - "Nom": "S.A. TIGNIEUDIS", - "Marque": "Leclerc" + "name": "S.A. TIGNIEUDIS", + "brand": "Leclerc" }, "38240003": { - "Nom": "Carrefour GRENOBLE MEYLAN", - "Marque": "Carrefour" + "name": "Carrefour GRENOBLE MEYLAN", + "brand": "Carrefour" }, "38240004": { - "Nom": "AGIP MEYLAN 7 LAUX", - "Marque": "Agip" + "name": "AGIP MEYLAN 7 LAUX", + "brand": "Agip" }, "38250001": { - "Nom": "GARAGE DE LA BOURNE", - "Marque": "Avia" + "name": "GARAGE DE LA BOURNE", + "brand": "Avia" }, "38250002": { - "Nom": "Intermarché VILLARD-DE-LANS", - "Marque": "Intermarché" + "name": "Intermarché VILLARD-DE-LANS", + "brand": "Intermarché" }, "38260002": { - "Nom": "SARL TRAPIER FRERES", - "Marque": "Total" + "name": "SARL TRAPIER FRERES", + "brand": "Total" }, "38260003": { - "Nom": "GARAGE TOZLANIAN", - "Marque": "Total" + "name": "GARAGE TOZLANIAN", + "brand": "Total" }, "38260004": { - "Nom": "STATION SERVICE COTOISE", - "Marque": "Total" + "name": "STATION SERVICE COTOISE", + "brand": "Total" }, "38260005": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "38260007": { - "Nom": "Intermarché LA COTE ST ANDRE", - "Marque": "Intermarché" + "name": "Intermarché LA COTE ST ANDRE", + "brand": "Intermarché" }, "38260008": { - "Nom": "STATION ELAN / AGENT CITROEN", - "Marque": "Elan" + "name": "STATION ELAN / AGENT CITROEN", + "brand": "Elan" }, "38270002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "38270003": { - "Nom": "Intermarché REVEL TOURDAN", - "Marque": "Intermarché" + "name": "Intermarché REVEL TOURDAN", + "brand": "Intermarché" }, "38270005": { - "Nom": "Carrefour MARKET BEAUREPAIRE", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET BEAUREPAIRE", + "brand": "Carrefour Market" }, "38280001": { - "Nom": "SAS ANTHORIMEL", - "Marque": "Intermarché" + "name": "SAS ANTHORIMEL", + "brand": "Intermarché" }, "38290003": { - "Nom": "ALEP SAS", - "Marque": "Total" + "name": "ALEP SAS", + "brand": "Total" }, "38290004": { - "Nom": "station Avia-morel", - "Marque": "Avia" + "name": "station Avia-morel", + "brand": "Avia" }, "38290005": { - "Nom": "Station U", - "Marque": "Système U" + "name": "Station U", + "brand": "Système U" }, "38300001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "38300004": { - "Nom": "ESSO BOURGOIN", - "Marque": "Esso Express" + "name": "ESSO BOURGOIN", + "brand": "Esso Express" }, "38300008": { - "Nom": "BOURGOIN DISTRIBUTION", - "Marque": "Leclerc" + "name": "BOURGOIN DISTRIBUTION", + "brand": "Leclerc" }, "38300009": { - "Nom": "Intermarché DOMARIN", - "Marque": "Intermarché" + "name": "Intermarché DOMARIN", + "brand": "Intermarché" }, "38300012": { - "Nom": "GARAGE REYPIN", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE REYPIN", + "brand": "Indépendant sans enseigne" }, "38300017": { - "Nom": "AGIP BOURGOIN route de Lyon", - "Marque": "Agip" + "name": "AGIP BOURGOIN route de Lyon", + "brand": "Agip" }, "38300018": { - "Nom": "RELAIS LES BERJALLIENS", - "Marque": "Total" + "name": "RELAIS LES BERJALLIENS", + "brand": "Total" }, "38300020": { - "Nom": "market Bourgoin", - "Marque": "Carrefour Market" + "name": "market Bourgoin", + "brand": "Carrefour Market" }, "38300021": { - "Nom": "Intermarché LE RIVET", - "Marque": "Intermarché" + "name": "Intermarché LE RIVET", + "brand": "Intermarché" }, "38307001": { - "Nom": "GIRARD SAS", - "Marque": "Total" + "name": "GIRARD SAS", + "brand": "Total" }, "38320002": { - "Nom": "ESSO EYBENS (VAL D')", - "Marque": "Esso Express" + "name": "ESSO EYBENS (VAL D')", + "brand": "Esso Express" }, "38320003": { - "Nom": "AGIP EYBENS JAURES SUD", - "Marque": "Agip" + "name": "AGIP EYBENS JAURES SUD", + "brand": "Agip" }, "38320005": { - "Nom": "Intermarché BRESSON", - "Marque": "Intermarché" + "name": "Intermarché BRESSON", + "brand": "Intermarché" }, "38320006": { - "Nom": "RELAIS D EYBENS", - "Marque": "Total" + "name": "RELAIS D EYBENS", + "brand": "Total" }, "38330002": { - "Nom": "ESSO BIVIERS", - "Marque": "Esso Express" + "name": "ESSO BIVIERS", + "brand": "Esso Express" }, "38330004": { - "Nom": "AVIA SAINT NAZAIRE LES EYMES", - "Marque": "Avia" + "name": "AVIA SAINT NAZAIRE LES EYMES", + "brand": "Avia" }, "38340006": { - "Nom": "STATION U / SA CHARANDIS", - "Marque": "Système U" + "name": "STATION U / SA CHARANDIS", + "brand": "Système U" }, "38340010": { - "Nom": "AGIP A48 VOREPPE ISLE ROSE", - "Marque": "Agip" + "name": "AGIP A48 VOREPPE ISLE ROSE", + "brand": "Agip" }, "38340011": { - "Nom": "RELAIS VOREPPE", - "Marque": "Total" + "name": "RELAIS VOREPPE", + "brand": "Total" }, "38340012": { - "Nom": "RELAIS DES BALMES", - "Marque": "Total Access" + "name": "RELAIS DES BALMES", + "brand": "Total Access" }, "38340013": { - "Nom": "RELAIS DE LA ROIZE", - "Marque": "Total Access" + "name": "RELAIS DE LA ROIZE", + "brand": "Total Access" }, "38350001": { - "Nom": "SA LAMUREDIS", - "Marque": "Système U" + "name": "SA LAMUREDIS", + "brand": "Système U" }, "38350002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "38350004": { - "Nom": "Intermarché LA MURE", - "Marque": "Intermarché" + "name": "Intermarché LA MURE", + "brand": "Intermarché" }, "38350005": { - "Nom": "STATION ELAN", - "Marque": "Elan" + "name": "STATION ELAN", + "brand": "Elan" }, "38360001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "38360006": { - "Nom": "RELAIS SASSENAGE AV.DE ROMANS", - "Marque": "Total Access" + "name": "RELAIS SASSENAGE AV.DE ROMANS", + "brand": "Total Access" }, "38370002": { - "Nom": "GARAGE MARCONNET", - "Marque": "Elan" + "name": "GARAGE MARCONNET", + "brand": "Elan" }, "38370003": { - "Nom": "S.A.S. CLAIRIDIS", - "Marque": "Leclerc" + "name": "S.A.S. CLAIRIDIS", + "brand": "Leclerc" }, "38380001": { - "Nom": "NETTO", - "Marque": "Netto" + "name": "NETTO", + "brand": "Netto" }, "38380002": { - "Nom": "GARAGE COTTAVE", - "Marque": "Dyneff" + "name": "GARAGE COTTAVE", + "brand": "Dyneff" }, "38380003": { - "Nom": "Intermarché ST LAURENT DU PONT", - "Marque": "Intermarché" + "name": "Intermarché ST LAURENT DU PONT", + "brand": "Intermarché" }, "38390001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "38400005": { - "Nom": "BP Saint-Martin-d'Hères LE MURIER", - "Marque": "BP Express" + "name": "BP Saint-Martin-d'Hères LE MURIER", + "brand": "BP Express" }, "38400006": { - "Nom": "Intermarché ST MARTIN D'HERES", - "Marque": "Intermarché" + "name": "Intermarché ST MARTIN D'HERES", + "brand": "Intermarché" }, "38240006": { - "Nom": "Total RN87 MEYLAN", - "Marque": "Total" + "name": "Total RN87 MEYLAN", + "brand": "Total" }, "38407001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "38420004": { - "Nom": "GARAGE BOULLE", - "Marque": "Total" + "name": "GARAGE BOULLE", + "brand": "Total" }, "38420003": { - "Nom": "Intermarché DOMENE", - "Marque": "Intermarché" + "name": "Intermarché DOMENE", + "brand": "Intermarché" }, "38430001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "38430002": { - "Nom": "ESSO MOIRANS", - "Marque": "Esso Express" + "name": "ESSO MOIRANS", + "brand": "Esso Express" }, "38430003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "38431001": { - "Nom": "Carrefour ECHIROLLES", - "Marque": "Carrefour" + "name": "Carrefour ECHIROLLES", + "brand": "Carrefour" }, "38440002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "38440003": { - "Nom": "Intermarché ST JEAN DE BOURNAY", - "Marque": "Intermarché" + "name": "Intermarché ST JEAN DE BOURNAY", + "brand": "Intermarché" }, "38450002": { - "Nom": "FLASH SERVICES", - "Marque": "Dyneff" + "name": "FLASH SERVICES", + "brand": "Dyneff" }, "38460002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "38470002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "38470003": { - "Nom": "CARRON ET CIE", - "Marque": "Total" + "name": "CARRON ET CIE", + "brand": "Total" }, "38480005": { - "Nom": "AVIA ROMAGNIEU", - "Marque": "Avia" + "name": "AVIA ROMAGNIEU", + "brand": "Avia" }, "38480006": { - "Nom": "E.LECLERC", - "Marque": "Leclerc" + "name": "E.LECLERC", + "brand": "Leclerc" }, "38480007": { - "Nom": "Aire du Guiers", - "Marque": "Esso" + "name": "Aire du Guiers", + "brand": "Esso" }, "38490001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "38490004": { - "Nom": "Intermarché CHARANCIEU", - "Marque": "Intermarché" + "name": "Intermarché CHARANCIEU", + "brand": "Intermarché" }, "38490005": { - "Nom": "SAS CYRQUEN", - "Marque": "Intermarché" + "name": "SAS CYRQUEN", + "brand": "Intermarché" }, "38490006": { - "Nom": "SNC STATION SERVICE LES 3D", - "Marque": "Total" + "name": "SNC STATION SERVICE LES 3D", + "brand": "Total" }, "38490007": { - "Nom": "Stop garage", - "Marque": "Avia" + "name": "Stop garage", + "brand": "Avia" }, "38500001": { - "Nom": "Carrefour", - "Marque": "Carrefour" + "name": "Carrefour", + "brand": "Carrefour" }, "38500002": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "38500003": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "38500005": { - "Nom": "ESSO VOIRON", - "Marque": "Esso Express" + "name": "ESSO VOIRON", + "brand": "Esso Express" }, "38500006": { - "Nom": "U DRIVE VOIRON", - "Marque": "Système U" + "name": "U DRIVE VOIRON", + "brand": "Système U" }, "38500007": { - "Nom": "RELAIS VOIRON VALOIS", - "Marque": "Total Access" + "name": "RELAIS VOIRON VALOIS", + "brand": "Total Access" }, "38510002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "38510003": { - "Nom": "Intermarché MORESTEL", - "Marque": "Intermarché" + "name": "Intermarché MORESTEL", + "brand": "Intermarché" }, "38520001": { - "Nom": "BOURG D'O ST LAURENT", - "Marque": "Total" + "name": "BOURG D'O ST LAURENT", + "brand": "Total" }, "38520004": { - "Nom": "Casino carburant", - "Marque": "Casino" + "name": "Casino carburant", + "brand": "Casino" }, "38530001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "38530004": { - "Nom": "SAS CHAPANEY", - "Marque": "Intermarché" + "name": "SAS CHAPANEY", + "brand": "Intermarché" }, "38540001": { - "Nom": "Intermarché HEYRIEUX", - "Marque": "Intermarché" + "name": "Intermarché HEYRIEUX", + "brand": "Intermarché" }, "38540002": { - "Nom": "STATION AT.PG", - "Marque": "Indépendant sans enseigne" + "name": "STATION AT.PG", + "brand": "Indépendant sans enseigne" }, "38550001": { - "Nom": "Intermarché -SAS SARDA-", - "Marque": "Intermarché" + "name": "Intermarché -SAS SARDA-", + "brand": "Intermarché" }, "38570003": { - "Nom": "NETTO LE CHEYLAS", - "Marque": "Netto" + "name": "NETTO LE CHEYLAS", + "brand": "Netto" }, "38570004": { - "Nom": "U express", - "Marque": "Système U" + "name": "U express", + "brand": "Système U" }, "38580003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "38590001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "38600001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "38610001": { - "Nom": "SARL GGE GARCIA", - "Marque": "Total" + "name": "SARL GGE GARCIA", + "brand": "Total" }, "38620002": { - "Nom": "Carrefour Express", - "Marque": "Carrefour Express" + "name": "Carrefour Express", + "brand": "Carrefour Express" }, "38630002": { - "Nom": "CASINO CARBURANT", - "Marque": "Casino" + "name": "CASINO CARBURANT", + "brand": "Casino" }, "38630003": { - "Nom": "CORBEDIS U EXPRESS", - "Marque": "Système U" + "name": "CORBEDIS U EXPRESS", + "brand": "Système U" }, "38630004": { - "Nom": "DATS VEYRINS-THUELLIN", - "Marque": "Colruyt" + "name": "DATS VEYRINS-THUELLIN", + "brand": "Colruyt" }, "38640001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "38650002": { - "Nom": "Snga", - "Marque": "Total" + "name": "Snga", + "brand": "Total" }, "38660001": { - "Nom": "M. ANDRE POULAT", - "Marque": "Total" + "name": "M. ANDRE POULAT", + "brand": "Total" }, "38660002": { - "Nom": "STATION DYNEFF LE TOUVET", - "Marque": "Dyneff" + "name": "STATION DYNEFF LE TOUVET", + "brand": "Dyneff" }, "38670001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "38690001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "38690004": { - "Nom": "AGIP A48 RIVES", - "Marque": "Agip" + "name": "AGIP A48 RIVES", + "brand": "Agip" }, "38700001": { - "Nom": "LES SABLONS", - "Marque": "Total" + "name": "LES SABLONS", + "brand": "Total" }, "38700003": { - "Nom": "Total Access LA TRONCHE", - "Marque": "Total Access" + "name": "Total Access LA TRONCHE", + "brand": "Total Access" }, "38710003": { - "Nom": "GARAGE CENTRAL DU TRIEVES", - "Marque": "Elan" + "name": "GARAGE CENTRAL DU TRIEVES", + "brand": "Elan" }, "38750001": { - "Nom": "CARBEL", - "Marque": "CARBEL" + "name": "CARBEL", + "brand": "CARBEL" }, "38760003": { - "Nom": "SARL MAXIME", - "Marque": "Agip" + "name": "SARL MAXIME", + "brand": "Agip" }, "38780001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "38790003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "38800003": { - "Nom": "RELAIS VILLANCOURT", - "Marque": "Total Access" + "name": "RELAIS VILLANCOURT", + "brand": "Total Access" }, "38830001": { - "Nom": "023 DATS ST PIERRE D'ALLEVARD", - "Marque": "Colruyt" + "name": "023 DATS ST PIERRE D'ALLEVARD", + "brand": "Colruyt" }, "38850002": { - "Nom": "GARAGE HENRI CHABOUD", - "Marque": "Total" + "name": "GARAGE HENRI CHABOUD", + "brand": "Total" }, "38860001": { - "Nom": "CARBEL", - "Marque": "CARBEL" + "name": "CARBEL", + "brand": "CARBEL" }, "38870001": { - "Nom": "Intermarché ST SIMEON BRESSIEUX", - "Marque": "Intermarché" + "name": "Intermarché ST SIMEON BRESSIEUX", + "brand": "Intermarché" }, "38880002": { - "Nom": "ELAN", - "Marque": "Elan" + "name": "ELAN", + "brand": "Elan" }, "38920001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "38920002": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "38930001": { - "Nom": "STATION SERVICE LA REMISE AUTOMAT 24/24", - "Marque": "Automat.DKV.UTA" + "name": "STATION SERVICE LA REMISE AUTOMAT 24/24", + "brand": "Automat.DKV.UTA" }, "38970000": { - "Nom": "NAVALOC - ELAN", - "Marque": "Elan" + "name": "NAVALOC - ELAN", + "brand": "Elan" }, "38980001": { - "Nom": "STATION ELAN / AGENT RENAULT", - "Marque": "Elan" + "name": "STATION ELAN / AGENT RENAULT", + "brand": "Elan" }, "39000001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "39000004": { - "Nom": "STATION DE LA MONTAGNE", - "Marque": "Avia" + "name": "STATION DE LA MONTAGNE", + "brand": "Avia" }, "39000007": { - "Nom": "RELAIS DU LEVANT", - "Marque": "Total Access" + "name": "RELAIS DU LEVANT", + "brand": "Total Access" }, "39100001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "39100003": { - "Nom": "Total jmt autos", - "Marque": "Total" + "name": "Total jmt autos", + "brand": "Total" }, "39100004": { - "Nom": "ESSO PASTEUR DOLE", - "Marque": "Esso Express" + "name": "ESSO PASTEUR DOLE", + "brand": "Esso Express" }, "39100005": { - "Nom": "cora dole", - "Marque": "CORA" + "name": "cora dole", + "brand": "CORA" }, "39100006": { - "Nom": "Intermarché DOLE", - "Marque": "Intermarché" + "name": "Intermarché DOLE", + "brand": "Intermarché" }, "39100007": { - "Nom": "DATS DOLE", - "Marque": "Colruyt" + "name": "DATS DOLE", + "brand": "Colruyt" }, "39100008": { - "Nom": "PETROL'39", - "Marque": "Indépendant sans enseigne" + "name": "PETROL'39", + "brand": "Indépendant sans enseigne" }, "39100010": { - "Nom": "ETS THEVENIN DUCROT DISTRIBUTION", - "Marque": "Avia" + "name": "ETS THEVENIN DUCROT DISTRIBUTION", + "brand": "Avia" }, "39100011": { - "Nom": "SAS WASP", - "Marque": "Netto" + "name": "SAS WASP", + "brand": "Netto" }, "39110003": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "39110004": { - "Nom": "RELAIS DES CAPUCINS", - "Marque": "Avia" + "name": "RELAIS DES CAPUCINS", + "brand": "Avia" }, "39110007": { - "Nom": "RELAIS FORT BELIN", - "Marque": "Total Access" + "name": "RELAIS FORT BELIN", + "brand": "Total Access" }, "39120001": { - "Nom": "GARAGE PRINCE G.", - "Marque": "Avia" + "name": "GARAGE PRINCE G.", + "brand": "Avia" }, "39120002": { - "Nom": "M. RAVLAC Intermarché", - "Marque": "Intermarché" + "name": "M. RAVLAC Intermarché", + "brand": "Intermarché" }, "39130002": { - "Nom": "STATION GARAGE BOUILLIER", - "Marque": "Total" + "name": "STATION GARAGE BOUILLIER", + "brand": "Total" }, "39130004": { - "Nom": "Elan", - "Marque": "Elan" + "name": "Elan", + "brand": "Elan" }, "39130008": { - "Nom": "Carrefour EXPRESS", - "Marque": "Carrefour Express" + "name": "Carrefour EXPRESS", + "brand": "Carrefour Express" }, "39130009": { - "Nom": "SUPERMARCHE ST PASCAL", - "Marque": "autre" + "name": "SUPERMARCHE ST PASCAL", + "brand": "autre" }, "39140001": { - "Nom": "SARL BLETTERANS AUTOMOBILES", - "Marque": "Total" + "name": "SARL BLETTERANS AUTOMOBILES", + "brand": "Total" }, "39140003": { - "Nom": "SAS GUYDIS. SUPER U BLETTERANS", - "Marque": "Système U" + "name": "SAS GUYDIS. SUPER U BLETTERANS", + "brand": "Système U" }, "39140006": { - "Nom": "AGIP AIRE DU JURA A39", - "Marque": "Agip" + "name": "AGIP AIRE DU JURA A39", + "brand": "Agip" }, "39150001": { - "Nom": "SAS ROCHADIS", - "Marque": "Système U" + "name": "SAS ROCHADIS", + "brand": "Système U" }, "39150002": { - "Nom": "GARAGE CARD", - "Marque": "Avia" + "name": "GARAGE CARD", + "brand": "Avia" }, "39160001": { - "Nom": "Flash distribution", - "Marque": "Système U" + "name": "Flash distribution", + "brand": "Système U" }, "39170001": { - "Nom": "SPAR SUPERMARCHE", - "Marque": "Supermarchés Spar" + "name": "SPAR SUPERMARCHE", + "brand": "Supermarchés Spar" }, "39170002": { - "Nom": "ATAC LAVANS", - "Marque": "Atac" + "name": "ATAC LAVANS", + "brand": "Atac" }, "39190001": { - "Nom": "SAS DUMONT FRERES - STATION Total", - "Marque": "Total" + "name": "SAS DUMONT FRERES - STATION Total", + "brand": "Total" }, "39190006": { - "Nom": "maximarche", - "Marque": "Maximarché" + "name": "maximarche", + "brand": "Maximarché" }, "39200002": { - "Nom": "SARL PARISI CLAUDE", - "Marque": "Avia" + "name": "SARL PARISI CLAUDE", + "brand": "Avia" }, "39200003": { - "Nom": "RELAIS ST CLAUDE LYON", - "Marque": "Total Access" + "name": "RELAIS ST CLAUDE LYON", + "brand": "Total Access" }, "39200004": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "39200005": { - "Nom": "SAS TORINE", - "Marque": "Intermarché" + "name": "SAS TORINE", + "brand": "Intermarché" }, "39210001": { - "Nom": "ATAC VOITEUR", - "Marque": "Atac" + "name": "ATAC VOITEUR", + "brand": "Atac" }, "39210002": { - "Nom": "GARAGE BUISSON", - "Marque": "Total" + "name": "GARAGE BUISSON", + "brand": "Total" }, "39220002": { - "Nom": "ATAC BOIS D AMONT", - "Marque": "Atac" + "name": "ATAC BOIS D AMONT", + "brand": "Atac" }, "39220004": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "39220005": { - "Nom": "Carrefour MARKET LES ROUSSES", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET LES ROUSSES", + "brand": "Carrefour Market" }, "39220006": { - "Nom": "Intermarché LES ROUSSES", - "Marque": "Intermarché" + "name": "Intermarché LES ROUSSES", + "brand": "Intermarché" }, "39230001": { - "Nom": "MAXIMARCHE SELLIERES", - "Marque": "Maximarché" + "name": "MAXIMARCHE SELLIERES", + "brand": "Maximarché" }, "39230002": { - "Nom": "RELAIS AVIA MANTRY", - "Marque": "Avia" + "name": "RELAIS AVIA MANTRY", + "brand": "Avia" }, "39230003": { - "Nom": "STATION SERVICE AVIA", - "Marque": "Avia" + "name": "STATION SERVICE AVIA", + "brand": "Avia" }, "39230004": { - "Nom": "CocciMarket", - "Marque": "CocciMarket" + "name": "CocciMarket", + "brand": "CocciMarket" }, "39240001": { - "Nom": "sodipemont", - "Marque": "Système U" + "name": "sodipemont", + "brand": "Système U" }, "39260001": { - "Nom": "DATS Moirans", - "Marque": "Colruyt" + "name": "DATS Moirans", + "brand": "Colruyt" }, "39270001": { - "Nom": "SARL MASINI - Modern' Garage", - "Marque": "Avia" + "name": "SARL MASINI - Modern' Garage", + "brand": "Avia" }, "39270002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "39300001": { - "Nom": "SUPER U CHAMPAGNOLE", - "Marque": "Système U" + "name": "SUPER U CHAMPAGNOLE", + "brand": "Système U" }, "39300004": { - "Nom": "Intermarché CHAMPAGNOLE", - "Marque": "Intermarché" + "name": "Intermarché CHAMPAGNOLE", + "brand": "Intermarché" }, "39300005": { - "Nom": "STATION DATS", - "Marque": "Colruyt" + "name": "STATION DATS", + "brand": "Colruyt" }, "39300006": { - "Nom": "station Leclerc Champagnole", - "Marque": "Leclerc" + "name": "station Leclerc Champagnole", + "brand": "Leclerc" }, "39330001": { - "Nom": "004 DATS MOUCHARD", - "Marque": "Colruyt" + "name": "004 DATS MOUCHARD", + "brand": "Colruyt" }, "39380001": { - "Nom": "SAS NIMADIS", - "Marque": "Système U" + "name": "SAS NIMADIS", + "brand": "Système U" }, "39380002": { - "Nom": "CJ Automobiles", - "Marque": "Avia" + "name": "CJ Automobiles", + "brand": "Avia" }, "39400002": { - "Nom": "Intermarché MOREZ", - "Marque": "Intermarché" + "name": "Intermarché MOREZ", + "brand": "Intermarché" }, "39400003": { - "Nom": "Supermarche Bi1", - "Marque": "Bi1" + "name": "Supermarche Bi1", + "brand": "Bi1" }, "39402001": { - "Nom": "MOREZ AUTOMOBILES SAS", - "Marque": "Avia" + "name": "MOREZ AUTOMOBILES SAS", + "brand": "Avia" }, "39410001": { - "Nom": "DATS SAINT AUBIN", - "Marque": "Colruyt" + "name": "DATS SAINT AUBIN", + "brand": "Colruyt" }, "39500001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "39500003": { - "Nom": "AGIP TAVAUX LES CHARMES", - "Marque": "Agip" + "name": "AGIP TAVAUX LES CHARMES", + "brand": "Agip" }, "39500004": { - "Nom": "RELAIS DES BASSES TERRES", - "Marque": "Total" + "name": "RELAIS DES BASSES TERRES", + "brand": "Total" }, "39500006": { - "Nom": "Intermarché", - "Marque": "Intermarché Contact" + "name": "Intermarché", + "brand": "Intermarché Contact" }, "39570001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "39570004": { - "Nom": "RN83 DISTRIBUTION SAS Super U", - "Marque": "Système U" + "name": "RN83 DISTRIBUTION SAS Super U", + "brand": "Système U" }, "39570007": { - "Nom": "Relais de la vallee/motoperf", - "Marque": "Total" + "name": "Relais de la vallee/motoperf", + "brand": "Total" }, "39570008": { - "Nom": "BRICOMARCHE", - "Marque": "Bricomarché" + "name": "BRICOMARCHE", + "brand": "Bricomarché" }, "39600001": { - "Nom": "ATAC ARBOIS", - "Marque": "Atac" + "name": "ATAC ARBOIS", + "brand": "Atac" }, "39600002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "39700007": { - "Nom": "STATION DATS", - "Marque": "Colruyt" + "name": "STATION DATS", + "brand": "Colruyt" }, "39700010": { - "Nom": "BP A36 AIRE DE DOLE AUDELANGE", - "Marque": "BP" + "name": "BP A36 AIRE DE DOLE AUDELANGE", + "brand": "BP" }, "39700011": { - "Nom": "BP A36 AIRE DE DOLE ROMANGE", - "Marque": "BP" + "name": "BP A36 AIRE DE DOLE ROMANGE", + "brand": "BP" }, "39700012": { - "Nom": "RELAIS DU POIRIER", - "Marque": "Total Access" + "name": "RELAIS DU POIRIER", + "brand": "Total Access" }, "39700013": { - "Nom": "RELAIS DU POIRIER 2", - "Marque": "Total Access" + "name": "RELAIS DU POIRIER 2", + "brand": "Total Access" }, "39700014": { - "Nom": "Station de Ranchot", - "Marque": "Total" + "name": "Station de Ranchot", + "brand": "Total" }, "39800003": { - "Nom": "STATION DATS", - "Marque": "Colruyt" + "name": "STATION DATS", + "brand": "Colruyt" }, "40000001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "40000002": { - "Nom": "Carrefour", - "Marque": "Carrefour" + "name": "Carrefour", + "brand": "Carrefour" }, "40000007": { - "Nom": "Intermarché MONT DE MARSAN", - "Marque": "Intermarché" + "name": "Intermarché MONT DE MARSAN", + "brand": "Intermarché" }, "40000011": { - "Nom": "ESSO EXPRESS MONT DE MARSAN MONTOISE", - "Marque": "Esso Express" + "name": "ESSO EXPRESS MONT DE MARSAN MONTOISE", + "brand": "Esso Express" }, "40000012": { - "Nom": "RELAIS MARSAN CLEMENCEAU", - "Marque": "Total Access" + "name": "RELAIS MARSAN CLEMENCEAU", + "brand": "Total Access" }, "40006001": { - "Nom": "SODILANDES", - "Marque": "Leclerc" + "name": "SODILANDES", + "brand": "Leclerc" }, "40100001": { - "Nom": "Carrefour", - "Marque": "Carrefour" + "name": "Carrefour", + "brand": "Carrefour" }, "40100004": { - "Nom": "HYPER DISTRIBUTION", - "Marque": "Leclerc" + "name": "HYPER DISTRIBUTION", + "brand": "Leclerc" }, "40100005": { - "Nom": "Intermarché DAX", - "Marque": "Intermarché" + "name": "Intermarché DAX", + "brand": "Intermarché" }, "40100008": { - "Nom": "RELAIS DAX CHAULET STAR", - "Marque": "Total Access" + "name": "RELAIS DAX CHAULET STAR", + "brand": "Total Access" }, "40110001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "40110002": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché" + "name": "Intermarché Contact", + "brand": "Intermarché" }, "40110003": { - "Nom": "RELAIS STAR YGOS SAINT SATURNIN", - "Marque": "Total" + "name": "RELAIS STAR YGOS SAINT SATURNIN", + "brand": "Total" }, "40120001": { - "Nom": "SARL SODICANTI - Station", - "Marque": "Carrefour Contact" + "name": "SARL SODICANTI - Station", + "brand": "Carrefour Contact" }, "40120003": { - "Nom": "LECLERC SARBAZAN DISTRIBUTION", - "Marque": "Leclerc" + "name": "LECLERC SARBAZAN DISTRIBUTION", + "brand": "Leclerc" }, "40130001": { - "Nom": "SARL STATION SERVICE DU PORT", - "Marque": "Total" + "name": "SARL STATION SERVICE DU PORT", + "brand": "Total" }, "40130003": { - "Nom": "SOCADI - E. LECLERC", - "Marque": "Leclerc" + "name": "SOCADI - E. LECLERC", + "brand": "Leclerc" }, "40130004": { - "Nom": "Intermarché CAPBRETON", - "Marque": "Intermarché" + "name": "Intermarché CAPBRETON", + "brand": "Intermarché" }, "40140001": { - "Nom": "EOR MAGESCQ MORA", - "Marque": "Elan" + "name": "EOR MAGESCQ MORA", + "brand": "Elan" }, "40140002": { - "Nom": "AQUIPYRDIS", - "Marque": "Leclerc" + "name": "AQUIPYRDIS", + "brand": "Leclerc" }, "40140004": { - "Nom": "Intermarché SOUSTONS", - "Marque": "Intermarché" + "name": "Intermarché SOUSTONS", + "brand": "Intermarché" }, "40150001": { - "Nom": "Intermarché SOORTS HOSSEGOR", - "Marque": "Intermarché" + "name": "Intermarché SOORTS HOSSEGOR", + "brand": "Intermarché" }, "40160001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "40160003": { - "Nom": "Intermarché PARENTIS EN BORN", - "Marque": "Intermarché" + "name": "Intermarché PARENTIS EN BORN", + "brand": "Intermarché" }, "40160004": { - "Nom": "STATION Total Contact", - "Marque": "Total" + "name": "STATION Total Contact", + "brand": "Total" }, "40170003": { - "Nom": "SARL LITCODIS", - "Marque": "Système U" + "name": "SARL LITCODIS", + "brand": "Système U" }, "40170004": { - "Nom": "SARL SOHIKA", - "Marque": "Carrefour Contact" + "name": "SARL SOHIKA", + "brand": "Carrefour Contact" }, "40180001": { - "Nom": "EOR SAUGNAC VOISIN", - "Marque": "Total" + "name": "EOR SAUGNAC VOISIN", + "brand": "Total" }, "40180002": { - "Nom": "DUSSIN PHILIPPE", - "Marque": "Elan" + "name": "DUSSIN PHILIPPE", + "brand": "Elan" }, "40180003": { - "Nom": "Intermarché YZOSSE", - "Marque": "Intermarché" + "name": "Intermarché YZOSSE", + "brand": "Intermarché" }, "40190003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "40200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "40200002": { - "Nom": "PLAGECO DISTRIBUTION", - "Marque": "Leclerc" + "name": "PLAGECO DISTRIBUTION", + "brand": "Leclerc" }, "40200003": { - "Nom": "SARL CAIGNIEU ET FILS", - "Marque": "ESSO" + "name": "SARL CAIGNIEU ET FILS", + "brand": "ESSO" }, "40210001": { - "Nom": "Intermarché LABOUHEYRE", - "Marque": "Intermarché" + "name": "Intermarché LABOUHEYRE", + "brand": "Intermarché" }, "40210004": { - "Nom": "Station Leclerc Express", - "Marque": "Leclerc" + "name": "Station Leclerc Express", + "brand": "Leclerc" }, "40220001": { - "Nom": "Carrefour", - "Marque": "Carrefour" + "name": "Carrefour", + "brand": "Carrefour" }, "40220002": { - "Nom": "DYNEFF Tarnos", - "Marque": "Dyneff" + "name": "DYNEFF Tarnos", + "brand": "Dyneff" }, "40220004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "40220005": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "40230001": { - "Nom": "S.A. SU.MA.TYR", - "Marque": "Leclerc" + "name": "S.A. SU.MA.TYR", + "brand": "Leclerc" }, "40230003": { - "Nom": "MARENDIS", - "Marque": "Leader Price" + "name": "MARENDIS", + "brand": "Leader Price" }, "40230004": { - "Nom": "LECLERC EXPRESS", - "Marque": "Leclerc" + "name": "LECLERC EXPRESS", + "brand": "Leclerc" }, "40240003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "40250001": { - "Nom": "SARL CHALOSSE DISTRIB", - "Marque": "Carrefour Contact" + "name": "SARL CHALOSSE DISTRIB", + "brand": "Carrefour Contact" }, "40260002": { - "Nom": "SGAR SAS", - "Marque": "Shell" + "name": "SGAR SAS", + "brand": "Shell" }, "40260005": { - "Nom": "Intermarché CASTETS", - "Marque": "Intermarché" + "name": "Intermarché CASTETS", + "brand": "Intermarché" }, "40260006": { - "Nom": "LECLERC EXPRESS", - "Marque": "Leclerc" + "name": "LECLERC EXPRESS", + "brand": "Leclerc" }, "40260008": { - "Nom": "AVIA Ocean Ouest", - "Marque": "Avia" + "name": "AVIA Ocean Ouest", + "brand": "Avia" }, "40260009": { - "Nom": "RELAIS DE CASTETS", - "Marque": "Total Access" + "name": "RELAIS DE CASTETS", + "brand": "Total Access" }, "40270001": { - "Nom": "EURL GARAGE GRENADE AUTOMOBILE", - "Marque": "Total" + "name": "EURL GARAGE GRENADE AUTOMOBILE", + "brand": "Total" }, "40270004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "40280001": { - "Nom": "STATION Total BOUAKAZ", - "Marque": "Total" + "name": "STATION Total BOUAKAZ", + "brand": "Total" }, "40280004": { - "Nom": "STATION SERVICE DU MOUN", - "Marque": "Indépendant sans enseigne" + "name": "STATION SERVICE DU MOUN", + "brand": "Indépendant sans enseigne" }, "40280005": { - "Nom": "CASINO SAINT PIERRE DU MONT", - "Marque": "Casino" + "name": "CASINO SAINT PIERRE DU MONT", + "brand": "Casino" }, "40280006": { - "Nom": "station service Leclerc drive", - "Marque": "Leclerc" + "name": "station service Leclerc drive", + "brand": "Leclerc" }, "40300003": { - "Nom": "Carrefour Market - Route de bayonne", - "Marque": "Carrefour Market" + "name": "Carrefour Market - Route de bayonne", + "brand": "Carrefour Market" }, "40300005": { - "Nom": "Intermarché CAUNEILLE", - "Marque": "Intermarché" + "name": "Intermarché CAUNEILLE", + "brand": "Intermarché" }, "40300008": { - "Nom": "SNC GRESSOT", - "Marque": "Total" + "name": "SNC GRESSOT", + "brand": "Total" }, "40300009": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "40310001": { - "Nom": "U express", - "Marque": "Système U" + "name": "U express", + "brand": "Système U" }, "40320001": { - "Nom": "VAL FLEURI - RESEAU Aire C", - "Marque": "Aire C" + "name": "VAL FLEURI - RESEAU Aire C", + "brand": "Aire C" }, "40320002": { - "Nom": "Val Fleuri SARL", - "Marque": "Aire C" + "name": "Val Fleuri SARL", + "brand": "Aire C" }, "40330001": { - "Nom": "STATION Intermarché", - "Marque": "Intermarché" + "name": "STATION Intermarché", + "brand": "Intermarché" }, "40350001": { - "Nom": "Intermarché POUILLON", - "Marque": "Intermarché" + "name": "Intermarché POUILLON", + "brand": "Intermarché" }, "40360002": { - "Nom": "STATION Contact POMAREZ", - "Marque": "Carrefour Contact" + "name": "STATION Contact POMAREZ", + "brand": "Carrefour Contact" }, "40370001": { - "Nom": "Carrefour EXPRESS", - "Marque": "Shopi" + "name": "Carrefour EXPRESS", + "brand": "Shopi" }, "40370003": { - "Nom": "LECLERC EXPRESS", - "Marque": "Leclerc" + "name": "LECLERC EXPRESS", + "brand": "Leclerc" }, "40380003": { - "Nom": "Carrefour Contact SARL Shorion", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact SARL Shorion", + "brand": "Carrefour Contact" }, "40390001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "40400001": { - "Nom": "SARL ROUSSEAU", - "Marque": "Total" + "name": "SARL ROUSSEAU", + "brand": "Total" }, "40400002": { - "Nom": "ROLLIN SAS", - "Marque": "Elan" + "name": "ROLLIN SAS", + "brand": "Elan" }, "40400003": { - "Nom": "Intermarché TARTAS", - "Marque": "Intermarché" + "name": "Intermarché TARTAS", + "brand": "Intermarché" }, "40400004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "40400005": { - "Nom": "NETTO", - "Marque": "Netto" + "name": "NETTO", + "brand": "Netto" }, "40410002": { - "Nom": "Carrefour Express PISSOS", - "Marque": "Carrefour Express" + "name": "Carrefour Express PISSOS", + "brand": "Carrefour Express" }, "40410004": { - "Nom": "Avia Porte Des Landes Ouest", - "Marque": "Avia" + "name": "Avia Porte Des Landes Ouest", + "brand": "Avia" }, "40410005": { - "Nom": "AVIA PORTE DES LANDES EST", - "Marque": "Avia" + "name": "AVIA PORTE DES LANDES EST", + "brand": "Avia" }, "40420002": { - "Nom": "Intermarché LABRIT", - "Marque": "Intermarché" + "name": "Intermarché LABRIT", + "brand": "Intermarché" }, "40420003": { - "Nom": "Relais de l'Espourguillat", - "Marque": "Indépendant sans enseigne" + "name": "Relais de l'Espourguillat", + "brand": "Indépendant sans enseigne" }, "40460001": { - "Nom": "Intermarché SANGUINET", - "Marque": "Intermarché" + "name": "Intermarché SANGUINET", + "brand": "Intermarché" }, "40460002": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "40465002": { - "Nom": "Intermarché PONTONX SUR ADOUR", - "Marque": "Intermarché" + "name": "Intermarché PONTONX SUR ADOUR", + "brand": "Intermarché" }, "40500001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "40500002": { - "Nom": "Intermarché SAINT SEVER", - "Marque": "Intermarché" + "name": "Intermarché SAINT SEVER", + "brand": "Intermarché" }, "40530001": { - "Nom": "ESSO LABENNE OUEST", - "Marque": "Esso" + "name": "ESSO LABENNE OUEST", + "brand": "Esso" }, "40530002": { - "Nom": "ESSO LABENNE EST", - "Marque": "Esso" + "name": "ESSO LABENNE EST", + "brand": "Esso" }, "40530003": { - "Nom": "Intermarché LABENNE", - "Marque": "Intermarché" + "name": "Intermarché LABENNE", + "brand": "Intermarché" }, "40530004": { - "Nom": "ROC FRANCE ESSO LABENNE EST", - "Marque": "Esso" + "name": "ROC FRANCE ESSO LABENNE EST", + "brand": "Esso" }, "40530005": { - "Nom": "Station esso labenne ouest", - "Marque": "ESSO" + "name": "Station esso labenne ouest", + "brand": "ESSO" }, "40550001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "40600002": { - "Nom": "S.A.B.", - "Marque": "Leclerc" + "name": "S.A.B.", + "brand": "Leclerc" }, "40600004": { - "Nom": "SAS BISCADIS", - "Marque": "Système U" + "name": "SAS BISCADIS", + "brand": "Système U" }, "40630001": { - "Nom": "Station Elan Sabres", - "Marque": "Elan" + "name": "Station Elan Sabres", + "brand": "Elan" }, "40660001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "40660002": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "40700001": { - "Nom": "SARL GARAGE LACOURREGE DUVIGNAU", - "Marque": "Total" + "name": "SARL GARAGE LACOURREGE DUVIGNAU", + "brand": "Total" }, "40700003": { - "Nom": "STATION SERVICE", - "Marque": "Intermarché" + "name": "STATION SERVICE", + "brand": "Intermarché" }, "40700004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "40800002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "40800003": { - "Nom": "Intermarché AIRE SUR ADOUR", - "Marque": "Intermarché" + "name": "Intermarché AIRE SUR ADOUR", + "brand": "Intermarché" }, "40800006": { - "Nom": "LECLERC", - "Marque": "Leclerc" + "name": "LECLERC", + "brand": "Leclerc" }, "40800007": { - "Nom": "RELAIS DE L'ADOUR", - "Marque": "Total" + "name": "RELAIS DE L'ADOUR", + "brand": "Total" }, "40990001": { - "Nom": "CLIM COMBUSTIBLES", - "Marque": "Total" + "name": "CLIM COMBUSTIBLES", + "brand": "Total" }, "40990002": { - "Nom": "SAS ADOUR DISTRIBUTION", - "Marque": "Leclerc" + "name": "SAS ADOUR DISTRIBUTION", + "brand": "Leclerc" }, "40990004": { - "Nom": "Intermarché SAINT PAUL LES DAX", - "Marque": "Intermarché" + "name": "Intermarché SAINT PAUL LES DAX", + "brand": "Intermarché" }, "41000001": { - "Nom": "CORA BLOIS", - "Marque": "CORA" + "name": "CORA BLOIS", + "brand": "CORA" }, "41000002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "41000003": { - "Nom": "SARL ETS GRAND", - "Marque": "Total" + "name": "SARL ETS GRAND", + "brand": "Total" }, "41000005": { - "Nom": "SARL ROUX", - "Marque": "Shell" + "name": "SARL ROUX", + "brand": "Shell" }, "41000007": { - "Nom": "SOBLEDIS", - "Marque": "Leclerc" + "name": "SOBLEDIS", + "brand": "Leclerc" }, "41000014": { - "Nom": "Station Avia", - "Marque": "Avia" + "name": "Station Avia", + "brand": "Avia" }, "41000019": { - "Nom": "RELAIS ANNE DE BRETAGNE", - "Marque": "Total Access" + "name": "RELAIS ANNE DE BRETAGNE", + "brand": "Total Access" }, "41000020": { - "Nom": "Market blois chavy", - "Marque": "Carrefour Market" + "name": "Market blois chavy", + "brand": "Carrefour Market" }, "41000021": { - "Nom": "Esso Blois Ménars", - "Marque": "Esso" + "name": "Esso Blois Ménars", + "brand": "Esso" }, "41100002": { - "Nom": "CITROEN VENDOME BIGOT AUTO", - "Marque": "Total" + "name": "CITROEN VENDOME BIGOT AUTO", + "brand": "Total" }, "41100003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "41100004": { - "Nom": "Leclerc Vendôme", - "Marque": "Leclerc" + "name": "Leclerc Vendôme", + "brand": "Leclerc" }, "41100005": { - "Nom": "Intermarché VENDOME", - "Marque": "Intermarché" + "name": "Intermarché VENDOME", + "brand": "Intermarché" }, "41100006": { - "Nom": "RELAIS DU VAL DE LOIRE", - "Marque": "Total Access" + "name": "RELAIS DU VAL DE LOIRE", + "brand": "Total Access" }, "41110001": { - "Nom": "Super U ST AIGNAN SUR CHER", - "Marque": "Système U" + "name": "Super U ST AIGNAN SUR CHER", + "brand": "Système U" }, "41120002": { - "Nom": "Intermarché CHAILLES", - "Marque": "Intermarché" + "name": "Intermarché CHAILLES", + "brand": "Intermarché" }, "41130003": { - "Nom": "Super U SELLES SUR CHER", - "Marque": "Système U" + "name": "Super U SELLES SUR CHER", + "brand": "Système U" }, "41140004": { - "Nom": "Intermarché NOYERS SUR CHER", - "Marque": "Intermarché" + "name": "Intermarché NOYERS SUR CHER", + "brand": "Intermarché" }, "41150003": { - "Nom": "CASINO CARBURANTS", - "Marque": "Casino" + "name": "CASINO CARBURANTS", + "brand": "Casino" }, "41160001": { - "Nom": "Smg distribution", - "Marque": "Carrefour Contact" + "name": "Smg distribution", + "brand": "Carrefour Contact" }, "41170002": { - "Nom": "Super U MONDOUBLEAU", - "Marque": "Système U" + "name": "Super U MONDOUBLEAU", + "brand": "Système U" }, "41190002": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "41200001": { - "Nom": "Carrefour Romorantin", - "Marque": "Carrefour" + "name": "Carrefour Romorantin", + "brand": "Carrefour" }, "41200002": { - "Nom": "LE RELAIS DE VILLEFRANCHE", - "Marque": "Total" + "name": "LE RELAIS DE VILLEFRANCHE", + "brand": "Total" }, "41200003": { - "Nom": "SORODIS", - "Marque": "Leclerc" + "name": "SORODIS", + "brand": "Leclerc" }, "41200005": { - "Nom": "SUPER U ROMORANTIN", - "Marque": "Système U" + "name": "SUPER U ROMORANTIN", + "brand": "Système U" }, "41200006": { - "Nom": "Super U PRUNIERS EN SOLOGNE", - "Marque": "Système U" + "name": "Super U PRUNIERS EN SOLOGNE", + "brand": "Système U" }, "41200009": { - "Nom": "RELAIS DE ROMORANTIN", - "Marque": "Total" + "name": "RELAIS DE ROMORANTIN", + "brand": "Total" }, "41200010": { - "Nom": "SORODIS", - "Marque": "Leclerc" + "name": "SORODIS", + "brand": "Leclerc" }, "41210000": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "41220001": { - "Nom": "Super U ST LAURENT NOUAN", - "Marque": "Système U" + "name": "Super U ST LAURENT NOUAN", + "brand": "Système U" }, "41230001": { - "Nom": "SARL JBK AUTOS MOTOS", - "Marque": "Elan" + "name": "SARL JBK AUTOS MOTOS", + "brand": "Elan" }, "41240002": { - "Nom": "Intermarché OUZOUER LE MARCHE", - "Marque": "Intermarché" + "name": "Intermarché OUZOUER LE MARCHE", + "brand": "Intermarché" }, "41250001": { - "Nom": "Intermarché MONT PRES CHAMBORD", - "Marque": "Intermarché" + "name": "Intermarché MONT PRES CHAMBORD", + "brand": "Intermarché" }, "41260001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "41260005": { - "Nom": "ESSO EXPRESS LA CHAUSSEE SAINT VICTOR", - "Marque": "Esso Express" + "name": "ESSO EXPRESS LA CHAUSSEE SAINT VICTOR", + "brand": "Esso Express" }, "41300001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "41300002": { - "Nom": "Super U SALBRIS", - "Marque": "Système U" + "name": "Super U SALBRIS", + "brand": "Système U" }, "41300005": { - "Nom": "AVIA SALBRIS THEILLAY", - "Marque": "Avia" + "name": "AVIA SALBRIS THEILLAY", + "brand": "Avia" }, "41300007": { - "Nom": "Avia Salbris la Loge", - "Marque": "Avia" + "name": "Avia Salbris la Loge", + "brand": "Avia" }, "41320001": { - "Nom": "Utile Chatres sur Cher", - "Marque": "Système U" + "name": "Utile Chatres sur Cher", + "brand": "Système U" }, "41350001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "41350003": { - "Nom": "Intermarché VINEUIL", - "Marque": "Intermarché" + "name": "Intermarché VINEUIL", + "brand": "Intermarché" }, "41350007": { - "Nom": "RELAIS VINEUIL DENIS PAPIN 1", - "Marque": "Total Access" + "name": "RELAIS VINEUIL DENIS PAPIN 1", + "brand": "Total Access" }, "41350008": { - "Nom": "RELAIS VINEUIL DENIS PAPIN 2", - "Marque": "Total Access" + "name": "RELAIS VINEUIL DENIS PAPIN 2", + "brand": "Total Access" }, "41360003": { - "Nom": "GARAGE DE LA GRANGE", - "Marque": "Elan" + "name": "GARAGE DE LA GRANGE", + "brand": "Elan" }, "41360005": { - "Nom": "Coccinelle supermarché", - "Marque": "Coccinelle" + "name": "Coccinelle supermarché", + "brand": "Coccinelle" }, "41370001": { - "Nom": "EURL GARAGE HURAULT", - "Marque": "Elan" + "name": "EURL GARAGE HURAULT", + "brand": "Elan" }, "41370004": { - "Nom": "Marchenoir - CCBVL", - "Marque": "Indépendant sans enseigne" + "name": "Marchenoir - CCBVL", + "brand": "Indépendant sans enseigne" }, "41400001": { - "Nom": "Super U CHISSAY EN TOURAINE", - "Marque": "Système U" + "name": "Super U CHISSAY EN TOURAINE", + "brand": "Système U" }, "41400002": { - "Nom": "SARL RELAIS DES CARRIERES", - "Marque": "Total" + "name": "SARL RELAIS DES CARRIERES", + "brand": "Total" }, "41400004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "41400006": { - "Nom": "ESSO EXPRESS MONTRICHARD SAINT LUC", - "Marque": "Esso Express" + "name": "ESSO EXPRESS MONTRICHARD SAINT LUC", + "brand": "Esso Express" }, "41500001": { - "Nom": "Super U MER", - "Marque": "Système U" + "name": "Super U MER", + "brand": "Système U" }, "41600001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "41600003": { - "Nom": "BP A71 AIRE DE CHAUMONT SUR THARONNE", - "Marque": "BP" + "name": "BP A71 AIRE DE CHAUMONT SUR THARONNE", + "brand": "BP" }, "41600004": { - "Nom": "ESSO LA FERTE ST AUBIN", - "Marque": "Esso" + "name": "ESSO LA FERTE ST AUBIN", + "brand": "Esso" }, "41600005": { - "Nom": "Intermarché LAMOTTE BEUVRON", - "Marque": "Intermarché" + "name": "Intermarché LAMOTTE BEUVRON", + "brand": "Intermarché" }, "41600006": { - "Nom": "RELAIS DU BEUVRON", - "Marque": "Total" + "name": "RELAIS DU BEUVRON", + "brand": "Total" }, "41700004": { - "Nom": "Super U CONTRES", - "Marque": "Système U" + "name": "Super U CONTRES", + "brand": "Système U" }, "41700006": { - "Nom": "SARL GARAGE PAUGOY", - "Marque": "Total" + "name": "SARL GARAGE PAUGOY", + "brand": "Total" }, "41700007": { - "Nom": "SAS ANAMILLE", - "Marque": "Intermarché" + "name": "SAS ANAMILLE", + "brand": "Intermarché" }, "41800001": { - "Nom": "Super U Coop Atlantique Montoire", - "Marque": "Système U" + "name": "Super U Coop Atlantique Montoire", + "brand": "Système U" }, "41800002": { - "Nom": "Intermarché MONTOIRE SUR LE LOIR", - "Marque": "Intermarché" + "name": "Intermarché MONTOIRE SUR LE LOIR", + "brand": "Intermarché" }, "41800003": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "42000014": { - "Nom": "RELAIS ST ETIENNE TARENTAIZE", - "Marque": "Total Access" + "name": "RELAIS ST ETIENNE TARENTAIZE", + "brand": "Total Access" }, "42000015": { - "Nom": "RELAIS ST ETIENNE MASSENET", - "Marque": "Total Access" + "name": "RELAIS ST ETIENNE MASSENET", + "brand": "Total Access" }, "42000017": { - "Nom": "DYNEFF", - "Marque": "Dyneff" + "name": "DYNEFF", + "brand": "Dyneff" }, "42000018": { - "Nom": "AGIP ST ETIENNE NECKER", - "Marque": "Agip" + "name": "AGIP ST ETIENNE NECKER", + "brand": "Agip" }, "42000019": { - "Nom": "AGIP ST ETIENNE RUE ACIERIES", - "Marque": "Agip" + "name": "AGIP ST ETIENNE RUE ACIERIES", + "brand": "Agip" }, "42030001": { - "Nom": "GEANT CASINO MONTHIEU", - "Marque": "Géant" + "name": "GEANT CASINO MONTHIEU", + "brand": "Géant" }, "42100004": { - "Nom": "STATION Total SARL RIOUX", - "Marque": "Total" + "name": "STATION Total SARL RIOUX", + "brand": "Total" }, "42100005": { - "Nom": "ESSO MONTPLAISIR", - "Marque": "Esso Express" + "name": "ESSO MONTPLAISIR", + "brand": "Esso Express" }, "42100017": { - "Nom": "RELAIS 5 CHEMINS ST ETIENNE", - "Marque": "Total" + "name": "RELAIS 5 CHEMINS ST ETIENNE", + "brand": "Total" }, "42100018": { - "Nom": "RELAIS PONT DE L'ANE", - "Marque": "Total Access" + "name": "RELAIS PONT DE L'ANE", + "brand": "Total Access" }, "42100019": { - "Nom": "BP ST ETIENNE BEAULIEU", - "Marque": "BP" + "name": "BP ST ETIENNE BEAULIEU", + "brand": "BP" }, "42100020": { - "Nom": "SAS SAINTEDIS", - "Marque": "Système U" + "name": "SAS SAINTEDIS", + "brand": "Système U" }, "42110001": { - "Nom": "Carrefour STATION SERVICE FEURS", - "Marque": "Carrefour" + "name": "Carrefour STATION SERVICE FEURS", + "brand": "Carrefour" }, "42110003": { - "Nom": "Intermarché FEURS CIVENS", - "Marque": "Intermarché" + "name": "Intermarché FEURS CIVENS", + "brand": "Intermarché" }, "42110004": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Casino" }, "42110006": { - "Nom": "RELAIS DE FEURS", - "Marque": "Total" + "name": "RELAIS DE FEURS", + "brand": "Total" }, "42120001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "42120002": { - "Nom": "SARL GARAGE MULSANT", - "Marque": "Avia" + "name": "SARL GARAGE MULSANT", + "brand": "Avia" }, "42120003": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "42120004": { - "Nom": "SAS LAFAY", - "Marque": "Elan" + "name": "SAS LAFAY", + "brand": "Elan" }, "42120005": { - "Nom": "SAS BELCOF", - "Marque": "Intermarché" + "name": "SAS BELCOF", + "brand": "Intermarché" }, "42130002": { - "Nom": "ESSO SERVICE BOEN GRALLIEN GERARD", - "Marque": "Esso" + "name": "ESSO SERVICE BOEN GRALLIEN GERARD", + "brand": "Esso" }, "42130004": { - "Nom": "Intermarché BOEN SUR LIGNON", - "Marque": "Intermarché" + "name": "Intermarché BOEN SUR LIGNON", + "brand": "Intermarché" }, "42130005": { - "Nom": "NETTO BOEN SUR LIGNON", - "Marque": "Netto" + "name": "NETTO BOEN SUR LIGNON", + "brand": "Netto" }, "42140001": { - "Nom": "GARAGE DU CENTRE", - "Marque": "Total" + "name": "GARAGE DU CENTRE", + "brand": "Total" }, "42140003": { - "Nom": "Intermarché SAS CHAZEM", - "Marque": "Intermarché" + "name": "Intermarché SAS CHAZEM", + "brand": "Intermarché" }, "42150001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "42152001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "42152003": { - "Nom": "Intermarché L'HORME", - "Marque": "Intermarché" + "name": "Intermarché L'HORME", + "brand": "Intermarché" }, "42152005": { - "Nom": "AGIP L'HORME AV BERTHELOT", - "Marque": "Agip" + "name": "AGIP L'HORME AV BERTHELOT", + "brand": "Agip" }, "42153001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "42153002": { - "Nom": "ROADIS", - "Marque": "Leclerc" + "name": "ROADIS", + "brand": "Leclerc" }, "42153003": { - "Nom": "YVESCO", - "Marque": "Intermarché" + "name": "YVESCO", + "brand": "Intermarché" }, "42155001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "42160003": { - "Nom": "SARL CEDADEL", - "Marque": "Total" + "name": "SARL CEDADEL", + "brand": "Total" }, "42160004": { - "Nom": "ANDREZIEUX DISTRIBUTION", - "Marque": "Leclerc" + "name": "ANDREZIEUX DISTRIBUTION", + "brand": "Leclerc" }, "42160005": { - "Nom": "Intermarché ST CYPRIEN", - "Marque": "Intermarché" + "name": "Intermarché ST CYPRIEN", + "brand": "Intermarché" }, "42170002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "42170003": { - "Nom": "SARL GARAGE BONHOMME", - "Marque": "Total" + "name": "SARL GARAGE BONHOMME", + "brand": "Total" }, "42190002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "42190003": { - "Nom": "Intermarché ST NIZIER/CHARLIEU", - "Marque": "Intermarché" + "name": "Intermarché ST NIZIER/CHARLIEU", + "brand": "Intermarché" }, "42190004": { - "Nom": "GARAGE A.SAUNIER", - "Marque": "Total" + "name": "GARAGE A.SAUNIER", + "brand": "Total" }, "42210001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "42210002": { - "Nom": "GGE NOALLY", - "Marque": "Total" + "name": "GGE NOALLY", + "brand": "Total" }, "42210003": { - "Nom": "STATION MICHALON PRODUITS PETROLIERS", - "Marque": "Indépendant sans enseigne" + "name": "STATION MICHALON PRODUITS PETROLIERS", + "brand": "Indépendant sans enseigne" }, "42220001": { - "Nom": "PNEU DU PILAT BOURG ARGENTAL", - "Marque": "Total" + "name": "PNEU DU PILAT BOURG ARGENTAL", + "brand": "Total" }, "42220003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "42230001": { - "Nom": "Intermarché ROCHE LA MOLIERE", - "Marque": "Intermarché" + "name": "Intermarché ROCHE LA MOLIERE", + "brand": "Intermarché" }, "42230002": { - "Nom": "DL LUB S.A.S", - "Marque": "Indépendant sans enseigne" + "name": "DL LUB S.A.S", + "brand": "Indépendant sans enseigne" }, "42240001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "42260001": { - "Nom": "Intermarché ST GERMAIN LAVAL", - "Marque": "Intermarché" + "name": "Intermarché ST GERMAIN LAVAL", + "brand": "Intermarché" }, "42270002": { - "Nom": "JARDIS E.LECLERC", - "Marque": "Leclerc" + "name": "JARDIS E.LECLERC", + "brand": "Leclerc" }, "42270003": { - "Nom": "GARAGE AROD", - "Marque": "Esso" + "name": "GARAGE AROD", + "brand": "Esso" }, "42270004": { - "Nom": "CASINO CARBURANT", - "Marque": "Casino" + "name": "CASINO CARBURANT", + "brand": "Casino" }, "42290001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "42290002": { - "Nom": "STATION Total GARAGE DE L'ENTENTE", - "Marque": "Total" + "name": "STATION Total GARAGE DE L'ENTENTE", + "brand": "Total" }, "42300001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "42300007": { - "Nom": "AUCHAN Supermarché", - "Marque": "Auchan" + "name": "AUCHAN Supermarché", + "brand": "Auchan" }, "42300010": { - "Nom": "Garage de l'Europe", - "Marque": "Dyneff" + "name": "Garage de l'Europe", + "brand": "Dyneff" }, "42300011": { - "Nom": "Relais de charlieu", - "Marque": "Total" + "name": "Relais de charlieu", + "brand": "Total" }, "42300012": { - "Nom": "GARAGE DOURDEIN", - "Marque": "Total" + "name": "GARAGE DOURDEIN", + "brand": "Total" }, "42310001": { - "Nom": "ATAC", - "Marque": "Atac" + "name": "ATAC", + "brand": "Atac" }, "42330001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "42330002": { - "Nom": "Intermarché SAS Libra", - "Marque": "Intermarché" + "name": "Intermarché SAS Libra", + "brand": "Intermarché" }, "42334001": { - "Nom": "Carrefour MABLY", - "Marque": "Carrefour" + "name": "Carrefour MABLY", + "brand": "Carrefour" }, "42340001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "42360001": { - "Nom": "GARAGE BAILLY JEAN PAUL", - "Marque": "Elan" + "name": "GARAGE BAILLY JEAN PAUL", + "brand": "Elan" }, "42370001": { - "Nom": "STATION SERVICE AVIA", - "Marque": "Avia" + "name": "STATION SERVICE AVIA", + "brand": "Avia" }, "42370003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "42370004": { - "Nom": "BP RENAISON", - "Marque": "BP" + "name": "BP RENAISON", + "brand": "BP" }, "42380001": { - "Nom": "SUPER U SAS TOURYMA", - "Marque": "Système U" + "name": "SUPER U SAS TOURYMA", + "brand": "Système U" }, "42380004": { - "Nom": "MICHALON DEPOT PETROLIER", - "Marque": "Indépendant sans enseigne" + "name": "MICHALON DEPOT PETROLIER", + "brand": "Indépendant sans enseigne" }, "42380005": { - "Nom": "STATION MICHALON PRODUITS PETROLIERS", - "Marque": "Indépendant sans enseigne" + "name": "STATION MICHALON PRODUITS PETROLIERS", + "brand": "Indépendant sans enseigne" }, "42390001": { - "Nom": "AUCHAN VILLARS", - "Marque": "Auchan" + "name": "AUCHAN VILLARS", + "brand": "Auchan" }, "42400004": { - "Nom": "ST CHAMONT DISTRIBUTION", - "Marque": "Leclerc" + "name": "ST CHAMONT DISTRIBUTION", + "brand": "Leclerc" }, "42400006": { - "Nom": "RELAIS DE BOURDON", - "Marque": "Total" + "name": "RELAIS DE BOURDON", + "brand": "Total" }, "42400007": { - "Nom": "RELAIS ST CHAMOND", - "Marque": "Total Access" + "name": "RELAIS ST CHAMOND", + "brand": "Total Access" }, "42410001": { - "Nom": "Saint-Michel", - "Marque": "Indépendant sans enseigne" + "name": "Saint-Michel", + "brand": "Indépendant sans enseigne" }, "42410002": { - "Nom": "LECLERC CHAVANAY", - "Marque": "Leclerc" + "name": "LECLERC CHAVANAY", + "brand": "Leclerc" }, "42410004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "42420001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "42430001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "42440004": { - "Nom": "Intermarché NOIRETABLE", - "Marque": "Intermarché" + "name": "Intermarché NOIRETABLE", + "brand": "Intermarché" }, "42440005": { - "Nom": "TOUN KY supermarché COCCIMARKET", - "Marque": "Indépendant sans enseigne" + "name": "TOUN KY supermarché COCCIMARKET", + "brand": "Indépendant sans enseigne" }, "42440006": { - "Nom": "Shell B2M Performance", - "Marque": "Shell" + "name": "Shell B2M Performance", + "brand": "Shell" }, "42440008": { - "Nom": "Shell haut forez nord", - "Marque": "Shell" + "name": "Shell haut forez nord", + "brand": "Shell" }, "42440009": { - "Nom": "RELAIS UNIEUX VIGNERON", - "Marque": "Total" + "name": "RELAIS UNIEUX VIGNERON", + "brand": "Total" }, "42450001": { - "Nom": "SARL GARAGE BARCET", - "Marque": "Elan" + "name": "SARL GARAGE BARCET", + "brand": "Elan" }, "42450002": { - "Nom": "SAS SURYDIS", - "Marque": "Système U" + "name": "SAS SURYDIS", + "brand": "Système U" }, "42470001": { - "Nom": "SARL FILS PONTILLE", - "Marque": "Total" + "name": "SARL FILS PONTILLE", + "brand": "Total" }, "42470004": { - "Nom": "GARAGE BEAUJEU", - "Marque": "Dyneff" + "name": "GARAGE BEAUJEU", + "brand": "Dyneff" }, "42470005": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "42470006": { - "Nom": "BG GARAGE", - "Marque": "Total" + "name": "BG GARAGE", + "brand": "Total" }, "42480001": { - "Nom": "GRANJON COMBUSTIBLES", - "Marque": "Indépendant sans enseigne" + "name": "GRANJON COMBUSTIBLES", + "brand": "Indépendant sans enseigne" }, "42480002": { - "Nom": "PRENAT ANDRE", - "Marque": "Indépendant sans enseigne" + "name": "PRENAT ANDRE", + "brand": "Indépendant sans enseigne" }, "42500001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "42500012": { - "Nom": "FIRMINY DISTRIBUTION", - "Marque": "Leclerc" + "name": "FIRMINY DISTRIBUTION", + "brand": "Leclerc" }, "42500013": { - "Nom": "FIRMINY DISTRIBUTION", - "Marque": "Leclerc" + "name": "FIRMINY DISTRIBUTION", + "brand": "Leclerc" }, "42510001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "42510003": { - "Nom": "A-DR passion", - "Marque": "Total" + "name": "A-DR passion", + "brand": "Total" }, "42510004": { - "Nom": "Bulite", - "Marque": "Avia" + "name": "Bulite", + "brand": "Avia" }, "42510005": { - "Nom": "SAS ENRIC NETTo", - "Marque": "Netto" + "name": "SAS ENRIC NETTo", + "brand": "Netto" }, "42540001": { - "Nom": "Carrefour EXPRESS", - "Marque": "Carrefour Express" + "name": "Carrefour EXPRESS", + "brand": "Carrefour Express" }, "42550001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "42570001": { - "Nom": "SAS PHILAE", - "Marque": "Intermarché" + "name": "SAS PHILAE", + "brand": "Intermarché" }, "42600001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "42600002": { - "Nom": "SARL BELLEVUE-SAVIGNEUX", - "Marque": "Total" + "name": "SARL BELLEVUE-SAVIGNEUX", + "brand": "Total" }, "42600003": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "42600005": { - "Nom": "SGAR SAS", - "Marque": "Shell" + "name": "SGAR SAS", + "brand": "Shell" }, "42600007": { - "Nom": "Intermarché MONTBRISON", - "Marque": "Intermarché" + "name": "Intermarché MONTBRISON", + "brand": "Intermarché" }, "42600008": { - "Nom": "Shell B2M Performances", - "Marque": "Shell" + "name": "Shell B2M Performances", + "brand": "Shell" }, "42640001": { - "Nom": "GARAGE PAYRARD", - "Marque": "Total" + "name": "GARAGE PAYRARD", + "brand": "Total" }, "42650001": { - "Nom": "BP RN 88 LA MAISON ROUGE ST JEAN BONNEFONDS", - "Marque": "BP" + "name": "BP RN 88 LA MAISON ROUGE ST JEAN BONNEFONDS", + "brand": "BP" }, "42680001": { - "Nom": "SAINT MARCELLIN EN FOREZ - SARL BR", - "Marque": "Total" + "name": "SAINT MARCELLIN EN FOREZ - SARL BR", + "brand": "Total" }, "42700001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "42700004": { - "Nom": "FIRMINY DISTRIBUTION S.A", - "Marque": "Leclerc" + "name": "FIRMINY DISTRIBUTION S.A", + "brand": "Leclerc" }, "42700005": { - "Nom": "AGIP FIRMINY SARL FB", - "Marque": "Agip" + "name": "AGIP FIRMINY SARL FB", + "brand": "Agip" }, "42720001": { - "Nom": "GARAGE LACROIX", - "Marque": "Esso" + "name": "GARAGE LACROIX", + "brand": "Esso" }, "42780001": { - "Nom": "RELAIS STAR VIOLAY", - "Marque": "Total" + "name": "RELAIS STAR VIOLAY", + "brand": "Total" }, "42800001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "42800003": { - "Nom": "Intermarché RIVE DE GIER", - "Marque": "Intermarché" + "name": "Intermarché RIVE DE GIER", + "brand": "Intermarché" }, "42800004": { - "Nom": "AVIA RIVE DE GIER", - "Marque": "Avia" + "name": "AVIA RIVE DE GIER", + "brand": "Avia" }, "42830001": { - "Nom": "RONDARD ARCHIMBAUD", - "Marque": "Total" + "name": "RONDARD ARCHIMBAUD", + "brand": "Total" }, "43000002": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "43000004": { - "Nom": "ESSO VAL VERT", - "Marque": "Esso Express" + "name": "ESSO VAL VERT", + "brand": "Esso Express" }, "43000006": { - "Nom": "SARL SLS", - "Marque": "Avia" + "name": "SARL SLS", + "brand": "Avia" }, "43000009": { - "Nom": "RELAIS DU PUY", - "Marque": "Total Access" + "name": "RELAIS DU PUY", + "brand": "Total Access" }, "43100001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "43100002": { - "Nom": "EOR BRIOUDE ETS BOUDON", - "Marque": "Total" + "name": "EOR BRIOUDE ETS BOUDON", + "brand": "Total" }, "43100003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "43100004": { - "Nom": "GARAGE DELMAS", - "Marque": "ESSO" + "name": "GARAGE DELMAS", + "brand": "ESSO" }, "43100005": { - "Nom": "SAS KENVIN", - "Marque": "Intermarché" + "name": "SAS KENVIN", + "brand": "Intermarché" }, "43110001": { - "Nom": "AURECDIS SUPERMARCHE CASINO", - "Marque": "Casino" + "name": "AURECDIS SUPERMARCHE CASINO", + "brand": "Casino" }, "43120001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "43120002": { - "Nom": "Intermarché MONISTROL SUR LOIRE", - "Marque": "Intermarché" + "name": "Intermarché MONISTROL SUR LOIRE", + "brand": "Intermarché" }, "43130001": { - "Nom": "SAS JINCY Intermarché", - "Marque": "Intermarché" + "name": "SAS JINCY Intermarché", + "brand": "Intermarché" }, "43170001": { - "Nom": "GARAGE GIRES", - "Marque": "Total" + "name": "GARAGE GIRES", + "brand": "Total" }, "43170002": { - "Nom": "LONJON", - "Marque": "Indépendant sans enseigne" + "name": "LONJON", + "brand": "Indépendant sans enseigne" }, "43170003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "43190001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "43190002": { - "Nom": "3C CARBURANTS", - "Marque": "Indépendant sans enseigne" + "name": "3C CARBURANTS", + "brand": "Indépendant sans enseigne" }, "43200002": { - "Nom": "DYC", - "Marque": "Avia" + "name": "DYC", + "brand": "Avia" }, "43200003": { - "Nom": "Station du col", - "Marque": "Elan" + "name": "Station du col", + "brand": "Elan" }, "43200004": { - "Nom": "SAS DISTRIBY'S", - "Marque": "Système U" + "name": "SAS DISTRIBY'S", + "brand": "Système U" }, "43200005": { - "Nom": "Intermarché YSSINGEAUX", - "Marque": "Intermarché" + "name": "Intermarché YSSINGEAUX", + "brand": "Intermarché" }, "43200006": { - "Nom": "STATION J.V.F", - "Marque": "Indépendant sans enseigne" + "name": "STATION J.V.F", + "brand": "Indépendant sans enseigne" }, "43210002": { - "Nom": "031 DATS BAS EN BASSET", - "Marque": "Colruyt" + "name": "031 DATS BAS EN BASSET", + "brand": "Colruyt" }, "43220001": { - "Nom": "BRUNIEDIS SAS", - "Marque": "Carrefour Market" + "name": "BRUNIEDIS SAS", + "brand": "Carrefour Market" }, "43230001": { - "Nom": "SARL GIRAUD", - "Marque": "Total" + "name": "SARL GIRAUD", + "brand": "Total" }, "43230002": { - "Nom": "SAS CECARLAEL", - "Marque": "Intermarché Contact" + "name": "SAS CECARLAEL", + "brand": "Intermarché Contact" }, "43240001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "43260001": { - "Nom": "GARAGE DESSALCES", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE DESSALCES", + "brand": "Indépendant sans enseigne" }, "43260002": { - "Nom": "Intermarché SAS Leikh", - "Marque": "Intermarché" + "name": "Intermarché SAS Leikh", + "brand": "Intermarché" }, "43290001": { - "Nom": "STATION BLANCHARD", - "Marque": "Indépendant sans enseigne" + "name": "STATION BLANCHARD", + "brand": "Indépendant sans enseigne" }, "43300002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "43300003": { - "Nom": "SAS PACHADE", - "Marque": "Intermarché" + "name": "SAS PACHADE", + "brand": "Intermarché" }, "43320001": { - "Nom": "MR VIGOUROUX", - "Marque": "Total" + "name": "MR VIGOUROUX", + "brand": "Total" }, "43340001": { - "Nom": "STATION J.V.F", - "Marque": "DKV" + "name": "STATION J.V.F", + "brand": "DKV" }, "43350001": { - "Nom": "Intermarché SAINT PAULIEN", - "Marque": "Intermarché" + "name": "Intermarché SAINT PAULIEN", + "brand": "Intermarché" }, "43360001": { - "Nom": "B2M PERFORMANCE EURL", - "Marque": "Shell" + "name": "B2M PERFORMANCE EURL", + "brand": "Shell" }, "43400001": { - "Nom": "Intermarché CHAMBON SUR LIGNON", - "Marque": "Intermarché" + "name": "Intermarché CHAMBON SUR LIGNON", + "brand": "Intermarché" }, "43410001": { - "Nom": "RELAIS DES 2 VALS", - "Marque": "Total" + "name": "RELAIS DES 2 VALS", + "brand": "Total" }, "43500001": { - "Nom": "SARL GARAGE RIBEYRON", - "Marque": "Total" + "name": "SARL GARAGE RIBEYRON", + "brand": "Total" }, "43500002": { - "Nom": "ESTRADE DE DISTRIBUTION", - "Marque": "Système U" + "name": "ESTRADE DE DISTRIBUTION", + "brand": "Système U" }, "43500004": { - "Nom": "Station communale", - "Marque": "Indépendant sans enseigne" + "name": "Station communale", + "brand": "Indépendant sans enseigne" }, "43600002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "43600003": { - "Nom": "SAS SAINSY", - "Marque": "Intermarché" + "name": "SAS SAINSY", + "brand": "Intermarché" }, "43700001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "43700002": { - "Nom": "STATION J.V.F", - "Marque": "Indépendant sans enseigne" + "name": "STATION J.V.F", + "brand": "Indépendant sans enseigne" }, "43750001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "43770001": { - "Nom": "STATION J.V.F", - "Marque": "Indépendant sans enseigne" + "name": "STATION J.V.F", + "brand": "Indépendant sans enseigne" }, "43800001": { - "Nom": "GARAGE GRANDOUILLER", - "Marque": "Elan" + "name": "GARAGE GRANDOUILLER", + "brand": "Elan" }, "43800002": { - "Nom": "Intermarché VOREY", - "Marque": "Intermarché" + "name": "Intermarché VOREY", + "brand": "Intermarché" }, "44000001": { - "Nom": "Carrefour NANTES LA BEAUJOIRE", - "Marque": "Carrefour" + "name": "Carrefour NANTES LA BEAUJOIRE", + "brand": "Carrefour" }, "44000005": { - "Nom": "CHIQUET", - "Marque": "Elan" + "name": "CHIQUET", + "brand": "Elan" }, "44000006": { - "Nom": "Intermarché NANTES", - "Marque": "Intermarché" + "name": "Intermarché NANTES", + "brand": "Intermarché" }, "44000009": { - "Nom": "RELAIS MADELEINE MARTYRS", - "Marque": "Total" + "name": "RELAIS MADELEINE MARTYRS", + "brand": "Total" }, "44000010": { - "Nom": "RELAIS NANTES FACULTES", - "Marque": "Total Access" + "name": "RELAIS NANTES FACULTES", + "brand": "Total Access" }, "44100004": { - "Nom": "Avia", - "Marque": "Avia" + "name": "Avia", + "brand": "Avia" }, "44100005": { - "Nom": "RELAIS GUE ROBERT", - "Marque": "Total" + "name": "RELAIS GUE ROBERT", + "brand": "Total" }, "44100006": { - "Nom": "RELAIS NANTES LE TERTRE", - "Marque": "Total Access" + "name": "RELAIS NANTES LE TERTRE", + "brand": "Total Access" }, "44110001": { - "Nom": "Hyper U CHATEAUBRIANT", - "Marque": "Système U" + "name": "Hyper U CHATEAUBRIANT", + "brand": "Système U" }, "44110002": { - "Nom": "SAS CHATEAUBRIANT AUTOMOBILES", - "Marque": "Total" + "name": "SAS CHATEAUBRIANT AUTOMOBILES", + "brand": "Total" }, "44110003": { - "Nom": "Station E.LECLERC Chateaubriant", - "Marque": "Leclerc" + "name": "Station E.LECLERC Chateaubriant", + "brand": "Leclerc" }, "44110004": { - "Nom": "Intermarché CHATEAUBRIANT", - "Marque": "Intermarché" + "name": "Intermarché CHATEAUBRIANT", + "brand": "Intermarché" }, "44110005": { - "Nom": "Avia Station Récup'44", - "Marque": "Avia" + "name": "Avia Station Récup'44", + "brand": "Avia" }, "44115003": { - "Nom": "RELAIS LA DIVATTE", - "Marque": "Total Access" + "name": "RELAIS LA DIVATTE", + "brand": "Total Access" }, "44116001": { - "Nom": "SAS POULDON", - "Marque": "Intermarché" + "name": "SAS POULDON", + "brand": "Intermarché" }, "44118003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "44119003": { - "Nom": "SHELL - DUPE TROLL", - "Marque": "Shell" + "name": "SHELL - DUPE TROLL", + "brand": "Shell" }, "44119004": { - "Nom": "Super U TREILLIERES", - "Marque": "Système U" + "name": "Super U TREILLIERES", + "brand": "Système U" }, "44119005": { - "Nom": "RELAIS TREILLIERES", - "Marque": "Total" + "name": "RELAIS TREILLIERES", + "brand": "Total" }, "44120004": { - "Nom": "RELAIS VERTOU GRASSINIERE", - "Marque": "Total" + "name": "RELAIS VERTOU GRASSINIERE", + "brand": "Total" }, "44120005": { - "Nom": "RELAIS VERTOU LA SEVRE", - "Marque": "Total Access" + "name": "RELAIS VERTOU LA SEVRE", + "brand": "Total Access" }, "44120006": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "44130001": { - "Nom": "Hyper U BLAIN", - "Marque": "Système U" + "name": "Hyper U BLAIN", + "brand": "Système U" }, "44130002": { - "Nom": "SARL ABF", - "Marque": "Total" + "name": "SARL ABF", + "brand": "Total" }, "44130003": { - "Nom": "Centre Leclerc", - "Marque": "Leclerc" + "name": "Centre Leclerc", + "brand": "Leclerc" }, "44140002": { - "Nom": "Intermarché GENESTON", - "Marque": "Intermarché" + "name": "Intermarché GENESTON", + "brand": "Intermarché" }, "44140004": { - "Nom": "Intermarché AIGREFFEUILLE", - "Marque": "Intermarché" + "name": "Intermarché AIGREFFEUILLE", + "brand": "Intermarché" }, "44140006": { - "Nom": "STATION Total", - "Marque": "Total" + "name": "STATION Total", + "brand": "Total" }, "44150001": { - "Nom": "BRETECHE OUEST", - "Marque": "Avia" + "name": "BRETECHE OUEST", + "brand": "Avia" }, "44150003": { - "Nom": "E.LECLERC ANCENIS", - "Marque": "Leclerc" + "name": "E.LECLERC ANCENIS", + "brand": "Leclerc" }, "44150004": { - "Nom": "SUPER U ANCENIS", - "Marque": "Système U" + "name": "SUPER U ANCENIS", + "brand": "Système U" }, "44150006": { - "Nom": "ESSO EXPRESS ANCENIS PASTEUR", - "Marque": "Esso Express" + "name": "ESSO EXPRESS ANCENIS PASTEUR", + "brand": "Esso Express" }, "44160002": { - "Nom": "RELAIS DE BEAULIEU AUTO", - "Marque": "Elan" + "name": "RELAIS DE BEAULIEU AUTO", + "brand": "Elan" }, "44160003": { - "Nom": "LECLERC PONTCHATEAU", - "Marque": "Leclerc" + "name": "LECLERC PONTCHATEAU", + "brand": "Leclerc" }, "44160005": { - "Nom": "LECLERC SAINTE ANNE", - "Marque": "Leclerc" + "name": "LECLERC SAINTE ANNE", + "brand": "Leclerc" }, "44170001": { - "Nom": "Super U NOZAY", - "Marque": "Système U" + "name": "Super U NOZAY", + "brand": "Système U" }, "44170002": { - "Nom": "SARL GARAGE DE LA PIERRE BLEUE", - "Marque": "Total" + "name": "SARL GARAGE DE LA PIERRE BLEUE", + "brand": "Total" }, "44170003": { - "Nom": "BRETECHE", - "Marque": "Avia" + "name": "BRETECHE", + "brand": "Avia" }, "44190001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "44190002": { - "Nom": "CLISSON AUTOS S.A.S", - "Marque": "Total" + "name": "CLISSON AUTOS S.A.S", + "brand": "Total" }, "44190004": { - "Nom": "SARL BRAUD SERVICES", - "Marque": "Total" + "name": "SARL BRAUD SERVICES", + "brand": "Total" }, "44190006": { - "Nom": "SAS CLISSON DISTRIBUTION", - "Marque": "Leclerc" + "name": "SAS CLISSON DISTRIBUTION", + "brand": "Leclerc" }, "44190007": { - "Nom": "Intermarché CLISSON", - "Marque": "Intermarché" + "name": "Intermarché CLISSON", + "brand": "Intermarché" }, "44200002": { - "Nom": "E.LECLERC PORNIC", - "Marque": "Leclerc" + "name": "E.LECLERC PORNIC", + "brand": "Leclerc" }, "44210002": { - "Nom": "Intermarché PORNIC", - "Marque": "Intermarché" + "name": "Intermarché PORNIC", + "brand": "Intermarché" }, "44210003": { - "Nom": "Super U PORNIC OUEST", - "Marque": "Système U" + "name": "Super U PORNIC OUEST", + "brand": "Système U" }, "44210004": { - "Nom": "SARL STATION SERVICE ROUTE BLEUE", - "Marque": "Total" + "name": "SARL STATION SERVICE ROUTE BLEUE", + "brand": "Total" }, "44220001": { - "Nom": "Super U NANTES ST JACQUES", - "Marque": "Système U" + "name": "Super U NANTES ST JACQUES", + "brand": "Système U" }, "44220002": { - "Nom": "Super U COUERON", - "Marque": "Système U" + "name": "Super U COUERON", + "brand": "Système U" }, "44220003": { - "Nom": "ARDILLETS AUTOMOBILES SERVICES", - "Marque": "Total" + "name": "ARDILLETS AUTOMOBILES SERVICES", + "brand": "Total" }, "44220005": { - "Nom": "Carrefour MARKET COUERON", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET COUERON", + "brand": "Carrefour Market" }, "44230002": { - "Nom": "Super U ST SEBASTIEN / LOIRE", - "Marque": "Système U" + "name": "Super U ST SEBASTIEN / LOIRE", + "brand": "Système U" }, "44230003": { - "Nom": "AUCHAN CARBURANT", - "Marque": "Auchan" + "name": "AUCHAN CARBURANT", + "brand": "Auchan" }, "44230004": { - "Nom": "Intermarché ST SEBASTIEN", - "Marque": "Intermarché" + "name": "Intermarché ST SEBASTIEN", + "brand": "Intermarché" }, "44240001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "44240004": { - "Nom": "Intermarché LA CHAPELLE / ERDRE", - "Marque": "Intermarché" + "name": "Intermarché LA CHAPELLE / ERDRE", + "brand": "Intermarché" }, "44240011": { - "Nom": "RELAIS JONELIERE", - "Marque": "Total Access" + "name": "RELAIS JONELIERE", + "brand": "Total Access" }, "44250003": { - "Nom": "E.LECLERC ST BREVIN", - "Marque": "Leclerc" + "name": "E.LECLERC ST BREVIN", + "brand": "Leclerc" }, "44250004": { - "Nom": "GARAGE DE L'ESTUAIRE", - "Marque": "Total" + "name": "GARAGE DE L'ESTUAIRE", + "brand": "Total" }, "44250005": { - "Nom": "RELAIS SAINT BREVIN HAUTIERE", - "Marque": "Total Access" + "name": "RELAIS SAINT BREVIN HAUTIERE", + "brand": "Total Access" }, "44260003": { - "Nom": "Utile MALVILLE", - "Marque": "Système U" + "name": "Utile MALVILLE", + "brand": "Système U" }, "44260005": { - "Nom": "Hyper U SAVENAY", - "Marque": "Système U" + "name": "Hyper U SAVENAY", + "brand": "Système U" }, "44260006": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "44270001": { - "Nom": "Super U MACHECOUL", - "Marque": "Système U" + "name": "Super U MACHECOUL", + "brand": "Système U" }, "44272001": { - "Nom": "Carrefour NANTES BEAULIEU", - "Marque": "Carrefour" + "name": "Carrefour NANTES BEAULIEU", + "brand": "Carrefour" }, "44290001": { - "Nom": "Super U GUEMENE PENFAO", - "Marque": "Système U" + "name": "Super U GUEMENE PENFAO", + "brand": "Système U" }, "44290002": { - "Nom": "SARL VIVIEN", - "Marque": "Total" + "name": "SARL VIVIEN", + "brand": "Total" }, "44300004": { - "Nom": "SO'GEROUEST Rte de Rennes", - "Marque": "Avia" + "name": "SO'GEROUEST Rte de Rennes", + "brand": "Avia" }, "44300012": { - "Nom": "ESSO EXPRESS NANTES SAINT JOSEPH", - "Marque": "Esso Express" + "name": "ESSO EXPRESS NANTES SAINT JOSEPH", + "brand": "Esso Express" }, "44300013": { - "Nom": "ESSO EXPRESS NANTES SAINTE LUCE", - "Marque": "Esso Express" + "name": "ESSO EXPRESS NANTES SAINTE LUCE", + "brand": "Esso Express" }, "44300015": { - "Nom": "RELAIS DU PETIT HERMITAGE", - "Marque": "Total" + "name": "RELAIS DU PETIT HERMITAGE", + "brand": "Total" }, "44300016": { - "Nom": "RELAIS NANTES STE LUCE", - "Marque": "Total Access" + "name": "RELAIS NANTES STE LUCE", + "brand": "Total Access" }, "44300017": { - "Nom": "E.LECLERC PARIDIS PARIS", - "Marque": "Leclerc" + "name": "E.LECLERC PARIDIS PARIS", + "brand": "Leclerc" }, "44300018": { - "Nom": "E.LECLERC PARIDIS PERRAY", - "Marque": "Leclerc" + "name": "E.LECLERC PARIDIS PERRAY", + "brand": "Leclerc" }, "44310001": { - "Nom": "Hyper U ST PHILBERT GRAND LIEU", - "Marque": "Système U" + "name": "Hyper U ST PHILBERT GRAND LIEU", + "brand": "Système U" }, "44320002": { - "Nom": "Super U ARTHON EN RETZ", - "Marque": "Système U" + "name": "Super U ARTHON EN RETZ", + "brand": "Système U" }, "44320003": { - "Nom": "GGE S.FORGET", - "Marque": "Total" + "name": "GGE S.FORGET", + "brand": "Total" }, "44320005": { - "Nom": "U Express ST PERE EN RETZ", - "Marque": "Système U" + "name": "U Express ST PERE EN RETZ", + "brand": "Système U" }, "44330001": { - "Nom": "Hyper U VALLET", - "Marque": "Système U" + "name": "Hyper U VALLET", + "brand": "Système U" }, "44330002": { - "Nom": "SARL GARAGE LERAY STATION AVIA", - "Marque": "Avia" + "name": "SARL GARAGE LERAY STATION AVIA", + "brand": "Avia" }, "44340001": { - "Nom": "SO'GEROUEST", - "Marque": "Avia" + "name": "SO'GEROUEST", + "brand": "Avia" }, "44340004": { - "Nom": "STATION AEROPORT", - "Marque": "Elan" + "name": "STATION AEROPORT", + "brand": "Elan" }, "44340005": { - "Nom": "RELAIS BOUGUENAIS", - "Marque": "Total Access" + "name": "RELAIS BOUGUENAIS", + "brand": "Total Access" }, "44340006": { - "Nom": "RELAIS DE BOUGUENAIS", - "Marque": "Total Access" + "name": "RELAIS DE BOUGUENAIS", + "brand": "Total Access" }, "44350001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "44350003": { - "Nom": "SARL GARAGE GUENEGO", - "Marque": "Total" + "name": "SARL GARAGE GUENEGO", + "brand": "Total" }, "44350004": { - "Nom": "GUERANDIS S.A", - "Marque": "Leclerc" + "name": "GUERANDIS S.A", + "brand": "Leclerc" }, "44350005": { - "Nom": "SARL GARAGE LEGAL", - "Marque": "Breteche" + "name": "SARL GARAGE LEGAL", + "brand": "Breteche" }, "44350006": { - "Nom": "Intermarché GUERANDE", - "Marque": "Intermarché" + "name": "Intermarché GUERANDE", + "brand": "Intermarché" }, "44360002": { - "Nom": "Super U ST ETIENNE DE MONTLUC", - "Marque": "Système U" + "name": "Super U ST ETIENNE DE MONTLUC", + "brand": "Système U" }, "44360004": { - "Nom": "MR FORTUN JEAN-YVES", - "Marque": "Total" + "name": "MR FORTUN JEAN-YVES", + "brand": "Total" }, "44360005": { - "Nom": "U Express VIGNEUX DE BRETAGNE", - "Marque": "Système U" + "name": "U Express VIGNEUX DE BRETAGNE", + "brand": "Système U" }, "44360007": { - "Nom": "LECLERC DRIVE TOURNEBRIDE", - "Marque": "Leclerc" + "name": "LECLERC DRIVE TOURNEBRIDE", + "brand": "Leclerc" }, "44360008": { - "Nom": "RELAIS VIGNEUX DE BRETAGNE", - "Marque": "Total" + "name": "RELAIS VIGNEUX DE BRETAGNE", + "brand": "Total" }, "44370003": { - "Nom": "MR MARQUIS", - "Marque": "Total" + "name": "MR MARQUIS", + "brand": "Total" }, "44370005": { - "Nom": "Super U VARADES", - "Marque": "Système U" + "name": "Super U VARADES", + "brand": "Système U" }, "44370006": { - "Nom": "SARL GARAGE PEU", - "Marque": "Indépendant sans enseigne" + "name": "SARL GARAGE PEU", + "brand": "Indépendant sans enseigne" }, "44370008": { - "Nom": "RELAIS VARADES", - "Marque": "Total" + "name": "RELAIS VARADES", + "brand": "Total" }, "44370009": { - "Nom": "REL.VARADES PAYS DE LOIRE", - "Marque": "Total" + "name": "REL.VARADES PAYS DE LOIRE", + "brand": "Total" }, "44380001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "44380007": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "44380008": { - "Nom": "RELAIS PORNICHET OCEANIDES", - "Marque": "Total" + "name": "RELAIS PORNICHET OCEANIDES", + "brand": "Total" }, "44390001": { - "Nom": "Intermarché NORT-SUR-ERDRE", - "Marque": "Intermarché" + "name": "Intermarché NORT-SUR-ERDRE", + "brand": "Intermarché" }, "44390003": { - "Nom": "U NORT SUR ERDRE", - "Marque": "Système U" + "name": "U NORT SUR ERDRE", + "brand": "Système U" }, "44390004": { - "Nom": "Carrefour Contact Riaille", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact Riaille", + "brand": "Carrefour Contact" }, "44400001": { - "Nom": "Super U REZE LA GALARNIERE", - "Marque": "Système U" + "name": "Super U REZE LA GALARNIERE", + "brand": "Système U" }, "44400005": { - "Nom": "Grelaud", - "Marque": "Total Access" + "name": "Grelaud", + "brand": "Total Access" }, "44400006": { - "Nom": "Intermarché REZE LES NANTES", - "Marque": "Intermarché" + "name": "Intermarché REZE LES NANTES", + "brand": "Intermarché" }, "44400009": { - "Nom": "RELAIS REZE", - "Marque": "Total Access" + "name": "RELAIS REZE", + "brand": "Total Access" }, "44406001": { - "Nom": "SODIRETZ", - "Marque": "Leclerc" + "name": "SODIRETZ", + "brand": "Leclerc" }, "44410001": { - "Nom": "E.LECLERC HERBIGNAC", - "Marque": "Leclerc" + "name": "E.LECLERC HERBIGNAC", + "brand": "Leclerc" }, "44410004": { - "Nom": "Intermarché VALAUBRI", - "Marque": "Intermarché" + "name": "Intermarché VALAUBRI", + "brand": "Intermarché" }, "44410006": { - "Nom": "Intermarché SAINT LYPHARD", - "Marque": "Intermarché" + "name": "Intermarché SAINT LYPHARD", + "brand": "Intermarché" }, "44412001": { - "Nom": "LECLERC REZE SUD LOIRE", - "Marque": "Leclerc" + "name": "LECLERC REZE SUD LOIRE", + "brand": "Leclerc" }, "44420001": { - "Nom": "EURL GGE PALAIS", - "Marque": "Total" + "name": "EURL GGE PALAIS", + "brand": "Total" }, "44420002": { - "Nom": "super u /sarl ceflor", - "Marque": "Système U" + "name": "super u /sarl ceflor", + "brand": "Système U" }, "44420003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "44430003": { - "Nom": "SAS COFIM", - "Marque": "Intermarché" + "name": "SAS COFIM", + "brand": "Intermarché" }, "44450002": { - "Nom": "Super U LA CHAPELLE BASSE MER", - "Marque": "Système U" + "name": "Super U LA CHAPELLE BASSE MER", + "brand": "Système U" }, "44450003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "44460001": { - "Nom": "LECLERC SAINT NICOLAS", - "Marque": "Leclerc" + "name": "LECLERC SAINT NICOLAS", + "brand": "Leclerc" }, "44470002": { - "Nom": "Super U THOUARE SUR LOIRE", - "Marque": "Système U" + "name": "Super U THOUARE SUR LOIRE", + "brand": "Système U" }, "44470005": { - "Nom": "Super U CARQUEFOU", - "Marque": "Système U" + "name": "Super U CARQUEFOU", + "brand": "Système U" }, "44470006": { - "Nom": "RELAIS CARQUEFOU", - "Marque": "Total Access" + "name": "RELAIS CARQUEFOU", + "brand": "Total Access" }, "44480002": { - "Nom": "Intermarché DONGES", - "Marque": "Intermarché" + "name": "Intermarché DONGES", + "brand": "Intermarché" }, "44490002": { - "Nom": "Intermarche", - "Marque": "Intermarché" + "name": "Intermarche", + "brand": "Intermarché" }, "44500002": { - "Nom": "BRETECHE", - "Marque": "Avia" + "name": "BRETECHE", + "brand": "Avia" }, "44500004": { - "Nom": "ESSO EXPRESS LA BAULE ESCOUBLAC BOIS D'AMOUR", - "Marque": "Esso Express" + "name": "ESSO EXPRESS LA BAULE ESCOUBLAC BOIS D'AMOUR", + "brand": "Esso Express" }, "44510001": { - "Nom": "Intermarché LE POULIGUEN", - "Marque": "Intermarché" + "name": "Intermarché LE POULIGUEN", + "brand": "Intermarché" }, "44521001": { - "Nom": "SARL GUILLOU", - "Marque": "Total" + "name": "SARL GUILLOU", + "brand": "Total" }, "44522002": { - "Nom": "SARL MITYB", - "Marque": "Système U" + "name": "SARL MITYB", + "brand": "Système U" }, "44530003": { - "Nom": "Super U ST GILDAS DES BOIS", - "Marque": "Système U" + "name": "Super U ST GILDAS DES BOIS", + "brand": "Système U" }, "44540001": { - "Nom": "Super U ST MARS LA JAILLE", - "Marque": "Système U" + "name": "Super U ST MARS LA JAILLE", + "brand": "Système U" }, "44550001": { - "Nom": "Super U MONTOIR DE BRETAGNE", - "Marque": "Système U" + "name": "Super U MONTOIR DE BRETAGNE", + "brand": "Système U" }, "44560001": { - "Nom": "Super U PAIMBOEUF", - "Marque": "Système U" + "name": "Super U PAIMBOEUF", + "brand": "Système U" }, "44570001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "44570004": { - "Nom": "SARL AMALLY", - "Marque": "Avia" + "name": "SARL AMALLY", + "brand": "Avia" }, "44570006": { - "Nom": "RELAIS DE SAVINE", - "Marque": "Total Access" + "name": "RELAIS DE SAVINE", + "brand": "Total Access" }, "44580001": { - "Nom": "SARL BOUYER ET FILS", - "Marque": "Total" + "name": "SARL BOUYER ET FILS", + "brand": "Total" }, "44580002": { - "Nom": "U EXPRESS BOURGNEUF EN RETZ", - "Marque": "Système U" + "name": "U EXPRESS BOURGNEUF EN RETZ", + "brand": "Système U" }, "44590001": { - "Nom": "Super U DERVAL", - "Marque": "Système U" + "name": "Super U DERVAL", + "brand": "Système U" }, "44590002": { - "Nom": "BRETECHE", - "Marque": "Avia" + "name": "BRETECHE", + "brand": "Avia" }, "44600001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "44600002": { - "Nom": "Super U ST NAZAIRE", - "Marque": "Système U" + "name": "Super U ST NAZAIRE", + "brand": "Système U" }, "44600004": { - "Nom": "SARL MORIN", - "Marque": "Total" + "name": "SARL MORIN", + "brand": "Total" }, "44600006": { - "Nom": "SARL AMALLY", - "Marque": "Avia" + "name": "SARL AMALLY", + "brand": "Avia" }, "44600007": { - "Nom": "E.LECLERC ST NAZAIRE", - "Marque": "Leclerc" + "name": "E.LECLERC ST NAZAIRE", + "brand": "Leclerc" }, "44600009": { - "Nom": "RELAIS DE SAINT NAZAIRE", - "Marque": "Total Access" + "name": "RELAIS DE SAINT NAZAIRE", + "brand": "Total Access" }, "44620002": { - "Nom": "Hyper U LA MONTAGNE", - "Marque": "Système U" + "name": "Hyper U LA MONTAGNE", + "brand": "Système U" }, "44630002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "44640002": { - "Nom": "Intermarché LE PELLERIN", - "Marque": "Intermarché" + "name": "Intermarché LE PELLERIN", + "brand": "Intermarché" }, "44650001": { - "Nom": "Super U LEGE", - "Marque": "Système U" + "name": "Super U LEGE", + "brand": "Système U" }, "44680001": { - "Nom": "Super U STE PAZANNE", - "Marque": "Système U" + "name": "Super U STE PAZANNE", + "brand": "Système U" }, "44700002": { - "Nom": "NANTES-NORD-DIS", - "Marque": "Leclerc" + "name": "NANTES-NORD-DIS", + "brand": "Leclerc" }, "44700003": { - "Nom": "Intermarché ORVAULT", - "Marque": "Intermarché" + "name": "Intermarché ORVAULT", + "brand": "Intermarché" }, "44700005": { - "Nom": "ESSO EXPRESS ORVAULT COTE D'AMOUR", - "Marque": "Esso Express" + "name": "ESSO EXPRESS ORVAULT COTE D'AMOUR", + "brand": "Esso Express" }, "44710002": { - "Nom": "Intermarché SAS OGALO", - "Marque": "Intermarché Contact" + "name": "Intermarché SAS OGALO", + "brand": "Intermarché Contact" }, "44720004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "44730002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "44740002": { - "Nom": "BATZ AUTO SERVICES", - "Marque": "Avia" + "name": "BATZ AUTO SERVICES", + "brand": "Avia" }, "44750002": { - "Nom": "SA CATHYMA", - "Marque": "Intermarché Contact" + "name": "SA CATHYMA", + "brand": "Intermarché Contact" }, "44770001": { - "Nom": "Intermarché LA PLAINE SUR MER", - "Marque": "Intermarché" + "name": "Intermarché LA PLAINE SUR MER", + "brand": "Intermarché" }, "44800001": { - "Nom": "AUCHAN SAINT HERBLAIN", - "Marque": "Auchan" + "name": "AUCHAN SAINT HERBLAIN", + "brand": "Auchan" }, "44800004": { - "Nom": "E.LECLERC ATLANTIS", - "Marque": "Leclerc" + "name": "E.LECLERC ATLANTIS", + "brand": "Leclerc" }, "44800005": { - "Nom": "CASINO HERNA", - "Marque": "Super Casino" + "name": "CASINO HERNA", + "brand": "Super Casino" }, "44800007": { - "Nom": "RELAIS JOLI MAI", - "Marque": "Total" + "name": "RELAIS JOLI MAI", + "brand": "Total" }, "44800008": { - "Nom": "RELAIS ST HERBLAIN LES ECOBUTS", - "Marque": "Total Access" + "name": "RELAIS ST HERBLAIN LES ECOBUTS", + "brand": "Total Access" }, "44802001": { - "Nom": "Carrefour ST HERBLAIN", - "Marque": "Carrefour" + "name": "Carrefour ST HERBLAIN", + "brand": "Carrefour" }, "44810001": { - "Nom": "Super U HERIC", - "Marque": "Système U" + "name": "Super U HERIC", + "brand": "Système U" }, "44830002": { - "Nom": "Super U BOUAYE", - "Marque": "Système U" + "name": "Super U BOUAYE", + "brand": "Système U" }, "44840002": { - "Nom": "RELAIS GRASSINIERE", - "Marque": "Total" + "name": "RELAIS GRASSINIERE", + "brand": "Total" }, "44850001": { - "Nom": "Super U LIGNE", - "Marque": "Système U" + "name": "Super U LIGNE", + "brand": "Système U" }, "44850002": { - "Nom": "U express", - "Marque": "Système U" + "name": "U express", + "brand": "Système U" }, "44860002": { - "Nom": "Super U PONT ST MARTIN", - "Marque": "Système U" + "name": "Super U PONT ST MARTIN", + "brand": "Système U" }, "44880001": { - "Nom": "Super U SAUTRON", - "Marque": "Système U" + "name": "Super U SAUTRON", + "brand": "Système U" }, "45000007": { - "Nom": "RELAIS ORLEANS QUAI BARENTIN", - "Marque": "Total" + "name": "RELAIS ORLEANS QUAI BARENTIN", + "brand": "Total" }, "45000008": { - "Nom": "RELAIS DU CEDRE", - "Marque": "Total Access" + "name": "RELAIS DU CEDRE", + "brand": "Total Access" }, "45100001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "45100004": { - "Nom": "Carrefour Market St Mesmin", - "Marque": "Carrefour Market" + "name": "Carrefour Market St Mesmin", + "brand": "Carrefour Market" }, "45100006": { - "Nom": "ESSO EXPRESS ORLEANS LA BOLIERE", - "Marque": "Esso Express" + "name": "ESSO EXPRESS ORLEANS LA BOLIERE", + "brand": "Esso Express" }, "45100008": { - "Nom": "RELAIS ORLEANS LA SOURCE", - "Marque": "Total Access" + "name": "RELAIS ORLEANS LA SOURCE", + "brand": "Total Access" }, "45110001": { - "Nom": "Super U CHATEAUNEUF SUR LOIRE", - "Marque": "Système U" + "name": "Super U CHATEAUNEUF SUR LOIRE", + "brand": "Système U" }, "45110004": { - "Nom": "Intermarché SA Missomer", - "Marque": "Intermarché" + "name": "Intermarché SA Missomer", + "brand": "Intermarché" }, "45120002": { - "Nom": "Super U CHALETTE SUR LOING", - "Marque": "Système U" + "name": "Super U CHALETTE SUR LOING", + "brand": "Système U" }, "45120005": { - "Nom": "PICOTY RESEAU", - "Marque": "Avia" + "name": "PICOTY RESEAU", + "brand": "Avia" }, "45120006": { - "Nom": "MARKET YB2R", - "Marque": "Carrefour Market" + "name": "MARKET YB2R", + "brand": "Carrefour Market" }, "45120007": { - "Nom": "Hyper Casino", - "Marque": "Casino" + "name": "Hyper Casino", + "brand": "Casino" }, "45130003": { - "Nom": "MR STANIMIROVIC", - "Marque": "Total" + "name": "MR STANIMIROVIC", + "brand": "Total" }, "45130005": { - "Nom": "Hyper U BAULE", - "Marque": "Système U" + "name": "Hyper U BAULE", + "brand": "Système U" }, "45140001": { - "Nom": "AUCHAN CARBURANT", - "Marque": "Auchan" + "name": "AUCHAN CARBURANT", + "brand": "Auchan" }, "45140005": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "45140007": { - "Nom": "RELAIS ST JEAN", - "Marque": "Total Access" + "name": "RELAIS ST JEAN", + "brand": "Total Access" }, "45150001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "45150003": { - "Nom": "Sas pomalin", - "Marque": "Leader Price" + "name": "Sas pomalin", + "brand": "Leader Price" }, "45160001": { - "Nom": "AUCHAN OLIVET", - "Marque": "Auchan" + "name": "AUCHAN OLIVET", + "brand": "Auchan" }, "45160003": { - "Nom": "OLIVET-DIS", - "Marque": "Leclerc" + "name": "OLIVET-DIS", + "brand": "Leclerc" }, "45160005": { - "Nom": "OLIVET-DIS RN20", - "Marque": "Leclerc" + "name": "OLIVET-DIS RN20", + "brand": "Leclerc" }, "45160006": { - "Nom": "RELAIS DU COUDRAY", - "Marque": "Total" + "name": "RELAIS DU COUDRAY", + "brand": "Total" }, "45170001": { - "Nom": "Super U NEUVILLE AUX BOIS", - "Marque": "Système U" + "name": "Super U NEUVILLE AUX BOIS", + "brand": "Système U" }, "45170002": { - "Nom": "SA VOITURIN", - "Marque": "Total" + "name": "SA VOITURIN", + "brand": "Total" }, "45190001": { - "Nom": "SARL DRT", - "Marque": "Total" + "name": "SARL DRT", + "brand": "Total" }, "45190003": { - "Nom": "BALGENDIS", - "Marque": "Leclerc" + "name": "BALGENDIS", + "brand": "Leclerc" }, "45190010": { - "Nom": "AGIP A10 AIRE DE BEAUGENCY", - "Marque": "Agip" + "name": "AGIP A10 AIRE DE BEAUGENCY", + "brand": "Agip" }, "45190011": { - "Nom": "AGIP A10 AIRE MEUNG SUR LOIRE", - "Marque": "Agip" + "name": "AGIP A10 AIRE MEUNG SUR LOIRE", + "brand": "Agip" }, "45200001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "45200003": { - "Nom": "SARL DROUILLEAU", - "Marque": "Total" + "name": "SARL DROUILLEAU", + "brand": "Total" }, "45200004": { - "Nom": "ADIS", - "Marque": "Leclerc" + "name": "ADIS", + "brand": "Leclerc" }, "45200006": { - "Nom": "Intermarché AMILLY", - "Marque": "Intermarché" + "name": "Intermarché AMILLY", + "brand": "Intermarché" }, "45200007": { - "Nom": "RELAIS SOLTERRE LA COMMODITE", - "Marque": "Total Access" + "name": "RELAIS SOLTERRE LA COMMODITE", + "brand": "Total Access" }, "45210002": { - "Nom": "SARL PETRODOLLAR", - "Marque": "Total" + "name": "SARL PETRODOLLAR", + "brand": "Total" }, "45210004": { - "Nom": "SARL CARLIER", - "Marque": "Total" + "name": "SARL CARLIER", + "brand": "Total" }, "45210005": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "45220001": { - "Nom": "SAS PEUPLIDIS", - "Marque": "Système U" + "name": "SAS PEUPLIDIS", + "brand": "Système U" }, "45230001": { - "Nom": "Super U CHATILLON COLIGNY", - "Marque": "Système U" + "name": "Super U CHATILLON COLIGNY", + "brand": "Système U" }, "45240001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "45240002": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "45240003": { - "Nom": "Super U La Ferté Saint Aubin", - "Marque": "Système U" + "name": "Super U La Ferté Saint Aubin", + "brand": "Système U" }, "45250001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "45250003": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "45260001": { - "Nom": "Intermarché LORRIS", - "Marque": "Intermarché" + "name": "Intermarché LORRIS", + "brand": "Intermarché" }, "45270001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "45270002": { - "Nom": "GARAGE MASSING", - "Marque": "Avia" + "name": "GARAGE MASSING", + "brand": "Avia" }, "45290001": { - "Nom": "bi1", - "Marque": "Atac" + "name": "bi1", + "brand": "Atac" }, "45290003": { - "Nom": "BP A77 AIRE DU JARDIN DES ARBRES", - "Marque": "BP" + "name": "BP A77 AIRE DU JARDIN DES ARBRES", + "brand": "BP" }, "45300001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "45300003": { - "Nom": "PITHIVIERS-DIST", - "Marque": "Leclerc" + "name": "PITHIVIERS-DIST", + "brand": "Leclerc" }, "45300005": { - "Nom": "STATION Total", - "Marque": "Total" + "name": "STATION Total", + "brand": "Total" }, "45300006": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "45310001": { - "Nom": "Intermarché PATAY", - "Marque": "Intermarché" + "name": "Intermarché PATAY", + "brand": "Intermarché" }, "45320001": { - "Nom": "Bi1 COURTENAY", - "Marque": "Atac" + "name": "Bi1 COURTENAY", + "brand": "Atac" }, "45320003": { - "Nom": "SARL GORAL", - "Marque": "Esso" + "name": "SARL GORAL", + "brand": "Esso" }, "45320004": { - "Nom": "Intermarché COURTENAY", - "Marque": "Intermarché" + "name": "Intermarché COURTENAY", + "brand": "Intermarché" }, "45330001": { - "Nom": "SARL GARAGE THOMAS", - "Marque": "Total" + "name": "SARL GARAGE THOMAS", + "brand": "Total" }, "45330002": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "45330003": { - "Nom": "Intermarché MALESHERBES", - "Marque": "Intermarché" + "name": "Intermarché MALESHERBES", + "brand": "Intermarché" }, "45330004": { - "Nom": "E.LECLERC EXPRESS MALESHERBES", - "Marque": "Leclerc" + "name": "E.LECLERC EXPRESS MALESHERBES", + "brand": "Leclerc" }, "45340001": { - "Nom": "Super U BEAUNE LA ROLANDE", - "Marque": "Système U" + "name": "Super U BEAUNE LA ROLANDE", + "brand": "Système U" }, "45340004": { - "Nom": "AGIP AIRE DU LOIRET A 19", - "Marque": "Agip" + "name": "AGIP AIRE DU LOIRET A 19", + "brand": "Agip" }, "45360005": { - "Nom": "SUPERMARCHE G20", - "Marque": "Indépendant sans enseigne" + "name": "SUPERMARCHE G20", + "brand": "Indépendant sans enseigne" }, "45370001": { - "Nom": "Intermarché", - "Marque": "Intermarché Contact" + "name": "Intermarché", + "brand": "Intermarché Contact" }, "45380001": { - "Nom": "Intermarché CHAPELLE ST MESMIN", - "Marque": "Intermarché" + "name": "Intermarché CHAPELLE ST MESMIN", + "brand": "Intermarché" }, "45390001": { - "Nom": "Intermarché PUISEAUX", - "Marque": "Intermarché" + "name": "Intermarché PUISEAUX", + "brand": "Intermarché" }, "45400001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "45400002": { - "Nom": "Station Avia", - "Marque": "Avia" + "name": "Station Avia", + "brand": "Avia" }, "45400004": { - "Nom": "E.Leclerc Fleury les Aubrais", - "Marque": "Leclerc" + "name": "E.Leclerc Fleury les Aubrais", + "brand": "Leclerc" }, "45400005": { - "Nom": "Intermarché FLEURY LES AUBRAIS", - "Marque": "Intermarché" + "name": "Intermarché FLEURY LES AUBRAIS", + "brand": "Intermarché" }, "45400006": { - "Nom": "RELAIS DES AUBRAIS", - "Marque": "Total" + "name": "RELAIS DES AUBRAIS", + "brand": "Total" }, "45410001": { - "Nom": "Intermarché ARTENAY", - "Marque": "Intermarché" + "name": "Intermarché ARTENAY", + "brand": "Intermarché" }, "45420001": { - "Nom": "ATAC BONNY SUR LOIRE", - "Marque": "Atac" + "name": "ATAC BONNY SUR LOIRE", + "brand": "Atac" }, "45420002": { - "Nom": "Super U BONNY SUR LOIRE", - "Marque": "Système U" + "name": "Super U BONNY SUR LOIRE", + "brand": "Système U" }, "45430001": { - "Nom": "Sarl Roux", - "Marque": "Shell" + "name": "Sarl Roux", + "brand": "Shell" }, "45430003": { - "Nom": "AGIP CHECY AV D'ORLEANS", - "Marque": "Agip" + "name": "AGIP CHECY AV D'ORLEANS", + "brand": "Agip" }, "45430004": { - "Nom": "LECLERC CHECY", - "Marque": "Leclerc" + "name": "LECLERC CHECY", + "brand": "Leclerc" }, "45430005": { - "Nom": "Intermarché CORBEILLES EN GATINA", - "Marque": "Intermarché Contact" + "name": "Intermarché CORBEILLES EN GATINA", + "brand": "Intermarché Contact" }, "45430006": { - "Nom": "RELAIS DE MARDIE", - "Marque": "Total Access" + "name": "RELAIS DE MARDIE", + "brand": "Total Access" }, "45450003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "45460002": { - "Nom": "Intermarché BONNEE LES BORDES", - "Marque": "Intermarché" + "name": "Intermarché BONNEE LES BORDES", + "brand": "Intermarché" }, "45470001": { - "Nom": "Super U LOURY", - "Marque": "Système U" + "name": "Super U LOURY", + "brand": "Système U" }, "45500001": { - "Nom": "AUCHAN GIEN", - "Marque": "Auchan" + "name": "AUCHAN GIEN", + "brand": "Auchan" }, "45500002": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "45500006": { - "Nom": "Intermarché POILLY LEZ GIEN", - "Marque": "Intermarché" + "name": "Intermarché POILLY LEZ GIEN", + "brand": "Intermarché" }, "45500007": { - "Nom": "CENTRE LECLERC", - "Marque": "Leclerc" + "name": "CENTRE LECLERC", + "brand": "Leclerc" }, "45500008": { - "Nom": "RELAIS GIEN WILSON", - "Marque": "Total Access" + "name": "RELAIS GIEN WILSON", + "brand": "Total Access" }, "45510002": { - "Nom": "Intermarché VIENNE EN VAL", - "Marque": "Intermarché Contact" + "name": "Intermarché VIENNE EN VAL", + "brand": "Intermarché Contact" }, "45520003": { - "Nom": "RELAIS DE LA RETREVE", - "Marque": "Total" + "name": "RELAIS DE LA RETREVE", + "brand": "Total" }, "45520004": { - "Nom": "RELAIS ORLEANS GIDY", - "Marque": "Total" + "name": "RELAIS ORLEANS GIDY", + "brand": "Total" }, "45550002": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "45560001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "45570001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "45600002": { - "Nom": "Super U ST PERE SUR LOIRE", - "Marque": "Système U" + "name": "Super U ST PERE SUR LOIRE", + "brand": "Système U" }, "45640001": { - "Nom": "Super U SANDILLON", - "Marque": "Système U" + "name": "Super U SANDILLON", + "brand": "Système U" }, "45650001": { - "Nom": "Intermarché ST JEAN LE BLANC", - "Marque": "Intermarché" + "name": "Intermarché ST JEAN LE BLANC", + "brand": "Intermarché" }, "45680003": { - "Nom": "Intermarché DORDIVES", - "Marque": "Intermarché" + "name": "Intermarché DORDIVES", + "brand": "Intermarché" }, "45680004": { - "Nom": "Intermarché DORDIVES2", - "Marque": "Intermarché" + "name": "Intermarché DORDIVES2", + "brand": "Intermarché" }, "45700002": { - "Nom": "Intermarché VILLEMANDEUR", - "Marque": "Intermarché" + "name": "Intermarché VILLEMANDEUR", + "brand": "Intermarché" }, "45700004": { - "Nom": "Carrefour Contact villemandeur", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact villemandeur", + "brand": "Carrefour Contact" }, "45720002": { - "Nom": "SAS PASECAJE", - "Marque": "Intermarché" + "name": "SAS PASECAJE", + "brand": "Intermarché" }, "45750002": { - "Nom": "SAS JUMADIS", - "Marque": "Super U" + "name": "SAS JUMADIS", + "brand": "Super U" }, "45770001": { - "Nom": "Carrefour SARAN", - "Marque": "Carrefour" + "name": "Carrefour SARAN", + "brand": "Carrefour" }, "45770002": { - "Nom": "Intermarché SARAN", - "Marque": "Intermarché" + "name": "Intermarché SARAN", + "brand": "Intermarché" }, "45800001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "45800003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "45800007": { - "Nom": "ESSO EXPRESS SAINT JEAN DE BRAYE CHARBONNIERE", - "Marque": "Esso Express" + "name": "ESSO EXPRESS SAINT JEAN DE BRAYE CHARBONNIERE", + "brand": "Esso Express" }, "45800008": { - "Nom": "RELAIS DE L'ORME", - "Marque": "Total" + "name": "RELAIS DE L'ORME", + "brand": "Total" }, "46000001": { - "Nom": "Carrefour CAHORS", - "Marque": "Carrefour" + "name": "Carrefour CAHORS", + "brand": "Carrefour" }, "46000004": { - "Nom": "SARL GIB AUTO 46", - "Marque": "Total" + "name": "SARL GIB AUTO 46", + "brand": "Total" }, "46000006": { - "Nom": "Intermarché cahors terre rouge", - "Marque": "Intermarché" + "name": "Intermarché cahors terre rouge", + "brand": "Intermarché" }, "46000007": { - "Nom": "Intermarché CAHORS", - "Marque": "Intermarché" + "name": "Intermarché CAHORS", + "brand": "Intermarché" }, "46000008": { - "Nom": "NETTO LES MOUSQUETAIRES", - "Marque": "Netto" + "name": "NETTO LES MOUSQUETAIRES", + "brand": "Netto" }, "46000011": { - "Nom": "SAS SOGEROUEST", - "Marque": "Avia" + "name": "SAS SOGEROUEST", + "brand": "Avia" }, "46000012": { - "Nom": "RELAIS DU QUERCY", - "Marque": "Total" + "name": "RELAIS DU QUERCY", + "brand": "Total" }, "46090002": { - "Nom": "E.LECLERC - SAS Cahors Pradis", - "Marque": "Leclerc" + "name": "E.LECLERC - SAS Cahors Pradis", + "brand": "Leclerc" }, "46090003": { - "Nom": "SARL ALAIN TOCABEN AUTOMOBILES", - "Marque": "Total" + "name": "SARL ALAIN TOCABEN AUTOMOBILES", + "brand": "Total" }, "46090004": { - "Nom": "Intermarché SAS ESPERELOT", - "Marque": "Intermarché" + "name": "Intermarché SAS ESPERELOT", + "brand": "Intermarché" }, "46100002": { - "Nom": "SOCAPDIS", - "Marque": "Leclerc" + "name": "SOCAPDIS", + "brand": "Leclerc" }, "46100003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "46100004": { - "Nom": "STATION SERVICE DES CARMES", - "Marque": "Esso" + "name": "STATION SERVICE DES CARMES", + "brand": "Esso" }, "46100005": { - "Nom": "Intermarché FIGEAC", - "Marque": "Intermarché" + "name": "Intermarché FIGEAC", + "brand": "Intermarché" }, "46100006": { - "Nom": "SARL G.A SERVICES", - "Marque": "Total" + "name": "SARL G.A SERVICES", + "brand": "Total" }, "46110001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "46110003": { - "Nom": "STATION VAYRAC", - "Marque": "Indépendant sans enseigne" + "name": "STATION VAYRAC", + "brand": "Indépendant sans enseigne" }, "46110004": { - "Nom": "SPAR VAYRAC", - "Marque": "Supermarchés Spar" + "name": "SPAR VAYRAC", + "brand": "Supermarchés Spar" }, "46120001": { - "Nom": "SARL GERVAIS BOS", - "Marque": "Total" + "name": "SARL GERVAIS BOS", + "brand": "Total" }, "46130001": { - "Nom": "SEPVAL VALERIE", - "Marque": "Leclerc" + "name": "SEPVAL VALERIE", + "brand": "Leclerc" }, "46140002": { - "Nom": "SPAR LUZECH", - "Marque": "Supermarchés Spar" + "name": "SPAR LUZECH", + "brand": "Supermarchés Spar" }, "46140003": { - "Nom": "Carrefour Contact Parnac", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact Parnac", + "brand": "Carrefour Contact" }, "46150001": { - "Nom": "SPAR SUPERMARCHE", - "Marque": "Supermarchés Spar" + "name": "SPAR SUPERMARCHE", + "brand": "Supermarchés Spar" }, "46160001": { - "Nom": "SARL COUYBES", - "Marque": "Total" + "name": "SARL COUYBES", + "brand": "Total" }, "46160002": { - "Nom": "Intermarché CAJARC", - "Marque": "Intermarché Contact" + "name": "Intermarché CAJARC", + "brand": "Intermarché Contact" }, "46200001": { - "Nom": "SARL LE RELAIS DE BLAZY", - "Marque": "Total" + "name": "SARL LE RELAIS DE BLAZY", + "brand": "Total" }, "46200002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "46200003": { - "Nom": "E.Leclerc SOUILLAC", - "Marque": "Leclerc" + "name": "E.Leclerc SOUILLAC", + "brand": "Leclerc" }, "46220001": { - "Nom": "SARL ATG S46", - "Marque": "Total" + "name": "SARL ATG S46", + "brand": "Total" }, "46220002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "46220003": { - "Nom": "Intermarché PRAYSSAC", - "Marque": "Intermarché" + "name": "Intermarché PRAYSSAC", + "brand": "Intermarché" }, "46230005": { - "Nom": "Carrefour Lalbenque", - "Marque": "Carrefour Contact" + "name": "Carrefour Lalbenque", + "brand": "Carrefour Contact" }, "46240001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "46240003": { - "Nom": "Station Shell", - "Marque": "Shell" + "name": "Station Shell", + "brand": "Shell" }, "46270001": { - "Nom": "Intermarché BAGNAC SUR CELE", - "Marque": "Intermarché Contact" + "name": "Intermarché BAGNAC SUR CELE", + "brand": "Intermarché Contact" }, "46300003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "46300004": { - "Nom": "Intermarché GOURDON", - "Marque": "Intermarché" + "name": "Intermarché GOURDON", + "brand": "Intermarché" }, "46300005": { - "Nom": "CASINO", - "Marque": "Super Casino" + "name": "CASINO", + "brand": "Super Casino" }, "46300006": { - "Nom": "Garrigue", - "Marque": "Elan" + "name": "Garrigue", + "brand": "Elan" }, "46300007": { - "Nom": "ETS JEAN CLAUDE FAU", - "Marque": "Indépendant sans enseigne" + "name": "ETS JEAN CLAUDE FAU", + "brand": "Indépendant sans enseigne" }, "46300008": { - "Nom": "Espagnat", - "Marque": "Total" + "name": "Espagnat", + "brand": "Total" }, "46300009": { - "Nom": "ETS JEAN CLAUDE FAU LE VIGAN", - "Marque": "Indépendant sans enseigne" + "name": "ETS JEAN CLAUDE FAU LE VIGAN", + "brand": "Indépendant sans enseigne" }, "46350002": { - "Nom": "sas PAYRAC AUTO SERVICES", - "Marque": "Total" + "name": "sas PAYRAC AUTO SERVICES", + "brand": "Total" }, "46400001": { - "Nom": "SASU FBA", - "Marque": "Total" + "name": "SASU FBA", + "brand": "Total" }, "46400002": { - "Nom": "GRIMEN SA", - "Marque": "Leclerc" + "name": "GRIMEN SA", + "brand": "Leclerc" }, "46420001": { - "Nom": "INTER Contact LACAPELLE MARIVAL", - "Marque": "Intermarché Contact" + "name": "INTER Contact LACAPELLE MARIVAL", + "brand": "Intermarché Contact" }, "46500001": { - "Nom": "M.POUJADE COLOMB", - "Marque": "Total" + "name": "M.POUJADE COLOMB", + "brand": "Total" }, "46500002": { - "Nom": "Carrefour Contact GRAMAT", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact GRAMAT", + "brand": "Carrefour Contact" }, "46500003": { - "Nom": "E.LECLERC GRAMAT", - "Marque": "Leclerc" + "name": "E.LECLERC GRAMAT", + "brand": "Leclerc" }, "46600002": { - "Nom": "Intermarché MARTEL", - "Marque": "Intermarché" + "name": "Intermarché MARTEL", + "brand": "Intermarché" }, "46600003": { - "Nom": "STATION DU HAUT QUERCY", - "Marque": "Indépendant sans enseigne" + "name": "STATION DU HAUT QUERCY", + "brand": "Indépendant sans enseigne" }, "46600004": { - "Nom": "AGIP A 20 AIRE DE PECH MONTAT", - "Marque": "Agip" + "name": "AGIP A 20 AIRE DE PECH MONTAT", + "brand": "Agip" }, "46700001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "46800001": { - "Nom": "SARL AUTO TECHNI", - "Marque": "Total" + "name": "SARL AUTO TECHNI", + "brand": "Total" }, "46800002": { - "Nom": "Carrefour montcuq", - "Marque": "Carrefour Contact" + "name": "Carrefour montcuq", + "brand": "Carrefour Contact" }, "47000001": { - "Nom": "BUFFARD yannick", - "Marque": "Total" + "name": "BUFFARD yannick", + "brand": "Total" }, "47000003": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "47000005": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "47000007": { - "Nom": "NETTO", - "Marque": "Netto" + "name": "NETTO", + "brand": "Netto" }, "47110002": { - "Nom": "SAS MASCARIN", - "Marque": "Elan" + "name": "SAS MASCARIN", + "brand": "Elan" }, "47120001": { - "Nom": "SARL ORGANEAU", - "Marque": "Carrefour Contact" + "name": "SARL ORGANEAU", + "brand": "Carrefour Contact" }, "47120002": { - "Nom": "LE RELAIS DES DUCS", - "Marque": "Indépendant sans enseigne" + "name": "LE RELAIS DES DUCS", + "brand": "Indépendant sans enseigne" }, "47130001": { - "Nom": "Intermarché PORT STE MARIE", - "Marque": "Intermarché" + "name": "Intermarché PORT STE MARIE", + "brand": "Intermarché" }, "47140001": { - "Nom": "Intermarché SAINTE LIVRADE", - "Marque": "Intermarché" + "name": "Intermarché SAINTE LIVRADE", + "brand": "Intermarché" }, "47140002": { - "Nom": "Intermarché ST SYLVESTRE SUR LOT", - "Marque": "Intermarché" + "name": "Intermarché ST SYLVESTRE SUR LOT", + "brand": "Intermarché" }, "47150002": { - "Nom": "Casino Carburants", - "Marque": "Casino" + "name": "Casino Carburants", + "brand": "Casino" }, "47160001": { - "Nom": "sas du canal", - "Marque": "Elan" + "name": "sas du canal", + "brand": "Elan" }, "47180002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "47190001": { - "Nom": "Intermarché AIGUILLON", - "Marque": "Intermarché" + "name": "Intermarché AIGUILLON", + "brand": "Intermarché" }, "47200001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "47200002": { - "Nom": "SARL G.R.G.", - "Marque": "Total" + "name": "SARL G.R.G.", + "brand": "Total" }, "47200003": { - "Nom": "SARL JACQUES", - "Marque": "Total" + "name": "SARL JACQUES", + "brand": "Total" }, "47200004": { - "Nom": "MARTIN DISTRIBUT", - "Marque": "Total" + "name": "MARTIN DISTRIBUT", + "brand": "Total" }, "47200005": { - "Nom": "JEANDIS", - "Marque": "Leclerc" + "name": "JEANDIS", + "brand": "Leclerc" }, "47200008": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "47200011": { - "Nom": "STATION ELAN", - "Marque": "Elan" + "name": "STATION ELAN", + "brand": "Elan" }, "47200012": { - "Nom": "SAS NOZEDIS", - "Marque": "Intermarché" + "name": "SAS NOZEDIS", + "brand": "Intermarché" }, "47210001": { - "Nom": "Intermarché VILLEREAL", - "Marque": "Intermarché" + "name": "Intermarché VILLEREAL", + "brand": "Intermarché" }, "47210002": { - "Nom": "SARL VAL FLEURI", - "Marque": "Indépendant sans enseigne" + "name": "SARL VAL FLEURI", + "brand": "Indépendant sans enseigne" }, "47220002": { - "Nom": "Sarl valf fleuri fals", - "Marque": "Indépendant sans enseigne" + "name": "Sarl valf fleuri fals", + "brand": "Indépendant sans enseigne" }, "47220003": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "47230001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "47240001": { - "Nom": "SOCCAST", - "Marque": "Leclerc" + "name": "SOCCAST", + "brand": "Leclerc" }, "47240002": { - "Nom": "Intermarché AGEN - BON ENCONTRE", - "Marque": "Intermarché" + "name": "Intermarché AGEN - BON ENCONTRE", + "brand": "Intermarché" }, "47290002": { - "Nom": "GARAGE DU COLLEGE", - "Marque": "Total" + "name": "GARAGE DU COLLEGE", + "brand": "Total" }, "47300001": { - "Nom": "Auchan Villeneuve sur lot", - "Marque": "Auchan" + "name": "Auchan Villeneuve sur lot", + "brand": "Auchan" }, "47300002": { - "Nom": "SARL STATION PEJEAN", - "Marque": "Total Access" + "name": "SARL STATION PEJEAN", + "brand": "Total Access" }, "47300003": { - "Nom": "VILLENEUVE DISTRIBUTION", - "Marque": "Leclerc" + "name": "VILLENEUVE DISTRIBUTION", + "brand": "Leclerc" }, "47300004": { - "Nom": "RELAIS DE SOUBIROUS STATION CAZASSUS", - "Marque": "Fina" + "name": "RELAIS DE SOUBIROUS STATION CAZASSUS", + "brand": "Fina" }, "47300006": { - "Nom": "Intermarché VILLENEUVE S/LOT", - "Marque": "Intermarché" + "name": "Intermarché VILLENEUVE S/LOT", + "brand": "Intermarché" }, "47310003": { - "Nom": "GARAGE SCIE FILS", - "Marque": "Elan" + "name": "GARAGE SCIE FILS", + "brand": "Elan" }, "47310004": { - "Nom": "Intermarché SUPER", - "Marque": "Intermarché" + "name": "Intermarché SUPER", + "brand": "Intermarché" }, "47310005": { - "Nom": "Intermarché LAPLUME", - "Marque": "Intermarché Contact" + "name": "Intermarché LAPLUME", + "brand": "Intermarché Contact" }, "47310006": { - "Nom": "RELAIS AGEN PORTE D'AQUITAINE", - "Marque": "Total" + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "brand": "Total" }, "47320002": { - "Nom": "RUZZICA MARIE PAULE", - "Marque": "Elan" + "name": "RUZZICA MARIE PAULE", + "brand": "Elan" }, "47320003": { - "Nom": "Carrefour Contact - SARL RECAMIL", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact - SARL RECAMIL", + "brand": "Carrefour Contact" }, "47320004": { - "Nom": "RELAIS DU PESQUIER", - "Marque": "Total" + "name": "RELAIS DU PESQUIER", + "brand": "Total" }, "47330001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "47340001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "47360001": { - "Nom": "SARL VAL FLEURI", - "Marque": "Indépendant sans enseigne" + "name": "SARL VAL FLEURI", + "brand": "Indépendant sans enseigne" }, "47390001": { - "Nom": "STATION ELAN", - "Marque": "Elan" + "name": "STATION ELAN", + "brand": "Elan" }, "47390002": { - "Nom": "Carrefour Contact LAYRAC", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact LAYRAC", + "brand": "Carrefour Contact" }, "47400002": { - "Nom": "SAINT PIERRE DISTRIBUTION", - "Marque": "Leclerc" + "name": "SAINT PIERRE DISTRIBUTION", + "brand": "Leclerc" }, "47400003": { - "Nom": "Intermarché TONNEINS", - "Marque": "Intermarché" + "name": "Intermarché TONNEINS", + "brand": "Intermarché" }, "47400004": { - "Nom": "RELAIS DU STADE", - "Marque": "Total Access" + "name": "RELAIS DU STADE", + "brand": "Total Access" }, "47410000": { - "Nom": "SARL VAL FLEURI LAUZUN", - "Marque": "Aire C" + "name": "SARL VAL FLEURI LAUZUN", + "brand": "Aire C" }, "47430001": { - "Nom": "AIRE DU MAS D'AGENAIS", - "Marque": "CARAUTOROUTES" + "name": "AIRE DU MAS D'AGENAIS", + "brand": "CARAUTOROUTES" }, "47440001": { - "Nom": "GARAGE JEROME RIEUCAUD", - "Marque": "Total" + "name": "GARAGE JEROME RIEUCAUD", + "brand": "Total" }, "47450002": { - "Nom": "Intermarché - SAS LAEYOMAT", - "Marque": "Intermarché" + "name": "Intermarché - SAS LAEYOMAT", + "brand": "Intermarché" }, "47450003": { - "Nom": "STATION Total", - "Marque": "Total" + "name": "STATION Total", + "brand": "Total" }, "47480002": { - "Nom": "Intermarché PONT DU CASSE", - "Marque": "Intermarché" + "name": "Intermarché PONT DU CASSE", + "brand": "Intermarché" }, "47480003": { - "Nom": "station Total CAPDEVILLE", - "Marque": "Total" + "name": "station Total CAPDEVILLE", + "brand": "Total" }, "47500002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "47500003": { - "Nom": "E.LECLERC MONTAYRAL", - "Marque": "Leclerc" + "name": "E.LECLERC MONTAYRAL", + "brand": "Leclerc" }, "47500005": { - "Nom": "Intermarché FUMEL", - "Marque": "Intermarché" + "name": "Intermarché FUMEL", + "brand": "Intermarché" }, "47500007": { - "Nom": "BRICOFIOUL", - "Marque": "Bricomarché" + "name": "BRICOFIOUL", + "brand": "Bricomarché" }, "47510001": { - "Nom": "GGE CAOULET SARL", - "Marque": "Total" + "name": "GGE CAOULET SARL", + "brand": "Total" }, "47510002": { - "Nom": "Intermarché FOULAYRONNES", - "Marque": "Intermarché" + "name": "Intermarché FOULAYRONNES", + "brand": "Intermarché" }, "47520001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "47520003": { - "Nom": "Intermarché LE PASSAGE", - "Marque": "Intermarché" + "name": "Intermarché LE PASSAGE", + "brand": "Intermarché" }, "47520004": { - "Nom": "RELAIS PASSAGE D'AGEN", - "Marque": "Total Access" + "name": "RELAIS PASSAGE D'AGEN", + "brand": "Total Access" }, "47550001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "47550007": { - "Nom": "RELAIS BON ENCONTRE", - "Marque": "Total Access" + "name": "RELAIS BON ENCONTRE", + "brand": "Total Access" }, "47550009": { - "Nom": "SARL ALGUI", - "Marque": "Esso" + "name": "SARL ALGUI", + "brand": "Esso" }, "47600003": { - "Nom": "Intermarché NERAC", - "Marque": "Intermarché" + "name": "Intermarché NERAC", + "brand": "Intermarché" }, "47600004": { - "Nom": "LEADER PRICE", - "Marque": "Leader Price" + "name": "LEADER PRICE", + "brand": "Leader Price" }, "47600005": { - "Nom": "SAS MDV SERVICES", - "Marque": "Total" + "name": "SAS MDV SERVICES", + "brand": "Total" }, "47700001": { - "Nom": "CASTELDIS", - "Marque": "Leclerc" + "name": "CASTELDIS", + "brand": "Leclerc" }, "47700002": { - "Nom": "Intermarché CASTELJALOUX", - "Marque": "Intermarché" + "name": "Intermarché CASTELJALOUX", + "brand": "Intermarché" }, "47800002": { - "Nom": "Intermarché ST PARDOUX ISAAC", - "Marque": "Intermarché" + "name": "Intermarché ST PARDOUX ISAAC", + "brand": "Intermarché" }, "47800003": { - "Nom": "NETTO SA ENILAC", - "Marque": "Netto" + "name": "NETTO SA ENILAC", + "brand": "Netto" }, "47800004": { - "Nom": "ETS Castagnier", - "Marque": "Elan" + "name": "ETS Castagnier", + "brand": "Elan" }, "48000001": { - "Nom": "Hyper U", - "Marque": "Système U" + "name": "Hyper U", + "brand": "Système U" }, "48000005": { - "Nom": "RELAIS MENDE LES CAUSSES", - "Marque": "Total Access" + "name": "RELAIS MENDE LES CAUSSES", + "brand": "Total Access" }, "48000006": { - "Nom": "Boissonnade Combustibles", - "Marque": "Boissonnade" + "name": "Boissonnade Combustibles", + "brand": "Boissonnade" }, "48100001": { - "Nom": "SARL LE RELAIS DU GEVAUDAN", - "Marque": "Total" + "name": "SARL LE RELAIS DU GEVAUDAN", + "brand": "Total" }, "48100002": { - "Nom": "Pagès", - "Marque": "Avia" + "name": "Pagès", + "brand": "Avia" }, "48100003": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour MARKET" + "name": "Carrefour MARKET", + "brand": "Carrefour MARKET" }, "48100004": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "48100006": { - "Nom": "STATION DAUDE", - "Marque": "Indépendant sans enseigne" + "name": "STATION DAUDE", + "brand": "Indépendant sans enseigne" }, "48130001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "48140001": { - "Nom": "Carrefour EXPRESS LE MALZIEU VILLE", - "Marque": "Carrefour Express" + "name": "Carrefour EXPRESS LE MALZIEU VILLE", + "brand": "Carrefour Express" }, "48150002": { - "Nom": "Garage Frédéric GRAVIL", - "Marque": "Avia" + "name": "Garage Frédéric GRAVIL", + "brand": "Avia" }, "48170001": { - "Nom": "SARL NEGRE STATION Total", - "Marque": "Total" + "name": "SARL NEGRE STATION Total", + "brand": "Total" }, "48190001": { - "Nom": "Carrefour EXPRESS", - "Marque": "Carrefour Express" + "name": "Carrefour EXPRESS", + "brand": "Carrefour Express" }, "48200001": { - "Nom": "SARL HERMET", - "Marque": "Total" + "name": "SARL HERMET", + "brand": "Total" }, "48200003": { - "Nom": "SARL AUTO SERVICE D'APCHER STATION AVIA", - "Marque": "Avia" + "name": "SARL AUTO SERVICE D'APCHER STATION AVIA", + "brand": "Avia" }, "48200004": { - "Nom": "Intermarché ST CHELY D'APCHER", - "Marque": "Intermarché" + "name": "Intermarché ST CHELY D'APCHER", + "brand": "Intermarché" }, "48200005": { - "Nom": "Super U saint chely d'apcher", - "Marque": "Système U" + "name": "Super U saint chely d'apcher", + "brand": "Système U" }, "48200006": { - "Nom": "BP AIRE DE LA LOZERE", - "Marque": "BP" + "name": "BP AIRE DE LA LOZERE", + "brand": "BP" }, "48200007": { - "Nom": "STATION BP LA GARDE", - "Marque": "BP" + "name": "STATION BP LA GARDE", + "brand": "BP" }, "48230001": { - "Nom": "SARL DAUDE", - "Marque": "Indépendant sans enseigne" + "name": "SARL DAUDE", + "brand": "Indépendant sans enseigne" }, "48300001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "48300003": { - "Nom": "Intermarché LANGOGNE", - "Marque": "Intermarché" + "name": "Intermarché LANGOGNE", + "brand": "Intermarché" }, "48300006": { - "Nom": "RELAIS LANGOUYROU", - "Marque": "Total Access" + "name": "RELAIS LANGOUYROU", + "brand": "Total Access" }, "48310001": { - "Nom": "SARL ETS ROSSIGNOL CARBURANTS", - "Marque": "Indépendant" + "name": "SARL ETS ROSSIGNOL CARBURANTS", + "brand": "Indépendant" }, "48400003": { - "Nom": "EURL FLORAC AUTO", - "Marque": "Avia" + "name": "EURL FLORAC AUTO", + "brand": "Avia" }, "48400004": { - "Nom": "Ets Plantier Carburants", - "Marque": "WYNNS" + "name": "Ets Plantier Carburants", + "brand": "WYNNS" }, "48400005": { - "Nom": "Total", - "Marque": "Total" + "name": "Total", + "brand": "Total" }, "48400006": { - "Nom": "Intermarché Florac", - "Marque": "Intermarché" + "name": "Intermarché Florac", + "brand": "Intermarché" }, "48500001": { - "Nom": "Intermarché LA CANOURGUE", - "Marque": "Intermarché" + "name": "Intermarché LA CANOURGUE", + "brand": "Intermarché" }, "48500002": { - "Nom": "SARL RAJA", - "Marque": "Indépendant sans enseigne" + "name": "SARL RAJA", + "brand": "Indépendant sans enseigne" }, "48600002": { - "Nom": "ETS PIGNOL SARL", - "Marque": "Indépendant sans enseigne" + "name": "ETS PIGNOL SARL", + "brand": "Indépendant sans enseigne" }, "48600003": { - "Nom": "ETS PIGNOL SARL", - "Marque": "Indépendant sans enseigne" + "name": "ETS PIGNOL SARL", + "brand": "Indépendant sans enseigne" }, "48700001": { - "Nom": "DELOR Yves", - "Marque": "Indépendant sans enseigne" + "name": "DELOR Yves", + "brand": "Indépendant sans enseigne" }, "48800001": { - "Nom": "STATION LA REGORDANE", - "Marque": "Avia" + "name": "STATION LA REGORDANE", + "brand": "Avia" }, "48800002": { - "Nom": "GARAGE DE LA REGORDANE", - "Marque": "Avia" + "name": "GARAGE DE LA REGORDANE", + "brand": "Avia" }, "49000001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "49000002": { - "Nom": "Carrefour ANGERS GRAND MAINE", - "Marque": "Carrefour" + "name": "Carrefour ANGERS GRAND MAINE", + "brand": "Carrefour" }, "49000004": { - "Nom": "SAS CAILLEAU PNEUS", - "Marque": "Total" + "name": "SAS CAILLEAU PNEUS", + "brand": "Total" }, "49000009": { - "Nom": "Intermarché ANGERS", - "Marque": "Intermarché" + "name": "Intermarché ANGERS", + "brand": "Intermarché" }, "49000011": { - "Nom": "Intermarché ZAC MOLLIÈRE", - "Marque": "Intermarché" + "name": "Intermarché ZAC MOLLIÈRE", + "brand": "Intermarché" }, "49000012": { - "Nom": "RELAIS ANCIENNES PROVINCES", - "Marque": "Total Access" + "name": "RELAIS ANCIENNES PROVINCES", + "brand": "Total Access" }, "49000013": { - "Nom": "RELAIS BAUMETTES A", - "Marque": "Total Access" + "name": "RELAIS BAUMETTES A", + "brand": "Total Access" }, "49000014": { - "Nom": "RELAIS BAUMETTES B", - "Marque": "Total Access" + "name": "RELAIS BAUMETTES B", + "brand": "Total Access" }, "49003001": { - "Nom": "Carrefour ANGERS SAINT SERGE", - "Marque": "Carrefour" + "name": "Carrefour ANGERS SAINT SERGE", + "brand": "Carrefour" }, "49070005": { - "Nom": "Super U BEAUCOUZE", - "Marque": "Système U" + "name": "Super U BEAUCOUZE", + "brand": "Système U" }, "49070006": { - "Nom": "E.LECLERC St Jean de Linières", - "Marque": "Leclerc" + "name": "E.LECLERC St Jean de Linières", + "brand": "Leclerc" }, "49100002": { - "Nom": "Centre E.LECLERC ANGERS GOURONNIERES", - "Marque": "Leclerc" + "name": "Centre E.LECLERC ANGERS GOURONNIERES", + "brand": "Leclerc" }, "49100003": { - "Nom": "RELAIS DE LA PINTERIE", - "Marque": "Total" + "name": "RELAIS DE LA PINTERIE", + "brand": "Total" }, "49110003": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "49112001": { - "Nom": "Netto", - "Marque": "Netto" + "name": "Netto", + "brand": "Netto" }, "49120001": { - "Nom": "Super U CHEMILLE", - "Marque": "Système U" + "name": "Super U CHEMILLE", + "brand": "Système U" }, "49120004": { - "Nom": "SAS CHEMILLE", - "Marque": "Leclerc" + "name": "SAS CHEMILLE", + "brand": "Leclerc" }, "49122001": { - "Nom": "Intermarché LE MAY SUR EVRE", - "Marque": "Intermarché" + "name": "Intermarché LE MAY SUR EVRE", + "brand": "Intermarché" }, "49123001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "49124001": { - "Nom": "Super U ST BARTHELEMY BANCHAIS", - "Marque": "Système U" + "name": "Super U ST BARTHELEMY BANCHAIS", + "brand": "Système U" }, "49124003": { - "Nom": "Super U Coeur de Ville St Barth", - "Marque": "Système U" + "name": "Super U Coeur de Ville St Barth", + "brand": "Système U" }, "49125001": { - "Nom": "Super U TIERCE", - "Marque": "Système U" + "name": "Super U TIERCE", + "brand": "Système U" }, "49130004": { - "Nom": "Intermarché LES PONTS DE CE", - "Marque": "Intermarché" + "name": "Intermarché LES PONTS DE CE", + "brand": "Intermarché" }, "49140001": { - "Nom": "Super U CORZE", - "Marque": "Système U" + "name": "Super U CORZE", + "brand": "Système U" }, "49140003": { - "Nom": "Carrefour Contact SOUCELLES", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact SOUCELLES", + "brand": "Carrefour Contact" }, "49150001": { - "Nom": "Super U BAUGE", - "Marque": "Système U" + "name": "Super U BAUGE", + "brand": "Système U" }, "49150002": { - "Nom": "SARL AGENCE AUTOMOBILE DU COUASNON STATION Total", - "Marque": "Total" + "name": "SARL AGENCE AUTOMOBILE DU COUASNON STATION Total", + "brand": "Total" }, "49160001": { - "Nom": "Super U LONGUE", - "Marque": "Système U" + "name": "Super U LONGUE", + "brand": "Système U" }, "49160003": { - "Nom": "SARL ROUX", - "Marque": "Shell" + "name": "SARL ROUX", + "brand": "Shell" }, "49160004": { - "Nom": "SARL ROUX", - "Marque": "Shell" + "name": "SARL ROUX", + "brand": "Shell" }, "49170002": { - "Nom": "SUPER U SAINT GEORGES SUR LOIRE", - "Marque": "Système U" + "name": "SUPER U SAINT GEORGES SUR LOIRE", + "brand": "Système U" }, "49220001": { - "Nom": "Super U LE LION D'ANGERS", - "Marque": "Système U" + "name": "Super U LE LION D'ANGERS", + "brand": "Système U" }, "49230002": { - "Nom": "Carrefour Contact montfaucon", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact montfaucon", + "brand": "Carrefour Contact" }, "49240001": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "49240002": { - "Nom": "AUCHAN AVRILLE", - "Marque": "Auchan" + "name": "AUCHAN AVRILLE", + "brand": "Auchan" }, "49250001": { - "Nom": "Intermarché BEAUFORT EN VALLEE", - "Marque": "Intermarché" + "name": "Intermarché BEAUFORT EN VALLEE", + "brand": "Intermarché" }, "49260001": { - "Nom": "Super U MONTREUIL BELLAY", - "Marque": "Système U" + "name": "Super U MONTREUIL BELLAY", + "brand": "Système U" }, "49270001": { - "Nom": "EURL GUILLET", - "Marque": "Avia" + "name": "EURL GUILLET", + "brand": "Avia" }, "49280001": { - "Nom": "SARL SIBAUTO", - "Marque": "Total" + "name": "SARL SIBAUTO", + "brand": "Total" }, "49280003": { - "Nom": "SUPERMARCHE G20", - "Marque": "G 20" + "name": "SUPERMARCHE G20", + "brand": "G 20" }, "49290001": { - "Nom": "Super U CHALONNES SUR LOIRE", - "Marque": "Système U" + "name": "Super U CHALONNES SUR LOIRE", + "brand": "Système U" }, "49290002": { - "Nom": "Intermarché CHALONNES SUR LOIRE", - "Marque": "Intermarché" + "name": "Intermarché CHALONNES SUR LOIRE", + "brand": "Intermarché" }, "49300001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "49300007": { - "Nom": "Carrefour CHOLET", - "Marque": "Carrefour" + "name": "Carrefour CHOLET", + "brand": "Carrefour" }, "49300009": { - "Nom": "Intermarché CHOLET", - "Marque": "Intermarché" + "name": "Intermarché CHOLET", + "brand": "Intermarché" }, "49300010": { - "Nom": "SARL BARON FIOUL", - "Marque": "Indépendant sans enseigne" + "name": "SARL BARON FIOUL", + "brand": "Indépendant sans enseigne" }, "49300014": { - "Nom": "ESSO EXPRESS CHOLET FRANCIS BOUET", - "Marque": "Esso Express" + "name": "ESSO EXPRESS CHOLET FRANCIS BOUET", + "brand": "Esso Express" }, "49300015": { - "Nom": "RELAIS BOIS GROLEAU", - "Marque": "Total" + "name": "RELAIS BOIS GROLEAU", + "brand": "Total" }, "49300016": { - "Nom": "RELAIS CHOLET TOURAINE", - "Marque": "Total Access" + "name": "RELAIS CHOLET TOURAINE", + "brand": "Total Access" }, "49300017": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "49300018": { - "Nom": "LECLERC CHOLET SUD", - "Marque": "Leclerc" + "name": "LECLERC CHOLET SUD", + "brand": "Leclerc" }, "49306001": { - "Nom": "LECLERC CHOLET", - "Marque": "Leclerc" + "name": "LECLERC CHOLET", + "brand": "Leclerc" }, "49310001": { - "Nom": "Super U VIHIERS COURTILS", - "Marque": "Système U" + "name": "Super U VIHIERS COURTILS", + "brand": "Système U" }, "49320003": { - "Nom": "SAS BRISSAC DISTRIBUTION", - "Marque": "Leclerc" + "name": "SAS BRISSAC DISTRIBUTION", + "brand": "Leclerc" }, "49330001": { - "Nom": "Super U CHATEAUNEUF SUR SARTHE", - "Marque": "Système U" + "name": "Super U CHATEAUNEUF SUR SARTHE", + "brand": "Système U" }, "49340001": { - "Nom": "AGIP TREMENTINES A87", - "Marque": "Agip" + "name": "AGIP TREMENTINES A87", + "brand": "Agip" }, "49350001": { - "Nom": "Super U GENNES", - "Marque": "Système U" + "name": "Super U GENNES", + "brand": "Système U" }, "49360001": { - "Nom": "EIRAS", - "Marque": "Indépendant sans enseigne" + "name": "EIRAS", + "brand": "Indépendant sans enseigne" }, "49360003": { - "Nom": "SUPER U MAULEVRIER", - "Marque": "Système U" + "name": "SUPER U MAULEVRIER", + "brand": "Système U" }, "49370001": { - "Nom": "Super U BECON LES GRANITS", - "Marque": "Système U" + "name": "Super U BECON LES GRANITS", + "brand": "Système U" }, "49370002": { - "Nom": "Intermarché LE LOUROUX BECONNAIS", - "Marque": "Intermarché" + "name": "Intermarché LE LOUROUX BECONNAIS", + "brand": "Intermarché" }, "49380001": { - "Nom": "Super U THOUARCE", - "Marque": "Système U" + "name": "Super U THOUARCE", + "brand": "Système U" }, "49390001": { - "Nom": "Super U VERNOIL LE FOURRIER", - "Marque": "Système U" + "name": "Super U VERNOIL LE FOURRIER", + "brand": "Système U" }, "49400004": { - "Nom": "Intermarché SAUMUR", - "Marque": "Intermarché" + "name": "Intermarché SAUMUR", + "brand": "Intermarché" }, "49400006": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "49400007": { - "Nom": "RELAIS DE NANTILLY", - "Marque": "Total Access" + "name": "RELAIS DE NANTILLY", + "brand": "Total Access" }, "49410002": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "49412001": { - "Nom": "E.LECLERC SAUMUR", - "Marque": "Leclerc" + "name": "E.LECLERC SAUMUR", + "brand": "Leclerc" }, "49420001": { - "Nom": "SUPER U POUANCE", - "Marque": "Système U" + "name": "SUPER U POUANCE", + "brand": "Système U" }, "49420002": { - "Nom": "SARL GARAGE HOUTIN", - "Marque": "Total" + "name": "SARL GARAGE HOUTIN", + "brand": "Total" }, "49430001": { - "Nom": "Super U DURTAL", - "Marque": "Système U" + "name": "Super U DURTAL", + "brand": "Système U" }, "49440001": { - "Nom": "Super U CANDE", - "Marque": "Système U" + "name": "Super U CANDE", + "brand": "Système U" }, "49450001": { - "Nom": "Super U ST MACAIRE EN MAUGES", - "Marque": "Système U" + "name": "Super U ST MACAIRE EN MAUGES", + "brand": "Système U" }, "49450003": { - "Nom": "Intermarché ST ANDRE DE LA MARCH", - "Marque": "Intermarché" + "name": "Intermarché ST ANDRE DE LA MARCH", + "brand": "Intermarché" }, "49450005": { - "Nom": "Intermarche contact", - "Marque": "Intermarché Contact" + "name": "Intermarche contact", + "brand": "Intermarché Contact" }, "49450006": { - "Nom": "RLCSV", - "Marque": "Total" + "name": "RLCSV", + "brand": "Total" }, "49460001": { - "Nom": "Intermarché ECUEILLE", - "Marque": "Intermarché" + "name": "Intermarché ECUEILLE", + "brand": "Intermarché" }, "49480001": { - "Nom": "Super U ST SYLVAIN D'ANJOU", - "Marque": "Système U" + "name": "Super U ST SYLVAIN D'ANJOU", + "brand": "Système U" }, "49480005": { - "Nom": "BP A11 AIRE DES PORTES D'ANGERS SUD", - "Marque": "BP" + "name": "BP A11 AIRE DES PORTES D'ANGERS SUD", + "brand": "BP" }, "49480007": { - "Nom": "SARL N.L.S", - "Marque": "Avia" + "name": "SARL N.L.S", + "brand": "Avia" }, "49490001": { - "Nom": "Intermarché NOYANT", - "Marque": "Intermarché" + "name": "Intermarché NOYANT", + "brand": "Intermarché" }, "49500001": { - "Nom": "Super U Segré", - "Marque": "Système U" + "name": "Super U Segré", + "brand": "Système U" }, "49500002": { - "Nom": "SEGRE-DIS", - "Marque": "Leclerc" + "name": "SEGRE-DIS", + "brand": "Leclerc" }, "49510001": { - "Nom": "LEADER - PRICE", - "Marque": "LEADER-PRICE" + "name": "LEADER - PRICE", + "brand": "LEADER-PRICE" }, "49530001": { - "Nom": "STATION ELAN BAR de la Vallee", - "Marque": "Elan" + "name": "STATION ELAN BAR de la Vallee", + "brand": "Elan" }, "49540001": { - "Nom": "Carrefour Contact", - "Marque": "Indépendant sans enseigne" + "name": "Carrefour Contact", + "brand": "Indépendant sans enseigne" }, "49570001": { - "Nom": "ERIC BAUDOUIN", - "Marque": "Total" + "name": "ERIC BAUDOUIN", + "brand": "Total" }, "49600001": { - "Nom": "Super U BEAUPREAU", - "Marque": "Système U" + "name": "Super U BEAUPREAU", + "brand": "Système U" }, "49600003": { - "Nom": "SARL AGENCE AUTOMOBILES STE GENEVIEVE", - "Marque": "Total" + "name": "SARL AGENCE AUTOMOBILES STE GENEVIEVE", + "brand": "Total" }, "49600004": { - "Nom": "Intermarché BEAUPREAU", - "Marque": "Intermarché" + "name": "Intermarché BEAUPREAU", + "brand": "Intermarché" }, "49610001": { - "Nom": "Hyper U MURS ERIGNE", - "Marque": "Système U" + "name": "Hyper U MURS ERIGNE", + "brand": "Système U" }, "49620001": { - "Nom": "Super U LA POMMERAYE", - "Marque": "Système U" + "name": "Super U LA POMMERAYE", + "brand": "Système U" }, "49630003": { - "Nom": "RS Automobiles", - "Marque": "Total" + "name": "RS Automobiles", + "brand": "Total" }, "49630004": { - "Nom": "Super U MAZE", - "Marque": "Système U" + "name": "Super U MAZE", + "brand": "Système U" }, "49630005": { - "Nom": "STATION SERVICE Carrefour Contact CORNE", - "Marque": "Carrefour Contact" + "name": "STATION SERVICE Carrefour Contact CORNE", + "brand": "Carrefour Contact" }, "49650001": { - "Nom": "Carrefour ALLONNES 49650", - "Marque": "Carrefour Contact" + "name": "Carrefour ALLONNES 49650", + "brand": "Carrefour Contact" }, "49700001": { - "Nom": "Super U DOUE LA FONTAINE", - "Marque": "Système U" + "name": "Super U DOUE LA FONTAINE", + "brand": "Système U" }, "49700002": { - "Nom": "MR SCHAEFER NORBERT", - "Marque": "Total" + "name": "MR SCHAEFER NORBERT", + "brand": "Total" }, "49700003": { - "Nom": "Intermarché DOUE LA FONTAINE", - "Marque": "Intermarché" + "name": "Intermarché DOUE LA FONTAINE", + "brand": "Intermarché" }, "49800002": { - "Nom": "Station Super U ANDARD", - "Marque": "Système U" + "name": "Station Super U ANDARD", + "brand": "Système U" }, "49800003": { - "Nom": "SUPER U LA PYRAMIDE", - "Marque": "Système U" + "name": "SUPER U LA PYRAMIDE", + "brand": "Système U" }, "49800006": { - "Nom": "Trélazé La Quantinière", - "Marque": "Système U" + "name": "Trélazé La Quantinière", + "brand": "Système U" }, "50000001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "50000002": { - "Nom": "SARL MACON", - "Marque": "Total" + "name": "SARL MACON", + "brand": "Total" }, "50000004": { - "Nom": "Intermarché SAINT-LO", - "Marque": "Intermarché" + "name": "Intermarché SAINT-LO", + "brand": "Intermarché" }, "50000005": { - "Nom": "LECLERC", - "Marque": "Leclerc" + "name": "LECLERC", + "brand": "Leclerc" }, "50000006": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "50000007": { - "Nom": "STATION BAZIN BARITEAUD", - "Marque": "BAZIN BARITAUD" + "name": "STATION BAZIN BARITEAUD", + "brand": "BAZIN BARITAUD" }, "50000008": { - "Nom": "ESSO NEE COMBUSTIBLES", - "Marque": "Esso" + "name": "ESSO NEE COMBUSTIBLES", + "brand": "Esso" }, "50100003": { - "Nom": "Intermarché OCTEVILLE", - "Marque": "Intermarché" + "name": "Intermarché OCTEVILLE", + "brand": "Intermarché" }, "50100007": { - "Nom": "RELAIS CHERBOURG LES BASSINS", - "Marque": "Total Access" + "name": "RELAIS CHERBOURG LES BASSINS", + "brand": "Total Access" }, "50110001": { - "Nom": "Total BESTDRIVE", - "Marque": "Total" + "name": "Total BESTDRIVE", + "brand": "Total" }, "50110002": { - "Nom": "ESSO PORT DE CHERBOURG", - "Marque": "Esso Express" + "name": "ESSO PORT DE CHERBOURG", + "brand": "Esso Express" }, "50110003": { - "Nom": "TOURLAVILLE-DIS", - "Marque": "Leclerc" + "name": "TOURLAVILLE-DIS", + "brand": "Leclerc" }, "50110004": { - "Nom": "Intermarché TOURLAVILLE", - "Marque": "Intermarché" + "name": "Intermarché TOURLAVILLE", + "brand": "Intermarché" }, "50110005": { - "Nom": "MANCHE HYDROCARBURES", - "Marque": "Indépendant sans enseigne" + "name": "MANCHE HYDROCARBURES", + "brand": "Indépendant sans enseigne" }, "50120003": { - "Nom": "SARL LEFRANCOIS", - "Marque": "Total" + "name": "SARL LEFRANCOIS", + "brand": "Total" }, "50130001": { - "Nom": "ESSO OCTEVILLE", - "Marque": "Esso Express" + "name": "ESSO OCTEVILLE", + "brand": "Esso Express" }, "50140001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "50140002": { - "Nom": "DUBOIS-HELLEUX", - "Marque": "Total" + "name": "DUBOIS-HELLEUX", + "brand": "Total" }, "50150002": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "50160001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "50160003": { - "Nom": "Garage Lemonnier", - "Marque": "Elan" + "name": "Garage Lemonnier", + "brand": "Elan" }, "50160004": { - "Nom": "Station A84 ESSO", - "Marque": "Esso" + "name": "Station A84 ESSO", + "brand": "Esso" }, "50170001": { - "Nom": "MME LEVEQUE", - "Marque": "Total" + "name": "MME LEVEQUE", + "brand": "Total" }, "50170002": { - "Nom": "MME JEANNE", - "Marque": "Total" + "name": "MME JEANNE", + "brand": "Total" }, "50170005": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "50180001": { - "Nom": "AGNEAUX-DISTRIBUTION", - "Marque": "Leclerc" + "name": "AGNEAUX-DISTRIBUTION", + "brand": "Leclerc" }, "50180004": { - "Nom": "Station ESSO du Bocage", - "Marque": "Esso" + "name": "Station ESSO du Bocage", + "brand": "Esso" }, "50190001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "50190002": { - "Nom": "SARL PRISIAISE", - "Marque": "Total" + "name": "SARL PRISIAISE", + "brand": "Total" }, "50200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "50200002": { - "Nom": "MR MURIER", - "Marque": "Total" + "name": "MR MURIER", + "brand": "Total" }, "50200005": { - "Nom": "Intermarché COUTANCES", - "Marque": "Intermarché" + "name": "Intermarché COUTANCES", + "brand": "Intermarché" }, "50200008": { - "Nom": "RELAIS DE MONTBRAY", - "Marque": "Total Access" + "name": "RELAIS DE MONTBRAY", + "brand": "Total Access" }, "50200009": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "50204001": { - "Nom": "SAS COUTANCES DISTRIBUTION", - "Marque": "Leclerc" + "name": "SAS COUTANCES DISTRIBUTION", + "brand": "Leclerc" }, "50220002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "50230001": { - "Nom": "U express", - "Marque": "Système U" + "name": "U express", + "brand": "Système U" }, "50240001": { - "Nom": "Super U ST JAMES", - "Marque": "Système U" + "name": "Super U ST JAMES", + "brand": "Système U" }, "50240003": { - "Nom": "RELAIS DU MONT ST MICHEL", - "Marque": "Total" + "name": "RELAIS DU MONT ST MICHEL", + "brand": "Total" }, "50250002": { - "Nom": "Intermarché ST SYMPHORIEN LE VAL", - "Marque": "Intermarché" + "name": "Intermarché ST SYMPHORIEN LE VAL", + "brand": "Intermarché" }, "50250003": { - "Nom": "AP AUTO", - "Marque": "Total" + "name": "AP AUTO", + "brand": "Total" }, "50260001": { - "Nom": "SA MAJEDIS", - "Marque": "Système U" + "name": "SA MAJEDIS", + "brand": "Système U" }, "50260003": { - "Nom": "Intermarché BRICQUEBEC", - "Marque": "Intermarché" + "name": "Intermarché BRICQUEBEC", + "brand": "Intermarché" }, "50260004": { - "Nom": "Total BRICQUEBEC", - "Marque": "Total" + "name": "Total BRICQUEBEC", + "brand": "Total" }, "50270002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "50290001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "50290002": { - "Nom": "NETTO BREHAL", - "Marque": "Netto" + "name": "NETTO BREHAL", + "brand": "Netto" }, "50300001": { - "Nom": "Carrefour AVRANCHES", - "Marque": "Carrefour" + "name": "Carrefour AVRANCHES", + "brand": "Carrefour" }, "50300002": { - "Nom": "SARL MANCHE AUTO", - "Marque": "Total" + "name": "SARL MANCHE AUTO", + "brand": "Total" }, "50300004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "50300005": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "50300006": { - "Nom": "DESFOUX Yves", - "Marque": "Elan" + "name": "DESFOUX Yves", + "brand": "Elan" }, "50304001": { - "Nom": "STE DISTRIB. L'AVRANCHIN", - "Marque": "Leclerc" + "name": "STE DISTRIB. L'AVRANCHIN", + "brand": "Leclerc" }, "50310002": { - "Nom": "SARL MONTEBOUG DISTRIBUTION", - "Marque": "Intermarché" + "name": "SARL MONTEBOUG DISTRIBUTION", + "brand": "Intermarché" }, "50320001": { - "Nom": "SAS PANADIS", - "Marque": "Système U" + "name": "SAS PANADIS", + "brand": "Système U" }, "50330002": { - "Nom": "STATION ESSO SALLEY patrick", - "Marque": "ESSO" + "name": "STATION ESSO SALLEY patrick", + "brand": "ESSO" }, "50330003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "50340001": { - "Nom": "NAUCELLE Franck", - "Marque": "Avia" + "name": "NAUCELLE Franck", + "brand": "Avia" }, "50340002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "50340003": { - "Nom": "Intermarché LES PIEUX", - "Marque": "Intermarché" + "name": "Intermarché LES PIEUX", + "brand": "Intermarché" }, "50350001": { - "Nom": "CASINO SUPERMARCHE DONVILLE LES BAINS", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE DONVILLE LES BAINS", + "brand": "Casino" }, "50360002": { - "Nom": "STATION ESSO DUPAS", - "Marque": "Esso" + "name": "STATION ESSO DUPAS", + "brand": "Esso" }, "50360003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "50370002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "50370003": { - "Nom": "STATION ST CHRISTOPHE", - "Marque": "Indépendant sans enseigne" + "name": "STATION ST CHRISTOPHE", + "brand": "Indépendant sans enseigne" }, "50370005": { - "Nom": "sarl aumont combustible", - "Marque": "Total" + "name": "sarl aumont combustible", + "brand": "Total" }, "50380001": { - "Nom": "GEANT CASINO ST PAIR SUR MER", - "Marque": "Géant" + "name": "GEANT CASINO ST PAIR SUR MER", + "brand": "Géant" }, "50390001": { - "Nom": "Station U", - "Marque": "Système U" + "name": "Station U", + "brand": "Système U" }, "50400001": { - "Nom": "STE MANCHE AUTOS", - "Marque": "Total" + "name": "STE MANCHE AUTOS", + "brand": "Total" }, "50400003": { - "Nom": "GRANVIDIS", - "Marque": "Leclerc" + "name": "GRANVIDIS", + "brand": "Leclerc" }, "50410001": { - "Nom": "Sarl daniel levallois", - "Marque": "Indépendant sans enseigne" + "name": "Sarl daniel levallois", + "brand": "Indépendant sans enseigne" }, "50410002": { - "Nom": "Intermarché PERCY", - "Marque": "Intermarché" + "name": "Intermarché PERCY", + "brand": "Intermarché" }, "50420001": { - "Nom": "SGAR SAS", - "Marque": "Shell" + "name": "SGAR SAS", + "brand": "Shell" }, "50420002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "50430001": { - "Nom": "GARAGE FERET", - "Marque": "Avia" + "name": "GARAGE FERET", + "brand": "Avia" }, "50430002": { - "Nom": "Intermarché LESSAY", - "Marque": "Intermarché" + "name": "Intermarché LESSAY", + "brand": "Intermarché" }, "50440002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "50450001": { - "Nom": "U Express", - "Marque": "Système U" + "name": "U Express", + "brand": "Système U" }, "50460001": { - "Nom": "SODISHAGUE", - "Marque": "Leclerc" + "name": "SODISHAGUE", + "brand": "Leclerc" }, "50470001": { - "Nom": "AUCHAN STATION-SERVICE", - "Marque": "Auchan" + "name": "AUCHAN STATION-SERVICE", + "brand": "Auchan" }, "50480001": { - "Nom": "MLE DUVAL V.", - "Marque": "Total" + "name": "MLE DUVAL V.", + "brand": "Total" }, "50480002": { - "Nom": "STATION U Super U", - "Marque": "Système U" + "name": "STATION U Super U", + "brand": "Système U" }, "50500001": { - "Nom": "SARL BOURDET", - "Marque": "Total Access" + "name": "SARL BOURDET", + "brand": "Total Access" }, "50500002": { - "Nom": "ESSO CANTEPIE", - "Marque": "Esso" + "name": "ESSO CANTEPIE", + "brand": "Esso" }, "50500003": { - "Nom": "PEVILDIS", - "Marque": "Leclerc" + "name": "PEVILDIS", + "brand": "Leclerc" }, "50500004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "50500005": { - "Nom": "Intermarché CARENTAN", - "Marque": "Intermarché" + "name": "Intermarché CARENTAN", + "brand": "Intermarché" }, "50500006": { - "Nom": "Pevildis", - "Marque": "Leclerc" + "name": "Pevildis", + "brand": "Leclerc" }, "50510001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "50530002": { - "Nom": "Super u", - "Marque": "Système U" + "name": "Super u", + "brand": "Système U" }, "50550002": { - "Nom": "Carrefour market", - "Marque": "Carrefour Market" + "name": "Carrefour market", + "brand": "Carrefour Market" }, "50560001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "50560002": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "50570001": { - "Nom": "GARAGE VIGOT Daniel", - "Marque": "Elan" + "name": "GARAGE VIGOT Daniel", + "brand": "Elan" }, "50570002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "50580001": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Casino" }, "50590003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "50600002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "50600003": { - "Nom": "SARL GARAGE BAZIN", - "Marque": "Elan" + "name": "SARL GARAGE BAZIN", + "brand": "Elan" }, "50600004": { - "Nom": "U.S.D.SERVICE DISTRIBUTION", - "Marque": "Leclerc" + "name": "U.S.D.SERVICE DISTRIBUTION", + "brand": "Leclerc" }, "50630001": { - "Nom": "Intermarché QUETTEHOU", - "Marque": "Intermarché" + "name": "Intermarché QUETTEHOU", + "brand": "Intermarché" }, "50690001": { - "Nom": "STATION SERVICE DU PONT", - "Marque": "Esso" + "name": "STATION SERVICE DU PONT", + "brand": "Esso" }, "50690003": { - "Nom": "SARL STATION LE BOURG NEUF", - "Marque": "Total" + "name": "SARL STATION LE BOURG NEUF", + "brand": "Total" }, "50700001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "50700002": { - "Nom": "SARL RELAIS DU BOCAGE", - "Marque": "Total" + "name": "SARL RELAIS DU BOCAGE", + "brand": "Total" }, "50700003": { - "Nom": "Intermarché VALOGNES", - "Marque": "Intermarché" + "name": "Intermarché VALOGNES", + "brand": "Intermarché" }, "50700004": { - "Nom": "Station E.Leclerc VALOGNES", - "Marque": "Leclerc" + "name": "Station E.Leclerc VALOGNES", + "brand": "Leclerc" }, "50710001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "50750001": { - "Nom": "QUIBOU AUTOMOBILES", - "Marque": "Indépendant" + "name": "QUIBOU AUTOMOBILES", + "brand": "Indépendant" }, "50760001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "50800001": { - "Nom": "CASINO VILLEDIEU LES POELLE", - "Marque": "Casino" + "name": "CASINO VILLEDIEU LES POELLE", + "brand": "Casino" }, "50800003": { - "Nom": "Sarl station splm", - "Marque": "Avia" + "name": "Sarl station splm", + "brand": "Avia" }, "50880001": { - "Nom": "STATION CHARDIN Dominique", - "Marque": "Elan" + "name": "STATION CHARDIN Dominique", + "brand": "Elan" }, "50890001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "51000001": { - "Nom": "Carrefour CHALONS EN CHAMPAGNE", - "Marque": "Carrefour" + "name": "Carrefour CHALONS EN CHAMPAGNE", + "brand": "Carrefour" }, "51000005": { - "Nom": "ESSO CHALONNAISE", - "Marque": "Esso Express" + "name": "ESSO CHALONNAISE", + "brand": "Esso Express" }, "51000006": { - "Nom": "ESSO VALMY", - "Marque": "Esso Express" + "name": "ESSO VALMY", + "brand": "Esso Express" }, "51000007": { - "Nom": "Esso service de la residence", - "Marque": "Esso" + "name": "Esso service de la residence", + "brand": "Esso" }, "51000009": { - "Nom": "Intermarché CHALONS EN CHAMPAGNE", - "Marque": "Intermarché" + "name": "Intermarché CHALONS EN CHAMPAGNE", + "brand": "Intermarché" }, "51000013": { - "Nom": "RELAIS ST THIEBAUT", - "Marque": "Total Access" + "name": "RELAIS ST THIEBAUT", + "brand": "Total Access" }, "51067001": { - "Nom": "Carrefour CERNAY", - "Marque": "Carrefour" + "name": "Carrefour CERNAY", + "brand": "Carrefour" }, "51068001": { - "Nom": "CORA REIMS NEUVILLETTE", - "Marque": "CORA" + "name": "CORA REIMS NEUVILLETTE", + "brand": "CORA" }, "51100001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "51100002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "51100015": { - "Nom": "ESSO ST MARCEAUX", - "Marque": "Esso Express" + "name": "ESSO ST MARCEAUX", + "brand": "Esso Express" }, "51100029": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "51100033": { - "Nom": "CERESON STATION", - "Marque": "Intermarché" + "name": "CERESON STATION", + "brand": "Intermarché" }, "51100034": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "51100039": { - "Nom": "BP REIMS RN 44", - "Marque": "BP" + "name": "BP REIMS RN 44", + "brand": "BP" }, "51100040": { - "Nom": "BP REIMS VAL DE MURIGNY", - "Marque": "BP" + "name": "BP REIMS VAL DE MURIGNY", + "brand": "BP" }, "51100043": { - "Nom": "RELAIS REIMS DAUPHINOT", - "Marque": "Total" + "name": "RELAIS REIMS DAUPHINOT", + "brand": "Total" }, "51100044": { - "Nom": "RELAIS DES BELGES", - "Marque": "Total" + "name": "RELAIS DES BELGES", + "brand": "Total" }, "51100045": { - "Nom": "RELAIS CHAMPENOISE", - "Marque": "Total Access" + "name": "RELAIS CHAMPENOISE", + "brand": "Total Access" }, "51100046": { - "Nom": "RELAIS DES CHATILLONS", - "Marque": "Total Access" + "name": "RELAIS DES CHATILLONS", + "brand": "Total Access" }, "51100047": { - "Nom": "RELAIS DU ROUILLAT", - "Marque": "Total Access" + "name": "RELAIS DU ROUILLAT", + "brand": "Total Access" }, "51100048": { - "Nom": "RELAIS REIMS BREBANT", - "Marque": "Total Access" + "name": "RELAIS REIMS BREBANT", + "brand": "Total Access" }, "51100051": { - "Nom": "Hyper U REIMS VILLAGE", - "Marque": "Système U" + "name": "Hyper U REIMS VILLAGE", + "brand": "Système U" }, "51100052": { - "Nom": "BP REIMS CERES", - "Marque": "BP" + "name": "BP REIMS CERES", + "brand": "BP" }, "51110002": { - "Nom": "Intermarché SAS MYRION", - "Marque": "Intermarché" + "name": "Intermarché SAS MYRION", + "brand": "Intermarché" }, "51120003": { - "Nom": "SEZADIS", - "Marque": "Leclerc" + "name": "SEZADIS", + "brand": "Leclerc" }, "51120004": { - "Nom": "RELAIS DU GD MORIN", - "Marque": "Total Access" + "name": "RELAIS DU GD MORIN", + "brand": "Total Access" }, "51130001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "51140003": { - "Nom": "SASU Distrivesle", - "Marque": "Leclerc" + "name": "SASU Distrivesle", + "brand": "Leclerc" }, "51140004": { - "Nom": "OCEANE JET MUIZON", - "Marque": "Total" + "name": "OCEANE JET MUIZON", + "brand": "Total" }, "51160002": { - "Nom": "LECLERC EXPRESS", - "Marque": "Leclerc" + "name": "LECLERC EXPRESS", + "brand": "Leclerc" }, "51170001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "51170002": { - "Nom": "SARL FIM'CARBUR", - "Marque": "Total" + "name": "SARL FIM'CARBUR", + "brand": "Total" }, "51170003": { - "Nom": "Intermarché FISMES", - "Marque": "Intermarché" + "name": "Intermarché FISMES", + "brand": "Intermarché" }, "51190001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "51200001": { - "Nom": "Carrefour EPERNAY", - "Marque": "Carrefour" + "name": "Carrefour EPERNAY", + "brand": "Carrefour" }, "51200004": { - "Nom": "ESSO EPERNAY", - "Marque": "Esso Express" + "name": "ESSO EPERNAY", + "brand": "Esso Express" }, "51200005": { - "Nom": "EPERDIS", - "Marque": "Leclerc" + "name": "EPERDIS", + "brand": "Leclerc" }, "51200006": { - "Nom": "RELAIS SPARNACIENS", - "Marque": "Total Access" + "name": "RELAIS SPARNACIENS", + "brand": "Total Access" }, "51210001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "51210004": { - "Nom": "E Leclerc Montmirail", - "Marque": "Leclerc" + "name": "E Leclerc Montmirail", + "brand": "Leclerc" }, "51210005": { - "Nom": "RELAIS MONTMIRAIL", - "Marque": "Total Access" + "name": "RELAIS MONTMIRAIL", + "brand": "Total Access" }, "51220001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "51230001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "51230003": { - "Nom": "SAS ALFNAT", - "Marque": "FERE CHAMPENOI" + "name": "SAS ALFNAT", + "brand": "FERE CHAMPENOI" }, "51240002": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "51260005": { - "Nom": "Carrefour express", - "Marque": "Carrefour Express" + "name": "Carrefour express", + "brand": "Carrefour Express" }, "51300006": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "51300013": { - "Nom": "RELAIS DES MARVIS", - "Marque": "Total Access" + "name": "RELAIS DES MARVIS", + "brand": "Total Access" }, "51300014": { - "Nom": "RELAIS ARQUEBUSE", - "Marque": "Total Access" + "name": "RELAIS ARQUEBUSE", + "brand": "Total Access" }, "51303001": { - "Nom": "SAS VIDIS", - "Marque": "Leclerc" + "name": "SAS VIDIS", + "brand": "Leclerc" }, "51310001": { - "Nom": "SAS OCTOMAG", - "Marque": "Intermarché Contact" + "name": "SAS OCTOMAG", + "brand": "Intermarché Contact" }, "51320001": { - "Nom": "SIG REST", - "Marque": "Shell" + "name": "SIG REST", + "brand": "Shell" }, "51320003": { - "Nom": "RELAIS DES CRAYERES", - "Marque": "Total Access" + "name": "RELAIS DES CRAYERES", + "brand": "Total Access" }, "51330002": { - "Nom": "SARL POLYCOMMERCE", - "Marque": "ESSO" + "name": "SARL POLYCOMMERCE", + "brand": "ESSO" }, "51340003": { - "Nom": "SARL GUILLEMIN ENERGIE", - "Marque": "Total" + "name": "SARL GUILLEMIN ENERGIE", + "brand": "Total" }, "51350001": { - "Nom": "CORA CORMONTREUIL", - "Marque": "CORA" + "name": "CORA CORMONTREUIL", + "brand": "CORA" }, "51360001": { - "Nom": "SARL DE BEAUMONT", - "Marque": "Total" + "name": "SARL DE BEAUMONT", + "brand": "Total" }, "51370002": { - "Nom": "LECLERC CHAMDIS", - "Marque": "Leclerc" + "name": "LECLERC CHAMDIS", + "brand": "Leclerc" }, "51370003": { - "Nom": "ECOMARCHE SAS ALIKEV", - "Marque": "Indépendant sans enseigne" + "name": "ECOMARCHE SAS ALIKEV", + "brand": "Indépendant sans enseigne" }, "51370004": { - "Nom": "Station ADN", - "Marque": "Total" + "name": "Station ADN", + "brand": "Total" }, "51390001": { - "Nom": "SIG'REST VRIGNY", - "Marque": "Shell" + "name": "SIG'REST VRIGNY", + "brand": "Shell" }, "51390002": { - "Nom": "AGIP GUEUX", - "Marque": "Agip" + "name": "AGIP GUEUX", + "brand": "Agip" }, "51400003": { - "Nom": "STATION CLEMENCEAU", - "Marque": "Avia" + "name": "STATION CLEMENCEAU", + "brand": "Avia" }, "51400004": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "51400007": { - "Nom": "BP A4 AIRE REIMS CHAMPAGNE NORD", - "Marque": "BP" + "name": "BP A4 AIRE REIMS CHAMPAGNE NORD", + "brand": "BP" }, "51400008": { - "Nom": "BP A4 AIRE REIMS CHAMPAGNE SUD", - "Marque": "BP" + "name": "BP A4 AIRE REIMS CHAMPAGNE SUD", + "brand": "BP" }, "51420001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "51430002": { - "Nom": "Carrefour Reims Tinqueux", - "Marque": "Carrefour" + "name": "Carrefour Reims Tinqueux", + "brand": "Carrefour" }, "51430004": { - "Nom": "PIERRY DISTRIBUTION", - "Marque": "Leclerc" + "name": "PIERRY DISTRIBUTION", + "brand": "Leclerc" }, "51430007": { - "Nom": "RELAIS COLBERT", - "Marque": "Total Access" + "name": "RELAIS COLBERT", + "brand": "Total Access" }, "51460001": { - "Nom": "COURTISOLS AUTOMOBILES", - "Marque": "Total" + "name": "COURTISOLS AUTOMOBILES", + "brand": "Total" }, "51460003": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "51470001": { - "Nom": "GARAGE PIGNY", - "Marque": "Avia" + "name": "GARAGE PIGNY", + "brand": "Avia" }, "51480001": { - "Nom": "CENTRAL GARAGE", - "Marque": "Elan" + "name": "CENTRAL GARAGE", + "brand": "Elan" }, "51490001": { - "Nom": "Intermarché PONTFAVERGER", - "Marque": "Intermarché Contact" + "name": "Intermarché PONTFAVERGER", + "brand": "Intermarché Contact" }, "51500002": { - "Nom": "CHAMPFLEURY", - "Marque": "Leclerc" + "name": "CHAMPFLEURY", + "brand": "Leclerc" }, "51500003": { - "Nom": "ECOMARCHE", - "Marque": "Intermarché Contact" + "name": "ECOMARCHE", + "brand": "Intermarché Contact" }, "51500004": { - "Nom": "Carrefour Contact LUDES", - "Marque": "Carrefour" + "name": "Carrefour Contact LUDES", + "brand": "Carrefour" }, "51510001": { - "Nom": "ESSO FAGNIERES", - "Marque": "Esso Express" + "name": "ESSO FAGNIERES", + "brand": "Esso Express" }, "51510002": { - "Nom": "SA FAGNIERES", - "Marque": "Leclerc" + "name": "SA FAGNIERES", + "brand": "Leclerc" }, "51520002": { - "Nom": "RELAIS SAINT MARTIN SUR LE PRE", - "Marque": "Total Access" + "name": "RELAIS SAINT MARTIN SUR LE PRE", + "brand": "Total Access" }, "51600002": { - "Nom": "SARL GARAGE DES 3 RIVIERES", - "Marque": "Avia" + "name": "SARL GARAGE DES 3 RIVIERES", + "brand": "Avia" }, "51600003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "51700001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "51700005": { - "Nom": "RELAIS DU MEMORIAL AVIA", - "Marque": "Avia" + "name": "RELAIS DU MEMORIAL AVIA", + "brand": "Avia" }, "51700006": { - "Nom": "Intermarché CHATILLON SUR MARNE", - "Marque": "Intermarché" + "name": "Intermarché CHATILLON SUR MARNE", + "brand": "Intermarché" }, "51700007": { - "Nom": "RELAIS DE LA MARNE QUARTIERS", - "Marque": "Total Access" + "name": "RELAIS DE LA MARNE QUARTIERS", + "brand": "Total Access" }, "51700009": { - "Nom": "LECLERC EXPRESS DORMANS", - "Marque": "Leclerc" + "name": "LECLERC EXPRESS DORMANS", + "brand": "Leclerc" }, "51800001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "51800004": { - "Nom": "AVIA CROCHET FRERES S.A.S.", - "Marque": "Avia" + "name": "AVIA CROCHET FRERES S.A.S.", + "brand": "Avia" }, "51800010": { - "Nom": "SAS FRANCLAIR", - "Marque": "Intermarché" + "name": "SAS FRANCLAIR", + "brand": "Intermarché" }, "51800011": { - "Nom": "AVIA ORBEVAL", - "Marque": "Avia" + "name": "AVIA ORBEVAL", + "brand": "Avia" }, "51800012": { - "Nom": "AVIA -AIRE DE VALMY LE MOULIN", - "Marque": "Avia" + "name": "AVIA -AIRE DE VALMY LE MOULIN", + "brand": "Avia" }, "52000001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "52000005": { - "Nom": "ESSO GLORIETTE", - "Marque": "Esso Express" + "name": "ESSO GLORIETTE", + "brand": "Esso Express" }, "52000006": { - "Nom": "CHAUMONDIS", - "Marque": "Leclerc" + "name": "CHAUMONDIS", + "brand": "Leclerc" }, "52000008": { - "Nom": "RELAIS DE LA SUIZE", - "Marque": "Total" + "name": "RELAIS DE LA SUIZE", + "brand": "Total" }, "52000009": { - "Nom": "RELAIS BUXEREUILLES", - "Marque": "Total Access" + "name": "RELAIS BUXEREUILLES", + "brand": "Total Access" }, "52100003": { - "Nom": "SARL BRIVOT ET CHEVALIER", - "Marque": "Total" + "name": "SARL BRIVOT ET CHEVALIER", + "brand": "Total" }, "52100008": { - "Nom": "ESSO AERODROME", - "Marque": "Esso Express" + "name": "ESSO AERODROME", + "brand": "Esso Express" }, "52100009": { - "Nom": "SODIBRAG", - "Marque": "Leclerc" + "name": "SODIBRAG", + "brand": "Leclerc" }, "52100010": { - "Nom": "VALENZISI PHILIPPE SARL", - "Marque": "ESSO" + "name": "VALENZISI PHILIPPE SARL", + "brand": "ESSO" }, "52100012": { - "Nom": "ESSO CHAMPAGNE", - "Marque": "Esso" + "name": "ESSO CHAMPAGNE", + "brand": "Esso" }, "52100014": { - "Nom": "SAS JEANDELINE Intermarché", - "Marque": "Intermarché" + "name": "SAS JEANDELINE Intermarché", + "brand": "Intermarché" }, "52100015": { - "Nom": "RELAIS DU DER SUD", - "Marque": "Total" + "name": "RELAIS DU DER SUD", + "brand": "Total" }, "52100016": { - "Nom": "RELAIS DU DER NORD", - "Marque": "Total" + "name": "RELAIS DU DER NORD", + "brand": "Total" }, "52100017": { - "Nom": "SHELL HALLIGNICOURT NORD", - "Marque": "Shell" + "name": "SHELL HALLIGNICOURT NORD", + "brand": "Shell" }, "52112001": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "52120001": { - "Nom": "BP A5 AIRE DE CHATEAUVILLAIN SUR ORGE", - "Marque": "BP" + "name": "BP A5 AIRE DE CHATEAUVILLAIN SUR ORGE", + "brand": "BP" }, "52120002": { - "Nom": "Intermarché CHATEAUVILLAIN", - "Marque": "Intermarché" + "name": "Intermarché CHATEAUVILLAIN", + "brand": "Intermarché" }, "52130002": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "52130003": { - "Nom": "STATION DE LA MADELEINE", - "Marque": "Avia" + "name": "STATION DE LA MADELEINE", + "brand": "Avia" }, "52140002": { - "Nom": "SARL FLAGEZ&FILS", - "Marque": "Total" + "name": "SARL FLAGEZ&FILS", + "brand": "Total" }, "52140003": { - "Nom": "Intermarché MONTIGNY LE ROI", - "Marque": "Intermarché" + "name": "Intermarché MONTIGNY LE ROI", + "brand": "Intermarché" }, "52140004": { - "Nom": "STATION AVIA MONTIGNY LE ROI", - "Marque": "Avia" + "name": "STATION AVIA MONTIGNY LE ROI", + "brand": "Avia" }, "52140005": { - "Nom": "STATION AVIA VAL DE MEUSE", - "Marque": "Avia" + "name": "STATION AVIA VAL DE MEUSE", + "brand": "Avia" }, "52150001": { - "Nom": "GARAGE CENTRAL DUGRILLON", - "Marque": "Avia" + "name": "GARAGE CENTRAL DUGRILLON", + "brand": "Avia" }, "52160008": { - "Nom": "AVIA Perrogney", - "Marque": "Avia" + "name": "AVIA Perrogney", + "brand": "Avia" }, "52160010": { - "Nom": "Noidant SARL MCV", - "Marque": "Avia" + "name": "Noidant SARL MCV", + "brand": "Avia" }, "52170001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "52200004": { - "Nom": "SOLADI", - "Marque": "Leclerc" + "name": "SOLADI", + "brand": "Leclerc" }, "52200009": { - "Nom": "NETTO LANGRES", - "Marque": "Netto" + "name": "NETTO LANGRES", + "brand": "Netto" }, "52200010": { - "Nom": "Intermarché SA BARVIN", - "Marque": "Intermarché" + "name": "Intermarché SA BARVIN", + "brand": "Intermarché" }, "52200012": { - "Nom": "STATION AVIA SARL BAMART", - "Marque": "Avia" + "name": "STATION AVIA SARL BAMART", + "brand": "Avia" }, "52200014": { - "Nom": "RELAIS DE LA COLLINIERE", - "Marque": "Total Access" + "name": "RELAIS DE LA COLLINIERE", + "brand": "Total Access" }, "52220001": { - "Nom": "GARAGE DHOBIE", - "Marque": "Total" + "name": "GARAGE DHOBIE", + "brand": "Total" }, "52220002": { - "Nom": "SAS EMIDER", - "Marque": "Intermarché" + "name": "SAS EMIDER", + "brand": "Intermarché" }, "52250001": { - "Nom": "EPONINE SAS", - "Marque": "Intermarché Contact" + "name": "EPONINE SAS", + "brand": "Intermarché Contact" }, "52300002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "52300003": { - "Nom": "Intermarché JOINVILLE", - "Marque": "Intermarché" + "name": "Intermarché JOINVILLE", + "brand": "Intermarché" }, "52310001": { - "Nom": "Intermarché BOLOGNE", - "Marque": "Intermarché" + "name": "Intermarché BOLOGNE", + "brand": "Intermarché" }, "52330002": { - "Nom": "Aux p'tites autos", - "Marque": "Avia" + "name": "Aux p'tites autos", + "brand": "Avia" }, "52400001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "52400002": { - "Nom": "RELAIS DES TROIS PROVINCES", - "Marque": "Avia" + "name": "RELAIS DES TROIS PROVINCES", + "brand": "Avia" }, "52500001": { - "Nom": "GARAGE GUENOT SARL", - "Marque": "Avia" + "name": "GARAGE GUENOT SARL", + "brand": "Avia" }, "52500002": { - "Nom": "DATS FAYL BILLOT", - "Marque": "Colruyt" + "name": "DATS FAYL BILLOT", + "brand": "Colruyt" }, "52540001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "52600001": { - "Nom": "Central Garage", - "Marque": "Avia" + "name": "Central Garage", + "brand": "Avia" }, "52600002": { - "Nom": "SARL JKR AUTOMOBILES", - "Marque": "Avia" + "name": "SARL JKR AUTOMOBILES", + "brand": "Avia" }, "52600003": { - "Nom": "SAS JALU", - "Marque": "Leclerc" + "name": "SAS JALU", + "brand": "Leclerc" }, "52700002": { - "Nom": "ECOMARCHE RIMAUCOURT", - "Marque": "Intermarché" + "name": "ECOMARCHE RIMAUCOURT", + "brand": "Intermarché" }, "52800001": { - "Nom": "SAS CHELOUMEX", - "Marque": "Système U" + "name": "SAS CHELOUMEX", + "brand": "Système U" }, "52800002": { - "Nom": "RELAIS DES FORGES - SCAP PEUGEOT", - "Marque": "Avia" + "name": "RELAIS DES FORGES - SCAP PEUGEOT", + "brand": "Avia" }, "53000003": { - "Nom": "SARL FONTAINE", - "Marque": "Total" + "name": "SARL FONTAINE", + "brand": "Total" }, "53000005": { - "Nom": "SARL GARAGE LERAY", - "Marque": "Total" + "name": "SARL GARAGE LERAY", + "brand": "Total" }, "53000006": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "53000008": { - "Nom": "Intermarché LAVAL", - "Marque": "Intermarché" + "name": "Intermarché LAVAL", + "brand": "Intermarché" }, "53000009": { - "Nom": "RELAIS DU PONT DE PARIS", - "Marque": "Total" + "name": "RELAIS DU PONT DE PARIS", + "brand": "Total" }, "53000010": { - "Nom": "RELAIS LAVAL TRAPPISTINES", - "Marque": "Total Access" + "name": "RELAIS LAVAL TRAPPISTINES", + "brand": "Total Access" }, "53000011": { - "Nom": "RELAIS LA CLOSERIE", - "Marque": "Total Access" + "name": "RELAIS LA CLOSERIE", + "brand": "Total Access" }, "53002001": { - "Nom": "Carrefour LAVAL", - "Marque": "Carrefour" + "name": "Carrefour LAVAL", + "brand": "Carrefour" }, "53061001": { - "Nom": "E.Leclerc Laval", - "Marque": "Leclerc" + "name": "E.Leclerc Laval", + "brand": "Leclerc" }, "53100001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "53100004": { - "Nom": "ESSO SERVICE DE LA MADELEINE", - "Marque": "Esso" + "name": "ESSO SERVICE DE LA MADELEINE", + "brand": "Esso" }, "53100006": { - "Nom": "SARL MARTINEAU Luc", - "Marque": "Indépendant sans enseigne" + "name": "SARL MARTINEAU Luc", + "brand": "Indépendant sans enseigne" }, "53100007": { - "Nom": "RELAIS MADELEINE LINTIER", - "Marque": "Total Access" + "name": "RELAIS MADELEINE LINTIER", + "brand": "Total Access" }, "53102001": { - "Nom": "Hyper U MAYENNE", - "Marque": "Système U" + "name": "Hyper U MAYENNE", + "brand": "Système U" }, "53102002": { - "Nom": "LECLERC MAYENNE", - "Marque": "Leclerc" + "name": "LECLERC MAYENNE", + "brand": "Leclerc" }, "53110001": { - "Nom": "Intermarché LASSAY LES CHATEAUX", - "Marque": "Intermarché" + "name": "Intermarché LASSAY LES CHATEAUX", + "brand": "Intermarché" }, "53120001": { - "Nom": "Super U GORRON", - "Marque": "Système U" + "name": "Super U GORRON", + "brand": "Système U" }, "53120002": { - "Nom": "SARL GARAGE JUILLET", - "Marque": "Total" + "name": "SARL GARAGE JUILLET", + "brand": "Total" }, "53140001": { - "Nom": "Super U PRE EN PAIL", - "Marque": "Système U" + "name": "Super U PRE EN PAIL", + "brand": "Système U" }, "53140003": { - "Nom": "RELAIS AVALOIRS", - "Marque": "Total Access" + "name": "RELAIS AVALOIRS", + "brand": "Total Access" }, "53150001": { - "Nom": "Intermarché Contact MONTSURS", - "Marque": "Intermarché" + "name": "Intermarché Contact MONTSURS", + "brand": "Intermarché" }, "53160002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "53170001": { - "Nom": "Super U MESLAY DU MAINE", - "Marque": "Système U" + "name": "Super U MESLAY DU MAINE", + "brand": "Système U" }, "53190001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "53200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "53200003": { - "Nom": "HAUT ANJOU AUTOMOBILES", - "Marque": "Total" + "name": "HAUT ANJOU AUTOMOBILES", + "brand": "Total" }, "53200005": { - "Nom": "AZEDIS/EURL DARAF", - "Marque": "Leclerc" + "name": "AZEDIS/EURL DARAF", + "brand": "Leclerc" }, "53200006": { - "Nom": "Intermarché ST FORT", - "Marque": "Intermarché" + "name": "Intermarché ST FORT", + "brand": "Intermarché" }, "53210001": { - "Nom": "Utile ARGENTRE", - "Marque": "Système U" + "name": "Utile ARGENTRE", + "brand": "Système U" }, "53230001": { - "Nom": "SARL GARAGE BATARD", - "Marque": "Total" + "name": "SARL GARAGE BATARD", + "brand": "Total" }, "53230003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "53240001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "53240002": { - "Nom": "SARL GAMBERT - MAYENNE COMBUSTIBLES", - "Marque": "GAMBERT" + "name": "SARL GAMBERT - MAYENNE COMBUSTIBLES", + "brand": "GAMBERT" }, "53270001": { - "Nom": "SGAR SAS", - "Marque": "Shell" + "name": "SGAR SAS", + "brand": "Shell" }, "53300003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "53320002": { - "Nom": "U EXPRESS LOIRON", - "Marque": "Système U" + "name": "U EXPRESS LOIRON", + "brand": "Système U" }, "53370001": { - "Nom": "GARAGE OLIVIER EURL", - "Marque": "Elan" + "name": "GARAGE OLIVIER EURL", + "brand": "Elan" }, "53400001": { - "Nom": "Super U CRAON ST CLEMENT", - "Marque": "Système U" + "name": "Super U CRAON ST CLEMENT", + "brand": "Système U" }, "53400002": { - "Nom": "SARL GABY MERIENNE", - "Marque": "Total" + "name": "SARL GABY MERIENNE", + "brand": "Total" }, "53410001": { - "Nom": "Super U LE BOURGNEUF LA FORET", - "Marque": "Système U" + "name": "Super U LE BOURGNEUF LA FORET", + "brand": "Système U" }, "53410004": { - "Nom": "Carrefour Express SAINT PIERRE LA COUR", - "Marque": "Carrefour Express" + "name": "Carrefour Express SAINT PIERRE LA COUR", + "brand": "Carrefour Express" }, "53480002": { - "Nom": "Carrefour EXPRESS", - "Marque": "Carrefour Express" + "name": "Carrefour EXPRESS", + "brand": "Carrefour Express" }, "53500001": { - "Nom": "Super U ERNEE", - "Marque": "Système U" + "name": "Super U ERNEE", + "brand": "Système U" }, "53500003": { - "Nom": "MME PAPOIN LILIANE", - "Marque": "Total" + "name": "MME PAPOIN LILIANE", + "brand": "Total" }, "53500004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "53600001": { - "Nom": "Super U EVRON", - "Marque": "Système U" + "name": "Super U EVRON", + "brand": "Système U" }, "53600002": { - "Nom": "SARL GGE DES COEVRONS", - "Marque": "Total" + "name": "SARL GGE DES COEVRONS", + "brand": "Total" }, "53600003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "53600007": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "53700001": { - "Nom": "Super U VILLAINES LA JUHEL", - "Marque": "Système U" + "name": "Super U VILLAINES LA JUHEL", + "brand": "Système U" }, "53800001": { - "Nom": "SAS OVICK", - "Marque": "Intermarché" + "name": "SAS OVICK", + "brand": "Intermarché" }, "53810001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "53940001": { - "Nom": "Centre E.Leclerc St Berthevin", - "Marque": "Leclerc" + "name": "Centre E.Leclerc St Berthevin", + "brand": "Leclerc" }, "53950001": { - "Nom": "SARL LUDIS", - "Marque": "Carrefour Contact" + "name": "SARL LUDIS", + "brand": "Carrefour Contact" }, "53960001": { - "Nom": "Aire de La Mayenne", - "Marque": "Avia" + "name": "Aire de La Mayenne", + "brand": "Avia" }, "53960003": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "53970001": { - "Nom": "U Express L'HUISSERIE", - "Marque": "Système U" + "name": "U Express L'HUISSERIE", + "brand": "Système U" }, "54000001": { - "Nom": "Auchan nancy centre", - "Marque": "Auchan" + "name": "Auchan nancy centre", + "brand": "Auchan" }, "54000003": { - "Nom": "Carrefour EXPRESS SARL BAIMEX", - "Marque": "Carrefour Express" + "name": "Carrefour EXPRESS SARL BAIMEX", + "brand": "Carrefour Express" }, "54000007": { - "Nom": "SARL BMCV", - "Marque": "Avia" + "name": "SARL BMCV", + "brand": "Avia" }, "54000008": { - "Nom": "ESSO ST JOSEPH 54", - "Marque": "Esso Express" + "name": "ESSO ST JOSEPH 54", + "brand": "Esso Express" }, "54000009": { - "Nom": "ESSO JEAN JAURES", - "Marque": "Esso Express" + "name": "ESSO JEAN JAURES", + "brand": "Esso Express" }, "54000010": { - "Nom": "RELAIS DES TROIS MAISONS", - "Marque": "Total" + "name": "RELAIS DES TROIS MAISONS", + "brand": "Total" }, "54000011": { - "Nom": "RELAIS TIERCELINS", - "Marque": "Total" + "name": "RELAIS TIERCELINS", + "brand": "Total" }, "54110001": { - "Nom": "Supermarché Match DOMBASLE", - "Marque": "Supermarché Match" + "name": "Supermarché Match DOMBASLE", + "brand": "Supermarché Match" }, "54110002": { - "Nom": "ESSO DOMBASLE", - "Marque": "Esso Express" + "name": "ESSO DOMBASLE", + "brand": "Esso Express" }, "54120002": { - "Nom": "SARL GARAGE TANGUY", - "Marque": "Total" + "name": "SARL GARAGE TANGUY", + "brand": "Total" }, "54120004": { - "Nom": "Intermarché DENEUVRE", - "Marque": "Intermarché" + "name": "Intermarché DENEUVRE", + "brand": "Intermarché" }, "54121001": { - "Nom": "STATION TABAC PRESSE LAMORLETTE", - "Marque": "Total" + "name": "STATION TABAC PRESSE LAMORLETTE", + "brand": "Total" }, "54130001": { - "Nom": "Supermarché Match SAINT MAX", - "Marque": "Supermarché Match" + "name": "Supermarché Match SAINT MAX", + "brand": "Supermarché Match" }, "54134001": { - "Nom": "SARL GGE PETITJEAN", - "Marque": "Total" + "name": "SARL GGE PETITJEAN", + "brand": "Total" }, "54140001": { - "Nom": "Intermarché JARVILLE", - "Marque": "Intermarché" + "name": "Intermarché JARVILLE", + "brand": "Intermarché" }, "54150001": { - "Nom": "SARL CATALANO", - "Marque": "Total" + "name": "SARL CATALANO", + "brand": "Total" }, "54150002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "54150004": { - "Nom": "Total Contact Briey", - "Marque": "Total" + "name": "Total Contact Briey", + "brand": "Total" }, "54170001": { - "Nom": "WEBER SERVICES SARL", - "Marque": "Elan" + "name": "WEBER SERVICES SARL", + "brand": "Elan" }, "54170003": { - "Nom": "STATION ESSO SARL FORELLE", - "Marque": "Esso" + "name": "STATION ESSO SARL FORELLE", + "brand": "Esso" }, "54170004": { - "Nom": "SAS SAINTIS", - "Marque": "Intermarché" + "name": "SAS SAINTIS", + "brand": "Intermarché" }, "54182001": { - "Nom": "CORA HOUDEMONT", - "Marque": "CORA" + "name": "CORA HOUDEMONT", + "brand": "CORA" }, "54200004": { - "Nom": "BP A31 AIRE DE DOMMARTIN LES TOUL", - "Marque": "BP" + "name": "BP A31 AIRE DE DOMMARTIN LES TOUL", + "brand": "BP" }, "54200005": { - "Nom": "BMCV SARL", - "Marque": "Avia" + "name": "BMCV SARL", + "brand": "Avia" }, "54200007": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "54200008": { - "Nom": "Intermarché TOUL", - "Marque": "Intermarché" + "name": "Intermarché TOUL", + "brand": "Intermarché" }, "54200012": { - "Nom": "RELAIS PORTE FRANCE", - "Marque": "Total" + "name": "RELAIS PORTE FRANCE", + "brand": "Total" }, "54204001": { - "Nom": "LECLERC TOUL", - "Marque": "Leclerc" + "name": "LECLERC TOUL", + "brand": "Leclerc" }, "54210002": { - "Nom": "supermarche match", - "Marque": "Supermarché Match" + "name": "supermarche match", + "brand": "Supermarché Match" }, "54220001": { - "Nom": "ESSO MALZEVILLE", - "Marque": "Esso Express" + "name": "ESSO MALZEVILLE", + "brand": "Esso Express" }, "54220002": { - "Nom": "Supermarché Match Malzéville", - "Marque": "Supermarché Match" + "name": "Supermarché Match Malzéville", + "brand": "Supermarché Match" }, "54230001": { - "Nom": "ESSO NEUVES MAISONS", - "Marque": "Esso Express" + "name": "ESSO NEUVES MAISONS", + "brand": "Esso Express" }, "54230002": { - "Nom": "Intermarché NEUVES MAISONS", - "Marque": "Intermarché" + "name": "Intermarché NEUVES MAISONS", + "brand": "Intermarché" }, "54240002": { - "Nom": "ESSO JOEUF", - "Marque": "Esso Express" + "name": "ESSO JOEUF", + "brand": "Esso Express" }, "54250001": { - "Nom": "Supermarché Match CHAMPIGNEULLES", - "Marque": "Supermarché Match" + "name": "Supermarché Match CHAMPIGNEULLES", + "brand": "Supermarché Match" }, "54260001": { - "Nom": "SARL GGE THOMAS", - "Marque": "Total" + "name": "SARL GGE THOMAS", + "brand": "Total" }, "54260003": { - "Nom": "Total Access LONGUYON", - "Marque": "Total Access" + "name": "Total Access LONGUYON", + "brand": "Total Access" }, "54270001": { - "Nom": "Cora essey", - "Marque": "CORA" + "name": "Cora essey", + "brand": "CORA" }, "54270002": { - "Nom": "ESSO NANCY EST", - "Marque": "Esso Express" + "name": "ESSO NANCY EST", + "brand": "Esso Express" }, "54280003": { - "Nom": "RELAIS SEICHAMPS", - "Marque": "Total Access" + "name": "RELAIS SEICHAMPS", + "brand": "Total Access" }, "54290001": { - "Nom": "SARL BAYFER", - "Marque": "Carrefour Contact" + "name": "SARL BAYFER", + "brand": "Carrefour Contact" }, "54300001": { - "Nom": "CORA LUNEVILLE", - "Marque": "CORA" + "name": "CORA LUNEVILLE", + "brand": "CORA" }, "54300002": { - "Nom": "SARL ST POMPIDOU", - "Marque": "Total" + "name": "SARL ST POMPIDOU", + "brand": "Total" }, "54300005": { - "Nom": "ESSO VITRIMONT", - "Marque": "Esso" + "name": "ESSO VITRIMONT", + "brand": "Esso" }, "54300006": { - "Nom": "LUNAMA SAS", - "Marque": "Leclerc" + "name": "LUNAMA SAS", + "brand": "Leclerc" }, "54300007": { - "Nom": "Intermarché CHANTEHEUX", - "Marque": "Intermarché" + "name": "Intermarché CHANTEHEUX", + "brand": "Intermarché" }, "54300008": { - "Nom": "DUCS DE LORRAINE", - "Marque": "Indépendant sans enseigne" + "name": "DUCS DE LORRAINE", + "brand": "Indépendant sans enseigne" }, "54300010": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "54300011": { - "Nom": "RELAIS ANTHELUPT", - "Marque": "Total Access" + "name": "RELAIS ANTHELUPT", + "brand": "Total Access" }, "54300012": { - "Nom": "RELAIS LUNEVILLE", - "Marque": "Total Access" + "name": "RELAIS LUNEVILLE", + "brand": "Total Access" }, "54310001": { - "Nom": "Intermarché HOMECOURT", - "Marque": "Intermarché" + "name": "Intermarché HOMECOURT", + "brand": "Intermarché" }, "54320001": { - "Nom": "SUPER U - SAS MAXEDIS", - "Marque": "Système U" + "name": "SUPER U - SAS MAXEDIS", + "brand": "Système U" }, "54330001": { - "Nom": "LECLERC STATION SERVICE G20", - "Marque": "SupermarchéG20" + "name": "LECLERC STATION SERVICE G20", + "brand": "SupermarchéG20" }, "54340001": { - "Nom": "LEADER PRICE POMPEY", - "Marque": "Leader Price" + "name": "LEADER PRICE POMPEY", + "brand": "Leader Price" }, "54360002": { - "Nom": "SARL THOMAS DOSDA", - "Marque": "Total" + "name": "SARL THOMAS DOSDA", + "brand": "Total" }, "54380003": { - "Nom": "029 DATS DIEULOUARD", - "Marque": "Colruyt" + "name": "029 DATS DIEULOUARD", + "brand": "Colruyt" }, "54380004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "54390001": { - "Nom": "FROUDIS", - "Marque": "Leclerc" + "name": "FROUDIS", + "brand": "Leclerc" }, "54390002": { - "Nom": "ESSO LA GALOCHE MAILLEFERT SA", - "Marque": "Esso" + "name": "ESSO LA GALOCHE MAILLEFERT SA", + "brand": "Esso" }, "54400001": { - "Nom": "Supermarché Match LONGWY", - "Marque": "Supermarché Match" + "name": "Supermarché Match LONGWY", + "brand": "Supermarché Match" }, "54450001": { - "Nom": "SARL PERRETTE", - "Marque": "Total" + "name": "SARL PERRETTE", + "brand": "Total" }, "54450002": { - "Nom": "ETS MASSON SA", - "Marque": "Total" + "name": "ETS MASSON SA", + "brand": "Total" }, "54450003": { - "Nom": "Intermarché BLAMONT", - "Marque": "Intermarché" + "name": "Intermarché BLAMONT", + "brand": "Intermarché" }, "54460001": { - "Nom": "Intermarché LIVERDUN", - "Marque": "Intermarché" + "name": "Intermarché LIVERDUN", + "brand": "Intermarché" }, "54470002": { - "Nom": "Carrefour Contact THIAUCOURT", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact THIAUCOURT", + "brand": "Carrefour Contact" }, "54480001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "54490002": { - "Nom": "LEADER PRICE PIENNES", - "Marque": "Leader Price" + "name": "LEADER PRICE PIENNES", + "brand": "Leader Price" }, "54500004": { - "Nom": "ESSO VANDOEUVRE", - "Marque": "Esso Express" + "name": "ESSO VANDOEUVRE", + "brand": "Esso Express" }, "54500005": { - "Nom": "VANDIS SAS", - "Marque": "Leclerc" + "name": "VANDIS SAS", + "brand": "Leclerc" }, "54500007": { - "Nom": "RELAIS VANDOEUVRE", - "Marque": "Total Access" + "name": "RELAIS VANDOEUVRE", + "brand": "Total Access" }, "54500008": { - "Nom": "RELAIS DE BRABOIS", - "Marque": "Total Access" + "name": "RELAIS DE BRABOIS", + "brand": "Total Access" }, "54510001": { - "Nom": "AUCHAN TOMBLAINE", - "Marque": "Auchan" + "name": "AUCHAN TOMBLAINE", + "brand": "Auchan" }, "54520001": { - "Nom": "Station Auchan", - "Marque": "Auchan" + "name": "Station Auchan", + "brand": "Auchan" }, "54520004": { - "Nom": "Station AVIA XPRESS", - "Marque": "Avia" + "name": "Station AVIA XPRESS", + "brand": "Avia" }, "54520006": { - "Nom": "RELAIS BEAUREGARD", - "Marque": "Total Access" + "name": "RELAIS BEAUREGARD", + "brand": "Total Access" }, "54520007": { - "Nom": "RELAIS DE LAXOU", - "Marque": "Total Access" + "name": "RELAIS DE LAXOU", + "brand": "Total Access" }, "54530002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "54600002": { - "Nom": "STATION DU MONOPRIX VILLERS LES NANCY", - "Marque": "Monoprix" + "name": "STATION DU MONOPRIX VILLERS LES NANCY", + "brand": "Monoprix" }, "54600004": { - "Nom": "SA VIRLIE", - "Marque": "Intermarché" + "name": "SA VIRLIE", + "brand": "Intermarché" }, "54600005": { - "Nom": "RELAIS AIGUILLETTES", - "Marque": "Total" + "name": "RELAIS AIGUILLETTES", + "brand": "Total" }, "54610001": { - "Nom": "SARL RONDEAUX", - "Marque": "Avia" + "name": "SARL RONDEAUX", + "brand": "Avia" }, "54630001": { - "Nom": "ESSO CANAL DE L'EST", - "Marque": "Esso" + "name": "ESSO CANAL DE L'EST", + "brand": "Esso" }, "54670004": { - "Nom": "RELAIS DE CUSTINES", - "Marque": "Total" + "name": "RELAIS DE CUSTINES", + "brand": "Total" }, "54700005": { - "Nom": "SAS NARIO", - "Marque": "Roady" + "name": "SAS NARIO", + "brand": "Roady" }, "54700006": { - "Nom": "Intermarché PONT A MOUSSON", - "Marque": "Intermarché" + "name": "Intermarché PONT A MOUSSON", + "brand": "Intermarché" }, "54700008": { - "Nom": "AGIP LOISY", - "Marque": "Agip" + "name": "AGIP LOISY", + "brand": "Agip" }, "54700009": { - "Nom": "SUPERMARCHE MATCH", - "Marque": "Supermarché Match" + "name": "SUPERMARCHE MATCH", + "brand": "Supermarché Match" }, "54700010": { - "Nom": "RELAIS Total DE L'OBRION", - "Marque": "Total" + "name": "RELAIS Total DE L'OBRION", + "brand": "Total" }, "54710001": { - "Nom": "Intermarché LUDRES", - "Marque": "Intermarché" + "name": "Intermarché LUDRES", + "brand": "Intermarché" }, "54800001": { - "Nom": "Supermarché Match JARNY", - "Marque": "Supermarché Match" + "name": "Supermarché Match JARNY", + "brand": "Supermarché Match" }, "54800003": { - "Nom": "CONF-DIST", - "Marque": "Leclerc" + "name": "CONF-DIST", + "brand": "Leclerc" }, "54800004": { - "Nom": "SARL ANTONACCI", - "Marque": "Avia" + "name": "SARL ANTONACCI", + "brand": "Avia" }, "54800006": { - "Nom": "Total", - "Marque": "Total" + "name": "Total", + "brand": "Total" }, "54830001": { - "Nom": "Sarl Garage Blosse Station de la Mortagne", - "Marque": "Indépendant sans enseigne" + "name": "Sarl Garage Blosse Station de la Mortagne", + "brand": "Indépendant sans enseigne" }, "54840004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "54920001": { - "Nom": "STATION DES TROIS FRONTIERES", - "Marque": "Indépendant sans enseigne" + "name": "STATION DES TROIS FRONTIERES", + "brand": "Indépendant sans enseigne" }, "54970001": { - "Nom": "Intermarché LANDRES", - "Marque": "Intermarché" + "name": "Intermarché LANDRES", + "brand": "Intermarché" }, "55000001": { - "Nom": "Auchan Bar Le Duc", - "Marque": "Auchan" + "name": "Auchan Bar Le Duc", + "brand": "Auchan" }, "55000003": { - "Nom": "SAS GENIN", - "Marque": "Avia" + "name": "SAS GENIN", + "brand": "Avia" }, "55000004": { - "Nom": "BARROIDIS", - "Marque": "Leclerc" + "name": "BARROIDIS", + "brand": "Leclerc" }, "55000005": { - "Nom": "Intermarché FAINS VEEL", - "Marque": "Intermarché" + "name": "Intermarché FAINS VEEL", + "brand": "Intermarché" }, "55000010": { - "Nom": "RELAIS POINCARE", - "Marque": "Total" + "name": "RELAIS POINCARE", + "brand": "Total" }, "55100001": { - "Nom": "Cora Verdun", - "Marque": "CORA" + "name": "Cora Verdun", + "brand": "CORA" }, "55100003": { - "Nom": "ESSO GALAVAUDE", - "Marque": "Esso Express" + "name": "ESSO GALAVAUDE", + "brand": "Esso Express" }, "55100004": { - "Nom": "S.A VERDUN DISTRIBUTION", - "Marque": "Leclerc" + "name": "S.A VERDUN DISTRIBUTION", + "brand": "Leclerc" }, "55100007": { - "Nom": "RELAIS CITADELLE", - "Marque": "Total" + "name": "RELAIS CITADELLE", + "brand": "Total" }, "55110001": { - "Nom": "STATION DOERR", - "Marque": "Indépendant sans enseigne" + "name": "STATION DOERR", + "brand": "Indépendant sans enseigne" }, "55120001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "55130002": { - "Nom": "STATION JUNKER", - "Marque": "Indépendant sans enseigne" + "name": "STATION JUNKER", + "brand": "Indépendant sans enseigne" }, "55140001": { - "Nom": "Intermarché VAUCOULEURS", - "Marque": "Intermarché" + "name": "Intermarché VAUCOULEURS", + "brand": "Intermarché" }, "55160011": { - "Nom": "BP A4 AIRE DE VERDUN SAINT NICOLAS NORD", - "Marque": "BP" + "name": "BP A4 AIRE DE VERDUN SAINT NICOLAS NORD", + "brand": "BP" }, "55160013": { - "Nom": "BP AIRE VERDUN SUD", - "Marque": "BP" + "name": "BP AIRE VERDUN SUD", + "brand": "BP" }, "55160014": { - "Nom": "BP AIRE VERDUN NORD", - "Marque": "BP" + "name": "BP AIRE VERDUN NORD", + "brand": "BP" }, "55190003": { - "Nom": "RELAIS PORTE DE MEUSE", - "Marque": "Total Access" + "name": "RELAIS PORTE DE MEUSE", + "brand": "Total Access" }, "55200002": { - "Nom": "Supermarché Match COMMERCY", - "Marque": "Supermarché Match" + "name": "Supermarché Match COMMERCY", + "brand": "Supermarché Match" }, "55200003": { - "Nom": "GARAGE NATIONAL", - "Marque": "Elan" + "name": "GARAGE NATIONAL", + "brand": "Elan" }, "55200004": { - "Nom": "Intermarché COMMERCY", - "Marque": "Intermarché" + "name": "Intermarché COMMERCY", + "brand": "Intermarché" }, "55210001": { - "Nom": "GARAGE EVE", - "Marque": "Total" + "name": "GARAGE EVE", + "brand": "Total" }, "55210002": { - "Nom": "DATS VIGNEULLES LES HATTONCHÂTEL", - "Marque": "Colruyt" + "name": "DATS VIGNEULLES LES HATTONCHÂTEL", + "brand": "Colruyt" }, "55270002": { - "Nom": "as proximite", - "Marque": "Carrefour Express" + "name": "as proximite", + "brand": "Carrefour Express" }, "55300001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "55300002": { - "Nom": "SARL GGE DE L ABBAYE", - "Marque": "Total" + "name": "SARL GGE DE L ABBAYE", + "brand": "Total" }, "55300003": { - "Nom": "Intermarché CHAUVONCOURT", - "Marque": "Intermarché" + "name": "Intermarché CHAUVONCOURT", + "brand": "Intermarché" }, "55320001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché" + "name": "Intermarché Contact", + "brand": "Intermarché" }, "55400003": { - "Nom": "Intermarché ETAIN", - "Marque": "Intermarché" + "name": "Intermarché ETAIN", + "brand": "Intermarché" }, "55430001": { - "Nom": "Intermarché BELLEVILLE/MEUSE", - "Marque": "Intermarché" + "name": "Intermarché BELLEVILLE/MEUSE", + "brand": "Intermarché" }, "55500001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "55500002": { - "Nom": "SARL ORY", - "Marque": "Total" + "name": "SARL ORY", + "brand": "Total" }, "55500003": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "55600001": { - "Nom": "sa ngc distribution", - "Marque": "Système U" + "name": "sa ngc distribution", + "brand": "Système U" }, "55700005": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "55700006": { - "Nom": "SARL STAILLOUX", - "Marque": "STENAY" + "name": "SARL STAILLOUX", + "brand": "STENAY" }, "55800002": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "56000003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "56000004": { - "Nom": "CARBUTHEIX VANNES", - "Marque": "Leclerc" + "name": "CARBUTHEIX VANNES", + "brand": "Leclerc" }, "56000005": { - "Nom": "UEXPRESS SA CLISMER", - "Marque": "Système U" + "name": "UEXPRESS SA CLISMER", + "brand": "Système U" }, "56000008": { - "Nom": "RELAIS NOMINOE", - "Marque": "Total" + "name": "RELAIS NOMINOE", + "brand": "Total" }, "56000009": { - "Nom": "RELAIS VANNES LA PAIX", - "Marque": "Total Access" + "name": "RELAIS VANNES LA PAIX", + "brand": "Total Access" }, "56006001": { - "Nom": "Carrefour VANNES", - "Marque": "Carrefour" + "name": "Carrefour VANNES", + "brand": "Carrefour" }, "56100002": { - "Nom": "SARL MAOUT", - "Marque": "Total" + "name": "SARL MAOUT", + "brand": "Total" }, "56100003": { - "Nom": "SARL GARAGE DU TER", - "Marque": "Total" + "name": "SARL GARAGE DU TER", + "brand": "Total" }, "56100007": { - "Nom": "Carrefour Lorient", - "Marque": "Carrefour" + "name": "Carrefour Lorient", + "brand": "Carrefour" }, "56100008": { - "Nom": "Intermarché LORIENT C/C LANVEUR", - "Marque": "Intermarché" + "name": "Intermarché LORIENT C/C LANVEUR", + "brand": "Intermarché" }, "56100009": { - "Nom": "Intermarché LORIENT Kerfichant", - "Marque": "Intermarché" + "name": "Intermarché LORIENT Kerfichant", + "brand": "Intermarché" }, "56100012": { - "Nom": "RELAIS LORIENT PORT", - "Marque": "Total Access" + "name": "RELAIS LORIENT PORT", + "brand": "Total Access" }, "56109001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "56110001": { - "Nom": "INAM DISTRIBUTION", - "Marque": "Leclerc" + "name": "INAM DISTRIBUTION", + "brand": "Leclerc" }, "56110002": { - "Nom": "SAS LORYAL", - "Marque": "Intermarché Contact" + "name": "SAS LORYAL", + "brand": "Intermarché Contact" }, "56120001": { - "Nom": "E.LECLERC_JOSSELIN", - "Marque": "Leclerc" + "name": "E.LECLERC_JOSSELIN", + "brand": "Leclerc" }, "56120004": { - "Nom": "Super U JOSSELIN", - "Marque": "Système U" + "name": "Super U JOSSELIN", + "brand": "Système U" }, "56130001": { - "Nom": "SARL MARRIE PALOU", - "Marque": "Total" + "name": "SARL MARRIE PALOU", + "brand": "Total" }, "56130002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "56140001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "56140002": { - "Nom": "SAS EXPAN MALESTOIT", - "Marque": "Système U" + "name": "SAS EXPAN MALESTOIT", + "brand": "Système U" }, "56150001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "56150004": { - "Nom": "Intermarché BAUD", - "Marque": "Intermarché" + "name": "Intermarché BAUD", + "brand": "Intermarché" }, "56160001": { - "Nom": "Intermarché GUEMENE/SCORFF", - "Marque": "Intermarché" + "name": "Intermarché GUEMENE/SCORFF", + "brand": "Intermarché" }, "56170002": { - "Nom": "ARGWEN AUTOMOBILES", - "Marque": "Elan" + "name": "ARGWEN AUTOMOBILES", + "brand": "Elan" }, "56170003": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "56190001": { - "Nom": "Super U MUZILLAC", - "Marque": "Système U" + "name": "Super U MUZILLAC", + "brand": "Système U" }, "56190011": { - "Nom": "MARKET", - "Marque": "Carrefour Market" + "name": "MARKET", + "brand": "Carrefour Market" }, "56200001": { - "Nom": "yannick roblin", - "Marque": "Total" + "name": "yannick roblin", + "brand": "Total" }, "56200003": { - "Nom": "CASINO CARBURANT", - "Marque": "Casino" + "name": "CASINO CARBURANT", + "brand": "Casino" }, "56220003": { - "Nom": "Super U MALANSAC", - "Marque": "Système U" + "name": "Super U MALANSAC", + "brand": "Système U" }, "56230002": { - "Nom": "TRELOHAN EURL", - "Marque": "Elan" + "name": "TRELOHAN EURL", + "brand": "Elan" }, "56230003": { - "Nom": "Intermarché QUESTEMBERT", - "Marque": "Intermarché" + "name": "Intermarché QUESTEMBERT", + "brand": "Intermarché" }, "56230005": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "56240003": { - "Nom": "CARRREFOUR MARKET", - "Marque": "Carrefour Market" + "name": "CARRREFOUR MARKET", + "brand": "Carrefour Market" }, "56250002": { - "Nom": "Intermarché ELVEN", - "Marque": "Intermarché" + "name": "Intermarché ELVEN", + "brand": "Intermarché" }, "56250003": { - "Nom": "ECOMARCHE SULNIAC", - "Marque": "Intermarché" + "name": "ECOMARCHE SULNIAC", + "brand": "Intermarché" }, "56250004": { - "Nom": "RELAIS SAINT-NOLFF", - "Marque": "Total Access" + "name": "RELAIS SAINT-NOLFF", + "brand": "Total Access" }, "56260001": { - "Nom": "LARDIS", - "Marque": "Leclerc" + "name": "LARDIS", + "brand": "Leclerc" }, "56270001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "56270003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "56270004": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "56270006": { - "Nom": "ECOMARCHE", - "Marque": "Intermarché" + "name": "ECOMARCHE", + "brand": "Intermarché" }, "56270007": { - "Nom": "RELAIS DE LANN BIHOUE", - "Marque": "Total" + "name": "RELAIS DE LANN BIHOUE", + "brand": "Total" }, "56300001": { - "Nom": "Super U PONTIVY", - "Marque": "Système U" + "name": "Super U PONTIVY", + "brand": "Système U" }, "56300002": { - "Nom": "SARL IZANIC", - "Marque": "Total" + "name": "SARL IZANIC", + "brand": "Total" }, "56300003": { - "Nom": "MR SCAVINNER", - "Marque": "Total" + "name": "MR SCAVINNER", + "brand": "Total" }, "56300004": { - "Nom": "LE KERFOURCHETTE", - "Marque": "Total" + "name": "LE KERFOURCHETTE", + "brand": "Total" }, "56300005": { - "Nom": "Intermarché PONTIVY", - "Marque": "Intermarché" + "name": "Intermarché PONTIVY", + "brand": "Intermarché" }, "56300006": { - "Nom": "SAS POLEMAC", - "Marque": "Netto" + "name": "SAS POLEMAC", + "brand": "Netto" }, "56301001": { - "Nom": "PONTIVY-DIS", - "Marque": "Leclerc" + "name": "PONTIVY-DIS", + "brand": "Leclerc" }, "56310001": { - "Nom": "Intermarché BUBRY", - "Marque": "Intermarché" + "name": "Intermarché BUBRY", + "brand": "Intermarché" }, "56320001": { - "Nom": "SARL LE BRIS STATION ELAN", - "Marque": "Elan" + "name": "SARL LE BRIS STATION ELAN", + "brand": "Elan" }, "56320002": { - "Nom": "Carrefour MARKET LE FAOUET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET LE FAOUET", + "brand": "Carrefour Market" }, "56330001": { - "Nom": "Super U PLUVIGNER", - "Marque": "Système U" + "name": "Super U PLUVIGNER", + "brand": "Système U" }, "56340001": { - "Nom": "Super U PLOUHARNEL", - "Marque": "Système U" + "name": "Super U PLOUHARNEL", + "brand": "Système U" }, "56340002": { - "Nom": "Super U CARNAC", - "Marque": "Système U" + "name": "Super U CARNAC", + "brand": "Système U" }, "56340003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "56350002": { - "Nom": "Intermarché RIEUX", - "Marque": "Intermarché" + "name": "Intermarché RIEUX", + "brand": "Intermarché" }, "56350003": { - "Nom": "BRETECHE", - "Marque": "Avia" + "name": "BRETECHE", + "brand": "Avia" }, "56350004": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "56360004": { - "Nom": "Super U BELLE ILE EN MER", - "Marque": "Système U" + "name": "Super U BELLE ILE EN MER", + "brand": "Système U" }, "56370002": { - "Nom": "Super U SARZEAU", - "Marque": "Système U" + "name": "Super U SARZEAU", + "brand": "Système U" }, "56370003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "56370004": { - "Nom": "Carrefour Contact LE TOUR DU PARC", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact LE TOUR DU PARC", + "brand": "Carrefour Contact" }, "56370005": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "56380001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "56380002": { - "Nom": "SAS GURVAL Intermarché", - "Marque": "Intermarché" + "name": "SAS GURVAL Intermarché", + "brand": "Intermarché" }, "56390001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "56400001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "56400002": { - "Nom": "Super U AURAY", - "Marque": "Système U" + "name": "Super U AURAY", + "brand": "Système U" }, "56400005": { - "Nom": "SARL DE LA CHAPELLE", - "Marque": "Total" + "name": "SARL DE LA CHAPELLE", + "brand": "Total" }, "56400006": { - "Nom": "ETS SAVARY SARL", - "Marque": "Elan" + "name": "ETS SAVARY SARL", + "brand": "Elan" }, "56400007": { - "Nom": "ELAUDIS", - "Marque": "Leclerc" + "name": "ELAUDIS", + "brand": "Leclerc" }, "56400010": { - "Nom": "RELAIS PLOUGOUMELEN", - "Marque": "Total" + "name": "RELAIS PLOUGOUMELEN", + "brand": "Total" }, "56410001": { - "Nom": "Intermarché ERDEVEN", - "Marque": "Intermarché" + "name": "Intermarché ERDEVEN", + "brand": "Intermarché" }, "56420002": { - "Nom": "SARL ASM", - "Marque": "Total" + "name": "SARL ASM", + "brand": "Total" }, "56430001": { - "Nom": "Super U MAURON", - "Marque": "Système U" + "name": "Super U MAURON", + "brand": "Système U" }, "56430002": { - "Nom": "GGE BRIAND SARL", - "Marque": "Total" + "name": "GGE BRIAND SARL", + "brand": "Total" }, "56440002": { - "Nom": "Intermarché LANGUIDIC", - "Marque": "Intermarché" + "name": "Intermarché LANGUIDIC", + "brand": "Intermarché" }, "56440003": { - "Nom": "RELAIS DE LANGUIDIC", - "Marque": "Total" + "name": "RELAIS DE LANGUIDIC", + "brand": "Total" }, "56450002": { - "Nom": "SARL AMALLY", - "Marque": "Avia" + "name": "SARL AMALLY", + "brand": "Avia" }, "56450003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "56450004": { - "Nom": "Intermarche", - "Marque": "Intermarché" + "name": "Intermarche", + "brand": "Intermarché" }, "56450005": { - "Nom": "Total Access", - "Marque": "Total Access" + "name": "Total Access", + "brand": "Total Access" }, "56450006": { - "Nom": "CARBUTHEIX THEIX", - "Marque": "Leclerc" + "name": "CARBUTHEIX THEIX", + "brand": "Leclerc" }, "56460002": { - "Nom": "Intermarché SERENT", - "Marque": "Intermarché" + "name": "Intermarché SERENT", + "brand": "Intermarché" }, "56460003": { - "Nom": "CLERTÉ MÉCANIQUE", - "Marque": "Total" + "name": "CLERTÉ MÉCANIQUE", + "brand": "Total" }, "56480001": { - "Nom": "SICARBU OUEST", - "Marque": "Indépendant sans enseigne" + "name": "SICARBU OUEST", + "brand": "Indépendant sans enseigne" }, "56500002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "56500003": { - "Nom": "Intermarché MOREAC", - "Marque": "Intermarché" + "name": "Intermarché MOREAC", + "brand": "Intermarché" }, "56500004": { - "Nom": "Intermarché REGUINY", - "Marque": "Intermarché" + "name": "Intermarché REGUINY", + "brand": "Intermarché" }, "56500005": { - "Nom": "LECLERC MOREAC", - "Marque": "Leclerc" + "name": "LECLERC MOREAC", + "brand": "Leclerc" }, "56520001": { - "Nom": "Super U GUIDEL", - "Marque": "Système U" + "name": "Super U GUIDEL", + "brand": "Système U" }, "56520005": { - "Nom": "RELAIS GUIDEL SUD", - "Marque": "Total" + "name": "RELAIS GUIDEL SUD", + "brand": "Total" }, "56520006": { - "Nom": "RELAIS DE GUIDEL NORD", - "Marque": "Total Access" + "name": "RELAIS DE GUIDEL NORD", + "brand": "Total Access" }, "56530001": { - "Nom": "DORIGAL S.A.", - "Marque": "Leclerc" + "name": "DORIGAL S.A.", + "brand": "Leclerc" }, "56550001": { - "Nom": "Super U BELZ", - "Marque": "Système U" + "name": "Super U BELZ", + "brand": "Système U" }, "56550002": { - "Nom": "MR KERZERHO CHRISTOPHE", - "Marque": "Total" + "name": "MR KERZERHO CHRISTOPHE", + "brand": "Total" }, "56550003": { - "Nom": "SARL ISAFA", - "Marque": "Carrefour Express" + "name": "SARL ISAFA", + "brand": "Carrefour Express" }, "56580001": { - "Nom": "U Express BREHAN", - "Marque": "Système U" + "name": "U Express BREHAN", + "brand": "Système U" }, "56600001": { - "Nom": "SA KEREOL", - "Marque": "Leclerc" + "name": "SA KEREOL", + "brand": "Leclerc" }, "56600002": { - "Nom": "SARL COMBOT", - "Marque": "Avia" + "name": "SARL COMBOT", + "brand": "Avia" }, "56607001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "56610001": { - "Nom": "Super U ARRADON", - "Marque": "Système U" + "name": "Super U ARRADON", + "brand": "Système U" }, "56620001": { - "Nom": "Super U PONT SCORFF", - "Marque": "Système U" + "name": "Super U PONT SCORFF", + "brand": "Système U" }, "56640001": { - "Nom": "Super U ARZON", - "Marque": "Système U" + "name": "Super U ARZON", + "brand": "Système U" }, "56640002": { - "Nom": "Intermarché ARZON", - "Marque": "Intermarché" + "name": "Intermarché ARZON", + "brand": "Intermarché" }, "56650001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "56660001": { - "Nom": "Intermarché ST JEAN BREVELAY", - "Marque": "Intermarché" + "name": "Intermarché ST JEAN BREVELAY", + "brand": "Intermarché" }, "56670001": { - "Nom": "Intermarché PORT-LOUIS", - "Marque": "Intermarché" + "name": "Intermarché PORT-LOUIS", + "brand": "Intermarché" }, "56670003": { - "Nom": "LECLERC RIANTEC", - "Marque": "Leclerc" + "name": "LECLERC RIANTEC", + "brand": "Leclerc" }, "56680001": { - "Nom": "Intermarché PLOUHINEC", - "Marque": "Intermarché" + "name": "Intermarché PLOUHINEC", + "brand": "Intermarché" }, "56690002": { - "Nom": "Intermarché SUPER", - "Marque": "Intermarché" + "name": "Intermarché SUPER", + "brand": "Intermarché" }, "56690004": { - "Nom": "RELAIS DE NOSTANG", - "Marque": "Total Access" + "name": "RELAIS DE NOSTANG", + "brand": "Total Access" }, "56700003": { - "Nom": "SARL GARAGE LE FLOCH", - "Marque": "Total" + "name": "SARL GARAGE LE FLOCH", + "brand": "Total" }, "56700004": { - "Nom": "HENDIS", - "Marque": "Leclerc" + "name": "HENDIS", + "brand": "Leclerc" }, "56700006": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "56700007": { - "Nom": "Leclerc Express Kervignac", - "Marque": "Leclerc" + "name": "Leclerc Express Kervignac", + "brand": "Leclerc" }, "56700008": { - "Nom": "Intermarché HENNEBONT", - "Marque": "Intermarché" + "name": "Intermarché HENNEBONT", + "brand": "Intermarché" }, "56700009": { - "Nom": "GARAGE DUGOR", - "Marque": "Esso" + "name": "GARAGE DUGOR", + "brand": "Esso" }, "56720001": { - "Nom": "SARL DREAN", - "Marque": "Total" + "name": "SARL DREAN", + "brand": "Total" }, "56730001": { - "Nom": "AUTO PASSION DE RHUYS", - "Marque": "Elan" + "name": "AUTO PASSION DE RHUYS", + "brand": "Elan" }, "56760003": { - "Nom": "Carrefour Market SARL Pénestin distribution", - "Marque": "Carrefour Market" + "name": "Carrefour Market SARL Pénestin distribution", + "brand": "Carrefour Market" }, "56770001": { - "Nom": "Station-service communale", - "Marque": "Indépendant sans enseigne" + "name": "Station-service communale", + "brand": "Indépendant sans enseigne" }, "56800001": { - "Nom": "Super U PLOERMEL", - "Marque": "Système U" + "name": "Super U PLOERMEL", + "brand": "Système U" }, "56800003": { - "Nom": "DUPE TROLL PLOERMEL", - "Marque": "Shell" + "name": "DUPE TROLL PLOERMEL", + "brand": "Shell" }, "56800004": { - "Nom": "E.LECLERC_PLOERMEL", - "Marque": "Leclerc" + "name": "E.LECLERC_PLOERMEL", + "brand": "Leclerc" }, "56800005": { - "Nom": "Intermarché PLOERMEL", - "Marque": "Intermarché" + "name": "Intermarché PLOERMEL", + "brand": "Intermarché" }, "56800006": { - "Nom": "RELAIS BROCELIANDE", - "Marque": "Total" + "name": "RELAIS BROCELIANDE", + "brand": "Total" }, "56850001": { - "Nom": "GARAGE COURT SAS", - "Marque": "Elan" + "name": "GARAGE COURT SAS", + "brand": "Elan" }, "56860003": { - "Nom": "Intermarché SENE-VANNES", - "Marque": "Intermarché" + "name": "Intermarché SENE-VANNES", + "brand": "Intermarché" }, "56860004": { - "Nom": "RELAIS ST LAURENT", - "Marque": "Total" + "name": "RELAIS ST LAURENT", + "brand": "Total" }, "56870001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "56880001": { - "Nom": "Intermarché PLOEREN", - "Marque": "Intermarché" + "name": "Intermarché PLOEREN", + "brand": "Intermarché" }, "56890001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "56890003": { - "Nom": "Hyper U ST AVE", - "Marque": "Système U" + "name": "Hyper U ST AVE", + "brand": "Système U" }, "56890004": { - "Nom": "Intermarché ST AVE", - "Marque": "Intermarché" + "name": "Intermarché ST AVE", + "brand": "Intermarché" }, "56910001": { - "Nom": "Super U CARENTOIR", - "Marque": "Système U" + "name": "Super U CARENTOIR", + "brand": "Système U" }, "56920001": { - "Nom": "Intermarché NOYAL PONTIVY", - "Marque": "Intermarché" + "name": "Intermarché NOYAL PONTIVY", + "brand": "Intermarché" }, "56930001": { - "Nom": "Intermarché PLUMELIAU", - "Marque": "Intermarché" + "name": "Intermarché PLUMELIAU", + "brand": "Intermarché" }, "56950002": { - "Nom": "SAS CRACALY Intermarché", - "Marque": "Intermarché" + "name": "SAS CRACALY Intermarché", + "brand": "Intermarché" }, "57000001": { - "Nom": "Supermarché Match METZ SABLON", - "Marque": "Supermarché Match" + "name": "Supermarché Match METZ SABLON", + "brand": "Supermarché Match" }, "57000002": { - "Nom": "MR JOVANIC", - "Marque": "Total" + "name": "MR JOVANIC", + "brand": "Total" }, "57000005": { - "Nom": "M.MIJATOVIC VELIBOR", - "Marque": "Total" + "name": "M.MIJATOVIC VELIBOR", + "brand": "Total" }, "57000008": { - "Nom": "ESSO METZ CENTRE", - "Marque": "Esso Express" + "name": "ESSO METZ CENTRE", + "brand": "Esso Express" }, "57000009": { - "Nom": "ESSO MAGNY", - "Marque": "Esso Express" + "name": "ESSO MAGNY", + "brand": "Esso Express" }, "57000011": { - "Nom": "Intermarché METZ-MAGNY", - "Marque": "Intermarché" + "name": "Intermarché METZ-MAGNY", + "brand": "Intermarché" }, "57000017": { - "Nom": "Agip Metz pontiffroy sarl M&D", - "Marque": "Agip" + "name": "Agip Metz pontiffroy sarl M&D", + "brand": "Agip" }, "57000021": { - "Nom": "RELAIS ST PRIVAT", - "Marque": "Total" + "name": "RELAIS ST PRIVAT", + "brand": "Total" }, "57000022": { - "Nom": "RELAIS PORT MAZEROLLE", - "Marque": "Total Access" + "name": "RELAIS PORT MAZEROLLE", + "brand": "Total Access" }, "57050001": { - "Nom": "Supermarché Match METZ LORRY", - "Marque": "Supermarché Match" + "name": "Supermarché Match METZ LORRY", + "brand": "Supermarché Match" }, "57050002": { - "Nom": "AUCHAN SUPERMARCHE METZ PATROTTE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE METZ PATROTTE", + "brand": "Auchan" }, "57070001": { - "Nom": "AUCHAN SUPERMARCHE PLANTIERES", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE PLANTIERES", + "brand": "Auchan" }, "57070003": { - "Nom": "SARL BMCV", - "Marque": "Avia" + "name": "SARL BMCV", + "brand": "Avia" }, "57070005": { - "Nom": "ESSO BORNY", - "Marque": "Esso Express" + "name": "ESSO BORNY", + "brand": "Esso Express" }, "57070011": { - "Nom": "RELAIS DES PLANTIERES", - "Marque": "Total" + "name": "RELAIS DES PLANTIERES", + "brand": "Total" }, "57071001": { - "Nom": "CORA METZ TECHNOPOLE", - "Marque": "CORA" + "name": "CORA METZ TECHNOPOLE", + "brand": "CORA" }, "57100001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "57100002": { - "Nom": "Carrefour Thionville", - "Marque": "Carrefour" + "name": "Carrefour Thionville", + "brand": "Carrefour" }, "57100006": { - "Nom": "S.A.S SOLORMAG", - "Marque": "Leclerc" + "name": "S.A.S SOLORMAG", + "brand": "Leclerc" }, "57100007": { - "Nom": "RELAIS ROND POINT MERLIN", - "Marque": "Total" + "name": "RELAIS ROND POINT MERLIN", + "brand": "Total" }, "57100008": { - "Nom": "RELAIS DE THIONVILLE", - "Marque": "Total" + "name": "RELAIS DE THIONVILLE", + "brand": "Total" }, "57110001": { - "Nom": "LC AUTOMOBILES", - "Marque": "Avia" + "name": "LC AUTOMOBILES", + "brand": "Avia" }, "57117001": { - "Nom": "Station Jean Luc PAWLAK", - "Marque": "Avia" + "name": "Station Jean Luc PAWLAK", + "brand": "Avia" }, "57120001": { - "Nom": "PHILIPPE DEHLINGER", - "Marque": "Total" + "name": "PHILIPPE DEHLINGER", + "brand": "Total" }, "57120003": { - "Nom": "Intermarché SAS CEDUGO", - "Marque": "Intermarché" + "name": "Intermarché SAS CEDUGO", + "brand": "Intermarché" }, "57120005": { - "Nom": "ROMBASDIS", - "Marque": "Leclerc" + "name": "ROMBASDIS", + "brand": "Leclerc" }, "57124001": { - "Nom": "RELAIS DE METZ SAINT PRIVAT", - "Marque": "Total" + "name": "RELAIS DE METZ SAINT PRIVAT", + "brand": "Total" }, "57130001": { - "Nom": "Supermarché Match ARS SUR MOSELLE", - "Marque": "Supermarché Match" + "name": "Supermarché Match ARS SUR MOSELLE", + "brand": "Supermarché Match" }, "57130003": { - "Nom": "ESSO ARS", - "Marque": "Esso Express" + "name": "ESSO ARS", + "brand": "Esso Express" }, "57130004": { - "Nom": "RELAIS DE JOUY", - "Marque": "Total" + "name": "RELAIS DE JOUY", + "brand": "Total" }, "57140001": { - "Nom": "AUCHAN WOIPPY", - "Marque": "Auchan" + "name": "AUCHAN WOIPPY", + "brand": "Auchan" }, "57140002": { - "Nom": "ESSO SERVICE LA MAXE", - "Marque": "Esso" + "name": "ESSO SERVICE LA MAXE", + "brand": "Esso" }, "57140003": { - "Nom": "ESSO SAINT-REMY", - "Marque": "Esso" + "name": "ESSO SAINT-REMY", + "brand": "Esso" }, "57150002": { - "Nom": "ESSO ADELE", - "Marque": "Esso Express" + "name": "ESSO ADELE", + "brand": "Esso Express" }, "57150005": { - "Nom": "SA VENARGE", - "Marque": "Intermarché" + "name": "SA VENARGE", + "brand": "Intermarché" }, "57150006": { - "Nom": "Leclerc Croixdis", - "Marque": "Leclerc" + "name": "Leclerc Croixdis", + "brand": "Leclerc" }, "57155002": { - "Nom": "MAR-DIS SAS", - "Marque": "Leclerc" + "name": "MAR-DIS SAS", + "brand": "Leclerc" }, "57157001": { - "Nom": "ESSO DE LA BASE", - "Marque": "Esso Express" + "name": "ESSO DE LA BASE", + "brand": "Esso Express" }, "57160001": { - "Nom": "CORA MOULINS LES METZ", - "Marque": "CORA" + "name": "CORA MOULINS LES METZ", + "brand": "CORA" }, "57160002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "57160006": { - "Nom": "RELAIS LA RAMUSSE", - "Marque": "Total Access" + "name": "RELAIS LA RAMUSSE", + "brand": "Total Access" }, "57170001": { - "Nom": "Supermarché Match CHÂTEAU SALINS", - "Marque": "Supermarché Match" + "name": "Supermarché Match CHÂTEAU SALINS", + "brand": "Supermarché Match" }, "57170002": { - "Nom": "ESSO LA SEILLE", - "Marque": "Esso Express" + "name": "ESSO LA SEILLE", + "brand": "Esso Express" }, "57185002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "57185003": { - "Nom": "Sarl Contact DE L'ORNE", - "Marque": "Carrefour Contact" + "name": "Sarl Contact DE L'ORNE", + "brand": "Carrefour Contact" }, "57190001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "57200001": { - "Nom": "GARAGE SCHWINDT", - "Marque": "Total" + "name": "GARAGE SCHWINDT", + "brand": "Total" }, "57200002": { - "Nom": "ESSO SARREGUEMINES", - "Marque": "Esso Express" + "name": "ESSO SARREGUEMINES", + "brand": "Esso Express" }, "57200004": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "57210001": { - "Nom": "ALLO EUROPE SERVICES", - "Marque": "Total" + "name": "ALLO EUROPE SERVICES", + "brand": "Total" }, "57220002": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "57220005": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "57230001": { - "Nom": "Supermarché Match BITCHE", - "Marque": "Supermarché Match" + "name": "Supermarché Match BITCHE", + "brand": "Supermarché Match" }, "57230003": { - "Nom": "Intermarché BITCHE", - "Marque": "Intermarché" + "name": "Intermarché BITCHE", + "brand": "Intermarché" }, "57255001": { - "Nom": "Cora Ste Marie aux Chênes", - "Marque": "CORA" + "name": "Cora Ste Marie aux Chênes", + "brand": "CORA" }, "57260001": { - "Nom": "Supermarché Match DIEUZE", - "Marque": "Supermarché Match" + "name": "Supermarché Match DIEUZE", + "brand": "Supermarché Match" }, "57260003": { - "Nom": "STATION DE LA SEILLE", - "Marque": "Avia" + "name": "STATION DE LA SEILLE", + "brand": "Avia" }, "57260005": { - "Nom": "Intermarché SAS CYDIELLE", - "Marque": "Intermarché" + "name": "Intermarché SAS CYDIELLE", + "brand": "Intermarché" }, "57270001": { - "Nom": "ETS BORDONI ET CIE SARL", - "Marque": "Total" + "name": "ETS BORDONI ET CIE SARL", + "brand": "Total" }, "57270002": { - "Nom": "SARL GMS AUTO", - "Marque": "Total" + "name": "SARL GMS AUTO", + "brand": "Total" }, "57280001": { - "Nom": "CENTRE COMMERCIAL", - "Marque": "Auchan" + "name": "CENTRE COMMERCIAL", + "brand": "Auchan" }, "57280003": { - "Nom": "SA CHAT", - "Marque": "Leclerc" + "name": "SA CHAT", + "brand": "Leclerc" }, "57290001": { - "Nom": "SAS FIFAM", - "Marque": "Leclerc" + "name": "SAS FIFAM", + "brand": "Leclerc" }, "57300001": { - "Nom": "Supermarché Match MONDELANGE", - "Marque": "Supermarché Match" + "name": "Supermarché Match MONDELANGE", + "brand": "Supermarché Match" }, "57300002": { - "Nom": "SAS GARAGE OURY", - "Marque": "Total" + "name": "SAS GARAGE OURY", + "brand": "Total" }, "57300005": { - "Nom": "RELAIS HAGONDANGE", - "Marque": "Total" + "name": "RELAIS HAGONDANGE", + "brand": "Total" }, "57303001": { - "Nom": "CORA MONDELANGE", - "Marque": "CORA" + "name": "CORA MONDELANGE", + "brand": "CORA" }, "57310001": { - "Nom": "Supermarché Match GUENANGE", - "Marque": "Supermarché Match" + "name": "Supermarché Match GUENANGE", + "brand": "Supermarché Match" }, "57310002": { - "Nom": "Intermarché GUENANGE", - "Marque": "Intermarché" + "name": "Intermarché GUENANGE", + "brand": "Intermarché" }, "57320002": { - "Nom": "Intermarché BOUZONVILLE", - "Marque": "Intermarché" + "name": "Intermarché BOUZONVILLE", + "brand": "Intermarché" }, "57320003": { - "Nom": "STATION DATS BOUZONVILLE/VAUDRECHING", - "Marque": "Colruyt" + "name": "STATION DATS BOUZONVILLE/VAUDRECHING", + "brand": "Colruyt" }, "57340003": { - "Nom": "Intermarché MORHANGE", - "Marque": "Intermarché" + "name": "Intermarché MORHANGE", + "brand": "Intermarché" }, "57350001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "57365001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "57370001": { - "Nom": "ESSO VAUBAN", - "Marque": "Esso Express" + "name": "ESSO VAUBAN", + "brand": "Esso Express" }, "57370003": { - "Nom": "E. Leclerc Express PHALSBOURG", - "Marque": "Leclerc" + "name": "E. Leclerc Express PHALSBOURG", + "brand": "Leclerc" }, "57370004": { - "Nom": "Intermarché PHALSBOURG", - "Marque": "Intermarché" + "name": "Intermarché PHALSBOURG", + "brand": "Intermarché" }, "57380001": { - "Nom": "AUCHAN SUPERMARCHE FAULQUEMONT", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE FAULQUEMONT", + "brand": "Auchan" }, "57380002": { - "Nom": "STATION U FAULQUEMONT", - "Marque": "Système U" + "name": "STATION U FAULQUEMONT", + "brand": "Système U" }, "57400001": { - "Nom": "hypermarché CORA", - "Marque": "CORA" + "name": "hypermarché CORA", + "brand": "CORA" }, "57400003": { - "Nom": "STATION RN 4", - "Marque": "Total Access" + "name": "STATION RN 4", + "brand": "Total Access" }, "57400005": { - "Nom": "ESSO SARREBOURGEOISE", - "Marque": "Esso Express" + "name": "ESSO SARREBOURGEOISE", + "brand": "Esso Express" }, "57400007": { - "Nom": "Station Avia", - "Marque": "Avia" + "name": "Station Avia", + "brand": "Avia" }, "57400009": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "57402001": { - "Nom": "SARREDIS", - "Marque": "Leclerc" + "name": "SARREDIS", + "brand": "Leclerc" }, "57410001": { - "Nom": "LA STATION U", - "Marque": "Système U" + "name": "LA STATION U", + "brand": "Système U" }, "57420002": { - "Nom": "GARAGE BECKER / SASU JP SPORT", - "Marque": "Total" + "name": "GARAGE BECKER / SASU JP SPORT", + "brand": "Total" }, "57420005": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "57430001": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "57430003": { - "Nom": "GARAGE AMEGEE, STATION Total", - "Marque": "Total" + "name": "GARAGE AMEGEE, STATION Total", + "brand": "Total" }, "57450001": { - "Nom": "AGIP FAREBERSVILLER", - "Marque": "Agip" + "name": "AGIP FAREBERSVILLER", + "brand": "Agip" }, "57450003": { - "Nom": "Auchan FAREBERSVILLER", - "Marque": "Auchan" + "name": "Auchan FAREBERSVILLER", + "brand": "Auchan" }, "57470003": { - "Nom": "SAS MAELOU", - "Marque": "Netto" + "name": "SAS MAELOU", + "brand": "Netto" }, "57500001": { - "Nom": "KL DISTRIBUTION", - "Marque": "Total" + "name": "KL DISTRIBUTION", + "brand": "Total" }, "57500002": { - "Nom": "SUPERMARCHE MATCH", - "Marque": "Supermarché Match" + "name": "SUPERMARCHE MATCH", + "brand": "Supermarché Match" }, "57510002": { - "Nom": "032 DATS PUTTELANGE AUX LACS", - "Marque": "Colruyt" + "name": "032 DATS PUTTELANGE AUX LACS", + "brand": "Colruyt" }, "57520001": { - "Nom": "HYPERMARCHE RECORD", - "Marque": "CORA" + "name": "HYPERMARCHE RECORD", + "brand": "CORA" }, "57525001": { - "Nom": "Super U Talange", - "Marque": "Système U" + "name": "Super U Talange", + "brand": "Système U" }, "57530001": { - "Nom": "Intermarché SAS GALAN", - "Marque": "Intermarché Contact" + "name": "Intermarché SAS GALAN", + "brand": "Intermarché Contact" }, "57580001": { - "Nom": "GARAGE FERRY", - "Marque": "Total" + "name": "GARAGE FERRY", + "brand": "Total" }, "57580002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "57600002": { - "Nom": "ESSO DE GUISE", - "Marque": "Esso Express" + "name": "ESSO DE GUISE", + "brand": "Esso Express" }, "57600003": { - "Nom": "ESSO DIETSCH", - "Marque": "Esso Express" + "name": "ESSO DIETSCH", + "brand": "Esso Express" }, "57600005": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "57600014": { - "Nom": "SUPER U OETING", - "Marque": "Système U" + "name": "SUPER U OETING", + "brand": "Système U" }, "57600015": { - "Nom": "RELAIS FORBACH", - "Marque": "Total Access" + "name": "RELAIS FORBACH", + "brand": "Total Access" }, "57620002": { - "Nom": "SAS JUDUKO", - "Marque": "Intermarché" + "name": "SAS JUDUKO", + "brand": "Intermarché" }, "57650001": { - "Nom": "Super U FONTOY", - "Marque": "Système U" + "name": "Super U FONTOY", + "brand": "Système U" }, "57660001": { - "Nom": "GARAGE GEORGES SARL", - "Marque": "Total" + "name": "GARAGE GEORGES SARL", + "brand": "Total" }, "57700001": { - "Nom": "AUCHAN SUPERMARCHE HAYANGE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE HAYANGE", + "brand": "Auchan" }, "57700002": { - "Nom": "ESSO HAYANGE", - "Marque": "Esso Express" + "name": "ESSO HAYANGE", + "brand": "Esso Express" }, "57710001": { - "Nom": "Intermarché AUMETZ", - "Marque": "Intermarché" + "name": "Intermarché AUMETZ", + "brand": "Intermarché" }, "57730001": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "57740003": { - "Nom": "COJEANCY SARL", - "Marque": "Avia" + "name": "COJEANCY SARL", + "brand": "Avia" }, "57740004": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "57740005": { - "Nom": "STATION SERVICE SHELL", - "Marque": "Shell" + "name": "STATION SERVICE SHELL", + "brand": "Shell" }, "57740007": { - "Nom": "RELAIS SARRE MOSELLE", - "Marque": "Total Access" + "name": "RELAIS SARRE MOSELLE", + "brand": "Total Access" }, "57740008": { - "Nom": "BP LONGEVILLE SUD", - "Marque": "BP" + "name": "BP LONGEVILLE SUD", + "brand": "BP" }, "57790001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché" + "name": "Intermarché Contact", + "brand": "Intermarché" }, "57800001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "57800002": { - "Nom": "ESSO BETTING", - "Marque": "Esso Express" + "name": "ESSO BETTING", + "brand": "Esso Express" }, "57800003": { - "Nom": "SARL GARAGE MAHOU", - "Marque": "Total" + "name": "SARL GARAGE MAHOU", + "brand": "Total" }, "57804001": { - "Nom": "FREYDIS", - "Marque": "Leclerc" + "name": "FREYDIS", + "brand": "Leclerc" }, "57850001": { - "Nom": "Station Erb & Fils", - "Marque": "Avia" + "name": "Station Erb & Fils", + "brand": "Avia" }, "57855003": { - "Nom": "A4 Aire de Metz", - "Marque": "Total" + "name": "A4 Aire de Metz", + "brand": "Total" }, "57910002": { - "Nom": "Super U hambach", - "Marque": "Système U" + "name": "Super U hambach", + "brand": "Système U" }, "57930002": { - "Nom": "GARAGE RINGWALD SAS", - "Marque": "Total" + "name": "GARAGE RINGWALD SAS", + "brand": "Total" }, "57940001": { - "Nom": "Metzervisse Contact", - "Marque": "Carrefour Contact" + "name": "Metzervisse Contact", + "brand": "Carrefour Contact" }, "57950002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "57970002": { - "Nom": "Sas katric", - "Marque": "Intermarché" + "name": "Sas katric", + "brand": "Intermarché" }, "57980001": { - "Nom": "DATS DIEBLING", - "Marque": "Colruyt" + "name": "DATS DIEBLING", + "brand": "Colruyt" }, "58000001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "58000002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "58000005": { - "Nom": "AVIA LES DUCS", - "Marque": "Avia" + "name": "AVIA LES DUCS", + "brand": "Avia" }, "58000006": { - "Nom": "Intermarché CHALLUY", - "Marque": "Intermarché" + "name": "Intermarché CHALLUY", + "brand": "Intermarché" }, "58000007": { - "Nom": "Intermarché NEVERS", - "Marque": "Intermarché" + "name": "Intermarché NEVERS", + "brand": "Intermarché" }, "58000010": { - "Nom": "ESSO EXPRESS NEVERS COUBERTIN", - "Marque": "Esso Express" + "name": "ESSO EXPRESS NEVERS COUBERTIN", + "brand": "Esso Express" }, "58000011": { - "Nom": "RELAIS PETIT CANAL", - "Marque": "Total" + "name": "RELAIS PETIT CANAL", + "brand": "Total" }, "58000012": { - "Nom": "STATION LECLERC Saint-Éloi", - "Marque": "Leclerc" + "name": "STATION LECLERC Saint-Éloi", + "brand": "Leclerc" }, "58110001": { - "Nom": "GARAGE DU BAZOIS", - "Marque": "Avia" + "name": "GARAGE DU BAZOIS", + "brand": "Avia" }, "58120001": { - "Nom": "ATAC CHATEAU CHINON", - "Marque": "Atac" + "name": "ATAC CHATEAU CHINON", + "brand": "Atac" }, "58130001": { - "Nom": "Intermarché GUERIGNY", - "Marque": "Intermarché" + "name": "Intermarché GUERIGNY", + "brand": "Intermarché" }, "58140001": { - "Nom": "MAXIMARCHE LORMES", - "Marque": "Maximarché" + "name": "MAXIMARCHE LORMES", + "brand": "Maximarché" }, "58150003": { - "Nom": "RELAIS DES VIGNOBLES", - "Marque": "Total" + "name": "RELAIS DES VIGNOBLES", + "brand": "Total" }, "58160001": { - "Nom": "ATAC IMPHY", - "Marque": "Atac" + "name": "ATAC IMPHY", + "brand": "Atac" }, "58160002": { - "Nom": "IMPHY AUTOMOBILES", - "Marque": "Total" + "name": "IMPHY AUTOMOBILES", + "brand": "Total" }, "58160003": { - "Nom": "Intermarché IMPHY", - "Marque": "Intermarché" + "name": "Intermarché IMPHY", + "brand": "Intermarché" }, "58170001": { - "Nom": "BI1 LUZY", - "Marque": "BI1" + "name": "BI1 LUZY", + "brand": "BI1" }, "58180001": { - "Nom": "Carrefour NEVERS", - "Marque": "Carrefour" + "name": "Carrefour NEVERS", + "brand": "Carrefour" }, "58190001": { - "Nom": "STATION U SARL BILLAND RAFFAITIN", - "Marque": "Système U" + "name": "STATION U SARL BILLAND RAFFAITIN", + "brand": "Système U" }, "58200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "58200002": { - "Nom": "Carrefour Market RN7", - "Marque": "Carrefour Market" + "name": "Carrefour Market RN7", + "brand": "Carrefour Market" }, "58200003": { - "Nom": "AUCHAN COSNE SUR LOIRE", - "Marque": "Auchan" + "name": "AUCHAN COSNE SUR LOIRE", + "brand": "Auchan" }, "58200005": { - "Nom": "Distri service cosne sur loire", - "Marque": "Leader Price" + "name": "Distri service cosne sur loire", + "brand": "Leader Price" }, "58200007": { - "Nom": "sas empire automobiles", - "Marque": "Total" + "name": "sas empire automobiles", + "brand": "Total" }, "58210001": { - "Nom": "MAXIMARCHE VARZY", - "Marque": "Maximarché" + "name": "MAXIMARCHE VARZY", + "brand": "Maximarché" }, "58220001": { - "Nom": "Intermarché Contact DONZY", - "Marque": "Intermarché" + "name": "Intermarché Contact DONZY", + "brand": "Intermarché" }, "58230001": { - "Nom": "ROUSSEAU CARBURANT", - "Marque": "Indépendant sans enseigne" + "name": "ROUSSEAU CARBURANT", + "brand": "Indépendant sans enseigne" }, "58230002": { - "Nom": "ROUSSEAU CARBURANT", - "Marque": "Indépendant sans enseigne" + "name": "ROUSSEAU CARBURANT", + "brand": "Indépendant sans enseigne" }, "58240001": { - "Nom": "ATAC ST PIERRE LE MOUTIER", - "Marque": "Atac" + "name": "ATAC ST PIERRE LE MOUTIER", + "brand": "Atac" }, "58240003": { - "Nom": "RELAIS SAINT IMBERT", - "Marque": "Total Access" + "name": "RELAIS SAINT IMBERT", + "brand": "Total Access" }, "58260001": { - "Nom": "Intermarché LA MACHINE", - "Marque": "Intermarché" + "name": "Intermarché LA MACHINE", + "brand": "Intermarché" }, "58270001": { - "Nom": "Intermarché SAINT BENIN D'AZY", - "Marque": "Intermarché Contact" + "name": "Intermarché SAINT BENIN D'AZY", + "brand": "Intermarché Contact" }, "58290001": { - "Nom": "ATAC MOULINS ENGILBERT", - "Marque": "Atac" + "name": "ATAC MOULINS ENGILBERT", + "brand": "Atac" }, "58300001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "58300003": { - "Nom": "AGIP ST LEGER DES VIGNES RN", - "Marque": "Agip" + "name": "AGIP ST LEGER DES VIGNES RN", + "brand": "Agip" }, "58300004": { - "Nom": "DECIZE DISTRIBUTION", - "Marque": "Leclerc" + "name": "DECIZE DISTRIBUTION", + "brand": "Leclerc" }, "58300005": { - "Nom": "Intermarché DECIZE", - "Marque": "Intermarché" + "name": "Intermarché DECIZE", + "brand": "Intermarché" }, "58310001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "58320001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "58330001": { - "Nom": "MAXIMARCHE ST SAULGE", - "Marque": "Maximarché" + "name": "MAXIMARCHE ST SAULGE", + "brand": "Maximarché" }, "58340001": { - "Nom": "ATAC CERCY LA TOUR", - "Marque": "Atac" + "name": "ATAC CERCY LA TOUR", + "brand": "Atac" }, "58390003": { - "Nom": "SA MAELANN - Intermarché Dornes", - "Marque": "Intermarché Contact" + "name": "SA MAELANN - Intermarché Dornes", + "brand": "Intermarché Contact" }, "58400001": { - "Nom": "AUCHAN LA CHARITE SUR LOIRE", - "Marque": "Auchan" + "name": "AUCHAN LA CHARITE SUR LOIRE", + "brand": "Auchan" }, "58400002": { - "Nom": "Intermarché LA CHARITE S/LOIRE", - "Marque": "Intermarché" + "name": "Intermarché LA CHARITE S/LOIRE", + "brand": "Intermarché" }, "58410001": { - "Nom": "STATION DU NOHAIN", - "Marque": "Mairie" + "name": "STATION DU NOHAIN", + "brand": "Mairie" }, "58420001": { - "Nom": "Station-service de Brinon sur Beuvron", - "Marque": "CCVB" + "name": "Station-service de Brinon sur Beuvron", + "brand": "CCVB" }, "58470003": { - "Nom": "Intermarché", - "Marque": "Intermarché Contact" + "name": "Intermarché", + "brand": "Intermarché Contact" }, "58470004": { - "Nom": "AVIA MAGNY COURS", - "Marque": "Avia" + "name": "AVIA MAGNY COURS", + "brand": "Avia" }, "58500001": { - "Nom": "AUCHAN CLAMECY", - "Marque": "Auchan" + "name": "AUCHAN CLAMECY", + "brand": "Auchan" }, "58500003": { - "Nom": "E.LECLERC CLAMECY", - "Marque": "Leclerc" + "name": "E.LECLERC CLAMECY", + "brand": "Leclerc" }, "58530001": { - "Nom": "STATION ETS GUILLEMEAU SARL", - "Marque": "Esso" + "name": "STATION ETS GUILLEMEAU SARL", + "brand": "Esso" }, "58600002": { - "Nom": "Intermarché FOURCHAMBAULT", - "Marque": "Intermarché" + "name": "Intermarché FOURCHAMBAULT", + "brand": "Intermarché" }, "58600004": { - "Nom": "ESSO EXPRESS FOURCHAMBAULT L ESCALE", - "Marque": "Esso Express" + "name": "ESSO EXPRESS FOURCHAMBAULT L ESCALE", + "brand": "Esso Express" }, "58640001": { - "Nom": "Intermarché VARENNES VAUZELLES", - "Marque": "Intermarché" + "name": "Intermarché VARENNES VAUZELLES", + "brand": "Intermarché" }, "58640004": { - "Nom": "RELAIS DE VARENNES", - "Marque": "Total" + "name": "RELAIS DE VARENNES", + "brand": "Total" }, "58660001": { - "Nom": "NEVERS DISTRIBUTION", - "Marque": "Leclerc" + "name": "NEVERS DISTRIBUTION", + "brand": "Leclerc" }, "58700002": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "58800001": { - "Nom": "ATAC CORBIGNY", - "Marque": "Atac" + "name": "ATAC CORBIGNY", + "brand": "Atac" }, "58800002": { - "Nom": "WELDOM CORBIGNY", - "Marque": "Weldom" + "name": "WELDOM CORBIGNY", + "brand": "Weldom" }, "59000009": { - "Nom": "ESSO MONTEBELLO FLANDRES", - "Marque": "Esso Express" + "name": "ESSO MONTEBELLO FLANDRES", + "brand": "Esso Express" }, "59000010": { - "Nom": "ESSO ST SAUVEUR", - "Marque": "Esso Express" + "name": "ESSO ST SAUVEUR", + "brand": "Esso Express" }, "59000016": { - "Nom": "RELAIS ESQUERMES", - "Marque": "Total" + "name": "RELAIS ESQUERMES", + "brand": "Total" }, "59000017": { - "Nom": "RELAIS LILLE DOREZ", - "Marque": "Total Access" + "name": "RELAIS LILLE DOREZ", + "brand": "Total Access" }, "59000018": { - "Nom": "RELAIS DE L'EPINETTE 59", - "Marque": "Total Access" + "name": "RELAIS DE L'EPINETTE 59", + "brand": "Total Access" }, "59000019": { - "Nom": "RELAIS LILLE TURENNE", - "Marque": "Total Access" + "name": "RELAIS LILLE TURENNE", + "brand": "Total Access" }, "59000020": { - "Nom": "RELAIS D'HELLEMMES", - "Marque": "Total Access" + "name": "RELAIS D'HELLEMMES", + "brand": "Total Access" }, "59100003": { - "Nom": "ESSO NATIONS UNIES", - "Marque": "Esso Express" + "name": "ESSO NATIONS UNIES", + "brand": "Esso Express" }, "59100011": { - "Nom": "RELAIS ROUBAIX NATIONS UNIES", - "Marque": "Total" + "name": "RELAIS ROUBAIX NATIONS UNIES", + "brand": "Total" }, "59100012": { - "Nom": "RELAIS DE BEAUMONT", - "Marque": "Total" + "name": "RELAIS DE BEAUMONT", + "brand": "Total" }, "59110001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59110005": { - "Nom": "RELAIS LILLE PERIPHERIQUE", - "Marque": "Total Access" + "name": "RELAIS LILLE PERIPHERIQUE", + "brand": "Total Access" }, "59110006": { - "Nom": "RELAIS DU PARC", - "Marque": "Total Access" + "name": "RELAIS DU PARC", + "brand": "Total Access" }, "59111001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59112002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59113001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59113006": { - "Nom": "Centre E.LECLERC", - "Marque": "Leclerc" + "name": "Centre E.LECLERC", + "brand": "Leclerc" }, "59113007": { - "Nom": "Aire de Phalempin-Est", - "Marque": "Avia" + "name": "Aire de Phalempin-Est", + "brand": "Avia" }, "59113008": { - "Nom": "RELAIS PHALEMPIN", - "Marque": "Total" + "name": "RELAIS PHALEMPIN", + "brand": "Total" }, "59113009": { - "Nom": "RELAIS SECLIN EPINETTE", - "Marque": "Total Access" + "name": "RELAIS SECLIN EPINETTE", + "brand": "Total Access" }, "59114001": { - "Nom": "AIRE DE SAINT ELOI", - "Marque": "CARAUTOROUTES" + "name": "AIRE DE SAINT ELOI", + "brand": "CARAUTOROUTES" }, "59114003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59114004": { - "Nom": "SUPER U TERDEGHEM", - "Marque": "Système U" + "name": "SUPER U TERDEGHEM", + "brand": "Système U" }, "59114005": { - "Nom": "RELAIS SAINT LAURENT", - "Marque": "Total" + "name": "RELAIS SAINT LAURENT", + "brand": "Total" }, "59115001": { - "Nom": "AUCHAN LEERS", - "Marque": "Auchan" + "name": "AUCHAN LEERS", + "brand": "Auchan" }, "59116001": { - "Nom": "SUPER U HOUPLINES", - "Marque": "Système U" + "name": "SUPER U HOUPLINES", + "brand": "Système U" }, "59118001": { - "Nom": "Supermarché Match WAMBRECHIES", - "Marque": "Supermarché Match" + "name": "Supermarché Match WAMBRECHIES", + "brand": "Supermarché Match" }, "59119003": { - "Nom": "RELAIS WAZIERS LES TERRILS", - "Marque": "Total Access" + "name": "RELAIS WAZIERS LES TERRILS", + "brand": "Total Access" }, "59120002": { - "Nom": "RELAIS LOOS LES LILLE", - "Marque": "Total Access" + "name": "RELAIS LOOS LES LILLE", + "brand": "Total Access" }, "59121002": { - "Nom": "RELAIS HAULCHIN CX STE MARIE", - "Marque": "Total Access" + "name": "RELAIS HAULCHIN CX STE MARIE", + "brand": "Total Access" }, "59122001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "59123001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59125001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59125003": { - "Nom": "DUMEZ", - "Marque": "Total" + "name": "DUMEZ", + "brand": "Total" }, "59125004": { - "Nom": "RELAIS D HURTEBISE", - "Marque": "Total" + "name": "RELAIS D HURTEBISE", + "brand": "Total" }, "59128002": { - "Nom": "Carrefour DOUAI - FLERS", - "Marque": "Carrefour" + "name": "Carrefour DOUAI - FLERS", + "brand": "Carrefour" }, "59129001": { - "Nom": "Supermarché Match AVESNES LES AUBERT", - "Marque": "Supermarché Match" + "name": "Supermarché Match AVESNES LES AUBERT", + "brand": "Supermarché Match" }, "59129003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59130001": { - "Nom": "ESSO HIPPODROME", - "Marque": "Esso Express" + "name": "ESSO HIPPODROME", + "brand": "Esso Express" }, "59130002": { - "Nom": "Intermarché LAMBERSART", - "Marque": "Intermarché" + "name": "Intermarché LAMBERSART", + "brand": "Intermarché" }, "59132001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché" + "name": "Intermarché Contact", + "brand": "Intermarché" }, "59133002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "59135001": { - "Nom": "SA DETA-DIS", - "Marque": "Leclerc" + "name": "SA DETA-DIS", + "brand": "Leclerc" }, "59136001": { - "Nom": "SARL GARAGE DE LA VALLEE", - "Marque": "Total" + "name": "SARL GARAGE DE LA VALLEE", + "brand": "Total" }, "59136002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59138001": { - "Nom": "ETS DUCORNET DEPARIS", - "Marque": "Indépendant sans enseigne" + "name": "ETS DUCORNET DEPARIS", + "brand": "Indépendant sans enseigne" }, "59139001": { - "Nom": "cora wattignies", - "Marque": "CORA" + "name": "cora wattignies", + "brand": "CORA" }, "59141002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "59142001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "59146002": { - "Nom": "RELAIS DE PECQUENCOURT", - "Marque": "Total Access" + "name": "RELAIS DE PECQUENCOURT", + "brand": "Total Access" }, "59148003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "59150002": { - "Nom": "LECLERC WATTRELOS", - "Marque": "Leclerc" + "name": "LECLERC WATTRELOS", + "brand": "Leclerc" }, "59151001": { - "Nom": "M.ROSSIN", - "Marque": "Total Access" + "name": "M.ROSSIN", + "brand": "Total Access" }, "59151002": { - "Nom": "Carrefour Contact ARLEUX", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact ARLEUX", + "brand": "Carrefour Contact" }, "59153001": { - "Nom": "SARL MYKA", - "Marque": "Système U" + "name": "SARL MYKA", + "brand": "Système U" }, "59155007": { - "Nom": "RELAIS FACHES", - "Marque": "Total Access" + "name": "RELAIS FACHES", + "brand": "Total Access" }, "59156002": { - "Nom": "Intermarché LOURCHES", - "Marque": "Intermarché" + "name": "Intermarché LOURCHES", + "brand": "Intermarché" }, "59157002": { - "Nom": "BP BEAUVOIS EN CAMBRESIS", - "Marque": "BP" + "name": "BP BEAUVOIS EN CAMBRESIS", + "brand": "BP" }, "59160002": { - "Nom": "Carrefour LOMME", - "Marque": "Carrefour" + "name": "Carrefour LOMME", + "brand": "Carrefour" }, "59160003": { - "Nom": "SARL PETAF", - "Marque": "Avia" + "name": "SARL PETAF", + "brand": "Avia" }, "59160004": { - "Nom": "Intermarché LOMME", - "Marque": "Intermarché" + "name": "Intermarché LOMME", + "brand": "Intermarché" }, "59161001": { - "Nom": "AUCHAN CAMBRAI", - "Marque": "Auchan" + "name": "AUCHAN CAMBRAI", + "brand": "Auchan" }, "59162001": { - "Nom": "Intermarché OSTRICOURT", - "Marque": "Intermarché" + "name": "Intermarché OSTRICOURT", + "brand": "Intermarché" }, "59163001": { - "Nom": "Carrefour CONDE SUR L ESCAUT", - "Marque": "Carrefour" + "name": "Carrefour CONDE SUR L ESCAUT", + "brand": "Carrefour" }, "59163002": { - "Nom": "SARL RELAIS DU TOURNIQUET", - "Marque": "Total" + "name": "SARL RELAIS DU TOURNIQUET", + "brand": "Total" }, "59166001": { - "Nom": "Intermarché BOUSBECQUE", - "Marque": "Intermarché" + "name": "Intermarché BOUSBECQUE", + "brand": "Intermarché" }, "59167001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59174002": { - "Nom": "RELAIS LA SENTINELLE", - "Marque": "Total" + "name": "RELAIS LA SENTINELLE", + "brand": "Total" }, "59176001": { - "Nom": "Intermarché MASNY", - "Marque": "Intermarché" + "name": "Intermarché MASNY", + "brand": "Intermarché" }, "59179001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "59180001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59182001": { - "Nom": "Intermarché MONTIGNY EN OSTREVEN", - "Marque": "Intermarché" + "name": "Intermarché MONTIGNY EN OSTREVEN", + "brand": "Intermarché" }, "59184002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "59187001": { - "Nom": "Carrefour Market mlb distrib", - "Marque": "Carrefour Market" + "name": "Carrefour Market mlb distrib", + "brand": "Carrefour Market" }, "59190001": { - "Nom": "GARAGE TROLLE", - "Marque": "Total" + "name": "GARAGE TROLLE", + "brand": "Total" }, "59190002": { - "Nom": "Carrefour HAZEBROUCK", - "Marque": "Carrefour" + "name": "Carrefour HAZEBROUCK", + "brand": "Carrefour" }, "59190003": { - "Nom": "S.D.H.", - "Marque": "Leclerc" + "name": "S.D.H.", + "brand": "Leclerc" }, "59190004": { - "Nom": "SUPER U HAZEBROUCK", - "Marque": "Système U" + "name": "SUPER U HAZEBROUCK", + "brand": "Système U" }, "59190005": { - "Nom": "Sarl lemaire", - "Marque": "Elan" + "name": "Sarl lemaire", + "brand": "Elan" }, "59190007": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "59193002": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "59194001": { - "Nom": "Intermarché RACHES", - "Marque": "Intermarché" + "name": "Intermarché RACHES", + "brand": "Intermarché" }, "59197001": { - "Nom": "Supermarché Match AVESNELLES", - "Marque": "Supermarché Match" + "name": "Supermarché Match AVESNELLES", + "brand": "Supermarché Match" }, "59198001": { - "Nom": "STATION GOUTANT", - "Marque": "Elan" + "name": "STATION GOUTANT", + "brand": "Elan" }, "59200003": { - "Nom": "ESSO DE LA MARNE", - "Marque": "Esso Express" + "name": "ESSO DE LA MARNE", + "brand": "Esso Express" }, "59200006": { - "Nom": "Intermarché TOURCOING", - "Marque": "Intermarché" + "name": "Intermarché TOURCOING", + "brand": "Intermarché" }, "59200008": { - "Nom": "RELAIS DE L' EGALITE", - "Marque": "Total" + "name": "RELAIS DE L' EGALITE", + "brand": "Total" }, "59200009": { - "Nom": "STATION AVIA RELAIS DE LA LYS", - "Marque": "Avia" + "name": "STATION AVIA RELAIS DE LA LYS", + "brand": "Avia" }, "59210003": { - "Nom": "Intermarché COUDEKERQUE BRANCHE", - "Marque": "Intermarché" + "name": "Intermarché COUDEKERQUE BRANCHE", + "brand": "Intermarché" }, "59210004": { - "Nom": "Intermarché VIEUX COUDEKERQUE", - "Marque": "Intermarché" + "name": "Intermarché VIEUX COUDEKERQUE", + "brand": "Intermarché" }, "59210005": { - "Nom": "RELAIS COUDEKERQUE BRANCHE FURNES", - "Marque": "Total" + "name": "RELAIS COUDEKERQUE BRANCHE FURNES", + "brand": "Total" }, "59211002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "59216002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "59219001": { - "Nom": "GARAGE HERBERT", - "Marque": "Total" + "name": "GARAGE HERBERT", + "brand": "Total" }, "59221001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59222001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "59223001": { - "Nom": "AUCHAN RONCQ", - "Marque": "Auchan" + "name": "AUCHAN RONCQ", + "brand": "Auchan" }, "59223004": { - "Nom": "RELAIS DE RONCQ", - "Marque": "Total Access" + "name": "RELAIS DE RONCQ", + "brand": "Total Access" }, "59230001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59230002": { - "Nom": "AMANDIS", - "Marque": "Leclerc" + "name": "AMANDIS", + "brand": "Leclerc" }, "59231002": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "59233001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "59237001": { - "Nom": "GARAGE BEVE", - "Marque": "Elan" + "name": "GARAGE BEVE", + "brand": "Elan" }, "59239002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59240001": { - "Nom": "ROSENDAEL-DISTRIBUTION", - "Marque": "Leclerc" + "name": "ROSENDAEL-DISTRIBUTION", + "brand": "Leclerc" }, "59240002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59240003": { - "Nom": "Station BP de l'Europe", - "Marque": "BP" + "name": "Station BP de l'Europe", + "brand": "BP" }, "59242003": { - "Nom": "TEMPLEUVE DISTRIBUTION", - "Marque": "Leclerc" + "name": "TEMPLEUVE DISTRIBUTION", + "brand": "Leclerc" }, "59242006": { - "Nom": "RELAIS GENECH A", - "Marque": "Total" + "name": "RELAIS GENECH A", + "brand": "Total" }, "59243001": { - "Nom": "Intermarché QUAROUBLE", - "Marque": "Intermarché" + "name": "Intermarché QUAROUBLE", + "brand": "Intermarché" }, "59246002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "59250001": { - "Nom": "AUTO B.M.", - "Marque": "Total Access" + "name": "AUTO B.M.", + "brand": "Total Access" }, "59250002": { - "Nom": "Intermarché HALLUIN", - "Marque": "Intermarché" + "name": "Intermarché HALLUIN", + "brand": "Intermarché" }, "59253001": { - "Nom": "Intermarché LA GORGUE", - "Marque": "Intermarché" + "name": "Intermarché LA GORGUE", + "brand": "Intermarché" }, "59260007": { - "Nom": "RELAIS LEZENNES", - "Marque": "Total Access" + "name": "RELAIS LEZENNES", + "brand": "Total Access" }, "59265001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59265002": { - "Nom": "GARCIA SARL", - "Marque": "Esso" + "name": "GARCIA SARL", + "brand": "Esso" }, "59270001": { - "Nom": "ESSO DU STADE", - "Marque": "Esso Express" + "name": "ESSO DU STADE", + "brand": "Esso Express" }, "59270002": { - "Nom": "E.LECLERC BAILLEUL", - "Marque": "Leclerc" + "name": "E.LECLERC BAILLEUL", + "brand": "Leclerc" }, "59270003": { - "Nom": "Intermarché BAILLEUL", - "Marque": "Intermarché" + "name": "Intermarché BAILLEUL", + "brand": "Intermarché" }, "59278003": { - "Nom": "SAS CAUGILE", - "Marque": "Intermarché" + "name": "SAS CAUGILE", + "brand": "Intermarché" }, "59279002": { - "Nom": "SARL LEVANT", - "Marque": "Esso" + "name": "SARL LEVANT", + "brand": "Esso" }, "59280001": { - "Nom": "ESSO GAMBETTA 59", - "Marque": "Esso Express" + "name": "ESSO GAMBETTA 59", + "brand": "Esso Express" }, "59282001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "59286001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59287001": { - "Nom": "Intermarché GUESNAIN", - "Marque": "Intermarché" + "name": "Intermarché GUESNAIN", + "brand": "Intermarché" }, "59290001": { - "Nom": "Carrefour WASQUEHAL", - "Marque": "Carrefour" + "name": "Carrefour WASQUEHAL", + "brand": "Carrefour" }, "59290002": { - "Nom": "ESSO DE LA PILATERIE", - "Marque": "Esso Express" + "name": "ESSO DE LA PILATERIE", + "brand": "Esso Express" }, "59300001": { - "Nom": "Carrefour VALENCIENNES", - "Marque": "Carrefour" + "name": "Carrefour VALENCIENNES", + "brand": "Carrefour" }, "59300005": { - "Nom": "ESSO VALENCIENNES", - "Marque": "Esso Express" + "name": "ESSO VALENCIENNES", + "brand": "Esso Express" }, "59300006": { - "Nom": "STATION SERVICE AUCHAN VALENCIENNES", - "Marque": "Auchan" + "name": "STATION SERVICE AUCHAN VALENCIENNES", + "brand": "Auchan" }, "59300011": { - "Nom": "Auchan supermarche", - "Marque": "Auchan" + "name": "Auchan supermarche", + "brand": "Auchan" }, "59300013": { - "Nom": "E.LECLERC VALENCIENNES", - "Marque": "Leclerc" + "name": "E.LECLERC VALENCIENNES", + "brand": "Leclerc" }, "59300015": { - "Nom": "RELAIS VALENCIENNES", - "Marque": "Total Access" + "name": "RELAIS VALENCIENNES", + "brand": "Total Access" }, "59300016": { - "Nom": "RELAIS DENTELLIERES VALENCIENNES", - "Marque": "Total Access" + "name": "RELAIS DENTELLIERES VALENCIENNES", + "brand": "Total Access" }, "59300021": { - "Nom": "BP VALENCIENNES CROIX DANZIN", - "Marque": "BP" + "name": "BP VALENCIENNES CROIX DANZIN", + "brand": "BP" }, "59310001": { - "Nom": "E.LECLERC", - "Marque": "Leclerc" + "name": "E.LECLERC", + "brand": "Leclerc" }, "59310003": { - "Nom": "SARL FOREDIS Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "SARL FOREDIS Carrefour Contact", + "brand": "Carrefour Contact" }, "59310004": { - "Nom": "Intermarché ORCHIES", - "Marque": "Intermarché" + "name": "Intermarché ORCHIES", + "brand": "Intermarché" }, "59310006": { - "Nom": "Auchan supermarché", - "Marque": "Auchan" + "name": "Auchan supermarché", + "brand": "Auchan" }, "59320001": { - "Nom": "AUCHAN ENGLOS", - "Marque": "Auchan" + "name": "AUCHAN ENGLOS", + "brand": "Auchan" }, "59320004": { - "Nom": "CENTRE LECLERC HALLENNES LEZ HAUBOU", - "Marque": "Leclerc" + "name": "CENTRE LECLERC HALLENNES LEZ HAUBOU", + "brand": "Leclerc" }, "59320005": { - "Nom": "Intermarché EMMERIN", - "Marque": "Intermarché" + "name": "Intermarché EMMERIN", + "brand": "Intermarché" }, "59320006": { - "Nom": "RELAIS D'HALLENNES", - "Marque": "Total Access" + "name": "RELAIS D'HALLENNES", + "brand": "Total Access" }, "59350002": { - "Nom": "ST ANDRE sarl PETAF", - "Marque": "Avia" + "name": "ST ANDRE sarl PETAF", + "brand": "Avia" }, "59360003": { - "Nom": "Intermarché LE CATEAU", - "Marque": "Intermarché" + "name": "Intermarché LE CATEAU", + "brand": "Intermarché" }, "59370002": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "59370004": { - "Nom": "RELAIS MONS EN BAROEUL", - "Marque": "Total Access" + "name": "RELAIS MONS EN BAROEUL", + "brand": "Total Access" }, "59380002": { - "Nom": "ESSO FLANDRES", - "Marque": "Esso Express" + "name": "ESSO FLANDRES", + "brand": "Esso Express" }, "59380005": { - "Nom": "RELAIS DE BIEREN DYCK", - "Marque": "Total Access" + "name": "RELAIS DE BIEREN DYCK", + "brand": "Total Access" }, "59400003": { - "Nom": "ESSO VICTOR HUGO", - "Marque": "Esso Express" + "name": "ESSO VICTOR HUGO", + "brand": "Esso Express" }, "59400004": { - "Nom": "ESSO LIBERTE", - "Marque": "Esso Express" + "name": "ESSO LIBERTE", + "brand": "Esso Express" }, "59400005": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59400006": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "59400007": { - "Nom": "RELAIS ST DRUON", - "Marque": "Total" + "name": "RELAIS ST DRUON", + "brand": "Total" }, "59400008": { - "Nom": "RELAIS DE SELLES", - "Marque": "Total" + "name": "RELAIS DE SELLES", + "brand": "Total" }, "59411001": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "59420002": { - "Nom": "STATION AVIA MOUVAUX RELAIS DES JOUTES", - "Marque": "Avia" + "name": "STATION AVIA MOUVAUX RELAIS DES JOUTES", + "brand": "Avia" }, "59430001": { - "Nom": "Carrefour SAINT POL SUR MER", - "Marque": "Carrefour" + "name": "Carrefour SAINT POL SUR MER", + "brand": "Carrefour" }, "59430002": { - "Nom": "ESSO ST POL SUR MER", - "Marque": "Esso Express" + "name": "ESSO ST POL SUR MER", + "brand": "Esso Express" }, "59440001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59440002": { - "Nom": "ESSO AVESNOISE", - "Marque": "Esso Express" + "name": "ESSO AVESNOISE", + "brand": "Esso Express" }, "59450001": { - "Nom": "Auchan Sin Le Noble", - "Marque": "Auchan" + "name": "Auchan Sin Le Noble", + "brand": "Auchan" }, "59450002": { - "Nom": "ESSO DOUAI", - "Marque": "Esso Express" + "name": "ESSO DOUAI", + "brand": "Esso Express" }, "59450003": { - "Nom": "STATION VERTE", - "Marque": "Indépendant sans enseigne" + "name": "STATION VERTE", + "brand": "Indépendant sans enseigne" }, "59460001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59460002": { - "Nom": "Intermarché JEUMONT", - "Marque": "Intermarché" + "name": "Intermarché JEUMONT", + "brand": "Intermarché" }, "59470002": { - "Nom": "SARL MANU-MECANIC", - "Marque": "Elan" + "name": "SARL MANU-MECANIC", + "brand": "Elan" }, "59470003": { - "Nom": "SUPER U WORMHOUT", - "Marque": "Système U" + "name": "SUPER U WORMHOUT", + "brand": "Système U" }, "59470004": { - "Nom": "SAS nouveau garage des flandres", - "Marque": "Total Access" + "name": "SAS nouveau garage des flandres", + "brand": "Total Access" }, "59474001": { - "Nom": "WACRENIER SA", - "Marque": "Total Access" + "name": "WACRENIER SA", + "brand": "Total Access" }, "59480002": { - "Nom": "Intermarché LA BASSEE", - "Marque": "Intermarché" + "name": "Intermarché LA BASSEE", + "brand": "Intermarché" }, "59490001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59490002": { - "Nom": "Intermarché SOMAIN", - "Marque": "Intermarché" + "name": "Intermarché SOMAIN", + "brand": "Intermarché" }, "59491002": { - "Nom": "Station Avia Pièces Auto", - "Marque": "Avia" + "name": "Station Avia Pièces Auto", + "brand": "Avia" }, "59492002": { - "Nom": "Intermarché HOYMILLE", - "Marque": "Intermarché" + "name": "Intermarché HOYMILLE", + "brand": "Intermarché" }, "59494002": { - "Nom": "AUCHAN PETITE FORET", - "Marque": "Auchan" + "name": "AUCHAN PETITE FORET", + "brand": "Auchan" }, "59494009": { - "Nom": "RELAIS PETITE FORET", - "Marque": "Total Access" + "name": "RELAIS PETITE FORET", + "brand": "Total Access" }, "59500005": { - "Nom": "MARKET SARL SLNDIS", - "Marque": "Carrefour Market" + "name": "MARKET SARL SLNDIS", + "brand": "Carrefour Market" }, "59500009": { - "Nom": "RELAIS DOUAI HIPPODROME", - "Marque": "Total" + "name": "RELAIS DOUAI HIPPODROME", + "brand": "Total" }, "59500010": { - "Nom": "STATION AVIA DOUAI RELAIS DE GAYANT", - "Marque": "Avia" + "name": "STATION AVIA DOUAI RELAIS DE GAYANT", + "brand": "Avia" }, "59501001": { - "Nom": "E. LECLERC DOUAI", - "Marque": "Leclerc" + "name": "E. LECLERC DOUAI", + "brand": "Leclerc" }, "59510003": { - "Nom": "RELAIS TROIS BAUDETS", - "Marque": "Total Access" + "name": "RELAIS TROIS BAUDETS", + "brand": "Total Access" }, "59520001": { - "Nom": "Intermarché MARQUETTE LEZ LILLE", - "Marque": "Intermarché" + "name": "Intermarché MARQUETTE LEZ LILLE", + "brand": "Intermarché" }, "59520003": { - "Nom": "SAS LEATWO", - "Marque": "Intermarché" + "name": "SAS LEATWO", + "brand": "Intermarché" }, "59530001": { - "Nom": "ESSO QUERCITAINE", - "Marque": "Esso Express" + "name": "ESSO QUERCITAINE", + "brand": "Esso Express" }, "59530002": { - "Nom": "Intermarché LE QUESNOY", - "Marque": "Intermarché" + "name": "Intermarché LE QUESNOY", + "brand": "Intermarché" }, "59540002": { - "Nom": "Intermarché SAS JUDICANNE", - "Marque": "Intermarché" + "name": "Intermarché SAS JUDICANNE", + "brand": "Intermarché" }, "59540003": { - "Nom": "ELAN", - "Marque": "Elan" + "name": "ELAN", + "brand": "Elan" }, "59541001": { - "Nom": "CAUDIS EXPLOITATION", - "Marque": "Leclerc" + "name": "CAUDIS EXPLOITATION", + "brand": "Leclerc" }, "59550001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59550002": { - "Nom": "SARL GGE DUBAIL CITROEN", - "Marque": "Total" + "name": "SARL GGE DUBAIL CITROEN", + "brand": "Total" }, "59553002": { - "Nom": "NETTO CUINCY", - "Marque": "Netto" + "name": "NETTO CUINCY", + "brand": "Netto" }, "59554002": { - "Nom": "Intermarché TILLOY LEZ CAMBRAI", - "Marque": "Intermarché" + "name": "Intermarché TILLOY LEZ CAMBRAI", + "brand": "Intermarché" }, "59554003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59554005": { - "Nom": "RELAIS RAILLENCOURT-SAINTE-OLLE", - "Marque": "Total Access" + "name": "RELAIS RAILLENCOURT-SAINTE-OLLE", + "brand": "Total Access" }, "59570001": { - "Nom": "Supermarché Match BAVAY", - "Marque": "Supermarché Match" + "name": "Supermarché Match BAVAY", + "brand": "Supermarché Match" }, "59570003": { - "Nom": "S.A MAJEMON Intermarché", - "Marque": "Intermarché" + "name": "S.A MAJEMON Intermarché", + "brand": "Intermarché" }, "59580001": { - "Nom": "BOIVIN OCTAVE ET CIE SA", - "Marque": "Total" + "name": "BOIVIN OCTAVE ET CIE SA", + "brand": "Total" }, "59600001": { - "Nom": "Carrefour MAUBEUGE", - "Marque": "Carrefour" + "name": "Carrefour MAUBEUGE", + "brand": "Carrefour" }, "59600006": { - "Nom": "Total Maubeuge", - "Marque": "Total" + "name": "Total Maubeuge", + "brand": "Total" }, "59610001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "59610002": { - "Nom": "Carrefour FOURMIES", - "Marque": "Carrefour" + "name": "Carrefour FOURMIES", + "brand": "Carrefour" }, "59610004": { - "Nom": "RELAIS FOURMIES", - "Marque": "Total Access" + "name": "RELAIS FOURMIES", + "brand": "Total Access" }, "59620002": { - "Nom": "Auchan supermarche", - "Marque": "Auchan" + "name": "Auchan supermarche", + "brand": "Auchan" }, "59620003": { - "Nom": "Intermarché AULNOYE AIMERIES", - "Marque": "Intermarché" + "name": "Intermarché AULNOYE AIMERIES", + "brand": "Intermarché" }, "59630002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59640002": { - "Nom": "RELAIS DU PONT LOBY", - "Marque": "Total Access" + "name": "RELAIS DU PONT LOBY", + "brand": "Total Access" }, "59650001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59650002": { - "Nom": "Supermarché Match VILLENEUVE D'ASCQ", - "Marque": "Supermarché Match" + "name": "Supermarché Match VILLENEUVE D'ASCQ", + "brand": "Supermarché Match" }, "59650009": { - "Nom": "Station Elan", - "Marque": "Elan" + "name": "Station Elan", + "brand": "Elan" }, "59650011": { - "Nom": "BP VILLENEUVE D' ASCQ", - "Marque": "BP" + "name": "BP VILLENEUVE D' ASCQ", + "brand": "BP" }, "59650012": { - "Nom": "RELAIS VILLENEUVE D'ASCQ", - "Marque": "Total Access" + "name": "RELAIS VILLENEUVE D'ASCQ", + "brand": "Total Access" }, "59650013": { - "Nom": "RELAIS DU SART", - "Marque": "Total Access" + "name": "RELAIS DU SART", + "brand": "Total Access" }, "59658001": { - "Nom": "cora flers", - "Marque": "CORA" + "name": "cora flers", + "brand": "CORA" }, "59670001": { - "Nom": "Carrefour Contact Cassel", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact Cassel", + "brand": "Carrefour Contact" }, "59680001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59700003": { - "Nom": "Carrefour ARMENTIERES", - "Marque": "Carrefour" + "name": "Carrefour ARMENTIERES", + "brand": "Carrefour" }, "59700004": { - "Nom": "ESSO CLEMENCEAU", - "Marque": "Esso Express" + "name": "ESSO CLEMENCEAU", + "brand": "Esso Express" }, "59700008": { - "Nom": "RELAIS MARCQ EN BAR. CROISE LAROCHE", - "Marque": "Total" + "name": "RELAIS MARCQ EN BAR. CROISE LAROCHE", + "brand": "Total" }, "59700009": { - "Nom": "RELAIS MARCQ-EN-BAROEUL", - "Marque": "Total Access" + "name": "RELAIS MARCQ-EN-BAROEUL", + "brand": "Total Access" }, "59710002": { - "Nom": "Intermarché PONT A MARCQ", - "Marque": "Intermarché" + "name": "Intermarché PONT A MARCQ", + "brand": "Intermarché" }, "59710006": { - "Nom": "NEW STATION", - "Marque": "Total Access" + "name": "NEW STATION", + "brand": "Total Access" }, "59720001": { - "Nom": "AUCHAN LOUVROIL", - "Marque": "Auchan" + "name": "AUCHAN LOUVROIL", + "brand": "Auchan" }, "59721001": { - "Nom": "Carrefour DENAIN", - "Marque": "Carrefour" + "name": "Carrefour DENAIN", + "brand": "Carrefour" }, "59730001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59730003": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "59750004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59750005": { - "Nom": "RELAIS DE FEIGNIES", - "Marque": "Total Access" + "name": "RELAIS DE FEIGNIES", + "brand": "Total Access" }, "59760001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "59760002": { - "Nom": "BP A16 GRANDE SYNTHES", - "Marque": "BP" + "name": "BP A16 GRANDE SYNTHES", + "brand": "BP" }, "59760005": { - "Nom": "RELAIS DE SYNTHES", - "Marque": "Total" + "name": "RELAIS DE SYNTHES", + "brand": "Total" }, "59770002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59770003": { - "Nom": "Garage Barbusse", - "Marque": "Total" + "name": "Garage Barbusse", + "brand": "Total" }, "59780001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59790001": { - "Nom": "MR DEGAND BERNARD", - "Marque": "Total" + "name": "MR DEGAND BERNARD", + "brand": "Total" }, "59800001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59800002": { - "Nom": "E.LECLERC Lille (Fives)", - "Marque": "Leclerc" + "name": "E.LECLERC Lille (Fives)", + "brand": "Leclerc" }, "59820001": { - "Nom": "GRAVELINES GGRD", - "Marque": "Total" + "name": "GRAVELINES GGRD", + "brand": "Total" }, "59830001": { - "Nom": "SAS PAJOU", - "Marque": "Intermarché" + "name": "SAS PAJOU", + "brand": "Intermarché" }, "59850002": { - "Nom": "Hyper U NIEPPE", - "Marque": "Système U" + "name": "Hyper U NIEPPE", + "brand": "Système U" }, "59860003": { - "Nom": "SUPER U BRUAY SUR L ESCAUT", - "Marque": "Système U" + "name": "SUPER U BRUAY SUR L ESCAUT", + "brand": "Système U" }, "59880001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "59880002": { - "Nom": "GARAGE VILETTE", - "Marque": "Elan" + "name": "GARAGE VILETTE", + "brand": "Elan" }, "59890001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59910001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59920001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "59930002": { - "Nom": "RELAIS PONT-BERTIN", - "Marque": "Total Access" + "name": "RELAIS PONT-BERTIN", + "brand": "Total Access" }, "59940001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "60000001": { - "Nom": "Auchan Beauvais", - "Marque": "Auchan" + "name": "Auchan Beauvais", + "brand": "Auchan" }, "60000006": { - "Nom": "ESSO KENNEDY", - "Marque": "Esso Express" + "name": "ESSO KENNEDY", + "brand": "Esso Express" }, "60000007": { - "Nom": "Carrefour Beauvais Centre", - "Marque": "Carrefour" + "name": "Carrefour Beauvais Centre", + "brand": "Carrefour" }, "60000008": { - "Nom": "Intermarché BEAUVAIS GOINCOURT", - "Marque": "Intermarché" + "name": "Intermarché BEAUVAIS GOINCOURT", + "brand": "Intermarché" }, "60000010": { - "Nom": "Intermarché BEAUVAIS /NORD", - "Marque": "Intermarché" + "name": "Intermarché BEAUVAIS /NORD", + "brand": "Intermarché" }, "60000011": { - "Nom": "SOCIETE FINANCIERE RSV Carrefour", - "Marque": "Carrefour" + "name": "SOCIETE FINANCIERE RSV Carrefour", + "brand": "Carrefour" }, "60000012": { - "Nom": "RELAIS ESPACE ST GERMAIN", - "Marque": "Total" + "name": "RELAIS ESPACE ST GERMAIN", + "brand": "Total" }, "60000015": { - "Nom": "BP BEAUVAIS 8 à Huit", - "Marque": "BP" + "name": "BP BEAUVAIS 8 à Huit", + "brand": "BP" }, "60005001": { - "Nom": "SEGO", - "Marque": "BP" + "name": "SEGO", + "brand": "BP" }, "60100003": { - "Nom": "SARL ACC2", - "Marque": "Avia" + "name": "SARL ACC2", + "brand": "Avia" }, "60100004": { - "Nom": "SAS IMMOBILIERE DEBUQUOY", - "Marque": "Esso" + "name": "SAS IMMOBILIERE DEBUQUOY", + "brand": "Esso" }, "60100007": { - "Nom": "RELAIS DE CREIL", - "Marque": "Total" + "name": "RELAIS DE CREIL", + "brand": "Total" }, "60110002": { - "Nom": "AUCHAN MERU", - "Marque": "Auchan" + "name": "AUCHAN MERU", + "brand": "Auchan" }, "60112002": { - "Nom": "GARAGE CHAPRON", - "Marque": "Total" + "name": "GARAGE CHAPRON", + "brand": "Total" }, "60120002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "60120004": { - "Nom": "GGE LEFEVRE", - "Marque": "Total" + "name": "GGE LEFEVRE", + "brand": "Total" }, "60120005": { - "Nom": "E.LECLERC", - "Marque": "Leclerc" + "name": "E.LECLERC", + "brand": "Leclerc" }, "60120006": { - "Nom": "RELAIS HARDIVILLERS", - "Marque": "Total" + "name": "RELAIS HARDIVILLERS", + "brand": "Total" }, "60130001": { - "Nom": "SAINT JUDIST", - "Marque": "Leclerc" + "name": "SAINT JUDIST", + "brand": "Leclerc" }, "60140002": { - "Nom": "MR DIXIMUS FABRICE", - "Marque": "Total" + "name": "MR DIXIMUS FABRICE", + "brand": "Total" }, "60140003": { - "Nom": "LECLERC LIANCOURT", - "Marque": "Leclerc" + "name": "LECLERC LIANCOURT", + "brand": "Leclerc" }, "60150001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "60150003": { - "Nom": "SUPER U thourotte", - "Marque": "Système U" + "name": "SUPER U thourotte", + "brand": "Système U" }, "60160002": { - "Nom": "S.D.R.C. DEVELOPPEMENT", - "Marque": "Leclerc" + "name": "S.D.R.C. DEVELOPPEMENT", + "brand": "Leclerc" }, "60160003": { - "Nom": "RELAIS MONTATAIRE", - "Marque": "Total Access" + "name": "RELAIS MONTATAIRE", + "brand": "Total Access" }, "60170003": { - "Nom": "LECLERC SODIRIB", - "Marque": "Leclerc" + "name": "LECLERC SODIRIB", + "brand": "Leclerc" }, "60180001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "60190002": { - "Nom": "Intermarché MOYVILLERS", - "Marque": "Intermarché" + "name": "Intermarché MOYVILLERS", + "brand": "Intermarché" }, "60190003": { - "Nom": "RELAIS BOIS LIHUS", - "Marque": "Total" + "name": "RELAIS BOIS LIHUS", + "brand": "Total" }, "60200001": { - "Nom": "SUPERMARCHE AUCHAN", - "Marque": "Auchan" + "name": "SUPERMARCHE AUCHAN", + "brand": "Auchan" }, "60200002": { - "Nom": "SARL MAX GUERDIN", - "Marque": "Indépendant sans enseigne" + "name": "SARL MAX GUERDIN", + "brand": "Indépendant sans enseigne" }, "60200005": { - "Nom": "ESSO DU PETIT MARGNY", - "Marque": "Esso Express" + "name": "ESSO DU PETIT MARGNY", + "brand": "Esso Express" }, "60200006": { - "Nom": "ESSO ROYAL LIEU", - "Marque": "Esso Express" + "name": "ESSO ROYAL LIEU", + "brand": "Esso Express" }, "60200008": { - "Nom": "Intermarché COMPIEGNE", - "Marque": "Intermarché" + "name": "Intermarché COMPIEGNE", + "brand": "Intermarché" }, "60200011": { - "Nom": "SARL MLD", - "Marque": "Total" + "name": "SARL MLD", + "brand": "Total" }, "60200012": { - "Nom": "RELAIS COMPIEGNE", - "Marque": "Total Access" + "name": "RELAIS COMPIEGNE", + "brand": "Total Access" }, "60210001": { - "Nom": "CARTIER JACQUELINE", - "Marque": "Esso" + "name": "CARTIER JACQUELINE", + "brand": "Esso" }, "60210002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "60210003": { - "Nom": "Intermarché GRANDVILLIERS", - "Marque": "Intermarché" + "name": "Intermarché GRANDVILLIERS", + "brand": "Intermarché" }, "60220002": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "60220004": { - "Nom": "EURL BEUVIN AURELIA", - "Marque": "Indépendant sans enseigne" + "name": "EURL BEUVIN AURELIA", + "brand": "Indépendant sans enseigne" }, "60230002": { - "Nom": "SODICAMB", - "Marque": "Leclerc" + "name": "SODICAMB", + "brand": "Leclerc" }, "60230004": { - "Nom": "RELAIS NEFLIER", - "Marque": "Total Access" + "name": "RELAIS NEFLIER", + "brand": "Total Access" }, "60240001": { - "Nom": "Supermarché MATCH CHAUMONT-EN-VEXIN", - "Marque": "Supermarché Match" + "name": "Supermarché MATCH CHAUMONT-EN-VEXIN", + "brand": "Supermarché Match" }, "60250001": { - "Nom": "SEGO", - "Marque": "BP" + "name": "SEGO", + "brand": "BP" }, "60250003": { - "Nom": "Intermarché MOUY", - "Marque": "Intermarché" + "name": "Intermarché MOUY", + "brand": "Intermarché" }, "60260001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "60270002": { - "Nom": "RELAIS DES 2 TILLEULS ESSO", - "Marque": "Esso" + "name": "RELAIS DES 2 TILLEULS ESSO", + "brand": "Esso" }, "60270003": { - "Nom": "Intermarché GOUVIEUX", - "Marque": "Intermarché" + "name": "Intermarché GOUVIEUX", + "brand": "Intermarché" }, "60280001": { - "Nom": "Carrefour Venette", - "Marque": "Carrefour" + "name": "Carrefour Venette", + "brand": "Carrefour" }, "60290002": { - "Nom": "CAUFFRIDIS", - "Marque": "Leclerc" + "name": "CAUFFRIDIS", + "brand": "Leclerc" }, "60290003": { - "Nom": "Intermarché CAUFFRY", - "Marque": "Intermarché" + "name": "Intermarché CAUFFRY", + "brand": "Intermarché" }, "60290005": { - "Nom": "RELAIS DU TIRELET", - "Marque": "Total Access" + "name": "RELAIS DU TIRELET", + "brand": "Total Access" }, "60300001": { - "Nom": "EOR CHAMANT SEMAC", - "Marque": "Total" + "name": "EOR CHAMANT SEMAC", + "brand": "Total" }, "60300003": { - "Nom": "BP SENLIS DE GAULLE", - "Marque": "BP" + "name": "BP SENLIS DE GAULLE", + "brand": "BP" }, "60300005": { - "Nom": "Intermarché SENLIS", - "Marque": "Intermarché" + "name": "Intermarché SENLIS", + "brand": "Intermarché" }, "60300007": { - "Nom": "RELAIS 3 FORETS", - "Marque": "Total" + "name": "RELAIS 3 FORETS", + "brand": "Total" }, "60300008": { - "Nom": "BP SENLIS FOCH", - "Marque": "BP" + "name": "BP SENLIS FOCH", + "brand": "BP" }, "60310001": { - "Nom": "E.Leclerc Lassigny", - "Marque": "Leclerc" + "name": "E.Leclerc Lassigny", + "brand": "Leclerc" }, "60320001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "60330004": { - "Nom": "RELAIS DES IRIS", - "Marque": "Total Access" + "name": "RELAIS DES IRIS", + "brand": "Total Access" }, "60340001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "60350002": { - "Nom": "Intermarché TROSLY-BREUIL", - "Marque": "Intermarché" + "name": "Intermarché TROSLY-BREUIL", + "brand": "Intermarché" }, "60350003": { - "Nom": "RELAIS CUISE L.MOTTE", - "Marque": "Total Access" + "name": "RELAIS CUISE L.MOTTE", + "brand": "Total Access" }, "60360001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "60360002": { - "Nom": "STATION E.LECLERC", - "Marque": "Leclerc" + "name": "STATION E.LECLERC", + "brand": "Leclerc" }, "60370002": { - "Nom": "SAS AVERJISA", - "Marque": "Intermarché" + "name": "SAS AVERJISA", + "brand": "Intermarché" }, "60380001": { - "Nom": "STATION SERVICE COMMUNALE", - "Marque": "Indépendant sans enseigne" + "name": "STATION SERVICE COMMUNALE", + "brand": "Indépendant sans enseigne" }, "60390001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "60390003": { - "Nom": "MDK AUTOMOBILES", - "Marque": "Total" + "name": "MDK AUTOMOBILES", + "brand": "Total" }, "60400001": { - "Nom": "Hypermarché AUCHAN", - "Marque": "Auchan" + "name": "Hypermarché AUCHAN", + "brand": "Auchan" }, "60400003": { - "Nom": "Intermarché NOYON", - "Marque": "Intermarché" + "name": "Intermarché NOYON", + "brand": "Intermarché" }, "60400005": { - "Nom": "RELAIS ST CLAUDE JAURES", - "Marque": "Total Access" + "name": "RELAIS ST CLAUDE JAURES", + "brand": "Total Access" }, "60410003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "60420001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "60440001": { - "Nom": "Intermarché NANTEUIL LE HAUDOUIN", - "Marque": "Intermarché" + "name": "Intermarché NANTEUIL LE HAUDOUIN", + "brand": "Intermarché" }, "60490001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "60490005": { - "Nom": "AGIP RESSONS A1", - "Marque": "Agip" + "name": "AGIP RESSONS A1", + "brand": "Agip" }, "60490007": { - "Nom": "RELAIS RESSONS /MATZ", - "Marque": "Total" + "name": "RELAIS RESSONS /MATZ", + "brand": "Total" }, "60490008": { - "Nom": "RELAIS BELICOURT", - "Marque": "Total Access" + "name": "RELAIS BELICOURT", + "brand": "Total Access" }, "60500002": { - "Nom": "ESSO CHANTILLY", - "Marque": "Esso Express" + "name": "ESSO CHANTILLY", + "brand": "Esso Express" }, "60500008": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "60500010": { - "Nom": "BP CHANTILLY DU PARC AUMONT SPEEDY", - "Marque": "BP" + "name": "BP CHANTILLY DU PARC AUMONT SPEEDY", + "brand": "BP" }, "60500011": { - "Nom": "RELAIS CHANTILLY", - "Marque": "Total Access" + "name": "RELAIS CHANTILLY", + "brand": "Total Access" }, "60510001": { - "Nom": "Intermarché BRESLES", - "Marque": "Intermarché" + "name": "Intermarché BRESLES", + "brand": "Intermarché" }, "60530003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "60540002": { - "Nom": "Contact BORNEL", - "Marque": "Carrefour Contact" + "name": "Contact BORNEL", + "brand": "Carrefour Contact" }, "60560001": { - "Nom": "Intermarché ORRY LA VILLE", - "Marque": "Intermarché" + "name": "Intermarché ORRY LA VILLE", + "brand": "Intermarché" }, "60590001": { - "Nom": "STE TRIDIS", - "Marque": "Leclerc" + "name": "STE TRIDIS", + "brand": "Leclerc" }, "60590002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "60600001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "60600004": { - "Nom": "Intermarché CLERMONT", - "Marque": "Intermarché" + "name": "Intermarché CLERMONT", + "brand": "Intermarché" }, "60600006": { - "Nom": "SA AUTOSERVICES", - "Marque": "Indépendant sans enseigne" + "name": "SA AUTOSERVICES", + "brand": "Indépendant sans enseigne" }, "60610002": { - "Nom": "E. LECLERC LA CROIX SAINT OUEN", - "Marque": "Leclerc" + "name": "E. LECLERC LA CROIX SAINT OUEN", + "brand": "Leclerc" }, "60640001": { - "Nom": "GARAGE VAN ASTEN", - "Marque": "Total" + "name": "GARAGE VAN ASTEN", + "brand": "Total" }, "60650002": { - "Nom": "RENE PATRICE", - "Marque": "Esso" + "name": "RENE PATRICE", + "brand": "Esso" }, "60650004": { - "Nom": "Intermarché ST PAUL", - "Marque": "Intermarché" + "name": "Intermarché ST PAUL", + "brand": "Intermarché" }, "60650006": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour" + "name": "Carrefour Contact", + "brand": "Carrefour" }, "60680003": { - "Nom": "RELAIS JONQUIERES", - "Marque": "Total Access" + "name": "RELAIS JONQUIERES", + "brand": "Total Access" }, "60690001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "60700002": { - "Nom": "Intermarché PONT STE MAXENCE", - "Marque": "Intermarché" + "name": "Intermarché PONT STE MAXENCE", + "brand": "Intermarché" }, "60700004": { - "Nom": "RELAIS PONT STE MAXENCE", - "Marque": "Total Access" + "name": "RELAIS PONT STE MAXENCE", + "brand": "Total Access" }, "60700005": { - "Nom": "E LECLERC", - "Marque": "Leclerc" + "name": "E LECLERC", + "brand": "Leclerc" }, "60730002": { - "Nom": "SUPER U - SAINTE GENEVIEVE", - "Marque": "Système U" + "name": "SUPER U - SAINTE GENEVIEVE", + "brand": "Système U" }, "60730004": { - "Nom": "krite 1", - "Marque": "Total" + "name": "krite 1", + "brand": "Total" }, "60740001": { - "Nom": "HYPERMARCHE CORA ST MAXIMIN", - "Marque": "CORA" + "name": "HYPERMARCHE CORA ST MAXIMIN", + "brand": "CORA" }, "60750003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "60800002": { - "Nom": "STATION DU MONOPRIX CREPY EN VALOIS", - "Marque": "Indépendant sans enseigne" + "name": "STATION DU MONOPRIX CREPY EN VALOIS", + "brand": "Indépendant sans enseigne" }, "60800003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "60800005": { - "Nom": "Intermarché CREPY-EN-VALOIS", - "Marque": "Intermarché" + "name": "Intermarché CREPY-EN-VALOIS", + "brand": "Intermarché" }, "60800007": { - "Nom": "Intermarché POID LOURD", - "Marque": "Intermarché" + "name": "Intermarché POID LOURD", + "brand": "Intermarché" }, "60800008": { - "Nom": "CREPY", - "Marque": "Leclerc" + "name": "CREPY", + "brand": "Leclerc" }, "60870002": { - "Nom": "Intermarché VILLERS SAINT PAUL", - "Marque": "Intermarché" + "name": "Intermarché VILLERS SAINT PAUL", + "brand": "Intermarché" }, "60870003": { - "Nom": "RELAIS DE LA BRECHE", - "Marque": "Total Access" + "name": "RELAIS DE LA BRECHE", + "brand": "Total Access" }, "61000001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "61000002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "61000005": { - "Nom": "ESSO DU STADE ALENCON", - "Marque": "Esso Express" + "name": "ESSO DU STADE ALENCON", + "brand": "Esso Express" }, "61000006": { - "Nom": "Carrefour Market Gare", - "Marque": "Carrefour Market" + "name": "Carrefour Market Gare", + "brand": "Carrefour Market" }, "61000008": { - "Nom": "BAYI CARBURANTS", - "Marque": "Indépendant sans enseigne" + "name": "BAYI CARBURANTS", + "brand": "Indépendant sans enseigne" }, "61000011": { - "Nom": "AGIP NICE GORBELLA", - "Marque": "Agip" + "name": "AGIP NICE GORBELLA", + "brand": "Agip" }, "61003001": { - "Nom": "Carrefour ALENCON", - "Marque": "Carrefour" + "name": "Carrefour ALENCON", + "brand": "Carrefour" }, "61100003": { - "Nom": "ST GEORGES DES GROSEILLERS", - "Marque": "Carrefour Market" + "name": "ST GEORGES DES GROSEILLERS", + "brand": "Carrefour Market" }, "61100004": { - "Nom": "BLONDEAU Philippe", - "Marque": "Elan" + "name": "BLONDEAU Philippe", + "brand": "Elan" }, "61100005": { - "Nom": "SODIFLERS", - "Marque": "Leclerc" + "name": "SODIFLERS", + "brand": "Leclerc" }, "61100006": { - "Nom": "Intermarché FLERS DE L'ORNE", - "Marque": "Intermarché" + "name": "Intermarché FLERS DE L'ORNE", + "brand": "Intermarché" }, "61100007": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "61100008": { - "Nom": "Leclerc drive", - "Marque": "Leclerc" + "name": "Leclerc drive", + "brand": "Leclerc" }, "61100009": { - "Nom": "Garage services auto 61", - "Marque": "Avia" + "name": "Garage services auto 61", + "brand": "Avia" }, "61110002": { - "Nom": "Intermarché REMALARD", - "Marque": "Intermarché" + "name": "Intermarché REMALARD", + "brand": "Intermarché" }, "61120001": { - "Nom": "GARAGE LETOURNEUR", - "Marque": "Avia" + "name": "GARAGE LETOURNEUR", + "brand": "Avia" }, "61120002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "61130001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "61140001": { - "Nom": "SUPERMARCHE Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "SUPERMARCHE Carrefour Contact", + "brand": "Carrefour Contact" }, "61140002": { - "Nom": "CASINO BAGNOLES DE L'ORNE", - "Marque": "Casino" + "name": "CASINO BAGNOLES DE L'ORNE", + "brand": "Casino" }, "61160001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "61170001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "61190002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "61200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "61200003": { - "Nom": "M. CORBEL BERNARD", - "Marque": "Total" + "name": "M. CORBEL BERNARD", + "brand": "Total" }, "61200006": { - "Nom": "ARGENTAN DISTRIBUTION", - "Marque": "Leclerc" + "name": "ARGENTAN DISTRIBUTION", + "brand": "Leclerc" }, "61200007": { - "Nom": "Intermarché ARGENTAN", - "Marque": "Intermarché" + "name": "Intermarché ARGENTAN", + "brand": "Intermarché" }, "61200008": { - "Nom": "AVIA SARL FAJIVA", - "Marque": "Avia" + "name": "AVIA SARL FAJIVA", + "brand": "Avia" }, "61220001": { - "Nom": "G20 - SARL LA BRIOUZAINE", - "Marque": "G20" + "name": "G20 - SARL LA BRIOUZAINE", + "brand": "G20" }, "61230001": { - "Nom": "SARL LCV", - "Marque": "Avia" + "name": "SARL LCV", + "brand": "Avia" }, "61230002": { - "Nom": "MR GAUTIER JEROME", - "Marque": "Total" + "name": "MR GAUTIER JEROME", + "brand": "Total" }, "61230004": { - "Nom": "VTS AUTOMOBILES", - "Marque": "ESSO" + "name": "VTS AUTOMOBILES", + "brand": "ESSO" }, "61240001": { - "Nom": "EURL CARROSSERIE MAHERAULT", - "Marque": "Total" + "name": "EURL CARROSSERIE MAHERAULT", + "brand": "Total" }, "61250002": { - "Nom": "SARL ASS.AUTO.ALENC.GGE TAHIER", - "Marque": "Total" + "name": "SARL ASS.AUTO.ALENC.GGE TAHIER", + "brand": "Total" }, "61250003": { - "Nom": "RELAIS DE LA DENTELLE D'ALENCON", - "Marque": "Total" + "name": "RELAIS DE LA DENTELLE D'ALENCON", + "brand": "Total" }, "61290002": { - "Nom": "Intermarché LONGNY AU PERCHE", - "Marque": "Intermarché Contact" + "name": "Intermarché LONGNY AU PERCHE", + "brand": "Intermarché Contact" }, "61300002": { - "Nom": "Intermarché L'AIGLE", - "Marque": "Intermarché" + "name": "Intermarché L'AIGLE", + "brand": "Intermarché" }, "61302001": { - "Nom": "RISLDIS", - "Marque": "Leclerc" + "name": "RISLDIS", + "brand": "Leclerc" }, "61320002": { - "Nom": "GARAGE C.M.C.", - "Marque": "Total" + "name": "GARAGE C.M.C.", + "brand": "Total" }, "61400001": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "61400002": { - "Nom": "RELAIS DES GAILLONS", - "Marque": "Total" + "name": "RELAIS DES GAILLONS", + "brand": "Total" }, "61400003": { - "Nom": "Intermarché MORTAGNE AUX PERCHES", - "Marque": "Intermarché" + "name": "Intermarché MORTAGNE AUX PERCHES", + "brand": "Intermarché" }, "61400004": { - "Nom": "SAINT ELOI SARL", - "Marque": "Elan" + "name": "SAINT ELOI SARL", + "brand": "Elan" }, "61430002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "61430003": { - "Nom": "SARL POIRIER AUTOMOBILE", - "Marque": "Indépendant sans enseigne" + "name": "SARL POIRIER AUTOMOBILE", + "brand": "Indépendant sans enseigne" }, "61440001": { - "Nom": "GARAGE LETALLEC", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE LETALLEC", + "brand": "Indépendant sans enseigne" }, "61500002": { - "Nom": "SEES AUTOMOBILES", - "Marque": "Total" + "name": "SEES AUTOMOBILES", + "brand": "Total" }, "61500003": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "61500004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "61600002": { - "Nom": "FERMADIS", - "Marque": "Leclerc" + "name": "FERMADIS", + "brand": "Leclerc" }, "61600003": { - "Nom": "Intermarché LA FERTE MACE", - "Marque": "Intermarché" + "name": "Intermarché LA FERTE MACE", + "brand": "Intermarché" }, "61700001": { - "Nom": "GARAGE FOUQUET STATION Total", - "Marque": "Total" + "name": "GARAGE FOUQUET STATION Total", + "brand": "Total" }, "61700002": { - "Nom": "Intermarché DOMFRONT", - "Marque": "Intermarché" + "name": "Intermarché DOMFRONT", + "brand": "Intermarché" }, "61700003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "61790001": { - "Nom": "STATION DRIVE ST PIERRE DU REGARD", - "Marque": "Leclerc" + "name": "STATION DRIVE ST PIERRE DU REGARD", + "brand": "Leclerc" }, "62000001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "62000005": { - "Nom": "ARRADIS", - "Marque": "Leclerc" + "name": "ARRADIS", + "brand": "Leclerc" }, "62000006": { - "Nom": "DAINVILDIS", - "Marque": "Leclerc" + "name": "DAINVILDIS", + "brand": "Leclerc" }, "62000013": { - "Nom": "RELAIS ARRAS ROSATI", - "Marque": "Total" + "name": "RELAIS ARRAS ROSATI", + "brand": "Total" }, "62000014": { - "Nom": "RELAIS DU ROND POINT", - "Marque": "Total Access" + "name": "RELAIS DU ROND POINT", + "brand": "Total Access" }, "62012001": { - "Nom": "Auchan", - "Marque": "Auchan" + "name": "Auchan", + "brand": "Auchan" }, "62100001": { - "Nom": "AUCHAN CALAIS LES 2 CAPS", - "Marque": "Auchan" + "name": "AUCHAN CALAIS LES 2 CAPS", + "brand": "Auchan" }, "62100002": { - "Nom": "SARL HOTEL DE VILLE", - "Marque": "Total" + "name": "SARL HOTEL DE VILLE", + "brand": "Total" }, "62100006": { - "Nom": "SARL PETAF", - "Marque": "Avia" + "name": "SARL PETAF", + "brand": "Avia" }, "62100011": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62100012": { - "Nom": "SOFIDAP Calais", - "Marque": "Esso" + "name": "SOFIDAP Calais", + "brand": "Esso" }, "62100014": { - "Nom": "ETS CARON", - "Marque": "Indépendant sans enseigne" + "name": "ETS CARON", + "brand": "Indépendant sans enseigne" }, "62100016": { - "Nom": "Intermarché CALAIS", - "Marque": "Intermarché" + "name": "Intermarché CALAIS", + "brand": "Intermarché" }, "62100019": { - "Nom": "BP CALAIS PETIT COURGAIN", - "Marque": "BP" + "name": "BP CALAIS PETIT COURGAIN", + "brand": "BP" }, "62100022": { - "Nom": "BP CALAIS VIRVAL", - "Marque": "BP" + "name": "BP CALAIS VIRVAL", + "brand": "BP" }, "62100023": { - "Nom": "BP CALAIS LES DUNES", - "Marque": "BP" + "name": "BP CALAIS LES DUNES", + "brand": "BP" }, "62100024": { - "Nom": "RELAIS CALAIS ROCADE EST", - "Marque": "Total" + "name": "RELAIS CALAIS ROCADE EST", + "brand": "Total" }, "62100025": { - "Nom": "RELAIS EUROTUNNEL STATION VL", - "Marque": "Total" + "name": "RELAIS EUROTUNNEL STATION VL", + "brand": "Total" }, "62100026": { - "Nom": "RELAIS EUROTUNNEL STATION PL", - "Marque": "Total" + "name": "RELAIS EUROTUNNEL STATION PL", + "brand": "Total" }, "62100027": { - "Nom": "RELAIS DES PIERRETTES", - "Marque": "Total" + "name": "RELAIS DES PIERRETTES", + "brand": "Total" }, "62101001": { - "Nom": "Carrefour CALAIS MIVOIX", - "Marque": "Carrefour" + "name": "Carrefour CALAIS MIVOIX", + "brand": "Carrefour" }, "62110001": { - "Nom": "SARL SANDRAH", - "Marque": "Total" + "name": "SARL SANDRAH", + "brand": "Total" }, "62110003": { - "Nom": "RELAIS HENIN BEAUMONT", - "Marque": "Total" + "name": "RELAIS HENIN BEAUMONT", + "brand": "Total" }, "62110004": { - "Nom": "RELAIS DES HAUTOITS", - "Marque": "Total Access" + "name": "RELAIS DES HAUTOITS", + "brand": "Total Access" }, "62114002": { - "Nom": "GARAGE DE LA GOHELLE", - "Marque": "Total" + "name": "GARAGE DE LA GOHELLE", + "brand": "Total" }, "62116001": { - "Nom": "SARL DUPRIEZ DISTRI", - "Marque": "Carrefour Contact" + "name": "SARL DUPRIEZ DISTRI", + "brand": "Carrefour Contact" }, "62117002": { - "Nom": "Intermarché BREBIERES", - "Marque": "Intermarché" + "name": "Intermarché BREBIERES", + "brand": "Intermarché" }, "62118002": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "62118005": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "62120001": { - "Nom": "Carrefour AIRE SUR LA LYS", - "Marque": "Carrefour" + "name": "Carrefour AIRE SUR LA LYS", + "brand": "Carrefour" }, "62120006": { - "Nom": "ESSO INGLARD", - "Marque": "Esso Express" + "name": "ESSO INGLARD", + "brand": "Esso Express" }, "62120009": { - "Nom": "Intermarché LAMBRES LES AIRES", - "Marque": "Intermarché" + "name": "Intermarché LAMBRES LES AIRES", + "brand": "Intermarché" }, "62120012": { - "Nom": "SARL SIG'REST", - "Marque": "Shell" + "name": "SARL SIG'REST", + "brand": "Shell" }, "62120013": { - "Nom": "Intermarché WARDRECQUES", - "Marque": "Intermarché" + "name": "Intermarché WARDRECQUES", + "brand": "Intermarché" }, "62120014": { - "Nom": "ROC France Station ESSO", - "Marque": "Esso" + "name": "ROC France Station ESSO", + "brand": "Esso" }, "62120015": { - "Nom": "Contact RACQUINGHEM", - "Marque": "Contact" + "name": "Contact RACQUINGHEM", + "brand": "Contact" }, "62123003": { - "Nom": "Carrefour Contact BEAUMETZ LES LOGES", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact BEAUMETZ LES LOGES", + "brand": "Carrefour Contact" }, "62126001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62127001": { - "Nom": "SARL CHEZ LEGRIS", - "Marque": "Esso" + "name": "SARL CHEZ LEGRIS", + "brand": "Esso" }, "62128006": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "62128007": { - "Nom": "BP AIRE DE ST LEGER", - "Marque": "BP" + "name": "BP AIRE DE ST LEGER", + "brand": "BP" }, "62128009": { - "Nom": "ESSO WANCOURT", - "Marque": "Esso" + "name": "ESSO WANCOURT", + "brand": "Esso" }, "62128010": { - "Nom": "BP WANCOURT EST", - "Marque": "BP" + "name": "BP WANCOURT EST", + "brand": "BP" }, "62130001": { - "Nom": "ETS BAILLEUL", - "Marque": "Total" + "name": "ETS BAILLEUL", + "brand": "Total" }, "62130002": { - "Nom": "ESSO LA TERNOISE", - "Marque": "Esso Express" + "name": "ESSO LA TERNOISE", + "brand": "Esso Express" }, "62130003": { - "Nom": "Intermarché ST POL SUR TERNOISE", - "Marque": "Intermarché" + "name": "Intermarché ST POL SUR TERNOISE", + "brand": "Intermarché" }, "62130004": { - "Nom": "E.Leclerc Herlin Le Sec", - "Marque": "Leclerc" + "name": "E.Leclerc Herlin Le Sec", + "brand": "Leclerc" }, "62131001": { - "Nom": "Intermarché VERQUIN", - "Marque": "Intermarché" + "name": "Intermarché VERQUIN", + "brand": "Intermarché" }, "62134001": { - "Nom": "SARL F2C", - "Marque": "Carrefour Contact" + "name": "SARL F2C", + "brand": "Carrefour Contact" }, "62136001": { - "Nom": "SARL LES TROIS TILLEULS", - "Marque": "BP" + "name": "SARL LES TROIS TILLEULS", + "brand": "BP" }, "62137001": { - "Nom": "Station des Princes", - "Marque": "Esso" + "name": "Station des Princes", + "brand": "Esso" }, "62138001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "62138002": { - "Nom": "Carrefour AUCHY LES MINES", - "Marque": "Carrefour" + "name": "Carrefour AUCHY LES MINES", + "brand": "Carrefour" }, "62138005": { - "Nom": "E.Leclerc Violaines", - "Marque": "Leclerc" + "name": "E.Leclerc Violaines", + "brand": "Leclerc" }, "62140001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62140002": { - "Nom": "EOR GARAGE HESDINOIS S A", - "Marque": "Total" + "name": "EOR GARAGE HESDINOIS S A", + "brand": "Total" }, "62140003": { - "Nom": "Intermarché MARCONNELLE", - "Marque": "Intermarché" + "name": "Intermarché MARCONNELLE", + "brand": "Intermarché" }, "62142001": { - "Nom": "Intermarché ALINCTHUN", - "Marque": "Intermarché Contact" + "name": "Intermarché ALINCTHUN", + "brand": "Intermarché Contact" }, "62143002": { - "Nom": "LECLERC ANGRES", - "Marque": "Leclerc" + "name": "LECLERC ANGRES", + "brand": "Leclerc" }, "62143003": { - "Nom": "BP A26 AIRE D'ANGRES", - "Marque": "BP" + "name": "BP A26 AIRE D'ANGRES", + "brand": "BP" }, "62147001": { - "Nom": "AVIA HAVRINCOURT", - "Marque": "Avia" + "name": "AVIA HAVRINCOURT", + "brand": "Avia" }, "62147003": { - "Nom": "Avia graincourt", - "Marque": "Avia" + "name": "Avia graincourt", + "brand": "Avia" }, "62147004": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché" + "name": "Intermarché Contact", + "brand": "Intermarché" }, "62149001": { - "Nom": "ESSO BLANQUART", - "Marque": "Esso Express" + "name": "ESSO BLANQUART", + "brand": "Esso Express" }, "62150002": { - "Nom": "Carrefour Contact HOUDAIN", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact HOUDAIN", + "brand": "Carrefour Contact" }, "62152001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62152003": { - "Nom": "GARAGE CORDIER", - "Marque": "Total" + "name": "GARAGE CORDIER", + "brand": "Total" }, "62153003": { - "Nom": "RELAIS DE SOUCHEZ", - "Marque": "Total" + "name": "RELAIS DE SOUCHEZ", + "brand": "Total" }, "62156001": { - "Nom": "SAS WILVA", - "Marque": "Intermarché Contact" + "name": "SAS WILVA", + "brand": "Intermarché Contact" }, "62160001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62160002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62160003": { - "Nom": "ESSO GRENAY", - "Marque": "Esso Express" + "name": "ESSO GRENAY", + "brand": "Esso Express" }, "62160004": { - "Nom": "Intermarché BULLY LES MINES", - "Marque": "Intermarché" + "name": "Intermarché BULLY LES MINES", + "brand": "Intermarché" }, "62161001": { - "Nom": "Carrefour Contact MAROEUIL", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact MAROEUIL", + "brand": "Carrefour Contact" }, "62164001": { - "Nom": "GARAGE DUPUIS DEBERDT ATELIER OPEL", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE DUPUIS DEBERDT ATELIER OPEL", + "brand": "Indépendant sans enseigne" }, "62170002": { - "Nom": "Carrefour Market sas campi", - "Marque": "Carrefour Market" + "name": "Carrefour Market sas campi", + "brand": "Carrefour Market" }, "62170003": { - "Nom": "ATTINDIS", - "Marque": "Leclerc" + "name": "ATTINDIS", + "brand": "Leclerc" }, "62170005": { - "Nom": "RELAIS DU BRAS D OR", - "Marque": "Total Access" + "name": "RELAIS DU BRAS D OR", + "brand": "Total Access" }, "62176001": { - "Nom": "Intermarché CAMIERS", - "Marque": "Intermarché" + "name": "Intermarché CAMIERS", + "brand": "Intermarché" }, "62180002": { - "Nom": "STATION Intermarché", - "Marque": "Intermarché" + "name": "STATION Intermarché", + "brand": "Intermarché" }, "62180004": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "62200004": { - "Nom": "Intermarché BOULOGNE SUR MER", - "Marque": "Intermarché" + "name": "Intermarché BOULOGNE SUR MER", + "brand": "Intermarché" }, "62200005": { - "Nom": "RELAIS BOULOGNE S.MER DAUNOU", - "Marque": "Total" + "name": "RELAIS BOULOGNE S.MER DAUNOU", + "brand": "Total" }, "62210001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62210002": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "62215005": { - "Nom": "Carrefour Contact OYE PLAGE", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact OYE PLAGE", + "brand": "Carrefour Contact" }, "62217001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62217003": { - "Nom": "Intermarché ACHICOURT-ARRAS", - "Marque": "Intermarché" + "name": "Intermarché ACHICOURT-ARRAS", + "brand": "Intermarché" }, "62217007": { - "Nom": "RELAIS ARRAS TILLOY", - "Marque": "Total Access" + "name": "RELAIS ARRAS TILLOY", + "brand": "Total Access" }, "62218002": { - "Nom": "SODILOISON", - "Marque": "Leclerc" + "name": "SODILOISON", + "brand": "Leclerc" }, "62219001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "62220001": { - "Nom": "EOR CARVIN SANEG", - "Marque": "Total" + "name": "EOR CARVIN SANEG", + "brand": "Total" }, "62220002": { - "Nom": "LECLERC CARVIN", - "Marque": "Leclerc" + "name": "LECLERC CARVIN", + "brand": "Leclerc" }, "62220003": { - "Nom": "ROADY CARVIN", - "Marque": "Roady" + "name": "ROADY CARVIN", + "brand": "Roady" }, "62221001": { - "Nom": "Intermarché NOYELLES SOUS LENS", - "Marque": "Intermarché" + "name": "Intermarché NOYELLES SOUS LENS", + "brand": "Intermarché" }, "62223001": { - "Nom": "NICOLADIS", - "Marque": "Leclerc" + "name": "NICOLADIS", + "brand": "Leclerc" }, "62223002": { - "Nom": "Intermarché ST CATHERINE LES ARR", - "Marque": "Intermarché" + "name": "Intermarché ST CATHERINE LES ARR", + "brand": "Intermarché" }, "62230001": { - "Nom": "SARL NATHYS", - "Marque": "Carrefour Market" + "name": "SARL NATHYS", + "brand": "Carrefour Market" }, "62230003": { - "Nom": "LIANOUDIS SA", - "Marque": "Leclerc" + "name": "LIANOUDIS SA", + "brand": "Leclerc" }, "62230004": { - "Nom": "RELAIS D'OUTREAU", - "Marque": "Total Access" + "name": "RELAIS D'OUTREAU", + "brand": "Total Access" }, "62232001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62240003": { - "Nom": "ESSO CARAQUET", - "Marque": "Esso Express" + "name": "ESSO CARAQUET", + "brand": "Esso Express" }, "62240004": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "62240005": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "62250001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62250005": { - "Nom": "RELAIS DE MARQUISE", - "Marque": "Total" + "name": "RELAIS DE MARQUISE", + "brand": "Total" }, "62250007": { - "Nom": "Intermarché MARQUISE", - "Marque": "Intermarché" + "name": "Intermarché MARQUISE", + "brand": "Intermarché" }, "62250009": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "62250010": { - "Nom": "RELAIS EPITRE", - "Marque": "Total" + "name": "RELAIS EPITRE", + "brand": "Total" }, "62250011": { - "Nom": "RELAIS DES 2 CAPS", - "Marque": "Total" + "name": "RELAIS DES 2 CAPS", + "brand": "Total" }, "62260001": { - "Nom": "EOR CAUCHY LA TOUR COUSIN", - "Marque": "Total" + "name": "EOR CAUCHY LA TOUR COUSIN", + "brand": "Total" }, "62260002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62270002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62280001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62280002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62280003": { - "Nom": "AUCHAN COTE D'OPALE", - "Marque": "Auchan" + "name": "AUCHAN COTE D'OPALE", + "brand": "Auchan" }, "62280004": { - "Nom": "ESSO SERVICE DES QUATRE MOULINS", - "Marque": "Esso" + "name": "ESSO SERVICE DES QUATRE MOULINS", + "brand": "Esso" }, "62290001": { - "Nom": "STE DIST NOEUXOISE", - "Marque": "Leclerc" + "name": "STE DIST NOEUXOISE", + "brand": "Leclerc" }, "62290003": { - "Nom": "ESSO SAINT MARTIN", - "Marque": "ESSO" + "name": "ESSO SAINT MARTIN", + "brand": "ESSO" }, "62300005": { - "Nom": "ESSO STE BARBE", - "Marque": "Esso Express" + "name": "ESSO STE BARBE", + "brand": "Esso Express" }, "62300006": { - "Nom": "ESSO BOLLAERT", - "Marque": "Esso Express" + "name": "ESSO BOLLAERT", + "brand": "Esso Express" }, "62300012": { - "Nom": "RELAIS LENS RENE LANOY", - "Marque": "Total" + "name": "RELAIS LENS RENE LANOY", + "brand": "Total" }, "62300013": { - "Nom": "RELAIS DE LENS GRANDE RESIDENCE", - "Marque": "Total Access" + "name": "RELAIS DE LENS GRANDE RESIDENCE", + "brand": "Total Access" }, "62300014": { - "Nom": "RELAIS CESARINE", - "Marque": "Total Access" + "name": "RELAIS CESARINE", + "brand": "Total Access" }, "62300016": { - "Nom": "SARL MAGELI", - "Marque": "Auchan" + "name": "SARL MAGELI", + "brand": "Auchan" }, "62310001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62320001": { - "Nom": "MARKET", - "Marque": "Carrefour Market" + "name": "MARKET", + "brand": "Carrefour Market" }, "62330001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62330002": { - "Nom": "Intermarché Contact GUARBECQUE", - "Marque": "Intermarché" + "name": "Intermarché Contact GUARBECQUE", + "brand": "Intermarché" }, "62340001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62350001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "62360001": { - "Nom": "SARL DEMILLY", - "Marque": "Total" + "name": "SARL DEMILLY", + "brand": "Total" }, "62360004": { - "Nom": "Intermarché ST ETIENNE AU MONT", - "Marque": "Intermarché" + "name": "Intermarché ST ETIENNE AU MONT", + "brand": "Intermarché" }, "62360006": { - "Nom": "RELAIS BERGERONNETTES", - "Marque": "Total Access" + "name": "RELAIS BERGERONNETTES", + "brand": "Total Access" }, "62370001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62370002": { - "Nom": "G20 St Folquin", - "Marque": "G20 st folquin" + "name": "G20 St Folquin", + "brand": "G20 st folquin" }, "62380001": { - "Nom": "SARL HANSSE", - "Marque": "Total" + "name": "SARL HANSSE", + "brand": "Total" }, "62380002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "62380003": { - "Nom": "DISTRAL EXPLOITATION", - "Marque": "Leclerc" + "name": "DISTRAL EXPLOITATION", + "brand": "Leclerc" }, "62390001": { - "Nom": "Intermarché AUXI LE CHATEAU", - "Marque": "Intermarché" + "name": "Intermarché AUXI LE CHATEAU", + "brand": "Intermarché" }, "62400001": { - "Nom": "AUCHAN BETHUNE", - "Marque": "Auchan" + "name": "AUCHAN BETHUNE", + "brand": "Auchan" }, "62400002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62400003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62400004": { - "Nom": "SAS LE TURBEAUTE", - "Marque": "Total" + "name": "SAS LE TURBEAUTE", + "brand": "Total" }, "62410001": { - "Nom": "Intermarché WINGLES TOMDIS", - "Marque": "ITM SUPER ALI" + "name": "Intermarché WINGLES TOMDIS", + "brand": "ITM SUPER ALI" }, "62440001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "62450001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62450003": { - "Nom": "Intermarché BAPAUME", - "Marque": "Intermarché" + "name": "Intermarché BAPAUME", + "brand": "Intermarché" }, "62450004": { - "Nom": "BAPAUME DISTRIBUTION", - "Marque": "Leclerc" + "name": "BAPAUME DISTRIBUTION", + "brand": "Leclerc" }, "62450005": { - "Nom": "RELAIS ST FIACRE", - "Marque": "Total Access" + "name": "RELAIS ST FIACRE", + "brand": "Total Access" }, "62460002": { - "Nom": "Carrefour MARKET ERCAVITO", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET ERCAVITO", + "brand": "Carrefour Market" }, "62470004": { - "Nom": "JMV", - "Marque": "Total" + "name": "JMV", + "brand": "Total" }, "62480001": { - "Nom": "Intermarché LE PORTEL", - "Marque": "Intermarché" + "name": "Intermarché LE PORTEL", + "brand": "Intermarché" }, "62490002": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "62490003": { - "Nom": "RELAIS FRESNES LES MONTAUBAN", - "Marque": "Total Access" + "name": "RELAIS FRESNES LES MONTAUBAN", + "brand": "Total Access" }, "62500001": { - "Nom": "Carrefour SAINT MARTIN AU LAERT", - "Marque": "Carrefour" + "name": "Carrefour SAINT MARTIN AU LAERT", + "brand": "Carrefour" }, "62500003": { - "Nom": "ESSO LE PROGRES", - "Marque": "Esso Express" + "name": "ESSO LE PROGRES", + "brand": "Esso Express" }, "62500005": { - "Nom": "RELAIS ST OMER MADELEINES", - "Marque": "Total Access" + "name": "RELAIS ST OMER MADELEINES", + "brand": "Total Access" }, "62510002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62510003": { - "Nom": "Intermarché ARQUES", - "Marque": "Intermarché" + "name": "Intermarché ARQUES", + "brand": "Intermarché" }, "62530001": { - "Nom": "Intermarché HERSIN COUPIGNY", - "Marque": "Intermarché" + "name": "Intermarché HERSIN COUPIGNY", + "brand": "Intermarché" }, "62550001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "62560002": { - "Nom": "ETS LEMAITRE", - "Marque": "Elan" + "name": "ETS LEMAITRE", + "brand": "Elan" }, "62560003": { - "Nom": "EURL NFLP DISTRI", - "Marque": "Carrefour Contact" + "name": "EURL NFLP DISTRI", + "brand": "Carrefour Contact" }, "62570002": { - "Nom": "Intermarché WIZERNES", - "Marque": "Intermarché" + "name": "Intermarché WIZERNES", + "brand": "Intermarché" }, "62580002": { - "Nom": "Carrefour Contact vimy", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact vimy", + "brand": "Carrefour Contact" }, "62590001": { - "Nom": "Supermarché Match OIGNIES", - "Marque": "Supermarché Match" + "name": "Supermarché Match OIGNIES", + "brand": "Supermarché Match" }, "62600002": { - "Nom": "Carrefour BERCK SUR MER", - "Marque": "Carrefour" + "name": "Carrefour BERCK SUR MER", + "brand": "Carrefour" }, "62600003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62600004": { - "Nom": "STATION GARAGE FRAMBERY", - "Marque": "Indépendant sans enseigne" + "name": "STATION GARAGE FRAMBERY", + "brand": "Indépendant sans enseigne" }, "62600005": { - "Nom": "RELAIS IMPERATRICE", - "Marque": "Total" + "name": "RELAIS IMPERATRICE", + "brand": "Total" }, "62610001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62610002": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "62610004": { - "Nom": "Le plat d'or", - "Marque": "Total" + "name": "Le plat d'or", + "brand": "Total" }, "62620001": { - "Nom": "SARL LABBE", - "Marque": "Total" + "name": "SARL LABBE", + "brand": "Total" }, "62620002": { - "Nom": "MARKET", - "Marque": "MARKET" + "name": "MARKET", + "brand": "MARKET" }, "62630002": { - "Nom": "STATION ESSO", - "Marque": "Esso" + "name": "STATION ESSO", + "brand": "Esso" }, "62630003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62630004": { - "Nom": "LECLERC ETAPLES", - "Marque": "Leclerc" + "name": "LECLERC ETAPLES", + "brand": "Leclerc" }, "62640002": { - "Nom": "SARL LEFER", - "Marque": "Total" + "name": "SARL LEFER", + "brand": "Total" }, "62640003": { - "Nom": "Intermarché MONTIGNY EN GOHELLE", - "Marque": "Intermarché" + "name": "Intermarché MONTIGNY EN GOHELLE", + "brand": "Intermarché" }, "62650001": { - "Nom": "Contact", - "Marque": "Carrefour Contact" + "name": "Contact", + "brand": "Carrefour Contact" }, "62660001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62660003": { - "Nom": "VERMELDIS", - "Marque": "Leclerc" + "name": "VERMELDIS", + "brand": "Leclerc" }, "62660004": { - "Nom": "RELAIS DU QUINTY", - "Marque": "Total" + "name": "RELAIS DU QUINTY", + "brand": "Total" }, "62680001": { - "Nom": "Intermarché MERICOURT", - "Marque": "Intermarché" + "name": "Intermarché MERICOURT", + "brand": "Intermarché" }, "62690001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62690002": { - "Nom": "MR TETELIN", - "Marque": "Total" + "name": "MR TETELIN", + "brand": "Total" }, "62700001": { - "Nom": "Cora bruay", - "Marque": "CORA" + "name": "Cora bruay", + "brand": "CORA" }, "62700003": { - "Nom": "Intermarché BRUAY EN ARTOIS", - "Marque": "Intermarché" + "name": "Intermarché BRUAY EN ARTOIS", + "brand": "Intermarché" }, "62700008": { - "Nom": "RELAIS DE LA LAWE", - "Marque": "Total" + "name": "RELAIS DE LA LAWE", + "brand": "Total" }, "62710001": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "62710002": { - "Nom": "NETTO COURRIERES", - "Marque": "Netto" + "name": "NETTO COURRIERES", + "brand": "Netto" }, "62720002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "62730002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62730003": { - "Nom": "C4T FRANCE SAS", - "Marque": "C4T FRANCE" + "name": "C4T FRANCE SAS", + "brand": "C4T FRANCE" }, "62740001": { - "Nom": "ESSO ROCADE LENS", - "Marque": "Esso Express" + "name": "ESSO ROCADE LENS", + "brand": "Esso Express" }, "62750002": { - "Nom": "Intermarché LOOS EN GOHELLE", - "Marque": "Intermarché" + "name": "Intermarché LOOS EN GOHELLE", + "brand": "Intermarché" }, "62760001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "62770001": { - "Nom": "Carrefour Contact", - "Marque": "Dia" + "name": "Carrefour Contact", + "brand": "Dia" }, "62780001": { - "Nom": "SARL GARAGE DE LA COTE OPALE", - "Marque": "Total" + "name": "SARL GARAGE DE LA COTE OPALE", + "brand": "Total" }, "62780003": { - "Nom": "Intermarché CUCQ", - "Marque": "Intermarché" + "name": "Intermarché CUCQ", + "brand": "Intermarché" }, "62780004": { - "Nom": "RELAIS DU TOUQUET", - "Marque": "Total Access" + "name": "RELAIS DU TOUQUET", + "brand": "Total Access" }, "62790001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62800001": { - "Nom": "Carrefour LIEVIN", - "Marque": "Carrefour" + "name": "Carrefour LIEVIN", + "brand": "Carrefour" }, "62800004": { - "Nom": "RELAIS DE ROLLENCOURT", - "Marque": "Total Access" + "name": "RELAIS DE ROLLENCOURT", + "brand": "Total Access" }, "62810001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "62810002": { - "Nom": "SARL BONA", - "Marque": "Indépendant sans enseigne" + "name": "SARL BONA", + "brand": "Indépendant sans enseigne" }, "62820002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62820003": { - "Nom": "RELAIS LIBERCOURT", - "Marque": "Total Access" + "name": "RELAIS LIBERCOURT", + "brand": "Total Access" }, "62830001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "62830002": { - "Nom": "LECLERC", - "Marque": "Leclerc" + "name": "LECLERC", + "brand": "Leclerc" }, "62840001": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Casino" }, "62840003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "62850001": { - "Nom": "STATION Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "STATION Carrefour Contact", + "brand": "Carrefour Contact" }, "62860002": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "62860006": { - "Nom": "STATION SHELL RUMAUCOURT", - "Marque": "Shell" + "name": "STATION SHELL RUMAUCOURT", + "brand": "Shell" }, "62860007": { - "Nom": "BP A26 AIRE DE BARALLE", - "Marque": "BP" + "name": "BP A26 AIRE DE BARALLE", + "brand": "BP" }, "62870002": { - "Nom": "Carrefour Contact SARL ELYSSO DISTRI", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact SARL ELYSSO DISTRI", + "brand": "Carrefour Contact" }, "62880001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "62881001": { - "Nom": "CORA LENS 2", - "Marque": "CORA" + "name": "CORA LENS 2", + "brand": "CORA" }, "62901001": { - "Nom": "Carrefour COQUELLES", - "Marque": "Carrefour" + "name": "Carrefour COQUELLES", + "brand": "Carrefour" }, "62910001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "62920001": { - "Nom": "SARL DELABROY", - "Marque": "Total" + "name": "SARL DELABROY", + "brand": "Total" }, "62930001": { - "Nom": "Intermarché Contact WIMEREUX", - "Marque": "Intermarché" + "name": "Intermarché Contact WIMEREUX", + "brand": "Intermarché" }, "62940001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "62950001": { - "Nom": "AUCHAN NOYELLES", - "Marque": "Auchan" + "name": "AUCHAN NOYELLES", + "brand": "Auchan" }, "62970003": { - "Nom": "LECLERC COURCELLES LES LENS", - "Marque": "Leclerc" + "name": "LECLERC COURCELLES LES LENS", + "brand": "Leclerc" }, "62980001": { - "Nom": "E.LECLERC SUPERMARCHE", - "Marque": "Leclerc" + "name": "E.LECLERC SUPERMARCHE", + "brand": "Leclerc" }, "62980002": { - "Nom": "Auchan supermarche", - "Marque": "Auchan" + "name": "Auchan supermarche", + "brand": "Auchan" }, "62990001": { - "Nom": "Market SAS NCL", - "Marque": "Carrefour Market" + "name": "Market SAS NCL", + "brand": "Carrefour Market" }, "63000001": { - "Nom": "Relais Lagarde Clermont Lafayette", - "Marque": "Total" + "name": "Relais Lagarde Clermont Lafayette", + "brand": "Total" }, "63000007": { - "Nom": "ESSO POCHET LAGAYE", - "Marque": "Esso Express" + "name": "ESSO POCHET LAGAYE", + "brand": "Esso Express" }, "63000008": { - "Nom": "ESSO PUY DE DOME", - "Marque": "Esso Express" + "name": "ESSO PUY DE DOME", + "brand": "Esso Express" }, "63000009": { - "Nom": "ESSO DU BAC", - "Marque": "Esso Express" + "name": "ESSO DU BAC", + "brand": "Esso Express" }, "63000010": { - "Nom": "ESSO ST JACQUES", - "Marque": "Esso Express" + "name": "ESSO ST JACQUES", + "brand": "Esso Express" }, "63000014": { - "Nom": "Intermarché CLERMONT FERRAND", - "Marque": "Intermarché" + "name": "Intermarché CLERMONT FERRAND", + "brand": "Intermarché" }, "63000015": { - "Nom": "Centre E Leclerc La Pardieu", - "Marque": "Leclerc" + "name": "Centre E Leclerc La Pardieu", + "brand": "Leclerc" }, "63000016": { - "Nom": "CASINO CARBURANT BERTHELOT", - "Marque": "Casino" + "name": "CASINO CARBURANT BERTHELOT", + "brand": "Casino" }, "63000019": { - "Nom": "AGIP CLERMONT FERRAND RUE DORMOY", - "Marque": "Agip" + "name": "AGIP CLERMONT FERRAND RUE DORMOY", + "brand": "Agip" }, "63000022": { - "Nom": "RELAIS PONT ST-JEAN", - "Marque": "Total" + "name": "RELAIS PONT ST-JEAN", + "brand": "Total" }, "63000023": { - "Nom": "RELAIS DE LA PLAINE", - "Marque": "Total" + "name": "RELAIS DE LA PLAINE", + "brand": "Total" }, "63000024": { - "Nom": "RELAIS CHAMPRADET", - "Marque": "Total Access" + "name": "RELAIS CHAMPRADET", + "brand": "Total Access" }, "63000025": { - "Nom": "RELAIS CLERMONT-FERRAND LAVOISIER", - "Marque": "Total Access" + "name": "RELAIS CLERMONT-FERRAND LAVOISIER", + "brand": "Total Access" }, "63000026": { - "Nom": "RELAIS CLERMONT-FD ST.JACQUES", - "Marque": "Total Access" + "name": "RELAIS CLERMONT-FD ST.JACQUES", + "brand": "Total Access" }, "63100001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "63100003": { - "Nom": "STATION AUCHAN", - "Marque": "Auchan" + "name": "STATION AUCHAN", + "brand": "Auchan" }, "63100007": { - "Nom": "BREZET Centre E.Leclerc", - "Marque": "Leclerc" + "name": "BREZET Centre E.Leclerc", + "brand": "Leclerc" }, "63110002": { - "Nom": "Auchan Supermarché", - "Marque": "Auchan" + "name": "Auchan Supermarché", + "brand": "Auchan" }, "63112001": { - "Nom": "Intermarché BLANZAT", - "Marque": "Intermarché" + "name": "Intermarché BLANZAT", + "brand": "Intermarché" }, "63114001": { - "Nom": "ESSO AUTHEZAT", - "Marque": "Esso" + "name": "ESSO AUTHEZAT", + "brand": "Esso" }, "63118001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "63120002": { - "Nom": "Intermarché COURPIERE", - "Marque": "Intermarché" + "name": "Intermarché COURPIERE", + "brand": "Intermarché" }, "63120003": { - "Nom": "LORENZINI", - "Marque": "Indépendant sans enseigne" + "name": "LORENZINI", + "brand": "Indépendant sans enseigne" }, "63120004": { - "Nom": "PIREYRE FUEL", - "Marque": "BIG APPLE" + "name": "PIREYRE FUEL", + "brand": "BIG APPLE" }, "63122001": { - "Nom": "GARAGE DE THEIX SARL", - "Marque": "Esso" + "name": "GARAGE DE THEIX SARL", + "brand": "Esso" }, "63122002": { - "Nom": "SAS CHGL", - "Marque": "Intermarché" + "name": "SAS CHGL", + "brand": "Intermarché" }, "63140001": { - "Nom": "STATION AUBERT", - "Marque": "Total" + "name": "STATION AUBERT", + "brand": "Total" }, "63140002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "63150001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "63150002": { - "Nom": "Intermarché MURAT LE QUAIRE", - "Marque": "Intermarché" + "name": "Intermarché MURAT LE QUAIRE", + "brand": "Intermarché" }, "63160001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "63160002": { - "Nom": "Intermarché BILLON", - "Marque": "Intermarché" + "name": "Intermarché BILLON", + "brand": "Intermarché" }, "63160003": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "63170001": { - "Nom": "AUCHAN AUBIERE", - "Marque": "Auchan" + "name": "AUCHAN AUBIERE", + "brand": "Auchan" }, "63170007": { - "Nom": "AGIP AUBIERE", - "Marque": "Agip" + "name": "AGIP AUBIERE", + "brand": "Agip" }, "63190001": { - "Nom": "CSF Station de Service Carrefour Market", - "Marque": "Carrefour Market" + "name": "CSF Station de Service Carrefour Market", + "brand": "Carrefour Market" }, "63190009": { - "Nom": "SAS LARZAT ET MEYRONNE LEZOUX", - "Marque": "LARZAT ET MEYRONNE" + "name": "SAS LARZAT ET MEYRONNE LEZOUX", + "brand": "LARZAT ET MEYRONNE" }, "63190011": { - "Nom": "RELAIS D'ORLEAT", - "Marque": "Total" + "name": "RELAIS D'ORLEAT", + "brand": "Total" }, "63200001": { - "Nom": "Carrefour RIOM", - "Marque": "Carrefour" + "name": "Carrefour RIOM", + "brand": "Carrefour" }, "63200002": { - "Nom": "Relais Lagarde Riom", - "Marque": "Total" + "name": "Relais Lagarde Riom", + "brand": "Total" }, "63200004": { - "Nom": "ESSO LAYAT", - "Marque": "Esso Express" + "name": "ESSO LAYAT", + "brand": "Esso Express" }, "63200006": { - "Nom": "MARKET RIOM", - "Marque": "Carrefour Market" + "name": "MARKET RIOM", + "brand": "Carrefour Market" }, "63201001": { - "Nom": "ENVAL DISTRIBUTION", - "Marque": "Leclerc" + "name": "ENVAL DISTRIBUTION", + "brand": "Leclerc" }, "63210001": { - "Nom": "GARAGE GAUTHIER", - "Marque": "Total" + "name": "GARAGE GAUTHIER", + "brand": "Total" }, "63210002": { - "Nom": "STE D EXPLOITATION FAURE SARL", - "Marque": "Avia" + "name": "STE D EXPLOITATION FAURE SARL", + "brand": "Avia" }, "63210003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "63220001": { - "Nom": "Station U", - "Marque": "Système U" + "name": "Station U", + "brand": "Système U" }, "63230001": { - "Nom": "Total LA GOUTELLE", - "Marque": "Total" + "name": "Total LA GOUTELLE", + "brand": "Total" }, "63230002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "63240001": { - "Nom": "GARAGE DU SANCY", - "Marque": "Total" + "name": "GARAGE DU SANCY", + "brand": "Total" }, "63250001": { - "Nom": "STATION INTERCOMMUNALE DE CHABRELOCHE", - "Marque": "intercommunale" + "name": "STATION INTERCOMMUNALE DE CHABRELOCHE", + "brand": "intercommunale" }, "63260003": { - "Nom": "MARKET AIGUEPERSE", - "Marque": "Carrefour Market" + "name": "MARKET AIGUEPERSE", + "brand": "Carrefour Market" }, "63270001": { - "Nom": "SUPER U Vic-le-Comte", - "Marque": "Système U" + "name": "SUPER U Vic-le-Comte", + "brand": "Système U" }, "63290001": { - "Nom": "Relais Lagarde Puy Guillaume", - "Marque": "Total" + "name": "Relais Lagarde Puy Guillaume", + "brand": "Total" }, "63300001": { - "Nom": "Carrefour THIERS", - "Marque": "Carrefour" + "name": "Carrefour THIERS", + "brand": "Carrefour" }, "63300002": { - "Nom": "RICOUX", - "Marque": "Total" + "name": "RICOUX", + "brand": "Total" }, "63300003": { - "Nom": "SA THIERS AUTOMOBILES", - "Marque": "Elan" + "name": "SA THIERS AUTOMOBILES", + "brand": "Elan" }, "63300004": { - "Nom": "Centre E.LECLERC THIERS", - "Marque": "Leclerc" + "name": "Centre E.LECLERC THIERS", + "brand": "Leclerc" }, "63300005": { - "Nom": "Intermarché THIERS", - "Marque": "Intermarché" + "name": "Intermarché THIERS", + "brand": "Intermarché" }, "63300007": { - "Nom": "PIREYRE FUEL", - "Marque": "BIG APPLE" + "name": "PIREYRE FUEL", + "brand": "BIG APPLE" }, "63310002": { - "Nom": "SAS RANDECO", - "Marque": "Intermarché Contact" + "name": "SAS RANDECO", + "brand": "Intermarché Contact" }, "63320001": { - "Nom": "Intermarché CHAMPEIX", - "Marque": "Intermarché" + "name": "Intermarché CHAMPEIX", + "brand": "Intermarché" }, "63320002": { - "Nom": "SANCY CARBURANTS COMBUSTIBLES", - "Marque": "Indépendant sans enseigne" + "name": "SANCY CARBURANTS COMBUSTIBLES", + "brand": "Indépendant sans enseigne" }, "63330002": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "63340001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "63350001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "63350002": { - "Nom": "SARL SERVOL ET FILS", - "Marque": "Total" + "name": "SARL SERVOL ET FILS", + "brand": "Total" }, "63350003": { - "Nom": "SAS LARZAT ET MEYRONNE MARINGUES", - "Marque": "LARZAT ET MEYRONNE" + "name": "SAS LARZAT ET MEYRONNE MARINGUES", + "brand": "LARZAT ET MEYRONNE" }, "63360001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market", + "address": "13 allée de Fonchenille" }, "63360002": { - "Nom": "SARL GGE ALAIN BORSIER", - "Marque": "Total" + "name": "SARL GGE ALAIN BORSIER", + "brand": "Total" }, "63360003": { - "Nom": "Intermarché GERZAT", - "Marque": "Intermarché" + "name": "Intermarché GERZAT", + "brand": "Intermarché" }, "63370001": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "63380001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "63380002": { - "Nom": "SARL FAUVERTEIX", - "Marque": "Indépendant sans enseigne" + "name": "SARL FAUVERTEIX", + "brand": "Indépendant sans enseigne" }, "63390001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "63400001": { - "Nom": "ESSO CHAMALIERES", - "Marque": "Esso Express" + "name": "ESSO CHAMALIERES", + "brand": "Esso Express" }, "63410001": { - "Nom": "AIRE DE MANZAT", - "Marque": "Agip" + "name": "AIRE DE MANZAT", + "brand": "Agip" }, "63430002": { - "Nom": "ERIC COTTIER", - "Marque": "Total" + "name": "ERIC COTTIER", + "brand": "Total" }, "63430004": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "63430006": { - "Nom": "SUPER U PONT DU CHATEAU", - "Marque": "Système U" + "name": "SUPER U PONT DU CHATEAU", + "brand": "Système U" }, "63440003": { - "Nom": "RELAIS LES VOLCANS D AUVERGNE", - "Marque": "Total" + "name": "RELAIS LES VOLCANS D AUVERGNE", + "brand": "Total" }, "63450002": { - "Nom": "Intermarché Contact TALLENDE", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact TALLENDE", + "brand": "Intermarché Contact" }, "63450004": { - "Nom": "RELAIS DE LA PEIGNE", - "Marque": "Total" + "name": "RELAIS DE LA PEIGNE", + "brand": "Total" }, "63460002": { - "Nom": "SARL HERVIER", - "Marque": "Esso" + "name": "SARL HERVIER", + "brand": "Esso" }, "63460003": { - "Nom": "Intermarché Combronde", - "Marque": "Intermarché" + "name": "Intermarché Combronde", + "brand": "Intermarché" }, "63490001": { - "Nom": "Station Service Sauxillanges", - "Marque": "Carrefour Contact" + "name": "Station Service Sauxillanges", + "brand": "Carrefour Contact" }, "63500002": { - "Nom": "YSIODIS", - "Marque": "Carrefour" + "name": "YSIODIS", + "brand": "Carrefour" }, "63500006": { - "Nom": "RELAIS DE PEIX", - "Marque": "Total" + "name": "RELAIS DE PEIX", + "brand": "Total" }, "63500007": { - "Nom": "RELAIS DU STADE", - "Marque": "Total Access" + "name": "RELAIS DU STADE", + "brand": "Total Access" }, "63500008": { - "Nom": "Intermarché - Carburants", - "Marque": "Intermarché" + "name": "Intermarché - Carburants", + "brand": "Intermarché" }, "63540001": { - "Nom": "AMATO FABRICE", - "Marque": "Total" + "name": "AMATO FABRICE", + "brand": "Total" }, "63540002": { - "Nom": "STATION Total A.M.G.", - "Marque": "Total" + "name": "STATION Total A.M.G.", + "brand": "Total" }, "63570003": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "63600001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "63600002": { - "Nom": "Intermarché AMBERT", - "Marque": "Intermarché" + "name": "Intermarché AMBERT", + "brand": "Intermarché" }, "63600003": { - "Nom": "GARAGE GRENIER", - "Marque": "Total" + "name": "GARAGE GRENIER", + "brand": "Total" }, "63610001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "63620001": { - "Nom": "SHOPI", - "Marque": "Shopi" + "name": "SHOPI", + "brand": "Shopi" }, "63650001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "63660001": { - "Nom": "Station Service Intercommunale", - "Marque": "Indépendant" + "name": "Station Service Intercommunale", + "brand": "Indépendant" }, "63670001": { - "Nom": "CBP / Intermarché LE CENDRE", - "Marque": "Intermarché" + "name": "CBP / Intermarché LE CENDRE", + "brand": "Intermarché" }, "63670002": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "63700004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "63700005": { - "Nom": "EURL NAMAR", - "Marque": "Total" + "name": "EURL NAMAR", + "brand": "Total" }, "63720003": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "63730001": { - "Nom": "Auchan supermarche", - "Marque": "Auchan" + "name": "Auchan supermarche", + "brand": "Auchan" }, "63760001": { - "Nom": "Intermarché", - "Marque": "Intermarché Contact" + "name": "Intermarché", + "brand": "Intermarché Contact" }, "63770001": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "63790001": { - "Nom": "GARAGE DE L'AVENIR", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE DE L'AVENIR", + "brand": "Indépendant sans enseigne" }, "63800002": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "63800004": { - "Nom": "RELAIS LES CHOMETTES", - "Marque": "Total" + "name": "RELAIS LES CHOMETTES", + "brand": "Total" }, "63800005": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "63850001": { - "Nom": "ORCEYRE CARBURANTS", - "Marque": "Indépendant sans enseigne" + "name": "ORCEYRE CARBURANTS", + "brand": "Indépendant sans enseigne" }, "63940001": { - "Nom": "SARL GARAGE GRENIER", - "Marque": "Total" + "name": "SARL GARAGE GRENIER", + "brand": "Total" }, "63960002": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "63960005": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "64000001": { - "Nom": "AUCHAN PAU", - "Marque": "Auchan" + "name": "AUCHAN PAU", + "brand": "Auchan" }, "64000007": { - "Nom": "ESSO HIPPODROME PAU", - "Marque": "Esso Express" + "name": "ESSO HIPPODROME PAU", + "brand": "Esso Express" }, "64000009": { - "Nom": "CENTRE E.LECLERC PAU", - "Marque": "Leclerc" + "name": "CENTRE E.LECLERC PAU", + "brand": "Leclerc" }, "64000011": { - "Nom": "Intermarché PAU", - "Marque": "Intermarché" + "name": "Intermarché PAU", + "brand": "Intermarché" }, "64000013": { - "Nom": "SARL DUCS 64", - "Marque": "Avia" + "name": "SARL DUCS 64", + "brand": "Avia" }, "64000014": { - "Nom": "SARL DUCS 64", - "Marque": "Avia" + "name": "SARL DUCS 64", + "brand": "Avia" }, "64000015": { - "Nom": "RELAIS DE BARINCOU", - "Marque": "Total" + "name": "RELAIS DE BARINCOU", + "brand": "Total" }, "64000016": { - "Nom": "RELAIS DE PAU MERMOZ", - "Marque": "Total Access" + "name": "RELAIS DE PAU MERMOZ", + "brand": "Total Access" }, "64100001": { - "Nom": "STATION Total DAMESTOY", - "Marque": "Total" + "name": "STATION Total DAMESTOY", + "brand": "Total" }, "64100009": { - "Nom": "Intermarché BAYONNE", - "Marque": "Intermarché" + "name": "Intermarché BAYONNE", + "brand": "Intermarché" }, "64100010": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "64100011": { - "Nom": "GRAND BASQUE", - "Marque": "Esso" + "name": "GRAND BASQUE", + "brand": "Esso" }, "64100013": { - "Nom": "ESSO EXPRESS BAYONNE CAMBO", - "Marque": "Esso Express" + "name": "ESSO EXPRESS BAYONNE CAMBO", + "brand": "Esso Express" }, "64100014": { - "Nom": "RELAIS BAYONNE GUYENNE STAR", - "Marque": "Total Access" + "name": "RELAIS BAYONNE GUYENNE STAR", + "brand": "Total Access" }, "64100015": { - "Nom": "RELAIS BAYONNE STE CROIX STATION TO", - "Marque": "Total Access" + "name": "RELAIS BAYONNE STE CROIX STATION TO", + "brand": "Total Access" }, "64103001": { - "Nom": "SODIBAY", - "Marque": "Leclerc" + "name": "SODIBAY", + "brand": "Leclerc" }, "64110003": { - "Nom": "SARL CAZALIS NOUVELLE", - "Marque": "Total" + "name": "SARL CAZALIS NOUVELLE", + "brand": "Total" }, "64110004": { - "Nom": "MAZEDIS SA", - "Marque": "Leclerc" + "name": "MAZEDIS SA", + "brand": "Leclerc" }, "64110006": { - "Nom": "RELAIS PAU JURANCON STAR", - "Marque": "Total Access" + "name": "RELAIS PAU JURANCON STAR", + "brand": "Total Access" }, "64120001": { - "Nom": "SARL RESTOYBURU SAINT PALAIS", - "Marque": "Total" + "name": "SARL RESTOYBURU SAINT PALAIS", + "brand": "Total" }, "64120004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "64120005": { - "Nom": "E.LECLERC", - "Marque": "Leclerc" + "name": "E.LECLERC", + "brand": "Leclerc" }, "64121003": { - "Nom": "RELAIS AYGUE LONGUE", - "Marque": "Total Access" + "name": "RELAIS AYGUE LONGUE", + "brand": "Total Access" }, "64121004": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "64122001": { - "Nom": "PAYS BASQUE DISTRIBUTION", - "Marque": "Leclerc" + "name": "PAYS BASQUE DISTRIBUTION", + "brand": "Leclerc" }, "64130002": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "64130003": { - "Nom": "Intermarché MAULEON SOULE", - "Marque": "Intermarché" + "name": "Intermarché MAULEON SOULE", + "brand": "Intermarché" }, "64130004": { - "Nom": "SARL Soule Automobiles", - "Marque": "Total" + "name": "SARL Soule Automobiles", + "brand": "Total" }, "64140001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "64140003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "64140004": { - "Nom": "Intermarché BILLERES", - "Marque": "Intermarché" + "name": "Intermarché BILLERES", + "brand": "Intermarché" }, "64140005": { - "Nom": "RELAIS MOHEDAN", - "Marque": "Total" + "name": "RELAIS MOHEDAN", + "brand": "Total" }, "64150003": { - "Nom": "SARL GGE PAMBRUN", - "Marque": "Total" + "name": "SARL GGE PAMBRUN", + "brand": "Total" }, "64150004": { - "Nom": "SN MODIS", - "Marque": "Leclerc" + "name": "SN MODIS", + "brand": "Leclerc" }, "64150006": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "64160001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "64160003": { - "Nom": "Intermarché MORLAAS", - "Marque": "Intermarché" + "name": "Intermarché MORLAAS", + "brand": "Intermarché" }, "64170001": { - "Nom": "EURL FERREIRA", - "Marque": "Total" + "name": "EURL FERREIRA", + "brand": "Total" }, "64170005": { - "Nom": "LECLERC EXPRESS", - "Marque": "Leclerc" + "name": "LECLERC EXPRESS", + "brand": "Leclerc" }, "64170010": { - "Nom": "AGIP LACQ SUD-AUTOROUTE A 64", - "Marque": "Agip" + "name": "AGIP LACQ SUD-AUTOROUTE A 64", + "brand": "Agip" }, "64170011": { - "Nom": "AGIP LACQ NORD AUTOROUTE A 64", - "Marque": "Agip" + "name": "AGIP LACQ NORD AUTOROUTE A 64", + "brand": "Agip" }, "64190002": { - "Nom": "Intermarché SUSMIOU", - "Marque": "Intermarché" + "name": "Intermarché SUSMIOU", + "brand": "Intermarché" }, "64190004": { - "Nom": "8 à Huit NAVARRENX", - "Marque": "Huit à 8" + "name": "8 à Huit NAVARRENX", + "brand": "Huit à 8" }, "64200002": { - "Nom": "STA.ST.MARTIN", - "Marque": "Total" + "name": "STA.ST.MARTIN", + "brand": "Total" }, "64200006": { - "Nom": "LECLERC", - "Marque": "Leclerc" + "name": "LECLERC", + "brand": "Leclerc" }, "64200008": { - "Nom": "ESSO EXPRESS BIARRITZ", - "Marque": "Esso Express" + "name": "ESSO EXPRESS BIARRITZ", + "brand": "Esso Express" }, "64200009": { - "Nom": "RELAIS MARNE VERDUN", - "Marque": "Total" + "name": "RELAIS MARNE VERDUN", + "brand": "Total" }, "64210004": { - "Nom": "Intermarché BIDART", - "Marque": "Intermarché" + "name": "Intermarché BIDART", + "brand": "Intermarché" }, "64210005": { - "Nom": "RELAIS BIDART EST", - "Marque": "Total" + "name": "RELAIS BIDART EST", + "brand": "Total" }, "64210006": { - "Nom": "RELAIS BIDART OUEST", - "Marque": "Total" + "name": "RELAIS BIDART OUEST", + "brand": "Total" }, "64220002": { - "Nom": "SARL HANDY", - "Marque": "Total" + "name": "SARL HANDY", + "brand": "Total" }, "64220003": { - "Nom": "Intermarché ST JEAN PIED DE PORT", - "Marque": "Intermarché" + "name": "Intermarché ST JEAN PIED DE PORT", + "brand": "Intermarché" }, "64220004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "64230002": { - "Nom": "Casino Supermarché", - "Marque": "Casino" + "name": "Casino Supermarché", + "brand": "Casino" }, "64230003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "64230004": { - "Nom": "RELAIS STAR MAZEROLLES", - "Marque": "Total" + "name": "RELAIS STAR MAZEROLLES", + "brand": "Total" }, "64233001": { - "Nom": "Carrefour LESCAR", - "Marque": "Carrefour" + "name": "Carrefour LESCAR", + "brand": "Carrefour" }, "64240003": { - "Nom": "Intermarché HASPARREN", - "Marque": "Intermarché" + "name": "Intermarché HASPARREN", + "brand": "Intermarché" }, "64240004": { - "Nom": "GARAGE BERHO STATION AVIA", - "Marque": "Avia" + "name": "GARAGE BERHO STATION AVIA", + "brand": "Avia" }, "64240005": { - "Nom": "Carrefour MARKET PHIMAPA", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET PHIMAPA", + "brand": "Carrefour Market" }, "64240006": { - "Nom": "HASPARREN DISTRIBUTION", - "Marque": "Leclerc" + "name": "HASPARREN DISTRIBUTION", + "brand": "Leclerc" }, "64250001": { - "Nom": "Intermarché CAMBO LES BAINS", - "Marque": "Intermarché" + "name": "Intermarché CAMBO LES BAINS", + "brand": "Intermarché" }, "64250003": { - "Nom": "Carrefour Contact SARL BIHENA", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact SARL BIHENA", + "brand": "Carrefour Contact" }, "64250004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "64260002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "64260005": { - "Nom": "SAS LOVIER", - "Marque": "Intermarché" + "name": "SAS LOVIER", + "brand": "Intermarché" }, "64270001": { - "Nom": "MR JAMEAU", - "Marque": "Total" + "name": "MR JAMEAU", + "brand": "Total" }, "64270002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "64270003": { - "Nom": "Intermarché SUPER", - "Marque": "Intermarché" + "name": "Intermarché SUPER", + "brand": "Intermarché" }, "64290001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "64300002": { - "Nom": "SNC MORIN", - "Marque": "Total" + "name": "SNC MORIN", + "brand": "Total" }, "64300003": { - "Nom": "ORTHEZ-DISTRIBUTION", - "Marque": "Leclerc" + "name": "ORTHEZ-DISTRIBUTION", + "brand": "Leclerc" }, "64300005": { - "Nom": "SUPER U ORTHEZ", - "Marque": "Système U" + "name": "SUPER U ORTHEZ", + "brand": "Système U" }, "64300006": { - "Nom": "BIRODIS", - "Marque": "Leader Price" + "name": "BIRODIS", + "brand": "Leader Price" }, "64300007": { - "Nom": "SARL SAUNADIS", - "Marque": "Système U" + "name": "SARL SAUNADIS", + "brand": "Système U" }, "64310001": { - "Nom": "Intermarché ST PEE SUR NIVELLE", - "Marque": "Intermarché" + "name": "Intermarché ST PEE SUR NIVELLE", + "brand": "Intermarché" }, "64310002": { - "Nom": "SAS GASTELU", - "Marque": "Netto" + "name": "SAS GASTELU", + "brand": "Netto" }, "64320003": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "64320004": { - "Nom": "Casino Supermarché Domaine du Roy", - "Marque": "DISCOUNT" + "name": "Casino Supermarché Domaine du Roy", + "brand": "DISCOUNT" }, "64320005": { - "Nom": "RELAIS BIZANOS STAR", - "Marque": "Total Access" + "name": "RELAIS BIZANOS STAR", + "brand": "Total Access" }, "64330001": { - "Nom": "Intermarché GARLIN", - "Marque": "Intermarché" + "name": "Intermarché GARLIN", + "brand": "Intermarché" }, "64350002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "64360000": { - "Nom": "SAS LOUPIEN", - "Marque": "Intermarché" + "name": "SAS LOUPIEN", + "brand": "Intermarché" }, "64370001": { - "Nom": "Carrefour Contact ARTHEZ", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact ARTHEZ", + "brand": "Carrefour Contact" }, "64390002": { - "Nom": "SAS ASPIS", - "Marque": "Leclerc" + "name": "SAS ASPIS", + "brand": "Leclerc" }, "64400002": { - "Nom": "EOR OLORON STE M GUIRAUD", - "Marque": "Total" + "name": "EOR OLORON STE M GUIRAUD", + "brand": "Total" }, "64400003": { - "Nom": "OLODIS", - "Marque": "Leclerc" + "name": "OLODIS", + "brand": "Leclerc" }, "64400005": { - "Nom": "Intermarché OLORON STE MARIE", - "Marque": "Intermarché" + "name": "Intermarché OLORON STE MARIE", + "brand": "Intermarché" }, "64410001": { - "Nom": "Carrefour ARZACQ", - "Marque": "Carrefour Contact" + "name": "Carrefour ARZACQ", + "brand": "Carrefour Contact" }, "64420001": { - "Nom": "Intermarché SAS LE BOSQUET", - "Marque": "Intermarché" + "name": "Intermarché SAS LE BOSQUET", + "brand": "Intermarché" }, "64430001": { - "Nom": "Intermarché BAIGORRY", - "Marque": "Intermarché Contact" + "name": "Intermarché BAIGORRY", + "brand": "Intermarché Contact" }, "64440002": { - "Nom": "Intermarché LARUNS", - "Marque": "Intermarché" + "name": "Intermarché LARUNS", + "brand": "Intermarché" }, "64470001": { - "Nom": "CARRERE ANNE MARIE", - "Marque": "Elan" + "name": "CARRERE ANNE MARIE", + "brand": "Elan" }, "64480001": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "64480004": { - "Nom": "EOR LARRESSORE ETCHEGARAY", - "Marque": "Total" + "name": "EOR LARRESSORE ETCHEGARAY", + "brand": "Total" }, "64480005": { - "Nom": "SARL ARRIETA T&S", - "Marque": "Total" + "name": "SARL ARRIETA T&S", + "brand": "Total" }, "64490001": { - "Nom": "Intermarché ACCOUS", - "Marque": "Intermarché Contact" + "name": "Intermarché ACCOUS", + "brand": "Intermarché Contact" }, "64500003": { - "Nom": "Carrefour Station-Service St Jean de Luz", - "Marque": "Carrefour" + "name": "Carrefour Station-Service St Jean de Luz", + "brand": "Carrefour" }, "64500004": { - "Nom": "LAMERAIN SAS Total", - "Marque": "Total" + "name": "LAMERAIN SAS Total", + "brand": "Total" }, "64500005": { - "Nom": "PAYS BASQUE DISTRIBUTION", - "Marque": "Leclerc" + "name": "PAYS BASQUE DISTRIBUTION", + "brand": "Leclerc" }, "64500006": { - "Nom": "RELAIS ST JEAN DE LUZ CHANTACO", - "Marque": "Total" + "name": "RELAIS ST JEAN DE LUZ CHANTACO", + "brand": "Total" }, "64510001": { - "Nom": "Intermarché BORDES", - "Marque": "Intermarché" + "name": "Intermarché BORDES", + "brand": "Intermarché" }, "64520001": { - "Nom": "HOUET JEAN", - "Marque": "Elan" + "name": "HOUET JEAN", + "brand": "Elan" }, "64520002": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "64530002": { - "Nom": "Intermarché PONTACQ", - "Marque": "Intermarché" + "name": "Intermarché PONTACQ", + "brand": "Intermarché" }, "64530004": { - "Nom": "RELAIS DES PYRENEES", - "Marque": "Total" + "name": "RELAIS DES PYRENEES", + "brand": "Total" }, "64570002": { - "Nom": "Intermarché Contact ARAMITS", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact ARAMITS", + "brand": "Intermarché Contact" }, "64600001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "64600002": { - "Nom": "Carrefour ANGLET BAB2", - "Marque": "Carrefour" + "name": "Carrefour ANGLET BAB2", + "brand": "Carrefour" }, "64600007": { - "Nom": "RELAIS ANGLET BAB", - "Marque": "Total Access" + "name": "RELAIS ANGLET BAB", + "brand": "Total Access" }, "64604001": { - "Nom": "E LECLERC", - "Marque": "Leclerc" + "name": "E LECLERC", + "brand": "Leclerc" }, "64700001": { - "Nom": "SARL CASTAGNET", - "Marque": "Total" + "name": "SARL CASTAGNET", + "brand": "Total" }, "64780001": { - "Nom": "LECLERC EXPRESS OSSES", - "Marque": "Leclerc" + "name": "LECLERC EXPRESS OSSES", + "brand": "Leclerc" }, "64800003": { - "Nom": "GARAGE DE LA PLAINE", - "Marque": "Elan" + "name": "GARAGE DE LA PLAINE", + "brand": "Elan" }, "64800004": { - "Nom": "FERRAN STE D'EXPL.", - "Marque": "Elan" + "name": "FERRAN STE D'EXPL.", + "brand": "Elan" }, "64800005": { - "Nom": "Intermarché COARRAZE", - "Marque": "Intermarché" + "name": "Intermarché COARRAZE", + "brand": "Intermarché" }, "64800007": { - "Nom": "SUPER U BENEJACQ", - "Marque": "Système U" + "name": "SUPER U BENEJACQ", + "brand": "Système U" }, "64990001": { - "Nom": "SARL ERRATXOU", - "Marque": "Total" + "name": "SARL ERRATXOU", + "brand": "Total" }, "64990002": { - "Nom": "SAS GORRIA", - "Marque": "Intermarché Contact" + "name": "SAS GORRIA", + "brand": "Intermarché Contact" }, "65000001": { - "Nom": "Carrefour Market Germain Claverie", - "Marque": "Carrefour Market" + "name": "Carrefour Market Germain Claverie", + "brand": "Carrefour Market" }, "65000002": { - "Nom": "SARL DASSY", - "Marque": "Total" + "name": "SARL DASSY", + "brand": "Total" }, "65000004": { - "Nom": "ESSO DEBUSSY", - "Marque": "Esso Express" + "name": "ESSO DEBUSSY", + "brand": "Esso Express" }, "65000007": { - "Nom": "Centre Leclerc ORMEAUDIS", - "Marque": "Leclerc" + "name": "Centre Leclerc ORMEAUDIS", + "brand": "Leclerc" }, "65000008": { - "Nom": "Intermarché TARBES", - "Marque": "Intermarché" + "name": "Intermarché TARBES", + "brand": "Intermarché" }, "65000009": { - "Nom": "Carrefour Market Quartier Lacaussade", - "Marque": "Carrefour Market" + "name": "Carrefour Market Quartier Lacaussade", + "brand": "Carrefour Market" }, "65000010": { - "Nom": "RELAIS TARBES URAC", - "Marque": "Total Access" + "name": "RELAIS TARBES URAC", + "brand": "Total Access" }, "65100001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "65100004": { - "Nom": "ESSO LOURDES", - "Marque": "Esso Express" + "name": "ESSO LOURDES", + "brand": "Esso Express" }, "65100005": { - "Nom": "CENTRE DISTRIBUTEUR LOURDES", - "Marque": "Leclerc" + "name": "CENTRE DISTRIBUTEUR LOURDES", + "brand": "Leclerc" }, "65100008": { - "Nom": "SA STEME", - "Marque": "Netto" + "name": "SA STEME", + "brand": "Netto" }, "65100009": { - "Nom": "RELAIS DU JER", - "Marque": "Total Access" + "name": "RELAIS DU JER", + "brand": "Total Access" }, "65110003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "65120001": { - "Nom": "Carrefour market relais des pyrenees", - "Marque": "Carrefour Market" + "name": "Carrefour market relais des pyrenees", + "brand": "Carrefour Market" }, "65120002": { - "Nom": "Eurl crepel yves", - "Marque": "Indépendant sans enseigne" + "name": "Eurl crepel yves", + "brand": "Indépendant sans enseigne" }, "65130001": { - "Nom": "Intermarché CAPVERN", - "Marque": "Intermarché" + "name": "Intermarché CAPVERN", + "brand": "Intermarché" }, "65140003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "65170002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "65190001": { - "Nom": "PECASSOU Paul", - "Marque": "Total" + "name": "PECASSOU Paul", + "brand": "Total" }, "65190002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "65200001": { - "Nom": "GARAGE DU PIC DU MIDI", - "Marque": "Total" + "name": "GARAGE DU PIC DU MIDI", + "brand": "Total" }, "65200002": { - "Nom": "SA FOURCADE", - "Marque": "Total" + "name": "SA FOURCADE", + "brand": "Total" }, "65200003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "65200005": { - "Nom": "SAS JUSSYL", - "Marque": "Intermarché" + "name": "SAS JUSSYL", + "brand": "Intermarché" }, "65220002": { - "Nom": "SA TRYLAN", - "Marque": "Intermarché" + "name": "SA TRYLAN", + "brand": "Intermarché" }, "65230002": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "65240001": { - "Nom": "Carrefour Contact ARREAU", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact ARREAU", + "brand": "Carrefour Contact" }, "65290001": { - "Nom": "Intermarché JUILLAN", - "Marque": "Intermarché" + "name": "Intermarché JUILLAN", + "brand": "Intermarché" }, "65300002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "65300003": { - "Nom": "RELAIS DE LA DEMI LUNE", - "Marque": "Total" + "name": "RELAIS DE LA DEMI LUNE", + "brand": "Total" }, "65300004": { - "Nom": "Calvet Station Avia", - "Marque": "Avia" + "name": "Calvet Station Avia", + "brand": "Avia" }, "65310001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "65370002": { - "Nom": "Contact LOURES BAROUSSE", - "Marque": "Carrefour Contact" + "name": "Contact LOURES BAROUSSE", + "brand": "Carrefour Contact" }, "65400001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "65400004": { - "Nom": "SARL BROUCA - Station Argeles", - "Marque": "Elan" + "name": "SARL BROUCA - Station Argeles", + "brand": "Elan" }, "65400005": { - "Nom": "RELAIS D AZUN", - "Marque": "Total Access" + "name": "RELAIS D AZUN", + "brand": "Total Access" }, "65410001": { - "Nom": "MR SOUBIS LAURENT", - "Marque": "Total" + "name": "MR SOUBIS LAURENT", + "brand": "Total" }, "65410002": { - "Nom": "GARAGE ESCLARMONDE &FILS", - "Marque": "Elan" + "name": "GARAGE ESCLARMONDE &FILS", + "brand": "Elan" }, "65429001": { - "Nom": "CDA SUD OUEST", - "Marque": "Leclerc" + "name": "CDA SUD OUEST", + "brand": "Leclerc" }, "65440001": { - "Nom": "SAS CAROLIVE Intermarché", - "Marque": "Intermarché Contact" + "name": "SAS CAROLIVE Intermarché", + "brand": "Intermarché Contact" }, "65460001": { - "Nom": "REL. HORIZON", - "Marque": "Total" + "name": "REL. HORIZON", + "brand": "Total" }, "65500001": { - "Nom": "STATION PEREZ", - "Marque": "Total" + "name": "STATION PEREZ", + "brand": "Total" }, "65500002": { - "Nom": "Intermarché VIC EN BIGORRE", - "Marque": "Intermarché" + "name": "Intermarché VIC EN BIGORRE", + "brand": "Intermarché" }, "65500003": { - "Nom": "LECLERC EXPRESS", - "Marque": "Leclerc" + "name": "LECLERC EXPRESS", + "brand": "Leclerc" }, "65510001": { - "Nom": "PICOTY SA LOUDENVIELLE", - "Marque": "Avia" + "name": "PICOTY SA LOUDENVIELLE", + "brand": "Avia" }, "65600001": { - "Nom": "RELAIS SAINT FRAI", - "Marque": "Total" + "name": "RELAIS SAINT FRAI", + "brand": "Total" }, "65600002": { - "Nom": "STATION ST CHRISTOPHE", - "Marque": "Elan" + "name": "STATION ST CHRISTOPHE", + "brand": "Elan" }, "65700002": { - "Nom": "SUPER U SAS MADISSO", - "Marque": "Système U" + "name": "SUPER U SAS MADISSO", + "brand": "Système U" }, "65800002": { - "Nom": "SOVENDEX", - "Marque": "Leclerc" + "name": "SOVENDEX", + "brand": "Leclerc" }, "65800004": { - "Nom": "Intermarché AUREILHAN", - "Marque": "Intermarché" + "name": "Intermarché AUREILHAN", + "brand": "Intermarché" }, "66000003": { - "Nom": "DYNEFF Thuir", - "Marque": "Dyneff" + "name": "DYNEFF Thuir", + "brand": "Dyneff" }, "66000005": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "66000006": { - "Nom": "Mme Vidal Trousseu Brigitte", - "Marque": "Total" + "name": "Mme Vidal Trousseu Brigitte", + "brand": "Total" }, "66000010": { - "Nom": "ESSO PERPINYA", - "Marque": "Esso Express" + "name": "ESSO PERPINYA", + "brand": "Esso Express" }, "66000012": { - "Nom": "PETROR", - "Marque": "PETROR" + "name": "PETROR", + "brand": "PETROR" }, "66000014": { - "Nom": "Auchan Supermarché Perpignan Mas Rous", - "Marque": "Auchan" + "name": "Auchan Supermarché Perpignan Mas Rous", + "brand": "Auchan" }, "66000015": { - "Nom": "SARL FERNANDEZ ET FILS", - "Marque": "Dyneff" + "name": "SARL FERNANDEZ ET FILS", + "brand": "Dyneff" }, "66000016": { - "Nom": "Total Access SAINT CHARLES CATALOGNE CARBURANTS", - "Marque": "Total Access" + "name": "Total Access SAINT CHARLES CATALOGNE CARBURANTS", + "brand": "Total Access" }, "66000018": { - "Nom": "RELAIS PORTE ESPAGNE", - "Marque": "Total Access" + "name": "RELAIS PORTE ESPAGNE", + "brand": "Total Access" }, "66005001": { - "Nom": "SA SODICAT", - "Marque": "Leclerc" + "name": "SA SODICAT", + "brand": "Leclerc" }, "66028001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "66100002": { - "Nom": "RELAIS DES ALBERES", - "Marque": "Total" + "name": "RELAIS DES ALBERES", + "brand": "Total" }, "66120001": { - "Nom": "STATION U", - "Marque": "Station U" + "name": "STATION U", + "brand": "Station U" }, "66130002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "66140001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "66140002": { - "Nom": "Intermarché CANET EN ROUSSILLON", - "Marque": "Intermarché" + "name": "Intermarché CANET EN ROUSSILLON", + "brand": "Intermarché" }, "66160001": { - "Nom": "SODITECH", - "Marque": "Leclerc" + "name": "SODITECH", + "brand": "Leclerc" }, "66160003": { - "Nom": "LE BOULOU", - "Marque": "Intermarché" + "name": "LE BOULOU", + "brand": "Intermarché" }, "66170001": { - "Nom": "Intermarché MILLAS", - "Marque": "Intermarché" + "name": "Intermarché MILLAS", + "brand": "Intermarché" }, "66200001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "66200002": { - "Nom": "Intermarché MONTESCOT", - "Marque": "Intermarché" + "name": "Intermarché MONTESCOT", + "brand": "Intermarché" }, "66200003": { - "Nom": "Intermarché LATOUR BAS ELNE", - "Marque": "Intermarché" + "name": "Intermarché LATOUR BAS ELNE", + "brand": "Intermarché" }, "66200004": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Colruyt" + "name": "SUPERMARCHE CASINO", + "brand": "Colruyt" }, "66201001": { - "Nom": "SARL GARAGE MARTRE", - "Marque": "Dyneff" + "name": "SARL GARAGE MARTRE", + "brand": "Dyneff" }, "66210002": { - "Nom": "CASINO CARBURANT", - "Marque": "Casino" + "name": "CASINO CARBURANT", + "brand": "Casino" }, "66220001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "66240001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "66250001": { - "Nom": "EOR ST LAURENT S FORMENTY", - "Marque": "Total" + "name": "EOR ST LAURENT S FORMENTY", + "brand": "Total" }, "66250002": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "66250003": { - "Nom": "EURL BALOUET DOMINIQUE", - "Marque": "Dyneff" + "name": "EURL BALOUET DOMINIQUE", + "brand": "Dyneff" }, "66270001": { - "Nom": "Intermarché LE SOLER", - "Marque": "Intermarché" + "name": "Intermarché LE SOLER", + "brand": "Intermarché" }, "66300012": { - "Nom": "NETTO THUIR", - "Marque": "Netto" + "name": "NETTO THUIR", + "brand": "Netto" }, "66300013": { - "Nom": "ROMPETROL Banyuls", - "Marque": "Dyneff" + "name": "ROMPETROL Banyuls", + "brand": "Dyneff" }, "66300014": { - "Nom": "SUPER U LES ASPRES", - "Marque": "Système U" + "name": "SUPER U LES ASPRES", + "brand": "Système U" }, "66300015": { - "Nom": "SAS SALAO", - "Marque": "Intermarché" + "name": "SAS SALAO", + "brand": "Intermarché" }, "66330001": { - "Nom": "SARL GARAGE CALVET", - "Marque": "Total" + "name": "SARL GARAGE CALVET", + "brand": "Total" }, "66330002": { - "Nom": "Intermarché CABESTANY", - "Marque": "Intermarché" + "name": "Intermarché CABESTANY", + "brand": "Intermarché" }, "66380001": { - "Nom": "ESSO DE PIA", - "Marque": "Esso Express" + "name": "ESSO DE PIA", + "brand": "Esso Express" }, "66400004": { - "Nom": "Intermarché CERET", - "Marque": "Intermarché" + "name": "Intermarché CERET", + "brand": "Intermarché" }, "66400005": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "66420001": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "66420002": { - "Nom": "SARL MONTANER ET FILS", - "Marque": "Dyneff" + "name": "SARL MONTANER ET FILS", + "brand": "Dyneff" }, "66420003": { - "Nom": "SARL MONTANER ET FILS", - "Marque": "Dyneff" + "name": "SARL MONTANER ET FILS", + "brand": "Dyneff" }, "66430002": { - "Nom": "SUPER U BOMPAS", - "Marque": "Système U" + "name": "SUPER U BOMPAS", + "brand": "Système U" }, "66450001": { - "Nom": "Intermarché SAS LILONE", - "Marque": "Intermarché" + "name": "Intermarché SAS LILONE", + "brand": "Intermarché" }, "66470001": { - "Nom": "CASINO SAINTE MARIE LA MER", - "Marque": "Casino" + "name": "CASINO SAINTE MARIE LA MER", + "brand": "Casino" }, "66500001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "66500003": { - "Nom": "SAS MATAGA", - "Marque": "Intermarché" + "name": "SAS MATAGA", + "brand": "Intermarché" }, "66510001": { - "Nom": "SARL LE RELAIS DE BONABOSC", - "Marque": "Total" + "name": "SARL LE RELAIS DE BONABOSC", + "brand": "Total" }, "66530001": { - "Nom": "Carrefour CLAIRA", - "Marque": "Carrefour" + "name": "Carrefour CLAIRA", + "brand": "Carrefour" }, "66530002": { - "Nom": "SAS PETROSUD FORMENTY", - "Marque": "ESSO" + "name": "SAS PETROSUD FORMENTY", + "brand": "ESSO" }, "66600001": { - "Nom": "Intermarché RIVESALTES", - "Marque": "Intermarché" + "name": "Intermarché RIVESALTES", + "brand": "Intermarché" }, "66600002": { - "Nom": "RELAIS RIVESALTES NORD", - "Marque": "Total" + "name": "RELAIS RIVESALTES NORD", + "brand": "Total" }, "66624001": { - "Nom": "DYNEFF", - "Marque": "Dyneff" + "name": "DYNEFF", + "brand": "Dyneff" }, "66650002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "66660002": { - "Nom": "SAS PVL", - "Marque": "Intermarché" + "name": "SAS PVL", + "brand": "Intermarché" }, "66680001": { - "Nom": "Intermarché CANOHES", - "Marque": "Intermarché" + "name": "Intermarché CANOHES", + "brand": "Intermarché" }, "66690001": { - "Nom": "Intermarché SAINT ANDRE", - "Marque": "Intermarché" + "name": "Intermarché SAINT ANDRE", + "brand": "Intermarché" }, "66700001": { - "Nom": "STATION SERVICE Intermarché", - "Marque": "Intermarché" + "name": "STATION SERVICE Intermarché", + "brand": "Intermarché" }, "66700003": { - "Nom": "SARL NEGRELL ET FILS", - "Marque": "Dyneff" + "name": "SARL NEGRELL ET FILS", + "brand": "Dyneff" }, "66700007": { - "Nom": "SAS PETROSUD FORMENTY", - "Marque": "Esso" + "name": "SAS PETROSUD FORMENTY", + "brand": "Esso" }, "66740003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "66750004": { - "Nom": "RELAIS LAS ROUTES", - "Marque": "Total Access" + "name": "RELAIS LAS ROUTES", + "brand": "Total Access" }, "66820001": { - "Nom": "Intermarché VERNET LES BAINS", - "Marque": "Intermarché Contact" + "name": "Intermarché VERNET LES BAINS", + "brand": "Intermarché Contact" }, "66962001": { - "Nom": "Carrefour PERPIGNAN", - "Marque": "Carrefour" + "name": "Carrefour PERPIGNAN", + "brand": "Carrefour" }, "66962002": { - "Nom": "SAS VERNET DIS", - "Marque": "Leclerc" + "name": "SAS VERNET DIS", + "brand": "Leclerc" }, "67000002": { - "Nom": "Supermarché Match ROBERTSAU", - "Marque": "Supermarché Match" + "name": "Supermarché Match ROBERTSAU", + "brand": "Supermarché Match" }, "67000005": { - "Nom": "AVIA Bld Lyon", - "Marque": "Avia" + "name": "AVIA Bld Lyon", + "brand": "Avia" }, "67000011": { - "Nom": "AGIP STRASBOURG ALSACE", - "Marque": "Agip" + "name": "AGIP STRASBOURG ALSACE", + "brand": "Agip" }, "67000012": { - "Nom": "AGIP STRASBOURG BOECKLIN", - "Marque": "Agip" + "name": "AGIP STRASBOURG BOECKLIN", + "brand": "Agip" }, "67000025": { - "Nom": "RELAIS ESPLANADE", - "Marque": "Total" + "name": "RELAIS ESPLANADE", + "brand": "Total" }, "67000026": { - "Nom": "RELAIS DE L EUROPE", - "Marque": "Total Access" + "name": "RELAIS DE L EUROPE", + "brand": "Total Access" }, "67000027": { - "Nom": "RELAIS DU RHIN", - "Marque": "Total Access" + "name": "RELAIS DU RHIN", + "brand": "Total Access" }, "67033001": { - "Nom": "AUCHAN STRASBOURG", - "Marque": "Auchan" + "name": "AUCHAN STRASBOURG", + "brand": "Auchan" }, "67100002": { - "Nom": "ESSO LA MEINAU", - "Marque": "Esso Express" + "name": "ESSO LA MEINAU", + "brand": "Esso Express" }, "67100003": { - "Nom": "AGIP STRASBOURG ALTENHEIM", - "Marque": "Agip" + "name": "AGIP STRASBOURG ALTENHEIM", + "brand": "Agip" }, "67100007": { - "Nom": "AVIA STRASBOURG NEUDORF", - "Marque": "Avia" + "name": "AVIA STRASBOURG NEUDORF", + "brand": "Avia" }, "67110001": { - "Nom": "Supermarché Match REICHSHOFFEN", - "Marque": "Supermarché Match" + "name": "Supermarché Match REICHSHOFFEN", + "brand": "Supermarché Match" }, "67110002": { - "Nom": "GGE MECA BG", - "Marque": "Total" + "name": "GGE MECA BG", + "brand": "Total" }, "67110003": { - "Nom": "Intermarché REICHSHOFFEN", - "Marque": "Intermarché" + "name": "Intermarché REICHSHOFFEN", + "brand": "Intermarché" }, "67110006": { - "Nom": "SUPER U Gundershoffen", - "Marque": "Système U" + "name": "SUPER U Gundershoffen", + "brand": "Système U" }, "67112001": { - "Nom": "MME WERKLE", - "Marque": "Total" + "name": "MME WERKLE", + "brand": "Total" }, "67114001": { - "Nom": "SUPER U ESCHAU", - "Marque": "Système U" + "name": "SUPER U ESCHAU", + "brand": "Système U" }, "67116002": { - "Nom": "E. Leclerc Express", - "Marque": "Leclerc" + "name": "E. Leclerc Express", + "brand": "Leclerc" }, "67118002": { - "Nom": "LECLERC GEISPOLSHEIM", - "Marque": "Leclerc" + "name": "LECLERC GEISPOLSHEIM", + "brand": "Leclerc" }, "67120002": { - "Nom": "SA GARAGE WIETRICH", - "Marque": "Total" + "name": "SA GARAGE WIETRICH", + "brand": "Total" }, "67120003": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "67120004": { - "Nom": "M. SCHMIDT PAUL", - "Marque": "Total" + "name": "M. SCHMIDT PAUL", + "brand": "Total" }, "67120005": { - "Nom": "E. Leclerc Express", - "Marque": "Leclerc" + "name": "E. Leclerc Express", + "brand": "Leclerc" }, "67129001": { - "Nom": "CORA DORLISHEIM", - "Marque": "CORA" + "name": "CORA DORLISHEIM", + "brand": "CORA" }, "67130002": { - "Nom": "SUPER U RUSS", - "Marque": "Système U" + "name": "SUPER U RUSS", + "brand": "Système U" }, "67130003": { - "Nom": "Intermarché LA BROQUE", - "Marque": "Intermarché" + "name": "Intermarché LA BROQUE", + "brand": "Intermarché" }, "67130004": { - "Nom": "Supermarche match", - "Marque": "Supermarché Match" + "name": "Supermarche match", + "brand": "Supermarché Match" }, "67140002": { - "Nom": "Super U Gertwiller", - "Marque": "Système U" + "name": "Super U Gertwiller", + "brand": "Système U" }, "67140003": { - "Nom": "GARAGE KARRER SA", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE KARRER SA", + "brand": "Indépendant sans enseigne" }, "67150001": { - "Nom": "ESSO DE L'ILL", - "Marque": "Esso Express" + "name": "ESSO DE L'ILL", + "brand": "Esso Express" }, "67151001": { - "Nom": "SODECCO", - "Marque": "Leclerc" + "name": "SODECCO", + "brand": "Leclerc" }, "67160001": { - "Nom": "Supermarché Match WISSEMBOURG", - "Marque": "Supermarché Match" + "name": "Supermarché Match WISSEMBOURG", + "brand": "Supermarché Match" }, "67160002": { - "Nom": "Supermarché Match WISSEMBOURG", - "Marque": "Supermarché Match" + "name": "Supermarché Match WISSEMBOURG", + "brand": "Supermarché Match" }, "67170001": { - "Nom": "AIRE DE BRUMATH EST", - "Marque": "CARAUTOROUTES" + "name": "AIRE DE BRUMATH EST", + "brand": "CARAUTOROUTES" }, "67170002": { - "Nom": "AIRE DE BRUMATH OUEST", - "Marque": "CARAUTOROUTES" + "name": "AIRE DE BRUMATH OUEST", + "brand": "CARAUTOROUTES" }, "67170005": { - "Nom": "station u", - "Marque": "Système U" + "name": "station u", + "brand": "Système U" }, "67170006": { - "Nom": "Intermarché BRUMATH", - "Marque": "Intermarché" + "name": "Intermarché BRUMATH", + "brand": "Intermarché" }, "67170008": { - "Nom": "RELAIS HERRENWALD", - "Marque": "Total Access" + "name": "RELAIS HERRENWALD", + "brand": "Total Access" }, "67170009": { - "Nom": "BP BRUMATH", - "Marque": "BP" + "name": "BP BRUMATH", + "brand": "BP" }, "67190001": { - "Nom": "AUCHAN Supermarché MUTZIG", - "Marque": "Auchan" + "name": "AUCHAN Supermarché MUTZIG", + "brand": "Auchan" }, "67190004": { - "Nom": "SA VALMUT - Super U", - "Marque": "Système U" + "name": "SA VALMUT - Super U", + "brand": "Système U" }, "67190009": { - "Nom": "RELAIS GRESSWILLER", - "Marque": "Total Access" + "name": "RELAIS GRESSWILLER", + "brand": "Total Access" }, "67200001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "67200011": { - "Nom": "RELAIS DE SCHIRMECK", - "Marque": "Total" + "name": "RELAIS DE SCHIRMECK", + "brand": "Total" }, "67200012": { - "Nom": "RELAIS CRONENBOURG", - "Marque": "Total Access" + "name": "RELAIS CRONENBOURG", + "brand": "Total Access" }, "67202002": { - "Nom": "SUPER U WOLFISHEIM", - "Marque": "Système U" + "name": "SUPER U WOLFISHEIM", + "brand": "Système U" }, "67202003": { - "Nom": "RELAIS DE WOLFISHEIM", - "Marque": "Total Access" + "name": "RELAIS DE WOLFISHEIM", + "brand": "Total Access" }, "67205001": { - "Nom": "Intermarché OBERHAUSBERGEN", - "Marque": "Intermarché" + "name": "Intermarché OBERHAUSBERGEN", + "brand": "Intermarché" }, "67210001": { - "Nom": "Auchan supermarché Obernai", - "Marque": "Auchan" + "name": "Auchan supermarché Obernai", + "brand": "Auchan" }, "67210003": { - "Nom": "GRUSS", - "Marque": "Indépendant sans enseigne" + "name": "GRUSS", + "brand": "Indépendant sans enseigne" }, "67210004": { - "Nom": "RELAIS DE L'EHN", - "Marque": "Total" + "name": "RELAIS DE L'EHN", + "brand": "Total" }, "67211001": { - "Nom": "Centre E. LECLERC Obernai", - "Marque": "Leclerc" + "name": "Centre E. LECLERC Obernai", + "brand": "Leclerc" }, "67220001": { - "Nom": "GARAGE JOST SARL", - "Marque": "Total" + "name": "GARAGE JOST SARL", + "brand": "Total" }, "67220003": { - "Nom": "MJS DISTRIBUTION SAS", - "Marque": "Système U" + "name": "MJS DISTRIBUTION SAS", + "brand": "Système U" }, "67220004": { - "Nom": "STATION AVIA GARAGE GUTH", - "Marque": "Avia" + "name": "STATION AVIA GARAGE GUTH", + "brand": "Avia" }, "67230005": { - "Nom": "Intermarché BENFELD", - "Marque": "Intermarché" + "name": "Intermarché BENFELD", + "brand": "Intermarché" }, "67230006": { - "Nom": "RELAIS HUTTENHEIM", - "Marque": "Total Access" + "name": "RELAIS HUTTENHEIM", + "brand": "Total Access" }, "67240002": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "67240007": { - "Nom": "E.LECLERC BISCHWILLER", - "Marque": "Leclerc" + "name": "E.LECLERC BISCHWILLER", + "brand": "Leclerc" }, "67250001": { - "Nom": "Supermarché Match SOULTZ S/FORETS", - "Marque": "Supermarché Match" + "name": "Supermarché Match SOULTZ S/FORETS", + "brand": "Supermarché Match" }, "67250002": { - "Nom": "LECLERC SOULTZ sous FORETS", - "Marque": "Leclerc" + "name": "LECLERC SOULTZ sous FORETS", + "brand": "Leclerc" }, "67260003": { - "Nom": "SARL ZIMMERMANN", - "Marque": "Système U" + "name": "SARL ZIMMERMANN", + "brand": "Système U" }, "67260004": { - "Nom": "SODISAR SAS", - "Marque": "Leclerc" + "name": "SODISAR SAS", + "brand": "Leclerc" }, "67260006": { - "Nom": "ALCANE GESTION", - "Marque": "Shell" + "name": "ALCANE GESTION", + "brand": "Shell" }, "67260007": { - "Nom": "RELAIS DE KESKASTEL EST", - "Marque": "Total" + "name": "RELAIS DE KESKASTEL EST", + "brand": "Total" }, "67260008": { - "Nom": "Carrefour Contact JPA SARREDIS", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact JPA SARREDIS", + "brand": "Carrefour Contact" }, "67270001": { - "Nom": "Supermarché Match HOCHFELDEN", - "Marque": "Supermarché Match" + "name": "Supermarché Match HOCHFELDEN", + "brand": "Supermarché Match" }, "67270002": { - "Nom": "E.LECLERC EXPRESS", - "Marque": "Leclerc" + "name": "E.LECLERC EXPRESS", + "brand": "Leclerc" }, "67270003": { - "Nom": "Intermarché HOCHFELDEN", - "Marque": "Intermarché" + "name": "Intermarché HOCHFELDEN", + "brand": "Intermarché" }, "67290002": { - "Nom": "Carrefour Contact WINGEN/MODER", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact WINGEN/MODER", + "brand": "Carrefour Contact" }, "67300002": { - "Nom": "LECLERC", - "Marque": "Leclerc" + "name": "LECLERC", + "brand": "Leclerc" }, "67300003": { - "Nom": "RELAIS DE L' AAR", - "Marque": "Total Access" + "name": "RELAIS DE L' AAR", + "brand": "Total Access" }, "67310003": { - "Nom": "E.LECLERC WASSELONNE", - "Marque": "Leclerc" + "name": "E.LECLERC WASSELONNE", + "brand": "Leclerc" }, "67310004": { - "Nom": "RELAIS DE WASSELONNE", - "Marque": "Total Access" + "name": "RELAIS DE WASSELONNE", + "brand": "Total Access" }, "67320001": { - "Nom": "Intermarché DRULINGEN", - "Marque": "Intermarché Contact" + "name": "Intermarché DRULINGEN", + "brand": "Intermarché Contact" }, "67330001": { - "Nom": "Supermarché Match BOUXWILLER", - "Marque": "Supermarché Match" + "name": "Supermarché Match BOUXWILLER", + "brand": "Supermarché Match" }, "67340001": { - "Nom": "SARL GGE STEHLY", - "Marque": "Total" + "name": "SARL GGE STEHLY", + "brand": "Total" }, "67340002": { - "Nom": "SUPER U INGWILLER", - "Marque": "Système U" + "name": "SUPER U INGWILLER", + "brand": "Système U" }, "67350004": { - "Nom": "Supermarché MATCH", - "Marque": "Supermarché Match" + "name": "Supermarché MATCH", + "brand": "Supermarché Match" }, "67360002": { - "Nom": "Station Super U Woerth", - "Marque": "Système U" + "name": "Station Super U Woerth", + "brand": "Système U" }, "67370001": { - "Nom": "SA TRUCHIDIM", - "Marque": "Système U" + "name": "SA TRUCHIDIM", + "brand": "Système U" }, "67380001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "67390001": { - "Nom": "SUPER U Marckolsheim", - "Marque": "Système U" + "name": "SUPER U Marckolsheim", + "brand": "Système U" }, "67400001": { - "Nom": "STATION SERVICE", - "Marque": "Auchan" + "name": "STATION SERVICE", + "brand": "Auchan" }, "67400004": { - "Nom": "E. Leclerc Express", - "Marque": "Leclerc" + "name": "E. Leclerc Express", + "brand": "Leclerc" }, "67400005": { - "Nom": "RELAIS D'ILLKIRCH", - "Marque": "Total" + "name": "RELAIS D'ILLKIRCH", + "brand": "Total" }, "67410001": { - "Nom": "E. Leclerc Express", - "Marque": "Leclerc" + "name": "E. Leclerc Express", + "brand": "Leclerc" }, "67420001": { - "Nom": "STATION Total ST BLAISE AUTOMOBILES", - "Marque": "Total" + "name": "STATION Total ST BLAISE AUTOMOBILES", + "brand": "Total" }, "67430002": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "67441001": { - "Nom": "Centre E.LECLERC MARMOUTIER", - "Marque": "Leclerc" + "name": "Centre E.LECLERC MARMOUTIER", + "brand": "Leclerc" }, "67452001": { - "Nom": "HYPERMARCHE CORA", - "Marque": "CORA" + "name": "HYPERMARCHE CORA", + "brand": "CORA" }, "67460001": { - "Nom": "ALLIANCE AUTOMOBILES S.A.S.", - "Marque": "Total Access" + "name": "ALLIANCE AUTOMOBILES S.A.S.", + "brand": "Total Access" }, "67470001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "67480001": { - "Nom": "GGE SANDROCK", - "Marque": "Total" + "name": "GGE SANDROCK", + "brand": "Total" }, "67480002": { - "Nom": "E.LECLERC EXPRESS", - "Marque": "Leclerc" + "name": "E.LECLERC EXPRESS", + "brand": "Leclerc" }, "67500001": { - "Nom": "CORA HAGUENAU", - "Marque": "CORA" + "name": "CORA HAGUENAU", + "brand": "CORA" }, "67500003": { - "Nom": "AUCHAN Supermarché Château", - "Marque": "Auchan" + "name": "AUCHAN Supermarché Château", + "brand": "Auchan" }, "67500005": { - "Nom": "GARAGE HELMCHEN", - "Marque": "Total" + "name": "GARAGE HELMCHEN", + "brand": "Total" }, "67500006": { - "Nom": "ESSO HAGUENAU", - "Marque": "Esso Express" + "name": "ESSO HAGUENAU", + "brand": "Esso Express" }, "67500007": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Simply Market" + "name": "AUCHAN SUPERMARCHE", + "brand": "Simply Market" }, "67500010": { - "Nom": "STATION SERVICE STEVAUTO", - "Marque": "Indépendant sans enseigne" + "name": "STATION SERVICE STEVAUTO", + "brand": "Indépendant sans enseigne" }, "67500011": { - "Nom": "RELAIS HAGUENAU", - "Marque": "Total" + "name": "RELAIS HAGUENAU", + "brand": "Total" }, "67520001": { - "Nom": "AUCHAN SUPERMARCHE MARLENHEIM", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE MARLENHEIM", + "brand": "Auchan" }, "67540001": { - "Nom": "Auchan supermarche", - "Marque": "Simply Market" + "name": "Auchan supermarche", + "brand": "Simply Market" }, "67540003": { - "Nom": "Station Service Shell", - "Marque": "Shell" + "name": "Station Service Shell", + "brand": "Shell" }, "67540004": { - "Nom": "RELAIS OSTWALD", - "Marque": "Total" + "name": "RELAIS OSTWALD", + "brand": "Total" }, "67550003": { - "Nom": "RELAIS VENDENHEIM", - "Marque": "Total" + "name": "RELAIS VENDENHEIM", + "brand": "Total" }, "67560001": { - "Nom": "STE EXP GGE JOST", - "Marque": "Total" + "name": "STE EXP GGE JOST", + "brand": "Total" }, "67560002": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "67570001": { - "Nom": "AGIP ROTHAU", - "Marque": "Agip" + "name": "AGIP ROTHAU", + "brand": "Agip" }, "67580001": { - "Nom": "GARAGE SUSS", - "Marque": "Elan" + "name": "GARAGE SUSS", + "brand": "Elan" }, "67590001": { - "Nom": "AUCHAN SCHWEIGHOUSE", - "Marque": "Auchan" + "name": "AUCHAN SCHWEIGHOUSE", + "brand": "Auchan" }, "67590002": { - "Nom": "SARL GARAGE CARLEN", - "Marque": "Total" + "name": "SARL GARAGE CARLEN", + "brand": "Total" }, "67600001": { - "Nom": "Supermarché Match SELESTAT", - "Marque": "Supermarché Match" + "name": "Supermarché Match SELESTAT", + "brand": "Supermarché Match" }, "67600003": { - "Nom": "SODIPLEC HAUT KOENISBOURG", - "Marque": "Leclerc" + "name": "SODIPLEC HAUT KOENISBOURG", + "brand": "Leclerc" }, "67600004": { - "Nom": "E.LECLERC QUARTIER OUEST", - "Marque": "Leclerc" + "name": "E.LECLERC QUARTIER OUEST", + "brand": "Leclerc" }, "67600006": { - "Nom": "Intermarché SELESTAT", - "Marque": "Intermarché" + "name": "Intermarché SELESTAT", + "brand": "Intermarché" }, "67600009": { - "Nom": "Leclerc Express Hilsenheim", - "Marque": "Leclerc" + "name": "Leclerc Express Hilsenheim", + "brand": "Leclerc" }, "67600010": { - "Nom": "Access RELAIS SELESTAT GIESSEN", - "Marque": "Total Access" + "name": "Access RELAIS SELESTAT GIESSEN", + "brand": "Total Access" }, "67603001": { - "Nom": "E.LECLERC ZI NORD", - "Marque": "Leclerc" + "name": "E.LECLERC ZI NORD", + "brand": "Leclerc" }, "67620001": { - "Nom": "SARL GGE KELLER ROGER ET", - "Marque": "Total" + "name": "SARL GGE KELLER ROGER ET", + "brand": "Total" }, "67620003": { - "Nom": "SOUFFLEDIS", - "Marque": "Leclerc" + "name": "SOUFFLEDIS", + "brand": "Leclerc" }, "67630001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "67640004": { - "Nom": "RELAIS DES 3 ARBRES", - "Marque": "Total" + "name": "RELAIS DES 3 ARBRES", + "brand": "Total" }, "67640005": { - "Nom": "RELAIS ICHTRATZHEIM", - "Marque": "Total Access" + "name": "RELAIS ICHTRATZHEIM", + "brand": "Total Access" }, "67660002": { - "Nom": "GGE FOELL SARL", - "Marque": "Total" + "name": "GGE FOELL SARL", + "brand": "Total" }, "67660003": { - "Nom": "Intermarché BETSCHDORF", - "Marque": "Intermarché" + "name": "Intermarché BETSCHDORF", + "brand": "Intermarché" }, "67690001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "67700001": { - "Nom": "Supermarché Match SAVERNE", - "Marque": "Supermarché Match" + "name": "Supermarché Match SAVERNE", + "brand": "Supermarché Match" }, "67700002": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan Super" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan Super" }, "67700005": { - "Nom": "GARAGE THIERRY KUNTZ", - "Marque": "Total" + "name": "GARAGE THIERRY KUNTZ", + "brand": "Total" }, "67700010": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "67700011": { - "Nom": "RELAIS DE LA ROSERAIE", - "Marque": "Total Access" + "name": "RELAIS DE LA ROSERAIE", + "brand": "Total Access" }, "67700012": { - "Nom": "RELAIS SAVERNE MONSWILLER", - "Marque": "Total" + "name": "RELAIS SAVERNE MONSWILLER", + "brand": "Total" }, "67720001": { - "Nom": "SARL GOSSE", - "Marque": "Total" + "name": "SARL GOSSE", + "brand": "Total" }, "67730001": { - "Nom": "GARAGE WALTER", - "Marque": "Total" + "name": "GARAGE WALTER", + "brand": "Total" }, "67760001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "67800001": { - "Nom": "Supermarché Match BISCHHEIM", - "Marque": "Supermarché Match" + "name": "Supermarché Match BISCHHEIM", + "brand": "Supermarché Match" }, "67800004": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "67800011": { - "Nom": "RELAIS DE HOENHEIM", - "Marque": "Total" + "name": "RELAIS DE HOENHEIM", + "brand": "Total" }, "67800013": { - "Nom": "AGIP BISCHEIMM", - "Marque": "Agip" + "name": "AGIP BISCHEIMM", + "brand": "Agip" }, "67810001": { - "Nom": "E. Leclerc Express", - "Marque": "Leclerc" + "name": "E. Leclerc Express", + "brand": "Leclerc" }, "67840002": { - "Nom": "LAAS MAURICE GARAGE", - "Marque": "Total" + "name": "LAAS MAURICE GARAGE", + "brand": "Total" }, "67850001": { - "Nom": "E LECLERC EXPRESS", - "Marque": "Leclerc" + "name": "E LECLERC EXPRESS", + "brand": "Leclerc" }, "67860001": { - "Nom": "Super U BOOFZHEIM", - "Marque": "Système U" + "name": "Super U BOOFZHEIM", + "brand": "Système U" }, "67920001": { - "Nom": "U EXPRESS SUNDHOUSE", - "Marque": "Système U" + "name": "U EXPRESS SUNDHOUSE", + "brand": "Système U" }, "67960001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "68000005": { - "Nom": "GARAGE DU STADE SA", - "Marque": "Total" + "name": "GARAGE DU STADE SA", + "brand": "Total" }, "68000006": { - "Nom": "SARL MULAT", - "Marque": "Total" + "name": "SARL MULAT", + "brand": "Total" }, "68000009": { - "Nom": "AVIA XPRESS COLMAR", - "Marque": "Avia" + "name": "AVIA XPRESS COLMAR", + "brand": "Avia" }, "68000010": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "68000012": { - "Nom": "SOCODIS SA", - "Marque": "Leclerc" + "name": "SOCODIS SA", + "brand": "Leclerc" }, "68000013": { - "Nom": "TANNACHER LOUIS - ESCALE 364", - "Marque": "Avia" + "name": "TANNACHER LOUIS - ESCALE 364", + "brand": "Avia" }, "68000015": { - "Nom": "POLE POSITION", - "Marque": "Indépendant sans enseigne" + "name": "POLE POSITION", + "brand": "Indépendant sans enseigne" }, "68000016": { - "Nom": "Intermarché SAS ALDISCOL", - "Marque": "Intermarché" + "name": "Intermarché SAS ALDISCOL", + "brand": "Intermarché" }, "68000017": { - "Nom": "STATION Total COLMAR SUD", - "Marque": "Total" + "name": "STATION Total COLMAR SUD", + "brand": "Total" }, "68000018": { - "Nom": "RELAIS PETITE VENISE", - "Marque": "Total" + "name": "RELAIS PETITE VENISE", + "brand": "Total" }, "68000019": { - "Nom": "RELAIS DES CIGOGNES", - "Marque": "Total Access" + "name": "RELAIS DES CIGOGNES", + "brand": "Total Access" }, "68000020": { - "Nom": "AGIP COLMAR ROUTE D'INGERSHEIM", - "Marque": "Agip" + "name": "AGIP COLMAR ROUTE D'INGERSHEIM", + "brand": "Agip" }, "68019001": { - "Nom": "CORA COLMAR HOUSSEN", - "Marque": "CORA" + "name": "CORA COLMAR HOUSSEN", + "brand": "CORA" }, "68040001": { - "Nom": "EURL KF AUTO+", - "Marque": "Total" + "name": "EURL KF AUTO+", + "brand": "Total" }, "68040002": { - "Nom": "GARAGE ETIENNE WACKENTHALLER SARL", - "Marque": "Esso" + "name": "GARAGE ETIENNE WACKENTHALLER SARL", + "brand": "Esso" }, "68100002": { - "Nom": "LECLERC MULHOUSE", - "Marque": "Leclerc" + "name": "LECLERC MULHOUSE", + "brand": "Leclerc" }, "68100005": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "68100006": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "68100009": { - "Nom": "RELAIS DU REBBERG", - "Marque": "Total" + "name": "RELAIS DU REBBERG", + "brand": "Total" }, "68110007": { - "Nom": "AGIP ILLZACH", - "Marque": "Agip" + "name": "AGIP ILLZACH", + "brand": "Agip" }, "68120002": { - "Nom": "SUPER U PFASTATT", - "Marque": "Système U" + "name": "SUPER U PFASTATT", + "brand": "Système U" }, "68120004": { - "Nom": "Intermarché PFASTATT", - "Marque": "Intermarché" + "name": "Intermarché PFASTATT", + "brand": "Intermarché" }, "68124001": { - "Nom": "LECLERC WINTZEDIS", - "Marque": "Leclerc" + "name": "LECLERC WINTZEDIS", + "brand": "Leclerc" }, "68125002": { - "Nom": "BEYSANG BAUMANN", - "Marque": "Indépendant" + "name": "BEYSANG BAUMANN", + "brand": "Indépendant" }, "68127001": { - "Nom": "PMF SARL STATION AVIA", - "Marque": "Avia" + "name": "PMF SARL STATION AVIA", + "brand": "Avia" }, "68130001": { - "Nom": "STATION KUENTZ BIX", - "Marque": "Total" + "name": "STATION KUENTZ BIX", + "brand": "Total" }, "68130002": { - "Nom": "SUPER U ALTKIRCH", - "Marque": "Système U" + "name": "SUPER U ALTKIRCH", + "brand": "Système U" }, "68130003": { - "Nom": "ALDIS", - "Marque": "Leclerc" + "name": "ALDIS", + "brand": "Leclerc" }, "68140001": { - "Nom": "E.A.M. SCHMIDT SARL", - "Marque": "Total" + "name": "E.A.M. SCHMIDT SARL", + "brand": "Total" }, "68140002": { - "Nom": "GARAGE HENRY", - "Marque": "Total" + "name": "GARAGE HENRY", + "brand": "Total" }, "68140003": { - "Nom": "SUPER U KODIS SAS", - "Marque": "Système U" + "name": "SUPER U KODIS SAS", + "brand": "Système U" }, "68150003": { - "Nom": "RIBODIS", - "Marque": "Leclerc" + "name": "RIBODIS", + "brand": "Leclerc" }, "68160002": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "68160004": { - "Nom": "RELAIS STE MARIE AUX MINES", - "Marque": "Total Access" + "name": "RELAIS STE MARIE AUX MINES", + "brand": "Total Access" }, "68170002": { - "Nom": "Intermarché RIXHEIM", - "Marque": "Intermarché" + "name": "Intermarché RIXHEIM", + "brand": "Intermarché" }, "68170003": { - "Nom": "RELAIS DE RIXHEIM", - "Marque": "Total" + "name": "RELAIS DE RIXHEIM", + "brand": "Total" }, "68180001": { - "Nom": "ESSO HORBOURG", - "Marque": "Esso Express" + "name": "ESSO HORBOURG", + "brand": "Esso Express" }, "68180002": { - "Nom": "Station 68", - "Marque": "Leclerc" + "name": "Station 68", + "brand": "Leclerc" }, "68190001": { - "Nom": "Intermarché ENSISHEIM", - "Marque": "Intermarché" + "name": "Intermarché ENSISHEIM", + "brand": "Intermarché" }, "68190002": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "68200001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "68200004": { - "Nom": "CORA DORNACH", - "Marque": "CORA" + "name": "CORA DORNACH", + "brand": "CORA" }, "68200015": { - "Nom": "AGIP MULHOUSE AV DE COLMAR", - "Marque": "Agip" + "name": "AGIP MULHOUSE AV DE COLMAR", + "brand": "Agip" }, "68200018": { - "Nom": "RELAIS MUSEE DE L'AUTOMOBILE", - "Marque": "Total Access" + "name": "RELAIS MUSEE DE L'AUTOMOBILE", + "brand": "Total Access" }, "68200019": { - "Nom": "RELAIS DES COTEAUX", - "Marque": "Total Access" + "name": "RELAIS DES COTEAUX", + "brand": "Total Access" }, "68200020": { - "Nom": "RELAIS DE DORNACH", - "Marque": "Total Access" + "name": "RELAIS DE DORNACH", + "brand": "Total Access" }, "68200021": { - "Nom": "AGIP MULHOUSE ROUTE BELFORT", - "Marque": "Agip" + "name": "AGIP MULHOUSE ROUTE BELFORT", + "brand": "Agip" }, "68210001": { - "Nom": "SERVICES AUTOS 68", - "Marque": "Total" + "name": "SERVICES AUTOS 68", + "brand": "Total" }, "68210002": { - "Nom": "Ets HARTMANN-COMESU SAS", - "Marque": "Intermarché" + "name": "Ets HARTMANN-COMESU SAS", + "brand": "Intermarché" }, "68220001": { - "Nom": "STATION AIRPORT", - "Marque": "Indépendant sans enseigne" + "name": "STATION AIRPORT", + "brand": "Indépendant sans enseigne" }, "68240003": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "68240004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "68250003": { - "Nom": "Intermarché ROUFFACH", - "Marque": "Intermarché" + "name": "Intermarché ROUFFACH", + "brand": "Intermarché" }, "68250004": { - "Nom": "RELAIS DE ROUFFACH", - "Marque": "Total" + "name": "RELAIS DE ROUFFACH", + "brand": "Total" }, "68260001": { - "Nom": "LECLERC KINGERSHEIM", - "Marque": "Leclerc" + "name": "LECLERC KINGERSHEIM", + "brand": "Leclerc" }, "68270001": { - "Nom": "CORA WITTENHEIM", - "Marque": "CORA" + "name": "CORA WITTENHEIM", + "brand": "CORA" }, "68270002": { - "Nom": "ESSO WITTENHEIM", - "Marque": "Esso Express" + "name": "ESSO WITTENHEIM", + "brand": "Esso Express" }, "68270003": { - "Nom": "SUPER U WITTENHEIM", - "Marque": "Système U" + "name": "SUPER U WITTENHEIM", + "brand": "Système U" }, "68290001": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "68290002": { - "Nom": "E. Leclerc", - "Marque": "Leclerc" + "name": "E. Leclerc", + "brand": "Leclerc" }, "68300002": { - "Nom": "SERVICE AUTO GARAGE BADER S.A.S.", - "Marque": "Total" + "name": "SERVICE AUTO GARAGE BADER S.A.S.", + "brand": "Total" }, "68300003": { - "Nom": "Hypermarche E.LECLERC", - "Marque": "Leclerc" + "name": "Hypermarche E.LECLERC", + "brand": "Leclerc" }, "68300004": { - "Nom": "RELAIS DES 3 FRONTIERES", - "Marque": "Total Access" + "name": "RELAIS DES 3 FRONTIERES", + "brand": "Total Access" }, "68307001": { - "Nom": "GEANT SAINT-LOUIS", - "Marque": "Géant" + "name": "GEANT SAINT-LOUIS", + "brand": "Géant" }, "68310001": { - "Nom": "SUPER U - MAISON CORRADI SAS", - "Marque": "Système U" + "name": "SUPER U - MAISON CORRADI SAS", + "brand": "Système U" }, "68313001": { - "Nom": "Carrefour ILLZACH", - "Marque": "Carrefour" + "name": "Carrefour ILLZACH", + "brand": "Carrefour" }, "68320001": { - "Nom": "GARAGE FUCHS", - "Marque": "Elan" + "name": "GARAGE FUCHS", + "brand": "Elan" }, "68320002": { - "Nom": "Carrefour Contact SARL JOKRA", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact SARL JOKRA", + "brand": "Carrefour Contact" }, "68330001": { - "Nom": "Supermarché Match HUNINGUE", - "Marque": "Supermarché Match" + "name": "Supermarché Match HUNINGUE", + "brand": "Supermarché Match" }, "68350001": { - "Nom": 68350001, - "Marque": "Système U" + "name": 68350001, + "brand": "Système U" }, "68360003": { - "Nom": "LEADER PRICE", - "Marque": "Leader Price" + "name": "LEADER PRICE", + "brand": "Leader Price" }, "68360004": { - "Nom": "SARL DIETRICH Daniel", - "Marque": "Total" + "name": "SARL DIETRICH Daniel", + "brand": "Total" }, "68370002": { - "Nom": "Intermarché ORBEY", - "Marque": "Intermarché" + "name": "Intermarché ORBEY", + "brand": "Intermarché" }, "68390002": { - "Nom": "REAL SARL", - "Marque": "Shell" + "name": "REAL SARL", + "brand": "Shell" }, "68390003": { - "Nom": "STATION FUCHS SARL", - "Marque": "Avia" + "name": "STATION FUCHS SARL", + "brand": "Avia" }, "68390004": { - "Nom": "RELAIS BATTENHEIM", - "Marque": "Total" + "name": "RELAIS BATTENHEIM", + "brand": "Total" }, "68400001": { - "Nom": "SUPER U RIEDISHEIM", - "Marque": "Système U" + "name": "SUPER U RIEDISHEIM", + "brand": "Système U" }, "68420003": { - "Nom": "GARAGE DE LA SABLIERE", - "Marque": "Avia" + "name": "GARAGE DE LA SABLIERE", + "brand": "Avia" }, "68440002": { - "Nom": "STATION SERVICE CASINO", - "Marque": "Casino" + "name": "STATION SERVICE CASINO", + "brand": "Casino" }, "68460001": { - "Nom": "RELAIS LUTTERBACH", - "Marque": "Total" + "name": "RELAIS LUTTERBACH", + "brand": "Total" }, "68460002": { - "Nom": "Carrefour EXPRESS", - "Marque": "Carrefour Express" + "name": "Carrefour EXPRESS", + "brand": "Carrefour Express" }, "68470002": { - "Nom": "SOC NOUVELLE RELAIS DE LA THUR", - "Marque": "Total" + "name": "SOC NOUVELLE RELAIS DE LA THUR", + "brand": "Total" }, "68470003": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "68480001": { - "Nom": "SARL GARAGE FRITSCH", - "Marque": "Total" + "name": "SARL GARAGE FRITSCH", + "brand": "Total" }, "68480002": { - "Nom": "Auchan supermarché Ferrette", - "Marque": "Auchan" + "name": "Auchan supermarché Ferrette", + "brand": "Auchan" }, "68490001": { - "Nom": "LIEBENGUTH STATION Total", - "Marque": "Total" + "name": "LIEBENGUTH STATION Total", + "brand": "Total" }, "68490002": { - "Nom": "ECOMARCHE CHALAMPE", - "Marque": "Intermarché" + "name": "ECOMARCHE CHALAMPE", + "brand": "Intermarché" }, "68500001": { - "Nom": "EURL DISTRIBUTION CHRISTO", - "Marque": "Total" + "name": "EURL DISTRIBUTION CHRISTO", + "brand": "Total" }, "68500002": { - "Nom": "ISSEDIS", - "Marque": "Leclerc" + "name": "ISSEDIS", + "brand": "Leclerc" }, "68500003": { - "Nom": "SA FLORIDIS", - "Marque": "Système U" + "name": "SA FLORIDIS", + "brand": "Système U" }, "68510001": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "68510003": { - "Nom": "BIXEL COMBUSTIBLES", - "Marque": "Indépendant sans enseigne" + "name": "BIXEL COMBUSTIBLES", + "brand": "Indépendant sans enseigne" }, "68520004": { - "Nom": "SUPER U BURNHAUPT", - "Marque": "Système U" + "name": "SUPER U BURNHAUPT", + "brand": "Système U" }, "68520006": { - "Nom": "RELAIS DIEFMATTEN", - "Marque": "Total" + "name": "RELAIS DIEFMATTEN", + "brand": "Total" }, "68520009": { - "Nom": "AGIP PORTE D'ALSACE A36", - "Marque": "Agip" + "name": "AGIP PORTE D'ALSACE A36", + "brand": "Agip" }, "68540001": { - "Nom": "super u", - "Marque": "Système U" + "name": "super u", + "brand": "Système U" }, "68550001": { - "Nom": "Station parea st amarin", - "Marque": "Auchan" + "name": "Station parea st amarin", + "brand": "Auchan" }, "68560001": { - "Nom": "ALBISSER SA", - "Marque": "Leclerc" + "name": "ALBISSER SA", + "brand": "Leclerc" }, "68580001": { - "Nom": "Intermarché SA CHRISLODIA", - "Marque": "Intermarché Contact" + "name": "Intermarché SA CHRISLODIA", + "brand": "Intermarché Contact" }, "68590001": { - "Nom": "GARAGE THIRION", - "Marque": "Total" + "name": "GARAGE THIRION", + "brand": "Total" }, "68600001": { - "Nom": "GARAGE DU STADE BIESHEIM", - "Marque": "Total" + "name": "GARAGE DU STADE BIESHEIM", + "brand": "Total" }, "68600002": { - "Nom": "Intermarche", - "Marque": "Intermarché" + "name": "Intermarche", + "brand": "Intermarché" }, "68620001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "68630001": { - "Nom": "ETS DANIEL MULLER SARL", - "Marque": "Total" + "name": "ETS DANIEL MULLER SARL", + "brand": "Total" }, "68640001": { - "Nom": "Intermarché", - "Marque": "Intermarché Contact" + "name": "Intermarché", + "brand": "Intermarché Contact" }, "68690001": { - "Nom": "SARL GARAGE JAEGGY", - "Marque": "Total" + "name": "SARL GARAGE JAEGGY", + "brand": "Total" }, "68701001": { - "Nom": "STATION Total LA CROISIERE - GARAGE COURTOIS", - "Marque": "Total" + "name": "STATION Total LA CROISIERE - GARAGE COURTOIS", + "brand": "Total" }, "68703001": { - "Nom": "SODICER", - "Marque": "Leclerc" + "name": "SODICER", + "brand": "Leclerc" }, "68730001": { - "Nom": "E.Leclerc Blotzdis", - "Marque": "Leclerc" + "name": "E.Leclerc Blotzdis", + "brand": "Leclerc" }, "68740001": { - "Nom": "SUPER U FESSENHEIM", - "Marque": "Système U" + "name": "SUPER U FESSENHEIM", + "brand": "Système U" }, "68800002": { - "Nom": "Intermarché VIEUX THANN", - "Marque": "Intermarché" + "name": "Intermarché VIEUX THANN", + "brand": "Intermarché" }, "68870001": { - "Nom": "SA JOFRINETTE", - "Marque": "Intermarché" + "name": "SA JOFRINETTE", + "brand": "Intermarché" }, "68880001": { - "Nom": "Supermarché Match THANN", - "Marque": "Supermarché Match" + "name": "Supermarché Match THANN", + "brand": "Supermarché Match" }, "68920001": { - "Nom": "AUCHAN SUPERMARCHE WINTZENHEIM", - "Marque": "Atac" + "name": "AUCHAN SUPERMARCHE WINTZENHEIM", + "brand": "Atac" }, "68970001": { - "Nom": "Beysang", - "Marque": "Indépendant sans enseigne" + "name": "Beysang", + "brand": "Indépendant sans enseigne" }, "69002006": { - "Nom": "BP LYON PONT PASTEUR", - "Marque": "BP" + "name": "BP LYON PONT PASTEUR", + "brand": "BP" }, "69003009": { - "Nom": "AVIA GARIBALDI", - "Marque": "Avia" + "name": "AVIA GARIBALDI", + "brand": "Avia" }, "69003010": { - "Nom": "AVIA ALBERT THOMAS", - "Marque": "Avia" + "name": "AVIA ALBERT THOMAS", + "brand": "Avia" }, "69004002": { - "Nom": "ESSO CROIX ROUSSE", - "Marque": "Esso Express" + "name": "ESSO CROIX ROUSSE", + "brand": "Esso Express" }, "69004008": { - "Nom": "AGIP LYON QUAI GILLET", - "Marque": "Agip" + "name": "AGIP LYON QUAI GILLET", + "brand": "Agip" }, "69004014": { - "Nom": "AGIP LYON BLD CANUTS", - "Marque": "Agip" + "name": "AGIP LYON BLD CANUTS", + "brand": "Agip" }, "69004015": { - "Nom": "BP LYON CROIX ROUSSE 8 à Huit", - "Marque": "BP" + "name": "BP LYON CROIX ROUSSE 8 à Huit", + "brand": "BP" }, "69005001": { - "Nom": "AVIA JOLIOT CURIE", - "Marque": "Avia" + "name": "AVIA JOLIOT CURIE", + "brand": "Avia" }, "69005002": { - "Nom": "AGIP LYON RUE J CURIE", - "Marque": "Agip" + "name": "AGIP LYON RUE J CURIE", + "brand": "Agip" }, "69007002": { - "Nom": "cluster troyen", - "Marque": "Avia" + "name": "cluster troyen", + "brand": "Avia" }, "69007006": { - "Nom": "RELAIS RACLET", - "Marque": "Total" + "name": "RELAIS RACLET", + "brand": "Total" }, "69007007": { - "Nom": "RELAIS GARIBALDI", - "Marque": "Total" + "name": "RELAIS GARIBALDI", + "brand": "Total" }, "69007008": { - "Nom": "RELAIS DE GERLAND", - "Marque": "Total Access" + "name": "RELAIS DE GERLAND", + "brand": "Total Access" }, "69007009": { - "Nom": "RELAIS TONY GARNIER", - "Marque": "Total Access" + "name": "RELAIS TONY GARNIER", + "brand": "Total Access" }, "69008007": { - "Nom": "RELAIS LYON BERLIET", - "Marque": "Total Access" + "name": "RELAIS LYON BERLIET", + "brand": "Total Access" }, "69008008": { - "Nom": "RELAIS LYON MERMOZ", - "Marque": "Total Access" + "name": "RELAIS LYON MERMOZ", + "brand": "Total Access" }, "69009003": { - "Nom": "ESSO BOURGOGNE", - "Marque": "Esso Express" + "name": "ESSO BOURGOGNE", + "brand": "Esso Express" }, "69009007": { - "Nom": "RELAIS MARIETTON", - "Marque": "Total" + "name": "RELAIS MARIETTON", + "brand": "Total" }, "69009008": { - "Nom": "RELAIS VALLONNIERE", - "Marque": "Total Access" + "name": "RELAIS VALLONNIERE", + "brand": "Total Access" }, "69100001": { - "Nom": "Carrefour VILLEURBANNE", - "Marque": "Carrefour" + "name": "Carrefour VILLEURBANNE", + "brand": "Carrefour" }, "69100022": { - "Nom": "RELAIS GARENNE VILLEURBANNE", - "Marque": "Total Access" + "name": "RELAIS GARENNE VILLEURBANNE", + "brand": "Total Access" }, "69100028": { - "Nom": "BP VILLEURBANNE FACULTES 8 à Huit", - "Marque": "BP" + "name": "BP VILLEURBANNE FACULTES 8 à Huit", + "brand": "BP" }, "69100029": { - "Nom": "BP VILLEURBANNE TONKIN 8 à Huit", - "Marque": "BP" + "name": "BP VILLEURBANNE TONKIN 8 à Huit", + "brand": "BP" }, "69100030": { - "Nom": "BP VILLEURBANNE TILLEUL 8 à Huit", - "Marque": "BP" + "name": "BP VILLEURBANNE TILLEUL 8 à Huit", + "brand": "BP" }, "69100031": { - "Nom": "BP VILLEURBANNE DES CHARMETTES", - "Marque": "BP" + "name": "BP VILLEURBANNE DES CHARMETTES", + "brand": "BP" }, "69100032": { - "Nom": "AGIP VILLEURBANNE BLUM", - "Marque": "Agip" + "name": "AGIP VILLEURBANNE BLUM", + "brand": "Agip" }, "69110001": { - "Nom": "FLB AUTOMOBILES Total", - "Marque": "Total" + "name": "FLB AUTOMOBILES Total", + "brand": "Total" }, "69110003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "69110004": { - "Nom": "BP STE FOY LES LYON", - "Marque": "BP" + "name": "BP STE FOY LES LYON", + "brand": "BP" }, "69120001": { - "Nom": "SARL GASTALDI", - "Marque": "Total" + "name": "SARL GASTALDI", + "brand": "Total" }, "69120006": { - "Nom": "GARIBALDI AUTOMOBILES", - "Marque": "Indépendant sans enseigne" + "name": "GARIBALDI AUTOMOBILES", + "brand": "Indépendant sans enseigne" }, "69120010": { - "Nom": "AGIP VAULX EN VELIN PERI", - "Marque": "Agip" + "name": "AGIP VAULX EN VELIN PERI", + "brand": "Agip" }, "69126001": { - "Nom": "ETS BROSSARD", - "Marque": "Indépendant sans enseigne" + "name": "ETS BROSSARD", + "brand": "Indépendant sans enseigne" }, "69130003": { - "Nom": "ESSO ECULLY", - "Marque": "Esso Express" + "name": "ESSO ECULLY", + "brand": "Esso Express" }, "69130004": { - "Nom": "AUTOS MKN", - "Marque": "Total" + "name": "AUTOS MKN", + "brand": "Total" }, "69132001": { - "Nom": "Carrefour ECULLY", - "Marque": "Carrefour" + "name": "Carrefour ECULLY", + "brand": "Carrefour" }, "69140002": { - "Nom": "BP RILLEUX LES SEMAILLES", - "Marque": "BP" + "name": "BP RILLEUX LES SEMAILLES", + "brand": "BP" }, "69140004": { - "Nom": "A votre service", - "Marque": "Total" + "name": "A votre service", + "brand": "Total" }, "69140005": { - "Nom": "Carrefour MARKET RILLIEUX LA PATE VILLAGE", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET RILLIEUX LA PATE VILLAGE", + "brand": "Carrefour Market" }, "69140006": { - "Nom": "Drive Leclerc Rillieux", - "Marque": "Leclerc" + "name": "Drive Leclerc Rillieux", + "brand": "Leclerc" }, "69150001": { - "Nom": "ESSO CHAMP FLEURY", - "Marque": "Esso Express" + "name": "ESSO CHAMP FLEURY", + "brand": "Esso Express" }, "69150004": { - "Nom": "Total ADROLE", - "Marque": "Total" + "name": "Total ADROLE", + "brand": "Total" }, "69160001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "69160002": { - "Nom": "SARL Le cluster Troyen", - "Marque": "Avia" + "name": "SARL Le cluster Troyen", + "brand": "Avia" }, "69160003": { - "Nom": "ESSO CHARBONNIERES 69", - "Marque": "Esso Express" + "name": "ESSO CHARBONNIERES 69", + "brand": "Esso Express" }, "69170001": { - "Nom": "SIMPLY MARKET", - "Marque": "Auchan" + "name": "SIMPLY MARKET", + "brand": "Auchan" }, "69170004": { - "Nom": "RELAIS TARARE LA TURDINE", - "Marque": "Total Access" + "name": "RELAIS TARARE LA TURDINE", + "brand": "Total Access" }, "69190001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "69190009": { - "Nom": "MS Station", - "Marque": "Agip" + "name": "MS Station", + "brand": "Agip" }, "69200001": { - "Nom": "Carrefour VENISSIEUX", - "Marque": "Carrefour" + "name": "Carrefour VENISSIEUX", + "brand": "Carrefour" }, "69200003": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "69200005": { - "Nom": "ESSO JOLIOT CURIE", - "Marque": "Esso Express" + "name": "ESSO JOLIOT CURIE", + "brand": "Esso Express" }, "69200007": { - "Nom": "BP VENISSIEUX", - "Marque": "BP" + "name": "BP VENISSIEUX", + "brand": "BP" }, "69200008": { - "Nom": "LECLERC DRIVE", - "Marque": "Leclerc" + "name": "LECLERC DRIVE", + "brand": "Leclerc" }, "69200009": { - "Nom": "RELAIS PERRIERE", - "Marque": "Total" + "name": "RELAIS PERRIERE", + "brand": "Total" }, "69210002": { - "Nom": "Carrefour Vaulx en velin", - "Marque": "Carrefour" + "name": "Carrefour Vaulx en velin", + "brand": "Carrefour" }, "69210003": { - "Nom": "RELAIS DE TURDINE", - "Marque": "Total" + "name": "RELAIS DE TURDINE", + "brand": "Total" }, "69210004": { - "Nom": "ESSO LA BREVENNE", - "Marque": "Esso Express" + "name": "ESSO LA BREVENNE", + "brand": "Esso Express" }, "69210005": { - "Nom": "STATION SUPER U PAYS DE L'ARBRESLE", - "Marque": "Système U" + "name": "STATION SUPER U PAYS DE L'ARBRESLE", + "brand": "Système U" }, "69210007": { - "Nom": "OTARIE", - "Marque": "OTARIE" + "name": "OTARIE", + "brand": "OTARIE" }, "69210008": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "69210009": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "69220001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "69220003": { - "Nom": "SARL RELAIS DU BEAUJOLAIS", - "Marque": "Total" + "name": "SARL RELAIS DU BEAUJOLAIS", + "brand": "Total" }, "69220005": { - "Nom": "Garage Paris Nice", - "Marque": "Avia" + "name": "Garage Paris Nice", + "brand": "Avia" }, "69220006": { - "Nom": "ROADY", - "Marque": "Roady" + "name": "ROADY", + "brand": "Roady" }, "69220007": { - "Nom": "SHELL Taponas", - "Marque": "Shell" + "name": "SHELL Taponas", + "brand": "Shell" }, "69220008": { - "Nom": "Netto St Jean d'Ardieres", - "Marque": "Netto" + "name": "Netto St Jean d'Ardieres", + "brand": "Netto" }, "69220010": { - "Nom": "RELAIS DE SARRON", - "Marque": "Total" + "name": "RELAIS DE SARRON", + "brand": "Total" }, "69230001": { - "Nom": "AUCHAN St Genis-Laval", - "Marque": "Auchan" + "name": "AUCHAN St Genis-Laval", + "brand": "Auchan" }, "69230005": { - "Nom": "BP ST GENIS LAVAL 8 à Huit", - "Marque": "BP" + "name": "BP ST GENIS LAVAL 8 à Huit", + "brand": "BP" }, "69240002": { - "Nom": "Intermarché BOURG DE THIZY", - "Marque": "Intermarché" + "name": "Intermarché BOURG DE THIZY", + "brand": "Intermarché" }, "69250008": { - "Nom": "AGIP FLEURIEU", - "Marque": "Agip" + "name": "AGIP FLEURIEU", + "brand": "Agip" }, "69260007": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "69260008": { - "Nom": "AGIP CHARBONNIERES 51 ROUTE PARIS", - "Marque": "Agip" + "name": "AGIP CHARBONNIERES 51 ROUTE PARIS", + "brand": "Agip" }, "69260010": { - "Nom": "AGIP CHARBONNIERES DIR LYON", - "Marque": "Agip" + "name": "AGIP CHARBONNIERES DIR LYON", + "brand": "Agip" }, "69270002": { - "Nom": "Intermarché ROCHETAILLEE SUR SAONE", - "Marque": "Intermarché" + "name": "Intermarché ROCHETAILLEE SUR SAONE", + "brand": "Intermarché" }, "69270004": { - "Nom": "RELAIS FONTAINES MARRONNIERS", - "Marque": "Total Access" + "name": "RELAIS FONTAINES MARRONNIERS", + "brand": "Total Access" }, "69290001": { - "Nom": "ESSO CRAPONNE", - "Marque": "Esso Express" + "name": "ESSO CRAPONNE", + "brand": "Esso Express" }, "69290002": { - "Nom": "GREZDIS", - "Marque": "Leclerc" + "name": "GREZDIS", + "brand": "Leclerc" }, "69290003": { - "Nom": "Intermarché CRAPONNE", - "Marque": "Intermarché" + "name": "Intermarché CRAPONNE", + "brand": "Intermarché" }, "69300001": { - "Nom": "AUCHAN CALUIRE - TOKHEIM", - "Marque": "Auchan" + "name": "AUCHAN CALUIRE - TOKHEIM", + "brand": "Auchan" }, "69300010": { - "Nom": "Garage chene station Total", - "Marque": "Total" + "name": "Garage chene station Total", + "brand": "Total" }, "69300012": { - "Nom": "STATION BP CALUIRE MONTEE DES SOLDATS", - "Marque": "BP" + "name": "STATION BP CALUIRE MONTEE DES SOLDATS", + "brand": "BP" }, "69310003": { - "Nom": "ESSO DE L EUROPE", - "Marque": "Esso Express" + "name": "ESSO DE L EUROPE", + "brand": "Esso Express" }, "69310004": { - "Nom": "RELAIS PIERRE BENITE", - "Marque": "Total" + "name": "RELAIS PIERRE BENITE", + "brand": "Total" }, "69320006": { - "Nom": "RELAIS FEYZIN BELLE ETOILE", - "Marque": "Total Access" + "name": "RELAIS FEYZIN BELLE ETOILE", + "brand": "Total Access" }, "69320007": { - "Nom": "RELAIS FEYZIN BELLE ETOILE - 2", - "Marque": "Total Access" + "name": "RELAIS FEYZIN BELLE ETOILE - 2", + "brand": "Total Access" }, "69330001": { - "Nom": "CSF FRANCE STATION SERVICE", - "Marque": "Carrefour Market" + "name": "CSF FRANCE STATION SERVICE", + "brand": "Carrefour Market" }, "69330002": { - "Nom": "MARKET JONAGE", - "Marque": "Carrefour Market" + "name": "MARKET JONAGE", + "brand": "Carrefour Market" }, "69330003": { - "Nom": "ESSO CARREAU", - "Marque": "Esso Express" + "name": "ESSO CARREAU", + "brand": "Esso Express" }, "69330005": { - "Nom": "GRAND LARGE DISTRIBUTION", - "Marque": "Intermarché" + "name": "GRAND LARGE DISTRIBUTION", + "brand": "Intermarché" }, "69340001": { - "Nom": "Carrefour FRANCHEVILLE", - "Marque": "Carrefour" + "name": "Carrefour FRANCHEVILLE", + "brand": "Carrefour" }, "69340002": { - "Nom": "ESSO FRANCHEVILLE", - "Marque": "Esso Express" + "name": "ESSO FRANCHEVILLE", + "brand": "Esso Express" }, "69340003": { - "Nom": "SHELL ROUSSILLON", - "Marque": "Shell" + "name": "SHELL ROUSSILLON", + "brand": "Shell" }, "69350003": { - "Nom": "RELAIS LA MULATIERE", - "Marque": "Total" + "name": "RELAIS LA MULATIERE", + "brand": "Total" }, "69360008": { - "Nom": "GARAGE DES PIERRES", - "Marque": "BP" + "name": "GARAGE DES PIERRES", + "brand": "BP" }, "69360010": { - "Nom": "SARL SEREDIS", - "Marque": "Carrefour Contact" + "name": "SARL SEREDIS", + "brand": "Carrefour Contact" }, "69360011": { - "Nom": "RELAIS SOLAIZE", - "Marque": "Total" + "name": "RELAIS SOLAIZE", + "brand": "Total" }, "69360012": { - "Nom": "RELAIS DE TERNAY", - "Marque": "Total" + "name": "RELAIS DE TERNAY", + "brand": "Total" }, "69360013": { - "Nom": "RELAIS COMMUNAY", - "Marque": "Total" + "name": "RELAIS COMMUNAY", + "brand": "Total" }, "69360015": { - "Nom": "RELAIS DE L'OZON", - "Marque": "Total Access" + "name": "RELAIS DE L'OZON", + "brand": "Total Access" }, "69360017": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "69370002": { - "Nom": "RELAIS ST DIDIER", - "Marque": "Total" + "name": "RELAIS ST DIDIER", + "brand": "Total" }, "69380004": { - "Nom": "Centre E. LECLERC", - "Marque": "Leclerc" + "name": "Centre E. LECLERC", + "brand": "Leclerc" }, "69380007": { - "Nom": "AVIA SERVICE MONTLUZIN", - "Marque": "Avia" + "name": "AVIA SERVICE MONTLUZIN", + "brand": "Avia" }, "69380008": { - "Nom": "SAS ELGARREKIN", - "Marque": "Intermarché Contact" + "name": "SAS ELGARREKIN", + "brand": "Intermarché Contact" }, "69380009": { - "Nom": "Les Cheres Ouest", - "Marque": "Esso" + "name": "Les Cheres Ouest", + "brand": "Esso" }, "69380010": { - "Nom": "Les Cheres Est", - "Marque": "Esso" + "name": "Les Cheres Est", + "brand": "Esso" }, "69380011": { - "Nom": "Esso les Chères Est", - "Marque": "Esso" + "name": "Esso les Chères Est", + "brand": "Esso" }, "69390001": { - "Nom": "CHARLY AUTOMOBILES", - "Marque": "Total" + "name": "CHARLY AUTOMOBILES", + "brand": "Total" }, "69390002": { - "Nom": "MR TAFANI", - "Marque": "Total" + "name": "MR TAFANI", + "brand": "Total" }, "69390003": { - "Nom": "AGIP VOURLES RN86", - "Marque": "Agip" + "name": "AGIP VOURLES RN86", + "brand": "Agip" }, "69400001": { - "Nom": "Garage de la collonge", - "Marque": "Dyneff" + "name": "Garage de la collonge", + "brand": "Dyneff" }, "69400002": { - "Nom": "STATION DES BUISSONS - SARL BRUNO LAMOUREUX", - "Marque": "Dyneff" + "name": "STATION DES BUISSONS - SARL BRUNO LAMOUREUX", + "brand": "Dyneff" }, "69400004": { - "Nom": "GARAGE THIVOLLE", - "Marque": "Total" + "name": "GARAGE THIVOLLE", + "brand": "Total" }, "69400005": { - "Nom": "ESSO VILLEFRANCHE", - "Marque": "Esso Express" + "name": "ESSO VILLEFRANCHE", + "brand": "Esso Express" }, "69400006": { - "Nom": "ESSO SALENGRO", - "Marque": "Esso Express" + "name": "ESSO SALENGRO", + "brand": "Esso Express" }, "69400007": { - "Nom": "AGIP LIERGUES ROUTE DE TARARE", - "Marque": "Agip" + "name": "AGIP LIERGUES ROUTE DE TARARE", + "brand": "Agip" }, "69400008": { - "Nom": "LECLERC HYPERMARCHE", - "Marque": "Leclerc" + "name": "LECLERC HYPERMARCHE", + "brand": "Leclerc" }, "69400009": { - "Nom": "AUCHAN Supermarché", - "Marque": "Auchan" + "name": "AUCHAN Supermarché", + "brand": "Auchan" }, "69400010": { - "Nom": "Intermarché VILLEFRANCHE/SAONE", - "Marque": "Intermarché" + "name": "Intermarché VILLEFRANCHE/SAONE", + "brand": "Intermarché" }, "69400014": { - "Nom": "RELAIS DE LA CALADE", - "Marque": "Total Access" + "name": "RELAIS DE LA CALADE", + "brand": "Total Access" }, "69410006": { - "Nom": "AGIP CHAMPAGNE AV DE GAULLE", - "Marque": "Agip" + "name": "AGIP CHAMPAGNE AV DE GAULLE", + "brand": "Agip" }, "69410007": { - "Nom": "RELAIS MONT D'OR", - "Marque": "Total Access" + "name": "RELAIS MONT D'OR", + "brand": "Total Access" }, "69420001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "69420002": { - "Nom": "Leclerc Drive", - "Marque": "Leclerc" + "name": "Leclerc Drive", + "brand": "Leclerc" }, "69430001": { - "Nom": "GARAGE GUY FIARD", - "Marque": "Total" + "name": "GARAGE GUY FIARD", + "brand": "Total" }, "69430002": { - "Nom": "Carrefour Contact BEAUJEU", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact BEAUJEU", + "brand": "Carrefour Contact" }, "69460004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "69460006": { - "Nom": "Germain Calvignac Automobiles", - "Marque": "Indépendant sans enseigne" + "name": "Germain Calvignac Automobiles", + "brand": "Indépendant sans enseigne" }, "69470002": { - "Nom": "SARL DOLLIDIER", - "Marque": "BP" + "name": "SARL DOLLIDIER", + "brand": "BP" }, "69470003": { - "Nom": "Intermarché SAS BIFIVE", - "Marque": "Intermarché Contact" + "name": "Intermarché SAS BIFIVE", + "brand": "Intermarché Contact" }, "69480002": { - "Nom": "SARL RONGEAT", - "Marque": "Avia" + "name": "SARL RONGEAT", + "brand": "Avia" }, "69480005": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "69480006": { - "Nom": "AGIP ANSE ROUTE VILLEFRANCHE", - "Marque": "Agip" + "name": "AGIP ANSE ROUTE VILLEFRANCHE", + "brand": "Agip" }, "69490001": { - "Nom": "SAINT LOUP DISTRIBUTION", - "Marque": "Leclerc" + "name": "SAINT LOUP DISTRIBUTION", + "brand": "Leclerc" }, "69490002": { - "Nom": "Intermarché PONTCHARRA/TURDINE", - "Marque": "Intermarché" + "name": "Intermarché PONTCHARRA/TURDINE", + "brand": "Intermarché" }, "69500002": { - "Nom": "Station AVIA à Bron", - "Marque": "Avia" + "name": "Station AVIA à Bron", + "brand": "Avia" }, "69500006": { - "Nom": "CASINO CARBURANT", - "Marque": "Casino" + "name": "CASINO CARBURANT", + "brand": "Casino" }, "69500008": { - "Nom": "RELAIS BRON LE DAUPHINE", - "Marque": "Total Access" + "name": "RELAIS BRON LE DAUPHINE", + "brand": "Total Access" }, "69500009": { - "Nom": "RELAIS BRONDILLANTS", - "Marque": "Total Access" + "name": "RELAIS BRONDILLANTS", + "brand": "Total Access" }, "69510002": { - "Nom": "FAHY - GARAGE DE MALATAVERNE", - "Marque": "Indépendant sans enseigne" + "name": "FAHY - GARAGE DE MALATAVERNE", + "brand": "Indépendant sans enseigne" }, "69520001": { - "Nom": "Intermarché GRIGNY", - "Marque": "Intermarché" + "name": "Intermarché GRIGNY", + "brand": "Intermarché" }, "69530001": { - "Nom": "SARL BALLEYDIER", - "Marque": "Total" + "name": "SARL BALLEYDIER", + "brand": "Total" }, "69530002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "69540001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "69550001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "69550002": { - "Nom": "RELAIS DE LA GAITE GGE R LEPINE", - "Marque": "Total" + "name": "RELAIS DE LA GAITE GGE R LEPINE", + "brand": "Total" }, "69550003": { - "Nom": "Intermarché AMPLEPUIS", - "Marque": "Intermarché" + "name": "Intermarché AMPLEPUIS", + "brand": "Intermarché" }, "69560001": { - "Nom": "U EXPRESS ST ROMAIN EN GAL", - "Marque": "Système U" + "name": "U EXPRESS ST ROMAIN EN GAL", + "brand": "Système U" }, "69570002": { - "Nom": "ESSO PORTES LYON", - "Marque": "Esso Express" + "name": "ESSO PORTES LYON", + "brand": "Esso Express" }, "69570005": { - "Nom": "RELAIS DES BRUYERES - PAISY", - "Marque": "Total" + "name": "RELAIS DES BRUYERES - PAISY", + "brand": "Total" }, "69571001": { - "Nom": "AUCHAN DARDILLY", - "Marque": "Auchan" + "name": "AUCHAN DARDILLY", + "brand": "Auchan" }, "69590001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "69590002": { - "Nom": "ETS GRANJON", - "Marque": "Avia" + "name": "ETS GRANJON", + "brand": "Avia" }, "69600002": { - "Nom": "Intermarché OULLINS", - "Marque": "Intermarché" + "name": "Intermarché OULLINS", + "brand": "Intermarché" }, "69600004": { - "Nom": "AVIA XPRESS", - "Marque": "Avia" + "name": "AVIA XPRESS", + "brand": "Avia" }, "69610001": { - "Nom": "Intermarché SOUZY", - "Marque": "Intermarché" + "name": "Intermarché SOUZY", + "brand": "Intermarché" }, "69620002": { - "Nom": "Station des plaines rd 385", - "Marque": "Avia" + "name": "Station des plaines rd 385", + "brand": "Avia" }, "69630002": { - "Nom": "RESTAURANT DE LA CORDELIERE", - "Marque": "Elan" + "name": "RESTAURANT DE LA CORDELIERE", + "brand": "Elan" }, "69650001": { - "Nom": "QUINCIEUX SERVICE AUTO", - "Marque": "Total" + "name": "QUINCIEUX SERVICE AUTO", + "brand": "Total" }, "69651001": { - "Nom": "STATION Total LIMAS", - "Marque": "Total" + "name": "STATION Total LIMAS", + "brand": "Total" }, "69651002": { - "Nom": "NOMBLOT SAS", - "Marque": "ESSO" + "name": "NOMBLOT SAS", + "brand": "ESSO" }, "69658001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "69670002": { - "Nom": "SARL LFM", - "Marque": "Esso" + "name": "SARL LFM", + "brand": "Esso" }, "69672001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "69680002": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "69680003": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "69700001": { - "Nom": "Carrefour GIVORS", - "Marque": "Carrefour" + "name": "Carrefour GIVORS", + "brand": "Carrefour" }, "69700002": { - "Nom": "GONCALVES AUTOMOBILES", - "Marque": "Elan" + "name": "GONCALVES AUTOMOBILES", + "brand": "Elan" }, "69700005": { - "Nom": "Intermarché GIVORS", - "Marque": "Intermarché" + "name": "Intermarché GIVORS", + "brand": "Intermarché" }, "69700012": { - "Nom": "BP A47 AIRE DE SAINT ROMAIN EN GIER", - "Marque": "BP" + "name": "BP A47 AIRE DE SAINT ROMAIN EN GIER", + "brand": "BP" }, "69720002": { - "Nom": "ESSO DES SAVOIES", - "Marque": "Esso Express" + "name": "ESSO DES SAVOIES", + "brand": "Esso Express" }, "69720004": { - "Nom": "Jean Moulin automobiles", - "Marque": "Total" + "name": "Jean Moulin automobiles", + "brand": "Total" }, "69720005": { - "Nom": "Intermarché ST BONNET DE MURE", - "Marque": "Intermarché" + "name": "Intermarché ST BONNET DE MURE", + "brand": "Intermarché" }, "69730001": { - "Nom": "EOR GENAY VICARD", - "Marque": "Total" + "name": "EOR GENAY VICARD", + "brand": "Total" }, "69730002": { - "Nom": "LECLERC GENAY", - "Marque": "Leclerc" + "name": "LECLERC GENAY", + "brand": "Leclerc" }, "69740002": { - "Nom": "ESSO GARAGE DES MURIERS", - "Marque": "Esso" + "name": "ESSO GARAGE DES MURIERS", + "brand": "Esso" }, "69760001": { - "Nom": "Garage bellevue", - "Marque": "Elan" + "name": "Garage bellevue", + "brand": "Elan" }, "69780001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "69800010": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "69800012": { - "Nom": "BP AIRE DE SAINT PRIEST", - "Marque": "BP" + "name": "BP AIRE DE SAINT PRIEST", + "brand": "BP" }, "69800013": { - "Nom": "BP A43 AIRE DE MANISSIEUX", - "Marque": "BP" + "name": "BP A43 AIRE DE MANISSIEUX", + "brand": "BP" }, "69800014": { - "Nom": "RELAIS ST PRIEST MI PLAINE", - "Marque": "Total Access" + "name": "RELAIS ST PRIEST MI PLAINE", + "brand": "Total Access" }, "69800015": { - "Nom": "RELAIS ST PRIEST LES BRIGOUDES", - "Marque": "Total Access" + "name": "RELAIS ST PRIEST LES BRIGOUDES", + "brand": "Total Access" }, "69800016": { - "Nom": "RELAIS ST PRIEST SAYTHE", - "Marque": "Total Access" + "name": "RELAIS ST PRIEST SAYTHE", + "brand": "Total Access" }, "69800017": { - "Nom": "RELAIS ST HUBERT", - "Marque": "Total Access" + "name": "RELAIS ST HUBERT", + "brand": "Total Access" }, "69800018": { - "Nom": "BP Saint-Priest", - "Marque": "BP" + "name": "BP Saint-Priest", + "brand": "BP" }, "69800019": { - "Nom": "RELAIS ST PRIEST MI PLAINE 2", - "Marque": "Total Access" + "name": "RELAIS ST PRIEST MI PLAINE 2", + "brand": "Total Access" }, "69803001": { - "Nom": "Auchan Saint Priest", - "Marque": "Auchan" + "name": "Auchan Saint Priest", + "brand": "Auchan" }, "69830003": { - "Nom": "Leclerc SAS SODIRE", - "Marque": "Leclerc" + "name": "Leclerc SAS SODIRE", + "brand": "Leclerc" }, "69850001": { - "Nom": "GARAGE GUYOT", - "Marque": "Total" + "name": "GARAGE GUYOT", + "brand": "Total" }, "69870001": { - "Nom": "LA MURE S/AZERGUES", - "Marque": "Total" + "name": "LA MURE S/AZERGUES", + "brand": "Total" }, "69870002": { - "Nom": "SAS ZOLEA", - "Marque": "Intermarché Contact" + "name": "SAS ZOLEA", + "brand": "Intermarché Contact" }, "69882001": { - "Nom": "MEYZIEU-DIS", - "Marque": "Leclerc" + "name": "MEYZIEU-DIS", + "brand": "Leclerc" }, "69930001": { - "Nom": "GARAGE MICHAUD", - "Marque": "Elan" + "name": "GARAGE MICHAUD", + "brand": "Elan" }, "69960003": { - "Nom": "BP CORBAS MONTMARTIN", - "Marque": "BP" + "name": "BP CORBAS MONTMARTIN", + "brand": "BP" }, "69960005": { - "Nom": "JMG", - "Marque": "Total" + "name": "JMG", + "brand": "Total" }, "69970001": { - "Nom": "SODICHAP Centre Leclerc", - "Marque": "Leclerc" + "name": "SODICHAP Centre Leclerc", + "brand": "Leclerc" }, "70000001": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "70000002": { - "Nom": "STATION Total DU LAC", - "Marque": "Total" + "name": "STATION Total DU LAC", + "brand": "Total" }, "70000004": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "70000005": { - "Nom": "Station Ets DORMOY", - "Marque": "Avia" + "name": "Station Ets DORMOY", + "brand": "Avia" }, "70000007": { - "Nom": "Intermarché NAVENNE", - "Marque": "Intermarché" + "name": "Intermarché NAVENNE", + "brand": "Intermarché" }, "70000008": { - "Nom": "Intermarché VESOUL", - "Marque": "Intermarché" + "name": "Intermarché VESOUL", + "brand": "Intermarché" }, "70000009": { - "Nom": "NOIDIS", - "Marque": "Leclerc" + "name": "NOIDIS", + "brand": "Leclerc" }, "70000010": { - "Nom": "NOIDIS", - "Marque": "Leclerc" + "name": "NOIDIS", + "brand": "Leclerc" }, "70004001": { - "Nom": "Total AUTOMAT'", - "Marque": "Total" + "name": "Total AUTOMAT'", + "brand": "Total" }, "70100002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "70100003": { - "Nom": "SARL BERTRAND", - "Marque": "Total" + "name": "SARL BERTRAND", + "brand": "Total" }, "70100005": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "70100006": { - "Nom": "MAISON DU PNEU SILIGOM", - "Marque": "Indépendant sans enseigne" + "name": "MAISON DU PNEU SILIGOM", + "brand": "Indépendant sans enseigne" }, "70100007": { - "Nom": "MS SOULIER SARL", - "Marque": "Avia" + "name": "MS SOULIER SARL", + "brand": "Avia" }, "70110001": { - "Nom": "Intermarché VILLERSEXEL", - "Marque": "Intermarché" + "name": "Intermarché VILLERSEXEL", + "brand": "Intermarché" }, "70120002": { - "Nom": "STATION DU CENTRE AVIA", - "Marque": "Avia" + "name": "STATION DU CENTRE AVIA", + "brand": "Avia" }, "70120003": { - "Nom": "STATION DU SOLEIL LEVANT", - "Marque": "Total" + "name": "STATION DU SOLEIL LEVANT", + "brand": "Total" }, "70130001": { - "Nom": "RELAIS FRENOIS", - "Marque": "Avia" + "name": "RELAIS FRENOIS", + "brand": "Avia" }, "70140002": { - "Nom": "Station Service Pesmoise", - "Marque": "Indépendant sans enseigne" + "name": "Station Service Pesmoise", + "brand": "Indépendant sans enseigne" }, "70150001": { - "Nom": "Intermarché MARNAY", - "Marque": "Intermarché" + "name": "Intermarché MARNAY", + "brand": "Intermarché" }, "70160001": { - "Nom": "Carrefour Contact - FAVERNEY", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact - FAVERNEY", + "brand": "Carrefour Contact" }, "70170002": { - "Nom": "022 DATS PORT SUR SAONE", - "Marque": "Colruyt" + "name": "022 DATS PORT SUR SAONE", + "brand": "Colruyt" }, "70180001": { - "Nom": "Intermarché SAS JIRD", - "Marque": "Intermarché" + "name": "Intermarché SAS JIRD", + "brand": "Intermarché" }, "70180002": { - "Nom": "016 DATS DAMPIERRE", - "Marque": "Colruyt" + "name": "016 DATS DAMPIERRE", + "brand": "Colruyt" }, "70190002": { - "Nom": "018 DATS RIOZ", - "Marque": "Colruyt" + "name": "018 DATS RIOZ", + "brand": "Colruyt" }, "70190003": { - "Nom": "CASINO RIOZ", - "Marque": "Casino" + "name": "CASINO RIOZ", + "brand": "Casino" }, "70200001": { - "Nom": "Supermarché Match LURE", - "Marque": "Supermarché Match" + "name": "Supermarché Match LURE", + "brand": "Supermarché Match" }, "70200004": { - "Nom": "LURE DIS", - "Marque": "Leclerc" + "name": "LURE DIS", + "brand": "Leclerc" }, "70200005": { - "Nom": "Intermarché LURE", - "Marque": "Intermarché" + "name": "Intermarché LURE", + "brand": "Intermarché" }, "70200006": { - "Nom": "A LUR O PNEUS", - "Marque": "Total" + "name": "A LUR O PNEUS", + "brand": "Total" }, "70200007": { - "Nom": "Mérions", - "Marque": "Mérions" + "name": "Mérions", + "brand": "Mérions" }, "70220001": { - "Nom": "RELAIS DU KIRSCH SAS ROMARY RENE ET FILS", - "Marque": "Indépendant sans enseigne" + "name": "RELAIS DU KIRSCH SAS ROMARY RENE ET FILS", + "brand": "Indépendant sans enseigne" }, "70220002": { - "Nom": "DATS FOUGEROLLES", - "Marque": "Colruyt" + "name": "DATS FOUGEROLLES", + "brand": "Colruyt" }, "70250004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "70270001": { - "Nom": "Station Avia", - "Marque": "Avia" + "name": "Station Avia", + "brand": "Avia" }, "70290002": { - "Nom": "013 DATS CHAMPAGNEY", - "Marque": "Colruyt" + "name": "013 DATS CHAMPAGNEY", + "brand": "Colruyt" }, "70300001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "70300004": { - "Nom": "MAISON DU PNEU MARIOTTE SILIGOM", - "Marque": "Indépendant sans enseigne" + "name": "MAISON DU PNEU MARIOTTE SILIGOM", + "brand": "Indépendant sans enseigne" }, "70300005": { - "Nom": "SAS DILUX HYPER CASINO", - "Marque": "Casino" + "name": "SAS DILUX HYPER CASINO", + "brand": "Casino" }, "70300007": { - "Nom": "Station service du bouquet", - "Marque": "S.D.L" + "name": "Station service du bouquet", + "brand": "S.D.L" }, "70300008": { - "Nom": "GME SAINT SAUVEUR", - "Marque": "GME" + "name": "GME SAINT SAUVEUR", + "brand": "GME" }, "70300009": { - "Nom": "STATION Total ST SAUVEUR", - "Marque": "Total" + "name": "STATION Total ST SAUVEUR", + "brand": "Total" }, "70300011": { - "Nom": "AGIP SAINT SAUVEUR", - "Marque": "Agip" + "name": "AGIP SAINT SAUVEUR", + "brand": "Agip" }, "70320003": { - "Nom": "CORBENAY", - "Marque": "Casino" + "name": "CORBENAY", + "brand": "Casino" }, "70400001": { - "Nom": "SARL PENOT-LUCAS", - "Marque": "Total" + "name": "SARL PENOT-LUCAS", + "brand": "Total" }, "70400003": { - "Nom": "HERDIS", - "Marque": "Leclerc" + "name": "HERDIS", + "brand": "Leclerc" }, "70400004": { - "Nom": "GEROME QUIRICI", - "Marque": "Système U" + "name": "GEROME QUIRICI", + "brand": "Système U" }, "70500001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "70500002": { - "Nom": "Intermarché JUSSEY", - "Marque": "Intermarché" + "name": "Intermarché JUSSEY", + "brand": "Intermarché" }, "70500004": { - "Nom": "Intermarché Contact CORRE", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact CORRE", + "brand": "Intermarché Contact" }, "70600001": { - "Nom": "PODUBCIK", - "Marque": "Avia" + "name": "PODUBCIK", + "brand": "Avia" }, "70700003": { - "Nom": "Carrefour Contact BUCEY LES GY", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact BUCEY LES GY", + "brand": "Carrefour Contact" }, "70700004": { - "Nom": "HORMAR", - "Marque": "Intermarché" + "name": "HORMAR", + "brand": "Intermarché" }, "70800002": { - "Nom": "SA DORMOY FRERES", - "Marque": "Total" + "name": "SA DORMOY FRERES", + "brand": "Total" }, "70800003": { - "Nom": "8 a huit", - "Marque": "8 a huit" + "name": "8 a huit", + "brand": "8 a huit" }, "71000001": { - "Nom": "AUCHAN RIVE DE SAONE", - "Marque": "Auchan" + "name": "AUCHAN RIVE DE SAONE", + "brand": "Auchan" }, "71000003": { - "Nom": "VARENNES LES MACON", - "Marque": "Total" + "name": "VARENNES LES MACON", + "brand": "Total" }, "71000005": { - "Nom": "BP MACON VAL DE SAONE", - "Marque": "BP" + "name": "BP MACON VAL DE SAONE", + "brand": "BP" }, "71000009": { - "Nom": "SAS SAUGERAIES DISTRIBUTION", - "Marque": "Leclerc" + "name": "SAS SAUGERAIES DISTRIBUTION", + "brand": "Leclerc" }, "71000010": { - "Nom": "CHALONDIS", - "Marque": "Leclerc" + "name": "CHALONDIS", + "brand": "Leclerc" }, "71000020": { - "Nom": "SAS ROPIMAX", - "Marque": "Intermarché" + "name": "SAS ROPIMAX", + "brand": "Intermarché" }, "71000021": { - "Nom": "RELAIS CONDEMINES", - "Marque": "Total Access" + "name": "RELAIS CONDEMINES", + "brand": "Total Access" }, "71000022": { - "Nom": "RELAIS MACON ED HERRIOT", - "Marque": "Total Access" + "name": "RELAIS MACON ED HERRIOT", + "brand": "Total Access" }, "71000023": { - "Nom": "BP TRUCKSTOP DE MACON", - "Marque": "BP" + "name": "BP TRUCKSTOP DE MACON", + "brand": "BP" }, "71100001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "71100002": { - "Nom": "Carrefour CHALON SUD", - "Marque": "Carrefour" + "name": "Carrefour CHALON SUD", + "brand": "Carrefour" }, "71100003": { - "Nom": "Carrefour CHALON NORD", - "Marque": "Carrefour" + "name": "Carrefour CHALON NORD", + "brand": "Carrefour" }, "71100008": { - "Nom": "ESSO DU CANAL", - "Marque": "Esso Express" + "name": "ESSO DU CANAL", + "brand": "Esso Express" }, "71100011": { - "Nom": "Intermarché CHALON SUR SAÔNE", - "Marque": "Intermarché" + "name": "Intermarché CHALON SUR SAÔNE", + "brand": "Intermarché" }, "71100019": { - "Nom": "SARL MS SOULIER", - "Marque": "Avia" + "name": "SARL MS SOULIER", + "brand": "Avia" }, "71100022": { - "Nom": "Station Leclerc LUX", - "Marque": "Leclerc" + "name": "Station Leclerc LUX", + "brand": "Leclerc" }, "71100025": { - "Nom": "AGIP CHALON AVENUE MONOT", - "Marque": "Agip" + "name": "AGIP CHALON AVENUE MONOT", + "brand": "Agip" }, "71100026": { - "Nom": "RELAIS CHALON S.SAONE ARNAL", - "Marque": "Total Access" + "name": "RELAIS CHALON S.SAONE ARNAL", + "brand": "Total Access" }, "71100027": { - "Nom": "RELAIS DE LA THALIE", - "Marque": "Total" + "name": "RELAIS DE LA THALIE", + "brand": "Total" }, "71110001": { - "Nom": "ATAC MARCIGNY", - "Marque": "Atac" + "name": "ATAC MARCIGNY", + "brand": "Atac" }, "71110003": { - "Nom": "Garage Christophe JANIN", - "Marque": "Avia" + "name": "Garage Christophe JANIN", + "brand": "Avia" }, "71118001": { - "Nom": "ECOMARCHE ST MARTIN BELLE ROCHE", - "Marque": "Intermarché" + "name": "ECOMARCHE ST MARTIN BELLE ROCHE", + "brand": "Intermarché" }, "71120001": { - "Nom": "RIBEIRO SARL", - "Marque": "Avia" + "name": "RIBEIRO SARL", + "brand": "Avia" }, "71120002": { - "Nom": "Intermarché CHAROLLES", - "Marque": "Intermarché" + "name": "Intermarché CHAROLLES", + "brand": "Intermarché" }, "71130002": { - "Nom": "AUCHAN GUEUGNON", - "Marque": "Auchan" + "name": "AUCHAN GUEUGNON", + "brand": "Auchan" }, "71130004": { - "Nom": "Intermarché SA CHANGON", - "Marque": "Intermarché" + "name": "Intermarché SA CHANGON", + "brand": "Intermarché" }, "71130005": { - "Nom": "SAS LAFAY HERMEY AUTOMOBILES", - "Marque": "Total" + "name": "SAS LAFAY HERMEY AUTOMOBILES", + "brand": "Total" }, "71140001": { - "Nom": "bi1 BOURBON LANCY", - "Marque": "Atac" + "name": "bi1 BOURBON LANCY", + "brand": "Atac" }, "71140002": { - "Nom": "AGIP BOURBON LANCY", - "Marque": "Agip" + "name": "AGIP BOURBON LANCY", + "brand": "Agip" }, "71140003": { - "Nom": "Intermarché BOURBON LANCY", - "Marque": "Intermarché" + "name": "Intermarché BOURBON LANCY", + "brand": "Intermarché" }, "71150002": { - "Nom": "Intermarché CHAGNY", - "Marque": "Intermarché" + "name": "Intermarché CHAGNY", + "brand": "Intermarché" }, "71150003": { - "Nom": "SARL CLOCHEAU", - "Marque": "Agip" + "name": "SARL CLOCHEAU", + "brand": "Agip" }, "71160001": { - "Nom": "Relais Lagarde Digoin", - "Marque": "Total" + "name": "Relais Lagarde Digoin", + "brand": "Total" }, "71160002": { - "Nom": "DIGOIN DISTRIBUTION", - "Marque": "Leclerc" + "name": "DIGOIN DISTRIBUTION", + "brand": "Leclerc" }, "71160003": { - "Nom": "Intermarché DIGOIN", - "Marque": "Intermarché" + "name": "Intermarché DIGOIN", + "brand": "Intermarché" }, "71170001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "71170003": { - "Nom": "NETTO CHAUFFAILLES", - "Marque": "Netto" + "name": "NETTO CHAUFFAILLES", + "brand": "Netto" }, "71190003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "71200004": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "71200007": { - "Nom": "Netto Le Creusot", - "Marque": "Netto" + "name": "Netto Le Creusot", + "brand": "Netto" }, "71200011": { - "Nom": "station Carrefour Market", - "Marque": "Carrefour Market" + "name": "station Carrefour Market", + "brand": "Carrefour Market" }, "71200012": { - "Nom": "AGIP LE CREUSOT ROUTE DE MONTCENIS", - "Marque": "Agip" + "name": "AGIP LE CREUSOT ROUTE DE MONTCENIS", + "brand": "Agip" }, "71210001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "71210006": { - "Nom": "Intermarché MONTCHANIN", - "Marque": "Intermarché" + "name": "Intermarché MONTCHANIN", + "brand": "Intermarché" }, "71210008": { - "Nom": "Sas stass", - "Marque": "Avia" + "name": "Sas stass", + "brand": "Avia" }, "71210009": { - "Nom": "RELAIS ROND POINT J. ROSE", - "Marque": "Total" + "name": "RELAIS ROND POINT J. ROSE", + "brand": "Total" }, "71220002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "71230001": { - "Nom": "STATION GARAGE ANDRE", - "Marque": "Dyneff" + "name": "STATION GARAGE ANDRE", + "brand": "Dyneff" }, "71230002": { - "Nom": "Intermarché ST VALLIER", - "Marque": "Intermarché" + "name": "Intermarché ST VALLIER", + "brand": "Intermarché" }, "71240004": { - "Nom": "AUCHAN SENNECEY LE GRAND", - "Marque": "Auchan" + "name": "AUCHAN SENNECEY LE GRAND", + "brand": "Auchan" }, "71240006": { - "Nom": "BP A6 AIRE DE LA FERTE", - "Marque": "BP" + "name": "BP A6 AIRE DE LA FERTE", + "brand": "BP" }, "71240007": { - "Nom": "BP A6 AIRE DE ST-AMBREUIL", - "Marque": "BP" + "name": "BP A6 AIRE DE ST-AMBREUIL", + "brand": "BP" }, "71250001": { - "Nom": "ATAC CLUNY", - "Marque": "Atac" + "name": "ATAC CLUNY", + "brand": "Atac" }, "71250004": { - "Nom": "SARL GARAGE DE LA DIGUE", - "Marque": "Avia" + "name": "SARL GARAGE DE LA DIGUE", + "brand": "Avia" }, "71250005": { - "Nom": "Carrefour MARKET CLUNY", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET CLUNY", + "brand": "Carrefour Market" }, "71250006": { - "Nom": "RELAIS DE LA GROSNE", - "Marque": "Total" + "name": "RELAIS DE LA GROSNE", + "brand": "Total" }, "71250007": { - "Nom": "RELAIS STE CECILE", - "Marque": "Total" + "name": "RELAIS STE CECILE", + "brand": "Total" }, "71260002": { - "Nom": "EURL HARAN CHRISTOPHE", - "Marque": "Shell" + "name": "EURL HARAN CHRISTOPHE", + "brand": "Shell" }, "71260004": { - "Nom": "GARAGE DE LA POSTE", - "Marque": "Elan" + "name": "GARAGE DE LA POSTE", + "brand": "Elan" }, "71260005": { - "Nom": "EURL GOUPIL PHILIPPE", - "Marque": "Total Access" + "name": "EURL GOUPIL PHILIPPE", + "brand": "Total Access" }, "71260006": { - "Nom": "RELAIS DE LA SALLE", - "Marque": "Total" + "name": "RELAIS DE LA SALLE", + "brand": "Total" }, "71260007": { - "Nom": "SAS BENJALEX", - "Marque": "Intermarché Contact" + "name": "SAS BENJALEX", + "brand": "Intermarché Contact" }, "71270002": { - "Nom": "EURL COMPARET BOISSONS COMBUSTIBLES", - "Marque": "Indépendant sans enseigne" + "name": "EURL COMPARET BOISSONS COMBUSTIBLES", + "brand": "Indépendant sans enseigne" }, "71270004": { - "Nom": "SUPERMARCHE BI1", - "Marque": "Atac" + "name": "SUPERMARCHE BI1", + "brand": "Atac" }, "71270005": { - "Nom": "Intermarché PIERRE DE BRESSE", - "Marque": "Intermarché" + "name": "Intermarché PIERRE DE BRESSE", + "brand": "Intermarché" }, "71290001": { - "Nom": "STATION DATS", - "Marque": "Colruyt" + "name": "STATION DATS", + "brand": "Colruyt" }, "71300001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "71300009": { - "Nom": "Intermarché GOURDON", - "Marque": "Intermarché" + "name": "Intermarché GOURDON", + "brand": "Intermarché" }, "71300011": { - "Nom": "STATION DU GUIDE", - "Marque": "Indépendant" + "name": "STATION DU GUIDE", + "brand": "Indépendant" }, "71300012": { - "Nom": "RELAIS DES MINES", - "Marque": "Total" + "name": "RELAIS DES MINES", + "brand": "Total" }, "71304001": { - "Nom": "CENTRE LECLERC", - "Marque": "Leclerc" + "name": "CENTRE LECLERC", + "brand": "Leclerc" }, "71320001": { - "Nom": "MAXIMARCHE TOULON SUR ARROUX", - "Marque": "Maximarché" + "name": "MAXIMARCHE TOULON SUR ARROUX", + "brand": "Maximarché" }, "71330001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "71350001": { - "Nom": "ATAC VERDUN SUR LE DOUBS", - "Marque": "Atac" + "name": "ATAC VERDUN SUR LE DOUBS", + "brand": "Atac" }, "71350002": { - "Nom": "SAS SYDO", - "Marque": "Intermarché Contact" + "name": "SAS SYDO", + "brand": "Intermarché Contact" }, "71360001": { - "Nom": "005 DATS EPINAC", - "Marque": "Colruyt" + "name": "005 DATS EPINAC", + "brand": "Colruyt" }, "71370001": { - "Nom": "ATAC ST GERMAIN DU PLAIN", - "Marque": "Atac" + "name": "ATAC ST GERMAIN DU PLAIN", + "brand": "Atac" }, "71370003": { - "Nom": "Intermarché OUROUX SUR SAONE", - "Marque": "Intermarché" + "name": "Intermarché OUROUX SUR SAONE", + "brand": "Intermarché" }, "71380001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "71380002": { - "Nom": "NETTO CHATENOY EN BRESSE", - "Marque": "Netto" + "name": "NETTO CHATENOY EN BRESSE", + "brand": "Netto" }, "71390001": { - "Nom": "ATAC BUXY", - "Marque": "Atac" + "name": "ATAC BUXY", + "brand": "Atac" }, "71390004": { - "Nom": "Sarl garage bernollin et associes", - "Marque": "Elan" + "name": "Sarl garage bernollin et associes", + "brand": "Elan" }, "71400005": { - "Nom": "Intermarché AUTUN", - "Marque": "Intermarché" + "name": "Intermarché AUTUN", + "brand": "Intermarché" }, "71400007": { - "Nom": "AVIA PONT L'EVEQUE", - "Marque": "Avia" + "name": "AVIA PONT L'EVEQUE", + "brand": "Avia" }, "71400011": { - "Nom": "LECLERC", - "Marque": "Leclerc" + "name": "LECLERC", + "brand": "Leclerc" }, "71400012": { - "Nom": "RELAIS AUTUN GARE", - "Marque": "Total Access" + "name": "RELAIS AUTUN GARE", + "brand": "Total Access" }, "71400013": { - "Nom": "RELAIS DU LAC", - "Marque": "Total Access" + "name": "RELAIS DU LAC", + "brand": "Total Access" }, "71410001": { - "Nom": "AGIP SANVIGNES rue MITTERRAND", - "Marque": "Agip" + "name": "AGIP SANVIGNES rue MITTERRAND", + "brand": "Agip" }, "71420002": { - "Nom": "SCHIEVER CARBURANT GENELARD", - "Marque": "Maximarché" + "name": "SCHIEVER CARBURANT GENELARD", + "brand": "Maximarché" }, "71420003": { - "Nom": "Super U Perrecy les forges", - "Marque": "Système U" + "name": "Super U Perrecy les forges", + "brand": "Système U" }, "71450001": { - "Nom": "MAXIMARCHE BLANZY", - "Marque": "Maximarché" + "name": "MAXIMARCHE BLANZY", + "brand": "Maximarché" }, "71450002": { - "Nom": "LE RELAIS DE SAVIGNY", - "Marque": "Avia" + "name": "LE RELAIS DE SAVIGNY", + "brand": "Avia" }, "71460001": { - "Nom": "Bi1 ST GENGOUX LE NATIONAL", - "Marque": "Maximarché" + "name": "Bi1 ST GENGOUX LE NATIONAL", + "brand": "Maximarché" }, "71460003": { - "Nom": "GARAGE ROZE ANDRE", - "Marque": "Elan" + "name": "GARAGE ROZE ANDRE", + "brand": "Elan" }, "71470002": { - "Nom": "Carrefour Contact ROMENAY", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact ROMENAY", + "brand": "Carrefour Contact" }, "71480001": { - "Nom": "U Express", - "Marque": "Système U" + "name": "U Express", + "brand": "Système U" }, "71480003": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "71480004": { - "Nom": "DISTRI BRESSE", - "Marque": "Dyneff" + "name": "DISTRI BRESSE", + "brand": "Dyneff" }, "71480005": { - "Nom": "Mecacenter", - "Marque": "Avia" + "name": "Mecacenter", + "brand": "Avia" }, "71490002": { - "Nom": "Carrefour EXPRESS", - "Marque": "Carrefour Express" + "name": "Carrefour EXPRESS", + "brand": "Carrefour Express" }, "71500001": { - "Nom": "ATAC LOUHANS", - "Marque": "Atac" + "name": "ATAC LOUHANS", + "brand": "Atac" }, "71500002": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "71500003": { - "Nom": "GGE LOUHANNAIS", - "Marque": "Total" + "name": "GGE LOUHANNAIS", + "brand": "Total" }, "71500004": { - "Nom": "VAULX DISTRIBUTION", - "Marque": "Leclerc" + "name": "VAULX DISTRIBUTION", + "brand": "Leclerc" }, "71510001": { - "Nom": "ATAC ST LEGER SUR DHEUNE", - "Marque": "Atac" + "name": "ATAC ST LEGER SUR DHEUNE", + "brand": "Atac" }, "71540001": { - "Nom": "8 à Huit IGORNAY", - "Marque": "Huit à 8" + "name": "8 à Huit IGORNAY", + "brand": "Huit à 8" }, "71570003": { - "Nom": "Bi1", - "Marque": "Atac" + "name": "Bi1", + "brand": "Atac" }, "71570004": { - "Nom": "Intermarché ROMANECHE THORINS", - "Marque": "Intermarché" + "name": "Intermarché ROMANECHE THORINS", + "brand": "Intermarché" }, "71580002": { - "Nom": "MAXIMARCHE", - "Marque": "Maximarché" + "name": "MAXIMARCHE", + "brand": "Maximarché" }, "71600001": { - "Nom": "Relais Lagarde Paray Le Monial", - "Marque": "Total" + "name": "Relais Lagarde Paray Le Monial", + "brand": "Total" }, "71600003": { - "Nom": "SOFIPAR", - "Marque": "Leclerc" + "name": "SOFIPAR", + "brand": "Leclerc" }, "71600004": { - "Nom": "STATION SERVICE AVIA", - "Marque": "Avia" + "name": "STATION SERVICE AVIA", + "brand": "Avia" }, "71600005": { - "Nom": "Sarl rameau frères", - "Marque": "Total" + "name": "Sarl rameau frères", + "brand": "Total" }, "71600007": { - "Nom": "Intermarché PARAY LE MONIAL", - "Marque": "Intermarché" + "name": "Intermarché PARAY LE MONIAL", + "brand": "Intermarché" }, "71620001": { - "Nom": "MAXIMARCHE ST MARTIN EN BRESSE", - "Marque": "Maximarché" + "name": "MAXIMARCHE ST MARTIN EN BRESSE", + "brand": "Maximarché" }, "71620002": { - "Nom": "M. PETIOT PASCAL", - "Marque": "Total" + "name": "M. PETIOT PASCAL", + "brand": "Total" }, "71640002": { - "Nom": "GARAGE DUREUIL PATRICE", - "Marque": "Avia" + "name": "GARAGE DUREUIL PATRICE", + "brand": "Avia" }, "71640003": { - "Nom": "DATS GIVRY", - "Marque": "Colruyt" + "name": "DATS GIVRY", + "brand": "Colruyt" }, "71670001": { - "Nom": "LE-BREUIL-DIS", - "Marque": "Leclerc" + "name": "LE-BREUIL-DIS", + "brand": "Leclerc" }, "71680001": { - "Nom": "Carrefour CRECHES SUR SAONE", - "Marque": "Carrefour" + "name": "Carrefour CRECHES SUR SAONE", + "brand": "Carrefour" }, "71680002": { - "Nom": "J.P. PERRAUD STATION ESSO", - "Marque": "Esso" + "name": "J.P. PERRAUD STATION ESSO", + "brand": "Esso" }, "71700001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "71700005": { - "Nom": "AGIP TOURNUS RN6", - "Marque": "Agip" + "name": "AGIP TOURNUS RN6", + "brand": "Agip" }, "71700006": { - "Nom": "RELAIS PARIS SAVOIE", - "Marque": "Total Access" + "name": "RELAIS PARIS SAVOIE", + "brand": "Total Access" }, "71700007": { - "Nom": "LA STATION", - "Marque": "Total" + "name": "LA STATION", + "brand": "Total" }, "71800001": { - "Nom": "ATAC LA CLAYETTE", - "Marque": "Atac" + "name": "ATAC LA CLAYETTE", + "brand": "Atac" }, "71800002": { - "Nom": "Intermarché VARENNES SOUS DUN", - "Marque": "Intermarché" + "name": "Intermarché VARENNES SOUS DUN", + "brand": "Intermarché" }, "71800003": { - "Nom": "LE RELAIS CLAYETTOIS", - "Marque": "Indépendant sans enseigne" + "name": "LE RELAIS CLAYETTOIS", + "brand": "Indépendant sans enseigne" }, "71850001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "71850002": { - "Nom": "SARL GARAGE LAPIERRE", - "Marque": "Total" + "name": "SARL GARAGE LAPIERRE", + "brand": "Total" }, "71850004": { - "Nom": "AVIA XPRESS", - "Marque": "Avia" + "name": "AVIA XPRESS", + "brand": "Avia" }, "71880001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "71960001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "72000002": { - "Nom": "Carrefour Market Les Sablons", - "Marque": "Carrefour Market" + "name": "Carrefour Market Les Sablons", + "brand": "Carrefour Market" }, "72000003": { - "Nom": "Super U LE MANS LIBERATION", - "Marque": "Système U" + "name": "Super U LE MANS LIBERATION", + "brand": "Système U" }, "72000010": { - "Nom": "ETS JAMOIS LEPROUST", - "Marque": "Total" + "name": "ETS JAMOIS LEPROUST", + "brand": "Total" }, "72000012": { - "Nom": "Carrefour Le Mans", - "Marque": "Carrefour" + "name": "Carrefour Le Mans", + "brand": "Carrefour" }, "72000014": { - "Nom": "Intermarché LE MANS", - "Marque": "Intermarché" + "name": "Intermarché LE MANS", + "brand": "Intermarché" }, "72000015": { - "Nom": "Intermarché BEAUREGARD LE MANS", - "Marque": "Intermarché" + "name": "Intermarché BEAUREGARD LE MANS", + "brand": "Intermarché" }, "72000019": { - "Nom": "RELAIS LE MANS RHIN DANUBE", - "Marque": "Total Access" + "name": "RELAIS LE MANS RHIN DANUBE", + "brand": "Total Access" }, "72000020": { - "Nom": "RELAIS LE MANS BOLLEE", - "Marque": "Total Access" + "name": "RELAIS LE MANS BOLLEE", + "brand": "Total Access" }, "72000021": { - "Nom": "RELAIS FORESTERIE", - "Marque": "Total Access" + "name": "RELAIS FORESTERIE", + "brand": "Total Access" }, "72000022": { - "Nom": "ESSO", - "Marque": "Esso" + "name": "ESSO", + "brand": "Esso" }, "72016001": { - "Nom": "STATION E.LECLERC LE MANS", - "Marque": "Leclerc" + "name": "STATION E.LECLERC LE MANS", + "brand": "Leclerc" }, "72100001": { - "Nom": "Carrefour Market LA POINTE", - "Marque": "Carrefour Market" + "name": "Carrefour Market LA POINTE", + "brand": "Carrefour Market" }, "72100002": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "72100004": { - "Nom": "SARL GARAGE DE LA ROTONDE", - "Marque": "Total" + "name": "SARL GARAGE DE LA ROTONDE", + "brand": "Total" }, "72100012": { - "Nom": "RELAIS LE MANS JEAN MAC", - "Marque": "Total Access" + "name": "RELAIS LE MANS JEAN MAC", + "brand": "Total Access" }, "72100013": { - "Nom": "RELAIS DU BOL D'OR", - "Marque": "Total Access" + "name": "RELAIS DU BOL D'OR", + "brand": "Total Access" }, "72100014": { - "Nom": "RELAIS DE LA SARTHE", - "Marque": "Total Access" + "name": "RELAIS DE LA SARTHE", + "brand": "Total Access" }, "72110001": { - "Nom": "Super U BONNETABLE", - "Marque": "Système U" + "name": "Super U BONNETABLE", + "brand": "Système U" }, "72110002": { - "Nom": "Intermarché ST COSME EN VAIRAIS", - "Marque": "Intermarché" + "name": "Intermarché ST COSME EN VAIRAIS", + "brand": "Intermarché" }, "72110003": { - "Nom": "ESSO -GARAGE DE LA FORET", - "Marque": "ESSO" + "name": "ESSO -GARAGE DE LA FORET", + "brand": "ESSO" }, "72120001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "72120003": { - "Nom": "SARL GGE DE LA CROIX DE PIERRE", - "Marque": "Total" + "name": "SARL GGE DE LA CROIX DE PIERRE", + "brand": "Total" }, "72120004": { - "Nom": "SARL GARAGE ROQUAIN", - "Marque": "Elan" + "name": "SARL GARAGE ROQUAIN", + "brand": "Elan" }, "72120006": { - "Nom": "SAINT CALAIS AUTOMOBILES SARL", - "Marque": "Q8" + "name": "SAINT CALAIS AUTOMOBILES SARL", + "brand": "Q8" }, "72130001": { - "Nom": "Super U FRESNAY SUR SARTHE", - "Marque": "Système U" + "name": "Super U FRESNAY SUR SARTHE", + "brand": "Système U" }, "72130005": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "72140001": { - "Nom": "Super U ST REMY DE SILLE", - "Marque": "Système U" + "name": "Super U ST REMY DE SILLE", + "brand": "Système U" }, "72150002": { - "Nom": "Intermarché Le Grand-Lucé", - "Marque": "Intermarché" + "name": "Intermarché Le Grand-Lucé", + "brand": "Intermarché" }, "72160002": { - "Nom": "MARKET CONNERRE", - "Marque": "Carrefour Market" + "name": "MARKET CONNERRE", + "brand": "Carrefour Market" }, "72170001": { - "Nom": "Super U BEAUMONT S/SARTHE", - "Marque": "Système U" + "name": "Super U BEAUMONT S/SARTHE", + "brand": "Système U" }, "72170002": { - "Nom": "SARL R.CX VERTE", - "Marque": "Total" + "name": "SARL R.CX VERTE", + "brand": "Total" }, "72170004": { - "Nom": "POINT CARBURANT MARESCHE", - "Marque": "Total" + "name": "POINT CARBURANT MARESCHE", + "brand": "Total" }, "72190003": { - "Nom": "RELAIS SARTHE SARGE LE MANS SUD", - "Marque": "Total" + "name": "RELAIS SARTHE SARGE LE MANS SUD", + "brand": "Total" }, "72190004": { - "Nom": "RELAIS SARTHE SARGE LE MANS NORD", - "Marque": "Total" + "name": "RELAIS SARTHE SARGE LE MANS NORD", + "brand": "Total" }, "72200001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "72200003": { - "Nom": "MR BOUTTIER", - "Marque": "Total" + "name": "MR BOUTTIER", + "brand": "Total" }, "72200004": { - "Nom": "SOCOFLEC", - "Marque": "Leclerc" + "name": "SOCOFLEC", + "brand": "Leclerc" }, "72210001": { - "Nom": "Super U LA SUZE SUR SARTHE", - "Marque": "Système U" + "name": "Super U LA SUZE SUR SARTHE", + "brand": "Système U" }, "72220001": { - "Nom": "Hyper U ECOMMOY", - "Marque": "Système U" + "name": "Hyper U ECOMMOY", + "brand": "Système U" }, "72220002": { - "Nom": "SARL GLINCHE", - "Marque": "Total" + "name": "SARL GLINCHE", + "brand": "Total" }, "72220005": { - "Nom": "SA AUROIT", - "Marque": "Intermarché Contact" + "name": "SA AUROIT", + "brand": "Intermarché Contact" }, "72230002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "72230005": { - "Nom": "ESSO ST DENIS D ORQUES", - "Marque": "Esso" + "name": "ESSO ST DENIS D ORQUES", + "brand": "Esso" }, "72230006": { - "Nom": "SARL LMP ESSO", - "Marque": "Esso" + "name": "SARL LMP ESSO", + "brand": "Esso" }, "72230007": { - "Nom": "Super U ARNAGE", - "Marque": "Système U" + "name": "Super U ARNAGE", + "brand": "Système U" }, "72240001": { - "Nom": "Super U CONLIE", - "Marque": "Système U" + "name": "Super U CONLIE", + "brand": "Système U" }, "72250001": { - "Nom": "Super U PARIGNE L'EVEQUE", - "Marque": "Système U" + "name": "Super U PARIGNE L'EVEQUE", + "brand": "Système U" }, "72260001": { - "Nom": "U Express MAROLLES LES BRAULTS", - "Marque": "Système U" + "name": "U Express MAROLLES LES BRAULTS", + "brand": "Système U" }, "72300002": { - "Nom": "SARL DU PETIT ERABLE", - "Marque": "Total" + "name": "SARL DU PETIT ERABLE", + "brand": "Total" }, "72300003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "72300004": { - "Nom": "SIGREST PARCE EST", - "Marque": "Shell" + "name": "SIGREST PARCE EST", + "brand": "Shell" }, "72300005": { - "Nom": "SIGREST PARCE OUEST", - "Marque": "Shell" + "name": "SIGREST PARCE OUEST", + "brand": "Shell" }, "72300006": { - "Nom": "Super U SABLE SUR SARTHE", - "Marque": "Système U" + "name": "Super U SABLE SUR SARTHE", + "brand": "Système U" }, "72300007": { - "Nom": "SABLE-DISTRIBUTION", - "Marque": "Leclerc" + "name": "SABLE-DISTRIBUTION", + "brand": "Leclerc" }, "72301001": { - "Nom": "ALTEAM", - "Marque": "Total" + "name": "ALTEAM", + "brand": "Total" }, "72310001": { - "Nom": "Super U BESSE SUR BRAYE", - "Marque": "Système U" + "name": "Super U BESSE SUR BRAYE", + "brand": "Système U" }, "72330001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "72340001": { - "Nom": "Super U LA CHARTRE SUR LE LOIR", - "Marque": "Système U" + "name": "Super U LA CHARTRE SUR LE LOIR", + "brand": "Système U" }, "72350001": { - "Nom": "SARL COMPAIN", - "Marque": "Total" + "name": "SARL COMPAIN", + "brand": "Total" }, "72360001": { - "Nom": "spar", - "Marque": "Supermarchés Spar" + "name": "spar", + "brand": "Supermarchés Spar" }, "72380001": { - "Nom": "Super U STE JAMME SUR SARTHE", - "Marque": "Système U" + "name": "Super U STE JAMME SUR SARTHE", + "brand": "Système U" }, "72400001": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "72400002": { - "Nom": "Total Access", - "Marque": "Total Access" + "name": "Total Access", + "brand": "Total Access" }, "72400005": { - "Nom": "Station Avia Opel La Ferté Bernard", - "Marque": "Avia" + "name": "Station Avia Opel La Ferté Bernard", + "brand": "Avia" }, "72400006": { - "Nom": "FIFERDIS SA", - "Marque": "Leclerc" + "name": "FIFERDIS SA", + "brand": "Leclerc" }, "72400014": { - "Nom": "AGIP A11 LA FERTE BERNARD", - "Marque": "Agip" + "name": "AGIP A11 LA FERTE BERNARD", + "brand": "Agip" }, "72400016": { - "Nom": "AGIP A11 VILLAINES LA GONAIS", - "Marque": "Agip" + "name": "AGIP A11 VILLAINES LA GONAIS", + "brand": "Agip" }, "72430002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "72440001": { - "Nom": "Super U BOULOIRE", - "Marque": "Système U" + "name": "Super U BOULOIRE", + "brand": "Système U" }, "72440002": { - "Nom": "EOR GGE LAUDE C&M -BOULOIRE", - "Marque": "Total" + "name": "EOR GGE LAUDE C&M -BOULOIRE", + "brand": "Total" }, "72450001": { - "Nom": "Super U MONTFORT LE GESNOIS", - "Marque": "Système U" + "name": "Super U MONTFORT LE GESNOIS", + "brand": "Système U" }, "72460002": { - "Nom": "CASINO SAVIGNE", - "Marque": "Casino" + "name": "CASINO SAVIGNE", + "brand": "Casino" }, "72460004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "72470004": { - "Nom": "RELAIS CHAMPAGNE LES FOSSES", - "Marque": "Total Access" + "name": "RELAIS CHAMPAGNE LES FOSSES", + "brand": "Total Access" }, "72470005": { - "Nom": "Intermarché", - "Marque": "Intermarché Contact" + "name": "Intermarché", + "brand": "Intermarché Contact" }, "72500001": { - "Nom": "SOCADIS", - "Marque": "Leclerc" + "name": "SOCADIS", + "brand": "Leclerc" }, "72500002": { - "Nom": "RSA Station Shell", - "Marque": "Shell" + "name": "RSA Station Shell", + "brand": "Shell" }, "72500004": { - "Nom": "Intermarché SAS SOLKERO", - "Marque": "Intermarché" + "name": "Intermarché SAS SOLKERO", + "brand": "Intermarché" }, "72530001": { - "Nom": "SARL GARAGE DESSOMME", - "Marque": "Total" + "name": "SARL GARAGE DESSOMME", + "brand": "Total" }, "72540001": { - "Nom": "SARL PHILLYNE", - "Marque": "Shopi" + "name": "SARL PHILLYNE", + "brand": "Shopi" }, "72540002": { - "Nom": "Super U Mareil-en-Champagne", - "Marque": "Système U" + "name": "Super U Mareil-en-Champagne", + "brand": "Système U" }, "72550002": { - "Nom": "Total CHAUFOUR AUTOMOBILES", - "Marque": "Total" + "name": "Total CHAUFOUR AUTOMOBILES", + "brand": "Total" }, "72560001": { - "Nom": "Super U CHANGE", - "Marque": "Système U" + "name": "Super U CHANGE", + "brand": "Système U" }, "72600001": { - "Nom": "Super U MAMERS", - "Marque": "Système U" + "name": "Super U MAMERS", + "brand": "Système U" }, "72600002": { - "Nom": "Intermarché ST REMY DES MONTS", - "Marque": "Intermarché" + "name": "Intermarché ST REMY DES MONTS", + "brand": "Intermarché" }, "72610001": { - "Nom": "SA ALENCON DISTRIBUTION", - "Marque": "Leclerc" + "name": "SA ALENCON DISTRIBUTION", + "brand": "Leclerc" }, "72650001": { - "Nom": "STATION SERVICE AUCHAN", - "Marque": "Auchan" + "name": "STATION SERVICE AUCHAN", + "brand": "Auchan" }, "72650002": { - "Nom": "GARAGE PICAULT", - "Marque": "Total" + "name": "GARAGE PICAULT", + "brand": "Total" }, "72700002": { - "Nom": "ALLECDIS", - "Marque": "Leclerc" + "name": "ALLECDIS", + "brand": "Leclerc" }, "72800001": { - "Nom": "SARL GARAGE CHARPENTIER", - "Marque": "Total" + "name": "SARL GARAGE CHARPENTIER", + "brand": "Total" }, "72800002": { - "Nom": "Intermarché LE LUDE", - "Marque": "Intermarché" + "name": "Intermarché LE LUDE", + "brand": "Intermarché" }, "73000001": { - "Nom": "Carrefour BASSENS", - "Marque": "Carrefour" + "name": "Carrefour BASSENS", + "brand": "Carrefour" }, "73000002": { - "Nom": "Carrefour CHAMNORD", - "Marque": "Carrefour" + "name": "Carrefour CHAMNORD", + "brand": "Carrefour" }, "73000007": { - "Nom": "ESSO DU GRAND VERGER", - "Marque": "Esso Express" + "name": "ESSO DU GRAND VERGER", + "brand": "Esso Express" }, "73000009": { - "Nom": "RELAIS DE LA LEYSSE", - "Marque": "Avia" + "name": "RELAIS DE LA LEYSSE", + "brand": "Avia" }, "73000010": { - "Nom": "LECLERC", - "Marque": "Leclerc" + "name": "LECLERC", + "brand": "Leclerc" }, "73000012": { - "Nom": "RELAIS CHAMBERY", - "Marque": "Total Access" + "name": "RELAIS CHAMBERY", + "brand": "Total Access" }, "73000013": { - "Nom": "RELAIS REVERIAZ", - "Marque": "Total Access" + "name": "RELAIS REVERIAZ", + "brand": "Total Access" }, "73000014": { - "Nom": "RELAIS LE BOURGET CHAMBERY", - "Marque": "Total Access" + "name": "RELAIS LE BOURGET CHAMBERY", + "brand": "Total Access" }, "73024001": { - "Nom": "S A T M", - "Marque": "Indépendant sans enseigne" + "name": "S A T M", + "brand": "Indépendant sans enseigne" }, "73100001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "73100003": { - "Nom": "RELAIS DES SOURCES", - "Marque": "Total" + "name": "RELAIS DES SOURCES", + "brand": "Total" }, "73100005": { - "Nom": "ESSO ROND POINT", - "Marque": "Esso Express" + "name": "ESSO ROND POINT", + "brand": "Esso Express" }, "73100008": { - "Nom": "Intermarché VAL CENIS", - "Marque": "Intermarché" + "name": "Intermarché VAL CENIS", + "brand": "Intermarché" }, "73100012": { - "Nom": "RELAIS Total LAMARTINE", - "Marque": "Total" + "name": "RELAIS Total LAMARTINE", + "brand": "Total" }, "73110002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "73110003": { - "Nom": "SUPER U DETRIER", - "Marque": "Système U" + "name": "SUPER U DETRIER", + "brand": "Système U" }, "73120001": { - "Nom": "GARAGE DU GRAND PONT", - "Marque": "Elan" + "name": "GARAGE DU GRAND PONT", + "brand": "Elan" }, "73120002": { - "Nom": "COURCHEVEL AUTOS SERVICES", - "Marque": "Avia" + "name": "COURCHEVEL AUTOS SERVICES", + "brand": "Avia" }, "73130002": { - "Nom": "Intermarché SAINT ETIENNE CUINES", - "Marque": "Intermarché" + "name": "Intermarché SAINT ETIENNE CUINES", + "brand": "Intermarché" }, "73130003": { - "Nom": "ETS ARLAUD STATION ELAN", - "Marque": "Elan" + "name": "ETS ARLAUD STATION ELAN", + "brand": "Elan" }, "73140001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "73140003": { - "Nom": "SMG AUTOMOBILE", - "Marque": "Elan" + "name": "SMG AUTOMOBILE", + "brand": "Elan" }, "73140007": { - "Nom": "AGIP A43 SENS ALBERTILLIE TURIN AIRE ST MICHEL DE MAURIENNE", - "Marque": "Agip" + "name": "AGIP A43 SENS ALBERTILLIE TURIN AIRE ST MICHEL DE MAURIENNE", + "brand": "Agip" }, "73150002": { - "Nom": "Hypervalimmo", - "Marque": "Elan" + "name": "Hypervalimmo", + "brand": "Elan" }, "73160002": { - "Nom": "SAS SUPER EPINE", - "Marque": "Système U" + "name": "SAS SUPER EPINE", + "brand": "Système U" }, "73160003": { - "Nom": "LECLERC AIME LA PLAGNE", - "Marque": "Leclerc" + "name": "LECLERC AIME LA PLAGNE", + "brand": "Leclerc" }, "73170001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "73182002": { - "Nom": "AGIP MOUXY A41 SENS CHAMBERY ANNECY", - "Marque": "Agip" + "name": "AGIP MOUXY A41 SENS CHAMBERY ANNECY", + "brand": "Agip" }, "73190001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "73190002": { - "Nom": "BP A43 AIRE DE L'ABIS", - "Marque": "BP" + "name": "BP A43 AIRE DE L'ABIS", + "brand": "BP" }, "73200001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "73200002": { - "Nom": "PIERRE DU ROY", - "Marque": "Carrefour Market" + "name": "PIERRE DU ROY", + "brand": "Carrefour Market" }, "73200003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "73200005": { - "Nom": "Intermarché ALBERTVILLE", - "Marque": "Intermarché" + "name": "Intermarché ALBERTVILLE", + "brand": "Intermarché" }, "73200006": { - "Nom": "RELAIS ALBERTVILLE LES CHASSEURS", - "Marque": "Total Access" + "name": "RELAIS ALBERTVILLE LES CHASSEURS", + "brand": "Total Access" }, "73202001": { - "Nom": "DVSA", - "Marque": "Total" + "name": "DVSA", + "brand": "Total" }, "73204001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "73220002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "73230001": { - "Nom": "AVIA ST ALBAN LEYSSE", - "Marque": "Avia" + "name": "AVIA ST ALBAN LEYSSE", + "brand": "Avia" }, "73240001": { - "Nom": "SA FAGLE", - "Marque": "Netto" + "name": "SA FAGLE", + "brand": "Netto" }, "73250001": { - "Nom": "SAS SAVOT Intermarché", - "Marque": "Intermarché" + "name": "SAS SAVOT Intermarché", + "brand": "Intermarché" }, "73260001": { - "Nom": "SUPER SAS CHARDIS", - "Marque": "Système U" + "name": "SUPER SAS CHARDIS", + "brand": "Système U" }, "73270001": { - "Nom": "Intermarché VILLARD S/ DORON", - "Marque": "Intermarché" + "name": "Intermarché VILLARD S/ DORON", + "brand": "Intermarché" }, "73290001": { - "Nom": "STATION U SUPER U la motte sevolex", - "Marque": "Système U" + "name": "STATION U SUPER U la motte sevolex", + "brand": "Système U" }, "73290004": { - "Nom": "AGIP LA MOTTE SERVOLEX", - "Marque": "Eni France" + "name": "AGIP LA MOTTE SERVOLEX", + "brand": "Eni France" }, "73300001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "73300002": { - "Nom": "AGIP ST JEAN DE MAURIENNE ZC LES PLANS", - "Marque": "Agip" + "name": "AGIP ST JEAN DE MAURIENNE ZC LES PLANS", + "brand": "Agip" }, "73300004": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "73300005": { - "Nom": "ELAN - Le Corbier", - "Marque": "Elan" + "name": "ELAN - Le Corbier", + "brand": "Elan" }, "73310002": { - "Nom": "SAS RUFFIEUX DISTRIBUTION", - "Marque": "Système U" + "name": "SAS RUFFIEUX DISTRIBUTION", + "brand": "Système U" }, "73320002": { - "Nom": "STATION SERVICE AVIA", - "Marque": "Avia" + "name": "STATION SERVICE AVIA", + "brand": "Avia" }, "73330001": { - "Nom": "SAS JONELDIS Hyper U", - "Marque": "Système U" + "name": "SAS JONELDIS Hyper U", + "brand": "Système U" }, "73330002": { - "Nom": "Intermarché PONT DE BEAUVOISIN", - "Marque": "Intermarché" + "name": "Intermarché PONT DE BEAUVOISIN", + "brand": "Intermarché" }, "73370001": { - "Nom": "SARL GARAGE MINIGGIO", - "Marque": "Indépendant sans enseigne" + "name": "SARL GARAGE MINIGGIO", + "brand": "Indépendant sans enseigne" }, "73390007": { - "Nom": "AGIP AIRE ARCLUSAZ A43 SENS TUNNEL FREJUS-CHAMBERY", - "Marque": "Agip" + "name": "AGIP AIRE ARCLUSAZ A43 SENS TUNNEL FREJUS-CHAMBERY", + "brand": "Agip" }, "73390008": { - "Nom": "AGIP VAL GELON A43 SENS CHAMBERY TURIN", - "Marque": "Agip" + "name": "AGIP VAL GELON A43 SENS CHAMBERY TURIN", + "brand": "Agip" }, "73400001": { - "Nom": "RELAIS LA SAVOYARDE", - "Marque": "Elan" + "name": "RELAIS LA SAVOYARDE", + "brand": "Elan" }, "73400003": { - "Nom": "Carrefour MARKET UGINE", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET UGINE", + "brand": "Carrefour Market" }, "73400004": { - "Nom": "SAS LES CYGNES Leader Price", - "Marque": "Leader Price" + "name": "SAS LES CYGNES Leader Price", + "brand": "Leader Price" }, "73410001": { - "Nom": "Intermarché LA BIOLLE", - "Marque": "Intermarché" + "name": "Intermarché LA BIOLLE", + "brand": "Intermarché" }, "73420001": { - "Nom": "SAS DRUMEDIS", - "Marque": "Leclerc" + "name": "SAS DRUMEDIS", + "brand": "Leclerc" }, "73420002": { - "Nom": "Intermarché VIVIERS DU LAC", - "Marque": "Intermarché" + "name": "Intermarché VIVIERS DU LAC", + "brand": "Intermarché" }, "73420004": { - "Nom": "Leclerc Drive", - "Marque": "Leclerc" + "name": "Leclerc Drive", + "brand": "Leclerc" }, "73420005": { - "Nom": "RELAIS DE DRUMETTAZ", - "Marque": "Total" + "name": "RELAIS DE DRUMETTAZ", + "brand": "Total" }, "73460002": { - "Nom": "Intermarché TOURNON", - "Marque": "Intermarché" + "name": "Intermarché TOURNON", + "brand": "Intermarché" }, "73460003": { - "Nom": "NETTO FRONTENEX", - "Marque": "Netto" + "name": "NETTO FRONTENEX", + "brand": "Netto" }, "73470001": { - "Nom": "TARDY MARIE THERESE", - "Marque": "Avia" + "name": "TARDY MARIE THERESE", + "brand": "Avia" }, "73480001": { - "Nom": "GARAGE BURDIN FRERES AVIA", - "Marque": "Avia" + "name": "GARAGE BURDIN FRERES AVIA", + "brand": "Avia" }, "73490002": { - "Nom": "SAS SUPER GRANIER", - "Marque": "Système U" + "name": "SAS SUPER GRANIER", + "brand": "Système U" }, "73490003": { - "Nom": "RELAIS DE LA RAVOIRE", - "Marque": "Total Access" + "name": "RELAIS DE LA RAVOIRE", + "brand": "Total Access" }, "73500002": { - "Nom": "EURL HARAN CHRISTOPHE", - "Marque": "Shell" + "name": "EURL HARAN CHRISTOPHE", + "brand": "Shell" }, "73500004": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "73500005": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "73540002": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "73540003": { - "Nom": "Relais de tarentaise", - "Marque": "Elan" + "name": "Relais de tarentaise", + "brand": "Elan" }, "73600002": { - "Nom": "STATION U SALINS", - "Marque": "Système U" + "name": "STATION U SALINS", + "brand": "Système U" }, "73600006": { - "Nom": "RELAIS DU DORON", - "Marque": "Total Access" + "name": "RELAIS DU DORON", + "brand": "Total Access" }, "73600007": { - "Nom": "AGIP SALINS AV DES THERMES", - "Marque": "Agip" + "name": "AGIP SALINS AV DES THERMES", + "brand": "Agip" }, "73610002": { - "Nom": "BPC GARAGE", - "Marque": "Avia" + "name": "BPC GARAGE", + "brand": "Avia" }, "73630003": { - "Nom": "Carrefour Contact Le Chatelard", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact Le Chatelard", + "brand": "Carrefour Contact" }, "73700001": { - "Nom": "SODIBAL SAS", - "Marque": "Système U" + "name": "SODIBAL SAS", + "brand": "Système U" }, "73700005": { - "Nom": "Intermarché BOURG ST MAURICE", - "Marque": "Intermarché" + "name": "Intermarché BOURG ST MAURICE", + "brand": "Intermarché" }, "73730006": { - "Nom": "AGIP CEVINS RN90", - "Marque": "Agip" + "name": "AGIP CEVINS RN90", + "brand": "Agip" }, "73800001": { - "Nom": "BP A41 AIRE DU GRANIER", - "Marque": "BP" + "name": "BP A41 AIRE DU GRANIER", + "brand": "BP" }, "73800002": { - "Nom": "SA SODISAL", - "Marque": "Système U" + "name": "SA SODISAL", + "brand": "Système U" }, "73800003": { - "Nom": "RELAIS DU GRANIER", - "Marque": "Elan" + "name": "RELAIS DU GRANIER", + "brand": "Elan" }, "73800005": { - "Nom": "Intermarché MONTMELIAN", - "Marque": "Intermarché" + "name": "Intermarché MONTMELIAN", + "brand": "Intermarché" }, "73870003": { - "Nom": "Dyneff Saint-Julien-Mont-Denis", - "Marque": "Dyneff" + "name": "Dyneff Saint-Julien-Mont-Denis", + "brand": "Dyneff" }, "74000002": { - "Nom": "Carrefour annecy", - "Marque": "Carrefour" + "name": "Carrefour annecy", + "brand": "Carrefour" }, "74000004": { - "Nom": "ESSO NOVEL", - "Marque": "Esso Express" + "name": "ESSO NOVEL", + "brand": "Esso Express" }, "74000007": { - "Nom": "Intermarché ANNECY", - "Marque": "Intermarché" + "name": "Intermarché ANNECY", + "brand": "Intermarché" }, "74000010": { - "Nom": "AGIP annecy avenue de chambery", - "Marque": "Agip" + "name": "AGIP annecy avenue de chambery", + "brand": "Agip" }, "74000014": { - "Nom": "RELAIS DES ALLUEGES", - "Marque": "Total Access" + "name": "RELAIS DES ALLUEGES", + "brand": "Total Access" }, "74000017": { - "Nom": "AGIP ANNECY ALLUEGES", - "Marque": "Agip" + "name": "AGIP ANNECY ALLUEGES", + "brand": "Agip" }, "74100001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "74100005": { - "Nom": "ESSO DES VALLEES", - "Marque": "Esso Express" + "name": "ESSO DES VALLEES", + "brand": "Esso Express" }, "74100007": { - "Nom": "VILLE LA DIS. STATION LECLERC", - "Marque": "Leclerc" + "name": "VILLE LA DIS. STATION LECLERC", + "brand": "Leclerc" }, "74100008": { - "Nom": "Intermarché VETRAZ MONTHOUX", - "Marque": "Intermarché" + "name": "Intermarché VETRAZ MONTHOUX", + "brand": "Intermarché" }, "74100009": { - "Nom": "STATION DU MONT BLANC", - "Marque": "Elan" + "name": "STATION DU MONT BLANC", + "brand": "Elan" }, "74100010": { - "Nom": "RELAIS DE CHAMARETTE", - "Marque": "Total" + "name": "RELAIS DE CHAMARETTE", + "brand": "Total" }, "74100011": { - "Nom": "RELAIS LES VOIRONS", - "Marque": "Total" + "name": "RELAIS LES VOIRONS", + "brand": "Total" }, "74110001": { - "Nom": "RELAIS DU PLENEY", - "Marque": "Avia" + "name": "RELAIS DU PLENEY", + "brand": "Avia" }, "74120003": { - "Nom": "CASINO CARBURANT", - "Marque": "Casino" + "name": "CASINO CARBURANT", + "brand": "Casino" }, "74120004": { - "Nom": "Intermarché PRAZ SUR ARLY", - "Marque": "Intermarché" + "name": "Intermarché PRAZ SUR ARLY", + "brand": "Intermarché" }, "74120006": { - "Nom": "RELAIS PRAILLE", - "Marque": "Total" + "name": "RELAIS PRAILLE", + "brand": "Total" }, "74130001": { - "Nom": "MARKET BONNEVILLE", - "Marque": "Carrefour Market" + "name": "MARKET BONNEVILLE", + "brand": "Carrefour Market" }, "74130004": { - "Nom": "EURL HARAN CHRISTOPHE", - "Marque": "Shell" + "name": "EURL HARAN CHRISTOPHE", + "brand": "Shell" }, "74130006": { - "Nom": "Intermarché BONNEVILLE", - "Marque": "Intermarché" + "name": "Intermarché BONNEVILLE", + "brand": "Intermarché" }, "74130013": { - "Nom": "EURL HARAN CHRISTOPHE", - "Marque": "Shell" + "name": "EURL HARAN CHRISTOPHE", + "brand": "Shell" }, "74140001": { - "Nom": "BI1 VEIGY FONCENEX", - "Marque": "BI1" + "name": "BI1 VEIGY FONCENEX", + "brand": "BI1" }, "74140002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "74140003": { - "Nom": "SA LOIDIS Super U", - "Marque": "Système U" + "name": "SA LOIDIS Super U", + "brand": "Système U" }, "74140004": { - "Nom": "Leclerc", - "Marque": "Leclerc" + "name": "Leclerc", + "brand": "Leclerc" }, "74140005": { - "Nom": "SAS LUCY", - "Marque": "Intermarché" + "name": "SAS LUCY", + "brand": "Intermarché" }, "74150002": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "74150003": { - "Nom": "Intermarché RUMILLY", - "Marque": "Intermarché" + "name": "Intermarché RUMILLY", + "brand": "Intermarché" }, "74160001": { - "Nom": "Intermarché ST JULIEN EN GENEVOI", - "Marque": "Intermarché" + "name": "Intermarché ST JULIEN EN GENEVOI", + "brand": "Intermarché" }, "74170001": { - "Nom": "GARAGE GRANDJACQUES", - "Marque": "Total" + "name": "GARAGE GRANDJACQUES", + "brand": "Total" }, "74180001": { - "Nom": "Intermarché SAINT JEOIRE - SAS ODYSSEE", - "Marque": "Intermarché" + "name": "Intermarché SAINT JEOIRE - SAS ODYSSEE", + "brand": "Intermarché" }, "74190003": { - "Nom": "SUPER U PASSY", - "Marque": "Système U" + "name": "SUPER U PASSY", + "brand": "Système U" }, "74190005": { - "Nom": "SARL PEAXAA AVIA PASSY LE FAYET", - "Marque": "Avia" + "name": "SARL PEAXAA AVIA PASSY LE FAYET", + "brand": "Avia" }, "74200002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "74200003": { - "Nom": "Carrefour MARGENCEL", - "Marque": "Carrefour" + "name": "Carrefour MARGENCEL", + "brand": "Carrefour" }, "74200005": { - "Nom": "EUROFLASH STATION", - "Marque": "Total" + "name": "EUROFLASH STATION", + "brand": "Total" }, "74200006": { - "Nom": "ESSO BONNE RENCONTRE 2", - "Marque": "Esso Express" + "name": "ESSO BONNE RENCONTRE 2", + "brand": "Esso Express" }, "74200014": { - "Nom": "Intermarché DB ALLINGES", - "Marque": "Intermarché" + "name": "Intermarché DB ALLINGES", + "brand": "Intermarché" }, "74200015": { - "Nom": "AGIP THONON LES BAINS", - "Marque": "Agip" + "name": "AGIP THONON LES BAINS", + "brand": "Agip" }, "74200016": { - "Nom": "SAS LEMAN DAITOMI", - "Marque": "Intermarché" + "name": "SAS LEMAN DAITOMI", + "brand": "Intermarché" }, "74200017": { - "Nom": "STATION SERVICE DES VALLEES", - "Marque": "Avia" + "name": "STATION SERVICE DES VALLEES", + "brand": "Avia" }, "74210001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "74210002": { - "Nom": "STATION 508", - "Marque": "Avia" + "name": "STATION 508", + "brand": "Avia" }, "74210003": { - "Nom": "Intermarché FAVERGES", - "Marque": "Intermarché" + "name": "Intermarché FAVERGES", + "brand": "Intermarché" }, "74220001": { - "Nom": "GARAGE DU ROCHER", - "Marque": "Elan" + "name": "GARAGE DU ROCHER", + "brand": "Elan" }, "74230004": { - "Nom": "Intermarché VILLARDS SUR THONES", - "Marque": "Intermarché" + "name": "Intermarché VILLARDS SUR THONES", + "brand": "Intermarché" }, "74230006": { - "Nom": "Station des Aravis", - "Marque": "Avia" + "name": "Station des Aravis", + "brand": "Avia" }, "74230007": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "74240001": { - "Nom": "Intermarché GAILLARD", - "Marque": "Intermarché" + "name": "Intermarché GAILLARD", + "brand": "Intermarché" }, "74250001": { - "Nom": "GUEBEY PIERRE", - "Marque": "Total" + "name": "GUEBEY PIERRE", + "brand": "Total" }, "74250003": { - "Nom": "SAS BAILLEUL Pierre", - "Marque": "Avia" + "name": "SAS BAILLEUL Pierre", + "brand": "Avia" }, "74260002": { - "Nom": "ELAN", - "Marque": "Elan" + "name": "ELAN", + "brand": "Elan" }, "74270001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "74290002": { - "Nom": "GARAGE NYCOLLIN", - "Marque": "Total" + "name": "GARAGE NYCOLLIN", + "brand": "Total" }, "74300001": { - "Nom": "Carrefour CLUSES", - "Marque": "Carrefour" + "name": "Carrefour CLUSES", + "brand": "Carrefour" }, "74300003": { - "Nom": "ESSO CLUSES", - "Marque": "Esso Express" + "name": "ESSO CLUSES", + "brand": "Esso Express" }, "74300004": { - "Nom": "Intermarché THYEZ", - "Marque": "Intermarché" + "name": "Intermarché THYEZ", + "brand": "Intermarché" }, "74300008": { - "Nom": "BP EXPRESS CLUSES LA MALADIERE", - "Marque": "BP Express" + "name": "BP EXPRESS CLUSES LA MALADIERE", + "brand": "BP Express" }, "74300009": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "74300010": { - "Nom": "SPAR SUPERMARCHE", - "Marque": "Supermarchés Spar" + "name": "SPAR SUPERMARCHE", + "brand": "Supermarchés Spar" }, "74302001": { - "Nom": "LARRIVAZ SAS", - "Marque": "Total" + "name": "LARRIVAZ SAS", + "brand": "Total" }, "74310002": { - "Nom": "SUPER U LES HOUCHES", - "Marque": "Système U" + "name": "SUPER U LES HOUCHES", + "brand": "Système U" }, "74310003": { - "Nom": "RELAIS HOUCHES NORD", - "Marque": "Total" + "name": "RELAIS HOUCHES NORD", + "brand": "Total" }, "74320001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "74320005": { - "Nom": "Avia", - "Marque": "Avia" + "name": "Avia", + "brand": "Avia" }, "74330001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "74330002": { - "Nom": "RELAIS D'EPAGNY", - "Marque": "Elan" + "name": "RELAIS D'EPAGNY", + "brand": "Elan" }, "74330003": { - "Nom": "Garage de la mandallaz", - "Marque": "Avia" + "name": "Garage de la mandallaz", + "brand": "Avia" }, "74340001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "74350003": { - "Nom": "Station esso", - "Marque": "Esso" + "name": "Station esso", + "brand": "Esso" }, "74350004": { - "Nom": "SARL DETAILLIE", - "Marque": "Avia" + "name": "SARL DETAILLIE", + "brand": "Avia" }, "74360002": { - "Nom": "Intermarché LA CHAPELLE D'ABONDA", - "Marque": "Intermarché" + "name": "Intermarché LA CHAPELLE D'ABONDA", + "brand": "Intermarché" }, "74360004": { - "Nom": "SARL VAL GARAGE", - "Marque": "Avia" + "name": "SARL VAL GARAGE", + "brand": "Avia" }, "74370001": { - "Nom": "STATION DURET", - "Marque": "Total" + "name": "STATION DURET", + "brand": "Total" }, "74370003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "74380001": { - "Nom": "Station SUPER U - BONNE", - "Marque": "Système U" + "name": "Station SUPER U - BONNE", + "brand": "Système U" }, "74400001": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "74420001": { - "Nom": "STATION VALLEE VERTE", - "Marque": "Avia" + "name": "STATION VALLEE VERTE", + "brand": "Avia" }, "74430001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "74440001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "74440002": { - "Nom": "SARL CEZANNE-BERT", - "Marque": "Avia" + "name": "SARL CEZANNE-BERT", + "brand": "Avia" }, "74450001": { - "Nom": "SARL GGE PERGOD", - "Marque": "Total" + "name": "SARL GGE PERGOD", + "brand": "Total" }, "74500001": { - "Nom": "AMPHION", - "Marque": "CORA" + "name": "AMPHION", + "brand": "CORA" }, "74500002": { - "Nom": "Carrefour FECAMP", - "Marque": "Carrefour" + "name": "Carrefour FECAMP", + "brand": "Carrefour" }, "74500003": { - "Nom": "SUPER U VINZIER", - "Marque": "Système U" + "name": "SUPER U VINZIER", + "brand": "Système U" }, "74500005": { - "Nom": "Intermarché LUGRIN", - "Marque": "Intermarché" + "name": "Intermarché LUGRIN", + "brand": "Intermarché" }, "74500009": { - "Nom": "AGIP EVIAN AVENUE DE NOUAILLES", - "Marque": "Agip" + "name": "AGIP EVIAN AVENUE DE NOUAILLES", + "brand": "Agip" }, "74500010": { - "Nom": "Carrefour market EVIAN", - "Marque": "Carrefour Market" + "name": "Carrefour market EVIAN", + "brand": "Carrefour Market" }, "74520002": { - "Nom": "BP A40 AIRE DE VALLEIRY NORD", - "Marque": "BP" + "name": "BP A40 AIRE DE VALLEIRY NORD", + "brand": "BP" }, "74520004": { - "Nom": "SAS DORINE - Intermarché", - "Marque": "Intermarché" + "name": "SAS DORINE - Intermarché", + "brand": "Intermarché" }, "74520008": { - "Nom": "AVIA VALLEIRY", - "Marque": "Avia" + "name": "AVIA VALLEIRY", + "brand": "Avia" }, "74540001": { - "Nom": "SARL PROVENT", - "Marque": "Total" + "name": "SARL PROVENT", + "brand": "Total" }, "74540002": { - "Nom": "GARAGE GRANGER", - "Marque": "Elan" + "name": "GARAGE GRANGER", + "brand": "Elan" }, "74550001": { - "Nom": "AGD DEREMBLE", - "Marque": "Elan" + "name": "AGD DEREMBLE", + "brand": "Elan" }, "74570004": { - "Nom": "Carrefour MARKET GROISY", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET GROISY", + "brand": "Carrefour Market" }, "74570005": { - "Nom": "ESSO SERVICE GROISY", - "Marque": "Esso" + "name": "ESSO SERVICE GROISY", + "brand": "Esso" }, "74570007": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "74570008": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "74600001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "74600004": { - "Nom": "OSWIAK BERNARD", - "Marque": "Elan" + "name": "OSWIAK BERNARD", + "brand": "Elan" }, "74600008": { - "Nom": "Sarl Ets ALLEGRET", - "Marque": "Agip" + "name": "Sarl Ets ALLEGRET", + "brand": "Agip" }, "74600010": { - "Nom": "AVIA FONTANELLES", - "Marque": "Avia" + "name": "AVIA FONTANELLES", + "brand": "Avia" }, "74600011": { - "Nom": "ESSO SERVICE RIPAILEE", - "Marque": "Esso" + "name": "ESSO SERVICE RIPAILEE", + "brand": "Esso" }, "74600012": { - "Nom": "ESSO LA RIPAILLE", - "Marque": "Esso" + "name": "ESSO LA RIPAILLE", + "brand": "Esso" }, "74600013": { - "Nom": "REL. DE LA RIPAILLE", - "Marque": "Total" + "name": "REL. DE LA RIPAILLE", + "brand": "Total" }, "74700001": { - "Nom": "Carrefour SALLANCHES", - "Marque": "Carrefour" + "name": "Carrefour SALLANCHES", + "brand": "Carrefour" }, "74700003": { - "Nom": "Intermarché DOMANCY", - "Marque": "Intermarché" + "name": "Intermarché DOMANCY", + "brand": "Intermarché" }, "74700004": { - "Nom": "Garage DPA SARL", - "Marque": "Indépendant sans enseigne" + "name": "Garage DPA SARL", + "brand": "Indépendant sans enseigne" }, "74700005": { - "Nom": "RELAIS DU REPOSOIR", - "Marque": "Total Access" + "name": "RELAIS DU REPOSOIR", + "brand": "Total Access" }, "74800001": { - "Nom": "SA STAT. DU MOLE", - "Marque": "Total" + "name": "SA STAT. DU MOLE", + "brand": "Total" }, "74800002": { - "Nom": "ESSO DU BORNE", - "Marque": "Esso Express" + "name": "ESSO DU BORNE", + "brand": "Esso Express" }, "74800004": { - "Nom": "Intermarché AMANCY", - "Marque": "Intermarché" + "name": "Intermarché AMANCY", + "brand": "Intermarché" }, "74800005": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "74890001": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "74910003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "74920001": { - "Nom": "SAS BRONDEX RELAIS Total COMBLOUX", - "Marque": "Total" + "name": "SAS BRONDEX RELAIS Total COMBLOUX", + "brand": "Total" }, "74930001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "74930002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "74940002": { - "Nom": "RELAIS DES CARRES", - "Marque": "Total Access" + "name": "RELAIS DES CARRES", + "brand": "Total Access" }, "74950001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "74960001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "74960003": { - "Nom": "ESSO DE PARIS", - "Marque": "Esso Express" + "name": "ESSO DE PARIS", + "brand": "Esso Express" }, "74960005": { - "Nom": "LECLERC SODICRAN", - "Marque": "Leclerc" + "name": "LECLERC SODICRAN", + "brand": "Leclerc" }, "74960012": { - "Nom": "AGIP CRAN GEVRIER ROUTE DES CREUSES", - "Marque": "Agip" + "name": "AGIP CRAN GEVRIER ROUTE DES CREUSES", + "brand": "Agip" }, "74970001": { - "Nom": "SUPER U - SARL LES CLUS", - "Marque": "Système U" + "name": "SUPER U - SARL LES CLUS", + "brand": "Système U" }, "75001003": { - "Nom": "Halles garage sas", - "Marque": "Oil France" + "name": "Halles garage sas", + "brand": "Oil France" }, "75007003": { - "Nom": "Sarl GES Location Garage", - "Marque": "Avia" + "name": "Sarl GES Location Garage", + "brand": "Avia" }, "75007004": { - "Nom": "RELAIS DES INVALIDES", - "Marque": "Total" + "name": "RELAIS DES INVALIDES", + "brand": "Total" }, "75008006": { - "Nom": "AVIA HAUSSMANN", - "Marque": "Avia" + "name": "AVIA HAUSSMANN", + "brand": "Avia" }, "75008009": { - "Nom": "RELAIS CHAMPS ELYSEES", - "Marque": "Total" + "name": "RELAIS CHAMPS ELYSEES", + "brand": "Total" }, "75008010": { - "Nom": "RELAIS DE MALESHERBES", - "Marque": "Total" + "name": "RELAIS DE MALESHERBES", + "brand": "Total" }, "75010002": { - "Nom": "SARL JABY AVIA", - "Marque": "Shell" + "name": "SARL JABY AVIA", + "brand": "Shell" }, "75010003": { - "Nom": "ESSO LOUIS BLANC", - "Marque": "Esso Express" + "name": "ESSO LOUIS BLANC", + "brand": "Esso Express" }, "75010007": { - "Nom": "EXPRESS SERVICE STATION", - "Marque": "Elan" + "name": "EXPRESS SERVICE STATION", + "brand": "Elan" }, "75011003": { - "Nom": "Sarl delek", - "Marque": "Elan" + "name": "Sarl delek", + "brand": "Elan" }, "75012005": { - "Nom": "PARIS 12E", - "Marque": "Total" + "name": "PARIS 12E", + "brand": "Total" }, "75012007": { - "Nom": "SA GARAGES NATION", - "Marque": "Total" + "name": "SA GARAGES NATION", + "brand": "Total" }, "75012010": { - "Nom": "ESSO LYON RAPEE", - "Marque": "Esso Express" + "name": "ESSO LYON RAPEE", + "brand": "Esso Express" }, "75012020": { - "Nom": "RELAIS DE BERCY", - "Marque": "Total" + "name": "RELAIS DE BERCY", + "brand": "Total" }, "75012021": { - "Nom": "RELAIS DU BEL AIR", - "Marque": "Total" + "name": "RELAIS DU BEL AIR", + "brand": "Total" }, "75012023": { - "Nom": "AVIA REUILLY", - "Marque": "Avia" + "name": "AVIA REUILLY", + "brand": "Avia" }, "75013022": { - "Nom": "RELAIS ITALIE COTE B", - "Marque": "Total" + "name": "RELAIS ITALIE COTE B", + "brand": "Total" }, "75013023": { - "Nom": "RELAIS QUAI IVRY B", - "Marque": "Total" + "name": "RELAIS QUAI IVRY B", + "brand": "Total" }, "75013024": { - "Nom": "RELAIS PARIS BLD DE L HOPITAL", - "Marque": "Total" + "name": "RELAIS PARIS BLD DE L HOPITAL", + "brand": "Total" }, "75013025": { - "Nom": "RELAIS VINCENT AURIOL", - "Marque": "Total Access" + "name": "RELAIS VINCENT AURIOL", + "brand": "Total Access" }, "75013026": { - "Nom": "ESSO SERVICES TOLBIAC", - "Marque": "ESSO" + "name": "ESSO SERVICES TOLBIAC", + "brand": "ESSO" }, "75013028": { - "Nom": "BP PARKING JEANNE D'ARC", - "Marque": "BP" + "name": "BP PARKING JEANNE D'ARC", + "brand": "BP" }, "75014008": { - "Nom": "Sarl GES Location Garage", - "Marque": "Avia" + "name": "Sarl GES Location Garage", + "brand": "Avia" }, "75014010": { - "Nom": "RELAIS MAL LECLERC", - "Marque": "Total" + "name": "RELAIS MAL LECLERC", + "brand": "Total" }, "75014011": { - "Nom": "RELAIS PORTE DE CHATILLON", - "Marque": "Total" + "name": "RELAIS PORTE DE CHATILLON", + "brand": "Total" }, "75014012": { - "Nom": "RELAIS Total ALESIA", - "Marque": "Total" + "name": "RELAIS Total ALESIA", + "brand": "Total" }, "75015003": { - "Nom": "BP PARIS LECOURBE Carrefour EXPRESS", - "Marque": "BP" + "name": "BP PARIS LECOURBE Carrefour EXPRESS", + "brand": "BP" }, "75015011": { - "Nom": "ESSO FRERES VOISINS", - "Marque": "Esso Express" + "name": "ESSO FRERES VOISINS", + "brand": "Esso Express" }, "75015016": { - "Nom": "Avia lecourbe", - "Marque": "Avia" + "name": "Avia lecourbe", + "brand": "Avia" }, "75015023": { - "Nom": "SARL Anon", - "Marque": "Avia" + "name": "SARL Anon", + "brand": "Avia" }, "75015024": { - "Nom": "Anon", - "Marque": "Avia" + "name": "Anon", + "brand": "Avia" }, "75015025": { - "Nom": "RELAIS DE GRENELLE", - "Marque": "Total" + "name": "RELAIS DE GRENELLE", + "brand": "Total" }, "75015026": { - "Nom": "RELAIS PONT AVAL", - "Marque": "Total" + "name": "RELAIS PONT AVAL", + "brand": "Total" }, "75015028": { - "Nom": "RELAIS BUFFON", - "Marque": "Total" + "name": "RELAIS BUFFON", + "brand": "Total" }, "75015030": { - "Nom": "BP PARIS GARIGLIANO", - "Marque": "BP Express" + "name": "BP PARIS GARIGLIANO", + "brand": "BP Express" }, "75015031": { - "Nom": "BP PARIS MONTPARNASSE 8 à Huit", - "Marque": "BP" + "name": "BP PARIS MONTPARNASSE 8 à Huit", + "brand": "BP" }, "75016001": { - "Nom": "Carrefour Auteuil", - "Marque": "Carrefour" + "name": "Carrefour Auteuil", + "brand": "Carrefour" }, "75016006": { - "Nom": "SARL JABY", - "Marque": "Shell" + "name": "SARL JABY", + "brand": "Shell" }, "75016011": { - "Nom": "Sarl STATION KLEBER", - "Marque": "Avia" + "name": "Sarl STATION KLEBER", + "brand": "Avia" }, "75016013": { - "Nom": "BP AV DE VERSAILLES", - "Marque": "BP" + "name": "BP AV DE VERSAILLES", + "brand": "BP" }, "75016017": { - "Nom": "RELAIS PARIS PTE ST CLOUD", - "Marque": "Total" + "name": "RELAIS PARIS PTE ST CLOUD", + "brand": "Total" }, "75016019": { - "Nom": "AGIP PARIS MALAKOFF", - "Marque": "Agip" + "name": "AGIP PARIS MALAKOFF", + "brand": "Agip" }, "75016020": { - "Nom": "AGIP PARIS AV FOCH-ETOILE", - "Marque": "Agip" + "name": "AGIP PARIS AV FOCH-ETOILE", + "brand": "Agip" }, "75017017": { - "Nom": "RELAIS PARIS CLICHY", - "Marque": "Total" + "name": "RELAIS PARIS CLICHY", + "brand": "Total" }, "75017020": { - "Nom": "RELAIS PORTE SAINT OUEN", - "Marque": "Total" + "name": "RELAIS PORTE SAINT OUEN", + "brand": "Total" }, "75018003": { - "Nom": "BP PARIS PERIPHERIQUE EST", - "Marque": "BP" + "name": "BP PARIS PERIPHERIQUE EST", + "brand": "BP" }, "75018009": { - "Nom": "CCD", - "Marque": "Esso" + "name": "CCD", + "brand": "Esso" }, "75018012": { - "Nom": "RELAIS PORTE DE LA CHAPELLE", - "Marque": "Total" + "name": "RELAIS PORTE DE LA CHAPELLE", + "brand": "Total" }, "75018013": { - "Nom": "RELAIS PKG PARIS CLIGNANCOURT", - "Marque": "Total" + "name": "RELAIS PKG PARIS CLIGNANCOURT", + "brand": "Total" }, "75018014": { - "Nom": "RELAIS SAINT OUEN BICHAT", - "Marque": "Total" + "name": "RELAIS SAINT OUEN BICHAT", + "brand": "Total" }, "75019009": { - "Nom": "BP PARIS SIMON BOLIVAR 8 à Huit", - "Marque": "BP" + "name": "BP PARIS SIMON BOLIVAR 8 à Huit", + "brand": "BP" }, "75019013": { - "Nom": "RELAIS DU PERIPHERI.EXTERIEUR", - "Marque": "Total" + "name": "RELAIS DU PERIPHERI.EXTERIEUR", + "brand": "Total" }, "75019014": { - "Nom": "RELAIS PARIS 19", - "Marque": "Total" + "name": "RELAIS PARIS 19", + "brand": "Total" }, "75019015": { - "Nom": "RELAIS PARIS MANIN", - "Marque": "Total" + "name": "RELAIS PARIS MANIN", + "brand": "Total" }, "75019016": { - "Nom": "RELAIS PARIS CRIMEE", - "Marque": "Total" + "name": "RELAIS PARIS CRIMEE", + "brand": "Total" }, "75019017": { - "Nom": "RELAIS DES CHAUFOURNIERS", - "Marque": "Total" + "name": "RELAIS DES CHAUFOURNIERS", + "brand": "Total" }, "75020007": { - "Nom": "SRD", - "Marque": "Indépendant sans enseigne" + "name": "SRD", + "brand": "Indépendant sans enseigne" }, "75020008": { - "Nom": "RELAIS Total DAVOUT", - "Marque": "Total" + "name": "RELAIS Total DAVOUT", + "brand": "Total" }, "75020010": { - "Nom": "RELAIS MORTIER", - "Marque": "Total" + "name": "RELAIS MORTIER", + "brand": "Total" }, "75020011": { - "Nom": "RELAIS PORTE DE MONTREUIL", - "Marque": "Total" + "name": "RELAIS PORTE DE MONTREUIL", + "brand": "Total" }, "76000006": { - "Nom": "SARL Albik", - "Marque": "Avia" + "name": "SARL Albik", + "brand": "Avia" }, "76000007": { - "Nom": "ESSO DU MIN", - "Marque": "Esso Express" + "name": "ESSO DU MIN", + "brand": "Esso Express" }, "76000009": { - "Nom": "Intermarché ROUEN", - "Marque": "Intermarché" + "name": "Intermarché ROUEN", + "brand": "Intermarché" }, "76000012": { - "Nom": "RELAIS MONT RIBOUDET", - "Marque": "Total" + "name": "RELAIS MONT RIBOUDET", + "brand": "Total" }, "76000013": { - "Nom": "RELAIS ROUEN SAINT GILLES", - "Marque": "Total" + "name": "RELAIS ROUEN SAINT GILLES", + "brand": "Total" }, "76100003": { - "Nom": "SARL SIGESS", - "Marque": "Esso" + "name": "SARL SIGESS", + "brand": "Esso" }, "76100005": { - "Nom": "RELAIS ROUEN BD EUROPE", - "Marque": "Total" + "name": "RELAIS ROUEN BD EUROPE", + "brand": "Total" }, "76110001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76116003": { - "Nom": "Le Relais 31", - "Marque": "Total" + "name": "Le Relais 31", + "brand": "Total" }, "76120002": { - "Nom": "Hyper U", - "Marque": "Système U" + "name": "Hyper U", + "brand": "Système U" }, "76120008": { - "Nom": "RELAIS SAINTE LUCIE", - "Marque": "Total" + "name": "RELAIS SAINTE LUCIE", + "brand": "Total" }, "76120011": { - "Nom": "BP GRAND QUEVILLY DU GRAND LAUNAY", - "Marque": "BP" + "name": "BP GRAND QUEVILLY DU GRAND LAUNAY", + "brand": "BP" }, "76130001": { - "Nom": "ESSO LES COQUETS", - "Marque": "Esso Express" + "name": "ESSO LES COQUETS", + "brand": "Esso Express" }, "76131001": { - "Nom": "Carrefour MONT SAINT AIGNAN", - "Marque": "Carrefour" + "name": "Carrefour MONT SAINT AIGNAN", + "brand": "Carrefour" }, "76133001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76140001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76140002": { - "Nom": "LEADER PRICE", - "Marque": "Leader Price" + "name": "LEADER PRICE", + "brand": "Leader Price" }, "76150001": { - "Nom": "GERAULT", - "Marque": "Total" + "name": "GERAULT", + "brand": "Total" }, "76150002": { - "Nom": "ESSO LA VAUPALIERE", - "Marque": "Esso" + "name": "ESSO LA VAUPALIERE", + "brand": "Esso" }, "76150003": { - "Nom": "SAS MAROMMEDIS, Super U", - "Marque": "Système U" + "name": "SAS MAROMMEDIS, Super U", + "brand": "Système U" }, "76160001": { - "Nom": "SUPER U DARNETAL", - "Marque": "Système U" + "name": "SUPER U DARNETAL", + "brand": "Système U" }, "76160002": { - "Nom": "ESSO DARNETAL", - "Marque": "Esso Express" + "name": "ESSO DARNETAL", + "brand": "Esso Express" }, "76170002": { - "Nom": "Intermarché LILLEBONNE", - "Marque": "Intermarché" + "name": "Intermarché LILLEBONNE", + "brand": "Intermarché" }, "76176001": { - "Nom": "SAS CITADIS", - "Marque": "Leclerc" + "name": "SAS CITADIS", + "brand": "Leclerc" }, "76190001": { - "Nom": "SARL SYLDA", - "Marque": "Total" + "name": "SARL SYLDA", + "brand": "Total" }, "76190003": { - "Nom": "Intermarché SAINTE MARIE DES CHAMPS", - "Marque": "Intermarché" + "name": "Intermarché SAINTE MARIE DES CHAMPS", + "brand": "Intermarché" }, "76190005": { - "Nom": "SARL RELAIS DU ROY D'YVETOT", - "Marque": "RELAIS DU ROY" + "name": "SARL RELAIS DU ROY D'YVETOT", + "brand": "RELAIS DU ROY" }, "76191001": { - "Nom": "YVETODIS", - "Marque": "Leclerc" + "name": "YVETODIS", + "brand": "Leclerc" }, "76200002": { - "Nom": "ESSO LES CANADIENS", - "Marque": "Esso Express" + "name": "ESSO LES CANADIENS", + "brand": "Esso Express" }, "76200003": { - "Nom": "SAS MARCHAND", - "Marque": "Indépendant sans enseigne" + "name": "SAS MARCHAND", + "brand": "Indépendant sans enseigne" }, "76200004": { - "Nom": "RELAIS DIEPPE DUQUESNE", - "Marque": "Total Access" + "name": "RELAIS DIEPPE DUQUESNE", + "brand": "Total Access" }, "76210001": { - "Nom": "Carrefour GRUCHET", - "Marque": "Carrefour" + "name": "Carrefour GRUCHET", + "brand": "Carrefour" }, "76210002": { - "Nom": "SARL ALBIK", - "Marque": "Avia" + "name": "SARL ALBIK", + "brand": "Avia" }, "76210004": { - "Nom": "Intermarché BOLBEC", - "Marque": "Intermarché" + "name": "Intermarché BOLBEC", + "brand": "Intermarché" }, "76210005": { - "Nom": "Netto", - "Marque": "Netto" + "name": "Netto", + "brand": "Netto" }, "76210006": { - "Nom": "HRC SAS ESSO BOLLEVILLE", - "Marque": "Esso" + "name": "HRC SAS ESSO BOLLEVILLE", + "brand": "Esso" }, "76220001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "76220004": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "76220005": { - "Nom": "Intermarché GOURNAY-EN-BRAY", - "Marque": "Intermarché" + "name": "Intermarché GOURNAY-EN-BRAY", + "brand": "Intermarché" }, "76220007": { - "Nom": "Total Relais paris dieppe", - "Marque": "Total" + "name": "Total Relais paris dieppe", + "brand": "Total" }, "76220008": { - "Nom": "J. BEAUVAL SAS", - "Marque": "Indépendant sans enseigne" + "name": "J. BEAUVAL SAS", + "brand": "Indépendant sans enseigne" }, "76230001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76230002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76230007": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "76240001": { - "Nom": "SUPER U BONSECOURS", - "Marque": "Système U" + "name": "SUPER U BONSECOURS", + "brand": "Système U" }, "76240002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76240006": { - "Nom": "RELAIS LE MESNIL-ESNARD", - "Marque": "Total Access" + "name": "RELAIS LE MESNIL-ESNARD", + "brand": "Total Access" }, "76250001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76250002": { - "Nom": "SARL PICHON", - "Marque": "Avia" + "name": "SARL PICHON", + "brand": "Avia" }, "76260003": { - "Nom": "E.LECLERC SAS ETADIS", - "Marque": "Leclerc" + "name": "E.LECLERC SAS ETADIS", + "brand": "Leclerc" }, "76260004": { - "Nom": "ESSO SERVICE DE LA BRESLE", - "Marque": "Esso" + "name": "ESSO SERVICE DE LA BRESLE", + "brand": "Esso" }, "76260005": { - "Nom": "RELAIS DE LA BRESLE", - "Marque": "Total" + "name": "RELAIS DE LA BRESLE", + "brand": "Total" }, "76270001": { - "Nom": "S.D.S.M EXPLOITATION", - "Marque": "Leclerc" + "name": "S.D.S.M EXPLOITATION", + "brand": "Leclerc" }, "76270002": { - "Nom": "SAS CECILIA Super U", - "Marque": "Système U" + "name": "SAS CECILIA Super U", + "brand": "Système U" }, "76280002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76280003": { - "Nom": "Intermarché CRIQUETOT L'ESNEVAL", - "Marque": "Intermarché" + "name": "Intermarché CRIQUETOT L'ESNEVAL", + "brand": "Intermarché" }, "76290001": { - "Nom": "AUCHAN MONTIVILLIERS", - "Marque": "Auchan" + "name": "AUCHAN MONTIVILLIERS", + "brand": "Auchan" }, "76290003": { - "Nom": "SAS CARAIBES", - "Marque": "Intermarché" + "name": "SAS CARAIBES", + "brand": "Intermarché" }, "76300004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76300005": { - "Nom": "Intermarché SOTTEVILLE LES ROUEN", - "Marque": "Intermarché" + "name": "Intermarché SOTTEVILLE LES ROUEN", + "brand": "Intermarché" }, "76300007": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "76300009": { - "Nom": "RELAIS DE L'ILE GAD", - "Marque": "Total Access" + "name": "RELAIS DE L'ILE GAD", + "brand": "Total Access" }, "76320002": { - "Nom": "S.A.S ELBEUF DISTRIBUTION", - "Marque": "Leclerc" + "name": "S.A.S ELBEUF DISTRIBUTION", + "brand": "Leclerc" }, "76330001": { - "Nom": "ESSO N D GRAVENCHON", - "Marque": "Esso Express" + "name": "ESSO N D GRAVENCHON", + "brand": "Esso Express" }, "76330002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76340001": { - "Nom": "STATION DE L'YERES", - "Marque": "Elan" + "name": "STATION DE L'YERES", + "brand": "Elan" }, "76340003": { - "Nom": "Intermarché FOUCARMONT", - "Marque": "Intermarché Contact" + "name": "Intermarché FOUCARMONT", + "brand": "Intermarché Contact" }, "76340004": { - "Nom": "Système U - SARL JULY", - "Marque": "Système U" + "name": "Système U - SARL JULY", + "brand": "Système U" }, "76350001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "76360001": { - "Nom": "Carrefour BARENTIN", - "Marque": "Carrefour" + "name": "Carrefour BARENTIN", + "brand": "Carrefour" }, "76360002": { - "Nom": "DUPRAY BERTRAND", - "Marque": "Total" + "name": "DUPRAY BERTRAND", + "brand": "Total" }, "76360003": { - "Nom": "RENAULT RETAIL GROUP ROUEN BARENTIN", - "Marque": "Elan" + "name": "RENAULT RETAIL GROUP ROUEN BARENTIN", + "brand": "Elan" }, "76370001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76370002": { - "Nom": "STATION H.M. AUTOMOBILES", - "Marque": "Total" + "name": "STATION H.M. AUTOMOBILES", + "brand": "Total" }, "76370003": { - "Nom": "STATION EUROCHANNEL", - "Marque": "BP" + "name": "STATION EUROCHANNEL", + "brand": "BP" }, "76370004": { - "Nom": "DIEPPE DIS", - "Marque": "Leclerc" + "name": "DIEPPE DIS", + "brand": "Leclerc" }, "76370006": { - "Nom": "SAS THIMONT", - "Marque": "Intermarché" + "name": "SAS THIMONT", + "brand": "Intermarché" }, "76371001": { - "Nom": "AUCHAN DIEPPE", - "Marque": "Auchan" + "name": "AUCHAN DIEPPE", + "brand": "Auchan" }, "76380002": { - "Nom": "BAPDIS SAS", - "Marque": "Leclerc" + "name": "BAPDIS SAS", + "brand": "Leclerc" }, "76380003": { - "Nom": "Intermarché CANTELEU", - "Marque": "Intermarché" + "name": "Intermarché CANTELEU", + "brand": "Intermarché" }, "76380005": { - "Nom": "Auchan Supermarché", - "Marque": "Auchan" + "name": "Auchan Supermarché", + "brand": "Auchan" }, "76390002": { - "Nom": "GARAGE FERTUN ET CIE", - "Marque": "Esso" + "name": "GARAGE FERTUN ET CIE", + "brand": "Esso" }, "76400001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76400003": { - "Nom": "EOR FECAMP LEFEBVRE", - "Marque": "Total" + "name": "EOR FECAMP LEFEBVRE", + "brand": "Total" }, "76400004": { - "Nom": "ETS LEFEBVRE ET FILS S.A.", - "Marque": "Total" + "name": "ETS LEFEBVRE ET FILS S.A.", + "brand": "Total" }, "76400005": { - "Nom": "EOR FECAMP LEFEBVRE", - "Marque": "Total" + "name": "EOR FECAMP LEFEBVRE", + "brand": "Total" }, "76400008": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "76400009": { - "Nom": "E.LECLERC", - "Marque": "Leclerc" + "name": "E.LECLERC", + "brand": "Leclerc" }, "76410001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76410002": { - "Nom": "Carrefour TOURVILLE LA RIVIERE", - "Marque": "Carrefour" + "name": "Carrefour TOURVILLE LA RIVIERE", + "brand": "Carrefour" }, "76410003": { - "Nom": "GARAGE DU COURS CARNOT", - "Marque": "Total" + "name": "GARAGE DU COURS CARNOT", + "brand": "Total" }, "76420001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "76420004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76420006": { - "Nom": "RELAIS ROUEN BIHOREL", - "Marque": "Total Access" + "name": "RELAIS ROUEN BIHOREL", + "brand": "Total Access" }, "76430004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76430005": { - "Nom": "SUPER U ST ROMAIN", - "Marque": "Système U" + "name": "SUPER U ST ROMAIN", + "brand": "Système U" }, "76430006": { - "Nom": "RELAIS TANCARVILLE", - "Marque": "Total Access" + "name": "RELAIS TANCARVILLE", + "brand": "Total Access" }, "76440003": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "76440006": { - "Nom": "Leader Price", - "Marque": "Coop" + "name": "Leader Price", + "brand": "Coop" }, "76440007": { - "Nom": "BP FORGES LES EAUX RELAIS MER", - "Marque": "BP" + "name": "BP FORGES LES EAUX RELAIS MER", + "brand": "BP" }, "76440008": { - "Nom": "MARKET", - "Marque": "Carrefour Market" + "name": "MARKET", + "brand": "Carrefour Market" }, "76450001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76450002": { - "Nom": "Station shell", - "Marque": "Indépendant sans enseigne" + "name": "Station shell", + "brand": "Indépendant sans enseigne" }, "76460002": { - "Nom": "ST VALERY DISTRIBUTION SAS", - "Marque": "Leclerc" + "name": "ST VALERY DISTRIBUTION SAS", + "brand": "Leclerc" }, "76460003": { - "Nom": "SARL Neto Le Drakkar", - "Marque": "Total" + "name": "SARL Neto Le Drakkar", + "brand": "Total" }, "76480001": { - "Nom": "STATION DU BAC", - "Marque": "BP" + "name": "STATION DU BAC", + "brand": "BP" }, "76480002": { - "Nom": "SAS JULUGO", - "Marque": "Intermarché Contact" + "name": "SAS JULUGO", + "brand": "Intermarché Contact" }, "76490002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76500001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76500004": { - "Nom": "RELAIS CARNOT", - "Marque": "Total" + "name": "RELAIS CARNOT", + "brand": "Total" }, "76510001": { - "Nom": "Intermarché ST NICOLAS D'ALIERMO", - "Marque": "Intermarché" + "name": "Intermarché ST NICOLAS D'ALIERMO", + "brand": "Intermarché" }, "76520001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "76520002": { - "Nom": "Intermarché BOOS", - "Marque": "Intermarché" + "name": "Intermarché BOOS", + "brand": "Intermarché" }, "76530002": { - "Nom": "ESSO LES ESSARTS", - "Marque": "Esso Express" + "name": "ESSO LES ESSARTS", + "brand": "Esso Express" }, "76530003": { - "Nom": "Intermarché GRAND COURONNE", - "Marque": "Intermarché" + "name": "Intermarché GRAND COURONNE", + "brand": "Intermarché" }, "76530004": { - "Nom": "RELAIS DE LA LONDE", - "Marque": "Total Access" + "name": "RELAIS DE LA LONDE", + "brand": "Total Access" }, "76540001": { - "Nom": "SHOPI", - "Marque": "Shopi" + "name": "SHOPI", + "brand": "Shopi" }, "76550001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76560001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76570001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76580001": { - "Nom": "ESSO DES ABBAYES", - "Marque": "Esso Express" + "name": "ESSO DES ABBAYES", + "brand": "Esso Express" }, "76580002": { - "Nom": "SARL MACANOSA DISTRIBUTION", - "Marque": "MARKET" + "name": "SARL MACANOSA DISTRIBUTION", + "brand": "MARKET" }, "76590001": { - "Nom": "EURL DELABRIERE JEAN-FRANCOIS", - "Marque": "Indépendant sans enseigne" + "name": "EURL DELABRIERE JEAN-FRANCOIS", + "brand": "Indépendant sans enseigne" }, "76590002": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché" + "name": "Intermarché Contact", + "brand": "Intermarché" }, "76600001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76600010": { - "Nom": "ESSO PORTE OCEANE", - "Marque": "Esso Express" + "name": "ESSO PORTE OCEANE", + "brand": "Esso Express" }, "76600012": { - "Nom": "DMS", - "Marque": "Elan" + "name": "DMS", + "brand": "Elan" }, "76600014": { - "Nom": "SAS MAET", - "Marque": "Système U" + "name": "SAS MAET", + "brand": "Système U" }, "76600021": { - "Nom": "RELAIS DU PERREY AVITAILLEMENT", - "Marque": "Total" + "name": "RELAIS DU PERREY AVITAILLEMENT", + "brand": "Total" }, "76600022": { - "Nom": "RELAIS DU PERREY", - "Marque": "Total Access" + "name": "RELAIS DU PERREY", + "brand": "Total Access" }, "76600023": { - "Nom": "RELAIS LE HAVRE LA BREQUE", - "Marque": "Total Access" + "name": "RELAIS LE HAVRE LA BREQUE", + "brand": "Total Access" }, "76600024": { - "Nom": "RELAIS HALTE GRAVILLE", - "Marque": "Total Access" + "name": "RELAIS HALTE GRAVILLE", + "brand": "Total Access" }, "76600025": { - "Nom": "RELAIS AMIRAL MOUCHEZ", - "Marque": "Total Access" + "name": "RELAIS AMIRAL MOUCHEZ", + "brand": "Total Access" }, "76610002": { - "Nom": "ESSO CAUCRIAUVILLE SUD", - "Marque": "Esso Express" + "name": "ESSO CAUCRIAUVILLE SUD", + "brand": "Esso Express" }, "76610003": { - "Nom": "FISTO Super U", - "Marque": "Système U" + "name": "FISTO Super U", + "brand": "Système U" }, "76610004": { - "Nom": "RELAIS ROUELLES", - "Marque": "Total Access" + "name": "RELAIS ROUELLES", + "brand": "Total Access" }, "76620001": { - "Nom": "Auchan Le Havre", - "Marque": "Auchan" + "name": "Auchan Le Havre", + "brand": "Auchan" }, "76620002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76620003": { - "Nom": "ESSO BOIS AU COQ", - "Marque": "Esso Express" + "name": "ESSO BOIS AU COQ", + "brand": "Esso Express" }, "76640002": { - "Nom": "SA FAUDIS Super U", - "Marque": "Système U" + "name": "SA FAUDIS Super U", + "brand": "Système U" }, "76640004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "76680001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76680003": { - "Nom": "SGAR SAS", - "Marque": "Shell" + "name": "SGAR SAS", + "brand": "Shell" }, "76680004": { - "Nom": "RELAIS BOSC MESNIL", - "Marque": "Total" + "name": "RELAIS BOSC MESNIL", + "brand": "Total" }, "76700001": { - "Nom": "SARL ADELINE STATION AVIA", - "Marque": "Avia" + "name": "SARL ADELINE STATION AVIA", + "brand": "Avia" }, "76700004": { - "Nom": "SARL GARAGE DE LA BREQUE", - "Marque": "Elan" + "name": "SARL GARAGE DE LA BREQUE", + "brand": "Elan" }, "76700005": { - "Nom": "GONFREVILDIS", - "Marque": "Leclerc" + "name": "GONFREVILDIS", + "brand": "Leclerc" }, "76700006": { - "Nom": "RELAIS PORTE OCEANE", - "Marque": "Total" + "name": "RELAIS PORTE OCEANE", + "brand": "Total" }, "76700007": { - "Nom": "RELAIS DE ROGERVILLE", - "Marque": "Total Access" + "name": "RELAIS DE ROGERVILLE", + "brand": "Total Access" }, "76710001": { - "Nom": "Intermarché MONTVILLE", - "Marque": "Intermarché" + "name": "Intermarché MONTVILLE", + "brand": "Intermarché" }, "76720002": { - "Nom": "Sas vallee", - "Marque": "Indépendant sans enseigne" + "name": "Sas vallee", + "brand": "Indépendant sans enseigne" }, "76720003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "76730001": { - "Nom": "THECAS SARL", - "Marque": "Carrefour Contact" + "name": "THECAS SARL", + "brand": "Carrefour Contact" }, "76750001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "76760002": { - "Nom": "SAS YERDIS Super U", - "Marque": "Système U" + "name": "SAS YERDIS Super U", + "brand": "Système U" }, "76770002": { - "Nom": "E. LECLERC Le Houlme", - "Marque": "Leclerc" + "name": "E. LECLERC Le Houlme", + "brand": "Leclerc" }, "76770003": { - "Nom": "RELAIS DU CAILLY", - "Marque": "Total Access" + "name": "RELAIS DU CAILLY", + "brand": "Total Access" }, "76800002": { - "Nom": "ESSO ST ETIENNE", - "Marque": "Esso Express" + "name": "ESSO ST ETIENNE", + "brand": "Esso Express" }, "76800003": { - "Nom": "Intermarché ST-ETIENNE / ROUVRAY", - "Marque": "Intermarché" + "name": "Intermarché ST-ETIENNE / ROUVRAY", + "brand": "Intermarché" }, "76800009": { - "Nom": "RELAIS CANADIENS", - "Marque": "Total Access" + "name": "RELAIS CANADIENS", + "brand": "Total Access" }, "76810001": { - "Nom": "CASINO", - "Marque": "Casino" + "name": "CASINO", + "brand": "Casino" }, "76810002": { - "Nom": "Auchan supermarché", - "Marque": "Auchan" + "name": "Auchan supermarché", + "brand": "Auchan" }, "76890001": { - "Nom": "Intermarché TOTES", - "Marque": "Intermarché" + "name": "Intermarché TOTES", + "brand": "Intermarché" }, "76910001": { - "Nom": "Intermarché CRIEL SUR MER", - "Marque": "Intermarché" + "name": "Intermarché CRIEL SUR MER", + "brand": "Intermarché" }, "76940001": { - "Nom": "Carrefour Contact NEW GENERATION SHOP", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact NEW GENERATION SHOP", + "brand": "Carrefour Contact" }, "76950001": { - "Nom": "GARAGE DU CENTRE", - "Marque": "Total" + "name": "GARAGE DU CENTRE", + "brand": "Total" }, "76950002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "77000003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "77000005": { - "Nom": "Total", - "Marque": "Total" + "name": "Total", + "brand": "Total" }, "77000011": { - "Nom": "RELAIS DE L'ALMONT", - "Marque": "Total" + "name": "RELAIS DE L'ALMONT", + "brand": "Total" }, "77000013": { - "Nom": "RELAIS LA ROCHETTE MELUN", - "Marque": "Total Access" + "name": "RELAIS LA ROCHETTE MELUN", + "brand": "Total Access" + }, + "77000014": { + "name": "Intermarché Vaux-le-pénil", + "brand": "Intermarché" }, "77090001": { - "Nom": "Carrefour COLLEGIEN", - "Marque": "Carrefour" + "name": "Carrefour COLLEGIEN", + "brand": "Carrefour" }, "77100003": { - "Nom": "SAS SAFIPAR", - "Marque": "Auchan" + "name": "SAS SAFIPAR", + "brand": "Auchan" }, "77100008": { - "Nom": "ESSO PARIS METZ", - "Marque": "Esso Express" + "name": "ESSO PARIS METZ", + "brand": "Esso Express" }, "77100009": { - "Nom": "SODIMEAUX", - "Marque": "Leclerc" + "name": "SODIMEAUX", + "brand": "Leclerc" }, "77100010": { - "Nom": "Total METIN", - "Marque": "Total" + "name": "Total METIN", + "brand": "Total" }, "77100015": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "77100016": { - "Nom": "LECLERC MAREUILDIS", - "Marque": "Leclerc" + "name": "LECLERC MAREUILDIS", + "brand": "Leclerc" }, "77100021": { - "Nom": "RELAIS DE BOSSUET", - "Marque": "Total Access" + "name": "RELAIS DE BOSSUET", + "brand": "Total Access" }, "77100022": { - "Nom": "RELAIS ST PERES", - "Marque": "Total Access" + "name": "RELAIS ST PERES", + "brand": "Total Access" }, "77100023": { - "Nom": "RELAIS DE LA MARNE VICTOIRE", - "Marque": "Total Access" + "name": "RELAIS DE LA MARNE VICTOIRE", + "brand": "Total Access" }, "77100024": { - "Nom": "BP MEAUX", - "Marque": "BP" + "name": "BP MEAUX", + "brand": "BP" }, "77116001": { - "Nom": "SODIPLEC ACHERES EST", - "Marque": "Leclerc" + "name": "SODIPLEC ACHERES EST", + "brand": "Leclerc" }, "77120003": { - "Nom": "BOUCHE DISTRIBUTION", - "Marque": "Leclerc" + "name": "BOUCHE DISTRIBUTION", + "brand": "Leclerc" }, "77120004": { - "Nom": "Carrefour MARKET MOUROUX", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET MOUROUX", + "brand": "Carrefour Market" }, "77120005": { - "Nom": "A L'Intermarché DE COULOMMIERS", - "Marque": "Intermarché" + "name": "A L'Intermarché DE COULOMMIERS", + "brand": "Intermarché" }, "77120006": { - "Nom": "RELAIS DES CAPUCINS", - "Marque": "Total Access" + "name": "RELAIS DES CAPUCINS", + "brand": "Total Access" }, "77120007": { - "Nom": "RELAIS COULOMMIERS", - "Marque": "Total Access" + "name": "RELAIS COULOMMIERS", + "brand": "Total Access" }, "77124001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "77124002": { - "Nom": "AUCHAN MEAUX", - "Marque": "Auchan" + "name": "AUCHAN MEAUX", + "brand": "Auchan" }, "77127001": { - "Nom": "Carrefour CARRE SENART", - "Marque": "Carrefour" + "name": "Carrefour CARRE SENART", + "brand": "Carrefour" }, "77130003": { - "Nom": "STATION Total RELAIS DE FORGES", - "Marque": "Total" + "name": "STATION Total RELAIS DE FORGES", + "brand": "Total" }, "77130005": { - "Nom": "SODIVAR", - "Marque": "Leclerc" + "name": "SODIVAR", + "brand": "Leclerc" }, "77130006": { - "Nom": "Carrefour MONTEREAU", - "Marque": "Carrefour" + "name": "Carrefour MONTEREAU", + "brand": "Carrefour" }, "77130008": { - "Nom": "Varedis", - "Marque": "Leclerc" + "name": "Varedis", + "brand": "Leclerc" }, "77130010": { - "Nom": "STATION SHELL JONCHETS LES RECOMPENSES A5", - "Marque": "Shell" + "name": "STATION SHELL JONCHETS LES RECOMPENSES A5", + "brand": "Shell" }, "77130011": { - "Nom": "RELAIS DE JONCHETS GRANDE PAROISSE", - "Marque": "Total" + "name": "RELAIS DE JONCHETS GRANDE PAROISSE", + "brand": "Total" }, "77140003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "77140005": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "77140006": { - "Nom": "Intermarché NEMOURS", - "Marque": "Intermarché" + "name": "Intermarché NEMOURS", + "brand": "Intermarché" }, "77140010": { - "Nom": "AUTOGRILL STATION SHELL", - "Marque": "AUTOGRILL" + "name": "AUTOGRILL STATION SHELL", + "brand": "AUTOGRILL" }, "77140011": { - "Nom": "RELAIS NEMOURS DE GAULLE", - "Marque": "Total" + "name": "RELAIS NEMOURS DE GAULLE", + "brand": "Total" }, "77140012": { - "Nom": "Shell Darvault", - "Marque": "Shell" + "name": "Shell Darvault", + "brand": "Shell" }, "77141001": { - "Nom": "sas mi autos", - "Marque": "Total" + "name": "sas mi autos", + "brand": "Total" }, "77141003": { - "Nom": "Relais de marne et seine", - "Marque": "Avia" + "name": "Relais de marne et seine", + "brand": "Avia" }, "77144001": { - "Nom": "Intermarché MONTEVRAIN", - "Marque": "Intermarché" + "name": "Intermarché MONTEVRAIN", + "brand": "Intermarché" }, "77144002": { - "Nom": "Total metin val d'europe", - "Marque": "Total" + "name": "Total metin val d'europe", + "brand": "Total" }, "77150002": { - "Nom": "Carrefour Champs sur Marne", - "Marque": "Carrefour" + "name": "Carrefour Champs sur Marne", + "brand": "Carrefour" }, "77150003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "77150004": { - "Nom": "RELAIS PARC DE LESIGNY", - "Marque": "Total Access" + "name": "RELAIS PARC DE LESIGNY", + "brand": "Total Access" }, "77160001": { - "Nom": "AGIP PROVINS AV DE GAULLE", - "Marque": "Agip" + "name": "AGIP PROVINS AV DE GAULLE", + "brand": "Agip" }, "77160002": { - "Nom": "PROVINS DISTRIBUTION", - "Marque": "Leclerc" + "name": "PROVINS DISTRIBUTION", + "brand": "Leclerc" }, "77160003": { - "Nom": "Intermarché PROVINS", - "Marque": "Intermarché" + "name": "Intermarché PROVINS", + "brand": "Intermarché" }, "77164001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "77165002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "77165006": { - "Nom": "RELAIS DU SAUVOY", - "Marque": "Total" + "name": "RELAIS DU SAUVOY", + "brand": "Total" }, "77170004": { - "Nom": "STATION Total BRIE CTE ROB. ESCOFFI", - "Marque": "Total" + "name": "STATION Total BRIE CTE ROB. ESCOFFI", + "brand": "Total" }, "77170005": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "77170006": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "77170012": { - "Nom": "RELAIS SAINTE-GENEVIEVE", - "Marque": "Total" + "name": "RELAIS SAINTE-GENEVIEVE", + "brand": "Total" }, "77170013": { - "Nom": "RELAIS DE L'YERRES", - "Marque": "Total Access" + "name": "RELAIS DE L'YERRES", + "brand": "Total Access" }, "77171003": { - "Nom": "RELAIS DE SOURDUN", - "Marque": "Total Access" + "name": "RELAIS DE SOURDUN", + "brand": "Total Access" }, "77176001": { - "Nom": "SIGESS ESSO", - "Marque": "Esso" + "name": "SIGESS ESSO", + "brand": "Esso" }, "77181002": { - "Nom": "RELAIS DU PIN", - "Marque": "Total Access" + "name": "RELAIS DU PIN", + "brand": "Total Access" }, "77183001": { - "Nom": "Intermarché CROISSY BEAUBOURG", - "Marque": "Intermarché" + "name": "Intermarché CROISSY BEAUBOURG", + "brand": "Intermarché" }, "77184004": { - "Nom": "Intermarché EMERAINVILLE", - "Marque": "Intermarché" + "name": "Intermarché EMERAINVILLE", + "brand": "Intermarché" }, "77186001": { - "Nom": "BRIE DES NATIONS", - "Marque": "Total" + "name": "BRIE DES NATIONS", + "brand": "Total" }, "77186003": { - "Nom": "RELAIS DE LA MAILLERE", - "Marque": "Total" + "name": "RELAIS DE LA MAILLERE", + "brand": "Total" }, "77190004": { - "Nom": "CENTRE LECLERC", - "Marque": "Leclerc" + "name": "CENTRE LECLERC", + "brand": "Leclerc" }, "77190005": { - "Nom": "RELAIS DAMMARIE LECLERC", - "Marque": "Total Access" + "name": "RELAIS DAMMARIE LECLERC", + "brand": "Total Access" }, "77190006": { - "Nom": "RELAIS DAMMARIE LES LYS", - "Marque": "Total Access" + "name": "RELAIS DAMMARIE LES LYS", + "brand": "Total Access" }, "77195001": { - "Nom": "Carrefour VILLIERS EN BIERE", - "Marque": "Carrefour" + "name": "Carrefour VILLIERS EN BIERE", + "brand": "Carrefour" }, "77200001": { - "Nom": "GARAGE OJA SA", - "Marque": "Total" + "name": "GARAGE OJA SA", + "brand": "Total" }, "77210001": { - "Nom": "ESSO AVON FONTAINEBLEAU", - "Marque": "Esso Express" + "name": "ESSO AVON FONTAINEBLEAU", + "brand": "Esso Express" }, "77210002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "77220004": { - "Nom": "Intermarché GRETZ ARMAINVILLIERS", - "Marque": "Intermarché" + "name": "Intermarché GRETZ ARMAINVILLIERS", + "brand": "Intermarché" }, "77220005": { - "Nom": "Carrefour MARKET TOURNAN EN BRIE", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET TOURNAN EN BRIE", + "brand": "Carrefour Market" }, "77230001": { - "Nom": "EASY SERVICE", - "Marque": "Total" + "name": "EASY SERVICE", + "brand": "Total" }, "77230004": { - "Nom": "Intermarché MOUSSY-LE-NEUF", - "Marque": "Intermarché" + "name": "Intermarché MOUSSY-LE-NEUF", + "brand": "Intermarché" }, "77230006": { - "Nom": "RELAIS DE CHANTEMERLE", - "Marque": "Total Access" + "name": "RELAIS DE CHANTEMERLE", + "brand": "Total Access" }, "77230007": { - "Nom": "DISTRIMARD (Carrefour Saint Mard)", - "Marque": "Carrefour" + "name": "DISTRIMARD (Carrefour Saint Mard)", + "brand": "Carrefour" }, "77240002": { - "Nom": "AUCHAN CARBURANT", - "Marque": "Auchan" + "name": "AUCHAN CARBURANT", + "brand": "Auchan" }, "77250002": { - "Nom": "Intermarché VENEUX LES SABLONS", - "Marque": "Intermarché" + "name": "Intermarché VENEUX LES SABLONS", + "brand": "Intermarché" }, "77250004": { - "Nom": "CSF FRANCE STATION SERVICE", - "Marque": "Carrefour Market" + "name": "CSF FRANCE STATION SERVICE", + "brand": "Carrefour Market" }, "77250006": { - "Nom": "RELAIS MORET SUR LOING 1", - "Marque": "Total Access" + "name": "RELAIS MORET SUR LOING 1", + "brand": "Total Access" }, "77260002": { - "Nom": "BP ETS PEZZETTA-DEMEME SA", - "Marque": "BP" + "name": "BP ETS PEZZETTA-DEMEME SA", + "brand": "BP" }, "77260004": { - "Nom": "SAS SODIFER", - "Marque": "Leclerc" + "name": "SAS SODIFER", + "brand": "Leclerc" }, "77260005": { - "Nom": "Intermarché SEPT SORTS", - "Marque": "Intermarché" + "name": "Intermarché SEPT SORTS", + "brand": "Intermarché" }, "77260007": { - "Nom": "ENI LEO RESTO USSY", - "Marque": "Agip" + "name": "ENI LEO RESTO USSY", + "brand": "Agip" }, "77260008": { - "Nom": "BP A4 AIRE DE CHANGIS", - "Marque": "BP" + "name": "BP A4 AIRE DE CHANGIS", + "brand": "BP" }, "77270001": { - "Nom": "MAVIDIS", - "Marque": "Leclerc" + "name": "MAVIDIS", + "brand": "Leclerc" }, "77280001": { - "Nom": "Intermarché OTHIS", - "Marque": "Intermarché" + "name": "Intermarché OTHIS", + "brand": "Intermarché" }, "77290002": { - "Nom": "Intermarché MITRY-MORY", - "Marque": "Intermarché" + "name": "Intermarché MITRY-MORY", + "brand": "Intermarché" }, "77300001": { - "Nom": "RELAIS FOCH", - "Marque": "Total" + "name": "RELAIS FOCH", + "brand": "Total" }, "77300005": { - "Nom": "BP FONTAINEBLEAU LA FOURCHE 8à8", - "Marque": "BP" + "name": "BP FONTAINEBLEAU LA FOURCHE 8à8", + "brand": "BP" }, "77310006": { - "Nom": "BP ST FARGEAU PONTHIERRY", - "Marque": "BP" + "name": "BP ST FARGEAU PONTHIERRY", + "brand": "BP" }, "77310009": { - "Nom": "RELAIS MAISON ROUGE", - "Marque": "Total Access" + "name": "RELAIS MAISON ROUGE", + "brand": "Total Access" }, "77320002": { - "Nom": "Intermarché LA FERTE GAUCHER", - "Marque": "Intermarché" + "name": "Intermarché LA FERTE GAUCHER", + "brand": "Intermarché" }, "77320003": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "77330002": { - "Nom": "Relais d'Ozoir Silcar", - "Marque": "Total" + "name": "Relais d'Ozoir Silcar", + "brand": "Total" }, "77330003": { - "Nom": "LECLERC OZOIR LA FERRIERE", - "Marque": "Leclerc" + "name": "LECLERC OZOIR LA FERRIERE", + "brand": "Leclerc" }, "77330004": { - "Nom": "RELAIS OZOIR LA FERRIERE", - "Marque": "Total" + "name": "RELAIS OZOIR LA FERRIERE", + "brand": "Total" }, "77340003": { - "Nom": "E.LECLERC S. A. S. DIS-PONTAUT", - "Marque": "Leclerc" + "name": "E.LECLERC S. A. S. DIS-PONTAUT", + "brand": "Leclerc" }, "77340005": { - "Nom": "RELAIS PONTAULT COMBAULT", - "Marque": "Total" + "name": "RELAIS PONTAULT COMBAULT", + "brand": "Total" }, "77340006": { - "Nom": "RELAIS DE COMBAULT", - "Marque": "Total Access" + "name": "RELAIS DE COMBAULT", + "brand": "Total Access" }, "77346001": { - "Nom": "Carrefour PONTAULT-COMBAULT", - "Marque": "Carrefour" + "name": "Carrefour PONTAULT-COMBAULT", + "brand": "Carrefour" }, "77350004": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "77350005": { - "Nom": "RELAIS LE MEE S.SEINE COURTILLE", - "Marque": "Total Access" + "name": "RELAIS LE MEE S.SEINE COURTILLE", + "brand": "Total Access" }, "77360001": { - "Nom": "Carrefour MARKET VAIRES SUR MARNE", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET VAIRES SUR MARNE", + "brand": "Carrefour Market" }, "77370003": { - "Nom": "Intermarché NANGIS", - "Marque": "Intermarché" + "name": "Intermarché NANGIS", + "brand": "Intermarché" }, "77370005": { - "Nom": "RELAIS DE NANGIS", - "Marque": "Total Access" + "name": "RELAIS DE NANGIS", + "brand": "Total Access" }, "77380001": { - "Nom": "Intermarché COMBS LA VILLE", - "Marque": "Intermarché" + "name": "Intermarché COMBS LA VILLE", + "brand": "Intermarché" }, "77390003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "77400006": { - "Nom": "Total metin pomponne", - "Marque": "Total" + "name": "Total metin pomponne", + "brand": "Total" }, "77400007": { - "Nom": "Intermarché ST THIBAULT DES VIGNES", - "Marque": "Intermarché" + "name": "Intermarché ST THIBAULT DES VIGNES", + "brand": "Intermarché" }, "77400008": { - "Nom": "Intermarché THORIGNY", - "Marque": "Intermarché" + "name": "Intermarché THORIGNY", + "brand": "Intermarché" }, "77400011": { - "Nom": "RELAIS DES COTEAUX", - "Marque": "Total Access" + "name": "RELAIS DES COTEAUX", + "brand": "Total Access" }, "77400012": { - "Nom": "BP ST THIBAULT DES VIGNES", - "Marque": "BP" + "name": "BP ST THIBAULT DES VIGNES", + "brand": "BP" }, "77400013": { - "Nom": "ESSO EXPRESS LAGNY", - "Marque": "Esso" + "name": "ESSO EXPRESS LAGNY", + "brand": "Esso" }, "77410001": { - "Nom": "SAS BLOM", - "Marque": "Total" + "name": "SAS BLOM", + "brand": "Total" }, "77410008": { - "Nom": "BP A104 AIRE DE VILLEVAUDE", - "Marque": "BP" + "name": "BP A104 AIRE DE VILLEVAUDE", + "brand": "BP" }, "77410009": { - "Nom": "RELAIS DE VILLEVAUDE", - "Marque": "Total Access" + "name": "RELAIS DE VILLEVAUDE", + "brand": "Total Access" }, "77430001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "77440001": { - "Nom": "Intermarché LIZY-SUR-OURCQ", - "Marque": "Intermarché" + "name": "Intermarché LIZY-SUR-OURCQ", + "brand": "Intermarché" }, "77440002": { - "Nom": "Market Lizy sur Ourcq", - "Marque": "Carrefour Market" + "name": "Market Lizy sur Ourcq", + "brand": "Carrefour Market" }, "77450004": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Super Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Super Casino" }, "77450005": { - "Nom": "RELAIS DES ARCHERS", - "Marque": "Total" + "name": "RELAIS DES ARCHERS", + "brand": "Total" }, "77460001": { - "Nom": "SOUPPES AUTO SA", - "Marque": "Total" + "name": "SOUPPES AUTO SA", + "brand": "Total" }, "77460005": { - "Nom": "SCHIEVER CARBURANT", - "Marque": "Auchan" + "name": "SCHIEVER CARBURANT", + "brand": "Auchan" }, "77470001": { - "Nom": "SARL MYDISTRI", - "Marque": "Carrefour Market" + "name": "SARL MYDISTRI", + "brand": "Carrefour Market" }, "77480001": { - "Nom": "Bi1", - "Marque": "Bi1" + "name": "Bi1", + "brand": "Bi1" }, "77480002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "77500001": { - "Nom": "LES HALLES D'AUCHAN", - "Marque": "Auchan" + "name": "LES HALLES D'AUCHAN", + "brand": "Auchan" }, "77500004": { - "Nom": "Intermarché CHELLES MONTFERMEIL", - "Marque": "Intermarché" + "name": "Intermarché CHELLES MONTFERMEIL", + "brand": "Intermarché" }, "77500006": { - "Nom": "Total Access METIN", - "Marque": "Total Access" + "name": "Total Access METIN", + "brand": "Total Access" }, "77500008": { - "Nom": "BP CHELLES MONT CHALAS", - "Marque": "BP" + "name": "BP CHELLES MONT CHALAS", + "brand": "BP" }, "77500009": { - "Nom": "RELAIS DE CHELLES", - "Marque": "Total" + "name": "RELAIS DE CHELLES", + "brand": "Total" }, "77508001": { - "Nom": "Carrefour CHELLES", - "Marque": "Carrefour" + "name": "Carrefour CHELLES", + "brand": "Carrefour" }, "77508002": { - "Nom": "Carrefour Claye-Souilly", - "Marque": "Carrefour" + "name": "Carrefour Claye-Souilly", + "brand": "Carrefour" }, "77510001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "77515001": { - "Nom": "Intermarché DE FAREMOUTIERS", - "Marque": "Intermarché" + "name": "Intermarché DE FAREMOUTIERS", + "brand": "Intermarché" }, "77520001": { - "Nom": "CASINO DONNEMARIE DONTILLY", - "Marque": "Casino" + "name": "CASINO DONNEMARIE DONTILLY", + "brand": "Casino" }, "77540002": { - "Nom": "MARKET ROZAY EN BRIE", - "Marque": "Carrefour Market" + "name": "MARKET ROZAY EN BRIE", + "brand": "Carrefour Market" }, "77550004": { - "Nom": "RELAIS DE GALANDE", - "Marque": "Total" + "name": "RELAIS DE GALANDE", + "brand": "Total" }, "77550005": { - "Nom": "RELAIS PLESSIS PICAR", - "Marque": "Total" + "name": "RELAIS PLESSIS PICAR", + "brand": "Total" }, "77570001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "77580001": { - "Nom": "GARAGE MODERNE S.A.S", - "Marque": "Esso" + "name": "GARAGE MODERNE S.A.S", + "brand": "Esso" }, "77580002": { - "Nom": "Intermarché CRECY-LA-CHAPELLE", - "Marque": "Intermarché" + "name": "Intermarché CRECY-LA-CHAPELLE", + "brand": "Intermarché" }, "77590001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "77600003": { - "Nom": "RELAIS BUSSY ST GEORGES", - "Marque": "Total" + "name": "RELAIS BUSSY ST GEORGES", + "brand": "Total" }, "77600004": { - "Nom": "RELAIS FERRIERES", - "Marque": "Total" + "name": "RELAIS FERRIERES", + "brand": "Total" }, "77610002": { - "Nom": "SAS FONTENAL", - "Marque": "Intermarché" + "name": "SAS FONTENAL", + "brand": "Intermarché" }, "77620001": { - "Nom": "SARL SOEGREDIS", - "Marque": "Système U" + "name": "SARL SOEGREDIS", + "brand": "Système U" }, "77650001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché" + "name": "Intermarché Contact", + "brand": "Intermarché" }, "77680001": { - "Nom": "ESSO MALIBRAN", - "Marque": "Esso Express" + "name": "ESSO MALIBRAN", + "brand": "Esso Express" }, "77680003": { - "Nom": "SUPER U ROISSY EN BRIE", - "Marque": "Système U" + "name": "SUPER U ROISSY EN BRIE", + "brand": "Système U" }, "77680004": { - "Nom": "SAS ROISSIM (Intermarché)", - "Marque": "Intermarché" + "name": "SAS ROISSIM (Intermarché)", + "brand": "Intermarché" }, "77700001": { - "Nom": "AUCHAN VAL D' EUROPE", - "Marque": "Auchan" + "name": "AUCHAN VAL D' EUROPE", + "brand": "Auchan" }, "77700002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "77700003": { - "Nom": "ROC FRANCE ESSO", - "Marque": "Esso" + "name": "ROC FRANCE ESSO", + "brand": "Esso" }, "77700004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "77710001": { - "Nom": "Intermarche Lorrez", - "Marque": "Intermarché" + "name": "Intermarche Lorrez", + "brand": "Intermarché" }, "77720002": { - "Nom": "Intermarché MORMANT", - "Marque": "Intermarché" + "name": "Intermarché MORMANT", + "brand": "Intermarché" }, "77740002": { - "Nom": "RELAIS ORME LOUPS", - "Marque": "Total Access" + "name": "RELAIS ORME LOUPS", + "brand": "Total Access" }, "77760001": { - "Nom": "ATAC LA CHAPELLE LA REINE", - "Marque": "Atac" + "name": "ATAC LA CHAPELLE LA REINE", + "brand": "Atac" }, "77760002": { - "Nom": "SARL GARAGE MODERNE", - "Marque": "Total" + "name": "SARL GARAGE MODERNE", + "brand": "Total" }, "77760003": { - "Nom": "SODIPLEC ACHERES OUEST", - "Marque": "Leclerc" + "name": "SODIPLEC ACHERES OUEST", + "brand": "Leclerc" }, "77780003": { - "Nom": "RELAIS DU LOING", - "Marque": "Total Access" + "name": "RELAIS DU LOING", + "brand": "Total Access" }, "77810001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "77820003": { - "Nom": "E.LECLERC", - "Marque": "Leclerc" + "name": "E.LECLERC", + "brand": "Leclerc" }, "77860001": { - "Nom": "SNC COUDYS", - "Marque": "Système U" + "name": "SNC COUDYS", + "brand": "Système U" }, "77870001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" + }, + "77870002": { + "name": "Auchan Vulaines-sur-Seine", + "brand": "Auchan" }, "77880001": { - "Nom": "RELAIS DE LA COMMANDERIE", - "Marque": "Total" + "name": "RELAIS DE LA COMMANDERIE", + "brand": "Total" }, "77910001": { - "Nom": "Total VARREDDES", - "Marque": "Total" + "name": "Total VARREDDES", + "brand": "Total" }, "77950001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "78000005": { - "Nom": "ESSO PONT COLBERT", - "Marque": "Esso Express" + "name": "ESSO PONT COLBERT", + "brand": "Esso Express" }, "78000008": { - "Nom": "ESSO DES ETATS GENERAUX", - "Marque": "Esso" + "name": "ESSO DES ETATS GENERAUX", + "brand": "Esso" }, "78000016": { - "Nom": "BP VERSAILLES CLEMENT ADER", - "Marque": "BP Express" + "name": "BP VERSAILLES CLEMENT ADER", + "brand": "BP Express" }, "78000019": { - "Nom": "RELAIS PORTE VERTE", - "Marque": "Total" + "name": "RELAIS PORTE VERTE", + "brand": "Total" }, "78000020": { - "Nom": "RELAIS DU BARRY", - "Marque": "Total Access" + "name": "RELAIS DU BARRY", + "brand": "Total Access" }, "78000021": { - "Nom": "BP VERSAILLES REPUBLIQUE", - "Marque": "BP" + "name": "BP VERSAILLES REPUBLIQUE", + "brand": "BP" }, "78100002": { - "Nom": "RELAIS ST GERMAIN EN LAYE ROOSEVELT", - "Marque": "Total" + "name": "RELAIS ST GERMAIN EN LAYE ROOSEVELT", + "brand": "Total" }, "78110002": { - "Nom": "ESSO LES IBIS", - "Marque": "Esso Express" + "name": "ESSO LES IBIS", + "brand": "Esso Express" }, "78114001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "78120003": { - "Nom": "Carrefour RAMBOUILLET", - "Marque": "Carrefour" + "name": "Carrefour RAMBOUILLET", + "brand": "Carrefour" }, "78120005": { - "Nom": "LECLERC RAMBOUILLET", - "Marque": "Leclerc" + "name": "LECLERC RAMBOUILLET", + "brand": "Leclerc" }, "78120012": { - "Nom": "RELAIS DES SOMMIERES", - "Marque": "Total" + "name": "RELAIS DES SOMMIERES", + "brand": "Total" }, "78120013": { - "Nom": "RELAIS RAMBOUILLET", - "Marque": "Total" + "name": "RELAIS RAMBOUILLET", + "brand": "Total" }, "78130011": { - "Nom": "RELAIS BOUGIMONTS", - "Marque": "Total Access" + "name": "RELAIS BOUGIMONTS", + "brand": "Total Access" }, "78140001": { - "Nom": "STATION SERVICE AUCHAN VELIZY", - "Marque": "Auchan" + "name": "STATION SERVICE AUCHAN VELIZY", + "brand": "Auchan" }, "78140008": { - "Nom": "RELAIS VELIZY", - "Marque": "Total" + "name": "RELAIS VELIZY", + "brand": "Total" }, "78140009": { - "Nom": "STATION SHELL", - "Marque": "Shell" + "name": "STATION SHELL", + "brand": "Shell" }, "78140010": { - "Nom": "BP VELIZY VILLACOUBLAY BREGUET", - "Marque": "BP" + "name": "BP VELIZY VILLACOUBLAY BREGUET", + "brand": "BP" }, "78150005": { - "Nom": "SUPER U POTTIER DISTRIBUTION", - "Marque": "Système U" + "name": "SUPER U POTTIER DISTRIBUTION", + "brand": "Système U" }, "78150007": { - "Nom": "Sarl sodical", - "Marque": "Indépendant sans enseigne" + "name": "Sarl sodical", + "brand": "Indépendant sans enseigne" }, "78150011": { - "Nom": "BP LE CHESNAY Carrefour EXPRESS", - "Marque": "BP" + "name": "BP LE CHESNAY Carrefour EXPRESS", + "brand": "BP" }, "78150012": { - "Nom": "RELAIS DU CHESNAY", - "Marque": "Total" + "name": "RELAIS DU CHESNAY", + "brand": "Total" }, "78150013": { - "Nom": "RELAIS DE ROCQUENCOURT", - "Marque": "Total Access" + "name": "RELAIS DE ROCQUENCOURT", + "brand": "Total Access" }, "78150014": { - "Nom": "BP ROCQUENCOURT", - "Marque": "BP" + "name": "BP ROCQUENCOURT", + "brand": "BP" }, "78160002": { - "Nom": "RELAIS PARC DE MARLY", - "Marque": "Total" + "name": "RELAIS PARC DE MARLY", + "brand": "Total" }, "78170002": { - "Nom": "ESSO BEAUREGARD", - "Marque": "Esso Express" + "name": "ESSO BEAUREGARD", + "brand": "Esso Express" }, "78170006": { - "Nom": "BP LA CELLE ST CLOUD", - "Marque": "BP" + "name": "BP LA CELLE ST CLOUD", + "brand": "BP" }, "78175001": { - "Nom": "VAUBAN AUTOMOBILE", - "Marque": "Total" + "name": "VAUBAN AUTOMOBILE", + "brand": "Total" }, "78180002": { - "Nom": "SAS SOVEDA", - "Marque": "Total" + "name": "SAS SOVEDA", + "brand": "Total" }, "78180010": { - "Nom": "RELAIS PORTE SUD", - "Marque": "Total Access" + "name": "RELAIS PORTE SUD", + "brand": "Total Access" }, "78180011": { - "Nom": "Esso Express Montigny", - "Marque": "Esso Express" + "name": "Esso Express Montigny", + "brand": "Esso Express" }, "78190008": { - "Nom": "BP TRAPPES SNCF", - "Marque": "BP" + "name": "BP TRAPPES SNCF", + "brand": "BP" }, "78190010": { - "Nom": "RELAIS TRAPPES POSTE BLANC", - "Marque": "Total Access" + "name": "RELAIS TRAPPES POSTE BLANC", + "brand": "Total Access" }, "78190011": { - "Nom": "Auchan Supermarché", - "Marque": "Auchan" + "name": "Auchan Supermarché", + "brand": "Auchan" }, "78190012": { - "Nom": "BP TRAPPES LUTHER KING 8 à Huit", - "Marque": "BP" + "name": "BP TRAPPES LUTHER KING 8 à Huit", + "brand": "BP" }, "78200001": { - "Nom": "AUCHAN-MANTES-BUCHELAY", - "Marque": "Auchan" + "name": "AUCHAN-MANTES-BUCHELAY", + "brand": "Auchan" }, "78200003": { - "Nom": "SA.GGC CHANTEREI", - "Marque": "Total" + "name": "SA.GGC CHANTEREI", + "brand": "Total" }, "78200008": { - "Nom": "Intermarché MANTES-LA-JOLIE", - "Marque": "Intermarché" + "name": "Intermarché MANTES-LA-JOLIE", + "brand": "Intermarché" }, "78200012": { - "Nom": "RELAIS LA VILLE JOLIE", - "Marque": "Total" + "name": "RELAIS LA VILLE JOLIE", + "brand": "Total" }, "78210006": { - "Nom": "RELAIS EPI D OR", - "Marque": "Total Access" + "name": "RELAIS EPI D OR", + "brand": "Total Access" }, "78230002": { - "Nom": "ESSO VIGNES BENNETTES", - "Marque": "Esso Express" + "name": "ESSO VIGNES BENNETTES", + "brand": "Esso Express" }, "78230005": { - "Nom": "STATION MONOPRIX", - "Marque": "Monoprix" + "name": "STATION MONOPRIX", + "brand": "Monoprix" }, "78230006": { - "Nom": "RELAIS LE PECQ KENNEDY", - "Marque": "Total Access" + "name": "RELAIS LE PECQ KENNEDY", + "brand": "Total Access" }, "78241001": { - "Nom": "Carrefour CHAMBOURCY", - "Marque": "Carrefour" + "name": "Carrefour CHAMBOURCY", + "brand": "Carrefour" }, "78250002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "78250003": { - "Nom": "Auchan Supermarche", - "Marque": "Auchan" + "name": "Auchan Supermarche", + "brand": "Auchan" }, "78260001": { - "Nom": "ACHERES EXPANSION", - "Marque": "Leclerc" + "name": "ACHERES EXPANSION", + "brand": "Leclerc" }, "78270002": { - "Nom": "RELAIS DE LA COUTURE", - "Marque": "Total Access" + "name": "RELAIS DE LA COUTURE", + "brand": "Total Access" }, "78280003": { - "Nom": "RELAIS GUYANCOURT", - "Marque": "Total" + "name": "RELAIS GUYANCOURT", + "brand": "Total" }, "78280004": { - "Nom": "RELAIS LES SAULES", - "Marque": "Total Access" + "name": "RELAIS LES SAULES", + "brand": "Total Access" }, "78290001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "78290003": { - "Nom": "RELAIS DES NOIREAUX", - "Marque": "Total" + "name": "RELAIS DES NOIREAUX", + "brand": "Total" }, "78300003": { - "Nom": "GEFICAR", - "Marque": "Leclerc" + "name": "GEFICAR", + "brand": "Leclerc" }, "78300011": { - "Nom": "RELAIS MALADRERIE", - "Marque": "Total" + "name": "RELAIS MALADRERIE", + "brand": "Total" }, "78310001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "78310006": { - "Nom": "RELAIS MAUREPAS", - "Marque": "Total" + "name": "RELAIS MAUREPAS", + "brand": "Total" }, "78310007": { - "Nom": "RELAIS COIGNIERES", - "Marque": "Total Access" + "name": "RELAIS COIGNIERES", + "brand": "Total Access" }, "78318001": { - "Nom": "AUCHAN MAUREPAS", - "Marque": "Auchan" + "name": "AUCHAN MAUREPAS", + "brand": "Auchan" }, "78320001": { - "Nom": "SARL MESNIL AUTOMOBILES", - "Marque": "Total" + "name": "SARL MESNIL AUTOMOBILES", + "brand": "Total" }, "78340004": { - "Nom": "BP LES CLAYES SS BOIS LA VIGNERAIE", - "Marque": "BP" + "name": "BP LES CLAYES SS BOIS LA VIGNERAIE", + "brand": "BP" }, "78340005": { - "Nom": "RELAIS CROIX BLANCHE", - "Marque": "Total" + "name": "RELAIS CROIX BLANCHE", + "brand": "Total" }, "78350002": { - "Nom": "RELAIS CLAIR BOIS", - "Marque": "Total Access" + "name": "RELAIS CLAIR BOIS", + "brand": "Total Access" }, "78360001": { - "Nom": "Carrefour MONTESSON", - "Marque": "Carrefour" + "name": "Carrefour MONTESSON", + "brand": "Carrefour" }, "78360002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "78360004": { - "Nom": "RELAIS DE MONTESSON", - "Marque": "Total Access" + "name": "RELAIS DE MONTESSON", + "brand": "Total Access" }, "78370001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "78370002": { - "Nom": "AUCHAN PLAISIR", - "Marque": "Auchan" + "name": "AUCHAN PLAISIR", + "brand": "Auchan" }, "78380004": { - "Nom": "RELAIS BOUGIVAL BOISSY D'ANGLAS", - "Marque": "Total Access" + "name": "RELAIS BOUGIVAL BOISSY D'ANGLAS", + "brand": "Total Access" }, "78380005": { - "Nom": "BP BOUGIVAL", - "Marque": "BP" + "name": "BP BOUGIVAL", + "brand": "BP" }, "78390003": { - "Nom": "E.LECLERC ARCYCOM", - "Marque": "Leclerc" + "name": "E.LECLERC ARCYCOM", + "brand": "Leclerc" }, "78390005": { - "Nom": "RELAIS BOIS SENON", - "Marque": "Total" + "name": "RELAIS BOIS SENON", + "brand": "Total" }, "78390006": { - "Nom": "RELAIS BOIS D'ARCY V.COUTURIER", - "Marque": "Total Access" + "name": "RELAIS BOIS D'ARCY V.COUTURIER", + "brand": "Total Access" }, "78400002": { - "Nom": "SAS GARAGE DE LA RESIDENCE", - "Marque": "Total" + "name": "SAS GARAGE DE LA RESIDENCE", + "brand": "Total" }, "78400004": { - "Nom": "RELAIS DES TILLEULS", - "Marque": "Total" + "name": "RELAIS DES TILLEULS", + "brand": "Total" }, "78410002": { - "Nom": "Carrefour FLINS SUR SEINE", - "Marque": "Carrefour" + "name": "Carrefour FLINS SUR SEINE", + "brand": "Carrefour" }, "78410004": { - "Nom": "RELAIS AUBERGENVILLE", - "Marque": "Total" + "name": "RELAIS AUBERGENVILLE", + "brand": "Total" }, "78420004": { - "Nom": "BP CARRIERES SUR SEINE", - "Marque": "BP" + "name": "BP CARRIERES SUR SEINE", + "brand": "BP" }, "78430005": { - "Nom": "RELAIS LOUVECIENNES", - "Marque": "Total" + "name": "RELAIS LOUVECIENNES", + "brand": "Total" }, "78440001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "78450001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "78470001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "78480001": { - "Nom": "AUCHAN supermarché", - "Marque": "Auchan" + "name": "AUCHAN supermarché", + "brand": "Auchan" }, "78480004": { - "Nom": "RELAIS FONTAINE ST MARTIN", - "Marque": "Total" + "name": "RELAIS FONTAINE ST MARTIN", + "brand": "Total" }, "78490002": { - "Nom": "LE RELAIS CASINO", - "Marque": "Casino" + "name": "LE RELAIS CASINO", + "brand": "Casino" }, "78500001": { - "Nom": "Carrefour SARTROUVILLE", - "Marque": "Carrefour" + "name": "Carrefour SARTROUVILLE", + "brand": "Carrefour" }, "78520002": { - "Nom": "Carrefour LIMAY", - "Marque": "Carrefour" + "name": "Carrefour LIMAY", + "brand": "Carrefour" }, "78520004": { - "Nom": "RELAIS DES CHAMPARTS", - "Marque": "Total Access" + "name": "RELAIS DES CHAMPARTS", + "brand": "Total Access" }, "78530001": { - "Nom": "Intermarché BUC", - "Marque": "Intermarché" + "name": "Intermarché BUC", + "brand": "Intermarché" }, "78540001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "78550004": { - "Nom": "SARL JCS", - "Marque": "Avia" + "name": "SARL JCS", + "brand": "Avia" }, "78550005": { - "Nom": "SARL ALBIK", - "Marque": "Avia" + "name": "SARL ALBIK", + "brand": "Avia" }, "78550006": { - "Nom": "Intermarché MAULETTE", - "Marque": "Intermarché" + "name": "Intermarché MAULETTE", + "brand": "Intermarché" }, "78550007": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "78550009": { - "Nom": "RELAIS MAULETTE HOUDAN", - "Marque": "Total Access" + "name": "RELAIS MAULETTE HOUDAN", + "brand": "Total Access" }, "78560004": { - "Nom": "RELAIS DES LIONS", - "Marque": "Total Access" + "name": "RELAIS DES LIONS", + "brand": "Total Access" }, "78570001": { - "Nom": "AXIOME", - "Marque": "Total" + "name": "AXIOME", + "brand": "Total" }, "78570004": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Super Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Super Casino" }, "78580001": { - "Nom": "GARAGE DE LA RENAISSANCE", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE DE LA RENAISSANCE", + "brand": "Indépendant sans enseigne" }, "78600002": { - "Nom": "BP MAISON LAFFITTE SPEEDY", - "Marque": "BP" + "name": "BP MAISON LAFFITTE SPEEDY", + "brand": "BP" }, "78600004": { - "Nom": "RELAIS DES AMAZONES", - "Marque": "Total Access" + "name": "RELAIS DES AMAZONES", + "brand": "Total Access" }, "78610002": { - "Nom": "AUCHAN SUPERMARCHÉ", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHÉ", + "brand": "Auchan" }, "78630004": { - "Nom": "AXIOME ORGEVAL", - "Marque": "Total" + "name": "AXIOME ORGEVAL", + "brand": "Total" }, "78630008": { - "Nom": "RELAIS DE MORAINVILLIERS SUD", - "Marque": "Total" + "name": "RELAIS DE MORAINVILLIERS SUD", + "brand": "Total" }, "78630009": { - "Nom": "RELAIS MORAINVILLIERS NORD", - "Marque": "Total" + "name": "RELAIS MORAINVILLIERS NORD", + "brand": "Total" }, "78630010": { - "Nom": "RELAIS ORGEVAL", - "Marque": "Total Access" + "name": "RELAIS ORGEVAL", + "brand": "Total Access" }, "78630011": { - "Nom": "RELAIS ORGEVAL - BENO", - "Marque": "Total Access" + "name": "RELAIS ORGEVAL - BENO", + "brand": "Total Access" }, "78650002": { - "Nom": "GGE DE FLEUBERT G.V.", - "Marque": "Total" + "name": "GGE DE FLEUBERT G.V.", + "brand": "Total" }, "78660003": { - "Nom": "BRUMANUMACLE U EXPRESS", - "Marque": "Système U" + "name": "BRUMANUMACLE U EXPRESS", + "brand": "Système U" }, "78660004": { - "Nom": "RELAIS DE PRUNAY", - "Marque": "Total" + "name": "RELAIS DE PRUNAY", + "brand": "Total" }, "78680002": { - "Nom": "SARL POMMIER BENOIT FILS", - "Marque": "Total" + "name": "SARL POMMIER BENOIT FILS", + "brand": "Total" }, "78680004": { - "Nom": "RELAIS DE LA MAULDRE", - "Marque": "Total Access" + "name": "RELAIS DE LA MAULDRE", + "brand": "Total Access" }, "78690002": { - "Nom": "U express", - "Marque": "Système U" + "name": "U express", + "brand": "Système U" }, "78690003": { - "Nom": "RELAIS LES ESSARTS LE ROI", - "Marque": "Total Access" + "name": "RELAIS LES ESSARTS LE ROI", + "brand": "Total Access" }, "78700001": { - "Nom": "AUCHAN SUPERMARCHÉ", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHÉ", + "brand": "Auchan" }, "78700002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "78700003": { - "Nom": "GGE FOCH", - "Marque": "Total" + "name": "GGE FOCH", + "brand": "Total" }, "78700010": { - "Nom": "BP CONFLANS STE HONORINE RN184", - "Marque": "BP" + "name": "BP CONFLANS STE HONORINE RN184", + "brand": "BP" }, "78700011": { - "Nom": "BP CONFLANS STE HONORINE RN184", - "Marque": "BP" + "name": "BP CONFLANS STE HONORINE RN184", + "brand": "BP" }, "78702001": { - "Nom": "SODICO EXPANSION", - "Marque": "Leclerc" + "name": "SODICO EXPANSION", + "brand": "Leclerc" }, "78710002": { - "Nom": "AIRE DE ROSNY DIRECTION PROVINCE", - "Marque": "Avia" + "name": "AIRE DE ROSNY DIRECTION PROVINCE", + "brand": "Avia" }, "78710003": { - "Nom": "SHELL ROSNY SUD", - "Marque": "Shell" + "name": "SHELL ROSNY SUD", + "brand": "Shell" }, "78711002": { - "Nom": "SOS PETRO", - "Marque": "SOS PETRO" + "name": "SOS PETRO", + "brand": "SOS PETRO" }, "78730001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "78760004": { - "Nom": "RELAIS Total Access JOUARS", - "Marque": "Total Access" + "name": "RELAIS Total Access JOUARS", + "brand": "Total Access" }, "78770001": { - "Nom": "G20 THOIRY", - "Marque": "G20" + "name": "G20 THOIRY", + "brand": "G20" }, "78800001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "78800003": { - "Nom": "ACC2 SARL", - "Marque": "Avia" + "name": "ACC2 SARL", + "brand": "Avia" }, "78800004": { - "Nom": "ESSO GRAND CERF", - "Marque": "Esso Express" + "name": "ESSO GRAND CERF", + "brand": "Esso Express" }, "78800006": { - "Nom": "RELAIS LA VAUDOIRE", - "Marque": "Total Access" + "name": "RELAIS LA VAUDOIRE", + "brand": "Total Access" }, "78820001": { - "Nom": "SUpER U", - "Marque": "Système U" + "name": "SUpER U", + "brand": "Système U" }, "78840001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "78840003": { - "Nom": "Intermarché FRENEUSE", - "Marque": "Intermarché" + "name": "Intermarché FRENEUSE", + "brand": "Intermarché" }, "78885001": { - "Nom": "Carrefour St Quentin en Yvelines", - "Marque": "Carrefour" + "name": "Carrefour St Quentin en Yvelines", + "brand": "Carrefour" }, "78890002": { - "Nom": "CASINO GARANCIERES", - "Marque": "Casino" + "name": "CASINO GARANCIERES", + "brand": "Casino" }, "78910001": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "78920003": { - "Nom": "BP ECQUEVILLY LA CHAMOISERIE", - "Marque": "BP" + "name": "BP ECQUEVILLY LA CHAMOISERIE", + "brand": "BP" }, "78940001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "78955001": { - "Nom": "SODICA CARRIERES", - "Marque": "Leclerc" + "name": "SODICA CARRIERES", + "brand": "Leclerc" }, "78960001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "78960003": { - "Nom": "BP ST QUENTIN CD 36", - "Marque": "BP" + "name": "BP ST QUENTIN CD 36", + "brand": "BP" }, "78970001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "78980001": { - "Nom": "Intermarché BREVAL", - "Marque": "Intermarché" + "name": "Intermarché BREVAL", + "brand": "Intermarché" }, "78980002": { - "Nom": "LONGNES AUTOMOBILES", - "Marque": "Total" + "name": "LONGNES AUTOMOBILES", + "brand": "Total" }, "78990004": { - "Nom": "Intermarché ELANCOURT", - "Marque": "Intermarché" + "name": "Intermarché ELANCOURT", + "brand": "Intermarché" }, "79000001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "79000002": { - "Nom": "Carrefour NIORT", - "Marque": "Carrefour" + "name": "Carrefour NIORT", + "brand": "Carrefour" }, "79000005": { - "Nom": "SARL ROBIN", - "Marque": "Total" + "name": "SARL ROBIN", + "brand": "Total" }, "79000008": { - "Nom": "Intermarché NIORT AIFFRES", - "Marque": "Intermarché" + "name": "Intermarché NIORT AIFFRES", + "brand": "Intermarché" }, "79000009": { - "Nom": "Intermarché NIORT", - "Marque": "Intermarché" + "name": "Intermarché NIORT", + "brand": "Intermarché" }, "79000010": { - "Nom": "CASINO", - "Marque": "Super Casino" + "name": "CASINO", + "brand": "Super Casino" }, "79000012": { - "Nom": "ESSO EXPRESS NIORT OCEAN", - "Marque": "Esso Express" + "name": "ESSO EXPRESS NIORT OCEAN", + "brand": "Esso Express" }, "79000013": { - "Nom": "RELAIS DE LA SEVRE", - "Marque": "Total Access" + "name": "RELAIS DE LA SEVRE", + "brand": "Total Access" }, "79000014": { - "Nom": "Leclerc", - "Marque": "Leclerc" + "name": "Leclerc", + "brand": "Leclerc" }, "79000015": { - "Nom": "Intermarché Station-service Niort Av de Nantes", - "Marque": "Intermarché" + "name": "Intermarché Station-service Niort Av de Nantes", + "brand": "Intermarché" }, "79004001": { - "Nom": "NIORT OUEST DISTRIBUTION", - "Marque": "Leclerc" + "name": "NIORT OUEST DISTRIBUTION", + "brand": "Leclerc" }, "79025001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "79025002": { - "Nom": "TRENTE ORMEAUX DISTRIBUTION", - "Marque": "Leclerc" + "name": "TRENTE ORMEAUX DISTRIBUTION", + "brand": "Leclerc" }, "79100001": { - "Nom": "Super U THOUARS", - "Marque": "Système U" + "name": "Super U THOUARS", + "brand": "Système U" }, "79100002": { - "Nom": "S.A.R.L EDIMO EKO", - "Marque": "Total" + "name": "S.A.R.L EDIMO EKO", + "brand": "Total" }, "79100003": { - "Nom": "THOUARS DISTRIBUTION", - "Marque": "Leclerc" + "name": "THOUARS DISTRIBUTION", + "brand": "Leclerc" }, "79100006": { - "Nom": "EURL LES 3 PILIERS", - "Marque": "Total" + "name": "EURL LES 3 PILIERS", + "brand": "Total" }, "79100007": { - "Nom": "Eirana", - "Marque": "Eirana" + "name": "Eirana", + "brand": "Eirana" }, "79110001": { - "Nom": "U Express Coop Atlantique Chef-Boutonne", - "Marque": "Système U" + "name": "U Express Coop Atlantique Chef-Boutonne", + "brand": "Système U" }, "79110002": { - "Nom": "AVIA STATION SERVICE BECHON", - "Marque": "Avia" + "name": "AVIA STATION SERVICE BECHON", + "brand": "Avia" }, "79110003": { - "Nom": "Intermarché CHEF BOUTONNE", - "Marque": "Intermarché" + "name": "Intermarché CHEF BOUTONNE", + "brand": "Intermarché" }, "79120001": { - "Nom": "Intermarché LEZAY", - "Marque": "Intermarché" + "name": "Intermarché LEZAY", + "brand": "Intermarché" }, "79130001": { - "Nom": "Super U SECONDIGNY", - "Marque": "Système U" + "name": "Super U SECONDIGNY", + "brand": "Système U" }, "79140001": { - "Nom": "Super U CERIZAY", - "Marque": "Système U" + "name": "Super U CERIZAY", + "brand": "Système U" }, "79140002": { - "Nom": "Mme RIVELON Marie line", - "Marque": "Total" + "name": "Mme RIVELON Marie line", + "brand": "Total" }, "79150001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "79160001": { - "Nom": "Super U COULONGES SUR L'AUTIZE", - "Marque": "Système U" + "name": "Super U COULONGES SUR L'AUTIZE", + "brand": "Système U" }, "79160002": { - "Nom": "SODIPLEC Niort Canepetière", - "Marque": "Leclerc" + "name": "SODIPLEC Niort Canepetière", + "brand": "Leclerc" }, "79160003": { - "Nom": "SODIPLEC Niort Chateaudrie", - "Marque": "Leclerc" + "name": "SODIPLEC Niort Chateaudrie", + "brand": "Leclerc" }, "79170001": { - "Nom": "Intermarché BRIOUX SUR BOUTONNE", - "Marque": "Intermarché" + "name": "Intermarché BRIOUX SUR BOUTONNE", + "brand": "Intermarché" }, "79180002": { - "Nom": "RELAIS NIORT CHAURAY", - "Marque": "Total Access" + "name": "RELAIS NIORT CHAURAY", + "brand": "Total Access" }, "79180003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "79180005": { - "Nom": "Carrefour Contact Chauray", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact Chauray", + "brand": "Carrefour Contact" }, "79190001": { - "Nom": "Super U SAUZE VAUSSAIS", - "Marque": "Système U" + "name": "Super U SAUZE VAUSSAIS", + "brand": "Système U" }, "79200001": { - "Nom": "Hyper U PARTHENAY", - "Marque": "Système U" + "name": "Hyper U PARTHENAY", + "brand": "Système U" }, "79200003": { - "Nom": "Station route de Bressuire", - "Marque": "Leclerc" + "name": "Station route de Bressuire", + "brand": "Leclerc" }, "79200005": { - "Nom": "DUBREUIL STATION CHATILLON", - "Marque": "Esso" + "name": "DUBREUIL STATION CHATILLON", + "brand": "Esso" }, "79200006": { - "Nom": "TS 92 PARTHENAY", - "Marque": "Avia" + "name": "TS 92 PARTHENAY", + "brand": "Avia" }, "79200007": { - "Nom": "TS 92 CHATELLERAULT", - "Marque": "Avia" + "name": "TS 92 CHATELLERAULT", + "brand": "Avia" }, "79200008": { - "Nom": "HYPER CASINO POMPAIRE CM 819", - "Marque": "CASINO" + "name": "HYPER CASINO POMPAIRE CM 819", + "brand": "CASINO" }, "79208001": { - "Nom": "PARTHENAY-DISTRIBUTION", - "Marque": "Leclerc" + "name": "PARTHENAY-DISTRIBUTION", + "brand": "Leclerc" }, "79210001": { - "Nom": "Intermarché MAUZE SUR LE MIGNON", - "Marque": "Intermarché" + "name": "Intermarché MAUZE SUR LE MIGNON", + "brand": "Intermarché" }, "79220001": { - "Nom": "Super U CHAMPDENIERS", - "Marque": "Système U" + "name": "Super U CHAMPDENIERS", + "brand": "Système U" }, "79230003": { - "Nom": "FIEF JOLY", - "Marque": "Total" + "name": "FIEF JOLY", + "brand": "Total" }, "79230004": { - "Nom": "Dupe Troll Station SHELL", - "Marque": "Shell" + "name": "Dupe Troll Station SHELL", + "brand": "Shell" }, "79230005": { - "Nom": "RELAIS VENISE VERTE", - "Marque": "Total" + "name": "RELAIS VENISE VERTE", + "brand": "Total" }, "79240003": { - "Nom": "magabsie", - "Marque": "Carrefour Contact" + "name": "magabsie", + "brand": "Carrefour Contact" }, "79250002": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "79260004": { - "Nom": "LA CRECHE", - "Marque": "Carrefour Contact" + "name": "LA CRECHE", + "brand": "Carrefour Contact" }, "79300001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "79300005": { - "Nom": "Bocage distribution", - "Marque": "Leclerc" + "name": "Bocage distribution", + "brand": "Leclerc" }, "79300006": { - "Nom": "Bocage distribution", - "Marque": "Leclerc" + "name": "Bocage distribution", + "brand": "Leclerc" }, "79310001": { - "Nom": "SARL MARTIN SERVICE AUTO", - "Marque": "Total" + "name": "SARL MARTIN SERVICE AUTO", + "brand": "Total" }, "79320001": { - "Nom": "Super U MONCOUTANT", - "Marque": "Système U" + "name": "Super U MONCOUTANT", + "brand": "Système U" }, "79330001": { - "Nom": "Intermarché ST-VARENT", - "Marque": "Intermarché" + "name": "Intermarché ST-VARENT", + "brand": "Intermarché" }, "79360001": { - "Nom": "Intermarché BEAUVOIR SUR NIORT", - "Marque": "Intermarché" + "name": "Intermarché BEAUVOIR SUR NIORT", + "brand": "Intermarché" }, "79370001": { - "Nom": "Intermarché CELLES SUR BELLE", - "Marque": "Intermarché" + "name": "Intermarché CELLES SUR BELLE", + "brand": "Intermarché" }, "79370002": { - "Nom": "Spar", - "Marque": "Supermarchés Spar" + "name": "Spar", + "brand": "Supermarchés Spar" }, "79390005": { - "Nom": "Carrefour Contact Thenezay", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact Thenezay", + "brand": "Carrefour Contact" }, "79400003": { - "Nom": "SAINT-MAIXENT-DIS", - "Marque": "Leclerc" + "name": "SAINT-MAIXENT-DIS", + "brand": "Leclerc" }, "79400004": { - "Nom": "Intermarché ST MAIXENT L'ECOLE", - "Marque": "Intermarché" + "name": "Intermarché ST MAIXENT L'ECOLE", + "brand": "Intermarché" }, "79410001": { - "Nom": "Super U ECHIRE", - "Marque": "Système U" + "name": "Super U ECHIRE", + "brand": "Système U" }, "79430001": { - "Nom": "CLISSON", - "Marque": "Elan" + "name": "CLISSON", + "brand": "Elan" }, "79460001": { - "Nom": "Super U MAGNE", - "Marque": "Système U" + "name": "Super U MAGNE", + "brand": "Système U" }, "79500002": { - "Nom": "Super U ST LEGER DE LA MARTINIERE", - "Marque": "Système U" + "name": "Super U ST LEGER DE LA MARTINIERE", + "brand": "Système U" }, "79500003": { - "Nom": "GARAGE CHAILLOIS", - "Marque": "Avia" + "name": "GARAGE CHAILLOIS", + "brand": "Avia" }, "79500004": { - "Nom": "MR REBERRI - GARAGE DE LA COLONNE", - "Marque": "Total" + "name": "MR REBERRI - GARAGE DE LA COLONNE", + "brand": "Total" }, "79500005": { - "Nom": "Intermarché ST LEGER SUR MELLE", - "Marque": "Intermarché" + "name": "Intermarché ST LEGER SUR MELLE", + "brand": "Intermarché" }, "79500006": { - "Nom": "LEADER PRICE MELLE", - "Marque": "Leader Price" + "name": "LEADER PRICE MELLE", + "brand": "Leader Price" }, "79510002": { - "Nom": "ESTENOZA", - "Marque": "Elan" + "name": "ESTENOZA", + "brand": "Elan" }, "79600001": { - "Nom": "GARAGE BERTHONNEAU", - "Marque": "Avia" + "name": "GARAGE BERTHONNEAU", + "brand": "Avia" }, "79600003": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "79700001": { - "Nom": "Super U MAULEON", - "Marque": "Système U" + "name": "Super U MAULEON", + "brand": "Système U" }, "79800008": { - "Nom": "ROMPETROL Pamproux", - "Marque": "Dyneff" + "name": "ROMPETROL Pamproux", + "brand": "Dyneff" }, "79800011": { - "Nom": "RELAIS DU POITOU", - "Marque": "Total" + "name": "RELAIS DU POITOU", + "brand": "Total" }, "79800012": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "80000004": { - "Nom": "BP A29 AIRE DE VILLERS BRETONNEUX", - "Marque": "BP" + "name": "BP A29 AIRE DE VILLERS BRETONNEUX", + "brand": "BP" }, "80000007": { - "Nom": "ESSO PICARDIE", - "Marque": "Esso Express" + "name": "ESSO PICARDIE", + "brand": "Esso Express" }, "80000008": { - "Nom": "ESSO ST ROCH AMIENS", - "Marque": "Esso Express" + "name": "ESSO ST ROCH AMIENS", + "brand": "Esso Express" }, "80000009": { - "Nom": "ESSO ST ACHEUL", - "Marque": "Esso Express" + "name": "ESSO ST ACHEUL", + "brand": "Esso Express" }, "80000012": { - "Nom": "Intermarché Amiens 2", - "Marque": "Intermarché" + "name": "Intermarché Amiens 2", + "brand": "Intermarché" }, "80000013": { - "Nom": "Total RELAIS AMIENS PORT D AVAL", - "Marque": "Total" + "name": "Total RELAIS AMIENS PORT D AVAL", + "brand": "Total" }, "80000014": { - "Nom": "NETTO - SARL ASTERIV AMIENS", - "Marque": "Netto" + "name": "NETTO - SARL ASTERIV AMIENS", + "brand": "Netto" }, "80000018": { - "Nom": "BP AMIENS SANTERRE", - "Marque": "BP" + "name": "BP AMIENS SANTERRE", + "brand": "BP" }, "80044001": { - "Nom": "AUCHAN Station-Service Amiens", - "Marque": "Auchan" + "name": "AUCHAN Station-Service Amiens", + "brand": "Auchan" }, "80046003": { - "Nom": "BP AMIENS LONGPRE", - "Marque": "BP" + "name": "BP AMIENS LONGPRE", + "brand": "BP" }, "80090003": { - "Nom": "BP AMIENS HENRIVILLE", - "Marque": "BP" + "name": "BP AMIENS HENRIVILLE", + "brand": "BP" }, "80100001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "80100002": { - "Nom": "Hyper U ABBEVILLE", - "Marque": "Système U" + "name": "Hyper U ABBEVILLE", + "brand": "Système U" }, "80100003": { - "Nom": "SARL BVS DISTRI PLUS", - "Marque": "Carrefour Contact" + "name": "SARL BVS DISTRI PLUS", + "brand": "Carrefour Contact" }, "80100004": { - "Nom": "TERRIER", - "Marque": "Total" + "name": "TERRIER", + "brand": "Total" }, "80100007": { - "Nom": "ESSO ABBEVILLOISE", - "Marque": "Esso Express" + "name": "ESSO ABBEVILLOISE", + "brand": "Esso Express" }, "80100009": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "80100010": { - "Nom": "RELAIS ABBEVILLE REPUBLIQUE", - "Marque": "Total Access" + "name": "RELAIS ABBEVILLE REPUBLIQUE", + "brand": "Total Access" }, "80110001": { - "Nom": "STATION SERVICE Total", - "Marque": "Total" + "name": "STATION SERVICE Total", + "brand": "Total" }, "80110002": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "80120001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "80120002": { - "Nom": "GARAGE DELORME", - "Marque": "Elan" + "name": "GARAGE DELORME", + "brand": "Elan" }, "80120003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "80120004": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "80130003": { - "Nom": "Intermarché FRIVILLE-ESCARBOTIN", - "Marque": "Intermarché" + "name": "Intermarché FRIVILLE-ESCARBOTIN", + "brand": "Intermarché" }, "80135001": { - "Nom": "Intermarché Contact SA CIVIEN", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact SA CIVIEN", + "brand": "Intermarché Contact" }, "80136001": { - "Nom": "RIVERY EXPLOITATION SAS", - "Marque": "Leclerc" + "name": "RIVERY EXPLOITATION SAS", + "brand": "Leclerc" }, "80136003": { - "Nom": "LM", - "Marque": "Indépendant sans enseigne" + "name": "LM", + "brand": "Indépendant sans enseigne" }, "80140001": { - "Nom": "BP A28 AIRE DE TRANSLAY EST", - "Marque": "BP" + "name": "BP A28 AIRE DE TRANSLAY EST", + "brand": "BP" }, "80140003": { - "Nom": "Intermarché OISEMONT", - "Marque": "Intermarché" + "name": "Intermarché OISEMONT", + "brand": "Intermarché" }, "80140004": { - "Nom": "ESPACE AUTO", - "Marque": "Elan" + "name": "ESPACE AUTO", + "brand": "Elan" }, "80140005": { - "Nom": "BP A28 AIRE DE TRANSLAY OUEST", - "Marque": "BP" + "name": "BP A28 AIRE DE TRANSLAY OUEST", + "brand": "BP" }, "80140006": { - "Nom": "BP A28 AIRE DE TRANSLAY EST", - "Marque": "BP" + "name": "BP A28 AIRE DE TRANSLAY EST", + "brand": "BP" }, "80150001": { - "Nom": "Sarl LA FORET", - "Marque": "Carrefour Contact" + "name": "Sarl LA FORET", + "brand": "Carrefour Contact" }, "80160003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "80160004": { - "Nom": "SAS GARAGE SEILDLER", - "Marque": "Elan" + "name": "SAS GARAGE SEILDLER", + "brand": "Elan" }, "80170001": { - "Nom": "Intermarché ROSIERES-EN-SANTERRE", - "Marque": "Intermarché" + "name": "Intermarché ROSIERES-EN-SANTERRE", + "brand": "Intermarché" }, "80190001": { - "Nom": "GARAGES FRANCOIS", - "Marque": "Total" + "name": "GARAGES FRANCOIS", + "brand": "Total" }, "80190002": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "80190003": { - "Nom": "Intermarche gamaches", - "Marque": "Intermarché" + "name": "Intermarche gamaches", + "brand": "Intermarché" }, "80200003": { - "Nom": "Relais de la Chapelette", - "Marque": "Total" + "name": "Relais de la Chapelette", + "brand": "Total" }, "80200005": { - "Nom": "ESSO ASSEVILLERS", - "Marque": "Esso" + "name": "ESSO ASSEVILLERS", + "brand": "Esso" }, "80200007": { - "Nom": "Intermarché PERONNE", - "Marque": "Intermarché" + "name": "Intermarché PERONNE", + "brand": "Intermarché" }, "80200011": { - "Nom": "LECLERC Peronne", - "Marque": "Leclerc" + "name": "LECLERC Peronne", + "brand": "Leclerc" }, "80200012": { - "Nom": "BP ASSEVILLERS EST", - "Marque": "BP" + "name": "BP ASSEVILLERS EST", + "brand": "BP" }, "80210002": { - "Nom": "EOR GARAGE DU VIMEU SA", - "Marque": "Total" + "name": "EOR GARAGE DU VIMEU SA", + "brand": "Total" }, "80220001": { - "Nom": "SARL ETS FREDERIC", - "Marque": "Elan" + "name": "SARL ETS FREDERIC", + "brand": "Elan" }, "80220003": { - "Nom": "Intermarché BOUTTENCOURT", - "Marque": "Intermarché" + "name": "Intermarché BOUTTENCOURT", + "brand": "Intermarché" }, "80230002": { - "Nom": "Intermarché ST-VALERY-SUR-SOMME", - "Marque": "Intermarché" + "name": "Intermarché ST-VALERY-SUR-SOMME", + "brand": "Intermarché" }, "80230003": { - "Nom": "Carrefour Market SARL CHAMAX", - "Marque": "Carrefour Market" + "name": "Carrefour Market SARL CHAMAX", + "brand": "Carrefour Market" }, "80230004": { - "Nom": "GARAGE DE ST VAL", - "Marque": "Total" + "name": "GARAGE DE ST VAL", + "brand": "Total" }, "80240001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "80250001": { - "Nom": "Intermarché AILLY/NOYE", - "Marque": "Intermarché" + "name": "Intermarché AILLY/NOYE", + "brand": "Intermarché" }, "80260001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "80260002": { - "Nom": "M. DEFRANSURE CLAUDE", - "Marque": "Total" + "name": "M. DEFRANSURE CLAUDE", + "brand": "Total" }, "80260003": { - "Nom": "SAS XEAUPRED STATION Intermarché", - "Marque": "Intermarché" + "name": "SAS XEAUPRED STATION Intermarché", + "brand": "Intermarché" }, "80270001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "80290001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "80290002": { - "Nom": "EURL LAGAND", - "Marque": "Total" + "name": "EURL LAGAND", + "brand": "Total" }, "80290003": { - "Nom": "BP A29 CROIXRAULT", - "Marque": "BP" + "name": "BP A29 CROIXRAULT", + "brand": "BP" }, "80300001": { - "Nom": "SUPER U ALBERT", - "Marque": "Système U" + "name": "SUPER U ALBERT", + "brand": "Système U" }, "80300004": { - "Nom": "Carrefour AMIENS", - "Marque": "Carrefour" + "name": "Carrefour AMIENS", + "brand": "Carrefour" }, "80300005": { - "Nom": "Intermarché ALBERT", - "Marque": "Intermarché" + "name": "Intermarché ALBERT", + "brand": "Intermarché" }, "80300006": { - "Nom": "RELAIS D'ALBERT", - "Marque": "Total" + "name": "RELAIS D'ALBERT", + "brand": "Total" }, "80320001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "80330004": { - "Nom": "RELAIS LA FOURCHE", - "Marque": "Total" + "name": "RELAIS LA FOURCHE", + "brand": "Total" }, "80340002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour" + "name": "Carrefour Contact", + "brand": "Carrefour" }, "80340003": { - "Nom": "sarl vanderstraeten", - "Marque": "Indépendant sans enseigne" + "name": "sarl vanderstraeten", + "brand": "Indépendant sans enseigne" }, "80350001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "80370002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "80380001": { - "Nom": "AJC DISTRIBUTION", - "Marque": "Total" + "name": "AJC DISTRIBUTION", + "brand": "Total" }, "80400001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "80400004": { - "Nom": "LECLERC MUILLE VILLETTE", - "Marque": "Leclerc" + "name": "LECLERC MUILLE VILLETTE", + "brand": "Leclerc" }, "80410004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "80420001": { - "Nom": "LEADER PRICE FLIXECOURT", - "Marque": "LE MUTANT" + "name": "LEADER PRICE FLIXECOURT", + "brand": "LE MUTANT" }, "80420003": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "80420004": { - "Nom": "Intermarché FLIXECOURT", - "Marque": "Intermarché" + "name": "Intermarché FLIXECOURT", + "brand": "Intermarché" }, "80430002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "80440001": { - "Nom": "GEANT CASINO", - "Marque": "Casino" + "name": "GEANT CASINO", + "brand": "Casino" }, "80450001": { - "Nom": "Intermarché CAMON", - "Marque": "Intermarché" + "name": "Intermarché CAMON", + "brand": "Intermarché" }, "80460003": { - "Nom": "Carrefour Contact AULT", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact AULT", + "brand": "Carrefour Contact" }, "80470001": { - "Nom": "STATION BP CARPENTIER DEVIGNE", - "Marque": "BP" + "name": "STATION BP CARPENTIER DEVIGNE", + "brand": "BP" }, "80480001": { - "Nom": "ESSO DE NORMANDIE", - "Marque": "Esso Express" + "name": "ESSO DE NORMANDIE", + "brand": "Esso Express" }, "80480002": { - "Nom": "S.D.S.", - "Marque": "Leclerc" + "name": "S.D.S.", + "brand": "Leclerc" }, "80480003": { - "Nom": "Intermarché SALEUX", - "Marque": "Intermarché" + "name": "Intermarché SALEUX", + "brand": "Intermarché" }, "80480004": { - "Nom": "STATION SERVICE Total", - "Marque": "Total" + "name": "STATION SERVICE Total", + "brand": "Total" }, "80500001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "80500003": { - "Nom": "SAS SODIDIER EXPLOITATION", - "Marque": "Leclerc" + "name": "SAS SODIDIER EXPLOITATION", + "brand": "Leclerc" }, "80500004": { - "Nom": "SARL GBL AUTOMOBILES", - "Marque": "Total" + "name": "SARL GBL AUTOMOBILES", + "brand": "Total" }, "80510003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "80550001": { - "Nom": "Carrefour-Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour-Contact", + "brand": "Carrefour Contact" }, "80560001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché" + "name": "Intermarché Contact", + "brand": "Intermarché" }, "80570001": { - "Nom": "SARL VAL MAG", - "Marque": "Carrefour Contact" + "name": "SARL VAL MAG", + "brand": "Carrefour Contact" }, "80580001": { - "Nom": "SODIPONT", - "Marque": "Leclerc" + "name": "SODIPONT", + "brand": "Leclerc" }, "80590001": { - "Nom": "GALOT PASCAL", - "Marque": "Total" + "name": "GALOT PASCAL", + "brand": "Total" }, "80590002": { - "Nom": "NETTO GAUVILLE", - "Marque": "Netto" + "name": "NETTO GAUVILLE", + "brand": "Netto" }, "80600001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "80600002": { - "Nom": "Supermarché Match DOULLENS", - "Marque": "Supermarché Match" + "name": "Supermarché Match DOULLENS", + "brand": "Supermarché Match" }, "80600003": { - "Nom": "M.MARECHAL", - "Marque": "Total" + "name": "M.MARECHAL", + "brand": "Total" }, "80600004": { - "Nom": "EOR DOULLENS GOGETI", - "Marque": "Total" + "name": "EOR DOULLENS GOGETI", + "brand": "Total" }, "80600005": { - "Nom": "Intermarché SAS NATHALEX", - "Marque": "Intermarché" + "name": "Intermarché SAS NATHALEX", + "brand": "Intermarché" }, "80690001": { - "Nom": "COURONNEL", - "Marque": "Elan" + "name": "COURONNEL", + "brand": "Elan" }, "80700004": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "80700009": { - "Nom": "RELAIS ROYE LE MOULIN", - "Marque": "Total Access" + "name": "RELAIS ROYE LE MOULIN", + "brand": "Total Access" }, "80700010": { - "Nom": "BP ROYE CD 54 TRUCKSTOP", - "Marque": "BP" + "name": "BP ROYE CD 54 TRUCKSTOP", + "brand": "BP" }, "80730001": { - "Nom": "GGE DE ST LEGER", - "Marque": "Total" + "name": "GGE DE ST LEGER", + "brand": "Total" }, "80800001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "80800002": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "80800004": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "80850001": { - "Nom": "Intermarché SUPER", - "Marque": "Intermarché" + "name": "Intermarché SUPER", + "brand": "Intermarché" }, "80970003": { - "Nom": "SHELL BAIE DE SOMME", - "Marque": "Shell" + "name": "SHELL BAIE DE SOMME", + "brand": "Shell" }, "81000001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "81000002": { - "Nom": "RELAIS DES FONTANELLES", - "Marque": "Total" + "name": "RELAIS DES FONTANELLES", + "brand": "Total" }, "81000003": { - "Nom": "STATION Total BRUZZECHESSE", - "Marque": "Total" + "name": "STATION Total BRUZZECHESSE", + "brand": "Total" }, "81000004": { - "Nom": "AUTO 81 SARL", - "Marque": "Indépendant sans enseigne" + "name": "AUTO 81 SARL", + "brand": "Indépendant sans enseigne" }, "81000005": { - "Nom": "ESSO DU STADE ALBI", - "Marque": "Esso Express" + "name": "ESSO DU STADE ALBI", + "brand": "Esso Express" }, "81000007": { - "Nom": "HYPERCASINO", - "Marque": "Casino" + "name": "HYPERCASINO", + "brand": "Casino" }, "81000008": { - "Nom": "SARL PASTRE ETS", - "Marque": "Elan" + "name": "SARL PASTRE ETS", + "brand": "Elan" }, "81000009": { - "Nom": "LECLERC ALBI", - "Marque": "Leclerc" + "name": "LECLERC ALBI", + "brand": "Leclerc" }, "81000010": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "81000011": { - "Nom": "SARL RELAIS DE LA FAIENCERIE", - "Marque": "Fina" + "name": "SARL RELAIS DE LA FAIENCERIE", + "brand": "Fina" }, "81100001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "81100003": { - "Nom": "REL.SAINT PONS", - "Marque": "Total" + "name": "REL.SAINT PONS", + "brand": "Total" }, "81100004": { - "Nom": "ESSO MIREDAMES", - "Marque": "Esso Express" + "name": "ESSO MIREDAMES", + "brand": "Esso Express" }, "81100005": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "81100006": { - "Nom": "NETTO LAMEILHE", - "Marque": "Netto" + "name": "NETTO LAMEILHE", + "brand": "Netto" }, "81100007": { - "Nom": "Intermarché CASTRES", - "Marque": "Intermarché" + "name": "Intermarché CASTRES", + "brand": "Intermarché" }, "81100008": { - "Nom": "LECADIS SAS", - "Marque": "Leclerc" + "name": "LECADIS SAS", + "brand": "Leclerc" }, "81115001": { - "Nom": "CENTRE COMMERCIAL GRAND-SUD", - "Marque": "Auchan" + "name": "CENTRE COMMERCIAL GRAND-SUD", + "brand": "Auchan" }, "81120001": { - "Nom": "GARAGE Yannick MICHEL", - "Marque": "Total" + "name": "GARAGE Yannick MICHEL", + "brand": "Total" }, "81120002": { - "Nom": "Intermarché REALMONT", - "Marque": "Intermarché" + "name": "Intermarché REALMONT", + "brand": "Intermarché" }, "81130001": { - "Nom": "SAS JUMACAP", - "Marque": "Intermarché" + "name": "SAS JUMACAP", + "brand": "Intermarché" }, "81150003": { - "Nom": "STATION Total", - "Marque": "Total" + "name": "STATION Total", + "brand": "Total" }, "81160001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "81170001": { - "Nom": "Sarl atra", - "Marque": "Total" + "name": "Sarl atra", + "brand": "Total" }, "81190002": { - "Nom": "Station de la Croix de Mille", - "Marque": "Indépendant sans enseigne" + "name": "Station de la Croix de Mille", + "brand": "Indépendant sans enseigne" }, "81200001": { - "Nom": "STATION D'AUSSILLON", - "Marque": "Total" + "name": "STATION D'AUSSILLON", + "brand": "Total" }, "81200002": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "81200003": { - "Nom": "Intermarché AUSSILLON MAZAMET", - "Marque": "Intermarché" + "name": "Intermarché AUSSILLON MAZAMET", + "brand": "Intermarché" }, "81200004": { - "Nom": "RELAIS DU SUD OUEST", - "Marque": "Esso" + "name": "RELAIS DU SUD OUEST", + "brand": "Esso" }, "81220001": { - "Nom": "LOPEZ ANNE-MARIE", - "Marque": "Elan" + "name": "LOPEZ ANNE-MARIE", + "brand": "Elan" }, "81230001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "81230002": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "81230004": { - "Nom": "SAS FONTANILLES", - "Marque": "Elan" + "name": "SAS FONTANILLES", + "brand": "Elan" }, "81250003": { - "Nom": "GARAGE CORBIERE", - "Marque": "Total" + "name": "GARAGE CORBIERE", + "brand": "Total" }, "81250004": { - "Nom": "Carrefour Contact alban", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact alban", + "brand": "Carrefour Contact" }, "81260001": { - "Nom": "BARDOU GARAGE", - "Marque": "Station B" + "name": "BARDOU GARAGE", + "brand": "Station B" }, "81290001": { - "Nom": "ETS ARQUIER ET FILS", - "Marque": "Dyneff" + "name": "ETS ARQUIER ET FILS", + "brand": "Dyneff" }, "81290002": { - "Nom": "Intermarché LABRUGUIERE", - "Marque": "Intermarché" + "name": "Intermarché LABRUGUIERE", + "brand": "Intermarché" }, "81300001": { - "Nom": "GRAULHET-DISTRIBUTION", - "Marque": "Leclerc" + "name": "GRAULHET-DISTRIBUTION", + "brand": "Leclerc" }, "81300003": { - "Nom": "GRIGOLATO GARAGE", - "Marque": "Total" + "name": "GRIGOLATO GARAGE", + "brand": "Total" }, "81300004": { - "Nom": "Intermarché GRAULHET", - "Marque": "Intermarché" + "name": "Intermarché GRAULHET", + "brand": "Intermarché" }, "81300005": { - "Nom": "NETTO GRAULHET", - "Marque": "Netto" + "name": "NETTO GRAULHET", + "brand": "Netto" }, "81310001": { - "Nom": "EURL DE LA RN 88", - "Marque": "Total" + "name": "EURL DE LA RN 88", + "brand": "Total" }, "81310003": { - "Nom": "Intermarché LISLE SUR TARN", - "Marque": "Intermarché" + "name": "Intermarché LISLE SUR TARN", + "brand": "Intermarché" }, "81320001": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "81370001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "81370002": { - "Nom": "GOMEZ SOCIETE NOUVELLE", - "Marque": "Elan" + "name": "GOMEZ SOCIETE NOUVELLE", + "brand": "Elan" }, "81370003": { - "Nom": "STATION DU PARC", - "Marque": "Indépendant sans enseigne" + "name": "STATION DU PARC", + "brand": "Indépendant sans enseigne" }, "81380001": { - "Nom": "E.LECLERC LESCURE", - "Marque": "Leclerc" + "name": "E.LECLERC LESCURE", + "brand": "Leclerc" }, "81400001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "81400002": { - "Nom": "MME CASTRO ANNIE CLAUDETT", - "Marque": "Total" + "name": "MME CASTRO ANNIE CLAUDETT", + "brand": "Total" }, "81400004": { - "Nom": "Intermarché CARMAUX", - "Marque": "Intermarché" + "name": "Intermarché CARMAUX", + "brand": "Intermarché" }, "81430001": { - "Nom": "BOUSQUET GARAGE", - "Marque": "Elan" + "name": "BOUSQUET GARAGE", + "brand": "Elan" }, "81500001": { - "Nom": "AGIP LAVAUR LA TOUR DES TONDES", - "Marque": "Agip" + "name": "AGIP LAVAUR LA TOUR DES TONDES", + "brand": "Agip" }, "81500003": { - "Nom": "Intermarché LAVAUR", - "Marque": "Intermarché" + "name": "Intermarché LAVAUR", + "brand": "Intermarché" }, "81500004": { - "Nom": "SUPER U LAVAUR SAS GAIA", - "Marque": "Système U" + "name": "SUPER U LAVAUR SAS GAIA", + "brand": "Système U" }, "81500005": { - "Nom": "LAVAUDIS", - "Marque": "Leader Price" + "name": "LAVAUDIS", + "brand": "Leader Price" }, "81540001": { - "Nom": "u express", - "Marque": "Système U" + "name": "u express", + "brand": "Système U" }, "81580001": { - "Nom": "SAS VALAURA (SUPER U)", - "Marque": "Système U" + "name": "SAS VALAURA (SUPER U)", + "brand": "Système U" }, "81600001": { - "Nom": "Centre LECLERC Gaillac", - "Marque": "Leclerc" + "name": "Centre LECLERC Gaillac", + "brand": "Leclerc" }, "81600003": { - "Nom": "Intermarché GAILLAC", - "Marque": "Intermarché" + "name": "Intermarché GAILLAC", + "brand": "Intermarché" }, "81600004": { - "Nom": "Station Leclerc Brens - A68", - "Marque": "Leclerc" + "name": "Station Leclerc Brens - A68", + "brand": "Leclerc" }, "81600005": { - "Nom": "STATION ELAN GARAGE D.R.M.T", - "Marque": "Elan" + "name": "STATION ELAN GARAGE D.R.M.T", + "brand": "Elan" }, "81600006": { - "Nom": "STATION 8", - "Marque": "Indépendant sans enseigne" + "name": "STATION 8", + "brand": "Indépendant sans enseigne" }, "81660001": { - "Nom": "SODIMAZ", - "Marque": "Leclerc" + "name": "SODIMAZ", + "brand": "Leclerc" }, "81700003": { - "Nom": "Intermarché PUYLAURENS", - "Marque": "Intermarché" + "name": "Intermarché PUYLAURENS", + "brand": "Intermarché" }, "81700005": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "81710002": { - "Nom": "RELAIS DE SAIX", - "Marque": "Total Access" + "name": "RELAIS DE SAIX", + "brand": "Total Access" }, "81800003": { - "Nom": "Station DELDOSSI", - "Marque": "Indépendant sans enseigne" + "name": "Station DELDOSSI", + "brand": "Indépendant sans enseigne" }, "81800004": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "81990001": { - "Nom": "LECLERC LE SEQUESTRE", - "Marque": "Leclerc" + "name": "LECLERC LE SEQUESTRE", + "brand": "Leclerc" }, "81990002": { - "Nom": "Intermarché ALBI LE SEQUESTRE", - "Marque": "Intermarché" + "name": "Intermarché ALBI LE SEQUESTRE", + "brand": "Intermarché" }, "81990003": { - "Nom": "Carrefour MARKET PUYGOUZON", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET PUYGOUZON", + "brand": "Carrefour Market" }, "82000006": { - "Nom": "SODIBAG", - "Marque": "Leclerc" + "name": "SODIBAG", + "brand": "Leclerc" }, "82000007": { - "Nom": "STATION KAI MONTAUBAN", - "Marque": "KAI" + "name": "STATION KAI MONTAUBAN", + "brand": "KAI" }, "82000010": { - "Nom": "E.LECLERC AUSSONNE", - "Marque": "Leclerc" + "name": "E.LECLERC AUSSONNE", + "brand": "Leclerc" }, "82000011": { - "Nom": "SAS SANOVAL", - "Marque": "Intermarché" + "name": "SAS SANOVAL", + "brand": "Intermarché" }, "82000012": { - "Nom": "Sarl Olivier", - "Marque": "Total" + "name": "Sarl Olivier", + "brand": "Total" }, "82000015": { - "Nom": "RELAIS TESCOU", - "Marque": "Total Access" + "name": "RELAIS TESCOU", + "brand": "Total Access" }, "82000016": { - "Nom": "RELAIS LARROQUE", - "Marque": "Total" + "name": "RELAIS LARROQUE", + "brand": "Total" }, "82017001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "82020001": { - "Nom": "GEANT CASINO", - "Marque": "Casino" + "name": "GEANT CASINO", + "brand": "Casino" }, "82100002": { - "Nom": "RELAIS DE LA VALETTE", - "Marque": "Total" + "name": "RELAIS DE LA VALETTE", + "brand": "Total" }, "82100003": { - "Nom": "SARL RELAIS SAINT JEAN", - "Marque": "Total" + "name": "SARL RELAIS SAINT JEAN", + "brand": "Total" }, "82100004": { - "Nom": "SA SODIART", - "Marque": "Leclerc" + "name": "SA SODIART", + "brand": "Leclerc" }, "82100005": { - "Nom": "RELAIS DE L'HIPPODROME", - "Marque": "Elan" + "name": "RELAIS DE L'HIPPODROME", + "brand": "Elan" }, "82100006": { - "Nom": "Intermarché CASTELSARRASIN", - "Marque": "Intermarché" + "name": "Intermarché CASTELSARRASIN", + "brand": "Intermarché" }, "82110001": { - "Nom": "Intermarché LAUZERTE", - "Marque": "Intermarché" + "name": "Intermarché LAUZERTE", + "brand": "Intermarché" }, "82110002": { - "Nom": "SARL VAL FLEURI", - "Marque": "Aire C" + "name": "SARL VAL FLEURI", + "brand": "Aire C" }, "82120001": { - "Nom": "Sarl val fleuri lavit", - "Marque": "Indépendant sans enseigne" + "name": "Sarl val fleuri lavit", + "brand": "Indépendant sans enseigne" }, "82130001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "82130002": { - "Nom": "GASTON", - "Marque": "Indépendant sans enseigne" + "name": "GASTON", + "brand": "Indépendant sans enseigne" }, "82140003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "82150001": { - "Nom": "ECOMARCHE MONTAIGU DE QUERCY", - "Marque": "Intermarché" + "name": "ECOMARCHE MONTAIGU DE QUERCY", + "brand": "Intermarché" }, "82160001": { - "Nom": "MR MARTINEZ MICHEL", - "Marque": "Total" + "name": "MR MARTINEZ MICHEL", + "brand": "Total" }, "82160002": { - "Nom": "SARL LE RELAIS DU CAUSSE", - "Marque": "Indépendant sans enseigne" + "name": "SARL LE RELAIS DU CAUSSE", + "brand": "Indépendant sans enseigne" }, "82170001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "82170002": { - "Nom": "STATION KAI POMPIGNAN", - "Marque": "KAI" + "name": "STATION KAI POMPIGNAN", + "brand": "KAI" }, "82200001": { - "Nom": "SARL RELAIS DU CHASSELAS", - "Marque": "Total" + "name": "SARL RELAIS DU CHASSELAS", + "brand": "Total" }, "82200003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "82200008": { - "Nom": "Intermarché HYPERMARCHE", - "Marque": "Intermarché" + "name": "Intermarché HYPERMARCHE", + "brand": "Intermarché" }, "82200009": { - "Nom": "SAS MOIGERE", - "Marque": "Intermarché" + "name": "SAS MOIGERE", + "brand": "Intermarché" }, "82210002": { - "Nom": "SODIPLEC GARONNE", - "Marque": "Leclerc" + "name": "SODIPLEC GARONNE", + "brand": "Leclerc" }, "82210003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "82220001": { - "Nom": "INTERMARCHÉ Contact VAZERAC", - "Marque": "Intermarché Contact" + "name": "INTERMARCHÉ Contact VAZERAC", + "brand": "Intermarché Contact" }, "82240001": { - "Nom": "SARL GERAUD TAMPIER", - "Marque": "Indépendant sans enseigne" + "name": "SARL GERAUD TAMPIER", + "brand": "Indépendant sans enseigne" }, "82270002": { - "Nom": "RELAIS BOIS DE DOURRE", - "Marque": "Total" + "name": "RELAIS BOIS DE DOURRE", + "brand": "Total" }, "82290001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "82290002": { - "Nom": "Sarl val fleuri montbeton", - "Marque": "Indépendant sans enseigne" + "name": "Sarl val fleuri montbeton", + "brand": "Indépendant sans enseigne" }, "82300001": { - "Nom": "Intermarché CAUSSADE Centre Ville", - "Marque": "Intermarché" + "name": "Intermarché CAUSSADE Centre Ville", + "brand": "Intermarché" }, "82300002": { - "Nom": "Intermarché MONTEILS", - "Marque": "Intermarché" + "name": "Intermarché MONTEILS", + "brand": "Intermarché" }, "82300004": { - "Nom": "SUPER U CAUSSADE", - "Marque": "Système U" + "name": "SUPER U CAUSSADE", + "brand": "Système U" }, "82300005": { - "Nom": "Intermarché CAUSSADE AV EDOUARD HERRIOT", - "Marque": "Intermarché" + "name": "Intermarché CAUSSADE AV EDOUARD HERRIOT", + "brand": "Intermarché" }, "82350001": { - "Nom": "GASTON", - "Marque": "Indépendant sans enseigne" + "name": "GASTON", + "brand": "Indépendant sans enseigne" }, "82370001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "82370002": { - "Nom": "SAS OROBE NETTO", - "Marque": "Netto" + "name": "SAS OROBE NETTO", + "brand": "Netto" }, "82400002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "82400003": { - "Nom": "Intermarché VALENCE D'AGEN", - "Marque": "Intermarché" + "name": "Intermarché VALENCE D'AGEN", + "brand": "Intermarché" }, "82400005": { - "Nom": "Sarl val fleuri Valence d'Agen", - "Marque": "Indépendant sans enseigne" + "name": "Sarl val fleuri Valence d'Agen", + "brand": "Indépendant sans enseigne" }, "82400006": { - "Nom": "Sarl val fleuri golfech", - "Marque": "Indépendant sans enseigne" + "name": "Sarl val fleuri golfech", + "brand": "Indépendant sans enseigne" }, "82400009": { - "Nom": "Louda SARL", - "Marque": "Indépendant sans enseigne" + "name": "Louda SARL", + "brand": "Indépendant sans enseigne" }, "82410003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "82440003": { - "Nom": "SARL STROH", - "Marque": "Total" + "name": "SARL STROH", + "brand": "Total" }, "82500001": { - "Nom": "MR DIRAT", - "Marque": "Total" + "name": "MR DIRAT", + "brand": "Total" }, "82500002": { - "Nom": "Intermarché BEAUMONT DE LOMAGNE", - "Marque": "Intermarché" + "name": "Intermarché BEAUMONT DE LOMAGNE", + "brand": "Intermarché" }, "82500003": { - "Nom": "CASINO", - "Marque": "Casino" + "name": "CASINO", + "brand": "Casino" }, "82600001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "82600002": { - "Nom": "STATION KAÏ AUCAMVILLE", - "Marque": "KAI" + "name": "STATION KAÏ AUCAMVILLE", + "brand": "KAI" }, "82600003": { - "Nom": "Intermarché VERDUN SUR GARONNE", - "Marque": "Intermarché" + "name": "Intermarché VERDUN SUR GARONNE", + "brand": "Intermarché" }, "82600004": { - "Nom": "SARL VAL FLEURI", - "Marque": "Indépendant sans enseigne" + "name": "SARL VAL FLEURI", + "brand": "Indépendant sans enseigne" }, "82700001": { - "Nom": "EOR MONTECH DAVID SERVICE", - "Marque": "Total" + "name": "EOR MONTECH DAVID SERVICE", + "brand": "Total" }, "82700002": { - "Nom": "Intermarché MONTECH", - "Marque": "Intermarché" + "name": "Intermarché MONTECH", + "brand": "Intermarché" }, "82700003": { - "Nom": "SARL VAL FLEURI", - "Marque": "Aire C" + "name": "SARL VAL FLEURI", + "brand": "Aire C" }, "82710003": { - "Nom": "ESSO NAUZE VERT", - "Marque": "Esso" + "name": "ESSO NAUZE VERT", + "brand": "Esso" }, "82800001": { - "Nom": "LA STATION U", - "Marque": "Système U" + "name": "LA STATION U", + "brand": "Système U" }, "82800002": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "83000006": { - "Nom": "Intermarché TOULON", - "Marque": "Intermarché" + "name": "Intermarché TOULON", + "brand": "Intermarché" }, "83000010": { - "Nom": "RELAIS CHAMPS DE MARS", - "Marque": "Total" + "name": "RELAIS CHAMPS DE MARS", + "brand": "Total" }, "83000011": { - "Nom": "RELAIS TOULON LA RADE 1", - "Marque": "Total Access" + "name": "RELAIS TOULON LA RADE 1", + "brand": "Total Access" }, "83000012": { - "Nom": "RELAIS TOULON LA RODE OUEST", - "Marque": "Total Access" + "name": "RELAIS TOULON LA RODE OUEST", + "brand": "Total Access" }, "83100005": { - "Nom": "AGIP TOULON GASQUET", - "Marque": "Agip" + "name": "AGIP TOULON GASQUET", + "brand": "Agip" }, "83100006": { - "Nom": "RELAIS TOULON FOCH", - "Marque": "Total" + "name": "RELAIS TOULON FOCH", + "brand": "Total" }, "83100007": { - "Nom": "BP TOULON PORT MARCHAND 8 à Huit", - "Marque": "BP" + "name": "BP TOULON PORT MARCHAND 8 à Huit", + "brand": "BP" }, "83110002": { - "Nom": "RELAIS SANARY S/MER BEAUCOURS", - "Marque": "Total Access" + "name": "RELAIS SANARY S/MER BEAUCOURS", + "brand": "Total Access" }, "83120001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "83120002": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "83120006": { - "Nom": "RELAIS CROISETTE", - "Marque": "Total Access" + "name": "RELAIS CROISETTE", + "brand": "Total Access" }, "83130001": { - "Nom": "RELAIS LA CHABERTE", - "Marque": "Avia" + "name": "RELAIS LA CHABERTE", + "brand": "Avia" }, "83130003": { - "Nom": "STATION SERVICE K9", - "Marque": "K9" + "name": "STATION SERVICE K9", + "brand": "K9" }, "83130004": { - "Nom": "Intermarché LA GARDE", - "Marque": "Intermarché" + "name": "Intermarché LA GARDE", + "brand": "Intermarché" }, "83130005": { - "Nom": "NETTO LA GARDE", - "Marque": "Netto" + "name": "NETTO LA GARDE", + "brand": "Netto" }, "83136004": { - "Nom": "LEADER PRICE", - "Marque": "Leader Price" + "name": "LEADER PRICE", + "brand": "Leader Price" }, "83136005": { - "Nom": "Garage A.C.R.", - "Marque": "Total" + "name": "Garage A.C.R.", + "brand": "Total" }, "83136007": { - "Nom": "RELAIS DU SOLEIL", - "Marque": "Total" + "name": "RELAIS DU SOLEIL", + "brand": "Total" }, "83136008": { - "Nom": "Twardy", - "Marque": "Avia" + "name": "Twardy", + "brand": "Avia" }, "83140001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "83140005": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "83140006": { - "Nom": "Intermarché SIX FOURS LES PLAGES", - "Marque": "Intermarché" + "name": "Intermarché SIX FOURS LES PLAGES", + "brand": "Intermarché" }, "83140007": { - "Nom": "RELAIS SIX FOURS LA PLAGE", - "Marque": "Total" + "name": "RELAIS SIX FOURS LA PLAGE", + "brand": "Total" }, "83140008": { - "Nom": "RELAIS SIX FOURS BONNEGRACE", - "Marque": "Total Access" + "name": "RELAIS SIX FOURS BONNEGRACE", + "brand": "Total Access" }, "83147001": { - "Nom": "Me BOREL Genevieve", - "Marque": "Total" + "name": "Me BOREL Genevieve", + "brand": "Total" }, "83150001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "83150002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "83160001": { - "Nom": "Carrefour GRAND VAR", - "Marque": "Carrefour" + "name": "Carrefour GRAND VAR", + "brand": "Carrefour" }, "83160003": { - "Nom": "RELAIS UNIVERSITE", - "Marque": "Total Access" + "name": "RELAIS UNIVERSITE", + "brand": "Total Access" }, "83160004": { - "Nom": "ESSO SERVICE LA BIGUE", - "Marque": "Esso" + "name": "ESSO SERVICE LA BIGUE", + "brand": "Esso" }, "83160005": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "83170002": { - "Nom": "ETS BRELY SARL", - "Marque": "Avia" + "name": "ETS BRELY SARL", + "brand": "Avia" }, "83170003": { - "Nom": "ESSO DU CARAMY", - "Marque": "Esso Express" + "name": "ESSO DU CARAMY", + "brand": "Esso Express" }, "83170006": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "83170007": { - "Nom": "S.A.S. BRIGNOLDIS", - "Marque": "Leclerc" + "name": "S.A.S. BRIGNOLDIS", + "brand": "Leclerc" }, "83170009": { - "Nom": "SIRI PATRICK", - "Marque": "Indépendant sans enseigne" + "name": "SIRI PATRICK", + "brand": "Indépendant sans enseigne" }, "83170010": { - "Nom": "Intermarché BRIGNOLES", - "Marque": "Intermarché" + "name": "Intermarché BRIGNOLES", + "brand": "Intermarché" }, "83170011": { - "Nom": "AGIP CAMBARETTE A8 Sens Italie Aix", - "Marque": "Agip" + "name": "AGIP CAMBARETTE A8 Sens Italie Aix", + "brand": "Agip" }, "83170012": { - "Nom": "RELAIS TERRASSES CENTRE VL", - "Marque": "Total" + "name": "RELAIS TERRASSES CENTRE VL", + "brand": "Total" }, "83190001": { - "Nom": "Carrefour OLLIOULES", - "Marque": "Carrefour" + "name": "Carrefour OLLIOULES", + "brand": "Carrefour" }, "83190004": { - "Nom": "Le Relais de la Baume", - "Marque": "Avia" + "name": "Le Relais de la Baume", + "brand": "Avia" }, "83190005": { - "Nom": "Intermarché OLLIOULES", - "Marque": "Intermarché" + "name": "Intermarché OLLIOULES", + "brand": "Intermarché" }, "83190006": { - "Nom": "RELAIS PIEDARDAN", - "Marque": "Total Access" + "name": "RELAIS PIEDARDAN", + "brand": "Total Access" }, "83200002": { - "Nom": "AGIP TOULON DAVID", - "Marque": "Agip" + "name": "AGIP TOULON DAVID", + "brand": "Agip" }, "83200003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "83200004": { - "Nom": "SARL SIGESS", - "Marque": "Esso" + "name": "SARL SIGESS", + "brand": "Esso" }, "83210001": { - "Nom": "STATION SERVICE K9", - "Marque": "K9" + "name": "STATION SERVICE K9", + "brand": "K9" }, "83210003": { - "Nom": "Intermarché LA FARLEDE", - "Marque": "Intermarché" + "name": "Intermarché LA FARLEDE", + "brand": "Intermarché" }, "83210004": { - "Nom": "SAS Contact", - "Marque": "Indépendant sans enseigne" + "name": "SAS Contact", + "brand": "Indépendant sans enseigne" }, "83210005": { - "Nom": "Station service Casino sollies-pont", - "Marque": "Super Casino" + "name": "Station service Casino sollies-pont", + "brand": "Super Casino" }, "83210006": { - "Nom": "Station K9 La Farlède", - "Marque": "K9" + "name": "Station K9 La Farlède", + "brand": "K9" }, "83220001": { - "Nom": "SARL LA CARAVELLE", - "Marque": "Dyneff" + "name": "SARL LA CARAVELLE", + "brand": "Dyneff" }, "83220002": { - "Nom": "ESSO DU MOULIN", - "Marque": "Esso Express" + "name": "ESSO DU MOULIN", + "brand": "Esso Express" }, "83230003": { - "Nom": "CENTRE RIVIERA SERVICES", - "Marque": "Indépendant sans enseigne" + "name": "CENTRE RIVIERA SERVICES", + "brand": "Indépendant sans enseigne" }, "83230006": { - "Nom": "RELAIS BORMES-LES-MIMOSAS", - "Marque": "Total Access" + "name": "RELAIS BORMES-LES-MIMOSAS", + "brand": "Total Access" }, "83240001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "83240006": { - "Nom": "Avia express", - "Marque": "Avia" + "name": "Avia express", + "brand": "Avia" }, "83250003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "83250007": { - "Nom": "Intermarché LA LONDE LES MAURES", - "Marque": "Intermarché" + "name": "Intermarché LA LONDE LES MAURES", + "brand": "Intermarché" }, "83250011": { - "Nom": "BP LA LONDE-LES-MAURES", - "Marque": "BP" + "name": "BP LA LONDE-LES-MAURES", + "brand": "BP" }, "83260001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "83260003": { - "Nom": "SARL DUFANKEV", - "Marque": "Esso" + "name": "SARL DUFANKEV", + "brand": "Esso" }, "83260005": { - "Nom": "BP A570 AIRE DE ST AUGUSTIN LA CRAU", - "Marque": "BP" + "name": "BP A570 AIRE DE ST AUGUSTIN LA CRAU", + "brand": "BP" }, "83260006": { - "Nom": "LEADER PRICE", - "Marque": "Leader Price" + "name": "LEADER PRICE", + "brand": "Leader Price" }, "83270001": { - "Nom": "M. HAMIDOUCHE N.", - "Marque": "Total" + "name": "M. HAMIDOUCHE N.", + "brand": "Total" }, "83270002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "83300001": { - "Nom": "SARL GREGU - Total", - "Marque": "Total" + "name": "SARL GREGU - Total", + "brand": "Total" }, "83300003": { - "Nom": "Carrefour .DRAGUIGNAN", - "Marque": "Carrefour" + "name": "Carrefour .DRAGUIGNAN", + "brand": "Carrefour" }, "83300004": { - "Nom": "SPANNELLA SARL", - "Marque": "Avia" + "name": "SPANNELLA SARL", + "brand": "Avia" }, "83300006": { - "Nom": "Intermarché SUPER", - "Marque": "Intermarché" + "name": "Intermarché SUPER", + "brand": "Intermarché" }, "83300008": { - "Nom": "Station Albro", - "Marque": "Indépendant sans enseigne" + "name": "Station Albro", + "brand": "Indépendant sans enseigne" }, "83310006": { - "Nom": "BERGON SAS", - "Marque": "Indépendant sans enseigne" + "name": "BERGON SAS", + "brand": "Indépendant sans enseigne" }, "83310007": { - "Nom": "E.LECLERC", - "Marque": "Leclerc" + "name": "E.LECLERC", + "brand": "Leclerc" }, "83310011": { - "Nom": "RELAIS DE LA FOUX", - "Marque": "Total Access" + "name": "RELAIS DE LA FOUX", + "brand": "Total Access" }, "83320001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "83330001": { - "Nom": "sarl garage augier", - "Marque": "Total" + "name": "sarl garage augier", + "brand": "Total" }, "83330003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "83330004": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "83340002": { - "Nom": "SODILUC", - "Marque": "Leclerc" + "name": "SODILUC", + "brand": "Leclerc" }, "83340005": { - "Nom": "Intermarché LE CANNET DES MAURES", - "Marque": "Intermarché" + "name": "Intermarché LE CANNET DES MAURES", + "brand": "Intermarché" }, "83340006": { - "Nom": "STATION SERVICE AVIA", - "Marque": "Avia" + "name": "STATION SERVICE AVIA", + "brand": "Avia" }, "83340008": { - "Nom": "Super U Flassans", - "Marque": "Système U" + "name": "Super U Flassans", + "brand": "Système U" }, "83340010": { - "Nom": "RELAIS LE LUC LES LIEBAUDS", - "Marque": "Total Access" + "name": "RELAIS LE LUC LES LIEBAUDS", + "brand": "Total Access" }, "83340011": { - "Nom": "RELAIS DU CANNET", - "Marque": "Total Access" + "name": "RELAIS DU CANNET", + "brand": "Total Access" }, "83350001": { - "Nom": "SASU GMLS", - "Marque": "Total" + "name": "SASU GMLS", + "brand": "Total" }, "83380002": { - "Nom": "RELAIS LES ISSAMBRES", - "Marque": "Total Access" + "name": "RELAIS LES ISSAMBRES", + "brand": "Total Access" }, "83390001": { - "Nom": "SARL JEAN GREGU", - "Marque": "Total" + "name": "SARL JEAN GREGU", + "brand": "Total" }, "83390002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "83390003": { - "Nom": "Intermarché CUERS", - "Marque": "Intermarché" + "name": "Intermarché CUERS", + "brand": "Intermarché" }, "83390005": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "83400001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "83400003": { - "Nom": "M. ZERAFA PHILIPPE", - "Marque": "BP" + "name": "M. ZERAFA PHILIPPE", + "brand": "BP" }, "83400004": { - "Nom": "ESSO ST CHRISTOPHE", - "Marque": "Esso Express" + "name": "ESSO ST CHRISTOPHE", + "brand": "Esso Express" }, "83400005": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "83400006": { - "Nom": "CENTRE LECLERC", - "Marque": "Leclerc" + "name": "CENTRE LECLERC", + "brand": "Leclerc" }, "83400011": { - "Nom": "STATION ST HILAIRE", - "Marque": "Indépendant sans enseigne" + "name": "STATION ST HILAIRE", + "brand": "Indépendant sans enseigne" }, "83400012": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "83400013": { - "Nom": "RELAIS HYERES PLAGE", - "Marque": "Total" + "name": "RELAIS HYERES PLAGE", + "brand": "Total" }, "83420005": { - "Nom": "RELAIS LA CROIX VALMER", - "Marque": "Total Access" + "name": "RELAIS LA CROIX VALMER", + "brand": "Total Access" }, "83440002": { - "Nom": "MR PELASSY ELIE", - "Marque": "Total" + "name": "MR PELASSY ELIE", + "brand": "Total" }, "83440003": { - "Nom": "SARL MONTAURAUTO", - "Marque": "Total" + "name": "SARL MONTAURAUTO", + "brand": "Total" }, "83440004": { - "Nom": "MONTAUDIS", - "Marque": "Leclerc" + "name": "MONTAUDIS", + "brand": "Leclerc" }, "83440005": { - "Nom": "Intermarché TOURRETTES", - "Marque": "Intermarché" + "name": "Intermarché TOURRETTES", + "brand": "Intermarché" }, "83440006": { - "Nom": "STATION SERVICE LA PLAINE", - "Marque": "Agip" + "name": "STATION SERVICE LA PLAINE", + "brand": "Agip" }, "83460002": { - "Nom": "Hyper U", - "Marque": "Système U" + "name": "Hyper U", + "brand": "Système U" }, "83470001": { - "Nom": "Hyper U", - "Marque": "Système U" + "name": "Hyper U", + "brand": "Système U" }, "83470003": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "83470004": { - "Nom": "Intermarché ST MAXIMIN STE BAUME", - "Marque": "Intermarché" + "name": "Intermarché ST MAXIMIN STE BAUME", + "brand": "Intermarché" }, "83470006": { - "Nom": "RELAIS OLYMPE", - "Marque": "Total Access" + "name": "RELAIS OLYMPE", + "brand": "Total Access" }, "83480001": { - "Nom": "Carrefour puget sur argens", - "Marque": "Carrefour" + "name": "Carrefour puget sur argens", + "brand": "Carrefour" }, "83480003": { - "Nom": "AGIP PUGET SUR ARGENS", - "Marque": "Agip" + "name": "AGIP PUGET SUR ARGENS", + "brand": "Agip" }, "83480005": { - "Nom": "Station automatique CB 24/24", - "Marque": "Leclerc" + "name": "Station automatique CB 24/24", + "brand": "Leclerc" }, "83480006": { - "Nom": "RELAIS CANAVER", - "Marque": "Total" + "name": "RELAIS CANAVER", + "brand": "Total" }, "83490001": { - "Nom": "SARL TOSELLO", - "Marque": "Total" + "name": "SARL TOSELLO", + "brand": "Total" }, "83490002": { - "Nom": "ESSO DU MUY", - "Marque": "Esso Express" + "name": "ESSO DU MUY", + "brand": "Esso Express" }, "83490003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "83500001": { - "Nom": "AUCHAN LA SEYNE", - "Marque": "Auchan" + "name": "AUCHAN LA SEYNE", + "brand": "Auchan" }, "83500004": { - "Nom": "SA SEYDIS SHO", - "Marque": "Leclerc" + "name": "SA SEYDIS SHO", + "brand": "Leclerc" }, "83500005": { - "Nom": "Centre E.LECLERC des sablettes", - "Marque": "Leclerc" + "name": "Centre E.LECLERC des sablettes", + "brand": "Leclerc" }, "83500007": { - "Nom": "Intermarché LA SEYNE SUR MER", - "Marque": "Intermarché" + "name": "Intermarché LA SEYNE SUR MER", + "brand": "Intermarché" }, "83500008": { - "Nom": "AVIA Eurl Marina", - "Marque": "Avia" + "name": "AVIA Eurl Marina", + "brand": "Avia" }, "83500013": { - "Nom": "RELAIS VIGNELONGUE", - "Marque": "Total Access" + "name": "RELAIS VIGNELONGUE", + "brand": "Total Access" }, "83510001": { - "Nom": "FITO JAC.& FILS", - "Marque": "Total" + "name": "FITO JAC.& FILS", + "brand": "Total" }, "83510002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "83510003": { - "Nom": "Intermarché LORGUES", - "Marque": "Intermarché" + "name": "Intermarché LORGUES", + "brand": "Intermarché" }, "83520001": { - "Nom": "STATION Total", - "Marque": "Total" + "name": "STATION Total", + "brand": "Total" }, "83520002": { - "Nom": "Intermarché ROQUEBRUNE SUR ARGEN", - "Marque": "Intermarché" + "name": "Intermarché ROQUEBRUNE SUR ARGEN", + "brand": "Intermarché" }, "83550003": { - "Nom": "SODIPLEC VIDAUBAN", - "Marque": "Leclerc" + "name": "SODIPLEC VIDAUBAN", + "brand": "Leclerc" }, "83550004": { - "Nom": "Intermarché VIDAUBAN", - "Marque": "Intermarché" + "name": "Intermarché VIDAUBAN", + "brand": "Intermarché" }, "83550005": { - "Nom": "AVIA", - "Marque": "Avia" + "name": "AVIA", + "brand": "Avia" }, "83560001": { - "Nom": "SARL GARAGE GILAUTO", - "Marque": "Total" + "name": "SARL GARAGE GILAUTO", + "brand": "Total" }, "83560003": { - "Nom": "GARAGE DERVOGNE", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE DERVOGNE", + "brand": "Indépendant sans enseigne" }, "83560004": { - "Nom": "CASINO VINON SUR VERDON", - "Marque": "Super Casino" + "name": "CASINO VINON SUR VERDON", + "brand": "Super Casino" }, "83560005": { - "Nom": "Carrefour Contact RIANS", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact RIANS", + "brand": "Carrefour Contact" }, "83560006": { - "Nom": "STATION BP Vinon automobiles", - "Marque": "BP" + "name": "STATION BP Vinon automobiles", + "brand": "BP" }, "83560007": { - "Nom": "Carrefour MARKET VINON", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET VINON", + "brand": "Carrefour Market" }, "83570001": { - "Nom": "Intermarché CARCES", - "Marque": "Intermarché" + "name": "Intermarché CARCES", + "brand": "Intermarché" }, "83570002": { - "Nom": "Intermarché MONTFORT", - "Marque": "Intermarché Contact" + "name": "Intermarché MONTFORT", + "brand": "Intermarché Contact" }, "83570003": { - "Nom": "SARL PRAVAZ", - "Marque": "Avia" + "name": "SARL PRAVAZ", + "brand": "Avia" }, "83570004": { - "Nom": "STATION SERVICE AVIA EXPRESS", - "Marque": "Avia" + "name": "STATION SERVICE AVIA EXPRESS", + "brand": "Avia" }, "83580001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "83580003": { - "Nom": "SARL JOCATI", - "Marque": "Avia" + "name": "SARL JOCATI", + "brand": "Avia" }, "83600001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "83600010": { - "Nom": "Station service gallieni Avia", - "Marque": "Avia" + "name": "Station service gallieni Avia", + "brand": "Avia" }, "83600011": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "83600012": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "83600013": { - "Nom": "SODIPLEC ESTEREL", - "Marque": "Leclerc" + "name": "SODIPLEC ESTEREL", + "brand": "Leclerc" }, "83600019": { - "Nom": "RELAIS CORNICHE D'AZUR", - "Marque": "Total" + "name": "RELAIS CORNICHE D'AZUR", + "brand": "Total" }, "83600020": { - "Nom": "RELAIS PTE DES GAULES", - "Marque": "Total" + "name": "RELAIS PTE DES GAULES", + "brand": "Total" }, "83600021": { - "Nom": "RELAIS FREJUS PROVENCE", - "Marque": "Total Access" + "name": "RELAIS FREJUS PROVENCE", + "brand": "Total Access" }, "83600024": { - "Nom": "BP FREJUS TASSIGNY", - "Marque": "BP" + "name": "BP FREJUS TASSIGNY", + "brand": "BP" }, "83600025": { - "Nom": "BP FREJUS ST PONS", - "Marque": "BP" + "name": "BP FREJUS ST PONS", + "brand": "BP" }, "83610001": { - "Nom": "La Treille des Maures", - "Marque": "Régie station" + "name": "La Treille des Maures", + "brand": "Régie station" }, "83630001": { - "Nom": "STATION AVIA CAMUSSO", - "Marque": "Avia" + "name": "STATION AVIA CAMUSSO", + "brand": "Avia" }, "83630002": { - "Nom": "Intermarché AUPS", - "Marque": "Intermarché" + "name": "Intermarché AUPS", + "brand": "Intermarché" }, "83630003": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "83640001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "83660002": { - "Nom": "Intermarché CARNOULES", - "Marque": "Intermarché" + "name": "Intermarché CARNOULES", + "brand": "Intermarché" }, "83670001": { - "Nom": "ETS JAUFFRET", - "Marque": "Avia" + "name": "ETS JAUFFRET", + "brand": "Avia" }, "83670002": { - "Nom": "Intermarché BARJOLS", - "Marque": "Intermarché" + "name": "Intermarché BARJOLS", + "brand": "Intermarché" }, "83690002": { - "Nom": "Intermarché SALERNES", - "Marque": "Intermarché" + "name": "Intermarché SALERNES", + "brand": "Intermarché" }, "83690003": { - "Nom": "Relais saint romain", - "Marque": "Indépendant sans enseigne" + "name": "Relais saint romain", + "brand": "Indépendant sans enseigne" }, "83690004": { - "Nom": "RELAIS SAINT JEAN", - "Marque": "Indépendant sans enseigne" + "name": "RELAIS SAINT JEAN", + "brand": "Indépendant sans enseigne" }, "83690005": { - "Nom": "STATION DE LA BAUME", - "Marque": "aucune" + "name": "STATION DE LA BAUME", + "brand": "aucune" }, "83700003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "83700004": { - "Nom": "VALESCURE DISTRIBUTION", - "Marque": "Leclerc" + "name": "VALESCURE DISTRIBUTION", + "brand": "Leclerc" }, "83700007": { - "Nom": "STATION LA CORNICHE D'OR", - "Marque": "Indépendant sans enseigne" + "name": "STATION LA CORNICHE D'OR", + "brand": "Indépendant sans enseigne" }, "83720001": { - "Nom": "Carrefour TRANS EN PROVENCE", - "Marque": "Carrefour" + "name": "Carrefour TRANS EN PROVENCE", + "brand": "Carrefour" }, "83720005": { - "Nom": "RELAIS TRANS EN PROVENCE", - "Marque": "Total Access" + "name": "RELAIS TRANS EN PROVENCE", + "brand": "Total Access" }, "83780001": { - "Nom": "SARL CARROSSERIE COTTON LUDOVIC", - "Marque": "Campus" + "name": "SARL CARROSSERIE COTTON LUDOVIC", + "brand": "Campus" }, "83780002": { - "Nom": "SARL GARAGE COTTON JM", - "Marque": "Avia" + "name": "SARL GARAGE COTTON JM", + "brand": "Avia" }, "83790001": { - "Nom": "Market Pignans", - "Marque": "Carrefour Market" + "name": "Market Pignans", + "brand": "Carrefour Market" }, "83820001": { - "Nom": "JP AUTO", - "Marque": "Elan" + "name": "JP AUTO", + "brand": "Elan" }, "83830002": { - "Nom": "GARAGE PITTALIS", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE PITTALIS", + "brand": "Indépendant sans enseigne" }, "83840001": { - "Nom": "Station service de Comps sur Artuby", - "Marque": "Communale" + "name": "Station service de Comps sur Artuby", + "brand": "Communale" }, "83980001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "83980002": { - "Nom": "GARAGE SAINT CHRISTOPHE", - "Marque": "Indépendant sans enseigne" + "name": "GARAGE SAINT CHRISTOPHE", + "brand": "Indépendant sans enseigne" }, "83990002": { - "Nom": "Station du Pilon", - "Marque": "Indépendant sans enseigne" + "name": "Station du Pilon", + "brand": "Indépendant sans enseigne" }, "84000001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "84000007": { - "Nom": "SARL BRELY", - "Marque": "Avia" + "name": "SARL BRELY", + "brand": "Avia" }, "84000008": { - "Nom": "ESSO CROISIERE", - "Marque": "Esso Express" + "name": "ESSO CROISIERE", + "brand": "Esso Express" }, "84000009": { - "Nom": "AVIROC", - "Marque": "Leclerc" + "name": "AVIROC", + "brand": "Leclerc" }, "84000011": { - "Nom": "Intermarché AVIGNON", - "Marque": "Intermarché" + "name": "Intermarché AVIGNON", + "brand": "Intermarché" }, "84000017": { - "Nom": "Station de la Durance", - "Marque": "Garoucha" + "name": "Station de la Durance", + "brand": "Garoucha" }, "84000018": { - "Nom": "RELAIS AVIGNON P.SEMARD", - "Marque": "Total" + "name": "RELAIS AVIGNON P.SEMARD", + "brand": "Total" }, "84000019": { - "Nom": "RELAIS JEAN ALTHEN", - "Marque": "Total" + "name": "RELAIS JEAN ALTHEN", + "brand": "Total" }, "84000020": { - "Nom": "RELAIS CH. DE GAULLE AVIGNON", - "Marque": "Total Access" + "name": "RELAIS CH. DE GAULLE AVIGNON", + "brand": "Total Access" }, "84000021": { - "Nom": "RELAIS AVIGNON L'AMANDIER", - "Marque": "Total Access" + "name": "RELAIS AVIGNON L'AMANDIER", + "brand": "Total Access" }, "84013001": { - "Nom": "AVIGNON SUD", - "Marque": "Auchan" + "name": "AVIGNON SUD", + "brand": "Auchan" }, "84097001": { - "Nom": "Carrefour AVIGNON", - "Marque": "Carrefour" + "name": "Carrefour AVIGNON", + "brand": "Carrefour" }, "84100003": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "84100004": { - "Nom": "Intermarché ORANGE", - "Marque": "Intermarché" + "name": "Intermarché ORANGE", + "brand": "Intermarché" }, "84100005": { - "Nom": "Intermarché Autoroute", - "Marque": "Intermarché" + "name": "Intermarché Autoroute", + "brand": "Intermarché" }, "84100006": { - "Nom": "STATION DU GRES", - "Marque": "Total" + "name": "STATION DU GRES", + "brand": "Total" }, "84100009": { - "Nom": "RELAIS LA COMTADINE", - "Marque": "Total" + "name": "RELAIS LA COMTADINE", + "brand": "Total" }, "84107001": { - "Nom": "Carrefour ORANGE", - "Marque": "Carrefour" + "name": "Carrefour ORANGE", + "brand": "Carrefour" }, "84110001": { - "Nom": "SARL RICHIER", - "Marque": "Total Access" + "name": "SARL RICHIER", + "brand": "Total Access" }, "84110004": { - "Nom": "La Station U", - "Marque": "Système U" + "name": "La Station U", + "brand": "Système U" }, "84110005": { - "Nom": "Intermarché SAINT ROMAIN EN VIENNOIS", - "Marque": "Intermarché" + "name": "Intermarché SAINT ROMAIN EN VIENNOIS", + "brand": "Intermarché" }, "84120001": { - "Nom": "Hyper U", - "Marque": "Système U" + "name": "Hyper U", + "brand": "Système U" }, "84120004": { - "Nom": "STATION ENERGIE", - "Marque": "Indépendant sans enseigne" + "name": "STATION ENERGIE", + "brand": "Indépendant sans enseigne" }, "84120006": { - "Nom": "CSF SAS Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "CSF SAS Carrefour MARKET", + "brand": "Carrefour Market" }, "84120007": { - "Nom": "Station les prés verts", - "Marque": "autre" + "name": "Station les prés verts", + "brand": "autre" }, "84130001": { - "Nom": "Auchan Le Pontet", - "Marque": "Auchan" + "name": "Auchan Le Pontet", + "brand": "Auchan" }, "84130007": { - "Nom": "Auchan supermarche", - "Marque": "Auchan" + "name": "Auchan supermarche", + "brand": "Auchan" }, "84130010": { - "Nom": "RELAIS OSERAIE", - "Marque": "Total" + "name": "RELAIS OSERAIE", + "brand": "Total" }, "84130011": { - "Nom": "RELAIS DU PONTET", - "Marque": "Total Access" + "name": "RELAIS DU PONTET", + "brand": "Total Access" }, "84130012": { - "Nom": "Uexpress Le Pontet", - "Marque": "Système U" + "name": "Uexpress Le Pontet", + "brand": "Système U" }, "84130013": { - "Nom": "SAS AMIA AVIA", - "Marque": "Avia" + "name": "SAS AMIA AVIA", + "brand": "Avia" }, "84140005": { - "Nom": "AVIA EXPRESS", - "Marque": "AVIA EXPRESS" + "name": "AVIA EXPRESS", + "brand": "AVIA EXPRESS" }, "84140006": { - "Nom": "RELAIS CROIX JOANIS", - "Marque": "Total" + "name": "RELAIS CROIX JOANIS", + "brand": "Total" }, "84140007": { - "Nom": "RELAIS MONTFAVET LA DURANCE", - "Marque": "Total Access" + "name": "RELAIS MONTFAVET LA DURANCE", + "brand": "Total Access" }, "84150001": { - "Nom": "Intermarché JONQUIERES", - "Marque": "Intermarché" + "name": "Intermarché JONQUIERES", + "brand": "Intermarché" }, "84160001": { - "Nom": "Lisanydis", - "Marque": "Système U" + "name": "Lisanydis", + "brand": "Système U" }, "84160003": { - "Nom": "SARL FUEL & STATION LAURENT", - "Marque": "Indépendant sans enseigne" + "name": "SARL FUEL & STATION LAURENT", + "brand": "Indépendant sans enseigne" }, "84170001": { - "Nom": "SARL ETS CRISTOFOL", - "Marque": "Avia" + "name": "SARL ETS CRISTOFOL", + "brand": "Avia" }, "84170002": { - "Nom": "BERNAUD REMY SARL", - "Marque": "ESSO" + "name": "BERNAUD REMY SARL", + "brand": "ESSO" }, "84190001": { - "Nom": "Station la barcilonne", - "Marque": "Indépendant sans enseigne" + "name": "Station la barcilonne", + "brand": "Indépendant sans enseigne" }, "84200002": { - "Nom": "MME ROS SUZANNE", - "Marque": "Total" + "name": "MME ROS SUZANNE", + "brand": "Total" }, "84200003": { - "Nom": "STATION L'HOTE", - "Marque": "Indépendant sans enseigne" + "name": "STATION L'HOTE", + "brand": "Indépendant sans enseigne" }, "84200006": { - "Nom": "COMTAT CARBURANTS", - "Marque": "Indépendant sans enseigne" + "name": "COMTAT CARBURANTS", + "brand": "Indépendant sans enseigne" }, "84200008": { - "Nom": "SAS LA MEDE", - "Marque": "Indépendant sans enseigne" + "name": "SAS LA MEDE", + "brand": "Indépendant sans enseigne" }, "84200009": { - "Nom": "SARL STATION SERVICE DU MONT VENTOUX", - "Marque": "Elan" + "name": "SARL STATION SERVICE DU MONT VENTOUX", + "brand": "Elan" }, "84200010": { - "Nom": "SUPER U CARPENTRAS", - "Marque": "Système U" + "name": "SUPER U CARPENTRAS", + "brand": "Système U" }, "84210001": { - "Nom": "Intermarché PERNES LES FONTAINES", - "Marque": "Intermarché" + "name": "Intermarché PERNES LES FONTAINES", + "brand": "Intermarché" }, "84210003": { - "Nom": "STATION MICHEL COURTY", - "Marque": "Dyneff" + "name": "STATION MICHEL COURTY", + "brand": "Dyneff" }, "84220002": { - "Nom": "Le Relais du Ventaux", - "Marque": "Indépendant sans enseigne" + "name": "Le Relais du Ventaux", + "brand": "Indépendant sans enseigne" }, "84230001": { - "Nom": "Utile Chateauneuf du pape", - "Marque": "Système U" + "name": "Utile Chateauneuf du pape", + "brand": "Système U" }, "84240001": { - "Nom": "M.ERIC SEGURRA - RELAIS Total DE LA TOUR D'AIGUES", - "Marque": "Total" + "name": "M.ERIC SEGURRA - RELAIS Total DE LA TOUR D'AIGUES", + "brand": "Total" }, "84250001": { - "Nom": "Intermarché LE THOR", - "Marque": "Intermarché" + "name": "Intermarché LE THOR", + "brand": "Intermarché" }, "84260001": { - "Nom": "Intermarché SARRIANS", - "Marque": "Intermarché" + "name": "Intermarché SARRIANS", + "brand": "Intermarché" }, "84270002": { - "Nom": "Carrefour Contact VEDENE", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact VEDENE", + "brand": "Carrefour Contact" }, "84300003": { - "Nom": "GARAGE CHABAS ET CIE SA", - "Marque": "Total" + "name": "GARAGE CHABAS ET CIE SA", + "brand": "Total" }, "84300006": { - "Nom": "SAS PAFICO", - "Marque": "Intermarché" + "name": "SAS PAFICO", + "brand": "Intermarché" }, "84300011": { - "Nom": "RELAIS BAS BANQUETS", - "Marque": "Total Access" + "name": "RELAIS BAS BANQUETS", + "brand": "Total Access" }, "84301001": { - "Nom": "AUCHAN CAVAILLON", - "Marque": "Auchan" + "name": "AUCHAN CAVAILLON", + "brand": "Auchan" }, "84310002": { - "Nom": "CENTRE E.LECLERC DE MORIERES LES AVIGNON", - "Marque": "Leclerc" + "name": "CENTRE E.LECLERC DE MORIERES LES AVIGNON", + "brand": "Leclerc" }, "84310003": { - "Nom": "SARL GARAGE DOULMET", - "Marque": "Indépendant sans enseigne" + "name": "SARL GARAGE DOULMET", + "brand": "Indépendant sans enseigne" }, "84310004": { - "Nom": "Aire de service de Morières", - "Marque": "Esso" + "name": "Aire de service de Morières", + "brand": "Esso" }, "84320001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "84330003": { - "Nom": "Station service St Ambroise", - "Marque": "Indépendant sans enseigne" + "name": "Station service St Ambroise", + "brand": "Indépendant sans enseigne" }, "84340002": { - "Nom": "GARAGE MEFFRE-BRAX CORINNE", - "Marque": "Elan" + "name": "GARAGE MEFFRE-BRAX CORINNE", + "brand": "Elan" }, "84350002": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "84360003": { - "Nom": "FC Diffusion", - "Marque": "Avia" + "name": "FC Diffusion", + "brand": "Avia" }, "84390001": { - "Nom": "Intermarché Contact", - "Marque": "Intermarché Contact" + "name": "Intermarché Contact", + "brand": "Intermarché Contact" }, "84400001": { - "Nom": "SUPERMARCHE AUCHAN APT", - "Marque": "Auchan" + "name": "SUPERMARCHE AUCHAN APT", + "brand": "Auchan" }, "84400003": { - "Nom": "SODISAPT", - "Marque": "Leclerc" + "name": "SODISAPT", + "brand": "Leclerc" }, "84400004": { - "Nom": "SAS CARBU MADELEINE ROADY", - "Marque": "Indépendant sans enseigne" + "name": "SAS CARBU MADELEINE ROADY", + "brand": "Indépendant sans enseigne" }, "84400007": { - "Nom": "RELAIS DU LUBERON", - "Marque": "Total Access" + "name": "RELAIS DU LUBERON", + "brand": "Total Access" }, "84400008": { - "Nom": "VAL FLEURI SARL", - "Marque": "Aire C" + "name": "VAL FLEURI SARL", + "brand": "Aire C" }, "84410001": { - "Nom": "STATION DES LAVANDES", - "Marque": "Indépendant sans enseigne" + "name": "STATION DES LAVANDES", + "brand": "Indépendant sans enseigne" }, "84430004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "84470001": { - "Nom": "ESSO SERVICE DU PLATEAU", - "Marque": "Esso" + "name": "ESSO SERVICE DU PLATEAU", + "brand": "Esso" }, "84500001": { - "Nom": "GGE PORTES PROVENCE", - "Marque": "Total" + "name": "GGE PORTES PROVENCE", + "brand": "Total" }, "84500003": { - "Nom": "SARL LE GENESTE", - "Marque": "Indépendant sans enseigne" + "name": "SARL LE GENESTE", + "brand": "Indépendant sans enseigne" }, "84500004": { - "Nom": "Intermarché BOLLENE", - "Marque": "Intermarché" + "name": "Intermarché BOLLENE", + "brand": "Intermarché" }, "84500006": { - "Nom": "RELAIS DES GRES", - "Marque": "Total" + "name": "RELAIS DES GRES", + "brand": "Total" }, "84507001": { - "Nom": "S.A.BOLDIS", - "Marque": "Leclerc" + "name": "S.A.BOLDIS", + "brand": "Leclerc" }, "84510001": { - "Nom": "STATION U 24/24", - "Marque": "Système U" + "name": "STATION U 24/24", + "brand": "Système U" }, "84550001": { - "Nom": "AIRE DE MORNAS VILLAGE (LES CROUSILLES)", - "Marque": "CARAUTOROUTES" + "name": "AIRE DE MORNAS VILLAGE (LES CROUSILLES)", + "brand": "CARAUTOROUTES" }, "84550002": { - "Nom": "MORNAS LES ADRETS", - "Marque": "CARAUTOROUTES" + "name": "MORNAS LES ADRETS", + "brand": "CARAUTOROUTES" }, "84550003": { - "Nom": "Market mornas", - "Marque": "Carrefour Market" + "name": "Market mornas", + "brand": "Carrefour Market" }, "84570002": { - "Nom": "STATION SERVICE COMMUNALE", - "Marque": "Indépendant sans enseigne" + "name": "STATION SERVICE COMMUNALE", + "brand": "Indépendant sans enseigne" }, "84600002": { - "Nom": "S.A. VALDIS", - "Marque": "Intermarché" + "name": "S.A. VALDIS", + "brand": "Intermarché" }, "84601001": { - "Nom": "SODIVAL", - "Marque": "Leclerc" + "name": "SODIVAL", + "brand": "Leclerc" }, "84660001": { - "Nom": "SARL GARAGE PANAGIOTIS ET FILS", - "Marque": "PANAGIOTIS" + "name": "SARL GARAGE PANAGIOTIS ET FILS", + "brand": "PANAGIOTIS" }, "84660002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "84700002": { - "Nom": "ESSO L OUVEZE", - "Marque": "Esso Express" + "name": "ESSO L OUVEZE", + "brand": "Esso Express" }, "84700004": { - "Nom": "Intermarché SORGUES", - "Marque": "Intermarché" + "name": "Intermarché SORGUES", + "brand": "Intermarché" }, "84700005": { - "Nom": "RELAIS DE SORGUES", - "Marque": "Total Access" + "name": "RELAIS DE SORGUES", + "brand": "Total Access" }, "84700006": { - "Nom": "AVIA Aire de Sorgues", - "Marque": "Avia" + "name": "AVIA Aire de Sorgues", + "brand": "Avia" }, "84700007": { - "Nom": "Carrefour market", - "Marque": "Carrefour Market" + "name": "Carrefour market", + "brand": "Carrefour Market" }, "84740002": { - "Nom": "SARL AFFO", - "Marque": "Indépendant sans enseigne" + "name": "SARL AFFO", + "brand": "Indépendant sans enseigne" }, "84800001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "84800003": { - "Nom": "Intermarché L'ISLE SUR SORGUE", - "Marque": "Intermarché" + "name": "Intermarché L'ISLE SUR SORGUE", + "brand": "Intermarché" }, "84800004": { - "Nom": "RELAIS DU VENAISSIN", - "Marque": "Total" + "name": "RELAIS DU VENAISSIN", + "brand": "Total" }, "84810002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "84850001": { - "Nom": "Intermarché", - "Marque": "Intermarché Contact" + "name": "Intermarché", + "brand": "Intermarché Contact" }, "84976001": { - "Nom": "AUZON VENTOUX", - "Marque": "Leclerc" + "name": "AUZON VENTOUX", + "brand": "Leclerc" }, "85000001": { - "Nom": "Hyper U Coop Atlantique La Roche/Yon", - "Marque": "Système U" + "name": "Hyper U Coop Atlantique La Roche/Yon", + "brand": "Système U" }, "85000002": { - "Nom": "Carrefour LA ROCHE SUR YON", - "Marque": "Carrefour" + "name": "Carrefour LA ROCHE SUR YON", + "brand": "Carrefour" }, "85000003": { - "Nom": "Super U LA ROCHE SUR YON", - "Marque": "Système U" + "name": "Super U LA ROCHE SUR YON", + "brand": "Système U" }, "85000004": { - "Nom": "SARL GARAGE PHELIPPEAU", - "Marque": "Total" + "name": "SARL GARAGE PHELIPPEAU", + "brand": "Total" }, "85000007": { - "Nom": "E.LECLERC LES OUDAIRIES", - "Marque": "Leclerc" + "name": "E.LECLERC LES OUDAIRIES", + "brand": "Leclerc" }, "85000008": { - "Nom": "STATION E. LECLERC-SODIROCHE", - "Marque": "Leclerc" + "name": "STATION E. LECLERC-SODIROCHE", + "brand": "Leclerc" }, "85000009": { - "Nom": "Intermarché LA ROCHE SUR YON", - "Marque": "Intermarché" + "name": "Intermarché LA ROCHE SUR YON", + "brand": "Intermarché" }, "85000010": { - "Nom": "DUBREUIL STATION LA ROCHE", - "Marque": "Esso" + "name": "DUBREUIL STATION LA ROCHE", + "brand": "Esso" }, "85000012": { - "Nom": "RELAIS DU BALMORAL", - "Marque": "Total Access" + "name": "RELAIS DU BALMORAL", + "brand": "Total Access" }, "85100001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "85100002": { - "Nom": "SARL GGE RAVON", - "Marque": "Total" + "name": "SARL GGE RAVON", + "brand": "Total" }, "85100003": { - "Nom": "SA MAISON RABREAU", - "Marque": "Total" + "name": "SA MAISON RABREAU", + "brand": "Total" }, "85100004": { - "Nom": "Super U LA CHAUME", - "Marque": "Système U" + "name": "Super U LA CHAUME", + "brand": "Système U" }, "85110001": { - "Nom": "Hyper U CHANTONNAY", - "Marque": "Système U" + "name": "Hyper U CHANTONNAY", + "brand": "Système U" }, "85110005": { - "Nom": "Garage de la mozee", - "Marque": "Total" + "name": "Garage de la mozee", + "brand": "Total" }, "85110006": { - "Nom": "E.LECLERC CHANTONNAY", - "Marque": "Leclerc" + "name": "E.LECLERC CHANTONNAY", + "brand": "Leclerc" }, "85120001": { - "Nom": "Super U LA CHATAIGNERAIE", - "Marque": "Système U" + "name": "Super U LA CHATAIGNERAIE", + "brand": "Système U" }, "85120002": { - "Nom": "SARL Fioul Services Vendéens - ANTIGNY", - "Marque": "Avia" + "name": "SARL Fioul Services Vendéens - ANTIGNY", + "brand": "Avia" }, "85120004": { - "Nom": "SA SOLACHA", - "Marque": "Intermarché" + "name": "SA SOLACHA", + "brand": "Intermarché" }, "85130002": { - "Nom": "GARAGE LES 3 COURONNES ( agent ford)", - "Marque": "Total" + "name": "GARAGE LES 3 COURONNES ( agent ford)", + "brand": "Total" }, "85130005": { - "Nom": "SUPERMARCHE UTILE", - "Marque": "Système U" + "name": "SUPERMARCHE UTILE", + "brand": "Système U" }, "85130006": { - "Nom": "SUPERMARCHE UTILE", - "Marque": "Système U" + "name": "SUPERMARCHE UTILE", + "brand": "Système U" }, "85140001": { - "Nom": "Super U LES ESSARTS", - "Marque": "Système U" + "name": "Super U LES ESSARTS", + "brand": "Système U" }, "85140002": { - "Nom": "EOR LES ESSARTS GABORIEAU", - "Marque": "Total" + "name": "EOR LES ESSARTS GABORIEAU", + "brand": "Total" }, "85140004": { - "Nom": "LE RELAIS DE L'OIE", - "Marque": "Total" + "name": "LE RELAIS DE L'OIE", + "brand": "Total" }, "85150001": { - "Nom": "Super U LA MOTHE ACHARD", - "Marque": "Système U" + "name": "Super U LA MOTHE ACHARD", + "brand": "Système U" }, "85150003": { - "Nom": "STATION DES ACHARDS", - "Marque": "Avia" + "name": "STATION DES ACHARDS", + "brand": "Avia" }, "85160002": { - "Nom": "SARL ETS EGRON", - "Marque": "Total" + "name": "SARL ETS EGRON", + "brand": "Total" }, "85160005": { - "Nom": "Super U ST JEAN DE MONTS", - "Marque": "Système U" + "name": "Super U ST JEAN DE MONTS", + "brand": "Système U" }, "85160006": { - "Nom": "intermarche", - "Marque": "Intermarché" + "name": "intermarche", + "brand": "Intermarché" }, "85170001": { - "Nom": "Super U BELLEVILLE SUR VIE", - "Marque": "Système U" + "name": "Super U BELLEVILLE SUR VIE", + "brand": "Système U" }, "85170003": { - "Nom": "STATION AVIA BRETECHE", - "Marque": "AVIA" + "name": "STATION AVIA BRETECHE", + "brand": "AVIA" }, "85170004": { - "Nom": "Intermarché LE POIRE SUR VIE", - "Marque": "Intermarché" + "name": "Intermarché LE POIRE SUR VIE", + "brand": "Intermarché" }, "85170005": { - "Nom": "AUTO BELLEVIGNY", - "Marque": "Esso" + "name": "AUTO BELLEVIGNY", + "brand": "Esso" }, "85170006": { - "Nom": "LECLERC PSV", - "Marque": "Leclerc" + "name": "LECLERC PSV", + "brand": "Leclerc" }, "85170008": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "85180001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "85180003": { - "Nom": "Intermarché CHÂTEAU D'OLONNE", - "Marque": "Intermarché" + "name": "Intermarché CHÂTEAU D'OLONNE", + "brand": "Intermarché" }, "85190001": { - "Nom": "Hyper U AIZENAY", - "Marque": "Système U" + "name": "Hyper U AIZENAY", + "brand": "Système U" }, "85190002": { - "Nom": "SARL GARAGE NEAU", - "Marque": "Total" + "name": "SARL GARAGE NEAU", + "brand": "Total" }, "85190003": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "85190004": { - "Nom": "Intermarché AIZENAY", - "Marque": "Intermarché" + "name": "Intermarché AIZENAY", + "brand": "Intermarché" }, "85200001": { - "Nom": "Hyper U FONTENAY LE COMTE", - "Marque": "Système U" + "name": "Hyper U FONTENAY LE COMTE", + "brand": "Système U" }, "85200002": { - "Nom": "STATION JAMIN", - "Marque": "Elan" + "name": "STATION JAMIN", + "brand": "Elan" }, "85202001": { - "Nom": "SUD-VENDEE-DISTRIBUTION", - "Marque": "Leclerc" + "name": "SUD-VENDEE-DISTRIBUTION", + "brand": "Leclerc" }, "85210004": { - "Nom": "SUPERMARCHE CASINO", - "Marque": "Super Casino" + "name": "SUPERMARCHE CASINO", + "brand": "Super Casino" }, "85210007": { - "Nom": "SARL LES HARAS", - "Marque": "Avia" + "name": "SARL LES HARAS", + "brand": "Avia" }, "85210008": { - "Nom": "G2C Auto", - "Marque": "Total" + "name": "G2C Auto", + "brand": "Total" }, "85220002": { - "Nom": "SAS SOCODI", - "Marque": "Système U" + "name": "SAS SOCODI", + "brand": "Système U" }, "85230001": { - "Nom": "Super U BEAUVOIR SUR MER", - "Marque": "Système U" + "name": "Super U BEAUVOIR SUR MER", + "brand": "Système U" }, "85230003": { - "Nom": "Intermarché BEAUVOIR SUR MER", - "Marque": "Intermarché" + "name": "Intermarché BEAUVOIR SUR MER", + "brand": "Intermarché" }, "85250001": { - "Nom": "Super U ST FULGENT", - "Marque": "Système U" + "name": "Super U ST FULGENT", + "brand": "Système U" }, "85250002": { - "Nom": "SARL DUPE TROLL", - "Marque": "Shell" + "name": "SARL DUPE TROLL", + "brand": "Shell" }, "85260005": { - "Nom": "R SERVICES - AMIAUD", - "Marque": "R SERVICES" + "name": "R SERVICES - AMIAUD", + "brand": "R SERVICES" }, "85260006": { - "Nom": "AGIP LES BROUZILS A83 SENS NANTES-NIORT", - "Marque": "Agip" + "name": "AGIP LES BROUZILS A83 SENS NANTES-NIORT", + "brand": "Agip" }, "85270001": { - "Nom": "Hyper U ST HILAIRE DE RIEZ", - "Marque": "Système U" + "name": "Hyper U ST HILAIRE DE RIEZ", + "brand": "Système U" }, "85280002": { - "Nom": "RAVIR / ELAN", - "Marque": "Elan" + "name": "RAVIR / ELAN", + "brand": "Elan" }, "85290004": { - "Nom": "FUSELIEZ", - "Marque": "Total" + "name": "FUSELIEZ", + "brand": "Total" }, "85290006": { - "Nom": "Super U MORTAGNE SUR SEVRE", - "Marque": "Système U" + "name": "Super U MORTAGNE SUR SEVRE", + "brand": "Système U" }, "85290009": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "85300001": { - "Nom": "SARL GGE PONTOIZEAU", - "Marque": "Total" + "name": "SARL GGE PONTOIZEAU", + "brand": "Total" }, "85300002": { - "Nom": "Centre E.Leclerc", - "Marque": "Leclerc" + "name": "Centre E.Leclerc", + "brand": "Leclerc" }, "85300003": { - "Nom": "DUBREUIL STATION CHALLANS", - "Marque": "Esso" + "name": "DUBREUIL STATION CHALLANS", + "brand": "Esso" }, "85300004": { - "Nom": "Intermarché CHALLANS CEDEX", - "Marque": "Intermarché" + "name": "Intermarché CHALLANS CEDEX", + "brand": "Intermarché" }, "85306001": { - "Nom": "Hyper U CHALLANS", - "Marque": "Système U" + "name": "Hyper U CHALLANS", + "brand": "Système U" }, "85310001": { - "Nom": "SARL GARAGE DU MOULIN ROUGE", - "Marque": "Avia" + "name": "SARL GARAGE DU MOULIN ROUGE", + "brand": "Avia" }, "85310002": { - "Nom": "GUERINEAU", - "Marque": "Elan" + "name": "GUERINEAU", + "brand": "Elan" }, "85320002": { - "Nom": "Intermarché MAREUIL SUR LAY", - "Marque": "Intermarché" + "name": "Intermarché MAREUIL SUR LAY", + "brand": "Intermarché" }, "85330003": { - "Nom": "Super U NOIRMOUTIER", - "Marque": "Système U" + "name": "Super U NOIRMOUTIER", + "brand": "Système U" }, "85340001": { - "Nom": "Super U Olonne Sur Mer", - "Marque": "Système U" + "name": "Super U Olonne Sur Mer", + "brand": "Système U" }, "85340002": { - "Nom": "RELAIS OLIVIER TESSON", - "Marque": "Total" + "name": "RELAIS OLIVIER TESSON", + "brand": "Total" }, "85340003": { - "Nom": "S.A.S. SODILONNE", - "Marque": "Leclerc" + "name": "S.A.S. SODILONNE", + "brand": "Leclerc" }, "85350001": { - "Nom": "Sarl Martin Cantin", - "Marque": "Indépendant sans enseigne" + "name": "Sarl Martin Cantin", + "brand": "Indépendant sans enseigne" }, "85360001": { - "Nom": "Super U LA TRANCHE SUR MER", - "Marque": "Système U" + "name": "Super U LA TRANCHE SUR MER", + "brand": "Système U" }, "85400001": { - "Nom": "Hyper U LUCON", - "Marque": "Système U" + "name": "Hyper U LUCON", + "brand": "Système U" }, "85400002": { - "Nom": "LE FOURNIL VENDEEN", - "Marque": "Total" + "name": "LE FOURNIL VENDEEN", + "brand": "Total" }, "85400005": { - "Nom": "Ludis La Belle Vie", - "Marque": "Leclerc" + "name": "Ludis La Belle Vie", + "brand": "Leclerc" }, "85400006": { - "Nom": "SAS LUÇON DISTRIBUTION", - "Marque": "Intermarché" + "name": "SAS LUÇON DISTRIBUTION", + "brand": "Intermarché" }, "85403001": { - "Nom": "S.A.S.LUDIS", - "Marque": "Leclerc" + "name": "S.A.S.LUDIS", + "brand": "Leclerc" }, "85430001": { - "Nom": "U Express NIEUL LE DOLENT", - "Marque": "Système U" + "name": "U Express NIEUL LE DOLENT", + "brand": "Système U" }, "85440001": { - "Nom": "Super U TALMONT ST HILAIRE", - "Marque": "Système U" + "name": "Super U TALMONT ST HILAIRE", + "brand": "Système U" }, "85440002": { - "Nom": "SARL THOMAS AUTOMOBILES", - "Marque": "Total" + "name": "SARL THOMAS AUTOMOBILES", + "brand": "Total" }, "85460003": { - "Nom": "Super U L'AIGUILLON SUR MER", - "Marque": "Système U" + "name": "Super U L'AIGUILLON SUR MER", + "brand": "Système U" }, "85470002": { - "Nom": "Super U BRETIGNOLLES", - "Marque": "Système U" + "name": "Super U BRETIGNOLLES", + "brand": "Système U" }, "85480001": { - "Nom": 10, - "Marque": "Total" + "name": 10, + "brand": "Total" }, "85490001": { - "Nom": "Intermarché BENET", - "Marque": "Intermarché" + "name": "Intermarché BENET", + "brand": "Intermarché" }, "85500001": { - "Nom": "ROMPETROL Les Herbiers", - "Marque": "ROMPETROL" + "name": "ROMPETROL Les Herbiers", + "brand": "ROMPETROL" }, "85500002": { - "Nom": "Hyper U LES HERBIERS", - "Marque": "Système U" + "name": "Hyper U LES HERBIERS", + "brand": "Système U" }, "85500003": { - "Nom": "SARL GARAGE MARTINEAU", - "Marque": "Total" + "name": "SARL GARAGE MARTINEAU", + "brand": "Total" }, "85500005": { - "Nom": "HERBIDIS", - "Marque": "Leclerc" + "name": "HERBIDIS", + "brand": "Leclerc" }, "85510001": { - "Nom": "ECOMARCHE LE BOUPERE", - "Marque": "Intermarché" + "name": "ECOMARCHE LE BOUPERE", + "brand": "Intermarché" }, "85520001": { - "Nom": "Super U JARD SUR MER", - "Marque": "Système U" + "name": "Super U JARD SUR MER", + "brand": "Système U" }, "85530001": { - "Nom": "Super U LA BRUFFIERE", - "Marque": "Système U" + "name": "Super U LA BRUFFIERE", + "brand": "Système U" }, "85530002": { - "Nom": "SARL AUTOMOBILES VENDEE SERVICES", - "Marque": "Total" + "name": "SARL AUTOMOBILES VENDEE SERVICES", + "brand": "Total" }, "85530003": { - "Nom": "Sarl Bruffière Automobiles", - "Marque": "Elan" + "name": "Sarl Bruffière Automobiles", + "brand": "Elan" }, "85540001": { - "Nom": "GARAGE OBJOIS", - "Marque": "ESSO" + "name": "GARAGE OBJOIS", + "brand": "ESSO" }, "85540002": { - "Nom": "Intermarché MOUTIERS LES MAUXFAI", - "Marque": "Intermarché Contact" + "name": "Intermarché MOUTIERS LES MAUXFAI", + "brand": "Intermarché Contact" }, "85540003": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "85550001": { - "Nom": "Intermarché FROMENTINE", - "Marque": "Intermarché" + "name": "Intermarché FROMENTINE", + "brand": "Intermarché" }, "85560001": { - "Nom": "STATION GARAGE DE L'OCEAN", - "Marque": "Elan" + "name": "STATION GARAGE DE L'OCEAN", + "brand": "Elan" }, "85560002": { - "Nom": "HYPER CASINO", - "Marque": "Casino" + "name": "HYPER CASINO", + "brand": "Casino" }, "85590001": { - "Nom": "Intermarché LES EPESSES", - "Marque": "Intermarché Contact" + "name": "Intermarché LES EPESSES", + "brand": "Intermarché Contact" }, "85600001": { - "Nom": "GARAGE CHARRIER", - "Marque": "Total" + "name": "GARAGE CHARRIER", + "brand": "Total" }, "85600002": { - "Nom": "Intermarché MONTAIGU", - "Marque": "Intermarché" + "name": "Intermarché MONTAIGU", + "brand": "Intermarché" }, "85600003": { - "Nom": "Super U PAYS DE MONTAIGU", - "Marque": "Système U" + "name": "Super U PAYS DE MONTAIGU", + "brand": "Système U" }, "85603001": { - "Nom": "SODINOVE", - "Marque": "Leclerc" + "name": "SODINOVE", + "brand": "Leclerc" }, "85620001": { - "Nom": "Intermarché ROCHESERVIERE", - "Marque": "Intermarché" + "name": "Intermarché ROCHESERVIERE", + "brand": "Intermarché" }, "85630001": { - "Nom": "U EXPRESS BARBATRE", - "Marque": "Système U" + "name": "U EXPRESS BARBATRE", + "brand": "Système U" }, "85670002": { - "Nom": "SARL GARAGE TENAILLEAU", - "Marque": "ESSO" + "name": "SARL GARAGE TENAILLEAU", + "brand": "ESSO" }, "85680001": { - "Nom": "Intermarché LA GUERINIERE", - "Marque": "Intermarché" + "name": "Intermarché LA GUERINIERE", + "brand": "Intermarché" }, "85690001": { - "Nom": "U Express NOTRE DAME DE MONTS", - "Marque": "Système U" + "name": "U Express NOTRE DAME DE MONTS", + "brand": "Système U" }, "85700002": { - "Nom": "SARL MCN DISTRIBUTION", - "Marque": "Système U" + "name": "SARL MCN DISTRIBUTION", + "brand": "Système U" }, "85710002": { - "Nom": "SARL LO' NA", - "Marque": "Système U" + "name": "SARL LO' NA", + "brand": "Système U" }, "85750002": { - "Nom": "Intermarché ANGLES", - "Marque": "Intermarché Contact" + "name": "Intermarché ANGLES", + "brand": "Intermarché Contact" }, "85800002": { - "Nom": "SARL RELAIS DES SALINES", - "Marque": "Total" + "name": "SARL RELAIS DES SALINES", + "brand": "Total" }, "85800003": { - "Nom": "SAINT GILLES SUD", - "Marque": "Leclerc" + "name": "SAINT GILLES SUD", + "brand": "Leclerc" }, "85804001": { - "Nom": "DISTRIMO", - "Marque": "Système U" + "name": "DISTRIMO", + "brand": "Système U" }, "86000012": { - "Nom": "DEMI LUNE Intermarché POITIERS", - "Marque": "Intermarché" + "name": "DEMI LUNE Intermarché POITIERS", + "brand": "Intermarché" }, "86000013": { - "Nom": "SUPER U POITIERS", - "Marque": "Système U" + "name": "SUPER U POITIERS", + "brand": "Système U" }, "86000014": { - "Nom": "Auchan POITIERS SUD", - "Marque": "Auchan" + "name": "Auchan POITIERS SUD", + "brand": "Auchan" }, "86000020": { - "Nom": "SARL MARAYME", - "Marque": "Avia" + "name": "SARL MARAYME", + "brand": "Avia" }, "86000021": { - "Nom": "AVIA TS 92 POITIERS KENNEDY", - "Marque": "Avia" + "name": "AVIA TS 92 POITIERS KENNEDY", + "brand": "Avia" }, "86000022": { - "Nom": "SARL MARAYME PONT NEUF", - "Marque": "Avia" + "name": "SARL MARAYME PONT NEUF", + "brand": "Avia" }, "86000023": { - "Nom": "AVIA TS 92 POITIERS PORTE DE PARIS", - "Marque": "Avia" + "name": "AVIA TS 92 POITIERS PORTE DE PARIS", + "brand": "Avia" }, "86000024": { - "Nom": "RELAIS Total Access DE LA BUGELLERIE", - "Marque": "Total Access" + "name": "RELAIS Total Access DE LA BUGELLERIE", + "brand": "Total Access" }, "86011002": { - "Nom": "Géant Casino", - "Marque": "Géant" + "name": "Géant Casino", + "brand": "Géant" }, "86036001": { - "Nom": "E. LECLERC Poitiers", - "Marque": "Leclerc" + "name": "E. LECLERC Poitiers", + "brand": "Leclerc" }, "86100001": { - "Nom": "Auchan Chatellerault", - "Marque": "Auchan" + "name": "Auchan Chatellerault", + "brand": "Auchan" }, "86100003": { - "Nom": "Super U Coop Atlantique Châtellerault", - "Marque": "Système U" + "name": "Super U Coop Atlantique Châtellerault", + "brand": "Système U" }, "86100005": { - "Nom": "SARL JAMAIN", - "Marque": "Total" + "name": "SARL JAMAIN", + "brand": "Total" }, "86100009": { - "Nom": "FOCH DISTRIBUTION", - "Marque": "Leclerc" + "name": "FOCH DISTRIBUTION", + "brand": "Leclerc" }, "86100010": { - "Nom": "Intermarché ZI NORD CHATELLERAULT", - "Marque": "Intermarché" + "name": "Intermarché ZI NORD CHATELLERAULT", + "brand": "Intermarché" }, "86100011": { - "Nom": "Intermarché CHATELLERAULT", - "Marque": "Intermarché" + "name": "Intermarché CHATELLERAULT", + "brand": "Intermarché" }, "86100013": { - "Nom": "HRC CHATELLERAULT", - "Marque": "Esso" + "name": "HRC CHATELLERAULT", + "brand": "Esso" }, "86100014": { - "Nom": "AIRE DE CHATELLERAULT USSEAU", - "Marque": "Avia" + "name": "AIRE DE CHATELLERAULT USSEAU", + "brand": "Avia" }, "86102001": { - "Nom": "SAS SODAC DES NATIONS", - "Marque": "Total Access" + "name": "SAS SODAC DES NATIONS", + "brand": "Total Access" }, "86110002": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "86110003": { - "Nom": "ESSO SERVICE MIREBEAU", - "Marque": "Esso" + "name": "ESSO SERVICE MIREBEAU", + "brand": "Esso" }, "86120001": { - "Nom": "GARAGE MARTIN", - "Marque": "Total" + "name": "GARAGE MARTIN", + "brand": "Total" }, "86130002": { - "Nom": "GGE PINAUDEAU", - "Marque": "Total" + "name": "GGE PINAUDEAU", + "brand": "Total" }, "86130005": { - "Nom": "Intermarché JAUNAY CLAN", - "Marque": "Intermarché" + "name": "Intermarché JAUNAY CLAN", + "brand": "Intermarché" }, "86130006": { - "Nom": "Super U St GEORGES LES BAILLARGEAUX", - "Marque": "Système U" + "name": "Super U St GEORGES LES BAILLARGEAUX", + "brand": "Système U" }, "86130008": { - "Nom": "AGIP A10 AIRE POITIERS CHINCE NORD", - "Marque": "Agip" + "name": "AGIP A10 AIRE POITIERS CHINCE NORD", + "brand": "Agip" }, "86130009": { - "Nom": "AVIA Jaunay Clan", - "Marque": "Avia" + "name": "AVIA Jaunay Clan", + "brand": "Avia" }, "86140001": { - "Nom": "SARL GGE COUTON", - "Marque": "Total" + "name": "SARL GGE COUTON", + "brand": "Total" }, "86140002": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "86150002": { - "Nom": "Intermarché L'ISLE JOURDAIN", - "Marque": "Intermarché" + "name": "Intermarché L'ISLE JOURDAIN", + "brand": "Intermarché" }, "86160001": { - "Nom": "GENCAY AUTO", - "Marque": "Elan" + "name": "GENCAY AUTO", + "brand": "Elan" }, "86160002": { - "Nom": "Intermarché GENCAY", - "Marque": "Intermarché" + "name": "Intermarché GENCAY", + "brand": "Intermarché" }, "86170002": { - "Nom": "Super U NEUVILLE DE POITOU", - "Marque": "Système U" + "name": "Super U NEUVILLE DE POITOU", + "brand": "Système U" }, "86170003": { - "Nom": "Total NEUVILLE", - "Marque": "Total" + "name": "Total NEUVILLE", + "brand": "Total" }, "86170004": { - "Nom": "SARL DUGELAY STATION Total", - "Marque": "Total" + "name": "SARL DUGELAY STATION Total", + "brand": "Total" }, "86180001": { - "Nom": "E. LECLERC Buxerolles", - "Marque": "Leclerc" + "name": "E. LECLERC Buxerolles", + "brand": "Leclerc" }, "86180002": { - "Nom": "Super U BUXEROLLES-ST ELOI", - "Marque": "Système U" + "name": "Super U BUXEROLLES-ST ELOI", + "brand": "Système U" }, "86190001": { - "Nom": "Super U VOUILLE", - "Marque": "Système U" + "name": "Super U VOUILLE", + "brand": "Système U" }, "86190003": { - "Nom": "STATION Total", - "Marque": "Total" + "name": "STATION Total", + "brand": "Total" }, "86200001": { - "Nom": "SARL DELACOTE -LOUDUN", - "Marque": "Total" + "name": "SARL DELACOTE -LOUDUN", + "brand": "Total" }, "86200003": { - "Nom": "Super U Coop Atlantique Loudun", - "Marque": "Système U" + "name": "Super U Coop Atlantique Loudun", + "brand": "Système U" }, "86202001": { - "Nom": "LOUDUNDIS SAS", - "Marque": "Leclerc" + "name": "LOUDUNDIS SAS", + "brand": "Leclerc" }, "86220001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "86220003": { - "Nom": "Station Malpeli Les Ormes", - "Marque": "Elan" + "name": "Station Malpeli Les Ormes", + "brand": "Elan" }, "86300001": { - "Nom": "Super U Coop Atlantique Chauvigny", - "Marque": "Système U" + "name": "Super U Coop Atlantique Chauvigny", + "brand": "Système U" }, "86300002": { - "Nom": "MENU AUTOMOBILES", - "Marque": "Esso" + "name": "MENU AUTOMOBILES", + "brand": "Esso" }, "86310001": { - "Nom": "STATION ELAN JEANNETON", - "Marque": "Elan" + "name": "STATION ELAN JEANNETON", + "brand": "Elan" }, "86310002": { - "Nom": "SAVIDIS", - "Marque": "Intermarché Contact" + "name": "SAVIDIS", + "brand": "Intermarché Contact" }, "86320002": { - "Nom": "Intermarché LUSSAC LES CHATEAUX", - "Marque": "Intermarché" + "name": "Intermarché LUSSAC LES CHATEAUX", + "brand": "Intermarché" }, "86340001": { - "Nom": "PICOSSON", - "Marque": "Elan" + "name": "PICOSSON", + "brand": "Elan" }, "86360001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "86360003": { - "Nom": "Access Total RN10 BORDEAUX vers PARIS", - "Marque": "Total Access" + "name": "Access Total RN10 BORDEAUX vers PARIS", + "brand": "Total Access" }, "86360004": { - "Nom": "Access Total RN10 PARIS vers BORDEAUX", - "Marque": "Total Access" + "name": "Access Total RN10 PARIS vers BORDEAUX", + "brand": "Total Access" }, "86360006": { - "Nom": "LEADER PRICE", - "Marque": "Leader Price" + "name": "LEADER PRICE", + "brand": "Leader Price" }, "86370001": { - "Nom": "Super U VIVONNE", - "Marque": "Système U" + "name": "Super U VIVONNE", + "brand": "Système U" }, "86370005": { - "Nom": "Super U LA ROCHE POSAY", - "Marque": "Système U" + "name": "Super U LA ROCHE POSAY", + "brand": "Système U" }, "86370006": { - "Nom": "AVIA VIVONNE", - "Marque": "Avia" + "name": "AVIA VIVONNE", + "brand": "Avia" }, "86370008": { - "Nom": "ESSO EXPRESS VIVONNE LES MINIERES", - "Marque": "Esso Express" + "name": "ESSO EXPRESS VIVONNE LES MINIERES", + "brand": "Esso Express" }, "86380001": { - "Nom": "VENDEUVRE AUTOMOBILES", - "Marque": "Total" + "name": "VENDEUVRE AUTOMOBILES", + "brand": "Total" }, "86380002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "86400001": { - "Nom": "Super U Coop Atlantique Civray", - "Marque": "Système U" + "name": "Super U Coop Atlantique Civray", + "brand": "Système U" }, "86400002": { - "Nom": "JARRY", - "Marque": "Elan" + "name": "JARRY", + "brand": "Elan" }, "86400003": { - "Nom": "Intermarché SAVIGNE CIVRAY", - "Marque": "Intermarché" + "name": "Intermarché SAVIGNE CIVRAY", + "brand": "Intermarché" }, "86440001": { - "Nom": "SAS SACOA DES NATIONS", - "Marque": "Total" + "name": "SAS SACOA DES NATIONS", + "brand": "Total" }, "86440003": { - "Nom": "Supermarché CASINO", - "Marque": "Casino" + "name": "Supermarché CASINO", + "brand": "Casino" }, "86500001": { - "Nom": "Super U Coop Atlantique Montmorillon", - "Marque": "Système U" + "name": "Super U Coop Atlantique Montmorillon", + "brand": "Système U" }, "86500002": { - "Nom": "LECLERC MONTMORILLON", - "Marque": "Leclerc" + "name": "LECLERC MONTMORILLON", + "brand": "Leclerc" }, "86530001": { - "Nom": "Intermarché NAINTRE", - "Marque": "Intermarché" + "name": "Intermarché NAINTRE", + "brand": "Intermarché" }, "86550001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "86550003": { - "Nom": "RELAIS BOIS JOLI", - "Marque": "Total" + "name": "RELAIS BOIS JOLI", + "brand": "Total" }, "86580002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "86600001": { - "Nom": "Intermarché LUSIGNAN", - "Marque": "Intermarché" + "name": "Intermarché LUSIGNAN", + "brand": "Intermarché" }, "86700001": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "86700003": { - "Nom": "Intermarché COUHE-VERAC", - "Marque": "Intermarché" + "name": "Intermarché COUHE-VERAC", + "brand": "Intermarché" }, "86700004": { - "Nom": "Relais des minieres", - "Marque": "Total" + "name": "Relais des minieres", + "brand": "Total" }, "86800003": { - "Nom": "LECLERC JARDRES", - "Marque": "Leclerc" + "name": "LECLERC JARDRES", + "brand": "Leclerc" }, "86800004": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "87000001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "87000002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "87000003": { - "Nom": "U Express Coop Atlantique Limoges Loubier", - "Marque": "Système U" + "name": "U Express Coop Atlantique Limoges Loubier", + "brand": "Système U" }, "87000004": { - "Nom": "Super U Coop Atlantique Limoges Perrin", - "Marque": "Système U" + "name": "Super U Coop Atlantique Limoges Perrin", + "brand": "Système U" }, "87000006": { - "Nom": "Z LIMOGES VENTADOUR", - "Marque": "Intermarché" + "name": "Z LIMOGES VENTADOUR", + "brand": "Intermarché" }, "87000014": { - "Nom": "GARAGE GUYOT", - "Marque": "Elan" + "name": "GARAGE GUYOT", + "brand": "Elan" }, "87000020": { - "Nom": "Intermarché CHU", - "Marque": "Intermarché" + "name": "Intermarché CHU", + "brand": "Intermarché" }, "87000023": { - "Nom": "ESSO EXPRESS LIMOGES CARNOT", - "Marque": "Esso Express" + "name": "ESSO EXPRESS LIMOGES CARNOT", + "brand": "Esso Express" }, "87000024": { - "Nom": "U Express Coop Atlantique Vigenal", - "Marque": "Système U" + "name": "U Express Coop Atlantique Vigenal", + "brand": "Système U" }, "87000027": { - "Nom": "RELAIS DU GOLF", - "Marque": "Total Access" + "name": "RELAIS DU GOLF", + "brand": "Total Access" }, "87000028": { - "Nom": "LECLERC EXPRESS", - "Marque": "Leclerc" + "name": "LECLERC EXPRESS", + "brand": "Leclerc" }, "87100001": { - "Nom": "Hyper U Coop Atlantique Limoges", - "Marque": "Système U" + "name": "Hyper U Coop Atlantique Limoges", + "brand": "Système U" }, "87100006": { - "Nom": "Super U LIMOGES", - "Marque": "Système U" + "name": "Super U LIMOGES", + "brand": "Système U" }, "87100007": { - "Nom": "Intermarché LANDOUGE", - "Marque": "Intermarché" + "name": "Intermarché LANDOUGE", + "brand": "Intermarché" }, "87100010": { - "Nom": "RELAIS BEL AIR", - "Marque": "Total" + "name": "RELAIS BEL AIR", + "brand": "Total" }, "87100011": { - "Nom": "RELAIS LIMOGES LECLERC STAR", - "Marque": "Total Access" + "name": "RELAIS LIMOGES LECLERC STAR", + "brand": "Total Access" }, "87100012": { - "Nom": "AVIA Honiby La Borie", - "Marque": "Avia" + "name": "AVIA Honiby La Borie", + "brand": "Avia" }, "87120002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "87120003": { - "Nom": "GARAGE CHEMARTIN FOURNIER", - "Marque": "Total" + "name": "GARAGE CHEMARTIN FOURNIER", + "brand": "Total" }, "87130001": { - "Nom": "Super U CHATEAUNEUF LA FORET", - "Marque": "Système U" + "name": "Super U CHATEAUNEUF LA FORET", + "brand": "Système U" }, "87140002": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "87150002": { - "Nom": "SAS NAULIDIS", - "Marque": "Intermarché" + "name": "SAS NAULIDIS", + "brand": "Intermarché" }, "87150003": { - "Nom": "U Express SA SMADOUR", - "Marque": "Système U" + "name": "U Express SA SMADOUR", + "brand": "Système U" }, "87160001": { - "Nom": "SGAR SAS", - "Marque": "Shell" + "name": "SGAR SAS", + "brand": "Shell" }, "87160002": { - "Nom": "ESSO BOISMANDE", - "Marque": "Esso" + "name": "ESSO BOISMANDE", + "brand": "Esso" }, "87160006": { - "Nom": "STATION ESSO BOISMANDE", - "Marque": "Esso" + "name": "STATION ESSO BOISMANDE", + "brand": "Esso" }, "87170001": { - "Nom": "U Express Coop Atlantique Isle", - "Marque": "Système U" + "name": "U Express Coop Atlantique Isle", + "brand": "Système U" }, "87190001": { - "Nom": "Intermarché MAGNAC LAVAL", - "Marque": "Intermarché Contact" + "name": "Intermarché MAGNAC LAVAL", + "brand": "Intermarché Contact" }, "87200001": { - "Nom": "Hyper U Coop Atlantique St Junien", - "Marque": "Système U" + "name": "Hyper U Coop Atlantique St Junien", + "brand": "Système U" }, "87200003": { - "Nom": "SOJUDIS", - "Marque": "Leclerc" + "name": "SOJUDIS", + "brand": "Leclerc" }, "87210003": { - "Nom": "Intermarché LE DORAT", - "Marque": "Intermarché Contact" + "name": "Intermarché LE DORAT", + "brand": "Intermarché Contact" }, "87220001": { - "Nom": "Super U FEYTIAT", - "Marque": "Système U" + "name": "Super U FEYTIAT", + "brand": "Système U" }, "87220002": { - "Nom": "Carrefour BOISSEUIL", - "Marque": "Carrefour" + "name": "Carrefour BOISSEUIL", + "brand": "Carrefour" }, "87220003": { - "Nom": "RELAIS MAS CERISE", - "Marque": "Elan" + "name": "RELAIS MAS CERISE", + "brand": "Elan" }, "87230002": { - "Nom": "Intermarché CHALUS", - "Marque": "Intermarché" + "name": "Intermarché CHALUS", + "brand": "Intermarché" }, "87230003": { - "Nom": "Relais Total Chalus", - "Marque": "Total" + "name": "Relais Total Chalus", + "brand": "Total" }, "87240001": { - "Nom": "Super U Coop Atlantique Ambazac", - "Marque": "Système U" + "name": "Super U Coop Atlantique Ambazac", + "brand": "Système U" }, "87250001": { - "Nom": "Intermarché BESSINES S/GARTEMPE", - "Marque": "Intermarché" + "name": "Intermarché BESSINES S/GARTEMPE", + "brand": "Intermarché" }, "87270002": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "87270004": { - "Nom": "ESSO EXPRESS COUZEIX", - "Marque": "Esso Express" + "name": "ESSO EXPRESS COUZEIX", + "brand": "Esso Express" }, "87280001": { - "Nom": "Avia", - "Marque": "Avia" + "name": "Avia", + "brand": "Avia" }, "87280002": { - "Nom": "ESSO BEAUNE LS MINES", - "Marque": "Esso" + "name": "ESSO BEAUNE LS MINES", + "brand": "Esso" }, "87280003": { - "Nom": "LIMOGES-DIS", - "Marque": "Leclerc" + "name": "LIMOGES-DIS", + "brand": "Leclerc" }, "87280005": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "87280008": { - "Nom": "RELAIS LIMOGES GROSSEREIX", - "Marque": "Total Access" + "name": "RELAIS LIMOGES GROSSEREIX", + "brand": "Total Access" }, "87290001": { - "Nom": "SAS PONSAISE", - "Marque": "Intermarché Contact" + "name": "SAS PONSAISE", + "brand": "Intermarché Contact" }, "87300001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "87300002": { - "Nom": "SARL NOGARET", - "Marque": "Total" + "name": "SARL NOGARET", + "brand": "Total" }, "87300003": { - "Nom": "Intermarché BELLAC", - "Marque": "Intermarché" + "name": "Intermarché BELLAC", + "brand": "Intermarché" }, "87320001": { - "Nom": "SARL GARAGE DUPLACIEUX PERE ET FILS (STATION AVIA)", - "Marque": "Avia" + "name": "SARL GARAGE DUPLACIEUX PERE ET FILS (STATION AVIA)", + "brand": "Avia" }, "87350001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "87350002": { - "Nom": "RELAIS DE PANAZOL", - "Marque": "Elan" + "name": "RELAIS DE PANAZOL", + "brand": "Elan" }, "87350003": { - "Nom": "Intermarché PANAZOL", - "Marque": "Intermarché" + "name": "Intermarché PANAZOL", + "brand": "Intermarché" }, "87380002": { - "Nom": "Intermarché MAGNAC BOURG", - "Marque": "Intermarché" + "name": "Intermarché MAGNAC BOURG", + "brand": "Intermarché" }, "87400003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "87400004": { - "Nom": "Jean Claude CHASSOUX", - "Marque": "Total" + "name": "Jean Claude CHASSOUX", + "brand": "Total" }, "87410001": { - "Nom": "Intermarché LE PALAIS SUR VIENNE", - "Marque": "Intermarché" + "name": "Intermarché LE PALAIS SUR VIENNE", + "brand": "Intermarché" }, "87410002": { - "Nom": "Super U Le Palais-sur-Vienne", - "Marque": "Système U" + "name": "Super U Le Palais-sur-Vienne", + "brand": "Système U" }, "87430001": { - "Nom": "SARL BOUHIER", - "Marque": "Avia" + "name": "SARL BOUHIER", + "brand": "Avia" }, "87430003": { - "Nom": "super u verneuil sur vienne", - "Marque": "Système U" + "name": "super u verneuil sur vienne", + "brand": "Système U" }, "87440001": { - "Nom": "CASINO SAS TARGE", - "Marque": "Casino" + "name": "CASINO SAS TARGE", + "brand": "Casino" }, "87500001": { - "Nom": "U Express Coop Atlantique St Yrieix La Perche", - "Marque": "Système U" + "name": "U Express Coop Atlantique St Yrieix La Perche", + "brand": "Système U" }, "87500003": { - "Nom": "RELAIS DE LA LOUE", - "Marque": "Total" + "name": "RELAIS DE LA LOUE", + "brand": "Total" }, "87500004": { - "Nom": "Intermarché GLANDON", - "Marque": "Intermarché" + "name": "Intermarché GLANDON", + "brand": "Intermarché" }, "87500005": { - "Nom": "Intermarché ST.YRIEIX LA PERCHE", - "Marque": "Ecomarché" + "name": "Intermarché ST.YRIEIX LA PERCHE", + "brand": "Ecomarché" }, "87500006": { - "Nom": "Hyper Casino", - "Marque": "Casino" + "name": "Hyper Casino", + "brand": "Casino" }, "87510001": { - "Nom": "U Express NIEUL", - "Marque": "Système U" + "name": "U Express NIEUL", + "brand": "Système U" }, "87520002": { - "Nom": "U EXPRESS", - "Marque": "Système U" + "name": "U EXPRESS", + "brand": "Système U" }, "87570002": { - "Nom": "Carrefour Contact", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact", + "brand": "Carrefour Contact" }, "87600001": { - "Nom": "MR MOUNIER", - "Marque": "Total" + "name": "MR MOUNIER", + "brand": "Total" }, "87600002": { - "Nom": "SA ROCHEDIS", - "Marque": "Carrefour Market" + "name": "SA ROCHEDIS", + "brand": "Carrefour Market" }, "87600003": { - "Nom": "SARL Garage Boulesteix", - "Marque": "Avia" + "name": "SARL Garage Boulesteix", + "brand": "Avia" }, "87700001": { - "Nom": "U Express Coop Atlantique Aixe/Vienne", - "Marque": "Système U" + "name": "U Express Coop Atlantique Aixe/Vienne", + "brand": "Système U" }, "87700004": { - "Nom": "Intermarché AIXE SUR VIENNE", - "Marque": "Intermarché" + "name": "Intermarché AIXE SUR VIENNE", + "brand": "Intermarché" }, "87700005": { - "Nom": "SUPER U AIXE SUR VIENNE", - "Marque": "Système U" + "name": "SUPER U AIXE SUR VIENNE", + "brand": "Système U" }, "87800002": { - "Nom": "Super U NEXON", - "Marque": "Système U" + "name": "Super U NEXON", + "brand": "Système U" }, "88000001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "88000002": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "88000007": { - "Nom": "Intermarché EPINAL", - "Marque": "Intermarché" + "name": "Intermarché EPINAL", + "brand": "Intermarché" }, "88000009": { - "Nom": "RELAIS DES IMAGES", - "Marque": "Total" + "name": "RELAIS DES IMAGES", + "brand": "Total" }, "88000011": { - "Nom": "AGIP EPINAL ROUTE REMIREMONT", - "Marque": "Agip" + "name": "AGIP EPINAL ROUTE REMIREMONT", + "brand": "Agip" }, "88025001": { - "Nom": "Carrefour EPINAL", - "Marque": "Carrefour" + "name": "Carrefour EPINAL", + "brand": "Carrefour" }, "88100004": { - "Nom": "SAS DIEDIS", - "Marque": "Leclerc" + "name": "SAS DIEDIS", + "brand": "Leclerc" }, "88100005": { - "Nom": "Intermarché SAINT DIE", - "Marque": "Intermarché" + "name": "Intermarché SAINT DIE", + "brand": "Intermarché" }, "88100006": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "88100007": { - "Nom": "sas GAZ RELAIS DU HAUT JACQUES", - "Marque": "Total" + "name": "sas GAZ RELAIS DU HAUT JACQUES", + "brand": "Total" }, "88100008": { - "Nom": "ENI SAINT DIE", - "Marque": "Agip" + "name": "ENI SAINT DIE", + "brand": "Agip" }, "88110002": { - "Nom": "RAON DISTRIBUTION", - "Marque": "Leclerc" + "name": "RAON DISTRIBUTION", + "brand": "Leclerc" }, "88110003": { - "Nom": "LEADER PRICE RAON L'ETAPE", - "Marque": "Leader Price" + "name": "LEADER PRICE RAON L'ETAPE", + "brand": "Leader Price" }, "88120001": { - "Nom": "SUPERMARCHE SUPER U - S.A. L'UTILE", - "Marque": "Système U" + "name": "SUPERMARCHE SUPER U - S.A. L'UTILE", + "brand": "Système U" }, "88130001": { - "Nom": "Supermarché Match CHARMES", - "Marque": "Supermarché Match" + "name": "Supermarché Match CHARMES", + "brand": "Supermarché Match" }, "88130002": { - "Nom": "CHARDIS S.A", - "Marque": "Leclerc" + "name": "CHARDIS S.A", + "brand": "Leclerc" }, "88140003": { - "Nom": "CONTREXEDIS", - "Marque": "Leclerc" + "name": "CONTREXEDIS", + "brand": "Leclerc" }, "88140004": { - "Nom": "Intermarché CONTREXEVILLE", - "Marque": "Intermarché" + "name": "Intermarché CONTREXEVILLE", + "brand": "Intermarché" }, "88140006": { - "Nom": "RELAIS DU VAIR", - "Marque": "Total Access" + "name": "RELAIS DU VAIR", + "brand": "Total Access" }, "88150001": { - "Nom": "Supermarché Match THAON LES VOSGES", - "Marque": "Supermarché Match" + "name": "Supermarché Match THAON LES VOSGES", + "brand": "Supermarché Match" }, "88150003": { - "Nom": "SUPER U - SA LES SUREAUX", - "Marque": "Système U" + "name": "SUPER U - SA LES SUREAUX", + "brand": "Système U" }, "88150004": { - "Nom": "L'ACCUEIL TURBO VOSGES", - "Marque": "Total" + "name": "L'ACCUEIL TURBO VOSGES", + "brand": "Total" }, "88160001": { - "Nom": "GMA AUTO SA", - "Marque": "Total" + "name": "GMA AUTO SA", + "brand": "Total" }, "88160002": { - "Nom": "Station Garage COLLE", - "Marque": "Total Access" + "name": "Station Garage COLLE", + "brand": "Total Access" }, "88160003": { - "Nom": "Intermarché LE THILLOT", - "Marque": "Intermarché" + "name": "Intermarché LE THILLOT", + "brand": "Intermarché" }, "88170003": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "88170004": { - "Nom": "AGIP LORRAINE SANDAUCOURT A31 SENS NORD SUD", - "Marque": "Agip" + "name": "AGIP LORRAINE SANDAUCOURT A31 SENS NORD SUD", + "brand": "Agip" }, "88170005": { - "Nom": "SARL GILBERT PATRICK", - "Marque": "Total" + "name": "SARL GILBERT PATRICK", + "brand": "Total" }, "88170006": { - "Nom": "REL.LORRAINE LES RAPPES", - "Marque": "Total" + "name": "REL.LORRAINE LES RAPPES", + "brand": "Total" }, "88190001": { - "Nom": "GOLDIS", - "Marque": "Leclerc" + "name": "GOLDIS", + "brand": "Leclerc" }, "88190003": { - "Nom": "SIMPLY GOLBEY", - "Marque": "SIMPLY" + "name": "SIMPLY GOLBEY", + "brand": "SIMPLY" }, "88200001": { - "Nom": "CORA REMIREMONT", - "Marque": "CORA" + "name": "CORA REMIREMONT", + "brand": "CORA" }, "88200002": { - "Nom": "RELAIS DU SAINT MONT", - "Marque": "Total" + "name": "RELAIS DU SAINT MONT", + "brand": "Total" }, "88200006": { - "Nom": "SODIREM", - "Marque": "Leclerc" + "name": "SODIREM", + "brand": "Leclerc" }, "88200008": { - "Nom": "007 DATS CORNIMONT", - "Marque": "Colruyt" + "name": "007 DATS CORNIMONT", + "brand": "Colruyt" }, "88200009": { - "Nom": "Intermarché REMIREMONT", - "Marque": "Intermarché" + "name": "Intermarché REMIREMONT", + "brand": "Intermarché" }, "88200015": { - "Nom": "RELAIS PTE HTES VOSGES", - "Marque": "Total Access" + "name": "RELAIS PTE HTES VOSGES", + "brand": "Total Access" }, "88200016": { - "Nom": "AGIP AIRE DE PEUXY RN57", - "Marque": "Agip" + "name": "AGIP AIRE DE PEUXY RN57", + "brand": "Agip" }, "88210002": { - "Nom": "021 DATS SENONES", - "Marque": "Colruyt" + "name": "021 DATS SENONES", + "brand": "Colruyt" }, "88220003": { - "Nom": "026 DATS XERTIGNY", - "Marque": "Colruyt" + "name": "026 DATS XERTIGNY", + "brand": "Colruyt" }, "88230001": { - "Nom": "STE GGE FRAXINIEN BALLAND", - "Marque": "Total" + "name": "STE GGE FRAXINIEN BALLAND", + "brand": "Total" }, "88230002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "88240001": { - "Nom": "Intermarché BAINS LES BAINS", - "Marque": "Intermarché" + "name": "Intermarché BAINS LES BAINS", + "brand": "Intermarché" }, "88250001": { - "Nom": "SA GARAGE BERTRAND", - "Marque": "Total" + "name": "SA GARAGE BERTRAND", + "brand": "Total" }, "88250002": { - "Nom": "SUPERMARCHE SUPER U - S.A. SYVI", - "Marque": "Système U" + "name": "SUPERMARCHE SUPER U - S.A. SYVI", + "brand": "Système U" }, "88260001": { - "Nom": "SAS HEUZECO", - "Marque": "Intermarché" + "name": "SAS HEUZECO", + "brand": "Intermarché" }, "88270001": { - "Nom": "ECOMARCHE DOMPAIRE", - "Marque": "Intermarché" + "name": "ECOMARCHE DOMPAIRE", + "brand": "Intermarché" }, "88290001": { - "Nom": "ABEL SERVICES STATION Total", - "Marque": "Total" + "name": "ABEL SERVICES STATION Total", + "brand": "Total" }, "88300001": { - "Nom": "Supermarché Match NEUFCHATEAU", - "Marque": "Supermarché Match" + "name": "Supermarché Match NEUFCHATEAU", + "brand": "Supermarché Match" }, "88300004": { - "Nom": "GARAGE DE L'ETOILE", - "Marque": "Avia" + "name": "GARAGE DE L'ETOILE", + "brand": "Avia" }, "88300005": { - "Nom": "Intermarché NOVACASTRI", - "Marque": "Intermarché" + "name": "Intermarché NOVACASTRI", + "brand": "Intermarché" }, "88300006": { - "Nom": "Station NeoCC", - "Marque": "SarlneoCC" + "name": "Station NeoCC", + "brand": "SarlneoCC" }, "88300008": { - "Nom": "RELAIS DES CAPUCINES", - "Marque": "Total Access" + "name": "RELAIS DES CAPUCINES", + "brand": "Total Access" }, "88307001": { - "Nom": "NEOCADIS SAS", - "Marque": "Leclerc" + "name": "NEOCADIS SAS", + "brand": "Leclerc" }, "88320001": { - "Nom": "Sarl du MONT DES FOURCHES", - "Marque": "Carrefour Express" + "name": "Sarl du MONT DES FOURCHES", + "brand": "Carrefour Express" }, "88340001": { - "Nom": "Intermarché SUPER", - "Marque": "Intermarché" + "name": "Intermarché SUPER", + "brand": "Intermarché" }, "88350002": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "88360001": { - "Nom": "GMA AUTO SA GGE DU CENTRE", - "Marque": "Total" + "name": "GMA AUTO SA GGE DU CENTRE", + "brand": "Total" }, "88360002": { - "Nom": "Intermarché", - "Marque": "Intermarché Contact" + "name": "Intermarché", + "brand": "Intermarché Contact" }, "88390003": { - "Nom": "SAS OLIDEL", - "Marque": "Intermarché" + "name": "SAS OLIDEL", + "brand": "Intermarché" }, "88400002": { - "Nom": "Intermarché GERARDMER", - "Marque": "Intermarché" + "name": "Intermarché GERARDMER", + "brand": "Intermarché" }, "88400003": { - "Nom": "017 DATS NOMEXY", - "Marque": "Colruyt" + "name": "017 DATS NOMEXY", + "brand": "Colruyt" }, "88400005": { - "Nom": "RELAIS DES ROCHIRES", - "Marque": "Total Access" + "name": "RELAIS DES ROCHIRES", + "brand": "Total Access" }, "88400006": { - "Nom": "Garage Defranoux", - "Marque": "Aucune" + "name": "Garage Defranoux", + "brand": "Aucune" }, "88410001": { - "Nom": "8 à huit SARL TYLY", - "Marque": "Huit à 8" + "name": "8 à huit SARL TYLY", + "brand": "Huit à 8" }, "88420002": { - "Nom": "Intermarché MOYENMOUTIER", - "Marque": "Intermarché" + "name": "Intermarché MOYENMOUTIER", + "brand": "Intermarché" }, "88450002": { - "Nom": "RELAIS BOIS DES CHENES", - "Marque": "Total" + "name": "RELAIS BOIS DES CHENES", + "brand": "Total" }, "88500001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "88500002": { - "Nom": "Supermarché Match POUSSAY", - "Marque": "Supermarché Match" + "name": "Supermarché Match POUSSAY", + "brand": "Supermarché Match" }, "88500003": { - "Nom": "GARAGE MATHIS SA", - "Marque": "Total" + "name": "GARAGE MATHIS SA", + "brand": "Total" }, "88500004": { - "Nom": "REL DE LUTHIERS EURL VAUTRIN", - "Marque": "Total" + "name": "REL DE LUTHIERS EURL VAUTRIN", + "brand": "Total" }, "88500006": { - "Nom": "STATION REMY SARL", - "Marque": "Avia" + "name": "STATION REMY SARL", + "brand": "Avia" }, "88500007": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "88550001": { - "Nom": "SUPERMARCHE SUPER U -SAS RONAL", - "Marque": "Système U" + "name": "SUPERMARCHE SUPER U -SAS RONAL", + "brand": "Système U" }, "88580001": { - "Nom": "GGE FERRY", - "Marque": "Total" + "name": "GGE FERRY", + "brand": "Total" }, "88600001": { - "Nom": "GARAGE DIDIER", - "Marque": "Total" + "name": "GARAGE DIDIER", + "brand": "Total" }, "88600002": { - "Nom": "BRUYERES DISTRIBUTION", - "Marque": "Leclerc" + "name": "BRUYERES DISTRIBUTION", + "brand": "Leclerc" }, "88600003": { - "Nom": "Intermarché SAS EXVINO BRUYERES", - "Marque": "Intermarché" + "name": "Intermarché SAS EXVINO BRUYERES", + "brand": "Intermarché" }, "88650001": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "88650002": { - "Nom": "Garage BOUILLON", - "Marque": "Total" + "name": "Garage BOUILLON", + "brand": "Total" }, "88650003": { - "Nom": "DATS SAINT LEONARD", - "Marque": "Colruyt" + "name": "DATS SAINT LEONARD", + "brand": "Colruyt" }, "88700001": { - "Nom": "Supermarché Match RAMBERVILLERS", - "Marque": "Supermarché Match" + "name": "Supermarché Match RAMBERVILLERS", + "brand": "Supermarché Match" }, "88700003": { - "Nom": "Intermarché RAMBERVILLERS", - "Marque": "Intermarché" + "name": "Intermarché RAMBERVILLERS", + "brand": "Intermarché" }, "88700004": { - "Nom": "PRESTIGE AUTOMOBILE SAS", - "Marque": "Indépendant sans enseigne" + "name": "PRESTIGE AUTOMOBILE SAS", + "brand": "Indépendant sans enseigne" }, "88700005": { - "Nom": "LEADER PRICE RAMBERVILLERS", - "Marque": "Leader Price" + "name": "LEADER PRICE RAMBERVILLERS", + "brand": "Leader Price" }, "88700006": { - "Nom": "station la chipotte", - "Marque": "Total" + "name": "station la chipotte", + "brand": "Total" }, "88800001": { - "Nom": "GARAGE BOULET", - "Marque": "Total" + "name": "GARAGE BOULET", + "brand": "Total" }, "88800002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "89000001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "89000002": { - "Nom": "ATAC AUXERRE", - "Marque": "Atac" + "name": "ATAC AUXERRE", + "brand": "Atac" }, "89000003": { - "Nom": "ATAC ST GEORGES SUR BAULCHE", - "Marque": "Atac" + "name": "ATAC ST GEORGES SUR BAULCHE", + "brand": "Atac" }, "89000004": { - "Nom": "AUXERRE AUTOMOBILE", - "Marque": "Total" + "name": "AUXERRE AUTOMOBILE", + "brand": "Total" }, "89000005": { - "Nom": "SARL CYBER", - "Marque": "Total Access" + "name": "SARL CYBER", + "brand": "Total Access" }, "89000007": { - "Nom": "ESSO STE GENEVIEVE", - "Marque": "Esso Express" + "name": "ESSO STE GENEVIEVE", + "brand": "Esso Express" }, "89000008": { - "Nom": "AUXERDIS", - "Marque": "Leclerc" + "name": "AUXERDIS", + "brand": "Leclerc" }, "89000009": { - "Nom": "Intermarché AUXERRE", - "Marque": "Intermarché" + "name": "Intermarché AUXERRE", + "brand": "Intermarché" }, "89000011": { - "Nom": "MARKET AUXERRE", - "Marque": "Carrefour Market" + "name": "MARKET AUXERRE", + "brand": "Carrefour Market" }, "89100001": { - "Nom": "Carrefour SENS MAILLOT", - "Marque": "Carrefour" + "name": "Carrefour SENS MAILLOT", + "brand": "Carrefour" }, "89100002": { - "Nom": "Carrefour SENS VOULX", - "Marque": "Carrefour" + "name": "Carrefour SENS VOULX", + "brand": "Carrefour" }, "89100003": { - "Nom": "SARL LEITUGA", - "Marque": "Total" + "name": "SARL LEITUGA", + "brand": "Total" }, "89100004": { - "Nom": "GGE.DE L YONNE", - "Marque": "Total" + "name": "GGE.DE L YONNE", + "brand": "Total" }, "89100006": { - "Nom": "S.A.DENIDIS", - "Marque": "Leclerc" + "name": "S.A.DENIDIS", + "brand": "Leclerc" }, "89100007": { - "Nom": "STATION DU CLOS-LE-ROY", - "Marque": "BP" + "name": "STATION DU CLOS-LE-ROY", + "brand": "BP" }, "89100009": { - "Nom": "NETTO", - "Marque": "Netto" + "name": "NETTO", + "brand": "Netto" }, "89100011": { - "Nom": "SARL SOGE-CA", - "Marque": "Avia" + "name": "SARL SOGE-CA", + "brand": "Avia" }, "89100013": { - "Nom": "AUCHAN SENS", - "Marque": "Auchan" + "name": "AUCHAN SENS", + "brand": "Auchan" }, "89100014": { - "Nom": "RELAIS DE ROSOY", - "Marque": "Total Access" + "name": "RELAIS DE ROSOY", + "brand": "Total Access" }, "89110001": { - "Nom": "ATAC AILLANT/THOLON", - "Marque": "Atac" + "name": "ATAC AILLANT/THOLON", + "brand": "Atac" }, "89116003": { - "Nom": "RELAIS DE LA COULINE", - "Marque": "Total" + "name": "RELAIS DE LA COULINE", + "brand": "Total" }, "89120001": { - "Nom": "BI1 CHARNY", - "Marque": "BI1" + "name": "BI1 CHARNY", + "brand": "BI1" }, "89120003": { - "Nom": "Intermarché CHARNY", - "Marque": "Intermarché" + "name": "Intermarché CHARNY", + "brand": "Intermarché" }, "89130001": { - "Nom": "ATAC TOUCY", - "Marque": "Atac" + "name": "ATAC TOUCY", + "brand": "Atac" }, "89130002": { - "Nom": "Intermarché TOUCY", - "Marque": "Intermarché" + "name": "Intermarché TOUCY", + "brand": "Intermarché" }, "89130003": { - "Nom": "AVIA TOUCY", - "Marque": "Avia" + "name": "AVIA TOUCY", + "brand": "Avia" }, "89132001": { - "Nom": "SARL AOUYAGUE", - "Marque": "Avia" + "name": "SARL AOUYAGUE", + "brand": "Avia" }, "89140001": { - "Nom": "ATAC PONT SUR YONNE", - "Marque": "Atac" + "name": "ATAC PONT SUR YONNE", + "brand": "Atac" }, "89140004": { - "Nom": "DUCREUX PONT AUTO", - "Marque": "Esso" + "name": "DUCREUX PONT AUTO", + "brand": "Esso" }, "89144002": { - "Nom": "Carrefour Contact LIGNY", - "Marque": "Carrefour Contact" + "name": "Carrefour Contact LIGNY", + "brand": "Carrefour Contact" }, "89150002": { - "Nom": "ESSO VILLEROY", - "Marque": "Esso" + "name": "ESSO VILLEROY", + "brand": "Esso" }, "89150004": { - "Nom": "STATION SCHIEVER", - "Marque": "Indépendant sans enseigne" + "name": "STATION SCHIEVER", + "brand": "Indépendant sans enseigne" }, "89160001": { - "Nom": "STATION BI1", - "Marque": "BI1" + "name": "STATION BI1", + "brand": "BI1" }, "89170001": { - "Nom": "ATAC ST FARGEAU", - "Marque": "Atac" + "name": "ATAC ST FARGEAU", + "brand": "Atac" }, "89190002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "89190004": { - "Nom": "Avia Villeneuve", - "Marque": "Avia" + "name": "Avia Villeneuve", + "brand": "Avia" }, "89190005": { - "Nom": "Avia Vauluisant", - "Marque": "Avia" + "name": "Avia Vauluisant", + "brand": "Avia" }, "89200002": { - "Nom": "Bi1 AVALLON LES CHAUMES", - "Marque": "Atac" + "name": "Bi1 AVALLON LES CHAUMES", + "brand": "Atac" }, "89200003": { - "Nom": "AUCHAN AVALLON", - "Marque": "Auchan" + "name": "AUCHAN AVALLON", + "brand": "Auchan" }, "89200006": { - "Nom": "STATION ETS GUILLEMEAU SARL", - "Marque": "Esso" + "name": "STATION ETS GUILLEMEAU SARL", + "brand": "Esso" }, "89200007": { - "Nom": "Station service avallon", - "Marque": "Casino" + "name": "Station service avallon", + "brand": "Casino" }, "89200008": { - "Nom": "AVIA XPRESS VAUBAN", - "Marque": "Avia" + "name": "AVIA XPRESS VAUBAN", + "brand": "Avia" }, "89210002": { - "Nom": "RELAIS DE BRIENON", - "Marque": "Total" + "name": "RELAIS DE BRIENON", + "brand": "Total" }, "89220001": { - "Nom": "ATAC BLENEAU", - "Marque": "Atac" + "name": "ATAC BLENEAU", + "brand": "Atac" }, "89240003": { - "Nom": "LG GARAGE AUTO ELAN", - "Marque": "Elan" + "name": "LG GARAGE AUTO ELAN", + "brand": "Elan" }, "89250001": { - "Nom": "ATAC SEIGNELAY", - "Marque": "Atac" + "name": "ATAC SEIGNELAY", + "brand": "Atac" }, "89270001": { - "Nom": "ATAC VERMENTON", - "Marque": "Atac" + "name": "ATAC VERMENTON", + "brand": "Atac" }, "89290001": { - "Nom": "ATAC CHAMPS SUR YONNE", - "Marque": "Atac" + "name": "ATAC CHAMPS SUR YONNE", + "brand": "Atac" }, "89290002": { - "Nom": "ATAC VINCELLES", - "Marque": "Atac" + "name": "ATAC VINCELLES", + "brand": "Atac" }, "89290007": { - "Nom": "RELAIS DU VENOY", - "Marque": "Total" + "name": "RELAIS DU VENOY", + "brand": "Total" }, "89290008": { - "Nom": "SARL VINCELLOISE", - "Marque": "Indépendant" + "name": "SARL VINCELLOISE", + "brand": "Indépendant" }, "89290009": { - "Nom": "BP A41 AIRE DE VENOY", - "Marque": "BP" + "name": "BP A41 AIRE DE VENOY", + "brand": "BP" }, "89300001": { - "Nom": "JOIGNY SAJA", - "Marque": "Total" + "name": "JOIGNY SAJA", + "brand": "Total" }, "89300002": { - "Nom": "Intermarché JOIGNY", - "Marque": "Intermarché" + "name": "Intermarché JOIGNY", + "brand": "Intermarché" }, "89310001": { - "Nom": "RELAIS NUCERIEN", - "Marque": "Avia" + "name": "RELAIS NUCERIEN", + "brand": "Avia" }, "89330001": { - "Nom": "Intermarché ST JULIEN DU SAULT", - "Marque": "Intermarché" + "name": "Intermarché ST JULIEN DU SAULT", + "brand": "Intermarché" }, "89330002": { - "Nom": "SARL PERRIGNON", - "Marque": "Esso" + "name": "SARL PERRIGNON", + "brand": "Esso" }, "89340001": { - "Nom": "CARROSSERIE DU MARAIS MANSIOT", - "Marque": "Total" + "name": "CARROSSERIE DU MARAIS MANSIOT", + "brand": "Total" }, "89340003": { - "Nom": "Intermarché VILLENEUVE LA GUYARD", - "Marque": "Intermarché" + "name": "Intermarché VILLENEUVE LA GUYARD", + "brand": "Intermarché" }, "89340004": { - "Nom": "BELLA AUTO SERVICE", - "Marque": "Esso" + "name": "BELLA AUTO SERVICE", + "brand": "Esso" }, "89350001": { - "Nom": "MAXIMARCHE CHAMPIGNELLES", - "Marque": "Maximarché" + "name": "MAXIMARCHE CHAMPIGNELLES", + "brand": "Maximarché" }, "89380001": { - "Nom": "ATAC APPOIGNY", - "Marque": "Atac" + "name": "ATAC APPOIGNY", + "brand": "Atac" }, "89380006": { - "Nom": "RELAIS APPOIGNY", - "Marque": "Total Access" + "name": "RELAIS APPOIGNY", + "brand": "Total Access" }, "89400001": { - "Nom": "ATAC MIGENNES", - "Marque": "Atac" + "name": "ATAC MIGENNES", + "brand": "Atac" }, "89400002": { - "Nom": "ESSO MIGENNES", - "Marque": "Esso Express" + "name": "ESSO MIGENNES", + "brand": "Esso Express" }, "89400003": { - "Nom": "DISMI", - "Marque": "Leclerc" + "name": "DISMI", + "brand": "Leclerc" }, "89400004": { - "Nom": "STATION SERVICE LECLERC", - "Marque": "Leclerc" + "name": "STATION SERVICE LECLERC", + "brand": "Leclerc" }, "89420001": { - "Nom": "BP A6 AIRE DE LA CHAPONNE", - "Marque": "BP" + "name": "BP A6 AIRE DE LA CHAPONNE", + "brand": "BP" }, "89420003": { - "Nom": "HRC AVIA Maison Dieu", - "Marque": "Avia" + "name": "HRC AVIA Maison Dieu", + "brand": "Avia" }, "89420004": { - "Nom": "ESSO CUSSY", - "Marque": "ESSO" + "name": "ESSO CUSSY", + "brand": "ESSO" }, "89420006": { - "Nom": "STATION BP CHAPONNE", - "Marque": "BP" + "name": "STATION BP CHAPONNE", + "brand": "BP" }, "89470001": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "89470004": { - "Nom": "RELAIS DES GDES HAIES", - "Marque": "Total Access" + "name": "RELAIS DES GDES HAIES", + "brand": "Total Access" }, "89500001": { - "Nom": "CASINO SUPERMARCHE", - "Marque": "Casino" + "name": "CASINO SUPERMARCHE", + "brand": "Casino" }, "89520001": { - "Nom": "ATAC ST SAUVEUR EN PUISAYE", - "Marque": "Atac" + "name": "ATAC ST SAUVEUR EN PUISAYE", + "brand": "Atac" }, "89520002": { - "Nom": "SARL MASSOT BOIDIN", - "Marque": "Total" + "name": "SARL MASSOT BOIDIN", + "brand": "Total" }, "89520003": { - "Nom": "MR MME BLANCHARD DOMINIQUE", - "Marque": "Avia" + "name": "MR MME BLANCHARD DOMINIQUE", + "brand": "Avia" }, "89560001": { - "Nom": "SARL STATION DE L'ARMANCE", - "Marque": "Total" + "name": "SARL STATION DE L'ARMANCE", + "brand": "Total" }, "89600001": { - "Nom": "ATAC ST FLORENTIN", - "Marque": "Atac" + "name": "ATAC ST FLORENTIN", + "brand": "Atac" }, "89600003": { - "Nom": "AUTOFLO SA", - "Marque": "Total" + "name": "AUTOFLO SA", + "brand": "Total" }, "89600004": { - "Nom": "Intermarché ST FLORENTIN", - "Marque": "Intermarché" + "name": "Intermarché ST FLORENTIN", + "brand": "Intermarché" }, "89630001": { - "Nom": "ROUSSEAU CARBURANT", - "Marque": "rousseau" + "name": "ROUSSEAU CARBURANT", + "brand": "rousseau" }, "89690001": { - "Nom": "Intermarché CHEROY", - "Marque": "Intermarché" + "name": "Intermarché CHEROY", + "brand": "Intermarché" }, "89700001": { - "Nom": "AUCHAN TONNERRE", - "Marque": "Auchan" + "name": "AUCHAN TONNERRE", + "brand": "Auchan" }, "89700002": { - "Nom": "SAS GREVIN DISTRIBUTION", - "Marque": "Leclerc" + "name": "SAS GREVIN DISTRIBUTION", + "brand": "Leclerc" }, "89800001": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "90000002": { - "Nom": "SARL AMS AUTO", - "Marque": "Total" + "name": "SARL AMS AUTO", + "brand": "Total" }, "90000009": { - "Nom": "STATION AVIA MAC AUTOMOBILE", - "Marque": "Avia" + "name": "STATION AVIA MAC AUTOMOBILE", + "brand": "Avia" }, "90000013": { - "Nom": "RELAIS DES GLACIS", - "Marque": "Total" + "name": "RELAIS DES GLACIS", + "brand": "Total" }, "90000015": { - "Nom": "RELAIS BELFORT LECLERC", - "Marque": "Total Access" + "name": "RELAIS BELFORT LECLERC", + "brand": "Total Access" }, "90008001": { - "Nom": "BELFI CENTRE E. LECLERC", - "Marque": "Leclerc" + "name": "BELFI CENTRE E. LECLERC", + "brand": "Leclerc" }, "90100003": { - "Nom": "Intermarché DELLE", - "Marque": "Intermarché" + "name": "Intermarché DELLE", + "brand": "Intermarché" }, "90100004": { - "Nom": "station Avia", - "Marque": "Avia" + "name": "station Avia", + "brand": "Avia" }, "90130001": { - "Nom": "019 DATS MONTREUX", - "Marque": "Coccinelle" + "name": "019 DATS MONTREUX", + "brand": "Coccinelle" }, "90150001": { - "Nom": "SARL RELAIS DES 3 SAPINS", - "Marque": "Total" + "name": "SARL RELAIS DES 3 SAPINS", + "brand": "Total" }, "90160001": { - "Nom": "AUCHAN BESSONCOURT", - "Marque": "Auchan" + "name": "AUCHAN BESSONCOURT", + "brand": "Auchan" }, "90160002": { - "Nom": "PICOTY RESEAU SAS", - "Marque": "Avia" + "name": "PICOTY RESEAU SAS", + "brand": "Avia" }, "90200002": { - "Nom": "Intermarché GIROMAGNY", - "Marque": "Intermarché" + "name": "Intermarché GIROMAGNY", + "brand": "Intermarché" }, "90200003": { - "Nom": "Station tabac shop", - "Marque": "Total" + "name": "Station tabac shop", + "brand": "Total" }, "90300002": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "90400001": { - "Nom": "CORA ANDELNANS", - "Marque": "CORA" + "name": "CORA ANDELNANS", + "brand": "CORA" }, "90500001": { - "Nom": "AVIA BEAUCOURT", - "Marque": "Avia" + "name": "AVIA BEAUCOURT", + "brand": "Avia" }, "90500002": { - "Nom": "Super u beaucourt", - "Marque": "Système U" + "name": "Super u beaucourt", + "brand": "Système U" }, "90800001": { - "Nom": "GRABON SERGE", - "Marque": "Total" + "name": "GRABON SERGE", + "brand": "Total" }, "91000001": { - "Nom": "EOR BONDOUFLE GD GGE", - "Marque": "Total" + "name": "EOR BONDOUFLE GD GGE", + "brand": "Total" }, "91000004": { - "Nom": "ESSO EVRY", - "Marque": "Esso Express" + "name": "ESSO EVRY", + "brand": "Esso Express" }, "91000007": { - "Nom": "RELAIS DES EPINETTES 91", - "Marque": "Total Access" + "name": "RELAIS DES EPINETTES 91", + "brand": "Total Access" }, "91080001": { - "Nom": "BP COURCOURONNES EVRY", - "Marque": "BP" + "name": "BP COURCOURONNES EVRY", + "brand": "BP" }, "91090001": { - "Nom": "Intermarché LISSES", - "Marque": "Intermarché" + "name": "Intermarché LISSES", + "brand": "Intermarché" }, "91100013": { - "Nom": "EURO PETROL", - "Marque": "Indépendant sans enseigne" + "name": "EURO PETROL", + "brand": "Indépendant sans enseigne" }, "91100014": { - "Nom": "RELAIS LES LISSES", - "Marque": "Total" + "name": "RELAIS LES LISSES", + "brand": "Total" }, "91100015": { - "Nom": "RELAIS DE VILLABE", - "Marque": "Total" + "name": "RELAIS DE VILLABE", + "brand": "Total" }, "91100016": { - "Nom": "RELAIS CORBEIL ESSONNES", - "Marque": "Total Access" + "name": "RELAIS CORBEIL ESSONNES", + "brand": "Total Access" }, "91100017": { - "Nom": "BP RN104 ST GERMAIN LES CHEVRAUX", - "Marque": "BP" + "name": "BP RN104 ST GERMAIN LES CHEVRAUX", + "brand": "BP" }, "91100019": { - "Nom": "ESSO EXPRESS CORBEIL", - "Marque": "Esso" + "name": "ESSO EXPRESS CORBEIL", + "brand": "Esso" }, "91130003": { - "Nom": "ESSO DU PLATEAU", - "Marque": "Esso Express" + "name": "ESSO DU PLATEAU", + "brand": "Esso Express" }, "91130006": { - "Nom": "RELAIS RIS-ORANGIS LIBERATION", - "Marque": "Total Access" + "name": "RELAIS RIS-ORANGIS LIBERATION", + "brand": "Total Access" }, "91130007": { - "Nom": "RELAIS DE RIS", - "Marque": "Total Access" + "name": "RELAIS DE RIS", + "brand": "Total Access" }, "91130008": { - "Nom": "SA IRIS Intermarché", - "Marque": "Intermarché" + "name": "SA IRIS Intermarché", + "brand": "Intermarché" }, "91140002": { - "Nom": "RELAIS Total Access Villebon", - "Marque": "Total Access" + "name": "RELAIS Total Access Villebon", + "brand": "Total Access" }, "91150005": { - "Nom": "Carrefour ETAMPES", - "Marque": "Carrefour" + "name": "Carrefour ETAMPES", + "brand": "Carrefour" }, "91150007": { - "Nom": "ESSO VILLE SAUVAGE", - "Marque": "Esso" + "name": "ESSO VILLE SAUVAGE", + "brand": "Esso" }, "91150008": { - "Nom": "CENTRE LECLERC D ETAMPES (ETAMPES DIS)", - "Marque": "Leclerc" + "name": "CENTRE LECLERC D ETAMPES (ETAMPES DIS)", + "brand": "Leclerc" }, "91150010": { - "Nom": "Intermarché ETAMPES", - "Marque": "Intermarché" + "name": "Intermarché ETAMPES", + "brand": "Intermarché" }, "91150012": { - "Nom": "RELAIS COQUERIVE", - "Marque": "Total Access" + "name": "RELAIS COQUERIVE", + "brand": "Total Access" }, "91150013": { - "Nom": "RELAIS CHALOUETTE", - "Marque": "Total Access" + "name": "RELAIS CHALOUETTE", + "brand": "Total Access" }, "91160006": { - "Nom": "BP BALLAINVILLIERS", - "Marque": "BP" + "name": "BP BALLAINVILLIERS", + "brand": "BP" }, "91160009": { - "Nom": "RELAIS DE LONGJUMEAU", - "Marque": "Total Access" + "name": "RELAIS DE LONGJUMEAU", + "brand": "Total Access" }, "91160010": { - "Nom": "Carrefour market Saulx les chartreux", - "Marque": "Carrefour Market" + "name": "Carrefour market Saulx les chartreux", + "brand": "Carrefour Market" }, "91170003": { - "Nom": "VIRYDIS", - "Marque": "Leclerc" + "name": "VIRYDIS", + "brand": "Leclerc" }, "91170006": { - "Nom": "RELAIS GRANDE BORNE", - "Marque": "Total" + "name": "RELAIS GRANDE BORNE", + "brand": "Total" }, "91170007": { - "Nom": "BP VIRY RN7", - "Marque": "BP" + "name": "BP VIRY RN7", + "brand": "BP" }, "91180001": { - "Nom": "ESSO ARPAJON", - "Marque": "Esso Express" + "name": "ESSO ARPAJON", + "brand": "Esso Express" }, "91180002": { - "Nom": "Intermarché ST GERMAIN LES ARPAJ", - "Marque": "Intermarché" + "name": "Intermarché ST GERMAIN LES ARPAJ", + "brand": "Intermarché" }, "91180007": { - "Nom": "RELAIS GRANDE FOLIE", - "Marque": "Total Access" + "name": "RELAIS GRANDE FOLIE", + "brand": "Total Access" }, "91190001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "91190009": { - "Nom": "BP GIF SUR YVETTE CHEVRY 2", - "Marque": "BP" + "name": "BP GIF SUR YVETTE CHEVRY 2", + "brand": "BP" }, "91190011": { - "Nom": "RELAIS GIF S/ YVETTE LECLERC", - "Marque": "Total Access" + "name": "RELAIS GIF S/ YVETTE LECLERC", + "brand": "Total Access" }, "91190012": { - "Nom": "BP GIF SUR YVETTE LECLERC", - "Marque": "BP" + "name": "BP GIF SUR YVETTE LECLERC", + "brand": "BP" }, "91200001": { - "Nom": "Carrefour ATHIS MONS", - "Marque": "Carrefour" + "name": "Carrefour ATHIS MONS", + "brand": "Carrefour" }, "91200005": { - "Nom": "BP ATHIS MONS", - "Marque": "BP" + "name": "BP ATHIS MONS", + "brand": "BP" }, "91210007": { - "Nom": "RELAIS SENART", - "Marque": "Total" + "name": "RELAIS SENART", + "brand": "Total" }, "91210008": { - "Nom": "RELAIS DRAVEIL DE GAULLE", - "Marque": "Total Access" + "name": "RELAIS DRAVEIL DE GAULLE", + "brand": "Total Access" }, "91210009": { - "Nom": "Super U", - "Marque": "Système U" + "name": "Super U", + "brand": "Système U" }, "91220001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "91230001": { - "Nom": "ESSO MONTGERON", - "Marque": "Esso Express" + "name": "ESSO MONTGERON", + "brand": "Esso Express" }, "91230003": { - "Nom": "MONTGERON - DIS", - "Marque": "Leclerc" + "name": "MONTGERON - DIS", + "brand": "Leclerc" }, "91230004": { - "Nom": "SUPER U Montgeron", - "Marque": "Système U" + "name": "SUPER U Montgeron", + "brand": "Système U" }, "91230005": { - "Nom": "BP MONTGERON", - "Marque": "BP" + "name": "BP MONTGERON", + "brand": "BP" }, "91240001": { - "Nom": "GEANT CASINO", - "Marque": "Géant" + "name": "GEANT CASINO", + "brand": "Géant" }, "91240003": { - "Nom": "BP ST MICHEL SUR ORGE", - "Marque": "BP" + "name": "BP ST MICHEL SUR ORGE", + "brand": "BP" }, "91250001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "91250004": { - "Nom": "EOR SAINTRY GGE DES BROSS", - "Marque": "Total" + "name": "EOR SAINTRY GGE DES BROSS", + "brand": "Total" }, "91250010": { - "Nom": "RELAIS CROIX VERTE", - "Marque": "Total Access" + "name": "RELAIS CROIX VERTE", + "brand": "Total Access" }, "91250011": { - "Nom": "BP RN104 BUTTE GRAVOIS ST GERMAIN LES CORBEILS", - "Marque": "BP" + "name": "BP RN104 BUTTE GRAVOIS ST GERMAIN LES CORBEILS", + "brand": "BP" }, "91260001": { - "Nom": "AUCHAN MONTGERON", - "Marque": "Auchan" + "name": "AUCHAN MONTGERON", + "brand": "Auchan" }, "91260002": { - "Nom": "Intermarché JUVISY-SUR-ORGE", - "Marque": "Intermarché" + "name": "Intermarché JUVISY-SUR-ORGE", + "brand": "Intermarché" }, "91270002": { - "Nom": "Intermarché VIGNEUX", - "Marque": "Intermarché" + "name": "Intermarché VIGNEUX", + "brand": "Intermarché" }, "91270003": { - "Nom": "BP VIGNEUX", - "Marque": "BP" + "name": "BP VIGNEUX", + "brand": "BP" }, "91280001": { - "Nom": "Intermarché ST PIERRE DU PERRAY", - "Marque": "Intermarché" + "name": "Intermarché ST PIERRE DU PERRAY", + "brand": "Intermarché" }, "91290005": { - "Nom": "NETTO", - "Marque": "Netto" + "name": "NETTO", + "brand": "Netto" }, "91290006": { - "Nom": "RELAIS LA MONTAGNE", - "Marque": "Total" + "name": "RELAIS LA MONTAGNE", + "brand": "Total" }, "91290007": { - "Nom": "RELAIS ST GERMAIN L ARPAJON", - "Marque": "Total Access" + "name": "RELAIS ST GERMAIN L ARPAJON", + "brand": "Total Access" }, "91300006": { - "Nom": "MASSY-DISTRIBUTION", - "Marque": "Leclerc" + "name": "MASSY-DISTRIBUTION", + "brand": "Leclerc" }, "91300007": { - "Nom": "CORA MASSY", - "Marque": "CORA" + "name": "CORA MASSY", + "brand": "CORA" }, "91300018": { - "Nom": "RELAIS DU VERGER", - "Marque": "Total" + "name": "RELAIS DU VERGER", + "brand": "Total" }, "91300019": { - "Nom": "RELAIS MASSY LECLERC", - "Marque": "Total Access" + "name": "RELAIS MASSY LECLERC", + "brand": "Total Access" }, "91300020": { - "Nom": "RELAIS MASSY MONTSOURIS", - "Marque": "Total Access" + "name": "RELAIS MASSY MONTSOURIS", + "brand": "Total Access" }, "91300022": { - "Nom": "BP MASSY", - "Marque": "BP" + "name": "BP MASSY", + "brand": "BP" }, "91310002": { - "Nom": "Intermarché LONGPONT SUR ORGE", - "Marque": "Intermarché" + "name": "Intermarché LONGPONT SUR ORGE", + "brand": "Intermarché" }, "91310004": { - "Nom": "Auchan supermarché Leuville sur Orge", - "Marque": "Auchan" + "name": "Auchan supermarché Leuville sur Orge", + "brand": "Auchan" }, "91330001": { - "Nom": "SA CARLES ET FILS", - "Marque": "Total" + "name": "SA CARLES ET FILS", + "brand": "Total" }, "91350002": { - "Nom": "RELAIS DE L'ARBALETE", - "Marque": "Total Access" + "name": "RELAIS DE L'ARBALETE", + "brand": "Total Access" }, "91360003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "91360004": { - "Nom": "RELAIS EPINAY S/ORGE", - "Marque": "Total Access" + "name": "RELAIS EPINAY S/ORGE", + "brand": "Total Access" }, "91370001": { - "Nom": "ESSO VERRIERES", - "Marque": "Esso Express" + "name": "ESSO VERRIERES", + "brand": "Esso Express" }, "91380004": { - "Nom": "ESSO CHILLY MAZARIN", - "Marque": "Esso Express" + "name": "ESSO CHILLY MAZARIN", + "brand": "Esso Express" }, "91380007": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "91380008": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "91380009": { - "Nom": "BP CHILLY MAZARIN BROSSOLETTE", - "Marque": "BP" + "name": "BP CHILLY MAZARIN BROSSOLETTE", + "brand": "BP" }, "91380010": { - "Nom": "RELAIS DE CHILLY", - "Marque": "Total" + "name": "RELAIS DE CHILLY", + "brand": "Total" }, "91380011": { - "Nom": "BP CHILLY MAZARIN AMPERE", - "Marque": "BP" + "name": "BP CHILLY MAZARIN AMPERE", + "brand": "BP" }, "91390002": { - "Nom": "Intermarché FLOTIN", - "Marque": "Intermarché" + "name": "Intermarché FLOTIN", + "brand": "Intermarché" }, "91400005": { - "Nom": "E.LECLERC", - "Marque": "Leclerc" + "name": "E.LECLERC", + "brand": "Leclerc" }, "91400008": { - "Nom": "RELAIS DES CORDIERS", - "Marque": "Total" + "name": "RELAIS DES CORDIERS", + "brand": "Total" }, "91400009": { - "Nom": "RELAIS SACLAY", - "Marque": "Total Access" + "name": "RELAIS SACLAY", + "brand": "Total Access" }, "91400010": { - "Nom": "RELAIS ENGOULEVENTS", - "Marque": "Total Access" + "name": "RELAIS ENGOULEVENTS", + "brand": "Total Access" }, "91400011": { - "Nom": "STATION SHELL SACLAY", - "Marque": "Shell" + "name": "STATION SHELL SACLAY", + "brand": "Shell" }, "91410001": { - "Nom": "RICHEROLLE", - "Marque": "Total" + "name": "RICHEROLLE", + "brand": "Total" }, "91410003": { - "Nom": "Intermarché DOURDAN", - "Marque": "Intermarché" + "name": "Intermarché DOURDAN", + "brand": "Intermarché" }, "91410004": { - "Nom": "STATION DRIVE", - "Marque": "Leclerc" + "name": "STATION DRIVE", + "brand": "Leclerc" }, "91420002": { - "Nom": "Sarl STATION RICHARD", - "Marque": "Elan" + "name": "Sarl STATION RICHARD", + "brand": "Elan" }, "91420004": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "91430003": { - "Nom": "BP IGNY OUEST", - "Marque": "BP" + "name": "BP IGNY OUEST", + "brand": "BP" }, "91450001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "91460008": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "91460013": { - "Nom": "BP MARCOUSSIS BEAUVERT", - "Marque": "BP" + "name": "BP MARCOUSSIS BEAUVERT", + "brand": "BP" }, "91460014": { - "Nom": "BP MARCOUSSIS FOND DES PRES", - "Marque": "BP" + "name": "BP MARCOUSSIS FOND DES PRES", + "brand": "BP" }, "91470007": { - "Nom": "RELAIS LIMOURS", - "Marque": "Total" + "name": "RELAIS LIMOURS", + "brand": "Total" }, "91480001": { - "Nom": "FERREYRA ET SES FILS", - "Marque": "Total" + "name": "FERREYRA ET SES FILS", + "brand": "Total" }, "91490003": { - "Nom": "Intermarché MILLY LA FORET", - "Marque": "Intermarché" + "name": "Intermarché MILLY LA FORET", + "brand": "Intermarché" }, "91490004": { - "Nom": "Carrefour MARKET", - "Marque": "Carrefour Market" + "name": "Carrefour MARKET", + "brand": "Carrefour Market" }, "91490005": { - "Nom": "RELAIS DE MILLY", - "Marque": "Total Access" + "name": "RELAIS DE MILLY", + "brand": "Total Access" }, "91510002": { - "Nom": "Intermarché LARDY", - "Marque": "Intermarché Contact" + "name": "Intermarché LARDY", + "brand": "Intermarché Contact" }, "91520001": { - "Nom": "Intermarché EGLY", - "Marque": "Intermarché" + "name": "Intermarché EGLY", + "brand": "Intermarché" }, "91540003": { - "Nom": "NETTO", - "Marque": "Netto" + "name": "NETTO", + "brand": "Netto" }, "91540004": { - "Nom": "Intermarché", - "Marque": "Intermarché" + "name": "Intermarché", + "brand": "Intermarché" }, "91540005": { - "Nom": "BP MENNECY", - "Marque": "BP" + "name": "BP MENNECY", + "brand": "BP" }, "91570001": { - "Nom": "ESSO FAVREUSE", - "Marque": "Esso Express" + "name": "ESSO FAVREUSE", + "brand": "Esso Express" }, "91570003": { - "Nom": "BP RN118 CHAT BLANC BRIEVRES", - "Marque": "BP" + "name": "BP RN118 CHAT BLANC BRIEVRES", + "brand": "BP" }, "91580001": { - "Nom": "Intermarché ETRECHY", - "Marque": "Intermarché" + "name": "Intermarché ETRECHY", + "brand": "Intermarché" }, "91590001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "91590009": { - "Nom": "RELAIS MOULIN DU GUE", - "Marque": "Total Access" + "name": "RELAIS MOULIN DU GUE", + "brand": "Total Access" }, "91600005": { - "Nom": "RELAIS COQUELICOTS", - "Marque": "Total" + "name": "RELAIS COQUELICOTS", + "brand": "Total" }, "91610001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "91620001": { - "Nom": "Carrefour LA VILLE DU BOIS", - "Marque": "Carrefour" + "name": "Carrefour LA VILLE DU BOIS", + "brand": "Carrefour" }, "91630001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "91630006": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "91630007": { - "Nom": "RELAIS DE TORFOU", - "Marque": "Total Access" + "name": "RELAIS DE TORFOU", + "brand": "Total Access" }, "91640003": { - "Nom": "RELAIS CHANTERAINE", - "Marque": "Total" + "name": "RELAIS CHANTERAINE", + "brand": "Total" }, "91640004": { - "Nom": "RELAIS DE LIMOURS JANVRY", - "Marque": "Total" + "name": "RELAIS DE LIMOURS JANVRY", + "brand": "Total" }, "91650001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "91660001": { - "Nom": "Intermarché MEREVILLE", - "Marque": "Intermarché" + "name": "Intermarché MEREVILLE", + "brand": "Intermarché" }, "91670001": { - "Nom": "ANDIS", - "Marque": "Leclerc" + "name": "ANDIS", + "brand": "Leclerc" }, "91700003": { - "Nom": "Carrefour SAINTE GENEVIEVE DES BOIS", - "Marque": "Carrefour" + "name": "Carrefour SAINTE GENEVIEVE DES BOIS", + "brand": "Carrefour" }, "91700005": { - "Nom": "RELAIS DE FLEURY", - "Marque": "Total Access" + "name": "RELAIS DE FLEURY", + "brand": "Total Access" }, "91700006": { - "Nom": "RELAIS DE LA CONCORDE", - "Marque": "Total" + "name": "RELAIS DE LA CONCORDE", + "brand": "Total" }, "91710001": { - "Nom": "Intermarché VERT LE PETIT", - "Marque": "Intermarché" + "name": "Intermarché VERT LE PETIT", + "brand": "Intermarché" }, "91760001": { - "Nom": "Intermarché ITTEVILLE", - "Marque": "Intermarché" + "name": "Intermarché ITTEVILLE", + "brand": "Intermarché" }, "91800005": { - "Nom": "CORA Val d'Yerres", - "Marque": "CORA" + "name": "CORA Val d'Yerres", + "brand": "CORA" }, "91800008": { - "Nom": "MONOPRIX STATION", - "Marque": "Monoprix" + "name": "MONOPRIX STATION", + "brand": "Monoprix" }, "91800009": { - "Nom": "BP BRUNOY", - "Marque": "BP" + "name": "BP BRUNOY", + "brand": "BP" }, "91814001": { - "Nom": "Carrefour VILLABE", - "Marque": "Carrefour" + "name": "Carrefour VILLABE", + "brand": "Carrefour" }, "91940003": { - "Nom": "Intermarché GOMETZ LE CHATEL", - "Marque": "Intermarché" + "name": "Intermarché GOMETZ LE CHATEL", + "brand": "Intermarché" }, "91940007": { - "Nom": "BP LES ULIS 8 à Huit", - "Marque": "BP" + "name": "BP LES ULIS 8 à Huit", + "brand": "BP" }, "91940008": { - "Nom": "RELAIS ORSAY LES ULIS 1 COURTABOEU", - "Marque": "Total Access" + "name": "RELAIS ORSAY LES ULIS 1 COURTABOEU", + "brand": "Total Access" }, "91940009": { - "Nom": "RELAIS ORSAY LES ULIS 2", - "Marque": "Total Access" + "name": "RELAIS ORSAY LES ULIS 2", + "brand": "Total Access" }, "91942001": { - "Nom": "Carrefour LES ULIS", - "Marque": "Carrefour" + "name": "Carrefour LES ULIS", + "brand": "Carrefour" }, "92000011": { - "Nom": "BP NANTERRE MONT VALERIEN", - "Marque": "BP" + "name": "BP NANTERRE MONT VALERIEN", + "brand": "BP" }, "92000015": { - "Nom": "BP NANTERRE LENINE", - "Marque": "BP" + "name": "BP NANTERRE LENINE", + "brand": "BP" }, "92000017": { - "Nom": "RELAIS GOULVENTS", - "Marque": "Total" + "name": "RELAIS GOULVENTS", + "brand": "Total" }, "92000018": { - "Nom": "RELAIS PONT BEZONS", - "Marque": "Total" + "name": "RELAIS PONT BEZONS", + "brand": "Total" }, "92000019": { - "Nom": "RELAIS NANTERRE", - "Marque": "Total Access" + "name": "RELAIS NANTERRE", + "brand": "Total Access" }, "92000020": { - "Nom": "RELAIS NANTERRE LES DAMADES", - "Marque": "Total Access" + "name": "RELAIS NANTERRE LES DAMADES", + "brand": "Total Access" }, "92000021": { - "Nom": "RELAIS DES ABEILLES", - "Marque": "Total Access" + "name": "RELAIS DES ABEILLES", + "brand": "Total Access" }, "92000024": { - "Nom": "BP NANTERRE CLEMENCEAU", - "Marque": "BP" + "name": "BP NANTERRE CLEMENCEAU", + "brand": "BP" }, "92100010": { - "Nom": "Carburants Morizet", - "Marque": "Elan" + "name": "Carburants Morizet", + "brand": "Elan" }, "92100015": { - "Nom": "RELAIS DE SILLY", - "Marque": "Total" + "name": "RELAIS DE SILLY", + "brand": "Total" }, "92100016": { - "Nom": "BP BOULOGNE BILLANCOURT PT DU JOUR", - "Marque": "BP" + "name": "BP BOULOGNE BILLANCOURT PT DU JOUR", + "brand": "BP" }, "92110010": { - "Nom": "RELAIS PONT DE CLICHY", - "Marque": "Elf" + "name": "RELAIS PONT DE CLICHY", + "brand": "Elf" }, "92120002": { - "Nom": "SARL JABY AVIA", - "Marque": "Avia" + "name": "SARL JABY AVIA", + "brand": "Avia" }, "92120004": { - "Nom": "BP MONTROUGE ARISTIDE BRIAND", - "Marque": "BP" + "name": "BP MONTROUGE ARISTIDE BRIAND", + "brand": "BP" }, "92130005": { - "Nom": "ESSO LA PAIX", - "Marque": "Esso Express" + "name": "ESSO LA PAIX", + "brand": "Esso Express" }, "92130006": { - "Nom": "RELAIS ISSY LES MOULINEAUX VOISIN", - "Marque": "Total Access" + "name": "RELAIS ISSY LES MOULINEAUX VOISIN", + "brand": "Total Access" }, "92140005": { - "Nom": "ESSO RELAIS DU PAVE BLANC", - "Marque": "Esso Express" + "name": "ESSO RELAIS DU PAVE BLANC", + "brand": "Esso Express" }, "92140009": { - "Nom": "BP CLAMART GARE", - "Marque": "BP" + "name": "BP CLAMART GARE", + "brand": "BP" }, "92140014": { - "Nom": "RELAIS CROIX PICARD", - "Marque": "Total" + "name": "RELAIS CROIX PICARD", + "brand": "Total" }, "92140015": { - "Nom": "RELAIS CLAMART TREBIGNAUD", - "Marque": "Total Access" + "name": "RELAIS CLAMART TREBIGNAUD", + "brand": "Total Access" }, "92140016": { - "Nom": "RELAIS CLAMART TREBIGNAUD 2", - "Marque": "Total Access" + "name": "RELAIS CLAMART TREBIGNAUD 2", + "brand": "Total Access" }, "92150006": { - "Nom": "RELAIS SURESNES", - "Marque": "Total" + "name": "RELAIS SURESNES", + "brand": "Total" }, "92150008": { - "Nom": "BP SURESNES", - "Marque": "BP" + "name": "BP SURESNES", + "brand": "BP" }, "92160001": { - "Nom": "Auchan", - "Marque": "Auchan" + "name": "Auchan", + "brand": "Auchan" }, "92160003": { - "Nom": "ESSO RABELAIS", - "Marque": "Esso Express" + "name": "ESSO RABELAIS", + "brand": "Esso Express" }, "92160006": { - "Nom": "RELAIS BACONNETS", - "Marque": "Total Access" + "name": "RELAIS BACONNETS", + "brand": "Total Access" }, "92170002": { - "Nom": "RELAIS DU PLATEAU", - "Marque": "Total" + "name": "RELAIS DU PLATEAU", + "brand": "Total" }, "92190003": { - "Nom": "RELAIS DE MEUDON", - "Marque": "Total" + "name": "RELAIS DE MEUDON", + "brand": "Total" }, "92200005": { - "Nom": "RELAIS DE NEUILLY", - "Marque": "Total" + "name": "RELAIS DE NEUILLY", + "brand": "Total" }, "92200006": { - "Nom": "BP NEUILLY LES TERNES", - "Marque": "BP" + "name": "BP NEUILLY LES TERNES", + "brand": "BP" }, "92210003": { - "Nom": "ESSO SAINT CLOUD", - "Marque": "Esso Express" + "name": "ESSO SAINT CLOUD", + "brand": "Esso Express" }, "92210008": { - "Nom": "BP ST CLOUD REPUBLIQUE 8 à Huit", - "Marque": "BP" + "name": "BP ST CLOUD REPUBLIQUE 8 à Huit", + "brand": "BP" }, "92210009": { - "Nom": "RELAIS ST CLOUD DASSAULT", - "Marque": "Total Access" + "name": "RELAIS ST CLOUD DASSAULT", + "brand": "Total Access" }, "92220009": { - "Nom": "BP BAGNEUX CHATILLON", - "Marque": "BP" + "name": "BP BAGNEUX CHATILLON", + "brand": "BP" }, "92220010": { - "Nom": "BP BAGNEUX BLAGIS", - "Marque": "BP" + "name": "BP BAGNEUX BLAGIS", + "brand": "BP" }, "92230003": { - "Nom": "Carrefour GENNEVILLIERS", - "Marque": "Carrefour" + "name": "Carrefour GENNEVILLIERS", + "brand": "Carrefour" }, "92230008": { - "Nom": "CENTRE E.LECLERC GENNEVILLIERS", - "Marque": "Leclerc" + "name": "CENTRE E.LECLERC GENNEVILLIERS", + "brand": "Leclerc" }, "92230009": { - "Nom": "Station service Girardot", - "Marque": "BP" + "name": "Station service Girardot", + "brand": "BP" }, "92230010": { - "Nom": "RELAIS DES AGNETTES", - "Marque": "Elf" + "name": "RELAIS DES AGNETTES", + "brand": "Elf" }, "92230011": { - "Nom": "RELAIS BONNEQUINS", - "Marque": "Total Access" + "name": "RELAIS BONNEQUINS", + "brand": "Total Access" }, "92240001": { - "Nom": "SARL GALA", - "Marque": "Avia" + "name": "SARL GALA", + "brand": "Avia" }, "92240010": { - "Nom": "BP MALAKOFF LAROUSSE 8 à Huit", - "Marque": "BP" + "name": "BP MALAKOFF LAROUSSE 8 à Huit", + "brand": "BP" }, "92242003": { - "Nom": "RELAIS MALAKOFF", - "Marque": "Elf" + "name": "RELAIS MALAKOFF", + "brand": "Elf" }, "92250002": { - "Nom": "ESSO LA GARENNE", - "Marque": "Esso Express" + "name": "ESSO LA GARENNE", + "brand": "Esso Express" }, "92260001": { - "Nom": "ESSO FONTENAY AUX ROSES", - "Marque": "Esso Express" + "name": "ESSO FONTENAY AUX ROSES", + "brand": "Esso Express" }, "92290005": { - "Nom": "BP CHATENAY MALABRY SPEEDY", - "Marque": "BP" + "name": "BP CHATENAY MALABRY SPEEDY", + "brand": "BP" }, "92300004": { - "Nom": "LEVALLOIS DISTRIBUTION", - "Marque": "Leclerc" + "name": "LEVALLOIS DISTRIBUTION", + "brand": "Leclerc" }, "92300013": { - "Nom": "BP LEVALLOIS VICTOR HUGO 8 à Huit", - "Marque": "BP" + "name": "BP LEVALLOIS VICTOR HUGO 8 à Huit", + "brand": "BP" }, "92300014": { - "Nom": "BP LEVALLOIS PRESIDENT WILSON 8 à Huit", - "Marque": "BP" + "name": "BP LEVALLOIS PRESIDENT WILSON 8 à Huit", + "brand": "BP" }, "92310002": { - "Nom": "BP SEVRES EUROPE", - "Marque": "BP" + "name": "BP SEVRES EUROPE", + "brand": "BP" }, "92320005": { - "Nom": "BP CHATILLON SOUS BAGNEUX 8 à Huit", - "Marque": "BP" + "name": "BP CHATILLON SOUS BAGNEUX 8 à Huit", + "brand": "BP" }, "92330002": { - "Nom": "BP SCEAUX 4 CHEMINS", - "Marque": "BP" + "name": "BP SCEAUX 4 CHEMINS", + "brand": "BP" }, "92340002": { - "Nom": "RELAIS DU PANORAMA", - "Marque": "Total" + "name": "RELAIS DU PANORAMA", + "brand": "Total" }, "92360005": { - "Nom": "BP MEUDON LA FORET DE LATTRE DE TASSIGNY", - "Marque": "BP" + "name": "BP MEUDON LA FORET DE LATTRE DE TASSIGNY", + "brand": "BP" }, "92370002": { - "Nom": "RELAIS GUYNEMER", - "Marque": "Total" + "name": "RELAIS GUYNEMER", + "brand": "Total" }, "92380007": { - "Nom": "BP GARCHES PORTE JAUNE 8 à Huit", - "Marque": "BP" + "name": "BP GARCHES PORTE JAUNE 8 à Huit", + "brand": "BP" }, "92390001": { - "Nom": "BP VILLENEUVE LA GARENNE", - "Marque": "BP" + "name": "BP VILLENEUVE LA GARENNE", + "brand": "BP" }, "92400013": { - "Nom": "BP COURBEVOIE QUAI JOFFRE 8 à Huit", - "Marque": "BP" + "name": "BP COURBEVOIE QUAI JOFFRE 8 à Huit", + "brand": "BP" }, "92400015": { - "Nom": "RELAIS DE LA DEFENSE", - "Marque": "Total" + "name": "RELAIS DE LA DEFENSE", + "brand": "Total" }, "92400016": { - "Nom": "RELAIS FRONT SEINE", - "Marque": "Total" + "name": "RELAIS FRONT SEINE", + "brand": "Total" }, "92400017": { - "Nom": "RELAIS GRANDE JATTE", - "Marque": "Total" + "name": "RELAIS GRANDE JATTE", + "brand": "Total" }, "92400018": { - "Nom": "RELAIS DE L'ALMA", - "Marque": "Total" + "name": "RELAIS DE L'ALMA", + "brand": "Total" }, "92400019": { - "Nom": "RELAIS DE COURBEVOIE", - "Marque": "Total Access" + "name": "RELAIS DE COURBEVOIE", + "brand": "Total Access" }, "92400020": { - "Nom": "RELAIS COURBEVOIE VERDUN", - "Marque": "Total Access" + "name": "RELAIS COURBEVOIE VERDUN", + "brand": "Total Access" }, "92410001": { - "Nom": "ESSO PICARDIE VDA", - "Marque": "Esso Express" + "name": "ESSO PICARDIE VDA", + "brand": "Esso Express" }, "92420002": { - "Nom": "STATION U", - "Marque": "Système U" + "name": "STATION U", + "brand": "Système U" }, "92420003": { - "Nom": "BP VAUCRESSON", - "Marque": "BP" + "name": "BP VAUCRESSON", + "brand": "BP" }, "92500004": { - "Nom": "ACC2", - "Marque": "Avia" + "name": "ACC2", + "brand": "Avia" }, "92500012": { - "Nom": "RELAIS RUEIL MALMAISON", - "Marque": "Total" + "name": "RELAIS RUEIL MALMAISON", + "brand": "Total" }, "92500013": { - "Nom": "RELAIS PARC RICHELIEU", - "Marque": "Total" + "name": "RELAIS PARC RICHELIEU", + "brand": "Total" }, "92500015": { - "Nom": "BP RUEIL MALMAISON 8 à Huit", - "Marque": "BP" + "name": "BP RUEIL MALMAISON 8 à Huit", + "brand": "BP" }, "92600004": { - "Nom": "ESSO ASNIERES", - "Marque": "Esso Express" + "name": "ESSO ASNIERES", + "brand": "Esso Express" }, "92600007": { - "Nom": "BP ASNIERES ARGENTEUIL 8 à Huit", - "Marque": "BP" + "name": "BP ASNIERES ARGENTEUIL 8 à Huit", + "brand": "BP" }, "92600009": { - "Nom": "RELAIS GRESILLONS", - "Marque": "Total" + "name": "RELAIS GRESILLONS", + "brand": "Total" }, "92700002": { - "Nom": "BP COLOMBES 4 ROUTES", - "Marque": "BP" + "name": "BP COLOMBES 4 ROUTES", + "brand": "BP" }, "92700015": { - "Nom": "Sarl multi services automobiles", - "Marque": "Indépendant sans enseigne" + "name": "Sarl multi services automobiles", + "brand": "Indépendant sans enseigne" }, "92700019": { - "Nom": "STATION BP COLOMBES EDGAR QUINET", - "Marque": "BP" + "name": "STATION BP COLOMBES EDGAR QUINET", + "brand": "BP" }, "92700020": { - "Nom": "STATION SHELL COLOMBES", - "Marque": "Shell" + "name": "STATION SHELL COLOMBES", + "brand": "Shell" }, "92700023": { - "Nom": "BP COLOMBES CHARLEBOURG", - "Marque": "BP" + "name": "BP COLOMBES CHARLEBOURG", + "brand": "BP" }, "92700024": { - "Nom": "BP COLOMBES VALMY 8 à Huit", - "Marque": "BP" + "name": "BP COLOMBES VALMY 8 à Huit", + "brand": "BP" }, "92800007": { - "Nom": "BP PUTEAUX SAINT JULIEN", - "Marque": "BP" + "name": "BP PUTEAUX SAINT JULIEN", + "brand": "BP" }, "92800008": { - "Nom": "BP PUTEAUX LE FRANCE Carrefour EXPRESS", - "Marque": "BP" + "name": "BP PUTEAUX LE FRANCE Carrefour EXPRESS", + "brand": "BP" }, "93000001": { - "Nom": "BP BOBIGNY PVC SPEEDY", - "Marque": "BP" + "name": "BP BOBIGNY PVC SPEEDY", + "brand": "BP" }, "93000010": { - "Nom": "RELAIS BOBIGNY ARAGON", - "Marque": "Total Access" + "name": "RELAIS BOBIGNY ARAGON", + "brand": "Total Access" }, "93000011": { - "Nom": "BP BOBIGNY J JAURES 8 à Huit", - "Marque": "BP" + "name": "BP BOBIGNY J JAURES 8 à Huit", + "brand": "BP" }, "93100004": { - "Nom": "BP MONTREUIL NOUVELLE FRANCE", - "Marque": "BP" + "name": "BP MONTREUIL NOUVELLE FRANCE", + "brand": "BP" }, "93100006": { - "Nom": "Carrefour PORTE DE MONTREUIL", - "Marque": "Carrefour" + "name": "Carrefour PORTE DE MONTREUIL", + "brand": "Carrefour" }, "93100011": { - "Nom": "BP MONTREUIL ARISTIDE BRIAND 8 à Huit", - "Marque": "BP" + "name": "BP MONTREUIL ARISTIDE BRIAND 8 à Huit", + "brand": "BP" }, "93100013": { - "Nom": "RELAIS PARC MONTREAU", - "Marque": "Total" + "name": "RELAIS PARC MONTREAU", + "brand": "Total" }, "93100014": { - "Nom": "RELAIS MONTREUIL SUEUR", - "Marque": "Total Access" + "name": "RELAIS MONTREUIL SUEUR", + "brand": "Total Access" }, "93100015": { - "Nom": "RELAIS DE L'AMITIE", - "Marque": "Total Access" + "name": "RELAIS DE L'AMITIE", + "brand": "Total Access" }, "93110005": { - "Nom": "RELAIS DES SOUDOUX", - "Marque": "Total" + "name": "RELAIS DES SOUDOUX", + "brand": "Total" }, "93120001": { - "Nom": "AIRE DE LA COURNEUVE OUEST", - "Marque": "CARAUTOROUTES" + "name": "AIRE DE LA COURNEUVE OUEST", + "brand": "CARAUTOROUTES" }, "93120004": { - "Nom": "RELAIS DE LA COURNEUVE EST", - "Marque": "Total" + "name": "RELAIS DE LA COURNEUVE EST", + "brand": "Total" }, "93130006": { - "Nom": "ESSO NOISY LE SEC", - "Marque": "Esso" + "name": "ESSO NOISY LE SEC", + "brand": "Esso" }, "93130007": { - "Nom": "BP A3 NOISY LE SEC", - "Marque": "BP" + "name": "BP A3 NOISY LE SEC", + "brand": "BP" }, "93130009": { - "Nom": "RELAIS BREMENT", - "Marque": "Total Access" + "name": "RELAIS BREMENT", + "brand": "Total Access" }, "93130011": { - "Nom": "BP NOISY LE SEC BREMENT 8 à Huit", - "Marque": "BP" + "name": "BP NOISY LE SEC BREMENT 8 à Huit", + "brand": "BP" }, "93140002": { - "Nom": "ESSO BONDY", - "Marque": "Esso Express" + "name": "ESSO BONDY", + "brand": "Esso Express" }, "93140003": { - "Nom": "ESSO GALLIENI", - "Marque": "Esso Express" + "name": "ESSO GALLIENI", + "brand": "Esso Express" }, "93140004": { - "Nom": "BP BONDY", - "Marque": "BP" + "name": "BP BONDY", + "brand": "BP" }, "93150007": { - "Nom": "ESSO AEROPORT", - "Marque": "Esso Express" + "name": "ESSO AEROPORT", + "brand": "Esso Express" }, "93150008": { - "Nom": "DRIVE E.LECLERC BLANC MESNIL", - "Marque": "Leclerc" + "name": "DRIVE E.LECLERC BLANC MESNIL", + "brand": "Leclerc" }, "93150009": { - "Nom": "RELAIS LE BLANC MESNIL", - "Marque": "Total" + "name": "RELAIS LE BLANC MESNIL", + "brand": "Total" }, "93150011": { - "Nom": "E. Leclerc Blanc Mesnil", - "Marque": "Leclerc" + "name": "E. Leclerc Blanc Mesnil", + "brand": "Leclerc" }, "93150012": { - "Nom": "BP LE BLANC MESNIL PVC", - "Marque": "BP" + "name": "BP LE BLANC MESNIL PVC", + "brand": "BP" }, "93160001": { - "Nom": "NOISY GD RICHARDETS G", - "Marque": "Total" + "name": "NOISY GD RICHARDETS G", + "brand": "Total" }, "93160004": { - "Nom": "ESSO DU CHAMPY", - "Marque": "Esso Express" + "name": "ESSO DU CHAMPY", + "brand": "Esso Express" }, "93160005": { - "Nom": "ESSO LA MARNE NOISY", - "Marque": "Esso Express" + "name": "ESSO LA MARNE NOISY", + "brand": "Esso Express" }, "93160006": { - "Nom": "Intermarché NOISY-LE-GRAND", - "Marque": "Intermarché" + "name": "Intermarché NOISY-LE-GRAND", + "brand": "Intermarché" }, "93160007": { - "Nom": "Total metin noisy le grand", - "Marque": "Total" + "name": "Total metin noisy le grand", + "brand": "Total" }, "93160008": { - "Nom": "RELAIS NOISY LE GRAND", - "Marque": "Total" + "name": "RELAIS NOISY LE GRAND", + "brand": "Total" }, "93160009": { - "Nom": "RELAIS DU GRAND CHENE", - "Marque": "Total" + "name": "RELAIS DU GRAND CHENE", + "brand": "Total" }, "93170002": { - "Nom": "RELAIS DES MEUNIERS", - "Marque": "Total" + "name": "RELAIS DES MEUNIERS", + "brand": "Total" }, "93190001": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "93190002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "93190004": { - "Nom": "BP LIVRY GARGAN SPEEDY", - "Marque": "BP" + "name": "BP LIVRY GARGAN SPEEDY", + "brand": "BP" }, "93190006": { - "Nom": "BP LIVRY GARGAN", - "Marque": "BP" + "name": "BP LIVRY GARGAN", + "brand": "BP" }, "93200008": { - "Nom": "BP ST DENIS PVC 8 à Huit", - "Marque": "BP" + "name": "BP ST DENIS PVC 8 à Huit", + "brand": "BP" }, "93210003": { - "Nom": "RELAIS DU LANDY", - "Marque": "Total" + "name": "RELAIS DU LANDY", + "brand": "Total" }, "93230005": { - "Nom": "RELAIS DES FONTAINES", - "Marque": "Total" + "name": "RELAIS DES FONTAINES", + "brand": "Total" }, "93240001": { - "Nom": "Carrefour stains", - "Marque": "Carrefour" + "name": "Carrefour stains", + "brand": "Carrefour" }, "93240005": { - "Nom": "SARL JORDAN STATION BP", - "Marque": "BP" + "name": "SARL JORDAN STATION BP", + "brand": "BP" }, "93240007": { - "Nom": "RELAIS CLOS ST.LAZARE", - "Marque": "Total" + "name": "RELAIS CLOS ST.LAZARE", + "brand": "Total" }, "93240008": { - "Nom": "RELAIS STAINS MARCEL CACHIN", - "Marque": "Total Access" + "name": "RELAIS STAINS MARCEL CACHIN", + "brand": "Total Access" }, "93250004": { - "Nom": "STATION DU CHALET", - "Marque": "Esso" + "name": "STATION DU CHALET", + "brand": "Esso" }, "93250005": { - "Nom": "SRD", - "Marque": "Indépendant sans enseigne" + "name": "SRD", + "brand": "Indépendant sans enseigne" }, "93250009": { - "Nom": "BP VILLEMONBLE 8 à Huit", - "Marque": "BP" + "name": "BP VILLEMONBLE 8 à Huit", + "brand": "BP" }, "93260007": { - "Nom": "RELAIS LES LILAS RUE DE PARIS", - "Marque": "Total Access" + "name": "RELAIS LES LILAS RUE DE PARIS", + "brand": "Total Access" }, "93270001": { - "Nom": "Carrefour SEVRAN", - "Marque": "Carrefour" + "name": "Carrefour SEVRAN", + "brand": "Carrefour" }, "93270006": { - "Nom": "BP SEVRAN LECLERC", - "Marque": "BP" + "name": "BP SEVRAN LECLERC", + "brand": "BP" }, "93290003": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "93290005": { - "Nom": "RELAIS CROIX PIGEOT", - "Marque": "Total" + "name": "RELAIS CROIX PIGEOT", + "brand": "Total" }, "93290006": { - "Nom": "RELAIS TREMBLAY EN FRANCE", - "Marque": "Total Access" + "name": "RELAIS TREMBLAY EN FRANCE", + "brand": "Total Access" }, "93300001": { - "Nom": "BP AUBERVILLIERS ROOSEVELT", - "Marque": "BP" + "name": "BP AUBERVILLIERS ROOSEVELT", + "brand": "BP" }, "93300002": { - "Nom": "BP AUBERVILLIERS VICTOR HUGO", - "Marque": "BP" + "name": "BP AUBERVILLIERS VICTOR HUGO", + "brand": "BP" }, "93300003": { - "Nom": "BP AUBERVILLIERS PONT BLANC", - "Marque": "BP" + "name": "BP AUBERVILLIERS PONT BLANC", + "brand": "BP" }, "93300008": { - "Nom": "SIMPLY MARKET", - "Marque": "Simply Market" + "name": "SIMPLY MARKET", + "brand": "Simply Market" }, "93300009": { - "Nom": "RELAIS CLOS BESNARD", - "Marque": "Total" + "name": "RELAIS CLOS BESNARD", + "brand": "Total" }, "93320002": { - "Nom": "RELAIS A. BRIAND", - "Marque": "Total" + "name": "RELAIS A. BRIAND", + "brand": "Total" }, "93330001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "93330004": { - "Nom": "Hyper U", - "Marque": "Système U" + "name": "Hyper U", + "brand": "Système U" }, "93330005": { - "Nom": "RELAIS FOCH", - "Marque": "Total" + "name": "RELAIS FOCH", + "brand": "Total" }, "93330006": { - "Nom": "RELAIS NEUILLY SUR MARNE", - "Marque": "Total Access" + "name": "RELAIS NEUILLY SUR MARNE", + "brand": "Total Access" }, "93350003": { - "Nom": "RELAIS GOUTTE D'OR", - "Marque": "Total Access" + "name": "RELAIS GOUTTE D'OR", + "brand": "Total Access" }, "93360002": { - "Nom": "SEGM RENAULT", - "Marque": "Elan" + "name": "SEGM RENAULT", + "brand": "Elan" }, "93370001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "93380009": { - "Nom": "RELAIS PICARDIE", - "Marque": "Total Access" + "name": "RELAIS PICARDIE", + "brand": "Total Access" }, "93380010": { - "Nom": "RELAIS PIERREFITTE MERMOZ", - "Marque": "Total Access" + "name": "RELAIS PIERREFITTE MERMOZ", + "brand": "Total Access" }, "93390001": { - "Nom": "E.LECLERC CLICHY2", - "Marque": "Leclerc" + "name": "E.LECLERC CLICHY2", + "brand": "Leclerc" }, "93400007": { - "Nom": "SARL ILIANN", - "Marque": "Esso" + "name": "SARL ILIANN", + "brand": "Esso" }, "93400010": { - "Nom": "RELAIS ST OUEN MICHELET", - "Marque": "Total" + "name": "RELAIS ST OUEN MICHELET", + "brand": "Total" }, "93400011": { - "Nom": "RELAIS ECU DE FRANCE", - "Marque": "Total" + "name": "RELAIS ECU DE FRANCE", + "brand": "Total" }, "93410002": { - "Nom": "BP VAUJOURS", - "Marque": "BP" + "name": "BP VAUJOURS", + "brand": "BP" }, "93420001": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Simply Market" + "name": "AUCHAN SUPERMARCHE", + "brand": "Simply Market" }, "93420004": { - "Nom": "BP VILLEPINTE", - "Marque": "BP" + "name": "BP VILLEPINTE", + "brand": "BP" }, "93420007": { - "Nom": "RELAIS DES CARREAUX", - "Marque": "Total Access" + "name": "RELAIS DES CARREAUX", + "brand": "Total Access" }, "93420008": { - "Nom": "BP VILLEPINTE CLEMENCEAU", - "Marque": "BP" + "name": "BP VILLEPINTE CLEMENCEAU", + "brand": "BP" }, "93440004": { - "Nom": "RELAIS PONT YBLON", - "Marque": "Total" + "name": "RELAIS PONT YBLON", + "brand": "Total" }, "93470002": { - "Nom": "Intermarché COUBRON", - "Marque": "Intermarché" + "name": "Intermarché COUBRON", + "brand": "Intermarché" }, "93500007": { - "Nom": "RELAIS PANTIN LOLIVE", - "Marque": "Total" + "name": "RELAIS PANTIN LOLIVE", + "brand": "Total" }, "93500008": { - "Nom": "RELAIS PANTIN LECLERC", - "Marque": "Total Access" + "name": "RELAIS PANTIN LECLERC", + "brand": "Total Access" }, "93600006": { - "Nom": "Intermarché AULNAY SOUS BOIS", - "Marque": "Intermarché" + "name": "Intermarché AULNAY SOUS BOIS", + "brand": "Intermarché" }, "93600010": { - "Nom": "SARL AUTO NET", - "Marque": "Esso" + "name": "SARL AUTO NET", + "brand": "Esso" }, "93600014": { - "Nom": "BP AULNAY GONESSE", - "Marque": "BP" + "name": "BP AULNAY GONESSE", + "brand": "BP" }, "93600016": { - "Nom": "RELAIS DES MERISIERS", - "Marque": "Total" + "name": "RELAIS DES MERISIERS", + "brand": "Total" }, "93600017": { - "Nom": "BP AULNAY RN370", - "Marque": "BP" + "name": "BP AULNAY RN370", + "brand": "BP" }, "93606001": { - "Nom": "Carrefour AULNAY SOUS BOIS", - "Marque": "Carrefour" + "name": "Carrefour AULNAY SOUS BOIS", + "brand": "Carrefour" }, "93700003": { - "Nom": "Carrefour STATION SERVICE DRANCY", - "Marque": "Carrefour" + "name": "Carrefour STATION SERVICE DRANCY", + "brand": "Carrefour" }, "93700004": { - "Nom": "RELAIS DE DRANCY", - "Marque": "Total" + "name": "RELAIS DE DRANCY", + "brand": "Total" }, "93700006": { - "Nom": "BP DRANCY", - "Marque": "BP" + "name": "BP DRANCY", + "brand": "BP" }, "93800003": { - "Nom": "ESSO MARECHAUX", - "Marque": "Esso Express" + "name": "ESSO MARECHAUX", + "brand": "Esso Express" }, "93800005": { - "Nom": "EPINAY EXPLOITATION", - "Marque": "Leclerc" + "name": "EPINAY EXPLOITATION", + "brand": "Leclerc" }, "93800006": { - "Nom": "RELAIS CLAUD.DEBUSSY", - "Marque": "Total" + "name": "RELAIS CLAUD.DEBUSSY", + "brand": "Total" }, "94000004": { - "Nom": "ESSO RTE ROSES", - "Marque": "Esso Express" + "name": "ESSO RTE ROSES", + "brand": "Esso Express" }, "94000006": { - "Nom": "FMB94 SARL", - "Marque": "Esso" + "name": "FMB94 SARL", + "brand": "Esso" }, "94000009": { - "Nom": "RELAIS DE MONTAIGUT", - "Marque": "Total Access" + "name": "RELAIS DE MONTAIGUT", + "brand": "Total Access" }, "94000010": { - "Nom": "RELAIS DE CRETEIL A 86", - "Marque": "Total Access" + "name": "RELAIS DE CRETEIL A 86", + "brand": "Total Access" }, "94000011": { - "Nom": "RELAIS DE POMPADOUR", - "Marque": "Total Access" + "name": "RELAIS DE POMPADOUR", + "brand": "Total Access" }, "94000012": { - "Nom": "BP CRETEIL LE LAC", - "Marque": "BP" + "name": "BP CRETEIL LE LAC", + "brand": "BP" }, "94003002": { - "Nom": "RELAIS DU MARECHAL FOCH", - "Marque": "Total" + "name": "RELAIS DU MARECHAL FOCH", + "brand": "Total" }, "94012001": { - "Nom": "Carrefour Créteil Soleil", - "Marque": "Carrefour" + "name": "Carrefour Créteil Soleil", + "brand": "Carrefour" }, "94100005": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "94100006": { - "Nom": "ESSO FOCH", - "Marque": "Esso Express" + "name": "ESSO FOCH", + "brand": "Esso Express" }, "94100008": { - "Nom": "EURL MEHDI", - "Marque": "Avia" + "name": "EURL MEHDI", + "brand": "Avia" }, "94100011": { - "Nom": "BP ST MAUR CRETEIL 8 à Huit", - "Marque": "BP" + "name": "BP ST MAUR CRETEIL 8 à Huit", + "brand": "BP" }, "94100012": { - "Nom": "Total Carrefour des nations", - "Marque": "Total" + "name": "Total Carrefour des nations", + "brand": "Total" }, "94110003": { - "Nom": "BP ARCUEIL", - "Marque": "BP" + "name": "BP ARCUEIL", + "brand": "BP" }, "94110004": { - "Nom": "ESSO ARCUEIL", - "Marque": "Esso Express" + "name": "ESSO ARCUEIL", + "brand": "Esso Express" }, "94110005": { - "Nom": "RELAIS DE LA VANNE", - "Marque": "Total" + "name": "RELAIS DE LA VANNE", + "brand": "Total" }, "94120001": { - "Nom": "FONTENAY S B NATIONS", - "Marque": "Total" + "name": "FONTENAY S B NATIONS", + "brand": "Total" }, "94120005": { - "Nom": "SARL MECARAPID", - "Marque": "Avia" + "name": "SARL MECARAPID", + "brand": "Avia" }, "94120010": { - "Nom": "BP FONTENAY SOUS BOIS VAL DE FONTENAY", - "Marque": "BP" + "name": "BP FONTENAY SOUS BOIS VAL DE FONTENAY", + "brand": "BP" }, "94130002": { - "Nom": "ETOILE DE NOGENT SARL", - "Marque": "Esso" + "name": "ETOILE DE NOGENT SARL", + "brand": "Esso" }, "94130003": { - "Nom": "RELAIS DES MARECHAUX", - "Marque": "Total" + "name": "RELAIS DES MARECHAUX", + "brand": "Total" }, "94140004": { - "Nom": "RELAIS PORT ANGLAIS", - "Marque": "Total" + "name": "RELAIS PORT ANGLAIS", + "brand": "Total" }, "94150005": { - "Nom": "RELAIS RUNGIS DELTA", - "Marque": "Total" + "name": "RELAIS RUNGIS DELTA", + "brand": "Total" }, "94150006": { - "Nom": "RELAIS RUNGIS LINDBERGH", - "Marque": "Total Access" + "name": "RELAIS RUNGIS LINDBERGH", + "brand": "Total Access" }, "94150008": { - "Nom": "BP RUNGIS ANNEAU NORD", - "Marque": "BP" + "name": "BP RUNGIS ANNEAU NORD", + "brand": "BP" }, "94150009": { - "Nom": "BP RUNGIS ANNEAU SUD", - "Marque": "BP" + "name": "BP RUNGIS ANNEAU SUD", + "brand": "BP" }, "94160001": { - "Nom": "AVIA SAINT MANDE", - "Marque": "Avia" + "name": "AVIA SAINT MANDE", + "brand": "Avia" }, "94170002": { - "Nom": "ESSO LE PERREUX", - "Marque": "Esso Express" + "name": "ESSO LE PERREUX", + "brand": "Esso Express" }, "94170004": { - "Nom": "ESSO SERVICE HOEL", - "Marque": "Esso" + "name": "ESSO SERVICE HOEL", + "brand": "Esso" }, "94190002": { - "Nom": "ESSO VALENTON CHURCHIL", - "Marque": "Esso Express" + "name": "ESSO VALENTON CHURCHIL", + "brand": "Esso Express" }, "94190003": { - "Nom": "Intermarché VILLENEUVE ST GEORGE", - "Marque": "Intermarché" + "name": "Intermarché VILLENEUVE ST GEORGE", + "brand": "Intermarché" }, "94190005": { - "Nom": "SARL SIGESS CLD", - "Marque": "Esso" + "name": "SARL SIGESS CLD", + "brand": "Esso" }, "94200003": { - "Nom": "BP IVRY SUR SEINE MAIRIE", - "Marque": "BP" + "name": "BP IVRY SUR SEINE MAIRIE", + "brand": "BP" }, "94200008": { - "Nom": "RELAIS IVRY S/ SEINE STADE", - "Marque": "Total" + "name": "RELAIS IVRY S/ SEINE STADE", + "brand": "Total" }, "94204001": { - "Nom": "Carrefour IVRY SUR SEINE", - "Marque": "Carrefour" + "name": "Carrefour IVRY SUR SEINE", + "brand": "Carrefour" }, "94220003": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "94220004": { - "Nom": "RELAIS DE CONFLANS", - "Marque": "Total" + "name": "RELAIS DE CONFLANS", + "brand": "Total" }, "94240004": { - "Nom": "BP L'HAY LES ROSES", - "Marque": "BP" + "name": "BP L'HAY LES ROSES", + "brand": "BP" }, "94250001": { - "Nom": "ESSO GENTILLY", - "Marque": "Esso Express" + "name": "ESSO GENTILLY", + "brand": "Esso Express" }, "94270005": { - "Nom": "E.LECLERC", - "Marque": "Leclerc" + "name": "E.LECLERC", + "brand": "Leclerc" }, "94290003": { - "Nom": "AGIP VILLENEUVE LE ROI", - "Marque": "Agip" + "name": "AGIP VILLENEUVE LE ROI", + "brand": "Agip" }, "94300001": { - "Nom": "SIAV SA", - "Marque": "Esso" + "name": "SIAV SA", + "brand": "Esso" }, "94310002": { - "Nom": "E LECLERC ORLY DISTRIBUTION", - "Marque": "Leclerc" + "name": "E LECLERC ORLY DISTRIBUTION", + "brand": "Leclerc" }, "94310004": { - "Nom": "RELAIS DU BAS MARIN", - "Marque": "Total Access" + "name": "RELAIS DU BAS MARIN", + "brand": "Total Access" }, "94340003": { - "Nom": "ESSO JOINVILLE", - "Marque": "Esso Express" + "name": "ESSO JOINVILLE", + "brand": "Esso Express" }, "94340007": { - "Nom": "BP JOINVILLE LE PONT CHAPSAL", - "Marque": "BP" + "name": "BP JOINVILLE LE PONT CHAPSAL", + "brand": "BP" }, "94340008": { - "Nom": "BP JOINVILLE LE PONT EUROPE", - "Marque": "BP" + "name": "BP JOINVILLE LE PONT EUROPE", + "brand": "BP" }, "94350002": { - "Nom": "BP VILLIERS SUR MARNE 8 à Huit", - "Marque": "BP" + "name": "BP VILLIERS SUR MARNE 8 à Huit", + "brand": "BP" }, "94370003": { - "Nom": "ESSO PETIT MARAIS", - "Marque": "Esso Express" + "name": "ESSO PETIT MARAIS", + "brand": "Esso Express" }, "94370005": { - "Nom": "GARAGE DES MESANGES", - "Marque": "Esso" + "name": "GARAGE DES MESANGES", + "brand": "Esso" }, "94370007": { - "Nom": "SARL DURMUS", - "Marque": "Total" + "name": "SARL DURMUS", + "brand": "Total" }, "94370008": { - "Nom": "RELAIS DU MORBRAS", - "Marque": "Total Access" + "name": "RELAIS DU MORBRAS", + "brand": "Total Access" }, "94380002": { - "Nom": "ESSO BONNEUIL", - "Marque": "Esso Express" + "name": "ESSO BONNEUIL", + "brand": "Esso Express" }, "94380003": { - "Nom": "Station LECLERC BONNEUIL", - "Marque": "Leclerc" + "name": "Station LECLERC BONNEUIL", + "brand": "Leclerc" }, "94380004": { - "Nom": "RELAIS BONNEUIL S MARNE", - "Marque": "Total Access" + "name": "RELAIS BONNEUIL S MARNE", + "brand": "Total Access" }, "94400003": { - "Nom": "ESSO ROUGET DE L'ISLE", - "Marque": "Esso Express" + "name": "ESSO ROUGET DE L'ISLE", + "brand": "Esso Express" }, "94400004": { - "Nom": "E.LECLERC VITRY-SUR-SEINE", - "Marque": "Leclerc" + "name": "E.LECLERC VITRY-SUR-SEINE", + "brand": "Leclerc" }, "94400005": { - "Nom": "RELAIS DE VITRY", - "Marque": "Total Access" + "name": "RELAIS DE VITRY", + "brand": "Total Access" }, "94420001": { - "Nom": "EXCELLENCE AUTOMOBILE SER", - "Marque": "Total" + "name": "EXCELLENCE AUTOMOBILE SER", + "brand": "Total" }, "94420004": { - "Nom": "BP LE PLESSIS TREVISE", - "Marque": "BP" + "name": "BP LE PLESSIS TREVISE", + "brand": "BP" }, "94430002": { - "Nom": "CHENNEVIERES CARR DS Total", - "Marque": "Total" + "name": "CHENNEVIERES CARR DS Total", + "brand": "Total" }, "94430003": { - "Nom": "Carrefour ORMESSON", - "Marque": "Carrefour" + "name": "Carrefour ORMESSON", + "brand": "Carrefour" }, "94430007": { - "Nom": "RELAIS PRES FLEURANT", - "Marque": "Total Access" + "name": "RELAIS PRES FLEURANT", + "brand": "Total Access" }, "94440001": { - "Nom": "Intermarché VILLECRESNES", - "Marque": "Intermarché" + "name": "Intermarché VILLECRESNES", + "brand": "Intermarché" }, "94450004": { - "Nom": "RELAIS DE SEZE", - "Marque": "Total Access" + "name": "RELAIS DE SEZE", + "brand": "Total Access" }, "94460001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "94470002": { - "Nom": "BP BOISSY SAINT LEGER", - "Marque": "BP" + "name": "BP BOISSY SAINT LEGER", + "brand": "BP" }, "94470005": { - "Nom": "Relais de marne et seine", - "Marque": "Avia" + "name": "Relais de marne et seine", + "brand": "Avia" }, "94500007": { - "Nom": "E. LECLERC CHAMPIGNY SUR MARNE", - "Marque": "Leclerc" + "name": "E. LECLERC CHAMPIGNY SUR MARNE", + "brand": "Leclerc" }, "94500010": { - "Nom": "RELAIS LA FOURCHETTE", - "Marque": "Total" + "name": "RELAIS LA FOURCHETTE", + "brand": "Total" }, "94500011": { - "Nom": "RELAIS DU TREMBLAY", - "Marque": "Total" + "name": "RELAIS DU TREMBLAY", + "brand": "Total" }, "94500014": { - "Nom": "BP CHAMPIGNY 8 à Huit", - "Marque": "BP" + "name": "BP CHAMPIGNY 8 à Huit", + "brand": "BP" }, "94510001": { - "Nom": "LA QUEUE EN BRIE-EURO", - "Marque": "Total Access" + "name": "LA QUEUE EN BRIE-EURO", + "brand": "Total Access" }, "94537002": { - "Nom": "RELAIS RUNGIS HALLES", - "Marque": "Total" + "name": "RELAIS RUNGIS HALLES", + "brand": "Total" }, "94542003": { - "Nom": "AVIA ORLY", - "Marque": "Avia" + "name": "AVIA ORLY", + "brand": "Avia" }, "94550001": { - "Nom": "ESSO CHEVILLY LA RUE", - "Marque": "Esso Express" + "name": "ESSO CHEVILLY LA RUE", + "brand": "Esso Express" }, "94550002": { - "Nom": "RELAIS CHEVILLY-LARUE DE GAULLE", - "Marque": "Total" + "name": "RELAIS CHEVILLY-LARUE DE GAULLE", + "brand": "Total" }, "94594002": { - "Nom": "RELAIS DE RUNGIS", - "Marque": "Total" + "name": "RELAIS DE RUNGIS", + "brand": "Total" }, "94594003": { - "Nom": "BP RUNGIS VIADUC", - "Marque": "BP" + "name": "BP RUNGIS VIADUC", + "brand": "BP" }, "94600003": { - "Nom": "ESSO RN 305", - "Marque": "Esso Express" + "name": "ESSO RN 305", + "brand": "Esso Express" }, "94600005": { - "Nom": "Intermarché CHOISY LE ROI", - "Marque": "Intermarché" + "name": "Intermarché CHOISY LE ROI", + "brand": "Intermarché" }, "94600007": { - "Nom": "RELAIS DU LUGO", - "Marque": "Total" + "name": "RELAIS DU LUGO", + "brand": "Total" }, "94651002": { - "Nom": "BP THIAIS SUD SPEEDY", - "Marque": "BP" + "name": "BP THIAIS SUD SPEEDY", + "brand": "BP" }, "94700005": { - "Nom": "ESSO PARIS GENEVE", - "Marque": "Esso Express" + "name": "ESSO PARIS GENEVE", + "brand": "Esso Express" }, "94700007": { - "Nom": "STATION AVIA", - "Marque": "Avia" + "name": "STATION AVIA", + "brand": "Avia" }, "94700008": { - "Nom": "RELAIS DU FORT", - "Marque": "Total" + "name": "RELAIS DU FORT", + "brand": "Total" }, "94700009": { - "Nom": "RELAIS ALOUETTES", - "Marque": "Total Access" + "name": "RELAIS ALOUETTES", + "brand": "Total Access" }, "94800007": { - "Nom": "RELAIS ST SIMON", - "Marque": "Total Access" + "name": "RELAIS ST SIMON", + "brand": "Total Access" }, "94800008": { - "Nom": "RELAIS DE VILLEJUIF", - "Marque": "Total Access" + "name": "RELAIS DE VILLEJUIF", + "brand": "Total Access" }, "94880001": { - "Nom": "Intermarché NOISEAU", - "Marque": "Intermarché" + "name": "Intermarché NOISEAU", + "brand": "Intermarché" }, "95000007": { - "Nom": "SARL SIGESS ESSO 3 FONTAINES", - "Marque": "Esso" + "name": "SARL SIGESS ESSO 3 FONTAINES", + "brand": "Esso" }, "95000011": { - "Nom": "BP CERGY L HAUTIL Carrefour EXPRESS", - "Marque": "BP" + "name": "BP CERGY L HAUTIL Carrefour EXPRESS", + "brand": "BP" }, "95000013": { - "Nom": "BP JOUY LE MOUTIER LES BOURSEAUX", - "Marque": "BP" + "name": "BP JOUY LE MOUTIER LES BOURSEAUX", + "brand": "BP" }, "95100006": { - "Nom": "BP ARGENTEUIL HLM", - "Marque": "BP" + "name": "BP ARGENTEUIL HLM", + "brand": "BP" }, "95100007": { - "Nom": "BP ARGENTEUIL Q ST DENIS", - "Marque": "BP" + "name": "BP ARGENTEUIL Q ST DENIS", + "brand": "BP" }, "95100011": { - "Nom": "ESSO PONT D'ARGENTEUIL", - "Marque": "Esso Express" + "name": "ESSO PONT D'ARGENTEUIL", + "brand": "Esso Express" }, "95100021": { - "Nom": "BP ARGENTEUIL J JAURES", - "Marque": "BP" + "name": "BP ARGENTEUIL J JAURES", + "brand": "BP" }, "95100025": { - "Nom": "ESSO VAL NOTRE DAME", - "Marque": "Esso" + "name": "ESSO VAL NOTRE DAME", + "brand": "Esso" }, "95100029": { - "Nom": "AUCHAN SARCELLES", - "Marque": "Auchan" + "name": "AUCHAN SARCELLES", + "brand": "Auchan" }, "95100030": { - "Nom": "RELAIS DE JOLIVAL", - "Marque": "Total" + "name": "RELAIS DE JOLIVAL", + "brand": "Total" }, "95100032": { - "Nom": "RELAIS ARGENTEUIL", - "Marque": "Total Access" + "name": "RELAIS ARGENTEUIL", + "brand": "Total Access" }, "95100033": { - "Nom": "RELAIS DES IMPRESSIONNISTES", - "Marque": "Total Access" + "name": "RELAIS DES IMPRESSIONNISTES", + "brand": "Total Access" }, "95100034": { - "Nom": "RELAIS ARGENTEUIL BALMONT", - "Marque": "Total Access" + "name": "RELAIS ARGENTEUIL BALMONT", + "brand": "Total Access" }, "95100035": { - "Nom": "RELAIS ARGENTEUIL CHATEAUBRIANT", - "Marque": "Total Access" + "name": "RELAIS ARGENTEUIL CHATEAUBRIANT", + "brand": "Total Access" }, "95110006": { - "Nom": "RELAIS BUTTE SANNOIS", - "Marque": "Total Access" + "name": "RELAIS BUTTE SANNOIS", + "brand": "Total Access" }, "95110007": { - "Nom": "RELAIS SANNOIS GABRIEL PERI", - "Marque": "Total Access" + "name": "RELAIS SANNOIS GABRIEL PERI", + "brand": "Total Access" }, "95120001": { - "Nom": "CORA ERMONT", - "Marque": "CORA" + "name": "CORA ERMONT", + "brand": "CORA" }, "95120002": { - "Nom": "BP ERMONT", - "Marque": "BP" + "name": "BP ERMONT", + "brand": "BP" }, "95130001": { - "Nom": "ESSO FRANCONVILLE", - "Marque": "Esso Express" + "name": "ESSO FRANCONVILLE", + "brand": "Esso Express" }, "95137001": { - "Nom": "FRANCONDIS", - "Marque": "Leclerc" + "name": "FRANCONDIS", + "brand": "Leclerc" }, "95140001": { - "Nom": "CORA", - "Marque": "CORA" + "name": "CORA", + "brand": "CORA" }, "95150001": { - "Nom": "AUCHAN TAVERNY", - "Marque": "Auchan" + "name": "AUCHAN TAVERNY", + "brand": "Auchan" }, "95150002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "95150005": { - "Nom": "BP TAVERNY", - "Marque": "BP" + "name": "BP TAVERNY", + "brand": "BP" }, "95160003": { - "Nom": "SA BASTINGAL", - "Marque": "Intermarché" + "name": "SA BASTINGAL", + "brand": "Intermarché" }, "95170001": { - "Nom": "BP DEUIL LA BARRE AV. PARIS", - "Marque": "BP" + "name": "BP DEUIL LA BARRE AV. PARIS", + "brand": "BP" }, "95170002": { - "Nom": "ESSO DEUIL LA BARRE", - "Marque": "Esso Express" + "name": "ESSO DEUIL LA BARRE", + "brand": "Esso Express" }, "95180001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "95190003": { - "Nom": "Carrefour Goussainville", - "Marque": "Carrefour" + "name": "Carrefour Goussainville", + "brand": "Carrefour" }, "95190005": { - "Nom": "RELAIS GRAND PRE", - "Marque": "Total" + "name": "RELAIS GRAND PRE", + "brand": "Total" }, "95190006": { - "Nom": "RELAIS GOUSSAINVILLE A.SARRAUT", - "Marque": "Total Access" + "name": "RELAIS GOUSSAINVILLE A.SARRAUT", + "brand": "Total Access" }, "95220003": { - "Nom": "ESSO HERBLAY", - "Marque": "Esso Express" + "name": "ESSO HERBLAY", + "brand": "Esso Express" }, "95220005": { - "Nom": "SAS TARADIS", - "Marque": "Système U" + "name": "SAS TARADIS", + "brand": "Système U" }, "95220006": { - "Nom": "RELAIS DES COPISTES", - "Marque": "Total" + "name": "RELAIS DES COPISTES", + "brand": "Total" }, "95230006": { - "Nom": "BP SOISY HIPPODROME Carrefour EXPRESS", - "Marque": "BP" + "name": "BP SOISY HIPPODROME Carrefour EXPRESS", + "brand": "BP" }, "95230008": { - "Nom": "RELAIS DE SOISY", - "Marque": "Total" + "name": "RELAIS DE SOISY", + "brand": "Total" }, "95230010": { - "Nom": "AUTO SERVICES DE SOISY", - "Marque": "Total" + "name": "AUTO SERVICES DE SOISY", + "brand": "Total" }, "95240003": { - "Nom": "ESSO CORMEILLES EN PARISIS", - "Marque": "Esso" + "name": "ESSO CORMEILLES EN PARISIS", + "brand": "Esso" }, "95260002": { - "Nom": "Intermarché BEAUMONT SUR OISE", - "Marque": "Intermarché" + "name": "Intermarché BEAUMONT SUR OISE", + "brand": "Intermarché" }, "95260003": { - "Nom": "RELAIS DES CIMENTS", - "Marque": "Total Access" + "name": "RELAIS DES CIMENTS", + "brand": "Total Access" }, "95270001": { - "Nom": "Market", - "Marque": "Carrefour Market" + "name": "Market", + "brand": "Carrefour Market" }, "95270002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "95270004": { - "Nom": "CHEVAL NOIR SARL", - "Marque": "Avia" + "name": "CHEVAL NOIR SARL", + "brand": "Avia" }, "95270006": { - "Nom": "RELAIS CHAUMONTEL", - "Marque": "Total Access" + "name": "RELAIS CHAUMONTEL", + "brand": "Total Access" }, "95280001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "95290001": { - "Nom": "Carrefour L ISLE ADAM", - "Marque": "Carrefour" + "name": "Carrefour L ISLE ADAM", + "brand": "Carrefour" }, "95290003": { - "Nom": "RELAIS ISLE ADAM", - "Marque": "Total" + "name": "RELAIS ISLE ADAM", + "brand": "Total" }, "95300004": { - "Nom": "RELAIS VIOSNE", - "Marque": "Total Access" + "name": "RELAIS VIOSNE", + "brand": "Total Access" }, "95310003": { - "Nom": "LECLERC SAINT-OUEN-L'AUMONE", - "Marque": "Leclerc" + "name": "LECLERC SAINT-OUEN-L'AUMONE", + "brand": "Leclerc" }, "95310008": { - "Nom": "ESSO", - "Marque": "Esso" + "name": "ESSO", + "brand": "Esso" }, "95310010": { - "Nom": "BP ST OUEN L'AUMONE SPEEDY", - "Marque": "BP" + "name": "BP ST OUEN L'AUMONE SPEEDY", + "brand": "BP" }, "95310011": { - "Nom": "RELAIS DES OZIERS", - "Marque": "Total" + "name": "RELAIS DES OZIERS", + "brand": "Total" }, "95320005": { - "Nom": "BP ST LEU LA FORET", - "Marque": "BP" + "name": "BP ST LEU LA FORET", + "brand": "BP" }, "95320006": { - "Nom": "RELAIS ST LEU LA FORET", - "Marque": "Total Access" + "name": "RELAIS ST LEU LA FORET", + "brand": "Total Access" }, "95330009": { - "Nom": "SARL Bremat", - "Marque": "Esso" + "name": "SARL Bremat", + "brand": "Esso" }, "95331002": { - "Nom": "BP DOMONT", - "Marque": "BP" + "name": "BP DOMONT", + "brand": "BP" }, "95340003": { - "Nom": "Sodipers expansion", - "Marque": "Leclerc" + "name": "Sodipers expansion", + "brand": "Leclerc" }, "95340004": { - "Nom": "BP PERSAN J JAURES", - "Marque": "BP" + "name": "BP PERSAN J JAURES", + "brand": "BP" }, "95350002": { - "Nom": "Carrefour st brice sous forêt", - "Marque": "Carrefour" + "name": "Carrefour st brice sous forêt", + "brand": "Carrefour" }, "95350004": { - "Nom": "RELAIS ST BRICE SOUS FORET", - "Marque": "Total" + "name": "RELAIS ST BRICE SOUS FORET", + "brand": "Total" }, "95360001": { - "Nom": "Intermarché MONTMAGNY", - "Marque": "Intermarché" + "name": "Intermarché MONTMAGNY", + "brand": "Intermarché" }, "95370001": { - "Nom": "Carrefour MONTIGNY LES CORMEILLES", - "Marque": "Carrefour" + "name": "Carrefour MONTIGNY LES CORMEILLES", + "brand": "Carrefour" }, "95370003": { - "Nom": "BP MONTIGNY LES CORMEILLES", - "Marque": "BP" + "name": "BP MONTIGNY LES CORMEILLES", + "brand": "BP" }, "95370007": { - "Nom": "RELAIS DU CROISILLON", - "Marque": "Total Access" + "name": "RELAIS DU CROISILLON", + "brand": "Total Access" }, "95370008": { - "Nom": "RELAIS MONTIGNY LES CORMEILLES", - "Marque": "Total Access" + "name": "RELAIS MONTIGNY LES CORMEILLES", + "brand": "Total Access" }, "95380001": { - "Nom": "Auchan Supermarché", - "Marque": "Auchan" + "name": "Auchan Supermarché", + "brand": "Auchan" }, "95380002": { - "Nom": "GARAGE DU MOULIN", - "Marque": "Avia" + "name": "GARAGE DU MOULIN", + "brand": "Avia" }, "95390001": { - "Nom": "AUBINS SAINT-PRIX S.A.", - "Marque": "Leclerc" + "name": "AUBINS SAINT-PRIX S.A.", + "brand": "Leclerc" }, "95400003": { - "Nom": "ESSO ARNOUVILLE", - "Marque": "Esso Express" + "name": "ESSO ARNOUVILLE", + "brand": "Esso Express" }, "95400004": { - "Nom": "AUCHAN SUPERMARCHE", - "Marque": "Auchan" + "name": "AUCHAN SUPERMARCHE", + "brand": "Auchan" }, "95400007": { - "Nom": "CASINO VILLIERS LE BEL", - "Marque": "Casino" + "name": "CASINO VILLIERS LE BEL", + "brand": "Casino" }, "95400008": { - "Nom": "RELAIS VILLIERS LE BEL LES ERA", - "Marque": "Total Access" + "name": "RELAIS VILLIERS LE BEL LES ERA", + "brand": "Total Access" }, "95420002": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "95420003": { - "Nom": "E. LECLERC", - "Marque": "Leclerc" + "name": "E. LECLERC", + "brand": "Leclerc" }, "95420005": { - "Nom": "RELAIS ST ANTOINE", - "Marque": "Total Access" + "name": "RELAIS ST ANTOINE", + "brand": "Total Access" }, "95440001": { - "Nom": "SCS DISECO", - "Marque": "Système U" + "name": "SCS DISECO", + "brand": "Système U" }, "95440002": { - "Nom": "SRD", - "Marque": "Indépendant sans enseigne" + "name": "SRD", + "brand": "Indépendant sans enseigne" }, "95450006": { - "Nom": "RELAIS SAGY 1", - "Marque": "Total Access" + "name": "RELAIS SAGY 1", + "brand": "Total Access" }, "95450007": { - "Nom": "RELAIS SAGY 2", - "Marque": "Total Access" + "name": "RELAIS SAGY 2", + "brand": "Total Access" }, "95460003": { - "Nom": "RELAIS EZANVILLE", - "Marque": "Total" + "name": "RELAIS EZANVILLE", + "brand": "Total" }, "95470004": { - "Nom": "STATION SHELL", - "Marque": "Shell" + "name": "STATION SHELL", + "brand": "Shell" }, "95470005": { - "Nom": "RELAIS PARISIS", - "Marque": "Total" + "name": "RELAIS PARISIS", + "brand": "Total" }, "95470006": { - "Nom": "RELAIS DE FOSSES", - "Marque": "Total" + "name": "RELAIS DE FOSSES", + "brand": "Total" }, "95472001": { - "Nom": "SERDIS", - "Marque": "Leclerc" + "name": "SERDIS", + "brand": "Leclerc" }, "95480002": { - "Nom": "ESSO PIERRELAYE", - "Marque": "Esso" + "name": "ESSO PIERRELAYE", + "brand": "Esso" }, "95480003": { - "Nom": "RELAIS PIERRELAYE", - "Marque": "Total" + "name": "RELAIS PIERRELAYE", + "brand": "Total" }, "95500003": { - "Nom": "STE TURPIN VIGNALS SARL", - "Marque": "Esso" + "name": "STE TURPIN VIGNALS SARL", + "brand": "Esso" }, "95500006": { - "Nom": "SA GONESDIS", - "Marque": "Leclerc" + "name": "SA GONESDIS", + "brand": "Leclerc" }, "95500010": { - "Nom": "RELAIS GONESSE LES TULIPES", - "Marque": "Total" + "name": "RELAIS GONESSE LES TULIPES", + "brand": "Total" }, "95500011": { - "Nom": "RELAIS CROIX ST BENOIT", - "Marque": "Total Access" + "name": "RELAIS CROIX ST BENOIT", + "brand": "Total Access" }, "95500012": { - "Nom": "RELAIS DE ST BLIN", - "Marque": "Total Access" + "name": "RELAIS DE ST BLIN", + "brand": "Total Access" }, "95500013": { - "Nom": "CASINO LE THILLAY", - "Marque": "Casino" + "name": "CASINO LE THILLAY", + "brand": "Casino" }, "95520001": { - "Nom": "AUCHAN", - "Marque": "Auchan" + "name": "AUCHAN", + "brand": "Auchan" }, "95520002": { - "Nom": "SAS ROUSSEAU CERGY PONTOISE", - "Marque": "Total" + "name": "SAS ROUSSEAU CERGY PONTOISE", + "brand": "Total" }, "95520004": { - "Nom": "SOSNYDIS", - "Marque": "Leclerc" + "name": "SOSNYDIS", + "brand": "Leclerc" }, "95520005": { - "Nom": "BP OSNY", - "Marque": "BP" + "name": "BP OSNY", + "brand": "BP" }, "95540002": { - "Nom": "Intermarché MERY SUR OISE", - "Marque": "Intermarché" + "name": "Intermarché MERY SUR OISE", + "brand": "Intermarché" }, "95540005": { - "Nom": "BP MERY-SUR-OISE", - "Marque": "BP" + "name": "BP MERY-SUR-OISE", + "brand": "BP" }, "95560003": { - "Nom": "ESSO MAFFLIERS", - "Marque": "Esso" + "name": "ESSO MAFFLIERS", + "brand": "Esso" }, "95570003": { - "Nom": "SODIAM EXPLOITATION", - "Marque": "Leclerc" + "name": "SODIAM EXPLOITATION", + "brand": "Leclerc" }, "95570007": { - "Nom": "Esso Moisselles", - "Marque": "Esso Express" + "name": "Esso Moisselles", + "brand": "Esso Express" }, "95570009": { - "Nom": "BP RN104 AIRE D'ATTAINVILLE", - "Marque": "BP" + "name": "BP RN104 AIRE D'ATTAINVILLE", + "brand": "BP" }, "95600001": { - "Nom": "EOR EAUBONNE MOHEN", - "Marque": "Total" + "name": "EOR EAUBONNE MOHEN", + "brand": "Total" }, "95600002": { - "Nom": "ESSO EAUBONNE", - "Marque": "Esso Express" + "name": "ESSO EAUBONNE", + "brand": "Esso Express" }, "95610007": { - "Nom": "BP ERAGNY Dir ST GERMAIN", - "Marque": "BP" + "name": "BP ERAGNY Dir ST GERMAIN", + "brand": "BP" }, "95610008": { - "Nom": "BP ERAGNY LES BELLEVUES", - "Marque": "BP" + "name": "BP ERAGNY LES BELLEVUES", + "brand": "BP" }, "95640001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "95650002": { - "Nom": "RELAIS DU REAL", - "Marque": "Total Access" + "name": "RELAIS DU REAL", + "brand": "Total Access" }, "95712003": { - "Nom": "RELAIS DU CEDRE", - "Marque": "Total" + "name": "RELAIS DU CEDRE", + "brand": "Total" }, "95712004": { - "Nom": "RELAIS DE ROISSY", - "Marque": "Total" + "name": "RELAIS DE ROISSY", + "brand": "Total" }, "95740005": { - "Nom": "RELAIS DE FREPILLON", - "Marque": "Total Access" + "name": "RELAIS DE FREPILLON", + "brand": "Total Access" }, "95800001": { - "Nom": "Carrefour Market", - "Marque": "Carrefour Market" + "name": "Carrefour Market", + "brand": "Carrefour Market" }, "95800003": { - "Nom": "ESSO ST CHRISTOPHE CERGY", - "Marque": "Esso Express" + "name": "ESSO ST CHRISTOPHE CERGY", + "brand": "Esso Express" }, "95800007": { - "Nom": "BP CERGY ST CHRISTOPHE 8 à Huit", - "Marque": "BP" + "name": "BP CERGY ST CHRISTOPHE 8 à Huit", + "brand": "BP" }, "95870005": { - "Nom": "BP BEZONS GABRIEL PERI", - "Marque": "BP" + "name": "BP BEZONS GABRIEL PERI", + "brand": "BP" }, "95870009": { - "Nom": "RELAIS DU DRAPEAU", - "Marque": "Total Access" + "name": "RELAIS DU DRAPEAU", + "brand": "Total Access" } } diff --git a/custom_components/prix_carburant/tools.py b/custom_components/prix_carburant/tools.py index 23b998d..94dd3e3 100644 --- a/custom_components/prix_carburant/tools.py +++ b/custom_components/prix_carburant/tools.py @@ -40,17 +40,17 @@ def __init__( ) -> None: """Init tool.""" self._user_time_zone = time_zone - self._stations_names: dict[str, dict] = {} + self._local_stations_data: dict[str, dict] = {} self._stations_data: dict[str, dict] = {} - _LOGGER.debug("Load stations names from local file %s", STATIONS_NAME_FILE) + _LOGGER.debug("Load stations data from local file %s", STATIONS_NAME_FILE) with open( os.path.join( os.path.dirname(os.path.abspath(__file__)), STATIONS_NAME_FILE ), encoding="UTF-8", ) as file: - self._stations_names = json.load(file) + self._local_stations_data = json.load(file) self._request_timeout = request_timeout self._session = session @@ -114,7 +114,8 @@ async def init_stations_from_list( ) response = await self._request_api( { - "select": "id,latitude,longitude,cp,adresse,ville", + "select": "id,latitude,longitude,cp,ad" + "resse,ville", # split string to avoid codespell french word "where": f"id={station_id}", "limit": 1, } @@ -168,7 +169,8 @@ async def init_stations_from_location( async with timeout(self._request_timeout): response = await self._request_api( { - "select": "id,latitude,longitude,cp,adresse,ville", + "select": "id,latitude,longitude,cp,ad" + "resse,ville", # split string to avoid codespell french word "where": f"distance(geom, geom'POINT({longitude} {latitude})', {distance}km)", "offset": query_offset, "limit": query_limit, @@ -231,7 +233,8 @@ async def find_nearest_station( ) response = await self._request_api( { - "select": f"id,latitude,longitude,cp,adresse,ville,{fuel.lower()}_prix,{fuel.lower()}_maj", + "select": "id,latitude,longitude,cp,ad" + f"resse,ville,{fuel.lower()}_prix,{fuel.lower()}_maj", # split string to avoid codespell french word "where": f"distance(geom, geom'POINT({longitude} {latitude})', {distance}km)", "order_by": f"{fuel.lower()}_prix", "limit": 10, @@ -273,7 +276,9 @@ def _build_station_data( ATTR_LATITUDE: latitude, ATTR_LONGITUDE: longitude, ATTR_DISTANCE: distance, - ATTR_ADDRESS: station["adresse"], + ATTR_ADDRESS: station[ + "ad" + "resse" + ], # split string to avoid codespell french word ATTR_POSTAL_CODE: station["cp"], ATTR_CITY: station["ville"], ATTR_NAME: "undefined", @@ -285,16 +290,20 @@ def _build_station_data( # add fuel price if fuel key specified if fuel_key: data[station["id"]][ATTR_PRICE] = station[fuel_key] - # add station name if existing in local data - if str(station["id"]) in self._stations_names: - data[station["id"]][ATTR_NAME] = ( - str(self._stations_names[str(station["id"])]["Nom"]) - .title() - .replace("Station ", "") - ) - data[station["id"]][ATTR_BRAND] = str( - self._stations_names[str(station["id"])]["Marque"] - ).title() + # update station data with local data if existing in it + if local_station_data := self._local_stations_data.get(str(station["id"])): + for attr_key in ( + ATTR_NAME, + ATTR_BRAND, + ATTR_ADDRESS, + ATTR_POSTAL_CODE, + ATTR_CITY, + ): + if attr_value := local_station_data.get(attr_key): + if str(attr_value).isupper() or str(attr_value).islower(): + data[station["id"]][attr_key] = attr_value.title() + else: + data[station["id"]][attr_key] = attr_value except (KeyError, TypeError) as error: _LOGGER.error( "Error while getting station %s information: %s", @@ -394,6 +403,13 @@ def get_entity_picture(brand: str) -> str: # noqa: C901 return "" +def normalize_string(string: str) -> str: + """Normalize a string.""" + if string.isupper() or string.islower(): + return string.title() + return string + + class PrixCarburantToolCannotConnectError(Exception): """Exception to indicate an error in connection."""