The input JSON schema validates the input JSON instance (JSON Schema Draft 4).
{
"additionalProperties": false,
"properties": {
"country_code": {
"type": "string"
},
"email": {
"format": "email",
"type": "string"
},
"eula_version": {
"pattern": "^(\\d+\\.)?(\\d+\\.)?(\\*|\\d+)$",
"type": "string"
},
"first_name": {
"anyOf": [
{
"pattern": "^[A-Z](\\p{L}|-)+$",
"type": "string"
},
{
"type": "null"
}
]
},
"language": {
"type": "string"
},
"last_name": {
"anyOf": [
{
"pattern": "^[A-Z](\\p{L}|-)+$",
"type": "string"
},
{
"type": "null"
}
]
},
"mobile_number": {
"anyOf": [
{
"pattern": "^(?:(?:\\+|00)[1-9]{0,3}|0)\\s*[1-9](?:[\\s.-]*\\d{2}){4}",
"type": "string"
},
{
"type": "null"
}
]
},
"password": {
"type": "string"
},
"phone_number": {
"anyOf": [
{
"pattern": "^(?:(?:\\+|00)[1-9]{0,3}|0)\\s*[1-9](?:[\\s.-]*\\d{2}){4}",
"type": "string"
},
{
"type": "null"
}
]
},
"zip_code": {
"anyOf": [
{
"pattern": "^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$",
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"email",
"eula_version",
"password"
],
"title": "User - NewLead",
"type": "object"
}
{
"country_code": "FR",
"email": "stephane.utest+15@gmail.com",
"eula_version": "2.0.0",
"first_name": "Ste",
"last_name": "Col",
"password": "123456",
"zip_code": "65000"
}
The input JSON schema validates the input JSON instance (JSON Schema Draft 4).
{
"additionalProperties": false,
"definitions": {
"DefaultCollectDeliveryModes_879": {
"additionalProperties": false,
"description": "Automatically generated (please edit me)",
"properties": {
"code": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"code",
"type",
"value"
],
"title": "CollectDeliveryModes - DefaultCollectDeliveryModes",
"type": "object"
},
"DefaultCollectDeliveryPeriods_880": {
"additionalProperties": false,
"description": "Automatically generated (please edit me)",
"properties": {
"central_place_price": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"code": {
"type": "string"
},
"direct_farm_price": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"harvest_type": {
"type": "string"
},
"id": {
"type": "integer"
},
"increase": {
"type": "number"
},
"last_price_update": {
"format": "datetime",
"type": "string"
},
"name": {
"type": "string"
},
"roll_on_price": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"satellite_place_price": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
}
},
"required": [
"central_place_price",
"code",
"direct_farm_price",
"harvest_type",
"id",
"increase",
"last_price_update",
"name",
"roll_on_price",
"satellite_place_price"
],
"title": "CollectDeliveryPeriods - DefaultCollectDeliveryPeriods",
"type": "object"
},
"DefaultCollectDeliveryTypes_878": {
"additionalProperties": false,
"description": "Automatically generated (please edit me)",
"properties": {
"delivery_modes": {
"items": {
"$ref": "#/definitions/DefaultCollectDeliveryModes_879",
"type": "object"
},
"type": "array"
},
"delivery_periods": {
"items": {
"$ref": "#/definitions/DefaultCollectDeliveryPeriods_880",
"type": "object"
},
"type": "array"
},
"id": {
"type": "integer"
},
"main_type": {
"type": "string"
}
},
"required": [
"delivery_modes",
"delivery_periods",
"id",
"main_type"
],
"title": "CollectDeliveryTypes - DefaultCollectDeliveryTypes",
"type": "object"
},
"DefaultCollectMaturity_877": {
"additionalProperties": false,
"description": "Automatically generated (please edit me)",
"properties": {
"commodity_code": {
"type": "string"
},
"commodity_label": {
"description": "commodityLabel",
"type": "string"
},
"id": {
"description": "offersMaturityId",
"type": "integer"
},
"maturity": {
"description": "maturity",
"type": "string"
},
"strike_price": {
"anyOf": [
{
"description": "strikePrice",
"type": "number"
},
{
"type": "null"
}
]
},
"warranty_cost": {
"description": "warrantyCost",
"type": "number"
}
},
"required": [
"commodity_code",
"commodity_label",
"id",
"maturity",
"strike_price",
"warranty_cost"
],
"title": "CollectMaturity - DefaultCollectMaturity",
"type": "object"
}
},
"description": "Automatically generated (please edit me)",
"properties": {
"collection_offers": {
"items": {
"additionalProperties": false,
"properties": {
"base_label": {
"anyOf": [
{
"description": "baseLabel",
"type": "string"
},
{
"type": "null"
}
]
},
"delivery_types": {
"items": {
"$ref": "#/definitions/DefaultCollectDeliveryTypes_878",
"type": "object"
},
"type": "array"
},
"description": {
"anyOf": [
{
"description": "description",
"type": "string"
},
{
"type": "null"
}
]
},
"harvest": {
"description": "harvest",
"type": "string"
},
"id": {
"description": "offerId",
"type": "integer"
},
"market_label": {
"type": "string"
},
"market_reference": {
"anyOf": [
{
"description": "referenceMarket",
"type": "string"
},
{
"type": "null"
}
]
},
"marketing_tag": {
"anyOf": [
{
"description": "marketingTag",
"type": "string"
},
{
"type": "null"
}
]
},
"maturities": {
"items": {
"$ref": "#/definitions/DefaultCollectMaturity_877",
"type": "object"
},
"type": "array"
},
"picture_url": {
"anyOf": [
{
"description": "offerPictureUrl",
"type": "string"
},
{
"type": "null"
}
]
},
"price_zone_id": {
"type": "integer"
},
"priority": {
"description": "priority",
"type": "integer"
},
"product_label": {
"description": "productLabel",
"type": "string"
},
"quality_label": {
"description": "qualityLabel",
"type": "string"
},
"quantity_max_per_customer": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"remaining_quantity": {
"anyOf": [
{
"description": "remainingQty",
"type": "number"
},
{
"type": "null"
}
]
},
"short_description": {
"anyOf": [
{
"description": "shortDescription",
"type": "string"
},
{
"type": "null"
}
]
},
"title": {
"description": "title",
"type": "string"
},
"type": {
"description": "offerType",
"type": "string"
},
"type_label": {
"description": "offerTypeLabel",
"type": "string"
}
},
"required": [
"base_label",
"delivery_types",
"description",
"harvest",
"id",
"market_label",
"market_reference",
"picture_url",
"price_zone_id",
"priority",
"product_label",
"quality_label",
"quantity_max_per_customer",
"remaining_quantity",
"short_description",
"title",
"type",
"type_label"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"collection_offers"
],
"title": "CollectionOffer - DefaultCollectOffer",
"type": "object"
}
{
"collection_offers": [
{
"base_label": "Base Juillet",
"delivery_types": [
{
"delivery_modes": [],
"delivery_periods": [
{
"central_place_price": 175.25,
"code": "septembre",
"direct_farm_price": 174.25,
"harvest_type": "Hors-moisson",
"id": 48,
"increase": 4.65,
"last_price_update": "2019-01-24T10:00:12+00:00",
"name": "SEPT",
"roll_on_price": 167.25,
"satellite_place_price": 173.25
}
],
"id": 30,
"main_type": "DEP1"
},
{
"delivery_modes": [],
"delivery_periods": [
{
"central_place_price": 175.25,
"code": "septembre",
"direct_farm_price": 174.25,
"harvest_type": "Hors-moisson",
"id": 48,
"increase": 4.65,
"last_price_update": "2019-01-24T10:00:12+00:00",
"name": "SEPT",
"roll_on_price": 167.25,
"satellite_place_price": 173.25
}
],
"id": 31,
"main_type": "DEP2"
},
{
"delivery_modes": [],
"delivery_periods": [
{
"central_place_price": 175.25,
"code": "septembre",
"direct_farm_price": 174.25,
"harvest_type": "Hors-moisson",
"id": 48,
"increase": 4.65,
"last_price_update": "2019-01-24T10:00:12+00:00",
"name": "SEPT",
"roll_on_price": 167.25,
"satellite_place_price": 173.25
}
],
"id": 28,
"main_type": "RDU1"
},
{
"delivery_modes": [],
"delivery_periods": [
{
"central_place_price": 175.25,
"code": "septembre",
"direct_farm_price": 174.25,
"harvest_type": "Hors-moisson",
"id": 48,
"increase": 4.65,
"last_price_update": "2019-01-24T10:00:12+00:00",
"name": "SEPT",
"roll_on_price": 167.25,
"satellite_place_price": 173.25
}
],
"id": 29,
"main_type": "RDU2"
}
],
"description": null,
"harvest": "2019",
"id": 31,
"market_label": "FOB Creil",
"market_reference": "16",
"marketing_tag": null,
"maturities": [],
"picture_url": null,
"price_zone_id": 70,
"priority": 0,
"product_label": "BLE 1",
"quality_label": "STANDARD",
"quantity_max_per_customer": 0,
"remaining_quantity": 0,
"short_description": null,
"title": "Offre Blé 1",
"type": "APF",
"type_label": "Offre prix ferme"
},
{
"base_label": "Base Juillet",
"delivery_types": [
{
"delivery_modes": [],
"delivery_periods": [
{
"central_place_price": null,
"code": "septembre",
"direct_farm_price": null,
"harvest_type": "Hors-moisson",
"id": 48,
"increase": 0,
"last_price_update": "2019-01-24T10:00:12+00:00",
"name": "SEPT",
"roll_on_price": null,
"satellite_place_price": null
}
],
"id": 30,
"main_type": "DEP1"
},
{
"delivery_modes": [],
"delivery_periods": [
{
"central_place_price": null,
"code": "septembre",
"direct_farm_price": null,
"harvest_type": "Hors-moisson",
"id": 48,
"increase": 0,
"last_price_update": "2019-01-24T10:00:12+00:00",
"name": "SEPT",
"roll_on_price": null,
"satellite_place_price": null
}
],
"id": 31,
"main_type": "DEP2"
},
{
"delivery_modes": [],
"delivery_periods": [
{
"central_place_price": null,
"code": "septembre",
"direct_farm_price": null,
"harvest_type": "Hors-moisson",
"id": 48,
"increase": 0,
"last_price_update": "2019-01-24T10:00:12+00:00",
"name": "SEPT",
"roll_on_price": null,
"satellite_place_price": null
}
],
"id": 28,
"main_type": "RDU1"
},
{
"delivery_modes": [],
"delivery_periods": [
{
"central_place_price": null,
"code": "septembre",
"direct_farm_price": null,
"harvest_type": "Hors-moisson",
"id": 48,
"increase": 0,
"last_price_update": "2019-01-24T10:00:12+00:00",
"name": "SEPT",
"roll_on_price": null,
"satellite_place_price": null
}
],
"id": 29,
"main_type": "RDU2"
}
],
"description": "description",
"harvest": "2019",
"id": 33,
"market_label": "FOB Creil",
"market_reference": "16",
"marketing_tag": "super offre",
"maturities": [],
"picture_url": null,
"price_zone_id": 70,
"priority": 0,
"product_label": "BLE 1",
"quality_label": "STANDARD",
"quantity_max_per_customer": 0,
"remaining_quantity": 0,
"short_description": "description courte",
"title": "Morgane Optimum Ble 1",
"type": "APC",
"type_label": "Offre Optimum"
}
]
}
The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:
{
"additionalProperties": false,
"definitions": {
"DefaultOpeningHour_562": {
"additionalProperties": false,
"description": "Automatically generated (please edit me)",
"properties": {
"afternoon_end": {
"anyOf": [
{
"description": "heure en UTC à convertir à partir de la timezone du silo",
"format": "datetime",
"type": "string"
},
{
"type": "null"
}
]
},
"afternoon_start": {
"anyOf": [
{
"description": "heure en UTC à convertir à partir de la timezone du silo",
"format": "datetime",
"type": "string"
},
{
"type": "null"
}
]
},
"date": {
"format": "date",
"type": "string"
},
"morning_end": {
"anyOf": [
{
"description": "heure en UTC à convertir à partir de la timezone du silo",
"format": "datetime",
"type": "string"
},
{
"type": "null"
}
]
},
"morning_start": {
"anyOf": [
{
"description": "heure en UTC à convertir à partir de la timezone du silo",
"format": "datetime",
"type": "string"
},
{
"type": "null"
}
]
},
"opening_periods": {
"description": "Format:\r\n%Y-%m-%dT%H:%M:%S+00:00/%Y-%m-%dT%H:%M:%S+00:00",
"items": {
"type": "string"
},
"maxItems": 2,
"minItems": 0,
"type": "array"
},
"status": {
"description": "1=Ouvert = morningStart; morningEnd; afternoonStart; afternoonEnd\r\n2=Ouvert à la demande = RAS\r\n3=Fermé = RAS\r\n4=Férié = RAS\r\n5=Ouvert sans interruption = morningStart ; afternoonEnd\r\n6=Ouvert seulement la matinée = morningStart ; morningEnd\r\n7=Ouvert seulement l'après-midi = afternoonStart ; afternoonEnd",
"maximum": 4,
"minimum": 1,
"type": "integer"
}
},
"required": [
"afternoon_end",
"afternoon_start",
"date",
"morning_end",
"morning_start",
"opening_periods",
"status"
],
"title": "OpeningHour - DefaultOpeningHour",
"type": "object"
}
},
"description": "Automatically generated (please edit me)",
"properties": {
"silos": {
"items": {
"additionalProperties": false,
"properties": {
"activities_names": {
"type": "string"
},
"address": {
"type": "string"
},
"city": {
"type": "string"
},
"country": {
"type": "string"
},
"email": {
"format": "email",
"type": "string"
},
"id": {
"pattern": "\\d*",
"type": "string"
},
"latitude": {
"maximum": 90,
"minimum": -90,
"type": "number"
},
"longitude": {
"maximum": 180,
"minimum": -180,
"type": "number"
},
"manager_name": {
"type": "null"
},
"mobile_number": {
"type": "null"
},
"name": {
"type": "string"
},
"opening_hours": {
"items": {
"$ref": "#/definitions/DefaultOpeningHour_562",
"type": "object"
},
"maxItems": 7,
"minItems": 0,
"type": "array"
},
"owner": {
"type": "string"
},
"phone_number": {
"type": "null"
},
"region": {
"type": "string"
},
"timezone": {
"type": "string"
},
"zip_code": {
"pattern": "^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$",
"type": "string"
}
},
"required": [
"activities_names",
"address",
"city",
"country",
"email",
"id",
"latitude",
"longitude",
"manager_name",
"mobile_number",
"name",
"opening_hours",
"owner",
"phone_number",
"timezone",
"zip_code"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"silos"
],
"title": "Silo - DefaultSilo",
"type": "object"
}
{
"silos": [
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nQUAI DU GENERAL SARRAIL",
"city": "NOGENT S SEINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "0",
"latitude": 48.491343,
"longitude": 3.492956,
"manager_name": "Johann ROUSSEAU",
"mobile_number": "06 84 95 26 13",
"name": "SARRAIL NOGENT S SEINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 39 41 11",
"timezone": "Europe/Paris",
"zip_code": "10400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nAVENUE BEAUREGARD",
"city": "NOGENT S SEINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "2",
"latitude": 48.4981,
"longitude": 3.491312,
"manager_name": "Patrick LAURET",
"mobile_number": "00 00 00 00 00",
"name": "GARE NOGENT S SEINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 39 40 25",
"timezone": "Europe/Paris",
"zip_code": "10400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nA L OUEST DES GRANDS CHATELLI",
"city": "PLEURS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "3",
"latitude": 48.682765,
"longitude": 3.875137,
"manager_name": "Pascal SASPORTES",
"mobile_number": "2222",
"name": "PLEURS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 80 12 26",
"timezone": "Europe/Paris",
"zip_code": "51230"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nMAINCLAY\nENTRE LES DEUX CHEMINS",
"city": "BESSAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "4",
"latitude": 46.528677,
"longitude": -1.158175,
"manager_name": "Thierry BARRET",
"mobile_number": "2222",
"name": "BESSAY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 27 50 32",
"timezone": "Europe/Paris",
"zip_code": "85320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n10 RUE COMMANDO M",
"city": "LUYERES",
"country": "FR",
"email": "02Recette_I@soufflet.com",
"id": "5",
"latitude": 48.376974,
"longitude": 4.200256,
"manager_name": "Thierry BARRET",
"mobile_number": "06 08 56 97 00",
"name": "LUYERES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 41 00 58",
"timezone": "Europe/Paris",
"zip_code": "10150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE PRINCIPALE",
"city": "AULNAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "6",
"latitude": 48.470814,
"longitude": 4.394961,
"manager_name": "Xavier MAKOWIAK",
"mobile_number": "00 00 00 00 00",
"name": "AULNAY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 92 46 25",
"timezone": "Europe/Paris",
"zip_code": "10240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n3 RUE CHEMIN AUX PRETRES",
"city": "PONT S SEINE",
"country": "FR",
"email": "02Recette_I@soufflet.com",
"id": "7",
"latitude": 48.513061,
"longitude": 3.602219,
"manager_name": "Thierry BARRET",
"mobile_number": "2222",
"name": "PONT S SEINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 21 40 08",
"timezone": "Europe/Paris",
"zip_code": "10400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE VENDEUVRE S BARSE",
"city": "LONGPRE LE SEC",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "9",
"latitude": 48.192975,
"longitude": 4.514715,
"manager_name": "Thierry BARRET",
"mobile_number": "2222",
"name": "LONGPRE LE SEC",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 41 38 14",
"timezone": "Europe/Paris",
"zip_code": "10140"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE FAUBOURG ST GERVAIS",
"city": "TRAINEL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "10",
"latitude": 48.418333,
"longitude": 3.44725,
"manager_name": "Thierry BARRET",
"mobile_number": "2222",
"name": "TRAINEL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 39 10 03",
"timezone": "Europe/Paris",
"zip_code": "10400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE VILLADIN",
"city": "MARCILLY LE HAYER",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "11",
"latitude": 48.346546,
"longitude": 3.640109,
"manager_name": "Thierry THIBAULT",
"mobile_number": "06 61 38 33 68",
"name": "MARCILLY LE HAYER",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 21 70 99",
"timezone": "Europe/Paris",
"zip_code": "10290"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n12 ROUTE DE LESMONT\nLD AUZON LES MARAIS",
"city": "VAL D AUZON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "12",
"latitude": 48.405714,
"longitude": 4.371619,
"manager_name": "Benjamin SEMENCE",
"mobile_number": "2222",
"name": "AUZON LES MARAIS VAL D AUZON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 46 30 89",
"timezone": "Europe/Paris",
"zip_code": "10220"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCOULON",
"city": "SEMENTRON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "13",
"latitude": 47.636133,
"longitude": 3.358183,
"manager_name": "BENOIT LETTRY",
"mobile_number": "2222",
"name": "SEMENTRON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 44 20 61",
"timezone": "Europe/Paris",
"zip_code": "89560"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE FLEURIGNY",
"city": "THORIGNY S OREUSE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "14",
"latitude": 48.295225,
"longitude": 3.38879,
"manager_name": "Frederic BOULET",
"mobile_number": "2222",
"name": "THORIGNY S OREUSE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 88 45 01",
"timezone": "Europe/Paris",
"zip_code": "89260"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI SUD",
"city": "ARTENAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "15",
"latitude": 48.073628,
"longitude": 1.877975,
"manager_name": "Cyrille FOUGERON",
"mobile_number": "06 17 91 40 96",
"name": "ARTENAY BAS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 80 02 35",
"timezone": "Europe/Paris",
"zip_code": "45410"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nGRANDE RUE\nVIAPRES LE GRAND",
"city": "PLANCY L ABBAYE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "16",
"latitude": 48.566235,
"longitude": 4.010841,
"manager_name": "Sebastien GADOT",
"mobile_number": "2222",
"name": "VIAPRES LE GRAND PLANCY L ABBAYE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 37 70 32",
"timezone": "Europe/Paris",
"zip_code": "10380"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRD 452",
"city": "POLISY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "17",
"latitude": 48.07118,
"longitude": 4.383688,
"manager_name": "Julien ETIENNE",
"mobile_number": "06 75 84 38 08",
"name": "POLISY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 38 51 40",
"timezone": "Europe/Paris",
"zip_code": "10110"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRD 965",
"city": "BRION S OURCE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "18",
"latitude": 47.910536,
"longitude": 4.678907,
"manager_name": "Jacques COLLOT",
"mobile_number": "2222",
"name": "BRION S OURCE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 80 93 76 65",
"timezone": "Europe/Paris",
"zip_code": "21570"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE L ECOLE",
"city": "BOURANTON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "19",
"latitude": 48.30658,
"longitude": 4.182381,
"manager_name": "Freddy VELGHE",
"mobile_number": "2222",
"name": "BOURANTON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 80 90 36",
"timezone": "Europe/Paris",
"zip_code": "10270"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE CHARME RD 34",
"city": "BALNOT LA GRANGE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "20",
"latitude": 48.000581,
"longitude": 4.167876,
"manager_name": "Thomas JOLLOIS",
"mobile_number": "2222",
"name": "BALNOT LA GRANGE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 70 07 33",
"timezone": "Europe/Paris",
"zip_code": "10210"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET1\nVILLEGRUIS",
"city": "LOUAN VILLEGRUIS FONTAINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "21",
"latitude": 48.600016,
"longitude": 3.446293,
"manager_name": "Laurent DELPUECH",
"mobile_number": "00 00 00 00 00",
"name": "VILLEGRUIS LOUAN FONTAINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 00 82 44",
"timezone": "Europe/Paris",
"zip_code": "77560"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nBP 45",
"city": "ARCIS S AUBE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "22",
"latitude": 48.532881,
"longitude": 4.131626,
"manager_name": "Bruno FAURE",
"mobile_number": "2222",
"name": "ARCIS S AUBE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 37 81 06",
"timezone": "Europe/Paris",
"zip_code": "10700"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE DIERREY ST JULIEN",
"city": "MESNIL ST LOUP",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "23",
"latitude": 48.302056,
"longitude": 3.772614,
"manager_name": "Priscillia BOITEUX",
"mobile_number": "2222",
"name": "MESNIL ST LOUP",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 40 43 90",
"timezone": "Europe/Paris",
"zip_code": "10190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE EUROPE",
"city": "VILLENEUVE L ARCHEVEQUE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "24",
"latitude": 48.238539,
"longitude": 3.554014,
"manager_name": "Jean Marc PERARD",
"mobile_number": "06 84 95 26 18",
"name": "VILLENEUVE L ARCHEVEQUE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 86 71 12",
"timezone": "Europe/Paris",
"zip_code": "89190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET1",
"city": "GRANDVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "25",
"latitude": 48.601447,
"longitude": 4.229592,
"manager_name": "Frederic SEURAT",
"mobile_number": "00 00 00 00 00",
"name": "GRANDVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 37 95 08",
"timezone": "Europe/Paris",
"zip_code": "10700"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DU MOULIN",
"city": "DIENVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "26",
"latitude": 48.344721,
"longitude": 4.539331,
"manager_name": "Stéphane HERAUD",
"mobile_number": "06 80 88 98 10",
"name": "DIENVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 92 20 45",
"timezone": "Europe/Paris",
"zip_code": "10500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE LA FERTE GAUCHER",
"city": "MONTOLIVET",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "27",
"latitude": 48.828588,
"longitude": 3.423932,
"manager_name": "Guillaume HUET",
"mobile_number": "2222",
"name": "MONTOLIVET",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 03 79 90",
"timezone": "Europe/Paris",
"zip_code": "77320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRD 32 SECTION",
"city": "VILLEMORIEN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "28",
"latitude": 48.073558,
"longitude": 4.285062,
"manager_name": "Franck PETITET",
"mobile_number": "2222",
"name": "VILLEMORIEN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 29 92 08",
"timezone": "Europe/Paris",
"zip_code": "10110"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n10 RUE DE CONDE\nARTONGES",
"city": "DHUYS ET MORIN EN BRIE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "29",
"latitude": 48.933392,
"longitude": 3.554509,
"manager_name": "Thierry CORNU",
"mobile_number": "2222",
"name": "ARTONGES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 23 82 44 87",
"timezone": "Europe/Paris",
"zip_code": "2330"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n955 ROUTE DE BELLEGARDE",
"city": "BRAY EN VAL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "30",
"latitude": 47.831147,
"longitude": 2.379005,
"manager_name": "Jean Louis RUFFIER",
"mobile_number": "2222",
"name": "BRAY EN VAL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 35 75 71",
"timezone": "Europe/Paris",
"zip_code": "45460"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nTREMBLAY\nROUTE D AVANT LES MARCILLY",
"city": "AVANT LES MARCILLY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "31",
"latitude": 48.434061,
"longitude": 3.567075,
"manager_name": "Guillaume MARGAS",
"mobile_number": "2222",
"name": "AVANT LES MARCILLY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 39 21 74",
"timezone": "Europe/Paris",
"zip_code": "10400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DEPARTEMENTAL 48",
"city": "LONGSOLS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "32",
"latitude": 48.434208,
"longitude": 4.286921,
"manager_name": "Christian TERRYN",
"mobile_number": "2222",
"name": "LONGSOLS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 37 68 67",
"timezone": "Europe/Paris",
"zip_code": "10210"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nAVENUE DES MONTOIRES\nCUIRY",
"city": "GIEN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "33",
"latitude": 47.70647,
"longitude": 2.627211,
"manager_name": "Philippe BOUCHARD",
"mobile_number": "06 23 97 64 27",
"name": "GIEN MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 67 41 32",
"timezone": "Europe/Paris",
"zip_code": "45500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZA LA COUPE DU ROCHER",
"city": "CHAILLE LES MARAIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "34",
"latitude": 46.401787,
"longitude": -1.030446,
"manager_name": "Martin PENISSON",
"mobile_number": "2222",
"name": "CHAILLE LES MARAIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 56 70 00",
"timezone": "Europe/Paris",
"zip_code": "85450"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE PARIS",
"city": "MORMANT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "35",
"latitude": 48.613683,
"longitude": 2.885628,
"manager_name": "Renaud PAULON",
"mobile_number": "06 79 27 78 99",
"name": "MORMANT",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 06 82 18",
"timezone": "Europe/Paris",
"zip_code": "77720"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZA DU BOIS DE L ERABLE\nRUE DU PARC",
"city": "LIMOGES FOURCHES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "36",
"latitude": 48.634076,
"longitude": 2.66291,
"manager_name": "Olivier MOHR",
"mobile_number": "2222",
"name": "LIMOGES FOURCHES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 38 86 90",
"timezone": "Europe/Paris",
"zip_code": "77550"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DEPARTEMENTAL 59\nLES RANGES",
"city": "VILLENAUXE LA PETITE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "37",
"latitude": 48.402661,
"longitude": 3.317622,
"manager_name": "Hervé LEROY",
"mobile_number": "2222",
"name": "VILLENAUXE LA PETITE A",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 01 19 09",
"timezone": "Europe/Paris",
"zip_code": "77480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nAVENUE DE LA VOULZIE",
"city": "POIGNY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "39",
"latitude": 48.547159,
"longitude": 3.285752,
"manager_name": "Alain MAYEUX",
"mobile_number": "2222",
"name": "POIGNY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 60 67 62 62",
"timezone": "Europe/Paris",
"zip_code": "77160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DEPARTEMENTAL 12",
"city": "COURCHAMP",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "40",
"latitude": 48.635651,
"longitude": 3.296982,
"manager_name": "François GOSSELIN",
"mobile_number": "2222",
"name": "COURCHAMP",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 01 07 39",
"timezone": "Europe/Paris",
"zip_code": "77560"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\n28 RUE DE GRASLA",
"city": "CHAUCHE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "41",
"latitude": 46.831299,
"longitude": -1.275116,
"manager_name": "Christophe DRAPPIER",
"mobile_number": "06 23 30 80 39",
"name": "CHAUCHE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 41 84 46",
"timezone": "Europe/Paris",
"zip_code": "85140"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nRUE DU STADE",
"city": "CHAVAGNES LES REDOUX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "42",
"latitude": 46.715292,
"longitude": -0.913468,
"manager_name": "Aubry MANDIN",
"mobile_number": "06 23 30 80 39",
"name": "CHAVAGNES LES REDOUX",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 92 40 36",
"timezone": "Europe/Paris",
"zip_code": "85390"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE ST MAURICE AUX RICHES HOMMES",
"city": "TRANCAULT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "43",
"latitude": 48.365431,
"longitude": 3.530437,
"manager_name": "Yannick TROCELLIER",
"mobile_number": "2222",
"name": "TRANCAULT A",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 21 75 80",
"timezone": "Europe/Paris",
"zip_code": "10290"
},
{
"activities_names": "Station de Semences",
"address": "STATION DE SEMENCES\nROUTE DE PARIS",
"city": "NOGENT S SEINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "44",
"latitude": 48.498101,
"longitude": 3.489508,
"manager_name": "Francois GRENOT",
"mobile_number": "2222",
"name": "STATION SEMENCES NOGENT S SEINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 39 40 24",
"timezone": "Europe/Paris",
"zip_code": "10400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n8 RUE CHAMP BERTIN",
"city": "VILLERY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "45",
"latitude": 48.170126,
"longitude": 4.023813,
"manager_name": "Laurent BONNET",
"mobile_number": "2222",
"name": "VILLERY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 40 29 19",
"timezone": "Europe/Paris",
"zip_code": "10320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE PROVINS",
"city": "PEZARCHES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "46",
"latitude": 48.735201,
"longitude": 2.996694,
"manager_name": "Jean Michel ZEN",
"mobile_number": "2222",
"name": "PEZARCHES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 04 10 63",
"timezone": "Europe/Paris",
"zip_code": "77131"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nZI\nRUE SELLIERS",
"city": "NEUVILLE AUX BOIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "47",
"latitude": 48.068457,
"longitude": 2.063696,
"manager_name": "Jerome PERDEREAU",
"mobile_number": "07 77 30 47 90",
"name": "NEUVILLE AUX BOIS MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 75 52 11",
"timezone": "Europe/Paris",
"zip_code": "45170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nVOIE COULMIER",
"city": "PUITS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "48",
"latitude": 47.734474,
"longitude": 4.470654,
"manager_name": "Olivier GERMAIN",
"mobile_number": "2222",
"name": "PUITS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 80 93 14 37",
"timezone": "Europe/Paris",
"zip_code": "21400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI GUERCHE\nRUE DE L INDUSTRIE",
"city": "LES HERBIERS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "49",
"latitude": 46.860946,
"longitude": -1.004563,
"manager_name": "Aubry MANDIN",
"mobile_number": "2222",
"name": "LES HERBIERS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 67 08 52",
"timezone": "Europe/Paris",
"zip_code": "85500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nGRANDE RUE\nROUTE DE MONTAULIN",
"city": "MONTAULIN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "50",
"latitude": 48.259224,
"longitude": 4.21419,
"manager_name": "Luc CHAINE",
"mobile_number": "2222",
"name": "MONTAULIN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 41 56 47",
"timezone": "Europe/Paris",
"zip_code": "10270"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE NOZAY",
"city": "PREMIERFAIT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "51",
"latitude": 48.498451,
"longitude": 4.034937,
"manager_name": "Vincent DEBROUWER",
"mobile_number": "2222",
"name": "PREMIERFAIT",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 37 71 67",
"timezone": "Europe/Paris",
"zip_code": "10170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nPORT AMONT",
"city": "SOUPPES S LOING",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "52",
"latitude": 48.179883,
"longitude": 2.724772,
"manager_name": "Sebastien DUCASTEL",
"mobile_number": "06 71 78 94 10",
"name": "SOUPPES S LOING",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 29 73 09",
"timezone": "Europe/Paris",
"zip_code": "77460"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI\nRUE EMMANUEL LEGER",
"city": "PATAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "53",
"latitude": 48.046719,
"longitude": 1.701349,
"manager_name": "François COUTADEUR",
"mobile_number": "06 09 68 57 00",
"name": "PATAY BAS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 80 80 96",
"timezone": "Europe/Paris",
"zip_code": "45310"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DES VIGNES GATES",
"city": "LES LUCS S BOULOGNE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "55",
"latitude": 46.845929,
"longitude": -1.493318,
"manager_name": "Christophe DRAPPIER",
"mobile_number": "06 23 30 80 39",
"name": "LES LUCS S BOULOGNE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 47 82 85",
"timezone": "Europe/Paris",
"zip_code": "85170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE CHATEAUNEUF",
"city": "TIGY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "56",
"latitude": 47.806963,
"longitude": 2.20339,
"manager_name": "Martial TURBAN",
"mobile_number": "06 16 23 71 62",
"name": "TIGY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 58 02 30",
"timezone": "Europe/Paris",
"zip_code": "45510"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n8 AVENUE GEORGES CLEMENCEAU",
"city": "MOUTIERS LES MAUXFAITS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "57",
"latitude": 46.493097,
"longitude": -1.424227,
"manager_name": "Romain ROY",
"mobile_number": "06 19 25 83 39",
"name": "MOUTIERS LES MAUXFAITS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 98 94 33",
"timezone": "Europe/Paris",
"zip_code": "85540"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nALLEE HENRI ET MONIQUE BRIDIER",
"city": "LA CHAPELLE ST URSIN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "58",
"latitude": 47.049576,
"longitude": 2.306101,
"manager_name": "Gilles CENDRE",
"mobile_number": "06 14 92 33 15",
"name": "LA CHAPELLE ST URSIN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 48 23 00 48",
"timezone": "Europe/Paris",
"zip_code": "18570"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DEPARTEMENTAL 193",
"city": "COURCELLES S VOIRE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "59",
"latitude": 48.477513,
"longitude": 4.535766,
"manager_name": "Alex DUSSART",
"mobile_number": "2222",
"name": "COURCELLES S VOIRE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 92 13 96",
"timezone": "Europe/Paris",
"zip_code": "10500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n23 RUE DE LA FILATURE",
"city": "AUNAY SS CRECY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "60",
"latitude": 48.672772,
"longitude": 1.306461,
"manager_name": "Ronan PEIGNE",
"mobile_number": "2222",
"name": "AUNAY SS CRECY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 37 82 27 94",
"timezone": "Europe/Paris",
"zip_code": "28500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n4 RUE MARQUIS DE TORCY",
"city": "ST DENIS LA CHEVASSE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "62",
"latitude": 46.825642,
"longitude": -1.360735,
"manager_name": "David THOUZEAU",
"mobile_number": "2222",
"name": "ST DENIS LA CHEVASSE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 41 39 93",
"timezone": "Europe/Paris",
"zip_code": "85170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES ESSAIS LA MOTHE ACHARD\nD978 RUE DE NANTES",
"city": "ST GEORGES DE POINTINDOUX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "63",
"latitude": 46.626265,
"longitude": -1.655914,
"manager_name": "Francis BERNARD",
"mobile_number": "06 25 70 33 25",
"name": "LA MOTHE ACHARD ST GEORGES DE POINTINDOU",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 47 90 04",
"timezone": "Europe/Paris",
"zip_code": "85150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n116 RUE DES PETITES JARRIES\nLA JARIETTE DE BOISSEUIL",
"city": "ST MARD",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "64",
"latitude": 46.096049,
"longitude": -0.671604,
"manager_name": "Eric PHELIPPON",
"mobile_number": "2222",
"name": "ST MARD",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 68 99 62",
"timezone": "Europe/Paris",
"zip_code": "17700"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\n34 RUE DE L EGLISE\nLE BOURG",
"city": "MONTREVERD",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "65",
"latitude": 46.895624,
"longitude": -1.422928,
"manager_name": "Maxime ARNOUX",
"mobile_number": "06 23 30 80 39",
"name": "ST SULPICE LE VERDON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 42 81 63",
"timezone": "Europe/Paris",
"zip_code": "85260"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nBOIS MARIE",
"city": "TALMONT ST HILAIRE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "67",
"latitude": 46.500407,
"longitude": -1.623018,
"manager_name": "Emmanuel GABORIEAU",
"mobile_number": "2222",
"name": "TALMONT ST HILAIRE BOIS MARIE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 90 24 51",
"timezone": "Europe/Paris",
"zip_code": "85440"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nLA BONNE AMIE",
"city": "CURZON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "71",
"latitude": 46.462068,
"longitude": -1.305868,
"manager_name": "Romain ROY",
"mobile_number": "06 03 96 09 06",
"name": "CURZON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 98 93 07",
"timezone": "Europe/Paris",
"zip_code": "85480"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nLA BARBIERE",
"city": "TRIAIZE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "72",
"latitude": 46.356982,
"longitude": -1.193299,
"manager_name": "Romain ROY",
"mobile_number": "06 03 96 09 06",
"name": "TRIAIZE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 98 93 07",
"timezone": "Europe/Paris",
"zip_code": "85580"
},
{
"activities_names": "Silo portuaire fluvial",
"address": "SILO SOUFFLET\n2 RUE DE LA GRANGE AUX DAMES",
"city": "METZ",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "73",
"latitude": 49.142231,
"longitude": 6.192431,
"manager_name": "Serge LECOMTE",
"mobile_number": "2222",
"name": "METZ",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 87 30 29 92",
"timezone": "Europe/Paris",
"zip_code": "57050"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN VERT",
"city": "AUXY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "74",
"latitude": 48.100618,
"longitude": 2.484074,
"manager_name": "Olivier HAUTEFEUILLE",
"mobile_number": "06 30 85 28 75",
"name": "AUXY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 89 84 90",
"timezone": "Europe/Paris",
"zip_code": "45340"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nFERME HERBUES\nD175",
"city": "VERPILLIERES S OURCE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "75",
"latitude": 48.036408,
"longitude": 4.565885,
"manager_name": "Herve PITEL",
"mobile_number": "2222",
"name": "VERPILLIERES S OURCE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 29 71 72",
"timezone": "Europe/Paris",
"zip_code": "10360"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DEPARTEMENTAL 204\nDIRECTION SAUSSOY",
"city": "ST DENIS LES REBAIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "76",
"latitude": 48.866829,
"longitude": 3.206677,
"manager_name": "Christophe CRAPART",
"mobile_number": "06 83 57 28 75",
"name": "ST DENIS LES REBAIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 20 97 56",
"timezone": "Europe/Paris",
"zip_code": "77510"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nLD LA VOVE\nROUTE DE VILLEMORIEN",
"city": "AIX VILLEMAUR PALIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "77",
"latitude": 48.209202,
"longitude": 3.752399,
"manager_name": "Priscillia BOITEUX",
"mobile_number": "06 14 06 16 73",
"name": "LA VOVE AIX EN OTHE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "1111",
"timezone": "Europe/Paris",
"zip_code": "10160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE JOIGNY\nNEUILLY",
"city": "VALRAVILLON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "78",
"latitude": 47.913713,
"longitude": 3.428399,
"manager_name": "Benoit LAVEAU",
"mobile_number": "2222",
"name": "NEUILLY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 73 76 94",
"timezone": "Europe/Paris",
"zip_code": "89113"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n2 ROUTE DES FONTENOTTES",
"city": "LUX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "79",
"latitude": 47.489106,
"longitude": 5.201657,
"manager_name": "Julien CONRAUX",
"mobile_number": "2222",
"name": "LUX",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 80 75 38 92",
"timezone": "Europe/Paris",
"zip_code": "21120"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nAVENUE DU 19 MARS 1962",
"city": "VERGIGNY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "80",
"latitude": 47.9826,
"longitude": 3.734658,
"manager_name": "nc",
"mobile_number": "06 85 04 23 22",
"name": "VERGIGNY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 43 47 50",
"timezone": "Europe/Paris",
"zip_code": "89600"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE ST FIACRE",
"city": "VENIZY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "81",
"latitude": 48.026206,
"longitude": 3.710336,
"manager_name": "Gaetan PAUL",
"mobile_number": "06 85 04 23 22",
"name": "VENIZY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 35 08 27",
"timezone": "Europe/Paris",
"zip_code": "89210"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nROUTE DE MONTACHER",
"city": "ST VALERIEN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "82",
"latitude": 48.175894,
"longitude": 3.071146,
"manager_name": "Nicolas METIER",
"mobile_number": "06 48 74 02 89",
"name": "ST VALERIEN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "89150"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nRUE DE LA GARE",
"city": "LEZINNES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "83",
"latitude": 47.80312,
"longitude": 4.09264,
"manager_name": "Frédéric DE SMIDT",
"mobile_number": "2222",
"name": "LEZINNES MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 75 68 18",
"timezone": "Europe/Paris",
"zip_code": "89160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE LEZINNES",
"city": "PACY S ARMANCON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "84",
"latitude": 47.778385,
"longitude": 4.109715,
"manager_name": "Emmanuel DUPONT",
"mobile_number": "2222",
"name": "PACY S ARMANCON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 75 60 92",
"timezone": "Europe/Paris",
"zip_code": "89160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI LA BAGATELLE\nD144 ALLEE CLEMENT ADER",
"city": "CLAMECY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "85",
"latitude": 47.471002,
"longitude": 3.520377,
"manager_name": "Lionel BONNIN",
"mobile_number": "2222",
"name": "CLAMECY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 27 59 21",
"timezone": "Europe/Paris",
"zip_code": "58500"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nD204 ROUTE DE GIGNY",
"city": "CRUZY LE CHATEL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "86",
"latitude": 47.848645,
"longitude": 4.232284,
"manager_name": "Jean Loup HURBAIN",
"mobile_number": "06 33 17 70 29",
"name": "CRUZY LE CHATEL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 75 24 81",
"timezone": "Europe/Paris",
"zip_code": "89740"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES PERRIERES\nROUTE DE LICHERES PRES AIGREMONT",
"city": "CHABLIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "87",
"latitude": 47.798286,
"longitude": 3.79692,
"manager_name": "Stephane ROLLIN",
"mobile_number": "2222",
"name": "CHABLIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 42 10 34",
"timezone": "Europe/Paris",
"zip_code": "89800"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\n63 GRANDE RUE",
"city": "SONGY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "88",
"latitude": 48.794456,
"longitude": 4.510083,
"manager_name": "Alain BECQ",
"mobile_number": "06 17 92 60 87",
"name": "SONGY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD49 ROUTE DE NITRY\nSACY",
"city": "VERMENTON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "89",
"latitude": 47.672264,
"longitude": 3.833202,
"manager_name": "Jean Loup HURBAIN",
"mobile_number": "06 33 17 70 29",
"name": "SACY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 81 57 50",
"timezone": "Europe/Paris",
"zip_code": "89270"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD12\nDIRECTION VILLIERS LES HAUTS",
"city": "SARRY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "90",
"latitude": 47.671609,
"longitude": 4.07775,
"manager_name": "Valerie LORE",
"mobile_number": "2222",
"name": "SARRY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 82 85 97",
"timezone": "Europe/Paris",
"zip_code": "89310"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLE FIEF DE LA POINTE\nZONE ARTISANALE",
"city": "LANDRAIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "92",
"latitude": 46.073804,
"longitude": -0.872318,
"manager_name": "Vincent FRAPPE",
"mobile_number": "2222",
"name": "LANDRAIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 27 77 93",
"timezone": "Europe/Paris",
"zip_code": "17290"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n32 RTE D ANCHAIS",
"city": "MAILLEZAIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "93",
"latitude": 46.367243,
"longitude": -0.731346,
"manager_name": "Nadine VERGNAUD",
"mobile_number": "2222",
"name": "MAILLEZAIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 00 71 27",
"timezone": "Europe/Paris",
"zip_code": "85420"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLE BOURG\nALLEE DU MARAIS",
"city": "ST GEORGES DE REX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "94",
"latitude": 46.276287,
"longitude": -0.647089,
"manager_name": "Benoit MOREAU",
"mobile_number": "2222",
"name": "ST GEORGES DE REX",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 38 50 35",
"timezone": "Europe/Paris",
"zip_code": "79210"
},
{
"activities_names": "Usine Aliment",
"address": "USINE SOUFFLET\nBOIS MARIE",
"city": "TALMONT ST HILAIRE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "95",
"latitude": 46.500407,
"longitude": -1.623018,
"manager_name": "Emmanuel GABORIEAU",
"mobile_number": "2222",
"name": "TALMONT ST HILAIRE USINE BM",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 90 24 51",
"timezone": "Europe/Paris",
"zip_code": "85440"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n59 RUE LES ROCHES\nLD CHEVIGNY",
"city": "ETAIS LA SAUVIN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "96",
"latitude": 47.509935,
"longitude": 3.304225,
"manager_name": "VINCENT LETTRY",
"mobile_number": "2222",
"name": "ETAIS LA SAUVIN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 47 23 31",
"timezone": "Europe/Paris",
"zip_code": "89480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "PLATEFORME SOUFFLET\nROUTE DE GUIGNONVILLE",
"city": "CHARMONT EN BEAUCE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "97",
"latitude": 48.224293,
"longitude": 2.104927,
"manager_name": "Frederic DARRE",
"mobile_number": "06 88 21 64 30",
"name": "CHARMONT EN BEAUCE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 39 59 61",
"timezone": "Europe/Paris",
"zip_code": "45480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nPLACE DES BARQUES\nBP 24",
"city": "MARANS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "98",
"latitude": 46.312902,
"longitude": -1.00001,
"manager_name": "Jacques BAUDINET",
"mobile_number": "06 07 26 74 64",
"name": "MARANS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 68 58 94",
"timezone": "Europe/Paris",
"zip_code": "17320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 ROUTE DE BENON",
"city": "BOUHET",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "99",
"latitude": 46.174269,
"longitude": -0.846023,
"manager_name": "Frédéric GENDRAUD",
"mobile_number": "2222",
"name": "BOUHET",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 68 20 96",
"timezone": "Europe/Paris",
"zip_code": "17540"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE D AUXERRE",
"city": "CHATEL CENSOIR",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "100",
"latitude": 47.54395,
"longitude": 3.633867,
"manager_name": "Jean-François FEDON",
"mobile_number": "06 08 92 42 76",
"name": "CHATEL CENSOIR",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 81 01 36",
"timezone": "Europe/Paris",
"zip_code": "89660"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLD CHAMPS DE LA BATAILLE\nD71 LA PRISE D EAU",
"city": "GIVRY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "101",
"latitude": 47.52613,
"longitude": 3.79078,
"manager_name": "Clement VIE",
"mobile_number": "2222",
"name": "GIVRY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 33 43 50",
"timezone": "Europe/Paris",
"zip_code": "89200"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nROUTE DE CLAMECY",
"city": "COULANGES S YONNE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "102",
"latitude": 47.52091,
"longitude": 3.540155,
"manager_name": "Joël GIBLIN",
"mobile_number": "2222",
"name": "COULANGES S YONNE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 81 70 94",
"timezone": "Europe/Paris",
"zip_code": "89480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nQUAI DE LA GARE",
"city": "ARZEMBOUY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "103",
"latitude": 47.252573,
"longitude": 3.380571,
"manager_name": "Emmanuel LEMAIRE",
"mobile_number": "06 19 84 36 59",
"name": "ARZEMBOUY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 60 11 21",
"timezone": "Europe/Paris",
"zip_code": "58700"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nROUTE DE TREMEMONT RD26\nST CHERON DES CHAMPS",
"city": "TREMBLAY LES VILLAGES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "104",
"latitude": 48.577409,
"longitude": 1.440508,
"manager_name": "Inès FINET",
"mobile_number": "06 03 68 24 12",
"name": "TREMBLAY LES VILLAGES ST CHERON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "28170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES FOURNEAUX\nD51 DIRECTION TONERRE",
"city": "SERRIGNY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "105",
"latitude": 47.848165,
"longitude": 3.916421,
"manager_name": "Jean Charles MAINGARD",
"mobile_number": "2222",
"name": "SERRIGNY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 54 42 73",
"timezone": "Europe/Paris",
"zip_code": "89700"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE LA MONTAGNE",
"city": "ASCOUX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "106",
"latitude": 48.130063,
"longitude": 2.251828,
"manager_name": "Florian François",
"mobile_number": "2222",
"name": "ASCOUX",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 33 03 30",
"timezone": "Europe/Paris",
"zip_code": "45300"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nRD 108",
"city": "CLAVETTE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "107",
"latitude": 46.145413,
"longitude": -1.045927,
"manager_name": "JAYME-Patrice JULIE",
"mobile_number": "06 70 64 46 24",
"name": "CLAVETTE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "17220"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES GRANDS CHAMPS",
"city": "GEMOZAC",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "108",
"latitude": 45.570102,
"longitude": -0.662892,
"manager_name": "Frédéric ROY",
"mobile_number": "2222",
"name": "GEMOZAC GRANDS CHAMPS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 94 63 87",
"timezone": "Europe/Paris",
"zip_code": "17260"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD723 RUE DE LA GRANDE MARE\nDIRECTION D921",
"city": "PITHIVIERS LE VIEIL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "109",
"latitude": 48.20534,
"longitude": 2.239184,
"manager_name": "Frederic DARRE",
"mobile_number": "06 88 21 64 30",
"name": "BOUZONVILLE EN BEAUCE PITHIVIERS LE VIEI",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 30 02 05",
"timezone": "Europe/Paris",
"zip_code": "45300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE ROYAN",
"city": "COZES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "110",
"latitude": 45.588271,
"longitude": -0.844822,
"manager_name": "Christophe MOREAU",
"mobile_number": "2222",
"name": "COZES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 90 70 33",
"timezone": "Europe/Paris",
"zip_code": "17120"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nPETIT PEU\nRD 14",
"city": "ST SULPICE DE ROYAN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "111",
"latitude": 45.689568,
"longitude": -1.019164,
"manager_name": "Yohan PAPIN",
"mobile_number": "2222",
"name": "ST SULPICE DE ROYAN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 22 13 81",
"timezone": "Europe/Paris",
"zip_code": "17200"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n42 RUE DU GRAND PRE\nLE CHAMP DU CLONE",
"city": "CORME ROYAL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "112",
"latitude": 45.744012,
"longitude": -0.80745,
"manager_name": "Philippe MURAT",
"mobile_number": "2222",
"name": "CORME ROYAL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 94 42 52",
"timezone": "Europe/Paris",
"zip_code": "17600"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCOUR DE LA GARE\nLE VILLAGE",
"city": "SAINVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "113",
"latitude": 48.412495,
"longitude": 1.877796,
"manager_name": "Thierry BOUCHU",
"mobile_number": "06 72 00 36 10",
"name": "SAINVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 37 24 60 36",
"timezone": "Europe/Paris",
"zip_code": "28700"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE CROIX DANDONNEAU",
"city": "MONTILS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "114",
"latitude": 45.653192,
"longitude": -0.505693,
"manager_name": "Teddy DEBAIN",
"mobile_number": "2222",
"name": "MONTILS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 96 42 36",
"timezone": "Europe/Paris",
"zip_code": "17800"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\n4 LIMORLIN",
"city": "BOUGNEAU",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "115",
"latitude": 45.618496,
"longitude": -0.498872,
"manager_name": "Mickael PUJO",
"mobile_number": "2222",
"name": "BOUGNEAU",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 96 16 50",
"timezone": "Europe/Paris",
"zip_code": "17800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n3 ROUTE DES ROCS",
"city": "ST GEORGES DES AGOUTS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "116",
"latitude": 45.359115,
"longitude": -0.662642,
"manager_name": "Arnaud RIPPE",
"mobile_number": "2222",
"name": "ST GEORGES DES AGOUTS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 86 01 22",
"timezone": "Europe/Paris",
"zip_code": "17150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLA COULEE DE L ARSEAU",
"city": "PUYRAVAULT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "117",
"latitude": 46.382468,
"longitude": -1.083071,
"manager_name": "Martin PENISSON",
"mobile_number": "2222",
"name": "PUYRAVAULT",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 28 60 81",
"timezone": "Europe/Paris",
"zip_code": "85450"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n8 ROUTE DE MOQUESOURIS\nPLASSAC",
"city": "EPARGNES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "118",
"latitude": 45.534718,
"longitude": -0.810619,
"manager_name": "Christophe MOREAU",
"mobile_number": "06 07 26 73 91",
"name": "EPARGNES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 90 70 91",
"timezone": "Europe/Paris",
"zip_code": "17120"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\n10 RUE DU 19EME BATAILLON\nDE CHASSEURS A PIED",
"city": "VERDUN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "119",
"latitude": 49.164792,
"longitude": 5.397712,
"manager_name": "Isabelle LECRIQUE",
"mobile_number": "2222",
"name": "VERDUN MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 29 84 53 36",
"timezone": "Europe/Paris",
"zip_code": "55100"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n31 RUE DE L ARQUEBUSE",
"city": "SCEAUX DU GATINAIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "120",
"latitude": 48.107331,
"longitude": 2.602605,
"manager_name": "Gaêtan PIGET",
"mobile_number": "06 71 74 80 83",
"name": "SCEAUX DU GATINAIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 87 42 42",
"timezone": "Europe/Paris",
"zip_code": "45490"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nRUE DE DREVILLE\nDREVILLE",
"city": "SERMAISES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "121",
"latitude": 48.294347,
"longitude": 2.215206,
"manager_name": "Frederic DARRE",
"mobile_number": "2222",
"name": "SERMAISES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 39 76 11",
"timezone": "Europe/Paris",
"zip_code": "45300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE OUANNE",
"city": "MERRY SEC",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "122",
"latitude": 47.660723,
"longitude": 3.488795,
"manager_name": "Ludovic PHILIPPE",
"mobile_number": "2222",
"name": "MERRY SEC",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 41 66 38",
"timezone": "Europe/Paris",
"zip_code": "89560"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 RUE DES VELAIS",
"city": "BENEUVRE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "123",
"latitude": 47.692334,
"longitude": 4.942469,
"manager_name": "Adrien ROUGET",
"mobile_number": "2222",
"name": "BENEUVRE CENTRE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 80 81 00 33",
"timezone": "Europe/Paris",
"zip_code": "21290"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nGARE DE POINSON LES GRANCEY",
"city": "POINSON LES GRANCEY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "124",
"latitude": 47.688317,
"longitude": 4.974198,
"manager_name": "Dylan NOIROT",
"mobile_number": "2222",
"name": "BENEUVRE GARE POINSON LES GRANCEY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 80 81 00 33",
"timezone": "Europe/Paris",
"zip_code": "52160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n7 RUE DE NEUILLY",
"city": "SENS BEAUJEU",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "125",
"latitude": 47.325277,
"longitude": 2.704706,
"manager_name": "nc",
"mobile_number": "2222",
"name": "SENS BEAUJEU",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 48 79 03 14",
"timezone": "Europe/Paris",
"zip_code": "18300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI DE SEPT SORTS\nRUE DE LA MERLETTE",
"city": "SEPT SORTS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "126",
"latitude": 48.948553,
"longitude": 3.10374,
"manager_name": "Thomas BERGER",
"mobile_number": "06 83 57 28 75",
"name": "SEPT SORTS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 60 22 07 86",
"timezone": "Europe/Paris",
"zip_code": "77260"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nZI DE RHOVYL\nRUE DU FILAGE",
"city": "TRONVILLE EN BARROIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "127",
"latitude": 48.718381,
"longitude": 5.281358,
"manager_name": " Fabrice MULLER",
"mobile_number": "2222",
"name": "TRONVILLE EN BARROIS MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 29 78 80 00",
"timezone": "Europe/Paris",
"zip_code": "55310"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n42 RTE DE MARIGNAC",
"city": "CHADENAC",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "128",
"latitude": 45.53697,
"longitude": -0.451697,
"manager_name": "Romain MABILLAT",
"mobile_number": "2222",
"name": "CHADENAC",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 91 20 04",
"timezone": "Europe/Paris",
"zip_code": "17800"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLES BRANDES",
"city": "PONS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "129",
"latitude": 45.541362,
"longitude": -0.56167,
"manager_name": "Manuel GARECHE",
"mobile_number": "2222",
"name": "BELLUIRE PONS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 91 33 04",
"timezone": "Europe/Paris",
"zip_code": "17800"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nCHEZ FOURNEAU BABEUF",
"city": "LACHAISE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "130",
"latitude": 45.521447,
"longitude": -0.229473,
"manager_name": "Laurent JOLIBOIS",
"mobile_number": "2222",
"name": "LACHAISE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 45 78 72 39",
"timezone": "Europe/Paris",
"zip_code": "16300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE MAGNOT\n21 MALABRIE",
"city": "LA TAILLEE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "131",
"latitude": 46.382576,
"longitude": -0.942533,
"manager_name": "Aurelien EGEA",
"mobile_number": "06 86 07 31 18",
"name": "LA TAILLEE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 52 53 39",
"timezone": "Europe/Paris",
"zip_code": "85450"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n581 RUE DES BRANDES\nCHAILLE",
"city": "ST GEORGES DU BOIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "132",
"latitude": 46.126809,
"longitude": -0.71818,
"manager_name": "Jérome NOUZILLE",
"mobile_number": "2222",
"name": "ST GEORGES DU BOIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 27 90 17",
"timezone": "Europe/Paris",
"zip_code": "17700"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES BARRES",
"city": "L HERMENAULT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "133",
"latitude": 46.517531,
"longitude": -0.90397,
"manager_name": "Sebastien FILLONNEAU",
"mobile_number": "06 07 26 75 09",
"name": "L HERMENAULT",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 00 10 02",
"timezone": "Europe/Paris",
"zip_code": "85570"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRD 194\nDIRECTION RD 618",
"city": "VIVIERS S CHIERS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "134",
"latitude": 49.472011,
"longitude": 5.600878,
"manager_name": "Gilles DESLANDES",
"mobile_number": "2222",
"name": "VIVIERS S CHIERS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 82 39 25 80",
"timezone": "Europe/Paris",
"zip_code": "54260"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 RUE CHALAUX GARCHY",
"city": "NUARS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "135",
"latitude": 47.377969,
"longitude": 3.698435,
"manager_name": "Corentin BERLIN",
"mobile_number": "2222",
"name": "NUARS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 24 80 76",
"timezone": "Europe/Paris",
"zip_code": "58190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n4 RUE DU SAFRAN",
"city": "BOYNES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "136",
"latitude": 48.11796,
"longitude": 2.356814,
"manager_name": "Luc JAMOT",
"mobile_number": "06 70 41 31 47",
"name": "BOYNES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 34 56 90",
"timezone": "Europe/Paris",
"zip_code": "45300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE CHALONS",
"city": "MONTMIRAIL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "137",
"latitude": 48.873439,
"longitude": 3.574233,
"manager_name": "Alain RONDEAU",
"mobile_number": "2222",
"name": "MONTMIRAIL B",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 81 61 12",
"timezone": "Europe/Paris",
"zip_code": "51210"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZA COMMERCIALE\nROUTE DEPARTEMENTALE 9",
"city": "LANEUVEVILLE DEVANT BAYON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "138",
"latitude": 48.468786,
"longitude": 6.255743,
"manager_name": "Stéphane FERRY",
"mobile_number": "06 14 33 21 92",
"name": "LANEUVEVILLE DEVANT BAYON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "54740"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nRUE DU VERGERS",
"city": "MARCILLY LA CAMPAGNE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "139",
"latitude": 48.835221,
"longitude": 1.192349,
"manager_name": "Maxime THOMAS",
"mobile_number": "06 12 46 45 88",
"name": "MARCILLY LA CAMPAGNE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "1111",
"timezone": "Europe/Paris",
"zip_code": "27320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE VERTILLY",
"city": "SERGINES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "140",
"latitude": 48.3399,
"longitude": 3.277699,
"manager_name": "Vincent THIERRY",
"mobile_number": "06 86 33 28 16",
"name": "SERGINES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 66 39 80",
"timezone": "Europe/Paris",
"zip_code": "89140"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLD LA COGNARDERIE",
"city": "CHANTECOQ",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "141",
"latitude": 48.035377,
"longitude": 2.962588,
"manager_name": "Florian PAUL",
"mobile_number": "06 71 78 94 10",
"name": "CHANTECOQ",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 87 27 85",
"timezone": "Europe/Paris",
"zip_code": "45320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE LA GARE",
"city": "CHILLEURS AUX BOIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "142",
"latitude": 48.092647,
"longitude": 2.123514,
"manager_name": "Jerome PERDEREAU",
"mobile_number": "06 70 41 22 43",
"name": "CHILLEURS AUX BOIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 39 82 42",
"timezone": "Europe/Paris",
"zip_code": "45170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE PONT CROTTE",
"city": "BOURNEZEAU",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "143",
"latitude": 46.628974,
"longitude": -1.187856,
"manager_name": "Anthony METAIS",
"mobile_number": "06 03 96 09 04",
"name": "BOURNEZEAU",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 40 87 87",
"timezone": "Europe/Paris",
"zip_code": "85480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n7 RUE DE JERICHO",
"city": "FONTENAY LE COMTE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "144",
"latitude": 46.459562,
"longitude": -0.792412,
"manager_name": "Nadine VERGNAUD",
"mobile_number": "2222",
"name": "FONTENAY LE COMTE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 69 20 24",
"timezone": "Europe/Paris",
"zip_code": "85200"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES GRANDES RATONNIERES",
"city": "ST MEDARD D AUNIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "145",
"latitude": 46.136638,
"longitude": -1.009019,
"manager_name": "Gabriel BRECHOIRE",
"mobile_number": "2222",
"name": "ST MEDARD D AUNIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 35 92 51",
"timezone": "Europe/Paris",
"zip_code": "17220"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "PLATEFORME SOUFFLET\nRD60\nDIRECTION DOULEVANT LE CHATEAU",
"city": "NULLY TREMILLY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "146",
"latitude": 48.363984,
"longitude": 4.82773,
"manager_name": "Sébastien DRIAT",
"mobile_number": "2222",
"name": "NULLY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 55 66 97",
"timezone": "Europe/Paris",
"zip_code": "52110"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n4 RUE DU PLESSIS",
"city": "CORBREUSE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "147",
"latitude": 48.494928,
"longitude": 1.962198,
"manager_name": "Philippe ROYNE",
"mobile_number": "06 28 47 04 75",
"name": "CORBREUSE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 59 40 92",
"timezone": "Europe/Paris",
"zip_code": "91410"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n3 RUE GAMBETTA",
"city": "GONDREVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "148",
"latitude": 48.050301,
"longitude": 2.65416,
"manager_name": "Daniel COLLET",
"mobile_number": "06 80 05 65 46",
"name": "GONDREVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 89 87 90",
"timezone": "Europe/Paris",
"zip_code": "45490"
},
{
"activities_names": "Silo portuaire fluvial",
"address": "SILO SOUFFLET\n1 CHEMIN DU PORT",
"city": "GRIGNY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "149",
"latitude": 48.666763,
"longitude": 2.404918,
"manager_name": "Yannick CAILLETEAU",
"mobile_number": "06 76 09 25 28",
"name": "GRIGNY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 69 02 76 00",
"timezone": "Europe/Paris",
"zip_code": "91350"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nCHEMIN DE BRIOTTE D59\nAVANT LE CIMETIERE",
"city": "VILLENAUXE LA PETITE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "150",
"latitude": 48.403065,
"longitude": 3.321639,
"manager_name": "Hervé LEROY",
"mobile_number": "2222",
"name": "VILLENAUXE LA PETITE B",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 60 67 18 35",
"timezone": "Europe/Paris",
"zip_code": "77480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN MESSE",
"city": "HERME",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "151",
"latitude": 48.490881,
"longitude": 3.344926,
"manager_name": "Cyrille DELAVACHERIE",
"mobile_number": "2222",
"name": "HERME",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 00 78 01",
"timezone": "Europe/Paris",
"zip_code": "77114"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 ROUTE BAILLY",
"city": "RIGNY LA NONNEUSE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "152",
"latitude": 48.403367,
"longitude": 3.659315,
"manager_name": "Damien BACHOT",
"mobile_number": "2222",
"name": "RIGNY LA NONNEUSE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 21 63 36",
"timezone": "Europe/Paris",
"zip_code": "10290"
},
{
"activities_names": "Silo portuaire fluvial",
"address": "SILO SOUFFLET\n51 RUE DES ETANGS\nLE VIEUX MOUY",
"city": "MOUY S SEINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "153",
"latitude": 48.425523,
"longitude": 3.227539,
"manager_name": "Eric BOURBONNEUX",
"mobile_number": "2222",
"name": "MOUY S SEINE A",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 01 17 02",
"timezone": "Europe/Paris",
"zip_code": "77480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE SOLIGNY",
"city": "TRANCAULT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "154",
"latitude": 48.385037,
"longitude": 3.52667,
"manager_name": "Yannick TROCELLIER",
"mobile_number": "2222",
"name": "TRANCAULT B",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 21 73 19",
"timezone": "Europe/Paris",
"zip_code": "10290"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE BOIS DU PARC",
"city": "PLESSIS ST BENOIST",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "155",
"latitude": 48.448263,
"longitude": 2.007105,
"manager_name": "Philippe FAUVET",
"mobile_number": "06 76 09 66 76",
"name": "PLESSIS ST BENOIST",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 95 51 45",
"timezone": "Europe/Paris",
"zip_code": "91410"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n10 RUE EMILE CHAPPERON",
"city": "LEVESVILLE LA CHENARD",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "156",
"latitude": 48.303962,
"longitude": 1.823772,
"manager_name": "Alexis DENOUAL",
"mobile_number": "2222",
"name": "LEVESVILLE LA CHENARD",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 37 22 12 16",
"timezone": "Europe/Paris",
"zip_code": "28210"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nMORSANG SUD\nROUTE DEPARTEMENTALE 63 LA MONTAGNE",
"city": "ETAMPES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "158",
"latitude": 48.404583,
"longitude": 2.213756,
"manager_name": "Clément HAUTEFEUILLE",
"mobile_number": "06 71 74 75 83",
"name": "ETAMPES LA MONTAGNE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 94 19 92",
"timezone": "Europe/Paris",
"zip_code": "91150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCOUR DE LA GARE\nLE PETIT ORME",
"city": "PARAY DOUAVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "159",
"latitude": 48.477941,
"longitude": 1.851777,
"manager_name": "Nicolas TRICARD",
"mobile_number": "06 12 46 46 54",
"name": "PARAY DOUAVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 30 88 07 66",
"timezone": "Europe/Paris",
"zip_code": "78660"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN LATERAL\nDEPOT TOTAL",
"city": "PUISEAUX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "160",
"latitude": 48.206284,
"longitude": 2.462572,
"manager_name": "LACONCHE Vincent",
"mobile_number": "06 71 74 66 80",
"name": "PUISEAUX A",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 34 55 70",
"timezone": "Europe/Paris",
"zip_code": "45390"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE NERONDES\nD43 LE BOURG",
"city": "IGNOL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "161",
"latitude": 46.96859,
"longitude": 2.844774,
"manager_name": "Jean Jacques COCU",
"mobile_number": "06 12 17 27 70",
"name": "IGNOL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 48 74 84 50",
"timezone": "Europe/Paris",
"zip_code": "18350"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE REBILLATE\n2 ROUTE DE ST LOUP",
"city": "CHAVANNES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "162",
"latitude": 46.851288,
"longitude": 2.376195,
"manager_name": "Alexandre BRY",
"mobile_number": "06 03 81 63 97",
"name": "CHAVANNES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 48 60 57 30",
"timezone": "Europe/Paris",
"zip_code": "18190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE LA LIBERATION\nLIEU-DIT LA VOIE DE MARIGNY",
"city": "ORVILLIERS ST JULIEN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "163",
"latitude": 48.436435,
"longitude": 3.814018,
"manager_name": "Stéphane DENIZOT",
"mobile_number": "2222",
"name": "ORVILLIERS ST JULIEN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 24 66 51",
"timezone": "Europe/Paris",
"zip_code": "10170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRD 6 LA COMBE",
"city": "PONT LA VILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "164",
"latitude": 48.078308,
"longitude": 4.888503,
"manager_name": "Jean Pierre PRINCET",
"mobile_number": "06 29 87 54 51",
"name": "PONT LA VILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "52120"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n92 RUE DE ST JEAN",
"city": "ST GEORGES DU VIEVRE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "166",
"latitude": 49.239822,
"longitude": 0.582699,
"manager_name": "Gaylord BOUCKAERT",
"mobile_number": "06 75 62 71 07",
"name": "ST GEORGES DU VIEVRE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 32 20 02 58",
"timezone": "Europe/Paris",
"zip_code": "27450"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\n50 RUE DES ETANGS",
"city": "MOUY S SEINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "167",
"latitude": 48.42547,
"longitude": 3.227909,
"manager_name": "André POSTHUMUS",
"mobile_number": "06 33 19 56 47",
"name": "MOUY S SEINE B MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 60 67 10 50",
"timezone": "Europe/Paris",
"zip_code": "77480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZONE ARTISANALE\nD386",
"city": "POILLY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "169",
"latitude": 49.219016,
"longitude": 3.813866,
"manager_name": "Damien NOIZET",
"mobile_number": "06 12 52 73 30",
"name": "POILLY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 61 80 84",
"timezone": "Europe/Paris",
"zip_code": "51170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD106",
"city": "ETON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "170",
"latitude": 49.271094,
"longitude": 5.667438,
"manager_name": " Geoffrey VEBER",
"mobile_number": "06 72 28 86 45",
"name": "ETON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 29 83 73 36",
"timezone": "Europe/Paris",
"zip_code": "55240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE GRANGE L EVEQUE\nROUTE DEPARTEMENTALE 15",
"city": "ST LYE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "171",
"latitude": 48.34484,
"longitude": 3.981378,
"manager_name": "Herve MATRAT",
"mobile_number": "2222",
"name": "ST LYE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 41 00 18",
"timezone": "Europe/Paris",
"zip_code": "10180"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nROUTE DE VILLERS LE CHATEAU",
"city": "MATOUGUES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "172",
"latitude": 48.981112,
"longitude": 4.252749,
"manager_name": "Victor ADNET",
"mobile_number": "2222",
"name": "MATOUGUES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "51510"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "STOCKAGE SOUFFLET\n7 PLACE DES TILLEULS",
"city": "OSMOY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "173",
"latitude": 48.869324,
"longitude": 1.71603,
"manager_name": "Paul PETILLON",
"mobile_number": "06 82 81 78 70",
"name": "OSMOY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 34 87 23 57",
"timezone": "Europe/Paris",
"zip_code": "78910"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 CHEMIN MOULANT",
"city": "ST MARDS DE BLACARVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "175",
"latitude": 49.384745,
"longitude": 0.534026,
"manager_name": "Raynald DEUVE",
"mobile_number": "06 61 38 33 67",
"name": "ST MARDS DE BLACARVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 32 42 05 13",
"timezone": "Europe/Paris",
"zip_code": "27500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE POMMEREY\nROUTE DEPARTEMENTALE 94",
"city": "ROUGEMONTIERS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "176",
"latitude": 49.358264,
"longitude": 0.722644,
"manager_name": "Valentin CHERON",
"mobile_number": "06 33 34 78 12",
"name": "ROUGEMONTIERS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 32 20 15 00",
"timezone": "Europe/Paris",
"zip_code": "27350"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nBOIS DE L HOPITAL",
"city": "MESSEME",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "178",
"latitude": 47.010253,
"longitude": 0.14685,
"manager_name": "Romain AUGUIER",
"mobile_number": "2222",
"name": "MESSEME",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 98 04 63",
"timezone": "Europe/Paris",
"zip_code": "86200"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n71 RUE EDMOND HUBERT",
"city": "EGREVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "182",
"latitude": 48.176621,
"longitude": 2.865232,
"manager_name": "Eric QUINAULT",
"mobile_number": "2222",
"name": "EGREVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 29 57 11",
"timezone": "Europe/Paris",
"zip_code": "77620"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE VOULX",
"city": "ESMANS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "183",
"latitude": 48.354487,
"longitude": 2.95762,
"manager_name": "CANAULT Yann",
"mobile_number": "06 86 86 96 69",
"name": "ESMANS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 32 22 04",
"timezone": "Europe/Paris",
"zip_code": "77940"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nCHEMIN DU MOULIN DE PIERRE",
"city": "PITHIVIERS LE VIEIL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "184",
"latitude": 48.16826,
"longitude": 2.223508,
"manager_name": "Yannick ROULLEAU",
"mobile_number": "2222",
"name": "PITHIVIERS LE VIEIL B MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 30 24 29",
"timezone": "Europe/Paris",
"zip_code": "45300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLA VILLEDIEU",
"city": "LAONS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "185",
"latitude": 48.679906,
"longitude": 1.190474,
"manager_name": "Sebastien LESAGE",
"mobile_number": "06 20 77 59 58",
"name": "LAONS VILLEDIEU",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 37 38 18 87",
"timezone": "Europe/Paris",
"zip_code": "28270"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 RUE DE DOURDAIGNE",
"city": "HUISSEAU S MAUVES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "187",
"latitude": 47.888253,
"longitude": 1.716216,
"manager_name": "Julien LAURET",
"mobile_number": "06 17 94 72 37",
"name": "HUISSEAU S MAUVES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 80 59 80",
"timezone": "Europe/Paris",
"zip_code": "45130"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nBONTENY",
"city": "TERNAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "189",
"latitude": 47.036569,
"longitude": -0.036739,
"manager_name": "Bruno RIGAUDEAU",
"mobile_number": "06 08 98 79 79",
"name": "TERNAY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 22 93 77",
"timezone": "Europe/Paris",
"zip_code": "86120"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLA MALTERIE\nD726 ROUTE DE TOURY",
"city": "PITHIVIERS LE VIEIL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "190",
"latitude": 48.170846,
"longitude": 2.234141,
"manager_name": "Marc GROSSIER",
"mobile_number": "06 70 41 29 77",
"name": "PITHIVIERS LE VIEIL A",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 34 06 92",
"timezone": "Europe/Paris",
"zip_code": "45300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n52 ROUTE DE DIJON",
"city": "BRAZEY EN PLAINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "191",
"latitude": 47.139619,
"longitude": 5.214771,
"manager_name": "Jeremy JEANSON",
"mobile_number": "06 86 26 61 04",
"name": "BRAZEY EN PLAINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 80 77 90 87",
"timezone": "Europe/Paris",
"zip_code": "21470"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n2 RUE DE LA BASCULE",
"city": "NEUVILLE DE POITOU",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "192",
"latitude": 46.680705,
"longitude": 0.247807,
"manager_name": "Ludovic BARREAU",
"mobile_number": "2222",
"name": "NEUVILLE DE POITOU",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 51 21 02",
"timezone": "Europe/Paris",
"zip_code": "86170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n59 RUE DE LA GARE",
"city": "VILLIERS ST GEORGES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "193",
"latitude": 48.650315,
"longitude": 3.411608,
"manager_name": "Dominique ROLLET",
"mobile_number": "2222",
"name": "VILLIERS ST GEORGES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 01 90 38",
"timezone": "Europe/Paris",
"zip_code": "77560"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nROUTE DES CROIX",
"city": "BUSSY LE REPOS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "195",
"latitude": 48.056621,
"longitude": 3.239051,
"manager_name": "Guillaume CACHON",
"mobile_number": "2222",
"name": "BUSSY LE REPOS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 83 09 84",
"timezone": "Europe/Paris",
"zip_code": "89500"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nRD98\nDIRECTION D AUGER ST VINCENT",
"city": "ORMOY VILLERS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "196",
"latitude": 49.200492,
"longitude": 2.834963,
"manager_name": "Noelle GOUVEIA",
"mobile_number": "06 08 74 18 33",
"name": "ORMOY VILLERS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "60800"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nROUTE DES AIX D ANGUILLON",
"city": "RIANS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "198",
"latitude": 47.19216,
"longitude": 2.60336,
"manager_name": "François CHATAGNON",
"mobile_number": "06 16 49 15 96",
"name": "RIANS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 48 25 55 64",
"timezone": "Europe/Paris",
"zip_code": "18220"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "STOCKAGE SOUFFLET\nCHEMIN DU MOULIN DU LANQUENEST",
"city": "PRESSIGNY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "199",
"latitude": 47.748667,
"longitude": 5.657034,
"manager_name": "Adrien MAILLOT",
"mobile_number": "2222",
"name": "PRESSIGNY STK",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "52500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "STOCKAGE SOUFFLET\nCHEZ EARL DE SEUCHEY\nHAMEAU FERME DE SEUCHEY",
"city": "SAULLES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "200",
"latitude": 47.688112,
"longitude": 5.525975,
"manager_name": "Vianney FEVRE",
"mobile_number": "2222",
"name": "SAULLES SEUCHEY STK",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "1111",
"timezone": "Europe/Paris",
"zip_code": "52500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n45 RUE DE VAUDRAN\nZONE ARTISANALE",
"city": "DAMPIERRE S SALON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "202",
"latitude": 47.564179,
"longitude": 5.670734,
"manager_name": "Thierry MORLOT",
"mobile_number": "06 70 00 79 19",
"name": "DAMPIERRE S SALON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 84 32 38 05",
"timezone": "Europe/Paris",
"zip_code": "70180"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\n31 ROUTE DE CHITRY",
"city": "ST BRIS LE VINEUX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "203",
"latitude": 47.746778,
"longitude": 3.659625,
"manager_name": "Mathieu MOREAU",
"mobile_number": "2222",
"name": "ST BRIS LE VINEUX MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 53 69 74",
"timezone": "Europe/Paris",
"zip_code": "89530"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nD18E3\nAVENUE DES TILLEULS",
"city": "SOMMESOUS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "204",
"latitude": 48.731425,
"longitude": 4.202157,
"manager_name": "Candice ROYER",
"mobile_number": "2222",
"name": "SOMMESOUS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "51320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLA DAVIERE",
"city": "VENANSAULT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "205",
"latitude": 46.709108,
"longitude": -1.517078,
"manager_name": "Francis BERNARD",
"mobile_number": "06 25 70 33 25",
"name": "VENANSAULT",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "85190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRTE DE COUSSAY",
"city": "CHOUPPES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "207",
"latitude": 46.804019,
"longitude": 0.193073,
"manager_name": "Thomas CHAPILLON",
"mobile_number": "2222",
"name": "CHOUPPES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 50 89 89",
"timezone": "Europe/Paris",
"zip_code": "86110"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRTE DE LA VILLEDIEU",
"city": "NIEUIL L ESPOIR",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "208",
"latitude": 46.483038,
"longitude": 0.437806,
"manager_name": "Pierre-Luc LAMACHERE",
"mobile_number": "2222",
"name": "NIEUIL L ESPOIR",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 42 64 49",
"timezone": "Europe/Paris",
"zip_code": "86340"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLA CHATAIGNERAIE",
"city": "VICQ S GARTEMPE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "209",
"latitude": 46.735402,
"longitude": 0.846262,
"manager_name": "Adrien ROBIN",
"mobile_number": "2222",
"name": "VICQ S GARTEMPE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 23 19 23",
"timezone": "Europe/Paris",
"zip_code": "86260"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\n12 RUE HUILERIE",
"city": "MAILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "210",
"latitude": 46.676855,
"longitude": 0.093568,
"manager_name": "Kevin LANDREAU",
"mobile_number": "2222",
"name": "MAILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 60 17 24",
"timezone": "Europe/Paris",
"zip_code": "86190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLA PINELIERE",
"city": "BENASSAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "211",
"latitude": 46.587804,
"longitude": 0.0592,
"manager_name": "Sylvain CHAMORET",
"mobile_number": "2222",
"name": "LA PINELIERE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 57 52 42",
"timezone": "Europe/Paris",
"zip_code": "86470"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DU CHILLOU",
"city": "BENASSAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "212",
"latitude": 46.516027,
"longitude": 0.049589,
"manager_name": "Maxime ROLLAND",
"mobile_number": "2222",
"name": "LE CHILLOU",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 53 09 09",
"timezone": "Europe/Paris",
"zip_code": "86470"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n13 RUE ST NICOLAS",
"city": "VITRY LA VILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "217",
"latitude": 48.844232,
"longitude": 4.459819,
"manager_name": "Christophe SONGY",
"mobile_number": "2222",
"name": "VITRY LA VILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 67 38 71",
"timezone": "Europe/Paris",
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE FONTAINEBLEAU",
"city": "NANGIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "218",
"latitude": 48.547623,
"longitude": 2.997446,
"manager_name": "Frédéric BOILEAU",
"mobile_number": "2222",
"name": "NANGIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 08 14 45",
"timezone": "Europe/Paris",
"zip_code": "77370"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DU GENERAL DE GAULLE",
"city": "POGNY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "219",
"latitude": 48.863798,
"longitude": 4.474257,
"manager_name": "Baptiste CHAINE",
"mobile_number": "2222",
"name": "POGNY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 67 70 04",
"timezone": "Europe/Paris",
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE LA LIBERATION",
"city": "MARSON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "220",
"latitude": 48.908668,
"longitude": 4.521966,
"manager_name": "Jeremie RAULET",
"mobile_number": "2222",
"name": "MARSON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 67 90 12",
"timezone": "Europe/Paris",
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE MONTSUZON\nFONTAINE COOLE",
"city": "FAUX VESIGNEUL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "221",
"latitude": 48.796343,
"longitude": 4.385317,
"manager_name": "Vincent DOBIAS",
"mobile_number": "2222",
"name": "FAUX VESIGNEUL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 70 60 05",
"timezone": "Europe/Paris",
"zip_code": "51320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD 14\nROUTE DE L ORME NOIX",
"city": "HUIRON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "222",
"latitude": 48.693232,
"longitude": 4.508219,
"manager_name": "julien BOIVIN",
"mobile_number": "06 80 51 82 73",
"name": "HUIRON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 74 22 24",
"timezone": "Europe/Paris",
"zip_code": "51300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD1\nRUE ST HILAIRE",
"city": "LE FRESNE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "223",
"latitude": 48.911379,
"longitude": 4.650908,
"manager_name": "Antoine JACQUIER",
"mobile_number": "2222",
"name": "LE FRESNE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 67 90 57",
"timezone": "Europe/Paris",
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE BASSU",
"city": "VANAULT LE CHATEL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "224",
"latitude": 48.85871,
"longitude": 4.721777,
"manager_name": "Raphael BOURGOIN",
"mobile_number": "2222",
"name": "VANAULT LE CHATEL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 73 33 74",
"timezone": "Europe/Paris",
"zip_code": "51330"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE D AULNAY\nD60 LES CHAMPS DORMAT",
"city": "LA CHAUSSEE S MARNE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "225",
"latitude": 48.830123,
"longitude": 4.541977,
"manager_name": "Alain BECK",
"mobile_number": "2222",
"name": "LA CHAUSSEE S MARNE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 72 96 03",
"timezone": "Europe/Paris",
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES CHAMPS DES DAURONS",
"city": "ST PALAIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "226",
"latitude": 47.256921,
"longitude": 2.393924,
"manager_name": "Quentin ARCHAMBAULT",
"mobile_number": "06 79 54 93 28",
"name": "ST PALAIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 48 23 28 84",
"timezone": "Europe/Paris",
"zip_code": "18110"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nROUTE DE LA DIVE",
"city": "ST MICHEL EN L HERM",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "227",
"latitude": 46.32239,
"longitude": -1.231384,
"manager_name": "Brice CHUSSEAU",
"mobile_number": "06 03 96 09 06",
"name": "ST MICHEL EN L HERM",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 97 60 96",
"timezone": "Europe/Paris",
"zip_code": "85580"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nHAMEAU DE NEZE",
"city": "MEZIERES EN VEXIN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "228",
"latitude": 49.184502,
"longitude": 1.501324,
"manager_name": "Frederic MARC",
"mobile_number": "06 16 23 49 13",
"name": "MEZIERES EN VEXIN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 32 52 35 45",
"timezone": "Europe/Paris",
"zip_code": "27510"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 LE SILO\nLA GRANDE GORCE",
"city": "LE CHAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "229",
"latitude": 45.642416,
"longitude": -0.905971,
"manager_name": "Yohan PAPIN",
"mobile_number": "2222",
"name": "LE CHAY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 02 84 94",
"timezone": "Europe/Paris",
"zip_code": "17600"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLE BOURG",
"city": "BALANZAC",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "230",
"latitude": 45.730856,
"longitude": -0.840172,
"manager_name": "Philippe MURAT",
"mobile_number": "2222",
"name": "BALANZAC",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 94 41 90",
"timezone": "Europe/Paris",
"zip_code": "17600"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nRUE DU GENERAL PATTON",
"city": "CHALONS EN CHAMPAGNE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "231",
"latitude": 48.97402453826139,
"longitude": 4.328613281250001,
"manager_name": "Alain BECK",
"mobile_number": "2222",
"name": "CHALONS EN CHAMPAGNE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 65 43 45",
"timezone": "Europe/Paris",
"zip_code": "51000"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZA LES OUCHES\nROUTE DE HONVILLE",
"city": "BOISVILLE LA ST PERE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "232",
"latitude": 48.332928,
"longitude": 1.692566,
"manager_name": "Reynald HUET",
"mobile_number": "2222",
"name": "BOISVILLE LA ST PERE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 37 99 31 08",
"timezone": "Europe/Paris",
"zip_code": "28150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE SEPMES LA BROSSE\nBP 17",
"city": "STE MAURE DE TOURAINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "233",
"latitude": 47.099675,
"longitude": 0.62138,
"manager_name": "Philippe GARROT",
"mobile_number": "2222",
"name": "STE MAURE DE TOURAINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 47 72 30 00",
"timezone": "Europe/Paris",
"zip_code": "37800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n12 RUE DES MINIMES\nBELLEVUE",
"city": "ST JEAN DE LIVERSAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "234",
"latitude": 46.271196,
"longitude": -0.882011,
"manager_name": "Philippe PRUGNAUD",
"mobile_number": "2222",
"name": "ST JEAN DE LIVERSAY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 01 99 19",
"timezone": "Europe/Paris",
"zip_code": "17170"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLE VIEUX MAILLE",
"city": "LA RONDE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "235",
"latitude": 46.303695,
"longitude": -0.818023,
"manager_name": "Philippe PRUGNAUD",
"mobile_number": "2222",
"name": "LA RONDE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 27 88 11",
"timezone": "Europe/Paris",
"zip_code": "17170"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLA JUSTICE",
"city": "NOYANT DE TOURAINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "236",
"latitude": 47.112202,
"longitude": 0.576305,
"manager_name": "Laurent MERLE",
"mobile_number": "2222",
"name": "NOYANT DE TOURAINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 47 73 50 24",
"timezone": "Europe/Paris",
"zip_code": "37800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DU PUY GAUTHIER",
"city": "STE HERMINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "237",
"latitude": 46.548415,
"longitude": -1.063793,
"manager_name": "Nicolas FERRET",
"mobile_number": "2222",
"name": "STE HERMINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 27 36 02",
"timezone": "Europe/Paris",
"zip_code": "85210"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nCHEMIN DES DOCKS",
"city": "CREPY EN VALOIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "238",
"latitude": 49.229971,
"longitude": 2.887541,
"manager_name": "Laurent DUFAY",
"mobile_number": "06 75 62 08 42",
"name": "CREPY EN VALOIS MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 44 39 39 00",
"timezone": "Europe/Paris",
"zip_code": "60800"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\n4 RUE DE LA GARE DES MARCHANDISES",
"city": "PUISEAUX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "239",
"latitude": 48.205613,
"longitude": 2.459338,
"manager_name": "Laurent BRUNEAU",
"mobile_number": "06 45 69 27 95",
"name": "PUISEAUX BINEAU MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 33 60 77",
"timezone": "Europe/Paris",
"zip_code": "45390"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "PLATEFORME SOUFFLET\nLA CASTINIERE\nRD 1 ENTRE GARCHY ET CHAMPCELLEE",
"city": "SUILLY LA TOUR",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "240",
"latitude": 47.311227,
"longitude": 3.081717,
"manager_name": "Matthieu BITAULT",
"mobile_number": "2222",
"name": "SUILLY LA TOUR",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 24 46 17",
"timezone": "Europe/Paris",
"zip_code": "58150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "PLATEFORME SOUFFLET\nROUTE DE BILLANCELLE",
"city": "COURVILLE S EURE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "241",
"latitude": 48.459529,
"longitude": 1.229495,
"manager_name": "Brice DARMIGNY",
"mobile_number": "06 89 36 21 72",
"name": "COURVILLE S EURE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "28190"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLA BILLETTE",
"city": "ST EPAIN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "244",
"latitude": 47.158832,
"longitude": 0.580518,
"manager_name": "Thomas MAUCLERC",
"mobile_number": "2222",
"name": "ST EPAIN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 47 65 81 11",
"timezone": "Europe/Paris",
"zip_code": "37800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n2 CHEMIN ANCIENNE GARE\nZI",
"city": "SAUSSAY LA CAMPAGNE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "246",
"latitude": 49.314063,
"longitude": 1.504643,
"manager_name": "Thierry ARNAL",
"mobile_number": "06 16 23 49 15",
"name": "SAUSSAY LA CAMPAGNE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 32 55 82 31",
"timezone": "Europe/Paris",
"zip_code": "27150"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLA CROIX",
"city": "MANTHELAN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "247",
"latitude": 47.12916,
"longitude": 0.777623,
"manager_name": "Thomas MAUCLERC",
"mobile_number": "2222",
"name": "MANTHELAN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 47 92 80 76",
"timezone": "Europe/Paris",
"zip_code": "37240"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLE CORPS DE GARDE",
"city": "LA CELLE ST AVANT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "248",
"latitude": 47.013531,
"longitude": 0.599488,
"manager_name": "Laurent MERLE",
"mobile_number": "07 82 64 70 48",
"name": "LA CELLE ST AVANT",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "37160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI DE ST USTRES",
"city": "INGRANDES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "249",
"latitude": 46.895786,
"longitude": 0.582827,
"manager_name": "Yves VASLET",
"mobile_number": "2222",
"name": "INGRANDES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 02 73 77",
"timezone": "Europe/Paris",
"zip_code": "86220"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nROUTE DE BOURNAN",
"city": "SEPMES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "250",
"latitude": 47.065559,
"longitude": 0.684517,
"manager_name": "Thomas MAUCLERC",
"mobile_number": "2222",
"name": "SEPMES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 47 65 44 39",
"timezone": "Europe/Paris",
"zip_code": "37800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES PACAGES D ARGENSON\nROUTE DE MAILLE",
"city": "NOUATRE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "251",
"latitude": 47.046659,
"longitude": 0.562711,
"manager_name": "Eric MILCENT",
"mobile_number": "2222",
"name": "NOUATRE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 47 65 30 72",
"timezone": "Europe/Paris",
"zip_code": "37800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "STOCKAGE SOUFFLET\nROUTE CHAPELAINE",
"city": "SOMSOIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "252",
"latitude": 48.590105,
"longitude": 4.498991,
"manager_name": "Valentin MAUCLAIRE",
"mobile_number": "06 48 74 02 61",
"name": "SOMSOIS TRANSP VAL DE SOUDE STK",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 74 22 52",
"timezone": "Europe/Paris",
"zip_code": "51290"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE GRIGNON",
"city": "DESCARTES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "253",
"latitude": 47.003538,
"longitude": 0.644056,
"manager_name": "Hubert COURTINE",
"mobile_number": "2222",
"name": "DESCARTES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 47 92 45 27",
"timezone": "Europe/Paris",
"zip_code": "37160"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLES GIRARDIERES",
"city": "SORIGNY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "254",
"latitude": 47.193257,
"longitude": 0.693894,
"manager_name": "Marion POMMIER",
"mobile_number": "2222",
"name": "SORIGNY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 47 26 96 62",
"timezone": "Europe/Paris",
"zip_code": "37250"
},
{
"activities_names": "Silo portuaire fluvial",
"address": "SILO SOUFFLET\nRUE DE LA SUCRERIE",
"city": "BRAY S SEINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "255",
"latitude": 48.416259,
"longitude": 3.229937,
"manager_name": "Quentin DABKOWSKI",
"mobile_number": "2222",
"name": "BRAY S SEINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 60 52 64 15",
"timezone": "Europe/Paris",
"zip_code": "77480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLD LA GARENNE",
"city": "GIVERVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "257",
"latitude": 49.184788,
"longitude": 0.572357,
"manager_name": "Romain REIGNIER",
"mobile_number": "06 28 47 05 52",
"name": "GIVERVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 32 45 93 47",
"timezone": "Europe/Paris",
"zip_code": "27560"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nPLAINE DE MARTAINVILLE",
"city": "LE CORMIER",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "258",
"latitude": 48.990417,
"longitude": 1.298005,
"manager_name": "Arnaud RENOULT",
"mobile_number": "06 73 18 07 27",
"name": "LE CORMIER",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 32 30 79 73",
"timezone": "Europe/Paris",
"zip_code": "27120"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE ST VINCENT DU BOULAY\nRD 138 DIRECTION THIBERVILLE",
"city": "ST MARTIN DU TILLEUL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "259",
"latitude": 49.109582,
"longitude": 0.512926,
"manager_name": "Ludovic AUDREN",
"mobile_number": "06 48 74 03 17",
"name": "ST MARTIN DU TILLEUL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 32 46 46 52",
"timezone": "Europe/Paris",
"zip_code": "27300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n4 RUE DU DANEMARK",
"city": "CANTELEU",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "260",
"latitude": 49.424363,
"longitude": 1.020228,
"manager_name": "Pascal SOUFFLET",
"mobile_number": "2222",
"name": "DIEPPEDALLE CROISSET CANTELEU",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 35 36 30 50",
"timezone": "Europe/Paris",
"zip_code": "76380"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nZA LA MAINBORGERE\nRUE DE LA MAROTTE",
"city": "CHATEAU GUIBERT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "261",
"latitude": 46.56704,
"longitude": -1.276601,
"manager_name": "Romain ROY",
"mobile_number": "06 19 25 83 39",
"name": "CHATEAU GUIBERT",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "85320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI LES BUTZ",
"city": "MARTAINNEVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "262",
"latitude": 50.011739,
"longitude": 1.718883,
"manager_name": "En recrutement",
"mobile_number": "06 27 09 35 83",
"name": "MARTAINNEVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 22 24 47 69",
"timezone": "Europe/Paris",
"zip_code": "80140"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRTE DE ST JUST",
"city": "FOUQUEROLLES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "263",
"latitude": 49.459018,
"longitude": 2.217107,
"manager_name": "Florian VALTENAIRE",
"mobile_number": "2222",
"name": "FOUQUEROLLES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 44 10 51 00",
"timezone": "Europe/Paris",
"zip_code": "60510"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 ROUTE DEPARTEMENTALE",
"city": "OROER",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "264",
"latitude": 49.500039,
"longitude": 2.163462,
"manager_name": "Julien LESEUTE",
"mobile_number": "06 12 04 58 18",
"name": "OROER",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 44 79 14 00",
"timezone": "Europe/Paris",
"zip_code": "60510"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI RTE NATIONALE",
"city": "QUEVAUVILLERS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "265",
"latitude": 49.819418,
"longitude": 2.077265,
"manager_name": "Mathieu PIGNON",
"mobile_number": "06 27 09 35 92",
"name": "QUEVAUVILLERS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 22 89 35 28",
"timezone": "Europe/Paris",
"zip_code": "80710"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n7 QUAI DE L APPORT PARIS",
"city": "CORBEIL ESSONNES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "266",
"latitude": 48.615146,
"longitude": 2.479824,
"manager_name": "Eddie LEMERET",
"mobile_number": "2222",
"name": "CORBEIL ESSONNES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 60 90 41 24",
"timezone": "Europe/Paris",
"zip_code": "91100"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DU MOULIN",
"city": "BONNARD",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "268",
"latitude": 47.923015,
"longitude": 3.535764,
"manager_name": "Anthony MICHAUD",
"mobile_number": "06 82 56 55 51",
"name": "BONNARD",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 73 23 95",
"timezone": "Europe/Paris",
"zip_code": "89400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE MALESHERBES",
"city": "PUISEAUX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "271",
"latitude": 48.214251,
"longitude": 2.45922,
"manager_name": "Eric JAQUEMONT",
"mobile_number": "06 76 09 03 72",
"name": "PUISEAUX HUREL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 33 53 27",
"timezone": "Europe/Paris",
"zip_code": "45390"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE D ORMESSON",
"city": "CHATENOY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "272",
"latitude": 48.232348,
"longitude": 2.634404,
"manager_name": "Sebastien DUCASTEL",
"mobile_number": "06 45 69 62 14",
"name": "CHATENOY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 45 51 50",
"timezone": "Europe/Paris",
"zip_code": "77167"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n18 RUE DE LA FORET",
"city": "BINAS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "274",
"latitude": 47.901638,
"longitude": 1.459371,
"manager_name": "Christophe BLET",
"mobile_number": "06 12 85 36 24",
"name": "BINAS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 54 82 41 28",
"timezone": "Europe/Paris",
"zip_code": "41240"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nRUE DE L ARTISANAT",
"city": "VIBRAYE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "276",
"latitude": 48.071105,
"longitude": 0.736479,
"manager_name": "Elise CALLU",
"mobile_number": "06 34 53 01 47",
"name": "VIBRAYE MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 36 58 20 82",
"timezone": "Europe/Paris",
"zip_code": "72320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n127 ROUTE DE LA FERTE\nLE RETARD",
"city": "FEROLLES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "277",
"latitude": 47.829092,
"longitude": 2.09969,
"manager_name": "Dominique ALLARD",
"mobile_number": "2222",
"name": "FEROLLES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 46 80 14",
"timezone": "Europe/Paris",
"zip_code": "45150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE LA CROIX CHAILLAT",
"city": "VICQ EXEMPLET",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "278",
"latitude": 46.627986,
"longitude": 2.1491,
"manager_name": "Philippe DESSOUBRAIS",
"mobile_number": "06 09 90 68 40",
"name": "VICQ EXEMPLET",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 54 30 04 80",
"timezone": "Europe/Paris",
"zip_code": "36400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "STOCKAGE SOUFFLET\nCHEZ SCEA DU DOU BRAY",
"city": "DOUVREND",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "291",
"latitude": 49.876646,
"longitude": 1.308474,
"manager_name": "Cyril TOURET",
"mobile_number": "06 13 22 43 00",
"name": "DOUVREND",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "1111",
"timezone": "Europe/Paris",
"zip_code": "76630"
},
{
"activities_names": "Collect",
"address": "Rue\nRue\nRue",
"city": "Brno",
"country": "CZ",
"email": "stephane.utest10@gmail.com",
"id": "317",
"latitude": 49.56797785892715,
"longitude": 17.193603515625004,
"manager_name": "Stephane10",
"mobile_number": "0612345678",
"name": "Test_sco1",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "0112345678",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "123456"
},
{
"activities_names": "Collect",
"address": "rue FR",
"city": "Ville FR",
"country": "CZ",
"email": "testemail@soufflet.com",
"id": "315",
"latitude": 48.8511979,
"longitude": 2.3730469,
"manager_name": "Manager",
"mobile_number": "2222",
"name": "Prostejov test Nico 13-12 FR",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "1111",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "10400"
},
{
"activities_names": "Collect",
"address": "Rue\nRue 2\nRue 3",
"city": "Ville",
"country": "CZ",
"email": "stephane.utest+10@gmail.com",
"id": "328",
"latitude": 49.61070993807422,
"longitude": 18.786621093750004,
"manager_name": "Chef FR",
"mobile_number": "1234",
"name": "Test_sco10_FR",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "5678",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "54555"
},
{
"activities_names": "Input",
"address": "street1 English\nstreet2\nstreet3",
"city": "Prague English",
"country": "CZ",
"email": "05Recette_I",
"id": "304",
"latitude": 50.0755381,
"longitude": 14.43780049999998,
"manager_name": "Chef de silo CZ01 English",
"mobile_number": "2222",
"name": "Silo CZ01 English",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "1111",
"timezone": "Europe/Prague",
"zip_code": "10000"
},
{
"activities_names": "Collect",
"address": "Street",
"city": "Brno",
"country": "CZ",
"email": "02Recette_I@soufflet.com",
"id": "314",
"latitude": 49.30721745093609,
"longitude": 16.649780273437504,
"manager_name": "Standa",
"mobile_number": "2222",
"name": "Silo 1.1.2 (Ouvert, CZ, Non Soufflet)",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "1111",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "10400"
},
{
"activities_names": "Input",
"address": "Novobranská\nNovobranská\nNovobranská",
"city": "Brno",
"country": "CZ",
"email": "stephane.utest+13@gmail.com",
"id": "319",
"latitude": 49.192,
"longitude": 16.6131,
"manager_name": "Karel Goldemund",
"mobile_number": "(+420)098765",
"name": "Test_sco3",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "(+420)098765",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "602 00"
},
{
"activities_names": "Collect",
"address": "U Jaktarské brány\nU Jaktarské brány\nU Jaktarské brány",
"city": "Opava",
"country": "CZ",
"email": "stephane.utest+15@gmail.com",
"id": "321",
"latitude": 49.9394,
"longitude": 17.9007,
"manager_name": "Mr H",
"mobile_number": "234",
"name": "Test_sco5",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "345345",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "746 01"
},
{
"activities_names": "Collect,Input",
"address": "Ceskoslovenské armády\nCeskoslovenské armády\nCeskoslovenské armády",
"city": "Hradec Králové",
"country": "CZ",
"email": "stephane.utest+16@gmail.com",
"id": "322",
"latitude": 50.209,
"longitude": 15.83,
"manager_name": "Mr Z",
"mobile_number": "+(420) 667788",
"name": "Test_sco6",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "Hradec Králové",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "500 00"
},
{
"activities_names": "Collect",
"address": "Street\nStreet\nStreet",
"city": "Town",
"country": "CZ",
"email": "stephane.utest+19@gmail.com",
"id": "325",
"latitude": 50,
"longitude": 16,
"manager_name": "1111",
"mobile_number": "1111",
"name": "SiloTest6627",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "1111",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "200 01"
},
{
"activities_names": "Collect",
"address": "df\ndf\ndf",
"city": "ER",
"country": "CZ",
"email": "stephane.utest+19@gmail.com",
"id": "326",
"latitude": 50.75035931136963,
"longitude": 14.490966796875002,
"manager_name": "Non renseigné",
"mobile_number": "1234",
"name": "Test_sco9",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "5678",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "650 00"
},
{
"activities_names": "Collect",
"address": "Rue\nRue\nRue",
"city": "Town",
"country": "CZ",
"email": "stephane.utest@gmail.com",
"id": "329",
"latitude": 45.82879925192134,
"longitude": 4.768066406250001,
"manager_name": "Chef",
"mobile_number": null,
"name": "TestSansLatLong",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": null,
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "69005"
},
{
"activities_names": "Collect,Input",
"address": "S\ns\ns",
"city": "Vyškov",
"country": "CZ",
"email": "stephane.utest12@gmail.com",
"id": "318",
"latitude": 49.27577,
"longitude": 17.0046,
"manager_name": "utest12",
"mobile_number": "+(420)123456",
"name": "Test_sco2",
"opening_hours": [],
"owner": "test",
"phone_number": "+(420)123456",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "682 01"
},
{
"activities_names": "Collect,Input",
"address": "Ostrava-Mariánské Hory a Hulváky\n14 Premyslovcu\n14 Premyslovcu",
"city": "Ostrava",
"country": "CZ",
"email": "stephane.utest+14@gmail.com",
"id": "320",
"latitude": 49.826779,
"longitude": 18.254,
"manager_name": "Mr T",
"mobile_number": "123",
"name": "Test_sco4",
"opening_hours": [],
"owner": "test",
"phone_number": "456",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "709 00"
},
{
"activities_names": "Collect",
"address": "Delnická\nDelnická\nDelnická",
"city": "Prague",
"country": "CZ",
"email": "stephane.utest+17@gmail.com",
"id": "323",
"latitude": 50.103,
"longitude": 14.4467,
"manager_name": "Mr Y",
"mobile_number": "346346",
"name": "Test_sco7",
"opening_hours": [],
"owner": "test",
"phone_number": "657345",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "100 00"
},
{
"activities_names": "Collect,Input",
"address": "Street\nStreet\nStreet",
"city": "Town",
"country": "CZ",
"email": "stephane.utest+18@gmail.com",
"id": "324",
"latitude": 49.7395,
"longitude": 13.3999,
"manager_name": "Mr S EN",
"mobile_number": "23",
"name": "Test_sco8_en",
"opening_hours": [],
"owner": "test",
"phone_number": "345345",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "301 00"
},
{
"activities_names": "Collect",
"address": "street english\nstreet 2 english\nstreet 3 english",
"city": "Poznan",
"country": "PL",
"email": "02Recette_I@soufflet.com",
"id": "303",
"latitude": 44.59046718130883,
"longitude": 2.9443359375,
"manager_name": "NicoD englishk",
"mobile_number": "0612345676",
"name": "Place name english",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "0612345676",
"region": "Région 03fr",
"timezone": "Europe/Warsaw",
"zip_code": "10440"
},
{
"activities_names": "Collect,Input",
"address": "S\nS\nS",
"city": "Warsaw",
"country": "PL",
"email": "stephane.utest+20@gmail.com",
"id": "327",
"latitude": 52.237049,
"longitude": 21.017532,
"manager_name": "Warsaw",
"mobile_number": "1",
"name": "Silo Warsaw",
"opening_hours": [],
"owner": "test",
"phone_number": "2",
"region": "Région 03fr",
"timezone": "Europe/Warsaw",
"zip_code": "444-12"
},
{
"activities_names": "Collect",
"address": "Street\nStree 2",
"city": "Odessa",
"country": "UA",
"email": "05Recette_I",
"id": "308",
"latitude": 46.538721,
"longitude": 30.735568,
"manager_name": "Stéphane Colson",
"mobile_number": "2222",
"name": "Silo Ukrain",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "1111",
"region": "Vinnytsa",
"timezone": "Europe/Kiev",
"zip_code": "69005"
},
{
"activities_names": "Collect",
"address": "Street",
"city": "Town",
"country": "UA",
"email": "testSilo@yopmail.com",
"id": "309",
"latitude": 4,
"longitude": 48,
"manager_name": "Chef",
"mobile_number": "012345678",
"name": "Tout sauf PhoneNumber",
"opening_hours": [],
"owner": "test",
"phone_number": "1111",
"region": "Région test",
"timezone": "Europe/Kiev",
"zip_code": "75003"
},
{
"activities_names": "Collect",
"address": "Stree",
"city": "Town",
"country": "UA",
"email": "testsilo@yopmail.com",
"id": "310",
"latitude": 3,
"longitude": 47,
"manager_name": "chef",
"mobile_number": "2222",
"name": "Tout sauf MobileNumber",
"opening_hours": [],
"owner": "test",
"phone_number": "0987654321",
"region": "Région test",
"timezone": "Europe/Kiev",
"zip_code": "75757"
},
{
"activities_names": "Collect",
"address": "Rue",
"city": "Town",
"country": "UA",
"email": "testsilo@yopmail.com",
"id": "311",
"latitude": 5,
"longitude": 44,
"manager_name": "Manager",
"mobile_number": "12345",
"name": "Tout sauf ManagerName",
"opening_hours": [],
"owner": "test",
"phone_number": "54321",
"region": "Région test",
"timezone": "Europe/Kiev",
"zip_code": "12345"
},
{
"activities_names": "Collect",
"address": "Rue",
"city": "Town",
"country": "UA",
"email": "testsilo@yopmail.com",
"id": "312",
"latitude": 11,
"longitude": 55,
"manager_name": "Chef",
"mobile_number": "01223152",
"name": "Tout sauf Latitude et Longitude",
"opening_hours": [],
"owner": "test",
"phone_number": "85327523",
"region": "Région test",
"timezone": "Europe/Kiev",
"zip_code": "68990"
}
]
}
The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:
{
"additionalProperties": false,
"definitions": {
"DefaultOpeningHour_562": {
"additionalProperties": false,
"description": "Automatically generated (please edit me)",
"properties": {
"afternoon_end": {
"anyOf": [
{
"description": "heure en UTC à convertir à partir de la timezone du silo",
"format": "datetime",
"type": "string"
},
{
"type": "null"
}
]
},
"afternoon_start": {
"anyOf": [
{
"description": "heure en UTC à convertir à partir de la timezone du silo",
"format": "datetime",
"type": "string"
},
{
"type": "null"
}
]
},
"date": {
"format": "date",
"type": "string"
},
"morning_end": {
"anyOf": [
{
"description": "heure en UTC à convertir à partir de la timezone du silo",
"format": "datetime",
"type": "string"
},
{
"type": "null"
}
]
},
"morning_start": {
"anyOf": [
{
"description": "heure en UTC à convertir à partir de la timezone du silo",
"format": "datetime",
"type": "string"
},
{
"type": "null"
}
]
},
"opening_periods": {
"description": "Format:\r\n%Y-%m-%dT%H:%M:%S+00:00/%Y-%m-%dT%H:%M:%S+00:00",
"items": {
"type": "string"
},
"maxItems": 2,
"minItems": 0,
"type": "array"
},
"status": {
"description": "1=Ouvert = morningStart; morningEnd; afternoonStart; afternoonEnd\r\n2=Ouvert à la demande = RAS\r\n3=Fermé = RAS\r\n4=Férié = RAS\r\n5=Ouvert sans interruption = morningStart ; afternoonEnd\r\n6=Ouvert seulement la matinée = morningStart ; morningEnd\r\n7=Ouvert seulement l'après-midi = afternoonStart ; afternoonEnd",
"maximum": 4,
"minimum": 1,
"type": "integer"
}
},
"required": [
"afternoon_end",
"afternoon_start",
"date",
"morning_end",
"morning_start",
"opening_periods",
"status"
],
"title": "OpeningHour - DefaultOpeningHour",
"type": "object"
}
},
"description": "Automatically generated (please edit me)",
"properties": {
"silos": {
"items": {
"additionalProperties": false,
"properties": {
"activities_names": {
"type": "string"
},
"address": {
"type": "string"
},
"city": {
"type": "string"
},
"country": {
"type": "string"
},
"email": {
"format": "email",
"type": "string"
},
"id": {
"pattern": "\\d*",
"type": "string"
},
"latitude": {
"maximum": 90,
"minimum": -90,
"type": "number"
},
"longitude": {
"maximum": 180,
"minimum": -180,
"type": "number"
},
"manager_name": {
"type": "null"
},
"mobile_number": {
"type": "null"
},
"name": {
"type": "string"
},
"opening_hours": {
"items": {
"$ref": "#/definitions/DefaultOpeningHour_562",
"type": "object"
},
"maxItems": 7,
"minItems": 0,
"type": "array"
},
"owner": {
"type": "string"
},
"phone_number": {
"type": "null"
},
"region": {
"type": "string"
},
"timezone": {
"type": "string"
},
"zip_code": {
"pattern": "^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$",
"type": "string"
}
},
"required": [
"activities_names",
"address",
"city",
"country",
"email",
"id",
"latitude",
"longitude",
"manager_name",
"mobile_number",
"name",
"opening_hours",
"owner",
"phone_number",
"timezone",
"zip_code"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"silos"
],
"title": "Silo - DefaultSilo",
"type": "object"
}
{
"silos": [
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nQUAI DU GENERAL SARRAIL",
"city": "NOGENT S SEINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "0",
"latitude": 48.491343,
"longitude": 3.492956,
"manager_name": "Johann ROUSSEAU",
"mobile_number": "06 84 95 26 13",
"name": "SARRAIL NOGENT S SEINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 39 41 11",
"timezone": "Europe/Paris",
"zip_code": "10400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nAVENUE BEAUREGARD",
"city": "NOGENT S SEINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "2",
"latitude": 48.4981,
"longitude": 3.491312,
"manager_name": "Patrick LAURET",
"mobile_number": "00 00 00 00 00",
"name": "GARE NOGENT S SEINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 39 40 25",
"timezone": "Europe/Paris",
"zip_code": "10400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nA L OUEST DES GRANDS CHATELLI",
"city": "PLEURS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "3",
"latitude": 48.682765,
"longitude": 3.875137,
"manager_name": "Pascal SASPORTES",
"mobile_number": "2222",
"name": "PLEURS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 80 12 26",
"timezone": "Europe/Paris",
"zip_code": "51230"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nMAINCLAY\nENTRE LES DEUX CHEMINS",
"city": "BESSAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "4",
"latitude": 46.528677,
"longitude": -1.158175,
"manager_name": "Thierry BARRET",
"mobile_number": "2222",
"name": "BESSAY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 27 50 32",
"timezone": "Europe/Paris",
"zip_code": "85320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n10 RUE COMMANDO M",
"city": "LUYERES",
"country": "FR",
"email": "02Recette_I@soufflet.com",
"id": "5",
"latitude": 48.376974,
"longitude": 4.200256,
"manager_name": "Thierry BARRET",
"mobile_number": "06 08 56 97 00",
"name": "LUYERES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 41 00 58",
"timezone": "Europe/Paris",
"zip_code": "10150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE PRINCIPALE",
"city": "AULNAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "6",
"latitude": 48.470814,
"longitude": 4.394961,
"manager_name": "Xavier MAKOWIAK",
"mobile_number": "00 00 00 00 00",
"name": "AULNAY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 92 46 25",
"timezone": "Europe/Paris",
"zip_code": "10240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n3 RUE CHEMIN AUX PRETRES",
"city": "PONT S SEINE",
"country": "FR",
"email": "02Recette_I@soufflet.com",
"id": "7",
"latitude": 48.513061,
"longitude": 3.602219,
"manager_name": "Thierry BARRET",
"mobile_number": "2222",
"name": "PONT S SEINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 21 40 08",
"timezone": "Europe/Paris",
"zip_code": "10400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE VENDEUVRE S BARSE",
"city": "LONGPRE LE SEC",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "9",
"latitude": 48.192975,
"longitude": 4.514715,
"manager_name": "Thierry BARRET",
"mobile_number": "2222",
"name": "LONGPRE LE SEC",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 41 38 14",
"timezone": "Europe/Paris",
"zip_code": "10140"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE FAUBOURG ST GERVAIS",
"city": "TRAINEL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "10",
"latitude": 48.418333,
"longitude": 3.44725,
"manager_name": "Thierry BARRET",
"mobile_number": "2222",
"name": "TRAINEL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 39 10 03",
"timezone": "Europe/Paris",
"zip_code": "10400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE VILLADIN",
"city": "MARCILLY LE HAYER",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "11",
"latitude": 48.346546,
"longitude": 3.640109,
"manager_name": "Thierry THIBAULT",
"mobile_number": "06 61 38 33 68",
"name": "MARCILLY LE HAYER",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 21 70 99",
"timezone": "Europe/Paris",
"zip_code": "10290"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n12 ROUTE DE LESMONT\nLD AUZON LES MARAIS",
"city": "VAL D AUZON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "12",
"latitude": 48.405714,
"longitude": 4.371619,
"manager_name": "Benjamin SEMENCE",
"mobile_number": "2222",
"name": "AUZON LES MARAIS VAL D AUZON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 46 30 89",
"timezone": "Europe/Paris",
"zip_code": "10220"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCOULON",
"city": "SEMENTRON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "13",
"latitude": 47.636133,
"longitude": 3.358183,
"manager_name": "BENOIT LETTRY",
"mobile_number": "2222",
"name": "SEMENTRON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 44 20 61",
"timezone": "Europe/Paris",
"zip_code": "89560"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE FLEURIGNY",
"city": "THORIGNY S OREUSE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "14",
"latitude": 48.295225,
"longitude": 3.38879,
"manager_name": "Frederic BOULET",
"mobile_number": "2222",
"name": "THORIGNY S OREUSE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 88 45 01",
"timezone": "Europe/Paris",
"zip_code": "89260"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI SUD",
"city": "ARTENAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "15",
"latitude": 48.073628,
"longitude": 1.877975,
"manager_name": "Cyrille FOUGERON",
"mobile_number": "06 17 91 40 96",
"name": "ARTENAY BAS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 80 02 35",
"timezone": "Europe/Paris",
"zip_code": "45410"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nGRANDE RUE\nVIAPRES LE GRAND",
"city": "PLANCY L ABBAYE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "16",
"latitude": 48.566235,
"longitude": 4.010841,
"manager_name": "Sebastien GADOT",
"mobile_number": "2222",
"name": "VIAPRES LE GRAND PLANCY L ABBAYE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 37 70 32",
"timezone": "Europe/Paris",
"zip_code": "10380"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRD 452",
"city": "POLISY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "17",
"latitude": 48.07118,
"longitude": 4.383688,
"manager_name": "Julien ETIENNE",
"mobile_number": "06 75 84 38 08",
"name": "POLISY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 38 51 40",
"timezone": "Europe/Paris",
"zip_code": "10110"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRD 965",
"city": "BRION S OURCE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "18",
"latitude": 47.910536,
"longitude": 4.678907,
"manager_name": "Jacques COLLOT",
"mobile_number": "2222",
"name": "BRION S OURCE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 80 93 76 65",
"timezone": "Europe/Paris",
"zip_code": "21570"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE L ECOLE",
"city": "BOURANTON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "19",
"latitude": 48.30658,
"longitude": 4.182381,
"manager_name": "Freddy VELGHE",
"mobile_number": "2222",
"name": "BOURANTON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 80 90 36",
"timezone": "Europe/Paris",
"zip_code": "10270"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE CHARME RD 34",
"city": "BALNOT LA GRANGE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "20",
"latitude": 48.000581,
"longitude": 4.167876,
"manager_name": "Thomas JOLLOIS",
"mobile_number": "2222",
"name": "BALNOT LA GRANGE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 70 07 33",
"timezone": "Europe/Paris",
"zip_code": "10210"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET1\nVILLEGRUIS",
"city": "LOUAN VILLEGRUIS FONTAINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "21",
"latitude": 48.600016,
"longitude": 3.446293,
"manager_name": "Laurent DELPUECH",
"mobile_number": "00 00 00 00 00",
"name": "VILLEGRUIS LOUAN FONTAINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 00 82 44",
"timezone": "Europe/Paris",
"zip_code": "77560"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nBP 45",
"city": "ARCIS S AUBE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "22",
"latitude": 48.532881,
"longitude": 4.131626,
"manager_name": "Bruno FAURE",
"mobile_number": "2222",
"name": "ARCIS S AUBE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 37 81 06",
"timezone": "Europe/Paris",
"zip_code": "10700"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE DIERREY ST JULIEN",
"city": "MESNIL ST LOUP",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "23",
"latitude": 48.302056,
"longitude": 3.772614,
"manager_name": "Priscillia BOITEUX",
"mobile_number": "2222",
"name": "MESNIL ST LOUP",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 40 43 90",
"timezone": "Europe/Paris",
"zip_code": "10190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE EUROPE",
"city": "VILLENEUVE L ARCHEVEQUE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "24",
"latitude": 48.238539,
"longitude": 3.554014,
"manager_name": "Jean Marc PERARD",
"mobile_number": "06 84 95 26 18",
"name": "VILLENEUVE L ARCHEVEQUE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 86 71 12",
"timezone": "Europe/Paris",
"zip_code": "89190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET1",
"city": "GRANDVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "25",
"latitude": 48.601447,
"longitude": 4.229592,
"manager_name": "Frederic SEURAT",
"mobile_number": "00 00 00 00 00",
"name": "GRANDVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 37 95 08",
"timezone": "Europe/Paris",
"zip_code": "10700"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DU MOULIN",
"city": "DIENVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "26",
"latitude": 48.344721,
"longitude": 4.539331,
"manager_name": "Stéphane HERAUD",
"mobile_number": "06 80 88 98 10",
"name": "DIENVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 92 20 45",
"timezone": "Europe/Paris",
"zip_code": "10500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE LA FERTE GAUCHER",
"city": "MONTOLIVET",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "27",
"latitude": 48.828588,
"longitude": 3.423932,
"manager_name": "Guillaume HUET",
"mobile_number": "2222",
"name": "MONTOLIVET",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 03 79 90",
"timezone": "Europe/Paris",
"zip_code": "77320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRD 32 SECTION",
"city": "VILLEMORIEN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "28",
"latitude": 48.073558,
"longitude": 4.285062,
"manager_name": "Franck PETITET",
"mobile_number": "2222",
"name": "VILLEMORIEN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 29 92 08",
"timezone": "Europe/Paris",
"zip_code": "10110"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n10 RUE DE CONDE\nARTONGES",
"city": "DHUYS ET MORIN EN BRIE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "29",
"latitude": 48.933392,
"longitude": 3.554509,
"manager_name": "Thierry CORNU",
"mobile_number": "2222",
"name": "ARTONGES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 23 82 44 87",
"timezone": "Europe/Paris",
"zip_code": "2330"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n955 ROUTE DE BELLEGARDE",
"city": "BRAY EN VAL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "30",
"latitude": 47.831147,
"longitude": 2.379005,
"manager_name": "Jean Louis RUFFIER",
"mobile_number": "2222",
"name": "BRAY EN VAL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 35 75 71",
"timezone": "Europe/Paris",
"zip_code": "45460"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nTREMBLAY\nROUTE D AVANT LES MARCILLY",
"city": "AVANT LES MARCILLY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "31",
"latitude": 48.434061,
"longitude": 3.567075,
"manager_name": "Guillaume MARGAS",
"mobile_number": "2222",
"name": "AVANT LES MARCILLY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 39 21 74",
"timezone": "Europe/Paris",
"zip_code": "10400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DEPARTEMENTAL 48",
"city": "LONGSOLS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "32",
"latitude": 48.434208,
"longitude": 4.286921,
"manager_name": "Christian TERRYN",
"mobile_number": "2222",
"name": "LONGSOLS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 37 68 67",
"timezone": "Europe/Paris",
"zip_code": "10210"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nAVENUE DES MONTOIRES\nCUIRY",
"city": "GIEN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "33",
"latitude": 47.70647,
"longitude": 2.627211,
"manager_name": "Philippe BOUCHARD",
"mobile_number": "06 23 97 64 27",
"name": "GIEN MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 67 41 32",
"timezone": "Europe/Paris",
"zip_code": "45500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZA LA COUPE DU ROCHER",
"city": "CHAILLE LES MARAIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "34",
"latitude": 46.401787,
"longitude": -1.030446,
"manager_name": "Martin PENISSON",
"mobile_number": "2222",
"name": "CHAILLE LES MARAIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 56 70 00",
"timezone": "Europe/Paris",
"zip_code": "85450"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE PARIS",
"city": "MORMANT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "35",
"latitude": 48.613683,
"longitude": 2.885628,
"manager_name": "Renaud PAULON",
"mobile_number": "06 79 27 78 99",
"name": "MORMANT",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 06 82 18",
"timezone": "Europe/Paris",
"zip_code": "77720"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZA DU BOIS DE L ERABLE\nRUE DU PARC",
"city": "LIMOGES FOURCHES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "36",
"latitude": 48.634076,
"longitude": 2.66291,
"manager_name": "Olivier MOHR",
"mobile_number": "2222",
"name": "LIMOGES FOURCHES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 38 86 90",
"timezone": "Europe/Paris",
"zip_code": "77550"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DEPARTEMENTAL 59\nLES RANGES",
"city": "VILLENAUXE LA PETITE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "37",
"latitude": 48.402661,
"longitude": 3.317622,
"manager_name": "Hervé LEROY",
"mobile_number": "2222",
"name": "VILLENAUXE LA PETITE A",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 01 19 09",
"timezone": "Europe/Paris",
"zip_code": "77480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nAVENUE DE LA VOULZIE",
"city": "POIGNY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "39",
"latitude": 48.547159,
"longitude": 3.285752,
"manager_name": "Alain MAYEUX",
"mobile_number": "2222",
"name": "POIGNY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 60 67 62 62",
"timezone": "Europe/Paris",
"zip_code": "77160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DEPARTEMENTAL 12",
"city": "COURCHAMP",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "40",
"latitude": 48.635651,
"longitude": 3.296982,
"manager_name": "François GOSSELIN",
"mobile_number": "2222",
"name": "COURCHAMP",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 01 07 39",
"timezone": "Europe/Paris",
"zip_code": "77560"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\n28 RUE DE GRASLA",
"city": "CHAUCHE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "41",
"latitude": 46.831299,
"longitude": -1.275116,
"manager_name": "Christophe DRAPPIER",
"mobile_number": "06 23 30 80 39",
"name": "CHAUCHE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 41 84 46",
"timezone": "Europe/Paris",
"zip_code": "85140"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nRUE DU STADE",
"city": "CHAVAGNES LES REDOUX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "42",
"latitude": 46.715292,
"longitude": -0.913468,
"manager_name": "Aubry MANDIN",
"mobile_number": "06 23 30 80 39",
"name": "CHAVAGNES LES REDOUX",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 92 40 36",
"timezone": "Europe/Paris",
"zip_code": "85390"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE ST MAURICE AUX RICHES HOMMES",
"city": "TRANCAULT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "43",
"latitude": 48.365431,
"longitude": 3.530437,
"manager_name": "Yannick TROCELLIER",
"mobile_number": "2222",
"name": "TRANCAULT A",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 21 75 80",
"timezone": "Europe/Paris",
"zip_code": "10290"
},
{
"activities_names": "Station de Semences",
"address": "STATION DE SEMENCES\nROUTE DE PARIS",
"city": "NOGENT S SEINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "44",
"latitude": 48.498101,
"longitude": 3.489508,
"manager_name": "Francois GRENOT",
"mobile_number": "2222",
"name": "STATION SEMENCES NOGENT S SEINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 39 40 24",
"timezone": "Europe/Paris",
"zip_code": "10400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n8 RUE CHAMP BERTIN",
"city": "VILLERY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "45",
"latitude": 48.170126,
"longitude": 4.023813,
"manager_name": "Laurent BONNET",
"mobile_number": "2222",
"name": "VILLERY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 40 29 19",
"timezone": "Europe/Paris",
"zip_code": "10320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE PROVINS",
"city": "PEZARCHES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "46",
"latitude": 48.735201,
"longitude": 2.996694,
"manager_name": "Jean Michel ZEN",
"mobile_number": "2222",
"name": "PEZARCHES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 04 10 63",
"timezone": "Europe/Paris",
"zip_code": "77131"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nZI\nRUE SELLIERS",
"city": "NEUVILLE AUX BOIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "47",
"latitude": 48.068457,
"longitude": 2.063696,
"manager_name": "Jerome PERDEREAU",
"mobile_number": "07 77 30 47 90",
"name": "NEUVILLE AUX BOIS MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 75 52 11",
"timezone": "Europe/Paris",
"zip_code": "45170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nVOIE COULMIER",
"city": "PUITS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "48",
"latitude": 47.734474,
"longitude": 4.470654,
"manager_name": "Olivier GERMAIN",
"mobile_number": "2222",
"name": "PUITS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 80 93 14 37",
"timezone": "Europe/Paris",
"zip_code": "21400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI GUERCHE\nRUE DE L INDUSTRIE",
"city": "LES HERBIERS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "49",
"latitude": 46.860946,
"longitude": -1.004563,
"manager_name": "Aubry MANDIN",
"mobile_number": "2222",
"name": "LES HERBIERS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 67 08 52",
"timezone": "Europe/Paris",
"zip_code": "85500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nGRANDE RUE\nROUTE DE MONTAULIN",
"city": "MONTAULIN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "50",
"latitude": 48.259224,
"longitude": 4.21419,
"manager_name": "Luc CHAINE",
"mobile_number": "2222",
"name": "MONTAULIN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 41 56 47",
"timezone": "Europe/Paris",
"zip_code": "10270"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE NOZAY",
"city": "PREMIERFAIT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "51",
"latitude": 48.498451,
"longitude": 4.034937,
"manager_name": "Vincent DEBROUWER",
"mobile_number": "2222",
"name": "PREMIERFAIT",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 37 71 67",
"timezone": "Europe/Paris",
"zip_code": "10170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nPORT AMONT",
"city": "SOUPPES S LOING",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "52",
"latitude": 48.179883,
"longitude": 2.724772,
"manager_name": "Sebastien DUCASTEL",
"mobile_number": "06 71 78 94 10",
"name": "SOUPPES S LOING",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 29 73 09",
"timezone": "Europe/Paris",
"zip_code": "77460"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI\nRUE EMMANUEL LEGER",
"city": "PATAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "53",
"latitude": 48.046719,
"longitude": 1.701349,
"manager_name": "François COUTADEUR",
"mobile_number": "06 09 68 57 00",
"name": "PATAY BAS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 80 80 96",
"timezone": "Europe/Paris",
"zip_code": "45310"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DES VIGNES GATES",
"city": "LES LUCS S BOULOGNE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "55",
"latitude": 46.845929,
"longitude": -1.493318,
"manager_name": "Christophe DRAPPIER",
"mobile_number": "06 23 30 80 39",
"name": "LES LUCS S BOULOGNE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 47 82 85",
"timezone": "Europe/Paris",
"zip_code": "85170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE CHATEAUNEUF",
"city": "TIGY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "56",
"latitude": 47.806963,
"longitude": 2.20339,
"manager_name": "Martial TURBAN",
"mobile_number": "06 16 23 71 62",
"name": "TIGY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 58 02 30",
"timezone": "Europe/Paris",
"zip_code": "45510"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n8 AVENUE GEORGES CLEMENCEAU",
"city": "MOUTIERS LES MAUXFAITS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "57",
"latitude": 46.493097,
"longitude": -1.424227,
"manager_name": "Romain ROY",
"mobile_number": "06 19 25 83 39",
"name": "MOUTIERS LES MAUXFAITS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 98 94 33",
"timezone": "Europe/Paris",
"zip_code": "85540"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nALLEE HENRI ET MONIQUE BRIDIER",
"city": "LA CHAPELLE ST URSIN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "58",
"latitude": 47.049576,
"longitude": 2.306101,
"manager_name": "Gilles CENDRE",
"mobile_number": "06 14 92 33 15",
"name": "LA CHAPELLE ST URSIN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 48 23 00 48",
"timezone": "Europe/Paris",
"zip_code": "18570"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DEPARTEMENTAL 193",
"city": "COURCELLES S VOIRE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "59",
"latitude": 48.477513,
"longitude": 4.535766,
"manager_name": "Alex DUSSART",
"mobile_number": "2222",
"name": "COURCELLES S VOIRE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 92 13 96",
"timezone": "Europe/Paris",
"zip_code": "10500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n23 RUE DE LA FILATURE",
"city": "AUNAY SS CRECY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "60",
"latitude": 48.672772,
"longitude": 1.306461,
"manager_name": "Ronan PEIGNE",
"mobile_number": "2222",
"name": "AUNAY SS CRECY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 37 82 27 94",
"timezone": "Europe/Paris",
"zip_code": "28500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n4 RUE MARQUIS DE TORCY",
"city": "ST DENIS LA CHEVASSE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "62",
"latitude": 46.825642,
"longitude": -1.360735,
"manager_name": "David THOUZEAU",
"mobile_number": "2222",
"name": "ST DENIS LA CHEVASSE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 41 39 93",
"timezone": "Europe/Paris",
"zip_code": "85170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES ESSAIS LA MOTHE ACHARD\nD978 RUE DE NANTES",
"city": "ST GEORGES DE POINTINDOUX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "63",
"latitude": 46.626265,
"longitude": -1.655914,
"manager_name": "Francis BERNARD",
"mobile_number": "06 25 70 33 25",
"name": "LA MOTHE ACHARD ST GEORGES DE POINTINDOU",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 47 90 04",
"timezone": "Europe/Paris",
"zip_code": "85150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n116 RUE DES PETITES JARRIES\nLA JARIETTE DE BOISSEUIL",
"city": "ST MARD",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "64",
"latitude": 46.096049,
"longitude": -0.671604,
"manager_name": "Eric PHELIPPON",
"mobile_number": "2222",
"name": "ST MARD",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 68 99 62",
"timezone": "Europe/Paris",
"zip_code": "17700"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\n34 RUE DE L EGLISE\nLE BOURG",
"city": "MONTREVERD",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "65",
"latitude": 46.895624,
"longitude": -1.422928,
"manager_name": "Maxime ARNOUX",
"mobile_number": "06 23 30 80 39",
"name": "ST SULPICE LE VERDON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 42 81 63",
"timezone": "Europe/Paris",
"zip_code": "85260"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nBOIS MARIE",
"city": "TALMONT ST HILAIRE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "67",
"latitude": 46.500407,
"longitude": -1.623018,
"manager_name": "Emmanuel GABORIEAU",
"mobile_number": "2222",
"name": "TALMONT ST HILAIRE BOIS MARIE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 90 24 51",
"timezone": "Europe/Paris",
"zip_code": "85440"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nLA BONNE AMIE",
"city": "CURZON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "71",
"latitude": 46.462068,
"longitude": -1.305868,
"manager_name": "Romain ROY",
"mobile_number": "06 03 96 09 06",
"name": "CURZON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 98 93 07",
"timezone": "Europe/Paris",
"zip_code": "85480"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nLA BARBIERE",
"city": "TRIAIZE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "72",
"latitude": 46.356982,
"longitude": -1.193299,
"manager_name": "Romain ROY",
"mobile_number": "06 03 96 09 06",
"name": "TRIAIZE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 98 93 07",
"timezone": "Europe/Paris",
"zip_code": "85580"
},
{
"activities_names": "Silo portuaire fluvial",
"address": "SILO SOUFFLET\n2 RUE DE LA GRANGE AUX DAMES",
"city": "METZ",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "73",
"latitude": 49.142231,
"longitude": 6.192431,
"manager_name": "Serge LECOMTE",
"mobile_number": "2222",
"name": "METZ",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 87 30 29 92",
"timezone": "Europe/Paris",
"zip_code": "57050"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN VERT",
"city": "AUXY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "74",
"latitude": 48.100618,
"longitude": 2.484074,
"manager_name": "Olivier HAUTEFEUILLE",
"mobile_number": "06 30 85 28 75",
"name": "AUXY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 89 84 90",
"timezone": "Europe/Paris",
"zip_code": "45340"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nFERME HERBUES\nD175",
"city": "VERPILLIERES S OURCE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "75",
"latitude": 48.036408,
"longitude": 4.565885,
"manager_name": "Herve PITEL",
"mobile_number": "2222",
"name": "VERPILLIERES S OURCE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 29 71 72",
"timezone": "Europe/Paris",
"zip_code": "10360"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DEPARTEMENTAL 204\nDIRECTION SAUSSOY",
"city": "ST DENIS LES REBAIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "76",
"latitude": 48.866829,
"longitude": 3.206677,
"manager_name": "Christophe CRAPART",
"mobile_number": "06 83 57 28 75",
"name": "ST DENIS LES REBAIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 20 97 56",
"timezone": "Europe/Paris",
"zip_code": "77510"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nLD LA VOVE\nROUTE DE VILLEMORIEN",
"city": "AIX VILLEMAUR PALIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "77",
"latitude": 48.209202,
"longitude": 3.752399,
"manager_name": "Priscillia BOITEUX",
"mobile_number": "06 14 06 16 73",
"name": "LA VOVE AIX EN OTHE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "1111",
"timezone": "Europe/Paris",
"zip_code": "10160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE JOIGNY\nNEUILLY",
"city": "VALRAVILLON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "78",
"latitude": 47.913713,
"longitude": 3.428399,
"manager_name": "Benoit LAVEAU",
"mobile_number": "2222",
"name": "NEUILLY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 73 76 94",
"timezone": "Europe/Paris",
"zip_code": "89113"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n2 ROUTE DES FONTENOTTES",
"city": "LUX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "79",
"latitude": 47.489106,
"longitude": 5.201657,
"manager_name": "Julien CONRAUX",
"mobile_number": "2222",
"name": "LUX",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 80 75 38 92",
"timezone": "Europe/Paris",
"zip_code": "21120"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nAVENUE DU 19 MARS 1962",
"city": "VERGIGNY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "80",
"latitude": 47.9826,
"longitude": 3.734658,
"manager_name": "nc",
"mobile_number": "06 85 04 23 22",
"name": "VERGIGNY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 43 47 50",
"timezone": "Europe/Paris",
"zip_code": "89600"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE ST FIACRE",
"city": "VENIZY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "81",
"latitude": 48.026206,
"longitude": 3.710336,
"manager_name": "Gaetan PAUL",
"mobile_number": "06 85 04 23 22",
"name": "VENIZY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 35 08 27",
"timezone": "Europe/Paris",
"zip_code": "89210"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nROUTE DE MONTACHER",
"city": "ST VALERIEN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "82",
"latitude": 48.175894,
"longitude": 3.071146,
"manager_name": "Nicolas METIER",
"mobile_number": "06 48 74 02 89",
"name": "ST VALERIEN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "89150"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nRUE DE LA GARE",
"city": "LEZINNES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "83",
"latitude": 47.80312,
"longitude": 4.09264,
"manager_name": "Frédéric DE SMIDT",
"mobile_number": "2222",
"name": "LEZINNES MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 75 68 18",
"timezone": "Europe/Paris",
"zip_code": "89160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE LEZINNES",
"city": "PACY S ARMANCON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "84",
"latitude": 47.778385,
"longitude": 4.109715,
"manager_name": "Emmanuel DUPONT",
"mobile_number": "2222",
"name": "PACY S ARMANCON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 75 60 92",
"timezone": "Europe/Paris",
"zip_code": "89160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI LA BAGATELLE\nD144 ALLEE CLEMENT ADER",
"city": "CLAMECY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "85",
"latitude": 47.471002,
"longitude": 3.520377,
"manager_name": "Lionel BONNIN",
"mobile_number": "2222",
"name": "CLAMECY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 27 59 21",
"timezone": "Europe/Paris",
"zip_code": "58500"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nD204 ROUTE DE GIGNY",
"city": "CRUZY LE CHATEL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "86",
"latitude": 47.848645,
"longitude": 4.232284,
"manager_name": "Jean Loup HURBAIN",
"mobile_number": "06 33 17 70 29",
"name": "CRUZY LE CHATEL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 75 24 81",
"timezone": "Europe/Paris",
"zip_code": "89740"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES PERRIERES\nROUTE DE LICHERES PRES AIGREMONT",
"city": "CHABLIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "87",
"latitude": 47.798286,
"longitude": 3.79692,
"manager_name": "Stephane ROLLIN",
"mobile_number": "2222",
"name": "CHABLIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 42 10 34",
"timezone": "Europe/Paris",
"zip_code": "89800"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\n63 GRANDE RUE",
"city": "SONGY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "88",
"latitude": 48.794456,
"longitude": 4.510083,
"manager_name": "Alain BECQ",
"mobile_number": "06 17 92 60 87",
"name": "SONGY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD49 ROUTE DE NITRY\nSACY",
"city": "VERMENTON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "89",
"latitude": 47.672264,
"longitude": 3.833202,
"manager_name": "Jean Loup HURBAIN",
"mobile_number": "06 33 17 70 29",
"name": "SACY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 81 57 50",
"timezone": "Europe/Paris",
"zip_code": "89270"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD12\nDIRECTION VILLIERS LES HAUTS",
"city": "SARRY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "90",
"latitude": 47.671609,
"longitude": 4.07775,
"manager_name": "Valerie LORE",
"mobile_number": "2222",
"name": "SARRY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 82 85 97",
"timezone": "Europe/Paris",
"zip_code": "89310"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLE FIEF DE LA POINTE\nZONE ARTISANALE",
"city": "LANDRAIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "92",
"latitude": 46.073804,
"longitude": -0.872318,
"manager_name": "Vincent FRAPPE",
"mobile_number": "2222",
"name": "LANDRAIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 27 77 93",
"timezone": "Europe/Paris",
"zip_code": "17290"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n32 RTE D ANCHAIS",
"city": "MAILLEZAIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "93",
"latitude": 46.367243,
"longitude": -0.731346,
"manager_name": "Nadine VERGNAUD",
"mobile_number": "2222",
"name": "MAILLEZAIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 00 71 27",
"timezone": "Europe/Paris",
"zip_code": "85420"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLE BOURG\nALLEE DU MARAIS",
"city": "ST GEORGES DE REX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "94",
"latitude": 46.276287,
"longitude": -0.647089,
"manager_name": "Benoit MOREAU",
"mobile_number": "2222",
"name": "ST GEORGES DE REX",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 38 50 35",
"timezone": "Europe/Paris",
"zip_code": "79210"
},
{
"activities_names": "Usine Aliment",
"address": "USINE SOUFFLET\nBOIS MARIE",
"city": "TALMONT ST HILAIRE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "95",
"latitude": 46.500407,
"longitude": -1.623018,
"manager_name": "Emmanuel GABORIEAU",
"mobile_number": "2222",
"name": "TALMONT ST HILAIRE USINE BM",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 90 24 51",
"timezone": "Europe/Paris",
"zip_code": "85440"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n59 RUE LES ROCHES\nLD CHEVIGNY",
"city": "ETAIS LA SAUVIN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "96",
"latitude": 47.509935,
"longitude": 3.304225,
"manager_name": "VINCENT LETTRY",
"mobile_number": "2222",
"name": "ETAIS LA SAUVIN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 47 23 31",
"timezone": "Europe/Paris",
"zip_code": "89480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "PLATEFORME SOUFFLET\nROUTE DE GUIGNONVILLE",
"city": "CHARMONT EN BEAUCE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "97",
"latitude": 48.224293,
"longitude": 2.104927,
"manager_name": "Frederic DARRE",
"mobile_number": "06 88 21 64 30",
"name": "CHARMONT EN BEAUCE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 39 59 61",
"timezone": "Europe/Paris",
"zip_code": "45480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nPLACE DES BARQUES\nBP 24",
"city": "MARANS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "98",
"latitude": 46.312902,
"longitude": -1.00001,
"manager_name": "Jacques BAUDINET",
"mobile_number": "06 07 26 74 64",
"name": "MARANS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 68 58 94",
"timezone": "Europe/Paris",
"zip_code": "17320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 ROUTE DE BENON",
"city": "BOUHET",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "99",
"latitude": 46.174269,
"longitude": -0.846023,
"manager_name": "Frédéric GENDRAUD",
"mobile_number": "2222",
"name": "BOUHET",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 68 20 96",
"timezone": "Europe/Paris",
"zip_code": "17540"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE D AUXERRE",
"city": "CHATEL CENSOIR",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "100",
"latitude": 47.54395,
"longitude": 3.633867,
"manager_name": "Jean-François FEDON",
"mobile_number": "06 08 92 42 76",
"name": "CHATEL CENSOIR",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 81 01 36",
"timezone": "Europe/Paris",
"zip_code": "89660"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLD CHAMPS DE LA BATAILLE\nD71 LA PRISE D EAU",
"city": "GIVRY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "101",
"latitude": 47.52613,
"longitude": 3.79078,
"manager_name": "Clement VIE",
"mobile_number": "2222",
"name": "GIVRY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 33 43 50",
"timezone": "Europe/Paris",
"zip_code": "89200"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nROUTE DE CLAMECY",
"city": "COULANGES S YONNE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "102",
"latitude": 47.52091,
"longitude": 3.540155,
"manager_name": "Joël GIBLIN",
"mobile_number": "2222",
"name": "COULANGES S YONNE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 81 70 94",
"timezone": "Europe/Paris",
"zip_code": "89480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nQUAI DE LA GARE",
"city": "ARZEMBOUY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "103",
"latitude": 47.252573,
"longitude": 3.380571,
"manager_name": "Emmanuel LEMAIRE",
"mobile_number": "06 19 84 36 59",
"name": "ARZEMBOUY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 60 11 21",
"timezone": "Europe/Paris",
"zip_code": "58700"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nROUTE DE TREMEMONT RD26\nST CHERON DES CHAMPS",
"city": "TREMBLAY LES VILLAGES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "104",
"latitude": 48.577409,
"longitude": 1.440508,
"manager_name": "Inès FINET",
"mobile_number": "06 03 68 24 12",
"name": "TREMBLAY LES VILLAGES ST CHERON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "28170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES FOURNEAUX\nD51 DIRECTION TONERRE",
"city": "SERRIGNY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "105",
"latitude": 47.848165,
"longitude": 3.916421,
"manager_name": "Jean Charles MAINGARD",
"mobile_number": "2222",
"name": "SERRIGNY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 54 42 73",
"timezone": "Europe/Paris",
"zip_code": "89700"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE LA MONTAGNE",
"city": "ASCOUX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "106",
"latitude": 48.130063,
"longitude": 2.251828,
"manager_name": "Florian François",
"mobile_number": "2222",
"name": "ASCOUX",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 33 03 30",
"timezone": "Europe/Paris",
"zip_code": "45300"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nRD 108",
"city": "CLAVETTE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "107",
"latitude": 46.145413,
"longitude": -1.045927,
"manager_name": "JAYME-Patrice JULIE",
"mobile_number": "06 70 64 46 24",
"name": "CLAVETTE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "17220"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES GRANDS CHAMPS",
"city": "GEMOZAC",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "108",
"latitude": 45.570102,
"longitude": -0.662892,
"manager_name": "Frédéric ROY",
"mobile_number": "2222",
"name": "GEMOZAC GRANDS CHAMPS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 94 63 87",
"timezone": "Europe/Paris",
"zip_code": "17260"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD723 RUE DE LA GRANDE MARE\nDIRECTION D921",
"city": "PITHIVIERS LE VIEIL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "109",
"latitude": 48.20534,
"longitude": 2.239184,
"manager_name": "Frederic DARRE",
"mobile_number": "06 88 21 64 30",
"name": "BOUZONVILLE EN BEAUCE PITHIVIERS LE VIEI",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 30 02 05",
"timezone": "Europe/Paris",
"zip_code": "45300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE ROYAN",
"city": "COZES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "110",
"latitude": 45.588271,
"longitude": -0.844822,
"manager_name": "Christophe MOREAU",
"mobile_number": "2222",
"name": "COZES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 90 70 33",
"timezone": "Europe/Paris",
"zip_code": "17120"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nPETIT PEU\nRD 14",
"city": "ST SULPICE DE ROYAN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "111",
"latitude": 45.689568,
"longitude": -1.019164,
"manager_name": "Yohan PAPIN",
"mobile_number": "2222",
"name": "ST SULPICE DE ROYAN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 22 13 81",
"timezone": "Europe/Paris",
"zip_code": "17200"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n42 RUE DU GRAND PRE\nLE CHAMP DU CLONE",
"city": "CORME ROYAL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "112",
"latitude": 45.744012,
"longitude": -0.80745,
"manager_name": "Philippe MURAT",
"mobile_number": "2222",
"name": "CORME ROYAL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 94 42 52",
"timezone": "Europe/Paris",
"zip_code": "17600"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCOUR DE LA GARE\nLE VILLAGE",
"city": "SAINVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "113",
"latitude": 48.412495,
"longitude": 1.877796,
"manager_name": "Thierry BOUCHU",
"mobile_number": "06 72 00 36 10",
"name": "SAINVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 37 24 60 36",
"timezone": "Europe/Paris",
"zip_code": "28700"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE CROIX DANDONNEAU",
"city": "MONTILS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "114",
"latitude": 45.653192,
"longitude": -0.505693,
"manager_name": "Teddy DEBAIN",
"mobile_number": "2222",
"name": "MONTILS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 96 42 36",
"timezone": "Europe/Paris",
"zip_code": "17800"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\n4 LIMORLIN",
"city": "BOUGNEAU",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "115",
"latitude": 45.618496,
"longitude": -0.498872,
"manager_name": "Mickael PUJO",
"mobile_number": "2222",
"name": "BOUGNEAU",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 96 16 50",
"timezone": "Europe/Paris",
"zip_code": "17800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n3 ROUTE DES ROCS",
"city": "ST GEORGES DES AGOUTS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "116",
"latitude": 45.359115,
"longitude": -0.662642,
"manager_name": "Arnaud RIPPE",
"mobile_number": "2222",
"name": "ST GEORGES DES AGOUTS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 86 01 22",
"timezone": "Europe/Paris",
"zip_code": "17150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLA COULEE DE L ARSEAU",
"city": "PUYRAVAULT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "117",
"latitude": 46.382468,
"longitude": -1.083071,
"manager_name": "Martin PENISSON",
"mobile_number": "2222",
"name": "PUYRAVAULT",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 28 60 81",
"timezone": "Europe/Paris",
"zip_code": "85450"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n8 ROUTE DE MOQUESOURIS\nPLASSAC",
"city": "EPARGNES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "118",
"latitude": 45.534718,
"longitude": -0.810619,
"manager_name": "Christophe MOREAU",
"mobile_number": "06 07 26 73 91",
"name": "EPARGNES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 90 70 91",
"timezone": "Europe/Paris",
"zip_code": "17120"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\n10 RUE DU 19EME BATAILLON\nDE CHASSEURS A PIED",
"city": "VERDUN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "119",
"latitude": 49.164792,
"longitude": 5.397712,
"manager_name": "Isabelle LECRIQUE",
"mobile_number": "2222",
"name": "VERDUN MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 29 84 53 36",
"timezone": "Europe/Paris",
"zip_code": "55100"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n31 RUE DE L ARQUEBUSE",
"city": "SCEAUX DU GATINAIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "120",
"latitude": 48.107331,
"longitude": 2.602605,
"manager_name": "Gaêtan PIGET",
"mobile_number": "06 71 74 80 83",
"name": "SCEAUX DU GATINAIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 87 42 42",
"timezone": "Europe/Paris",
"zip_code": "45490"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nRUE DE DREVILLE\nDREVILLE",
"city": "SERMAISES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "121",
"latitude": 48.294347,
"longitude": 2.215206,
"manager_name": "Frederic DARRE",
"mobile_number": "2222",
"name": "SERMAISES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 39 76 11",
"timezone": "Europe/Paris",
"zip_code": "45300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE OUANNE",
"city": "MERRY SEC",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "122",
"latitude": 47.660723,
"longitude": 3.488795,
"manager_name": "Ludovic PHILIPPE",
"mobile_number": "2222",
"name": "MERRY SEC",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 41 66 38",
"timezone": "Europe/Paris",
"zip_code": "89560"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 RUE DES VELAIS",
"city": "BENEUVRE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "123",
"latitude": 47.692334,
"longitude": 4.942469,
"manager_name": "Adrien ROUGET",
"mobile_number": "2222",
"name": "BENEUVRE CENTRE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 80 81 00 33",
"timezone": "Europe/Paris",
"zip_code": "21290"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nGARE DE POINSON LES GRANCEY",
"city": "POINSON LES GRANCEY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "124",
"latitude": 47.688317,
"longitude": 4.974198,
"manager_name": "Dylan NOIROT",
"mobile_number": "2222",
"name": "BENEUVRE GARE POINSON LES GRANCEY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 80 81 00 33",
"timezone": "Europe/Paris",
"zip_code": "52160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n7 RUE DE NEUILLY",
"city": "SENS BEAUJEU",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "125",
"latitude": 47.325277,
"longitude": 2.704706,
"manager_name": "nc",
"mobile_number": "2222",
"name": "SENS BEAUJEU",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 48 79 03 14",
"timezone": "Europe/Paris",
"zip_code": "18300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI DE SEPT SORTS\nRUE DE LA MERLETTE",
"city": "SEPT SORTS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "126",
"latitude": 48.948553,
"longitude": 3.10374,
"manager_name": "Thomas BERGER",
"mobile_number": "06 83 57 28 75",
"name": "SEPT SORTS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 60 22 07 86",
"timezone": "Europe/Paris",
"zip_code": "77260"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nZI DE RHOVYL\nRUE DU FILAGE",
"city": "TRONVILLE EN BARROIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "127",
"latitude": 48.718381,
"longitude": 5.281358,
"manager_name": " Fabrice MULLER",
"mobile_number": "2222",
"name": "TRONVILLE EN BARROIS MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 29 78 80 00",
"timezone": "Europe/Paris",
"zip_code": "55310"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n42 RTE DE MARIGNAC",
"city": "CHADENAC",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "128",
"latitude": 45.53697,
"longitude": -0.451697,
"manager_name": "Romain MABILLAT",
"mobile_number": "2222",
"name": "CHADENAC",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 91 20 04",
"timezone": "Europe/Paris",
"zip_code": "17800"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLES BRANDES",
"city": "PONS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "129",
"latitude": 45.541362,
"longitude": -0.56167,
"manager_name": "Manuel GARECHE",
"mobile_number": "2222",
"name": "BELLUIRE PONS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 91 33 04",
"timezone": "Europe/Paris",
"zip_code": "17800"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nCHEZ FOURNEAU BABEUF",
"city": "LACHAISE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "130",
"latitude": 45.521447,
"longitude": -0.229473,
"manager_name": "Laurent JOLIBOIS",
"mobile_number": "2222",
"name": "LACHAISE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 45 78 72 39",
"timezone": "Europe/Paris",
"zip_code": "16300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE MAGNOT\n21 MALABRIE",
"city": "LA TAILLEE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "131",
"latitude": 46.382576,
"longitude": -0.942533,
"manager_name": "Aurelien EGEA",
"mobile_number": "06 86 07 31 18",
"name": "LA TAILLEE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 52 53 39",
"timezone": "Europe/Paris",
"zip_code": "85450"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n581 RUE DES BRANDES\nCHAILLE",
"city": "ST GEORGES DU BOIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "132",
"latitude": 46.126809,
"longitude": -0.71818,
"manager_name": "Jérome NOUZILLE",
"mobile_number": "2222",
"name": "ST GEORGES DU BOIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 27 90 17",
"timezone": "Europe/Paris",
"zip_code": "17700"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES BARRES",
"city": "L HERMENAULT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "133",
"latitude": 46.517531,
"longitude": -0.90397,
"manager_name": "Sebastien FILLONNEAU",
"mobile_number": "06 07 26 75 09",
"name": "L HERMENAULT",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 00 10 02",
"timezone": "Europe/Paris",
"zip_code": "85570"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRD 194\nDIRECTION RD 618",
"city": "VIVIERS S CHIERS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "134",
"latitude": 49.472011,
"longitude": 5.600878,
"manager_name": "Gilles DESLANDES",
"mobile_number": "2222",
"name": "VIVIERS S CHIERS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 82 39 25 80",
"timezone": "Europe/Paris",
"zip_code": "54260"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 RUE CHALAUX GARCHY",
"city": "NUARS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "135",
"latitude": 47.377969,
"longitude": 3.698435,
"manager_name": "Corentin BERLIN",
"mobile_number": "2222",
"name": "NUARS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 24 80 76",
"timezone": "Europe/Paris",
"zip_code": "58190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n4 RUE DU SAFRAN",
"city": "BOYNES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "136",
"latitude": 48.11796,
"longitude": 2.356814,
"manager_name": "Luc JAMOT",
"mobile_number": "06 70 41 31 47",
"name": "BOYNES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 34 56 90",
"timezone": "Europe/Paris",
"zip_code": "45300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE CHALONS",
"city": "MONTMIRAIL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "137",
"latitude": 48.873439,
"longitude": 3.574233,
"manager_name": "Alain RONDEAU",
"mobile_number": "2222",
"name": "MONTMIRAIL B",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 81 61 12",
"timezone": "Europe/Paris",
"zip_code": "51210"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZA COMMERCIALE\nROUTE DEPARTEMENTALE 9",
"city": "LANEUVEVILLE DEVANT BAYON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "138",
"latitude": 48.468786,
"longitude": 6.255743,
"manager_name": "Stéphane FERRY",
"mobile_number": "06 14 33 21 92",
"name": "LANEUVEVILLE DEVANT BAYON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "54740"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nRUE DU VERGERS",
"city": "MARCILLY LA CAMPAGNE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "139",
"latitude": 48.835221,
"longitude": 1.192349,
"manager_name": "Maxime THOMAS",
"mobile_number": "06 12 46 45 88",
"name": "MARCILLY LA CAMPAGNE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "1111",
"timezone": "Europe/Paris",
"zip_code": "27320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE VERTILLY",
"city": "SERGINES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "140",
"latitude": 48.3399,
"longitude": 3.277699,
"manager_name": "Vincent THIERRY",
"mobile_number": "06 86 33 28 16",
"name": "SERGINES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 66 39 80",
"timezone": "Europe/Paris",
"zip_code": "89140"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLD LA COGNARDERIE",
"city": "CHANTECOQ",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "141",
"latitude": 48.035377,
"longitude": 2.962588,
"manager_name": "Florian PAUL",
"mobile_number": "06 71 78 94 10",
"name": "CHANTECOQ",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 87 27 85",
"timezone": "Europe/Paris",
"zip_code": "45320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE LA GARE",
"city": "CHILLEURS AUX BOIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "142",
"latitude": 48.092647,
"longitude": 2.123514,
"manager_name": "Jerome PERDEREAU",
"mobile_number": "06 70 41 22 43",
"name": "CHILLEURS AUX BOIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 39 82 42",
"timezone": "Europe/Paris",
"zip_code": "45170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE PONT CROTTE",
"city": "BOURNEZEAU",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "143",
"latitude": 46.628974,
"longitude": -1.187856,
"manager_name": "Anthony METAIS",
"mobile_number": "06 03 96 09 04",
"name": "BOURNEZEAU",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 40 87 87",
"timezone": "Europe/Paris",
"zip_code": "85480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n7 RUE DE JERICHO",
"city": "FONTENAY LE COMTE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "144",
"latitude": 46.459562,
"longitude": -0.792412,
"manager_name": "Nadine VERGNAUD",
"mobile_number": "2222",
"name": "FONTENAY LE COMTE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 69 20 24",
"timezone": "Europe/Paris",
"zip_code": "85200"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES GRANDES RATONNIERES",
"city": "ST MEDARD D AUNIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "145",
"latitude": 46.136638,
"longitude": -1.009019,
"manager_name": "Gabriel BRECHOIRE",
"mobile_number": "2222",
"name": "ST MEDARD D AUNIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 35 92 51",
"timezone": "Europe/Paris",
"zip_code": "17220"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "PLATEFORME SOUFFLET\nRD60\nDIRECTION DOULEVANT LE CHATEAU",
"city": "NULLY TREMILLY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "146",
"latitude": 48.363984,
"longitude": 4.82773,
"manager_name": "Sébastien DRIAT",
"mobile_number": "2222",
"name": "NULLY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 55 66 97",
"timezone": "Europe/Paris",
"zip_code": "52110"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n4 RUE DU PLESSIS",
"city": "CORBREUSE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "147",
"latitude": 48.494928,
"longitude": 1.962198,
"manager_name": "Philippe ROYNE",
"mobile_number": "06 28 47 04 75",
"name": "CORBREUSE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 59 40 92",
"timezone": "Europe/Paris",
"zip_code": "91410"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n3 RUE GAMBETTA",
"city": "GONDREVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "148",
"latitude": 48.050301,
"longitude": 2.65416,
"manager_name": "Daniel COLLET",
"mobile_number": "06 80 05 65 46",
"name": "GONDREVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 89 87 90",
"timezone": "Europe/Paris",
"zip_code": "45490"
},
{
"activities_names": "Silo portuaire fluvial",
"address": "SILO SOUFFLET\n1 CHEMIN DU PORT",
"city": "GRIGNY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "149",
"latitude": 48.666763,
"longitude": 2.404918,
"manager_name": "Yannick CAILLETEAU",
"mobile_number": "06 76 09 25 28",
"name": "GRIGNY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 69 02 76 00",
"timezone": "Europe/Paris",
"zip_code": "91350"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nCHEMIN DE BRIOTTE D59\nAVANT LE CIMETIERE",
"city": "VILLENAUXE LA PETITE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "150",
"latitude": 48.403065,
"longitude": 3.321639,
"manager_name": "Hervé LEROY",
"mobile_number": "2222",
"name": "VILLENAUXE LA PETITE B",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 60 67 18 35",
"timezone": "Europe/Paris",
"zip_code": "77480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN MESSE",
"city": "HERME",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "151",
"latitude": 48.490881,
"longitude": 3.344926,
"manager_name": "Cyrille DELAVACHERIE",
"mobile_number": "2222",
"name": "HERME",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 00 78 01",
"timezone": "Europe/Paris",
"zip_code": "77114"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 ROUTE BAILLY",
"city": "RIGNY LA NONNEUSE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "152",
"latitude": 48.403367,
"longitude": 3.659315,
"manager_name": "Damien BACHOT",
"mobile_number": "2222",
"name": "RIGNY LA NONNEUSE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 21 63 36",
"timezone": "Europe/Paris",
"zip_code": "10290"
},
{
"activities_names": "Silo portuaire fluvial",
"address": "SILO SOUFFLET\n51 RUE DES ETANGS\nLE VIEUX MOUY",
"city": "MOUY S SEINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "153",
"latitude": 48.425523,
"longitude": 3.227539,
"manager_name": "Eric BOURBONNEUX",
"mobile_number": "2222",
"name": "MOUY S SEINE A",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 01 17 02",
"timezone": "Europe/Paris",
"zip_code": "77480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE SOLIGNY",
"city": "TRANCAULT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "154",
"latitude": 48.385037,
"longitude": 3.52667,
"manager_name": "Yannick TROCELLIER",
"mobile_number": "2222",
"name": "TRANCAULT B",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 21 73 19",
"timezone": "Europe/Paris",
"zip_code": "10290"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE BOIS DU PARC",
"city": "PLESSIS ST BENOIST",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "155",
"latitude": 48.448263,
"longitude": 2.007105,
"manager_name": "Philippe FAUVET",
"mobile_number": "06 76 09 66 76",
"name": "PLESSIS ST BENOIST",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 95 51 45",
"timezone": "Europe/Paris",
"zip_code": "91410"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n10 RUE EMILE CHAPPERON",
"city": "LEVESVILLE LA CHENARD",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "156",
"latitude": 48.303962,
"longitude": 1.823772,
"manager_name": "Alexis DENOUAL",
"mobile_number": "2222",
"name": "LEVESVILLE LA CHENARD",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 37 22 12 16",
"timezone": "Europe/Paris",
"zip_code": "28210"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nMORSANG SUD\nROUTE DEPARTEMENTALE 63 LA MONTAGNE",
"city": "ETAMPES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "158",
"latitude": 48.404583,
"longitude": 2.213756,
"manager_name": "Clément HAUTEFEUILLE",
"mobile_number": "06 71 74 75 83",
"name": "ETAMPES LA MONTAGNE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 94 19 92",
"timezone": "Europe/Paris",
"zip_code": "91150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCOUR DE LA GARE\nLE PETIT ORME",
"city": "PARAY DOUAVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "159",
"latitude": 48.477941,
"longitude": 1.851777,
"manager_name": "Nicolas TRICARD",
"mobile_number": "06 12 46 46 54",
"name": "PARAY DOUAVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 30 88 07 66",
"timezone": "Europe/Paris",
"zip_code": "78660"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN LATERAL\nDEPOT TOTAL",
"city": "PUISEAUX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "160",
"latitude": 48.206284,
"longitude": 2.462572,
"manager_name": "LACONCHE Vincent",
"mobile_number": "06 71 74 66 80",
"name": "PUISEAUX A",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 34 55 70",
"timezone": "Europe/Paris",
"zip_code": "45390"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE NERONDES\nD43 LE BOURG",
"city": "IGNOL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "161",
"latitude": 46.96859,
"longitude": 2.844774,
"manager_name": "Jean Jacques COCU",
"mobile_number": "06 12 17 27 70",
"name": "IGNOL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 48 74 84 50",
"timezone": "Europe/Paris",
"zip_code": "18350"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE REBILLATE\n2 ROUTE DE ST LOUP",
"city": "CHAVANNES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "162",
"latitude": 46.851288,
"longitude": 2.376195,
"manager_name": "Alexandre BRY",
"mobile_number": "06 03 81 63 97",
"name": "CHAVANNES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 48 60 57 30",
"timezone": "Europe/Paris",
"zip_code": "18190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE LA LIBERATION\nLIEU-DIT LA VOIE DE MARIGNY",
"city": "ORVILLIERS ST JULIEN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "163",
"latitude": 48.436435,
"longitude": 3.814018,
"manager_name": "Stéphane DENIZOT",
"mobile_number": "2222",
"name": "ORVILLIERS ST JULIEN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 24 66 51",
"timezone": "Europe/Paris",
"zip_code": "10170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRD 6 LA COMBE",
"city": "PONT LA VILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "164",
"latitude": 48.078308,
"longitude": 4.888503,
"manager_name": "Jean Pierre PRINCET",
"mobile_number": "06 29 87 54 51",
"name": "PONT LA VILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "52120"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n92 RUE DE ST JEAN",
"city": "ST GEORGES DU VIEVRE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "166",
"latitude": 49.239822,
"longitude": 0.582699,
"manager_name": "Gaylord BOUCKAERT",
"mobile_number": "06 75 62 71 07",
"name": "ST GEORGES DU VIEVRE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 32 20 02 58",
"timezone": "Europe/Paris",
"zip_code": "27450"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\n50 RUE DES ETANGS",
"city": "MOUY S SEINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "167",
"latitude": 48.42547,
"longitude": 3.227909,
"manager_name": "André POSTHUMUS",
"mobile_number": "06 33 19 56 47",
"name": "MOUY S SEINE B MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 60 67 10 50",
"timezone": "Europe/Paris",
"zip_code": "77480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZONE ARTISANALE\nD386",
"city": "POILLY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "169",
"latitude": 49.219016,
"longitude": 3.813866,
"manager_name": "Damien NOIZET",
"mobile_number": "06 12 52 73 30",
"name": "POILLY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 61 80 84",
"timezone": "Europe/Paris",
"zip_code": "51170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD106",
"city": "ETON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "170",
"latitude": 49.271094,
"longitude": 5.667438,
"manager_name": " Geoffrey VEBER",
"mobile_number": "06 72 28 86 45",
"name": "ETON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 29 83 73 36",
"timezone": "Europe/Paris",
"zip_code": "55240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE GRANGE L EVEQUE\nROUTE DEPARTEMENTALE 15",
"city": "ST LYE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "171",
"latitude": 48.34484,
"longitude": 3.981378,
"manager_name": "Herve MATRAT",
"mobile_number": "2222",
"name": "ST LYE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 25 41 00 18",
"timezone": "Europe/Paris",
"zip_code": "10180"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nROUTE DE VILLERS LE CHATEAU",
"city": "MATOUGUES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "172",
"latitude": 48.981112,
"longitude": 4.252749,
"manager_name": "Victor ADNET",
"mobile_number": "2222",
"name": "MATOUGUES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "51510"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "STOCKAGE SOUFFLET\n7 PLACE DES TILLEULS",
"city": "OSMOY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "173",
"latitude": 48.869324,
"longitude": 1.71603,
"manager_name": "Paul PETILLON",
"mobile_number": "06 82 81 78 70",
"name": "OSMOY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 34 87 23 57",
"timezone": "Europe/Paris",
"zip_code": "78910"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 CHEMIN MOULANT",
"city": "ST MARDS DE BLACARVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "175",
"latitude": 49.384745,
"longitude": 0.534026,
"manager_name": "Raynald DEUVE",
"mobile_number": "06 61 38 33 67",
"name": "ST MARDS DE BLACARVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 32 42 05 13",
"timezone": "Europe/Paris",
"zip_code": "27500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE POMMEREY\nROUTE DEPARTEMENTALE 94",
"city": "ROUGEMONTIERS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "176",
"latitude": 49.358264,
"longitude": 0.722644,
"manager_name": "Valentin CHERON",
"mobile_number": "06 33 34 78 12",
"name": "ROUGEMONTIERS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 32 20 15 00",
"timezone": "Europe/Paris",
"zip_code": "27350"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nBOIS DE L HOPITAL",
"city": "MESSEME",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "178",
"latitude": 47.010253,
"longitude": 0.14685,
"manager_name": "Romain AUGUIER",
"mobile_number": "2222",
"name": "MESSEME",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 98 04 63",
"timezone": "Europe/Paris",
"zip_code": "86200"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n71 RUE EDMOND HUBERT",
"city": "EGREVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "182",
"latitude": 48.176621,
"longitude": 2.865232,
"manager_name": "Eric QUINAULT",
"mobile_number": "2222",
"name": "EGREVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 29 57 11",
"timezone": "Europe/Paris",
"zip_code": "77620"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE VOULX",
"city": "ESMANS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "183",
"latitude": 48.354487,
"longitude": 2.95762,
"manager_name": "CANAULT Yann",
"mobile_number": "06 86 86 96 69",
"name": "ESMANS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 32 22 04",
"timezone": "Europe/Paris",
"zip_code": "77940"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nCHEMIN DU MOULIN DE PIERRE",
"city": "PITHIVIERS LE VIEIL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "184",
"latitude": 48.16826,
"longitude": 2.223508,
"manager_name": "Yannick ROULLEAU",
"mobile_number": "2222",
"name": "PITHIVIERS LE VIEIL B MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 30 24 29",
"timezone": "Europe/Paris",
"zip_code": "45300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLA VILLEDIEU",
"city": "LAONS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "185",
"latitude": 48.679906,
"longitude": 1.190474,
"manager_name": "Sebastien LESAGE",
"mobile_number": "06 20 77 59 58",
"name": "LAONS VILLEDIEU",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 37 38 18 87",
"timezone": "Europe/Paris",
"zip_code": "28270"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 RUE DE DOURDAIGNE",
"city": "HUISSEAU S MAUVES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "187",
"latitude": 47.888253,
"longitude": 1.716216,
"manager_name": "Julien LAURET",
"mobile_number": "06 17 94 72 37",
"name": "HUISSEAU S MAUVES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 80 59 80",
"timezone": "Europe/Paris",
"zip_code": "45130"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nBONTENY",
"city": "TERNAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "189",
"latitude": 47.036569,
"longitude": -0.036739,
"manager_name": "Bruno RIGAUDEAU",
"mobile_number": "06 08 98 79 79",
"name": "TERNAY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 22 93 77",
"timezone": "Europe/Paris",
"zip_code": "86120"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLA MALTERIE\nD726 ROUTE DE TOURY",
"city": "PITHIVIERS LE VIEIL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "190",
"latitude": 48.170846,
"longitude": 2.234141,
"manager_name": "Marc GROSSIER",
"mobile_number": "06 70 41 29 77",
"name": "PITHIVIERS LE VIEIL A",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 34 06 92",
"timezone": "Europe/Paris",
"zip_code": "45300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n52 ROUTE DE DIJON",
"city": "BRAZEY EN PLAINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "191",
"latitude": 47.139619,
"longitude": 5.214771,
"manager_name": "Jeremy JEANSON",
"mobile_number": "06 86 26 61 04",
"name": "BRAZEY EN PLAINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 80 77 90 87",
"timezone": "Europe/Paris",
"zip_code": "21470"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n2 RUE DE LA BASCULE",
"city": "NEUVILLE DE POITOU",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "192",
"latitude": 46.680705,
"longitude": 0.247807,
"manager_name": "Ludovic BARREAU",
"mobile_number": "2222",
"name": "NEUVILLE DE POITOU",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 51 21 02",
"timezone": "Europe/Paris",
"zip_code": "86170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n59 RUE DE LA GARE",
"city": "VILLIERS ST GEORGES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "193",
"latitude": 48.650315,
"longitude": 3.411608,
"manager_name": "Dominique ROLLET",
"mobile_number": "2222",
"name": "VILLIERS ST GEORGES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 01 90 38",
"timezone": "Europe/Paris",
"zip_code": "77560"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nROUTE DES CROIX",
"city": "BUSSY LE REPOS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "195",
"latitude": 48.056621,
"longitude": 3.239051,
"manager_name": "Guillaume CACHON",
"mobile_number": "2222",
"name": "BUSSY LE REPOS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 83 09 84",
"timezone": "Europe/Paris",
"zip_code": "89500"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nRD98\nDIRECTION D AUGER ST VINCENT",
"city": "ORMOY VILLERS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "196",
"latitude": 49.200492,
"longitude": 2.834963,
"manager_name": "Noelle GOUVEIA",
"mobile_number": "06 08 74 18 33",
"name": "ORMOY VILLERS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "60800"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nROUTE DES AIX D ANGUILLON",
"city": "RIANS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "198",
"latitude": 47.19216,
"longitude": 2.60336,
"manager_name": "François CHATAGNON",
"mobile_number": "06 16 49 15 96",
"name": "RIANS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 48 25 55 64",
"timezone": "Europe/Paris",
"zip_code": "18220"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "STOCKAGE SOUFFLET\nCHEMIN DU MOULIN DU LANQUENEST",
"city": "PRESSIGNY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "199",
"latitude": 47.748667,
"longitude": 5.657034,
"manager_name": "Adrien MAILLOT",
"mobile_number": "2222",
"name": "PRESSIGNY STK",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "52500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "STOCKAGE SOUFFLET\nCHEZ EARL DE SEUCHEY\nHAMEAU FERME DE SEUCHEY",
"city": "SAULLES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "200",
"latitude": 47.688112,
"longitude": 5.525975,
"manager_name": "Vianney FEVRE",
"mobile_number": "2222",
"name": "SAULLES SEUCHEY STK",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "1111",
"timezone": "Europe/Paris",
"zip_code": "52500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n45 RUE DE VAUDRAN\nZONE ARTISANALE",
"city": "DAMPIERRE S SALON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "202",
"latitude": 47.564179,
"longitude": 5.670734,
"manager_name": "Thierry MORLOT",
"mobile_number": "06 70 00 79 19",
"name": "DAMPIERRE S SALON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 84 32 38 05",
"timezone": "Europe/Paris",
"zip_code": "70180"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\n31 ROUTE DE CHITRY",
"city": "ST BRIS LE VINEUX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "203",
"latitude": 47.746778,
"longitude": 3.659625,
"manager_name": "Mathieu MOREAU",
"mobile_number": "2222",
"name": "ST BRIS LE VINEUX MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 53 69 74",
"timezone": "Europe/Paris",
"zip_code": "89530"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nD18E3\nAVENUE DES TILLEULS",
"city": "SOMMESOUS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "204",
"latitude": 48.731425,
"longitude": 4.202157,
"manager_name": "Candice ROYER",
"mobile_number": "2222",
"name": "SOMMESOUS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "51320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLA DAVIERE",
"city": "VENANSAULT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "205",
"latitude": 46.709108,
"longitude": -1.517078,
"manager_name": "Francis BERNARD",
"mobile_number": "06 25 70 33 25",
"name": "VENANSAULT",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "85190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRTE DE COUSSAY",
"city": "CHOUPPES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "207",
"latitude": 46.804019,
"longitude": 0.193073,
"manager_name": "Thomas CHAPILLON",
"mobile_number": "2222",
"name": "CHOUPPES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 50 89 89",
"timezone": "Europe/Paris",
"zip_code": "86110"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRTE DE LA VILLEDIEU",
"city": "NIEUIL L ESPOIR",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "208",
"latitude": 46.483038,
"longitude": 0.437806,
"manager_name": "Pierre-Luc LAMACHERE",
"mobile_number": "2222",
"name": "NIEUIL L ESPOIR",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 42 64 49",
"timezone": "Europe/Paris",
"zip_code": "86340"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLA CHATAIGNERAIE",
"city": "VICQ S GARTEMPE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "209",
"latitude": 46.735402,
"longitude": 0.846262,
"manager_name": "Adrien ROBIN",
"mobile_number": "2222",
"name": "VICQ S GARTEMPE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 23 19 23",
"timezone": "Europe/Paris",
"zip_code": "86260"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\n12 RUE HUILERIE",
"city": "MAILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "210",
"latitude": 46.676855,
"longitude": 0.093568,
"manager_name": "Kevin LANDREAU",
"mobile_number": "2222",
"name": "MAILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 60 17 24",
"timezone": "Europe/Paris",
"zip_code": "86190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLA PINELIERE",
"city": "BENASSAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "211",
"latitude": 46.587804,
"longitude": 0.0592,
"manager_name": "Sylvain CHAMORET",
"mobile_number": "2222",
"name": "LA PINELIERE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 57 52 42",
"timezone": "Europe/Paris",
"zip_code": "86470"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DU CHILLOU",
"city": "BENASSAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "212",
"latitude": 46.516027,
"longitude": 0.049589,
"manager_name": "Maxime ROLLAND",
"mobile_number": "2222",
"name": "LE CHILLOU",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 53 09 09",
"timezone": "Europe/Paris",
"zip_code": "86470"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n13 RUE ST NICOLAS",
"city": "VITRY LA VILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "217",
"latitude": 48.844232,
"longitude": 4.459819,
"manager_name": "Christophe SONGY",
"mobile_number": "2222",
"name": "VITRY LA VILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 67 38 71",
"timezone": "Europe/Paris",
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE FONTAINEBLEAU",
"city": "NANGIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "218",
"latitude": 48.547623,
"longitude": 2.997446,
"manager_name": "Frédéric BOILEAU",
"mobile_number": "2222",
"name": "NANGIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 08 14 45",
"timezone": "Europe/Paris",
"zip_code": "77370"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DU GENERAL DE GAULLE",
"city": "POGNY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "219",
"latitude": 48.863798,
"longitude": 4.474257,
"manager_name": "Baptiste CHAINE",
"mobile_number": "2222",
"name": "POGNY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 67 70 04",
"timezone": "Europe/Paris",
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE LA LIBERATION",
"city": "MARSON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "220",
"latitude": 48.908668,
"longitude": 4.521966,
"manager_name": "Jeremie RAULET",
"mobile_number": "2222",
"name": "MARSON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 67 90 12",
"timezone": "Europe/Paris",
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE MONTSUZON\nFONTAINE COOLE",
"city": "FAUX VESIGNEUL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "221",
"latitude": 48.796343,
"longitude": 4.385317,
"manager_name": "Vincent DOBIAS",
"mobile_number": "2222",
"name": "FAUX VESIGNEUL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 70 60 05",
"timezone": "Europe/Paris",
"zip_code": "51320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD 14\nROUTE DE L ORME NOIX",
"city": "HUIRON",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "222",
"latitude": 48.693232,
"longitude": 4.508219,
"manager_name": "julien BOIVIN",
"mobile_number": "06 80 51 82 73",
"name": "HUIRON",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 74 22 24",
"timezone": "Europe/Paris",
"zip_code": "51300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD1\nRUE ST HILAIRE",
"city": "LE FRESNE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "223",
"latitude": 48.911379,
"longitude": 4.650908,
"manager_name": "Antoine JACQUIER",
"mobile_number": "2222",
"name": "LE FRESNE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 67 90 57",
"timezone": "Europe/Paris",
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE BASSU",
"city": "VANAULT LE CHATEL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "224",
"latitude": 48.85871,
"longitude": 4.721777,
"manager_name": "Raphael BOURGOIN",
"mobile_number": "2222",
"name": "VANAULT LE CHATEL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 73 33 74",
"timezone": "Europe/Paris",
"zip_code": "51330"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE D AULNAY\nD60 LES CHAMPS DORMAT",
"city": "LA CHAUSSEE S MARNE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "225",
"latitude": 48.830123,
"longitude": 4.541977,
"manager_name": "Alain BECK",
"mobile_number": "2222",
"name": "LA CHAUSSEE S MARNE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 72 96 03",
"timezone": "Europe/Paris",
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES CHAMPS DES DAURONS",
"city": "ST PALAIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "226",
"latitude": 47.256921,
"longitude": 2.393924,
"manager_name": "Quentin ARCHAMBAULT",
"mobile_number": "06 79 54 93 28",
"name": "ST PALAIS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 48 23 28 84",
"timezone": "Europe/Paris",
"zip_code": "18110"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nROUTE DE LA DIVE",
"city": "ST MICHEL EN L HERM",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "227",
"latitude": 46.32239,
"longitude": -1.231384,
"manager_name": "Brice CHUSSEAU",
"mobile_number": "06 03 96 09 06",
"name": "ST MICHEL EN L HERM",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 97 60 96",
"timezone": "Europe/Paris",
"zip_code": "85580"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nHAMEAU DE NEZE",
"city": "MEZIERES EN VEXIN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "228",
"latitude": 49.184502,
"longitude": 1.501324,
"manager_name": "Frederic MARC",
"mobile_number": "06 16 23 49 13",
"name": "MEZIERES EN VEXIN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 32 52 35 45",
"timezone": "Europe/Paris",
"zip_code": "27510"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 LE SILO\nLA GRANDE GORCE",
"city": "LE CHAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "229",
"latitude": 45.642416,
"longitude": -0.905971,
"manager_name": "Yohan PAPIN",
"mobile_number": "2222",
"name": "LE CHAY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 02 84 94",
"timezone": "Europe/Paris",
"zip_code": "17600"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLE BOURG",
"city": "BALANZAC",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "230",
"latitude": 45.730856,
"longitude": -0.840172,
"manager_name": "Philippe MURAT",
"mobile_number": "2222",
"name": "BALANZAC",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 94 41 90",
"timezone": "Europe/Paris",
"zip_code": "17600"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nRUE DU GENERAL PATTON",
"city": "CHALONS EN CHAMPAGNE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "231",
"latitude": 48.97402453826139,
"longitude": 4.328613281250001,
"manager_name": "Alain BECK",
"mobile_number": "2222",
"name": "CHALONS EN CHAMPAGNE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 65 43 45",
"timezone": "Europe/Paris",
"zip_code": "51000"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZA LES OUCHES\nROUTE DE HONVILLE",
"city": "BOISVILLE LA ST PERE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "232",
"latitude": 48.332928,
"longitude": 1.692566,
"manager_name": "Reynald HUET",
"mobile_number": "2222",
"name": "BOISVILLE LA ST PERE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 37 99 31 08",
"timezone": "Europe/Paris",
"zip_code": "28150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE SEPMES LA BROSSE\nBP 17",
"city": "STE MAURE DE TOURAINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "233",
"latitude": 47.099675,
"longitude": 0.62138,
"manager_name": "Philippe GARROT",
"mobile_number": "2222",
"name": "STE MAURE DE TOURAINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 47 72 30 00",
"timezone": "Europe/Paris",
"zip_code": "37800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n12 RUE DES MINIMES\nBELLEVUE",
"city": "ST JEAN DE LIVERSAY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "234",
"latitude": 46.271196,
"longitude": -0.882011,
"manager_name": "Philippe PRUGNAUD",
"mobile_number": "2222",
"name": "ST JEAN DE LIVERSAY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 01 99 19",
"timezone": "Europe/Paris",
"zip_code": "17170"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLE VIEUX MAILLE",
"city": "LA RONDE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "235",
"latitude": 46.303695,
"longitude": -0.818023,
"manager_name": "Philippe PRUGNAUD",
"mobile_number": "2222",
"name": "LA RONDE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 46 27 88 11",
"timezone": "Europe/Paris",
"zip_code": "17170"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLA JUSTICE",
"city": "NOYANT DE TOURAINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "236",
"latitude": 47.112202,
"longitude": 0.576305,
"manager_name": "Laurent MERLE",
"mobile_number": "2222",
"name": "NOYANT DE TOURAINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 47 73 50 24",
"timezone": "Europe/Paris",
"zip_code": "37800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DU PUY GAUTHIER",
"city": "STE HERMINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "237",
"latitude": 46.548415,
"longitude": -1.063793,
"manager_name": "Nicolas FERRET",
"mobile_number": "2222",
"name": "STE HERMINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 51 27 36 02",
"timezone": "Europe/Paris",
"zip_code": "85210"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nCHEMIN DES DOCKS",
"city": "CREPY EN VALOIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "238",
"latitude": 49.229971,
"longitude": 2.887541,
"manager_name": "Laurent DUFAY",
"mobile_number": "06 75 62 08 42",
"name": "CREPY EN VALOIS MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 44 39 39 00",
"timezone": "Europe/Paris",
"zip_code": "60800"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\n4 RUE DE LA GARE DES MARCHANDISES",
"city": "PUISEAUX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "239",
"latitude": 48.205613,
"longitude": 2.459338,
"manager_name": "Laurent BRUNEAU",
"mobile_number": "06 45 69 27 95",
"name": "PUISEAUX BINEAU MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 33 60 77",
"timezone": "Europe/Paris",
"zip_code": "45390"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "PLATEFORME SOUFFLET\nLA CASTINIERE\nRD 1 ENTRE GARCHY ET CHAMPCELLEE",
"city": "SUILLY LA TOUR",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "240",
"latitude": 47.311227,
"longitude": 3.081717,
"manager_name": "Matthieu BITAULT",
"mobile_number": "2222",
"name": "SUILLY LA TOUR",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 24 46 17",
"timezone": "Europe/Paris",
"zip_code": "58150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "PLATEFORME SOUFFLET\nROUTE DE BILLANCELLE",
"city": "COURVILLE S EURE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "241",
"latitude": 48.459529,
"longitude": 1.229495,
"manager_name": "Brice DARMIGNY",
"mobile_number": "06 89 36 21 72",
"name": "COURVILLE S EURE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "28190"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLA BILLETTE",
"city": "ST EPAIN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "244",
"latitude": 47.158832,
"longitude": 0.580518,
"manager_name": "Thomas MAUCLERC",
"mobile_number": "2222",
"name": "ST EPAIN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 47 65 81 11",
"timezone": "Europe/Paris",
"zip_code": "37800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n2 CHEMIN ANCIENNE GARE\nZI",
"city": "SAUSSAY LA CAMPAGNE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "246",
"latitude": 49.314063,
"longitude": 1.504643,
"manager_name": "Thierry ARNAL",
"mobile_number": "06 16 23 49 15",
"name": "SAUSSAY LA CAMPAGNE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 32 55 82 31",
"timezone": "Europe/Paris",
"zip_code": "27150"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLA CROIX",
"city": "MANTHELAN",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "247",
"latitude": 47.12916,
"longitude": 0.777623,
"manager_name": "Thomas MAUCLERC",
"mobile_number": "2222",
"name": "MANTHELAN",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 47 92 80 76",
"timezone": "Europe/Paris",
"zip_code": "37240"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLE CORPS DE GARDE",
"city": "LA CELLE ST AVANT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "248",
"latitude": 47.013531,
"longitude": 0.599488,
"manager_name": "Laurent MERLE",
"mobile_number": "07 82 64 70 48",
"name": "LA CELLE ST AVANT",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "37160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI DE ST USTRES",
"city": "INGRANDES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "249",
"latitude": 46.895786,
"longitude": 0.582827,
"manager_name": "Yves VASLET",
"mobile_number": "2222",
"name": "INGRANDES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "05 49 02 73 77",
"timezone": "Europe/Paris",
"zip_code": "86220"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nROUTE DE BOURNAN",
"city": "SEPMES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "250",
"latitude": 47.065559,
"longitude": 0.684517,
"manager_name": "Thomas MAUCLERC",
"mobile_number": "2222",
"name": "SEPMES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 47 65 44 39",
"timezone": "Europe/Paris",
"zip_code": "37800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES PACAGES D ARGENSON\nROUTE DE MAILLE",
"city": "NOUATRE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "251",
"latitude": 47.046659,
"longitude": 0.562711,
"manager_name": "Eric MILCENT",
"mobile_number": "2222",
"name": "NOUATRE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 47 65 30 72",
"timezone": "Europe/Paris",
"zip_code": "37800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "STOCKAGE SOUFFLET\nROUTE CHAPELAINE",
"city": "SOMSOIS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "252",
"latitude": 48.590105,
"longitude": 4.498991,
"manager_name": "Valentin MAUCLAIRE",
"mobile_number": "06 48 74 02 61",
"name": "SOMSOIS TRANSP VAL DE SOUDE STK",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 26 74 22 52",
"timezone": "Europe/Paris",
"zip_code": "51290"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE GRIGNON",
"city": "DESCARTES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "253",
"latitude": 47.003538,
"longitude": 0.644056,
"manager_name": "Hubert COURTINE",
"mobile_number": "2222",
"name": "DESCARTES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 47 92 45 27",
"timezone": "Europe/Paris",
"zip_code": "37160"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLES GIRARDIERES",
"city": "SORIGNY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "254",
"latitude": 47.193257,
"longitude": 0.693894,
"manager_name": "Marion POMMIER",
"mobile_number": "2222",
"name": "SORIGNY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 47 26 96 62",
"timezone": "Europe/Paris",
"zip_code": "37250"
},
{
"activities_names": "Silo portuaire fluvial",
"address": "SILO SOUFFLET\nRUE DE LA SUCRERIE",
"city": "BRAY S SEINE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "255",
"latitude": 48.416259,
"longitude": 3.229937,
"manager_name": "Quentin DABKOWSKI",
"mobile_number": "2222",
"name": "BRAY S SEINE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 60 52 64 15",
"timezone": "Europe/Paris",
"zip_code": "77480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLD LA GARENNE",
"city": "GIVERVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "257",
"latitude": 49.184788,
"longitude": 0.572357,
"manager_name": "Romain REIGNIER",
"mobile_number": "06 28 47 05 52",
"name": "GIVERVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 32 45 93 47",
"timezone": "Europe/Paris",
"zip_code": "27560"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nPLAINE DE MARTAINVILLE",
"city": "LE CORMIER",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "258",
"latitude": 48.990417,
"longitude": 1.298005,
"manager_name": "Arnaud RENOULT",
"mobile_number": "06 73 18 07 27",
"name": "LE CORMIER",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 32 30 79 73",
"timezone": "Europe/Paris",
"zip_code": "27120"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE ST VINCENT DU BOULAY\nRD 138 DIRECTION THIBERVILLE",
"city": "ST MARTIN DU TILLEUL",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "259",
"latitude": 49.109582,
"longitude": 0.512926,
"manager_name": "Ludovic AUDREN",
"mobile_number": "06 48 74 03 17",
"name": "ST MARTIN DU TILLEUL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 32 46 46 52",
"timezone": "Europe/Paris",
"zip_code": "27300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n4 RUE DU DANEMARK",
"city": "CANTELEU",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "260",
"latitude": 49.424363,
"longitude": 1.020228,
"manager_name": "Pascal SOUFFLET",
"mobile_number": "2222",
"name": "DIEPPEDALLE CROISSET CANTELEU",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 35 36 30 50",
"timezone": "Europe/Paris",
"zip_code": "76380"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nZA LA MAINBORGERE\nRUE DE LA MAROTTE",
"city": "CHATEAU GUIBERT",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "261",
"latitude": 46.56704,
"longitude": -1.276601,
"manager_name": "Romain ROY",
"mobile_number": "06 19 25 83 39",
"name": "CHATEAU GUIBERT",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "2222",
"timezone": "Europe/Paris",
"zip_code": "85320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI LES BUTZ",
"city": "MARTAINNEVILLE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "262",
"latitude": 50.011739,
"longitude": 1.718883,
"manager_name": "En recrutement",
"mobile_number": "06 27 09 35 83",
"name": "MARTAINNEVILLE",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 22 24 47 69",
"timezone": "Europe/Paris",
"zip_code": "80140"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRTE DE ST JUST",
"city": "FOUQUEROLLES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "263",
"latitude": 49.459018,
"longitude": 2.217107,
"manager_name": "Florian VALTENAIRE",
"mobile_number": "2222",
"name": "FOUQUEROLLES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 44 10 51 00",
"timezone": "Europe/Paris",
"zip_code": "60510"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 ROUTE DEPARTEMENTALE",
"city": "OROER",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "264",
"latitude": 49.500039,
"longitude": 2.163462,
"manager_name": "Julien LESEUTE",
"mobile_number": "06 12 04 58 18",
"name": "OROER",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 44 79 14 00",
"timezone": "Europe/Paris",
"zip_code": "60510"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI RTE NATIONALE",
"city": "QUEVAUVILLERS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "265",
"latitude": 49.819418,
"longitude": 2.077265,
"manager_name": "Mathieu PIGNON",
"mobile_number": "06 27 09 35 92",
"name": "QUEVAUVILLERS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 22 89 35 28",
"timezone": "Europe/Paris",
"zip_code": "80710"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n7 QUAI DE L APPORT PARIS",
"city": "CORBEIL ESSONNES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "266",
"latitude": 48.615146,
"longitude": 2.479824,
"manager_name": "Eddie LEMERET",
"mobile_number": "2222",
"name": "CORBEIL ESSONNES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 60 90 41 24",
"timezone": "Europe/Paris",
"zip_code": "91100"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DU MOULIN",
"city": "BONNARD",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "268",
"latitude": 47.923015,
"longitude": 3.535764,
"manager_name": "Anthony MICHAUD",
"mobile_number": "06 82 56 55 51",
"name": "BONNARD",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "03 86 73 23 95",
"timezone": "Europe/Paris",
"zip_code": "89400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE MALESHERBES",
"city": "PUISEAUX",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "271",
"latitude": 48.214251,
"longitude": 2.45922,
"manager_name": "Eric JAQUEMONT",
"mobile_number": "06 76 09 03 72",
"name": "PUISEAUX HUREL",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 33 53 27",
"timezone": "Europe/Paris",
"zip_code": "45390"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE D ORMESSON",
"city": "CHATENOY",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "272",
"latitude": 48.232348,
"longitude": 2.634404,
"manager_name": "Sebastien DUCASTEL",
"mobile_number": "06 45 69 62 14",
"name": "CHATENOY",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "01 64 45 51 50",
"timezone": "Europe/Paris",
"zip_code": "77167"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n18 RUE DE LA FORET",
"city": "BINAS",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "274",
"latitude": 47.901638,
"longitude": 1.459371,
"manager_name": "Christophe BLET",
"mobile_number": "06 12 85 36 24",
"name": "BINAS",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 54 82 41 28",
"timezone": "Europe/Paris",
"zip_code": "41240"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nRUE DE L ARTISANAT",
"city": "VIBRAYE",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "276",
"latitude": 48.071105,
"longitude": 0.736479,
"manager_name": "Elise CALLU",
"mobile_number": "06 34 53 01 47",
"name": "VIBRAYE MA",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 36 58 20 82",
"timezone": "Europe/Paris",
"zip_code": "72320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n127 ROUTE DE LA FERTE\nLE RETARD",
"city": "FEROLLES",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "277",
"latitude": 47.829092,
"longitude": 2.09969,
"manager_name": "Dominique ALLARD",
"mobile_number": "2222",
"name": "FEROLLES",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 38 46 80 14",
"timezone": "Europe/Paris",
"zip_code": "45150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE LA CROIX CHAILLAT",
"city": "VICQ EXEMPLET",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "278",
"latitude": 46.627986,
"longitude": 2.1491,
"manager_name": "Philippe DESSOUBRAIS",
"mobile_number": "06 09 90 68 40",
"name": "VICQ EXEMPLET",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "02 54 30 04 80",
"timezone": "Europe/Paris",
"zip_code": "36400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "STOCKAGE SOUFFLET\nCHEZ SCEA DU DOU BRAY",
"city": "DOUVREND",
"country": "FR",
"email": "protection_nomail@soufflet.com",
"id": "291",
"latitude": 49.876646,
"longitude": 1.308474,
"manager_name": "Cyril TOURET",
"mobile_number": "06 13 22 43 00",
"name": "DOUVREND",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "1111",
"timezone": "Europe/Paris",
"zip_code": "76630"
},
{
"activities_names": "Collect",
"address": "Rue\nRue\nRue",
"city": "Brno",
"country": "CZ",
"email": "stephane.utest10@gmail.com",
"id": "317",
"latitude": 49.56797785892715,
"longitude": 17.193603515625004,
"manager_name": "Stephane10",
"mobile_number": "0612345678",
"name": "Test_sco1",
"opening_hours": [],
"owner": "SOUFFLET",
"phone_number": "0112345678",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "123456"
},
{
"activities_names": "Collect",
"address": "rue FR",
"city": "Ville FR",
"country": "CZ",
"email": "testemail@soufflet.com",
"id": "315",
"latitude": 48.8511979,
"longitude": 2.3730469,
"manager_name": "Manager",
"mobile_number": "2222",
"name": "Prostejov test Nico 13-12 FR",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "1111",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "10400"
},
{
"activities_names": "Collect",
"address": "Rue\nRue 2\nRue 3",
"city": "Ville",
"country": "CZ",
"email": "stephane.utest+10@gmail.com",
"id": "328",
"latitude": 49.61070993807422,
"longitude": 18.786621093750004,
"manager_name": "Chef FR",
"mobile_number": "1234",
"name": "Test_sco10_FR",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "5678",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "54555"
},
{
"activities_names": "Input",
"address": "street1 English\nstreet2\nstreet3",
"city": "Prague English",
"country": "CZ",
"email": "05Recette_I",
"id": "304",
"latitude": 50.0755381,
"longitude": 14.43780049999998,
"manager_name": "Chef de silo CZ01 English",
"mobile_number": "2222",
"name": "Silo CZ01 English",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "1111",
"timezone": "Europe/Prague",
"zip_code": "10000"
},
{
"activities_names": "Collect",
"address": "Street",
"city": "Brno",
"country": "CZ",
"email": "02Recette_I@soufflet.com",
"id": "314",
"latitude": 49.30721745093609,
"longitude": 16.649780273437504,
"manager_name": "Standa",
"mobile_number": "2222",
"name": "Silo 1.1.2 (Ouvert, CZ, Non Soufflet)",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "1111",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "10400"
},
{
"activities_names": "Input",
"address": "Novobranská\nNovobranská\nNovobranská",
"city": "Brno",
"country": "CZ",
"email": "stephane.utest+13@gmail.com",
"id": "319",
"latitude": 49.192,
"longitude": 16.6131,
"manager_name": "Karel Goldemund",
"mobile_number": "(+420)098765",
"name": "Test_sco3",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "(+420)098765",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "602 00"
},
{
"activities_names": "Collect",
"address": "U Jaktarské brány\nU Jaktarské brány\nU Jaktarské brány",
"city": "Opava",
"country": "CZ",
"email": "stephane.utest+15@gmail.com",
"id": "321",
"latitude": 49.9394,
"longitude": 17.9007,
"manager_name": "Mr H",
"mobile_number": "234",
"name": "Test_sco5",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "345345",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "746 01"
},
{
"activities_names": "Collect,Input",
"address": "Ceskoslovenské armády\nCeskoslovenské armády\nCeskoslovenské armády",
"city": "Hradec Králové",
"country": "CZ",
"email": "stephane.utest+16@gmail.com",
"id": "322",
"latitude": 50.209,
"longitude": 15.83,
"manager_name": "Mr Z",
"mobile_number": "+(420) 667788",
"name": "Test_sco6",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "Hradec Králové",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "500 00"
},
{
"activities_names": "Collect",
"address": "Street\nStreet\nStreet",
"city": "Town",
"country": "CZ",
"email": "stephane.utest+19@gmail.com",
"id": "325",
"latitude": 50,
"longitude": 16,
"manager_name": "1111",
"mobile_number": "1111",
"name": "SiloTest6627",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "1111",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "200 01"
},
{
"activities_names": "Collect",
"address": "df\ndf\ndf",
"city": "ER",
"country": "CZ",
"email": "stephane.utest+19@gmail.com",
"id": "326",
"latitude": 50.75035931136963,
"longitude": 14.490966796875002,
"manager_name": "Non renseigné",
"mobile_number": "1234",
"name": "Test_sco9",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "5678",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "650 00"
},
{
"activities_names": "Collect",
"address": "Rue\nRue\nRue",
"city": "Town",
"country": "CZ",
"email": "stephane.utest@gmail.com",
"id": "329",
"latitude": 45.82879925192134,
"longitude": 4.768066406250001,
"manager_name": "Chef",
"mobile_number": null,
"name": "TestSansLatLong",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": null,
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "69005"
},
{
"activities_names": "Collect,Input",
"address": "S\ns\ns",
"city": "Vyškov",
"country": "CZ",
"email": "stephane.utest12@gmail.com",
"id": "318",
"latitude": 49.27577,
"longitude": 17.0046,
"manager_name": "utest12",
"mobile_number": "+(420)123456",
"name": "Test_sco2",
"opening_hours": [],
"owner": "test",
"phone_number": "+(420)123456",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "682 01"
},
{
"activities_names": "Collect,Input",
"address": "Ostrava-Mariánské Hory a Hulváky\n14 Premyslovcu\n14 Premyslovcu",
"city": "Ostrava",
"country": "CZ",
"email": "stephane.utest+14@gmail.com",
"id": "320",
"latitude": 49.826779,
"longitude": 18.254,
"manager_name": "Mr T",
"mobile_number": "123",
"name": "Test_sco4",
"opening_hours": [],
"owner": "test",
"phone_number": "456",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "709 00"
},
{
"activities_names": "Collect",
"address": "Delnická\nDelnická\nDelnická",
"city": "Prague",
"country": "CZ",
"email": "stephane.utest+17@gmail.com",
"id": "323",
"latitude": 50.103,
"longitude": 14.4467,
"manager_name": "Mr Y",
"mobile_number": "346346",
"name": "Test_sco7",
"opening_hours": [],
"owner": "test",
"phone_number": "657345",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "100 00"
},
{
"activities_names": "Collect,Input",
"address": "Street\nStreet\nStreet",
"city": "Town",
"country": "CZ",
"email": "stephane.utest+18@gmail.com",
"id": "324",
"latitude": 49.7395,
"longitude": 13.3999,
"manager_name": "Mr S EN",
"mobile_number": "23",
"name": "Test_sco8_en",
"opening_hours": [],
"owner": "test",
"phone_number": "345345",
"region": "Bohême-du-Sud",
"timezone": "Europe/Prague",
"zip_code": "301 00"
},
{
"activities_names": "Collect",
"address": "street english\nstreet 2 english\nstreet 3 english",
"city": "Poznan",
"country": "PL",
"email": "02Recette_I@soufflet.com",
"id": "303",
"latitude": 44.59046718130883,
"longitude": 2.9443359375,
"manager_name": "NicoD englishk",
"mobile_number": "0612345676",
"name": "Place name english",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "0612345676",
"region": "Région 03fr",
"timezone": "Europe/Warsaw",
"zip_code": "10440"
},
{
"activities_names": "Collect,Input",
"address": "S\nS\nS",
"city": "Warsaw",
"country": "PL",
"email": "stephane.utest+20@gmail.com",
"id": "327",
"latitude": 52.237049,
"longitude": 21.017532,
"manager_name": "Warsaw",
"mobile_number": "1",
"name": "Silo Warsaw",
"opening_hours": [],
"owner": "test",
"phone_number": "2",
"region": "Région 03fr",
"timezone": "Europe/Warsaw",
"zip_code": "444-12"
},
{
"activities_names": "Collect",
"address": "Street\nStree 2",
"city": "Odessa",
"country": "UA",
"email": "05Recette_I",
"id": "308",
"latitude": 46.538721,
"longitude": 30.735568,
"manager_name": "Stéphane Colson",
"mobile_number": "2222",
"name": "Silo Ukrain",
"opening_hours": [],
"owner": "Non Soufflet",
"phone_number": "1111",
"region": "Vinnytsa",
"timezone": "Europe/Kiev",
"zip_code": "69005"
},
{
"activities_names": "Collect",
"address": "Street",
"city": "Town",
"country": "UA",
"email": "testSilo@yopmail.com",
"id": "309",
"latitude": 4,
"longitude": 48,
"manager_name": "Chef",
"mobile_number": "012345678",
"name": "Tout sauf PhoneNumber",
"opening_hours": [],
"owner": "test",
"phone_number": "1111",
"region": "Région test",
"timezone": "Europe/Kiev",
"zip_code": "75003"
},
{
"activities_names": "Collect",
"address": "Stree",
"city": "Town",
"country": "UA",
"email": "testsilo@yopmail.com",
"id": "310",
"latitude": 3,
"longitude": 47,
"manager_name": "chef",
"mobile_number": "2222",
"name": "Tout sauf MobileNumber",
"opening_hours": [],
"owner": "test",
"phone_number": "0987654321",
"region": "Région test",
"timezone": "Europe/Kiev",
"zip_code": "75757"
},
{
"activities_names": "Collect",
"address": "Rue",
"city": "Town",
"country": "UA",
"email": "testsilo@yopmail.com",
"id": "311",
"latitude": 5,
"longitude": 44,
"manager_name": "Manager",
"mobile_number": "12345",
"name": "Tout sauf ManagerName",
"opening_hours": [],
"owner": "test",
"phone_number": "54321",
"region": "Région test",
"timezone": "Europe/Kiev",
"zip_code": "12345"
},
{
"activities_names": "Collect",
"address": "Rue",
"city": "Town",
"country": "UA",
"email": "testsilo@yopmail.com",
"id": "312",
"latitude": 11,
"longitude": 55,
"manager_name": "Chef",
"mobile_number": "01223152",
"name": "Tout sauf Latitude et Longitude",
"opening_hours": [],
"owner": "test",
"phone_number": "85327523",
"region": "Région test",
"timezone": "Europe/Kiev",
"zip_code": "68990"
}
]
}
The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:
{
"additionalProperties": false,
"definitions": {
"DefaultOpeningHour_562": {
"additionalProperties": false,
"description": "Automatically generated (please edit me)",
"properties": {
"afternoon_end": {
"anyOf": [
{
"description": "heure en UTC à convertir à partir de la timezone du silo",
"format": "datetime",
"type": "string"
},
{
"type": "null"
}
]
},
"afternoon_start": {
"anyOf": [
{
"description": "heure en UTC à convertir à partir de la timezone du silo",
"format": "datetime",
"type": "string"
},
{
"type": "null"
}
]
},
"date": {
"format": "date",
"type": "string"
},
"morning_end": {
"anyOf": [
{
"description": "heure en UTC à convertir à partir de la timezone du silo",
"format": "datetime",
"type": "string"
},
{
"type": "null"
}
]
},
"morning_start": {
"anyOf": [
{
"description": "heure en UTC à convertir à partir de la timezone du silo",
"format": "datetime",
"type": "string"
},
{
"type": "null"
}
]
},
"opening_periods": {
"description": "Format:\r\n%Y-%m-%dT%H:%M:%S+00:00/%Y-%m-%dT%H:%M:%S+00:00",
"items": {
"type": "string"
},
"maxItems": 2,
"minItems": 0,
"type": "array"
},
"status": {
"description": "1=Ouvert = morningStart; morningEnd; afternoonStart; afternoonEnd\r\n2=Ouvert à la demande = RAS\r\n3=Fermé = RAS\r\n4=Férié = RAS\r\n5=Ouvert sans interruption = morningStart ; afternoonEnd\r\n6=Ouvert seulement la matinée = morningStart ; morningEnd\r\n7=Ouvert seulement l'après-midi = afternoonStart ; afternoonEnd",
"maximum": 4,
"minimum": 1,
"type": "integer"
}
},
"required": [
"afternoon_end",
"afternoon_start",
"date",
"morning_end",
"morning_start",
"opening_periods",
"status"
],
"title": "OpeningHour - DefaultOpeningHour",
"type": "object"
}
},
"description": "Automatically generated (please edit me)",
"properties": {
"silos": {
"items": {
"additionalProperties": false,
"properties": {
"activities_names": {
"type": "string"
},
"address": {
"type": "string"
},
"city": {
"type": "string"
},
"country": {
"type": "string"
},
"email": {
"format": "email",
"type": "string"
},
"id": {
"pattern": "\\d*",
"type": "string"
},
"latitude": {
"maximum": 90,
"minimum": -90,
"type": "number"
},
"longitude": {
"maximum": 180,
"minimum": -180,
"type": "number"
},
"manager_name": {
"type": "null"
},
"mobile_number": {
"type": "null"
},
"name": {
"type": "string"
},
"opening_hours": {
"items": {
"$ref": "#/definitions/DefaultOpeningHour_562",
"type": "object"
},
"maxItems": 7,
"minItems": 0,
"type": "array"
},
"owner": {
"type": "string"
},
"phone_number": {
"type": "null"
},
"region": {
"type": "string"
},
"timezone": {
"type": "string"
},
"zip_code": {
"pattern": "^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$",
"type": "string"
}
},
"required": [
"activities_names",
"address",
"city",
"country",
"email",
"id",
"latitude",
"longitude",
"manager_name",
"mobile_number",
"name",
"opening_hours",
"owner",
"phone_number",
"timezone",
"zip_code"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"silos"
],
"title": "Silo - DefaultSilo",
"type": "object"
}
{
"silos": [
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nQUAI DU GENERAL SARRAIL",
"city": "NOGENT S SEINE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0001",
"latitude": 48.491343,
"longitude": 3.492956,
"manager_name": "Johann ROUSSEAU",
"mobile_number": "06 84 95 26 13",
"name": "SARRAIL NOGENT S SEINE",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 39 41 11",
"timezone": null,
"zip_code": "10400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nAVENUE BEAUREGARD",
"city": "NOGENT S SEINE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0003",
"latitude": 48.4981,
"longitude": 3.491312,
"manager_name": "Patrick LAURET",
"mobile_number": null,
"name": "GARE NOGENT S SEINE",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 39 40 25",
"timezone": null,
"zip_code": "10400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nA L OUEST DES GRANDS CHATELLI",
"city": "PLEURS",
"country": null,
"email": "02Recette_I@soufflet.com",
"id": "0004",
"latitude": 48.682765,
"longitude": 3.875137,
"manager_name": "Pascal SASPORTES",
"mobile_number": null,
"name": "PLEURS",
"opening_hours": [],
"owner": null,
"phone_number": "03 26 80 12 26",
"timezone": null,
"zip_code": "51230"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nMAINCLAY\nENTRE LES DEUX CHEMINS",
"city": "BESSAY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0005",
"latitude": 46.528677,
"longitude": -1.158175,
"manager_name": "Pierre RAINEREAU",
"mobile_number": null,
"name": "BESSAY",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 27 50 32",
"timezone": null,
"zip_code": "85320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n10 RUE COMMANDO M",
"city": "LUYERES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0006",
"latitude": 48.376974,
"longitude": 4.200256,
"manager_name": "Thierry BARRET",
"mobile_number": "06 08 56 97 00",
"name": "LUYERES",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 41 00 58",
"timezone": null,
"zip_code": "10150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE PRINCIPALE",
"city": "AULNAY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0007",
"latitude": 48.470814,
"longitude": 4.394961,
"manager_name": "Xavier MAKOWIAK",
"mobile_number": null,
"name": "AULNAY",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 92 46 25",
"timezone": null,
"zip_code": "10240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE VILLADIN",
"city": "MARCILLY LE HAYER",
"country": null,
"email": "ndobler@soufflet.com",
"id": "0012",
"latitude": 48.346546,
"longitude": 3.640109,
"manager_name": "Thierry THIBAULT",
"mobile_number": null,
"name": "MARCILLY LE HAYER",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 21 70 99",
"timezone": null,
"zip_code": "10290"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n12 ROUTE DE LESMONT\nLD AUZON LES MARAIS",
"city": "VAL D AUZON",
"country": null,
"email": "ndobler@soufflet.com",
"id": "0013",
"latitude": 48.405714,
"longitude": 4.371619,
"manager_name": "Benjamin SEMENCE",
"mobile_number": null,
"name": "AUZON LES MARAIS VAL D AUZON",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 46 30 89",
"timezone": null,
"zip_code": "10220"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCOULON",
"city": "SEMENTRON",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0014",
"latitude": 47.636133,
"longitude": 3.358183,
"manager_name": "Vincent LETTRY",
"mobile_number": null,
"name": "SEMENTRON",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 44 20 61",
"timezone": null,
"zip_code": "89560"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE FLEURIGNY",
"city": "THORIGNY S OREUSE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0015",
"latitude": 48.295225,
"longitude": 3.38879,
"manager_name": "Frederic BOULET",
"mobile_number": null,
"name": "THORIGNY S OREUSE",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 88 45 01",
"timezone": null,
"zip_code": "89260"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI SUD",
"city": "ARTENAY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0016",
"latitude": 48.073628,
"longitude": 1.877975,
"manager_name": "Cyrille FOUGERON",
"mobile_number": "06 17 91 40 96",
"name": "ARTENAY BAS",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 80 02 35",
"timezone": null,
"zip_code": "45410"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nGRANDE RUE\nVIAPRES LE GRAND",
"city": "PLANCY L ABBAYE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0017",
"latitude": 48.566235,
"longitude": 4.010841,
"manager_name": "Sebastien GADOT",
"mobile_number": null,
"name": "VIAPRES LE GRAND PLANCY L ABBAYE",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 37 70 32",
"timezone": null,
"zip_code": "10380"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRD 452",
"city": "POLISY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0018",
"latitude": 48.07118,
"longitude": 4.383688,
"manager_name": "Julien ETIENNE",
"mobile_number": "06 75 84 38 08",
"name": "POLISY",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 38 51 40",
"timezone": null,
"zip_code": "10110"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRD 965",
"city": "BRION S OURCE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0019",
"latitude": 47.910536,
"longitude": 4.678907,
"manager_name": "Jacques COLLOT",
"mobile_number": null,
"name": "BRION S OURCE",
"opening_hours": [],
"owner": null,
"phone_number": "03 80 93 76 65",
"timezone": null,
"zip_code": "21570"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE L ECOLE",
"city": "BOURANTON",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0020",
"latitude": 48.30658,
"longitude": 4.182381,
"manager_name": "Freddy VELGHE",
"mobile_number": null,
"name": "BOURANTON",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 80 90 36",
"timezone": null,
"zip_code": "10270"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE CHARME RD 34",
"city": "BALNOT LA GRANGE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0022",
"latitude": 48.000581,
"longitude": 4.167876,
"manager_name": "Thomas JOLLOIS",
"mobile_number": null,
"name": "BALNOT LA GRANGE",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 70 07 33",
"timezone": null,
"zip_code": "10210"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nVILLEGRUIS",
"city": "LOUAN VILLEGRUIS FONTAINE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0023",
"latitude": 48.600016,
"longitude": 3.446293,
"manager_name": "Laurent DELPUECH",
"mobile_number": null,
"name": "VILLEGRUIS LOUAN FONTAINE",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 00 82 44",
"timezone": null,
"zip_code": "77560"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nBP 45",
"city": "ARCIS S AUBE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0024",
"latitude": 48.532881,
"longitude": 4.131626,
"manager_name": "Bruno FAURE",
"mobile_number": null,
"name": "ARCIS S AUBE",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 37 81 06",
"timezone": null,
"zip_code": "10700"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE DIERREY ST JULIEN",
"city": "MESNIL ST LOUP",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0025",
"latitude": 48.302056,
"longitude": 3.772614,
"manager_name": "Priscillia BOITEUX",
"mobile_number": null,
"name": "MESNIL ST LOUP",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 40 43 90",
"timezone": null,
"zip_code": "10190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE EUROPE",
"city": "VILLENEUVE L ARCHEVEQUE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0026",
"latitude": 48.238539,
"longitude": 3.554014,
"manager_name": "Jean Marc PERARD",
"mobile_number": "06 84 95 26 18",
"name": "VILLENEUVE L ARCHEVEQUE",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 86 71 12",
"timezone": null,
"zip_code": "89190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET",
"city": "GRANDVILLE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0027",
"latitude": 48.601447,
"longitude": 4.229592,
"manager_name": "Frederic SEURAT",
"mobile_number": null,
"name": "GRANDVILLE",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 37 95 08",
"timezone": null,
"zip_code": "10700"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DU MOULIN",
"city": "DIENVILLE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0028",
"latitude": 48.344721,
"longitude": 4.539331,
"manager_name": "Stéphane HERAUD",
"mobile_number": "06 80 88 98 10",
"name": "DIENVILLE",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 92 20 45",
"timezone": null,
"zip_code": "10500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE LA FERTE GAUCHER",
"city": "MONTOLIVET",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0030",
"latitude": 48.828588,
"longitude": 3.423932,
"manager_name": "Guillaume HUET",
"mobile_number": null,
"name": "MONTOLIVET",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 03 79 90",
"timezone": null,
"zip_code": "77320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRD 32 SECTION",
"city": "VILLEMORIEN",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0031",
"latitude": 48.073558,
"longitude": 4.285062,
"manager_name": "Franck PETITET",
"mobile_number": null,
"name": "VILLEMORIEN",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 29 92 08",
"timezone": null,
"zip_code": "10110"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n10 RUE DE CONDE\nARTONGES",
"city": "DHUYS ET MORIN EN BRIE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0032",
"latitude": 48.933392,
"longitude": 3.554509,
"manager_name": "Thierry CORNU",
"mobile_number": null,
"name": "ARTONGES",
"opening_hours": [],
"owner": null,
"phone_number": "03 23 82 44 87",
"timezone": null,
"zip_code": "2330"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n955 ROUTE DE BELLEGARDE",
"city": "BRAY EN VAL",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0033",
"latitude": 47.831147,
"longitude": 2.379005,
"manager_name": "Jean Louis RUFFIER",
"mobile_number": null,
"name": "BRAY EN VAL",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 35 75 71",
"timezone": null,
"zip_code": "45460"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nTREMBLAY\nROUTE D AVANT LES MARCILLY",
"city": "AVANT LES MARCILLY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0034",
"latitude": 48.434061,
"longitude": 3.567075,
"manager_name": "Guillaume MARGAS",
"mobile_number": null,
"name": "AVANT LES MARCILLY",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 39 21 74",
"timezone": null,
"zip_code": "10400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DEPARTEMENTAL 48",
"city": "LONGSOLS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0036",
"latitude": 48.434208,
"longitude": 4.286921,
"manager_name": "Christian TERRYN",
"mobile_number": null,
"name": "LONGSOLS",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 37 68 67",
"timezone": null,
"zip_code": "10210"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nAVENUE DES MONTOIRES\nCUIRY",
"city": "GIEN",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0037",
"latitude": 47.70647,
"longitude": 2.627211,
"manager_name": "Philippe BOUCHARD",
"mobile_number": "06 23 97 64 27",
"name": "GIEN MA",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 67 41 32",
"timezone": null,
"zip_code": "45500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZA LA COUPE DU ROCHER",
"city": "CHAILLE LES MARAIS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0038",
"latitude": 46.401787,
"longitude": -1.030446,
"manager_name": "Martin PENISSON",
"mobile_number": null,
"name": "CHAILLE LES MARAIS",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 56 70 00",
"timezone": null,
"zip_code": "85450"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE PARIS",
"city": "MORMANT",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0039",
"latitude": 48.613683,
"longitude": 2.885628,
"manager_name": "Renaud PAULON",
"mobile_number": "06 79 27 78 99",
"name": "MORMANT",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 06 82 18",
"timezone": null,
"zip_code": "77720"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZA DU BOIS DE L ERABLE\nRUE DU PARC",
"city": "LIMOGES FOURCHES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0040",
"latitude": 48.634076,
"longitude": 2.66291,
"manager_name": "Olivier MOHR",
"mobile_number": null,
"name": "LIMOGES FOURCHES",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 38 86 90",
"timezone": null,
"zip_code": "77550"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DEPARTEMENTAL 59\nLES RANGES",
"city": "VILLENAUXE LA PETITE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0041",
"latitude": 48.402661,
"longitude": 3.317622,
"manager_name": "Hervé LEROY",
"mobile_number": null,
"name": "VILLENAUXE LA PETITE A",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 01 19 09",
"timezone": null,
"zip_code": "77480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nAVENUE DE LA VOULZIE",
"city": "POIGNY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0043",
"latitude": 48.547159,
"longitude": 3.285752,
"manager_name": "Alain MAYEUX",
"mobile_number": null,
"name": "POIGNY",
"opening_hours": [],
"owner": null,
"phone_number": "01 60 67 62 62",
"timezone": null,
"zip_code": "77160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DEPARTEMENTAL 12",
"city": "COURCHAMP",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0044",
"latitude": 48.635651,
"longitude": 3.296982,
"manager_name": "François GOSSELIN",
"mobile_number": null,
"name": "COURCHAMP",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 01 07 39",
"timezone": null,
"zip_code": "77560"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\n28 RUE DE GRASLA",
"city": "CHAUCHE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0045",
"latitude": 46.831299,
"longitude": -1.275116,
"manager_name": "Christophe DRAPPIER",
"mobile_number": "06 23 30 80 39",
"name": "CHAUCHE",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 41 84 46",
"timezone": null,
"zip_code": "85140"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nRUE DU STADE",
"city": "CHAVAGNES LES REDOUX",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0046",
"latitude": 46.715292,
"longitude": -0.913468,
"manager_name": "Aubry MANDIN",
"mobile_number": "06 23 30 80 39",
"name": "CHAVAGNES LES REDOUX",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 92 40 36",
"timezone": null,
"zip_code": "85390"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE ST MAURICE AUX RICHES HOMMES",
"city": "TRANCAULT",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0047",
"latitude": 48.365431,
"longitude": 3.530437,
"manager_name": "Yannick TROCELLIER",
"mobile_number": null,
"name": "TRANCAULT A",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 21 75 80",
"timezone": null,
"zip_code": "10290"
},
{
"activities_names": "Station de Semences",
"address": "STATION DE SEMENCES\nROUTE DE PARIS",
"city": "NOGENT S SEINE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0048",
"latitude": 48.498101,
"longitude": 3.489508,
"manager_name": "Francois GRENOT",
"mobile_number": null,
"name": "STATION SEMENCES NOGENT S SEINE",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 39 40 24",
"timezone": null,
"zip_code": "10400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n8 RUE CHAMP BERTIN",
"city": "VILLERY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0049",
"latitude": 48.170126,
"longitude": 4.023813,
"manager_name": "Laurent BONNET",
"mobile_number": null,
"name": "VILLERY",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 40 29 19",
"timezone": null,
"zip_code": "10320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE PROVINS",
"city": "PEZARCHES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0055",
"latitude": 48.735201,
"longitude": 2.996694,
"manager_name": "Jean Michel ZEN",
"mobile_number": null,
"name": "PEZARCHES",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 04 10 63",
"timezone": null,
"zip_code": "77131"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nZI\nRUE SELLIERS",
"city": "NEUVILLE AUX BOIS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0056",
"latitude": 48.068457,
"longitude": 2.063696,
"manager_name": "Jerome PERDEREAU",
"mobile_number": "07 77 30 47 90",
"name": "NEUVILLE AUX BOIS MA",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 75 52 11",
"timezone": null,
"zip_code": "45170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nVOIE COULMIER",
"city": "PUITS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0063",
"latitude": 47.734474,
"longitude": 4.470654,
"manager_name": "Olivier GERMAIN",
"mobile_number": null,
"name": "PUITS",
"opening_hours": [],
"owner": null,
"phone_number": "03 80 93 14 37",
"timezone": null,
"zip_code": "21400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI GUERCHE\nRUE DE L INDUSTRIE",
"city": "LES HERBIERS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0068",
"latitude": 46.860946,
"longitude": -1.004563,
"manager_name": "Aubry MANDIN",
"mobile_number": null,
"name": "LES HERBIERS",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 67 08 52",
"timezone": null,
"zip_code": "85500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nGRANDE RUE\nROUTE DE MONTAULIN",
"city": "MONTAULIN",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0076",
"latitude": 48.259224,
"longitude": 4.21419,
"manager_name": "Luc CHAINE",
"mobile_number": null,
"name": "MONTAULIN",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 41 56 47",
"timezone": null,
"zip_code": "10270"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE NOZAY",
"city": "PREMIERFAIT",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0077",
"latitude": 48.498451,
"longitude": 4.034937,
"manager_name": "Vincent DEBROUWER",
"mobile_number": null,
"name": "PREMIERFAIT",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 37 71 67",
"timezone": null,
"zip_code": "10170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nPORT AMONT",
"city": "SOUPPES S LOING",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0078",
"latitude": 48.179883,
"longitude": 2.724772,
"manager_name": "Sebastien DUCASTEL",
"mobile_number": "06 71 78 94 10",
"name": "SOUPPES S LOING",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 29 73 09",
"timezone": null,
"zip_code": "77460"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI\nRUE EMMANUEL LEGER",
"city": "PATAY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0080",
"latitude": 48.035717,
"longitude": 1.709216,
"manager_name": "François COUTADEUR",
"mobile_number": "06 09 68 57 00",
"name": "PATAY BAS",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 80 80 96",
"timezone": null,
"zip_code": "45310"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DES VIGNES GATES",
"city": "LES LUCS S BOULOGNE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0088",
"latitude": 46.845929,
"longitude": -1.493318,
"manager_name": "Christophe DRAPPIER",
"mobile_number": "06 23 30 80 39",
"name": "LES LUCS S BOULOGNE",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 47 82 85",
"timezone": null,
"zip_code": "85170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE CHATEAUNEUF",
"city": "TIGY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0090",
"latitude": 47.806963,
"longitude": 2.20339,
"manager_name": "Martial TURBAN",
"mobile_number": "06 16 23 71 62",
"name": "TIGY",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 58 02 30",
"timezone": null,
"zip_code": "45510"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n8 AVENUE GEORGES CLEMENCEAU",
"city": "MOUTIERS LES MAUXFAITS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0091",
"latitude": 46.493097,
"longitude": -1.424227,
"manager_name": "Romain ROY",
"mobile_number": "06 19 25 83 39",
"name": "MOUTIERS LES MAUXFAITS",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 98 94 33",
"timezone": null,
"zip_code": "85540"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nALLEE HENRI ET MONIQUE BRIDIER",
"city": "LA CHAPELLE ST URSIN",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0093",
"latitude": 47.049576,
"longitude": 2.306101,
"manager_name": "Gilles CENDRE",
"mobile_number": "06 14 92 33 15",
"name": "LA CHAPELLE ST URSIN",
"opening_hours": [],
"owner": null,
"phone_number": "02 48 23 00 48",
"timezone": null,
"zip_code": "18570"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DEPARTEMENTAL 193",
"city": "COURCELLES S VOIRE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0094",
"latitude": 48.477513,
"longitude": 4.535766,
"manager_name": "Alex DUSSART",
"mobile_number": null,
"name": "COURCELLES S VOIRE",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 92 13 96",
"timezone": null,
"zip_code": "10500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n23 RUE DE LA FILATURE",
"city": "AUNAY SS CRECY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0095",
"latitude": 48.672772,
"longitude": 1.306461,
"manager_name": "Ronan PEIGNE",
"mobile_number": null,
"name": "AUNAY SS CRECY",
"opening_hours": [],
"owner": null,
"phone_number": "02 37 82 27 94",
"timezone": null,
"zip_code": "28500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n4 RUE MARQUIS DE TORCY",
"city": "ST DENIS LA CHEVASSE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0112",
"latitude": 46.825642,
"longitude": -1.360735,
"manager_name": "David THOUZEAU",
"mobile_number": null,
"name": "ST DENIS LA CHEVASSE",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 41 39 93",
"timezone": null,
"zip_code": "85170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES ESSAIS LA MOTHE ACHARD\nD978 RUE DE NANTES",
"city": "ST GEORGES DE POINTINDOUX",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0114",
"latitude": 46.626265,
"longitude": -1.655914,
"manager_name": "Francis BERNARD",
"mobile_number": "06 25 70 33 25",
"name": "LA MOTHE ACHARD ST GEORGES DE POINTINDOU",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 47 90 04",
"timezone": null,
"zip_code": "85150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n116 RUE DES PETITES JARRIES\nLA JARIETTE DE BOISSEUIL",
"city": "ST MARD",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0119",
"latitude": 46.096049,
"longitude": -0.671604,
"manager_name": "Eric PHELIPPON",
"mobile_number": null,
"name": "ST MARD",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 68 99 62",
"timezone": null,
"zip_code": "17700"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\n34 RUE DE L EGLISE\nLE BOURG",
"city": "MONTREVERD",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0126",
"latitude": 46.895624,
"longitude": -1.422928,
"manager_name": "Maxime ARNOUX",
"mobile_number": "06 23 30 80 39",
"name": "ST SULPICE LE VERDON",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 42 81 63",
"timezone": null,
"zip_code": "85260"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nBOIS MARIE",
"city": "TALMONT ST HILAIRE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0128",
"latitude": 46.500407,
"longitude": -1.623018,
"manager_name": "Emmanuel GABORIEAU",
"mobile_number": null,
"name": "TALMONT ST HILAIRE BOIS MARIE",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 90 24 51",
"timezone": null,
"zip_code": "85440"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nLA BONNE AMIE",
"city": "CURZON",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0132",
"latitude": 46.462068,
"longitude": -1.305868,
"manager_name": "Romain ROY",
"mobile_number": "06 03 96 09 06",
"name": "CURZON",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 98 93 07",
"timezone": null,
"zip_code": "85480"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nLA BARBIERE",
"city": "TRIAIZE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0133",
"latitude": 46.356982,
"longitude": -1.193299,
"manager_name": "Romain ROY",
"mobile_number": "06 03 96 09 06",
"name": "TRIAIZE",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 98 93 07",
"timezone": null,
"zip_code": "85580"
},
{
"activities_names": "Silo portuaire fluvial",
"address": "SILO SOUFFLET\n2 RUE DE LA GRANGE AUX DAMES",
"city": "METZ",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0140",
"latitude": 49.142231,
"longitude": 6.192431,
"manager_name": "Serge LECOMTE",
"mobile_number": null,
"name": "METZ",
"opening_hours": [],
"owner": null,
"phone_number": "03 87 30 29 92",
"timezone": null,
"zip_code": "57050"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN VERT",
"city": "AUXY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0148",
"latitude": 48.100618,
"longitude": 2.484074,
"manager_name": "Olivier HAUTEFEUILLE",
"mobile_number": "06 30 85 28 75",
"name": "AUXY",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 89 84 90",
"timezone": null,
"zip_code": "45340"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nFERME HERBUES\nD175",
"city": "VERPILLIERES S OURCE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0152",
"latitude": 48.036408,
"longitude": 4.565885,
"manager_name": "Herve PITEL",
"mobile_number": null,
"name": "VERPILLIERES S OURCE",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 29 71 72",
"timezone": null,
"zip_code": "10360"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DEPARTEMENTAL 204\nDIRECTION SAUSSOY",
"city": "ST DENIS LES REBAIS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0154",
"latitude": 48.866829,
"longitude": 3.206677,
"manager_name": "Christophe CRAPART",
"mobile_number": null,
"name": "ST DENIS LES REBAIS",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 20 97 56",
"timezone": null,
"zip_code": "77510"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nLD LA VOVE\nROUTE DE VILLEMORIEN",
"city": "AIX VILLEMAUR PALIS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0155",
"latitude": 48.209202,
"longitude": 3.752399,
"manager_name": "Priscillia BOITEUX",
"mobile_number": "06 14 06 16 73",
"name": "LA VOVE AIX EN OTHE",
"opening_hours": [],
"owner": null,
"phone_number": null,
"timezone": null,
"zip_code": "10160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE JOIGNY\nNEUILLY",
"city": "VALRAVILLON",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0157",
"latitude": 47.913713,
"longitude": 3.428399,
"manager_name": "Baptiste BERRY",
"mobile_number": null,
"name": "NEUILLY",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 73 76 94",
"timezone": null,
"zip_code": "89113"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n2 ROUTE DES FONTENOTTES",
"city": "LUX",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0158",
"latitude": 47.489106,
"longitude": 5.201657,
"manager_name": "Julien CONRAUX",
"mobile_number": null,
"name": "LUX",
"opening_hours": [],
"owner": null,
"phone_number": "03 80 75 38 92",
"timezone": null,
"zip_code": "21120"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nAVENUE DU 19 MARS 1962",
"city": "VERGIGNY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0165",
"latitude": 47.9826,
"longitude": 3.734658,
"manager_name": "Benoit LAVEAU",
"mobile_number": null,
"name": "VERGIGNY",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 43 47 50",
"timezone": null,
"zip_code": "89600"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE ST FIACRE",
"city": "VENIZY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0166",
"latitude": 48.026206,
"longitude": 3.710336,
"manager_name": "Gaetan PAUL",
"mobile_number": null,
"name": "VENIZY",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 35 08 27",
"timezone": null,
"zip_code": "89210"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nROUTE DE MONTACHER",
"city": "ST VALERIEN",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0168",
"latitude": 48.175894,
"longitude": 3.071146,
"manager_name": "Nicolas METIER",
"mobile_number": "06 48 74 02 89",
"name": "ST VALERIEN",
"opening_hours": [],
"owner": null,
"phone_number": null,
"timezone": null,
"zip_code": "89150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE LEZINNES",
"city": "PACY S ARMANCON",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0170",
"latitude": 47.778385,
"longitude": 4.109715,
"manager_name": "Xavier RICHEZ",
"mobile_number": null,
"name": "PACY S ARMANCON",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 75 60 92",
"timezone": null,
"zip_code": "89160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI LA BAGATELLE\nD144 ALLEE CLEMENT ADER",
"city": "CLAMECY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0171",
"latitude": 47.471002,
"longitude": 3.520377,
"manager_name": "Lionel BONNIN",
"mobile_number": null,
"name": "CLAMECY",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 27 17 52",
"timezone": null,
"zip_code": "58500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD204 ROUTE DE GIGNY",
"city": "CRUZY LE CHATEL",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0172",
"latitude": 47.848645,
"longitude": 4.232284,
"manager_name": "Thomas BLANDIN",
"mobile_number": "06 33 17 70 29",
"name": "CRUZY LE CHATEL",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 75 24 81",
"timezone": null,
"zip_code": "89740"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES PERRIERES\nROUTE DE LICHERES PRES AIGREMONT",
"city": "CHABLIS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0173",
"latitude": 47.798286,
"longitude": 3.79692,
"manager_name": "Stephane ROLLIN",
"mobile_number": null,
"name": "CHABLIS",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 42 10 34",
"timezone": null,
"zip_code": "89800"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\n63 GRANDE RUE",
"city": "SONGY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0175",
"latitude": 48.794456,
"longitude": 4.510083,
"manager_name": "Alain BECQ",
"mobile_number": "06 17 92 60 87",
"name": "SONGY",
"opening_hours": [],
"owner": null,
"phone_number": null,
"timezone": null,
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD49 ROUTE DE NITRY\nSACY",
"city": "VERMENTON",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0176",
"latitude": 47.672264,
"longitude": 3.833202,
"manager_name": "Jean-Philippe REQUET",
"mobile_number": null,
"name": "SACY",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 81 57 50",
"timezone": null,
"zip_code": "89270"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD12\nDIRECTION VILLIERS LES HAUTS",
"city": "SARRY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0177",
"latitude": 47.671609,
"longitude": 4.07775,
"manager_name": "Valerie LORE",
"mobile_number": null,
"name": "SARRY",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 82 85 97",
"timezone": null,
"zip_code": "89310"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLE FIEF DE LA POINTE\nZONE ARTISANALE",
"city": "LANDRAIS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0180",
"latitude": 46.073804,
"longitude": -0.872318,
"manager_name": "Vincent FRAPPE",
"mobile_number": null,
"name": "LANDRAIS",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 27 77 93",
"timezone": null,
"zip_code": "17290"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n32 RTE D ANCHAIS",
"city": "MAILLEZAIS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0181",
"latitude": 46.367243,
"longitude": -0.731346,
"manager_name": "Nadine VERGNAUD",
"mobile_number": null,
"name": "MAILLEZAIS",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 00 71 27",
"timezone": null,
"zip_code": "85420"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLE BOURG\nALLEE DU MARAIS",
"city": "ST GEORGES DE REX",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0182",
"latitude": 46.276287,
"longitude": -0.647089,
"manager_name": "Benoit MOREAU",
"mobile_number": null,
"name": "ST GEORGES DE REX",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 38 50 35",
"timezone": null,
"zip_code": "79210"
},
{
"activities_names": "Usine Aliment",
"address": "USINE SOUFFLET\nBOIS MARIE",
"city": "TALMONT ST HILAIRE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0184",
"latitude": 46.500407,
"longitude": -1.623018,
"manager_name": "Emmanuel GABORIEAU",
"mobile_number": null,
"name": "TALMONT ST HILAIRE USINE BM",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 90 24 51",
"timezone": null,
"zip_code": "85440"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n59 RUE LES ROCHES\nLD CHEVIGNY",
"city": "ETAIS LA SAUVIN",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0185",
"latitude": 47.509935,
"longitude": 3.304225,
"manager_name": "Dominique Robert BERNARD",
"mobile_number": null,
"name": "ETAIS LA SAUVIN",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 47 23 10",
"timezone": null,
"zip_code": "89480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "PLATEFORME SOUFFLET\nROUTE DE GUIGNONVILLE",
"city": "CHARMONT EN BEAUCE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0186",
"latitude": 48.224293,
"longitude": 2.104927,
"manager_name": "Frederic DARRE",
"mobile_number": "06 88 21 64 30",
"name": "CHARMONT EN BEAUCE",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 39 59 61",
"timezone": null,
"zip_code": "45480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nPLACE DES BARQUES\nBP 24",
"city": "MARANS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0187",
"latitude": 46.312902,
"longitude": -1.00001,
"manager_name": "Jacques BAUDINET",
"mobile_number": "06 07 26 74 64",
"name": "MARANS",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 68 58 94",
"timezone": null,
"zip_code": "17320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 ROUTE DE BENON",
"city": "BOUHET",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0189",
"latitude": 46.174269,
"longitude": -0.846023,
"manager_name": "Frédéric GENDRAUD",
"mobile_number": null,
"name": "BOUHET",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 68 20 96",
"timezone": null,
"zip_code": "17540"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE D AUXERRE",
"city": "CHATEL CENSOIR",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0190",
"latitude": 47.54395,
"longitude": 3.633867,
"manager_name": "Jean-François FEDON",
"mobile_number": null,
"name": "CHATEL CENSOIR",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 81 01 36",
"timezone": null,
"zip_code": "89660"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLD CHAMPS DE LA BATAILLE\nD71 LA PRISE D EAU",
"city": "GIVRY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0191",
"latitude": 47.52613,
"longitude": 3.79078,
"manager_name": "Clement VIE",
"mobile_number": null,
"name": "GIVRY",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 33 43 50",
"timezone": null,
"zip_code": "89200"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE CLAMECY",
"city": "COULANGES S YONNE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0192",
"latitude": 47.52091,
"longitude": 3.540155,
"manager_name": "Joel GIBLIN",
"mobile_number": null,
"name": "COULANGES S YONNE",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 81 70 94",
"timezone": null,
"zip_code": "89480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nQUAI DE LA GARE",
"city": "ARZEMBOUY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0193",
"latitude": 47.252573,
"longitude": 3.380571,
"manager_name": "Emmanuel LEMAIRE",
"mobile_number": null,
"name": "ARZEMBOUY",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 60 11 21",
"timezone": null,
"zip_code": "58700"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nROUTE DE TREMEMONT RD26\nST CHERON DES CHAMPS",
"city": "TREMBLAY LES VILLAGES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0194",
"latitude": 48.577409,
"longitude": 1.440508,
"manager_name": "Inès FINET",
"mobile_number": "06 03 68 24 12",
"name": "TREMBLAY LES VILLAGES ST CHERON",
"opening_hours": [],
"owner": null,
"phone_number": null,
"timezone": null,
"zip_code": "28170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES FOURNEAUX\nD51 DIRECTION TONERRE",
"city": "SERRIGNY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0195",
"latitude": 47.848165,
"longitude": 3.916421,
"manager_name": "Jean Charles MAINGARD",
"mobile_number": null,
"name": "SERRIGNY",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 54 42 73",
"timezone": null,
"zip_code": "89700"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE LA MONTAGNE",
"city": "ASCOUX",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0196",
"latitude": 48.130063,
"longitude": 2.251828,
"manager_name": "Florian François",
"mobile_number": null,
"name": "ASCOUX",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 33 03 30",
"timezone": null,
"zip_code": "45300"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nRD 108",
"city": "CLAVETTE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0198",
"latitude": 46.136614,
"longitude": -1.00905,
"manager_name": "JAYME-Patrice JULIE",
"mobile_number": "06 70 64 46 24",
"name": "CLAVETTE",
"opening_hours": [],
"owner": null,
"phone_number": null,
"timezone": null,
"zip_code": "17220"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES GRANDS CHAMPS",
"city": "GEMOZAC",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0212",
"latitude": 45.570102,
"longitude": -0.662892,
"manager_name": "Frédéric ROY",
"mobile_number": null,
"name": "GEMOZAC GRANDS CHAMPS",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 94 63 87",
"timezone": null,
"zip_code": "17260"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD723 RUE DE LA GRANDE MARE\nDIRECTION D921",
"city": "PITHIVIERS LE VIEIL",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0213",
"latitude": 48.20534,
"longitude": 2.239184,
"manager_name": "Frederic DARRE",
"mobile_number": "06 88 21 64 30",
"name": "BOUZONVILLE EN BEAUCE PITHIVIERS LE VIEI",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 30 02 05",
"timezone": null,
"zip_code": "45300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE ROYAN",
"city": "COZES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0214",
"latitude": 45.588271,
"longitude": -0.844822,
"manager_name": "Christophe MOREAU",
"mobile_number": null,
"name": "COZES",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 90 70 33",
"timezone": null,
"zip_code": "17120"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n42 RUE DU GRAND PRE\nLE CHAMP DU CLONE",
"city": "CORME ROYAL",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0216",
"latitude": 45.744012,
"longitude": -0.80745,
"manager_name": "Philippe MURAT",
"mobile_number": null,
"name": "CORME ROYAL",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 94 42 52",
"timezone": null,
"zip_code": "17600"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCOUR DE LA GARE\nLE VILLAGE",
"city": "SAINVILLE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0217",
"latitude": 48.412495,
"longitude": 1.877796,
"manager_name": "Thierry BOUCHU",
"mobile_number": "06 72 00 36 10",
"name": "SAINVILLE",
"opening_hours": [],
"owner": null,
"phone_number": "02 37 24 60 36",
"timezone": null,
"zip_code": "28700"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE CROIX DANDONNEAU",
"city": "MONTILS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0218",
"latitude": 45.653192,
"longitude": -0.505693,
"manager_name": "Teddy DEBAIN",
"mobile_number": null,
"name": "MONTILS",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 96 42 36",
"timezone": null,
"zip_code": "17800"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\n4 LIMORLIN",
"city": "BOUGNEAU",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0219",
"latitude": 45.618496,
"longitude": -0.498872,
"manager_name": "Mickael PUJO",
"mobile_number": null,
"name": "BOUGNEAU",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 96 16 50",
"timezone": null,
"zip_code": "17800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n3 ROUTE DES ROCS",
"city": "ST GEORGES DES AGOUTS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0220",
"latitude": 45.359115,
"longitude": -0.662642,
"manager_name": "Arnaud RIPPE",
"mobile_number": null,
"name": "ST GEORGES DES AGOUTS",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 86 01 22",
"timezone": null,
"zip_code": "17150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLA COULEE DE L ARSEAU",
"city": "PUYRAVAULT",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0224",
"latitude": 46.382468,
"longitude": -1.083071,
"manager_name": "Martin PENISSON",
"mobile_number": null,
"name": "PUYRAVAULT",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 28 60 81",
"timezone": null,
"zip_code": "85450"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n8 ROUTE DE MOQUESOURIS\nPLASSAC",
"city": "EPARGNES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0225",
"latitude": 45.534718,
"longitude": -0.810619,
"manager_name": "Christophe MOREAU",
"mobile_number": null,
"name": "EPARGNES",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 90 70 91",
"timezone": null,
"zip_code": "17120"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\n10 RUE DU 19EME BATAILLON\nDE CHASSEURS A PIED",
"city": "VERDUN",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0226",
"latitude": 49.164792,
"longitude": 5.397712,
"manager_name": "Isabelle LECRIQUE",
"mobile_number": null,
"name": "VERDUN MA",
"opening_hours": [],
"owner": null,
"phone_number": "03 29 84 53 36",
"timezone": null,
"zip_code": "55100"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n31 RUE DE L ARQUEBUSE",
"city": "SCEAUX DU GATINAIS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0228",
"latitude": 48.107331,
"longitude": 2.602605,
"manager_name": "Gaêtan PIGET",
"mobile_number": "06 71 74 80 83",
"name": "SCEAUX DU GATINAIS",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 87 42 42",
"timezone": null,
"zip_code": "45490"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nRUE DE DREVILLE\nDREVILLE",
"city": "SERMAISES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0229",
"latitude": 48.294347,
"longitude": 2.215206,
"manager_name": "Frederic DARRE",
"mobile_number": null,
"name": "SERMAISES",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 39 76 11",
"timezone": null,
"zip_code": "45300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE OUANNE",
"city": "MERRY SEC",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0230",
"latitude": 47.660723,
"longitude": 3.488795,
"manager_name": "Ludovic PHILIPPE",
"mobile_number": null,
"name": "MERRY SEC",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 41 66 38",
"timezone": null,
"zip_code": "89560"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 RUE DES VELAIS",
"city": "BENEUVRE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0231",
"latitude": 47.692334,
"longitude": 4.942469,
"manager_name": "Adrien ROUGET",
"mobile_number": null,
"name": "BENEUVRE CENTRE",
"opening_hours": [],
"owner": null,
"phone_number": "03 80 81 00 33",
"timezone": null,
"zip_code": "21290"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nGARE DE POINSON LES GRANCEY",
"city": "POINSON LES GRANCEY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0232",
"latitude": 47.688317,
"longitude": 4.974198,
"manager_name": "Dylan NOIROT",
"mobile_number": null,
"name": "BENEUVRE GARE POINSON LES GRANCEY",
"opening_hours": [],
"owner": null,
"phone_number": "03 80 81 00 33",
"timezone": null,
"zip_code": "52160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n7 RUE DE NEUILLY",
"city": "SENS BEAUJEU",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0235",
"latitude": 47.325277,
"longitude": 2.704706,
"manager_name": "Thibault RAMEAU",
"mobile_number": "06 63 60 15 47",
"name": "SENS BEAUJEU",
"opening_hours": [],
"owner": null,
"phone_number": "02 48 79 03 14",
"timezone": null,
"zip_code": "18300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI DE SEPT SORTS\nRUE DE LA MERLETTE",
"city": "SEPT SORTS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0236",
"latitude": 48.948553,
"longitude": 3.10374,
"manager_name": "Thomas BERGER",
"mobile_number": "06 83 57 28 75",
"name": "SEPT SORTS",
"opening_hours": [],
"owner": null,
"phone_number": "01 60 22 07 86",
"timezone": null,
"zip_code": "77260"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nZI DE RHOVYL\nRUE DU FILAGE",
"city": "TRONVILLE EN BARROIS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0240",
"latitude": 48.718381,
"longitude": 5.281358,
"manager_name": " Fabrice MULLER",
"mobile_number": null,
"name": "TRONVILLE EN BARROIS MA",
"opening_hours": [],
"owner": null,
"phone_number": "03 29 78 80 00",
"timezone": null,
"zip_code": "55310"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n42 RTE DE MARIGNAC",
"city": "CHADENAC",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0241",
"latitude": 45.53697,
"longitude": -0.451697,
"manager_name": "Romain MABILLAT",
"mobile_number": null,
"name": "CHADENAC",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 91 20 04",
"timezone": null,
"zip_code": "17800"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLES BRANDES",
"city": "PONS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0242",
"latitude": 45.541362,
"longitude": -0.56167,
"manager_name": "Manuel GARECHE",
"mobile_number": null,
"name": "BELLUIRE PONS",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 91 33 04",
"timezone": null,
"zip_code": "17800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE MAGNOT\n21 MALABRIE",
"city": "LA TAILLEE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0245",
"latitude": 46.382576,
"longitude": -0.942533,
"manager_name": "Aurelien EGEA",
"mobile_number": "06 86 07 31 18",
"name": "LA TAILLEE",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 52 53 39",
"timezone": null,
"zip_code": "85450"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n581 RUE DES BRANDES\nCHAILLE",
"city": "ST GEORGES DU BOIS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0246",
"latitude": 46.126809,
"longitude": -0.71818,
"manager_name": "Jérome NOUZILLE",
"mobile_number": null,
"name": "ST GEORGES DU BOIS",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 27 90 17",
"timezone": null,
"zip_code": "17700"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES BARRES",
"city": "L HERMENAULT",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0247",
"latitude": 46.517531,
"longitude": -0.90397,
"manager_name": "Sebastien FILLONNEAU",
"mobile_number": "06 07 26 75 09",
"name": "L HERMENAULT",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 00 10 02",
"timezone": null,
"zip_code": "85570"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRD 194\nDIRECTION RD 618",
"city": "VIVIERS S CHIERS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0250",
"latitude": 49.472011,
"longitude": 5.600878,
"manager_name": "Olivier MARCHETTI",
"mobile_number": null,
"name": "VIVIERS S CHIERS",
"opening_hours": [],
"owner": null,
"phone_number": "03 82 39 25 80",
"timezone": null,
"zip_code": "54260"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE NERON",
"city": "NUARS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0251",
"latitude": 47.377969,
"longitude": 3.698435,
"manager_name": "Corentin BERLIN",
"mobile_number": null,
"name": "NUARS",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 24 80 76",
"timezone": null,
"zip_code": "58190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n4 RUE DU SAFRAN",
"city": "BOYNES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0252",
"latitude": 48.11796,
"longitude": 2.356814,
"manager_name": "Luc JAMOT",
"mobile_number": "06 70 41 31 47",
"name": "BOYNES",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 34 56 90",
"timezone": null,
"zip_code": "45300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE CHALONS",
"city": "MONTMIRAIL",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0253",
"latitude": 48.873439,
"longitude": 3.574233,
"manager_name": "Alain RONDEAU",
"mobile_number": null,
"name": "MONTMIRAIL B",
"opening_hours": [],
"owner": null,
"phone_number": "03 26 81 61 12",
"timezone": null,
"zip_code": "51210"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZA COMMERCIALE\nROUTE DEPARTEMENTALE 9",
"city": "LANEUVEVILLE DEVANT BAYON",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0257",
"latitude": 48.468786,
"longitude": 6.255743,
"manager_name": "Stéphane FERRY",
"mobile_number": "06 14 33 21 92",
"name": "LANEUVEVILLE DEVANT BAYON",
"opening_hours": [],
"owner": null,
"phone_number": null,
"timezone": null,
"zip_code": "54740"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nRUE DU VERGERS",
"city": "MARCILLY LA CAMPAGNE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0258",
"latitude": 48.835221,
"longitude": 1.192349,
"manager_name": "Camille LUST",
"mobile_number": "06 12 46 45 88",
"name": "MARCILLY LA CAMPAGNE",
"opening_hours": [],
"owner": null,
"phone_number": null,
"timezone": null,
"zip_code": "27320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE VERTILLY",
"city": "SERGINES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0259",
"latitude": 48.3399,
"longitude": 3.277699,
"manager_name": "Vincent THIERRY",
"mobile_number": "06 86 33 28 16",
"name": "SERGINES",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 66 39 80",
"timezone": null,
"zip_code": "89140"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLD LA COGNARDERIE",
"city": "CHANTECOQ",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0261",
"latitude": 48.035377,
"longitude": 2.962588,
"manager_name": "Florian PAUL",
"mobile_number": "06 71 78 94 10",
"name": "CHANTECOQ",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 87 27 85",
"timezone": null,
"zip_code": "45320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE LA GARE",
"city": "CHILLEURS AUX BOIS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0262",
"latitude": 48.092647,
"longitude": 2.123514,
"manager_name": "Jerome PERDEREAU",
"mobile_number": "06 70 41 22 43",
"name": "CHILLEURS AUX BOIS",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 39 82 42",
"timezone": null,
"zip_code": "45170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE PONT CROTTE",
"city": "BOURNEZEAU",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0267",
"latitude": 46.628974,
"longitude": -1.187856,
"manager_name": "Anthony METAIS",
"mobile_number": "06 03 96 09 04",
"name": "BOURNEZEAU",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 40 87 87",
"timezone": null,
"zip_code": "85480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n7 RUE DE JERICHO",
"city": "FONTENAY LE COMTE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0272",
"latitude": 46.459562,
"longitude": -0.792412,
"manager_name": "Nadine VERGNAUD",
"mobile_number": null,
"name": "FONTENAY LE COMTE",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 69 20 24",
"timezone": null,
"zip_code": "85200"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES GRANDES RATONNIERES",
"city": "ST MEDARD D AUNIS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0273",
"latitude": 46.136638,
"longitude": -1.009019,
"manager_name": "Gabriel BRECHOIRE",
"mobile_number": null,
"name": "ST MEDARD D AUNIS",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 35 92 51",
"timezone": null,
"zip_code": "17220"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "PLATEFORME SOUFFLET\nRD60\nDIRECTION DOULEVANT LE CHATEAU",
"city": "NULLY TREMILLY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0275",
"latitude": 48.363984,
"longitude": 4.82773,
"manager_name": "Sébastien DRIAT",
"mobile_number": null,
"name": "NULLY",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 55 66 97",
"timezone": null,
"zip_code": "52110"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n4 RUE DU PLESSIS",
"city": "CORBREUSE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0276",
"latitude": 48.494928,
"longitude": 1.962198,
"manager_name": "Philippe ROYNE",
"mobile_number": "06 28 47 04 75",
"name": "CORBREUSE",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 59 40 92",
"timezone": null,
"zip_code": "91410"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n3 RUE GAMBETTA",
"city": "GONDREVILLE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0278",
"latitude": 48.050301,
"longitude": 2.65416,
"manager_name": "Daniel COLLET",
"mobile_number": "06 80 05 65 46",
"name": "GONDREVILLE",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 89 87 90",
"timezone": null,
"zip_code": "45490"
},
{
"activities_names": "Silo portuaire fluvial",
"address": "SILO SOUFFLET\n1 CHEMIN DU PORT",
"city": "GRIGNY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0279",
"latitude": 48.666763,
"longitude": 2.404918,
"manager_name": "Yannick CAILLETEAU",
"mobile_number": "06 76 09 25 28",
"name": "GRIGNY",
"opening_hours": [],
"owner": null,
"phone_number": "01 69 02 76 00",
"timezone": null,
"zip_code": "91350"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nCHEMIN DE BRIOTTE D59\nAVANT LE CIMETIERE",
"city": "VILLENAUXE LA PETITE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0284",
"latitude": 48.403065,
"longitude": 3.321639,
"manager_name": "Hervé LEROY",
"mobile_number": null,
"name": "VILLENAUXE LA PETITE B",
"opening_hours": [],
"owner": null,
"phone_number": "01 60 67 18 35",
"timezone": null,
"zip_code": "77480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN MESSE",
"city": "HERME",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0285",
"latitude": 48.490881,
"longitude": 3.344926,
"manager_name": "Cyrille DELAVACHERIE",
"mobile_number": null,
"name": "HERME",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 00 78 01",
"timezone": null,
"zip_code": "77114"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 ROUTE BAILLY",
"city": "RIGNY LA NONNEUSE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0286",
"latitude": 48.403367,
"longitude": 3.659315,
"manager_name": "Damien BACHOT",
"mobile_number": null,
"name": "RIGNY LA NONNEUSE",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 21 63 36",
"timezone": null,
"zip_code": "10290"
},
{
"activities_names": "Silo portuaire fluvial",
"address": "SILO SOUFFLET\n51 RUE DES ETANGS\nLE VIEUX MOUY",
"city": "MOUY S SEINE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0287",
"latitude": 48.425523,
"longitude": 3.227539,
"manager_name": "Eric BOURBONNEUX",
"mobile_number": null,
"name": "MOUY S SEINE A",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 01 17 02",
"timezone": null,
"zip_code": "77480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE SOLIGNY",
"city": "TRANCAULT",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0288",
"latitude": 48.385037,
"longitude": 3.52667,
"manager_name": "Yannick TROCELLIER",
"mobile_number": null,
"name": "TRANCAULT B",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 21 73 19",
"timezone": null,
"zip_code": "10290"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE BOIS DU PARC",
"city": "PLESSIS ST BENOIST",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0290",
"latitude": 48.448263,
"longitude": 2.007105,
"manager_name": "Philippe FAUVET",
"mobile_number": "06 76 09 66 76",
"name": "PLESSIS ST BENOIST",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 95 51 45",
"timezone": null,
"zip_code": "91410"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n10 RUE EMILE CHAPPERON",
"city": "LEVESVILLE LA CHENARD",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0291",
"latitude": 48.303962,
"longitude": 1.823772,
"manager_name": "Alexis DENOUAL",
"mobile_number": null,
"name": "LEVESVILLE LA CHENARD",
"opening_hours": [],
"owner": null,
"phone_number": "02 37 22 12 16",
"timezone": null,
"zip_code": "28210"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE LA GARE",
"city": "MALESHERBES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0292",
"latitude": 48.290312,
"longitude": 2.402083,
"manager_name": "Clément HAUTEFEUILLE",
"mobile_number": "06 71 74 75 83",
"name": "MALESHERBES",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 34 87 13",
"timezone": null,
"zip_code": "45330"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nMORSANG SUD\nROUTE DEPARTEMENTALE 63 LA MONTAGNE",
"city": "ETAMPES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0293",
"latitude": 48.404583,
"longitude": 2.213756,
"manager_name": "Clément HAUTEFEUILLE",
"mobile_number": "06 71 74 75 83",
"name": "ETAMPES LA MONTAGNE",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 94 19 92",
"timezone": null,
"zip_code": "91150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCOUR DE LA GARE\nLE PETIT ORME",
"city": "PARAY DOUAVILLE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0294",
"latitude": 48.477941,
"longitude": 1.851777,
"manager_name": "Nicolas TRICARD",
"mobile_number": "06 12 46 46 54",
"name": "PARAY DOUAVILLE",
"opening_hours": [],
"owner": null,
"phone_number": "01 30 88 07 66",
"timezone": null,
"zip_code": "78660"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN LATERAL\nDEPOT TOTAL",
"city": "PUISEAUX",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0295",
"latitude": 48.206284,
"longitude": 2.462572,
"manager_name": "LACONCHE Vincent",
"mobile_number": "06 71 74 66 80",
"name": "PUISEAUX A",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 34 55 70",
"timezone": null,
"zip_code": "45390"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE NERONDES\nD43 LE BOURG",
"city": "IGNOL",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0296",
"latitude": 46.96859,
"longitude": 2.844774,
"manager_name": "Jean Jacques COCU",
"mobile_number": "06 12 17 27 70",
"name": "IGNOL",
"opening_hours": [],
"owner": null,
"phone_number": "02 48 74 84 50",
"timezone": null,
"zip_code": "18350"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE REBILLATE\n2 ROUTE DE ST LOUP",
"city": "CHAVANNES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0297",
"latitude": 46.851288,
"longitude": 2.376195,
"manager_name": "Alexandre BRY",
"mobile_number": "06 03 81 63 97",
"name": "CHAVANNES",
"opening_hours": [],
"owner": null,
"phone_number": "02 48 60 57 30",
"timezone": null,
"zip_code": "18190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE LA LIBERATION\nLIEU-DIT LA VOIE DE MARIGNY",
"city": "ORVILLIERS ST JULIEN",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0354",
"latitude": 48.436435,
"longitude": 3.814018,
"manager_name": "Stéphane DENIZOT",
"mobile_number": null,
"name": "ORVILLIERS ST JULIEN",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 24 66 51",
"timezone": null,
"zip_code": "10170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRD 6 LA COMBE",
"city": "PONT LA VILLE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0360",
"latitude": 48.078308,
"longitude": 4.888503,
"manager_name": "Jean Pierre PRINCET",
"mobile_number": "06 29 87 54 51",
"name": "PONT LA VILLE",
"opening_hours": [],
"owner": null,
"phone_number": null,
"timezone": null,
"zip_code": "52120"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n92 RUE DE ST JEAN",
"city": "ST GEORGES DU VIEVRE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0430",
"latitude": 49.239822,
"longitude": 0.582699,
"manager_name": "Gaylord BOUCKAERT",
"mobile_number": "06 75 62 71 07",
"name": "ST GEORGES DU VIEVRE",
"opening_hours": [],
"owner": null,
"phone_number": "02 32 20 02 58",
"timezone": null,
"zip_code": "27450"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZONE ARTISANALE\nD386",
"city": "POILLY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0453",
"latitude": 49.219016,
"longitude": 3.813866,
"manager_name": "Damien NOIZET",
"mobile_number": "06 12 52 73 30",
"name": "POILLY",
"opening_hours": [],
"owner": null,
"phone_number": "03 26 61 80 84",
"timezone": null,
"zip_code": "51170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD106",
"city": "ETON",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0460",
"latitude": 49.271094,
"longitude": 5.667438,
"manager_name": " Geoffrey VEBER",
"mobile_number": "06 72 28 86 45",
"name": "ETON",
"opening_hours": [],
"owner": null,
"phone_number": "03 29 83 73 36",
"timezone": null,
"zip_code": "55240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE GRANGE L EVEQUE\nROUTE DEPARTEMENTALE 15",
"city": "ST LYE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0461",
"latitude": 48.34484,
"longitude": 3.981378,
"manager_name": "Herve MATRAT",
"mobile_number": null,
"name": "ST LYE",
"opening_hours": [],
"owner": null,
"phone_number": "03 25 41 00 18",
"timezone": null,
"zip_code": "10180"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nROUTE DE VILLERS LE CHATEAU",
"city": "MATOUGUES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0462",
"latitude": 48.981112,
"longitude": 4.252749,
"manager_name": "Victor ADNET",
"mobile_number": null,
"name": "MATOUGUES",
"opening_hours": [],
"owner": null,
"phone_number": null,
"timezone": null,
"zip_code": "51510"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "STOCKAGE SOUFFLET\n7 PLACE DES TILLEULS",
"city": "OSMOY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0471",
"latitude": 48.869324,
"longitude": 1.71603,
"manager_name": "Paul PETILLON",
"mobile_number": "06 82 81 78 70",
"name": "OSMOY",
"opening_hours": [],
"owner": null,
"phone_number": "01 34 87 23 57",
"timezone": null,
"zip_code": "78910"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 CHEMIN MOULANT",
"city": "ST MARDS DE BLACARVILLE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0481",
"latitude": 49.384745,
"longitude": 0.534026,
"manager_name": "Raynald DEUVE",
"mobile_number": "06 61 38 33 67",
"name": "ST MARDS DE BLACARVILLE",
"opening_hours": [],
"owner": null,
"phone_number": "02 32 42 05 13",
"timezone": null,
"zip_code": "27500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE POMMEREY\nROUTE DEPARTEMENTALE 94",
"city": "ROUGEMONTIERS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0482",
"latitude": 49.358264,
"longitude": 0.722644,
"manager_name": "Valentin CHERON",
"mobile_number": "06 33 34 78 12",
"name": "ROUGEMONTIERS",
"opening_hours": [],
"owner": null,
"phone_number": "02 32 20 15 00",
"timezone": null,
"zip_code": "27350"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nBOIS DE L HOPITAL",
"city": "MESSEME",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0490",
"latitude": 47.010253,
"longitude": 0.14685,
"manager_name": "Romain AUGUIER",
"mobile_number": null,
"name": "MESSEME",
"opening_hours": [],
"owner": null,
"phone_number": "05 49 98 04 63",
"timezone": null,
"zip_code": "86200"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n71 RUE EDMOND HUBERT",
"city": "EGREVILLE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0504",
"latitude": 48.176621,
"longitude": 2.865232,
"manager_name": "Eric QUINAULT",
"mobile_number": null,
"name": "EGREVILLE",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 29 57 11",
"timezone": null,
"zip_code": "77620"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE VOULX",
"city": "ESMANS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0515",
"latitude": 48.354487,
"longitude": 2.95762,
"manager_name": "CANAULT Yann",
"mobile_number": "06 86 86 96 69",
"name": "ESMANS",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 32 22 04",
"timezone": null,
"zip_code": "77940"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLA VILLEDIEU",
"city": "LAONS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0518",
"latitude": 48.679906,
"longitude": 1.190474,
"manager_name": "Sebastien LESAGE",
"mobile_number": "06 20 77 59 58",
"name": "LAONS VILLEDIEU",
"opening_hours": [],
"owner": null,
"phone_number": "02 37 38 18 87",
"timezone": null,
"zip_code": "28270"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 RUE DE DOURDAIGNE",
"city": "HUISSEAU S MAUVES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0606",
"latitude": 47.888253,
"longitude": 1.716216,
"manager_name": "Julien LAURET",
"mobile_number": "06 17 94 72 37",
"name": "HUISSEAU S MAUVES",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 80 59 80",
"timezone": null,
"zip_code": "45130"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nBONTENY",
"city": "TERNAY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0611",
"latitude": 47.036569,
"longitude": -0.036739,
"manager_name": "Bruno RIGAUDEAU",
"mobile_number": "06 08 98 79 79",
"name": "TERNAY",
"opening_hours": [],
"owner": null,
"phone_number": "05 49 22 93 77",
"timezone": null,
"zip_code": "86120"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLA MALTERIE\nD726 ROUTE DE TOURY",
"city": "PITHIVIERS LE VIEIL",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0619",
"latitude": 48.170846,
"longitude": 2.234141,
"manager_name": "Marc GROSSIER",
"mobile_number": "06 70 41 29 77",
"name": "PITHIVIERS LE VIEIL A",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 34 06 92",
"timezone": null,
"zip_code": "45300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n52 ROUTE DE DIJON",
"city": "BRAZEY EN PLAINE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0623",
"latitude": 47.139619,
"longitude": 5.214771,
"manager_name": "Jeremy JEANSON",
"mobile_number": "06 86 26 61 04",
"name": "BRAZEY EN PLAINE",
"opening_hours": [],
"owner": null,
"phone_number": "03 80 77 90 88",
"timezone": null,
"zip_code": "21470"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n2 RUE DE LA BASCULE",
"city": "NEUVILLE DE POITOU",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0636",
"latitude": 46.680705,
"longitude": 0.247807,
"manager_name": "Ludovic BARREAU",
"mobile_number": null,
"name": "NEUVILLE DE POITOU",
"opening_hours": [],
"owner": null,
"phone_number": "05 49 51 21 02",
"timezone": null,
"zip_code": "86170"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n59 RUE DE LA GARE",
"city": "VILLIERS ST GEORGES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0638",
"latitude": 48.650315,
"longitude": 3.411608,
"manager_name": "Dominique ROLLET",
"mobile_number": null,
"name": "VILLIERS ST GEORGES",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 01 90 38",
"timezone": null,
"zip_code": "77560"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nROUTE DES CROIX",
"city": "BUSSY LE REPOS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0644",
"latitude": 48.056621,
"longitude": 3.239051,
"manager_name": "Guillaume CACHON",
"mobile_number": null,
"name": "BUSSY LE REPOS",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 83 09 84",
"timezone": null,
"zip_code": "89500"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nRD98\nDIRECTION D AUGER ST VINCENT",
"city": "ORMOY VILLERS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0645",
"latitude": 49.200492,
"longitude": 2.834963,
"manager_name": "Noelle GOUVEIA",
"mobile_number": "06 08 74 18 33",
"name": "ORMOY VILLERS",
"opening_hours": [],
"owner": null,
"phone_number": null,
"timezone": null,
"zip_code": "60800"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nROUTE DES AIX D ANGUILLON",
"city": "RIANS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0650",
"latitude": 47.19216,
"longitude": 2.60336,
"manager_name": "François CHATAGNON",
"mobile_number": "06 09 03 81 60",
"name": "RIANS",
"opening_hours": [],
"owner": null,
"phone_number": "02 48 23 00 48",
"timezone": null,
"zip_code": "18220"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "STOCKAGE SOUFFLET\nCHEMIN DU MOULIN DU LANQUENEST",
"city": "PRESSIGNY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0651",
"latitude": 47.748667,
"longitude": 5.657034,
"manager_name": "Adrien MAILLOT",
"mobile_number": null,
"name": "PRESSIGNY STK",
"opening_hours": [],
"owner": null,
"phone_number": null,
"timezone": null,
"zip_code": "52500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "STOCKAGE SOUFFLET\nCHEZ EARL DE SEUCHEY\nHAMEAU FERME DE SEUCHEY",
"city": "SAULLES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0652",
"latitude": 47.688112,
"longitude": 5.525975,
"manager_name": "Vianney FEVRE",
"mobile_number": null,
"name": "SAULLES SEUCHEY STK",
"opening_hours": [],
"owner": null,
"phone_number": null,
"timezone": null,
"zip_code": "52500"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n45 RUE DE VAUDRAN\nZONE ARTISANALE",
"city": "DAMPIERRE S SALON",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0661",
"latitude": 47.564179,
"longitude": 5.670734,
"manager_name": "Thierry MORLOT",
"mobile_number": "06 70 00 79 19",
"name": "DAMPIERRE S SALON",
"opening_hours": [],
"owner": null,
"phone_number": "03 84 32 38 05",
"timezone": null,
"zip_code": "70180"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\n31 ROUTE DE CHITRY",
"city": "ST BRIS LE VINEUX",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0663",
"latitude": 47.746778,
"longitude": 3.659625,
"manager_name": "Matthieu MOREAU",
"mobile_number": null,
"name": "ST BRIS LE VINEUX MA",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 53 69 70",
"timezone": null,
"zip_code": "89530"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nD18E3\nAVENUE DES TILLEULS",
"city": "SOMMESOUS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0665",
"latitude": 48.731425,
"longitude": 4.202157,
"manager_name": "Candice ROYER",
"mobile_number": null,
"name": "SOMMESOUS",
"opening_hours": [],
"owner": null,
"phone_number": null,
"timezone": null,
"zip_code": "51320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRTE DE COUSSAY",
"city": "CHOUPPES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0670",
"latitude": 46.804019,
"longitude": 0.193073,
"manager_name": "Thomas CHAPILLON",
"mobile_number": null,
"name": "CHOUPPES",
"opening_hours": [],
"owner": null,
"phone_number": "05 49 50 89 89",
"timezone": null,
"zip_code": "86110"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLA CHATAIGNERAIE",
"city": "VICQ S GARTEMPE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0672",
"latitude": 46.735402,
"longitude": 0.846262,
"manager_name": "Adrien ROBIN",
"mobile_number": null,
"name": "VICQ S GARTEMPE",
"opening_hours": [],
"owner": null,
"phone_number": "05 49 23 19 23",
"timezone": null,
"zip_code": "86260"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\n12 RUE HUILERIE",
"city": "MAILLE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0673",
"latitude": 46.676855,
"longitude": 0.093568,
"manager_name": "Kevin LANDREAU",
"mobile_number": null,
"name": "MAILLE",
"opening_hours": [],
"owner": null,
"phone_number": "05 49 60 17 24",
"timezone": null,
"zip_code": "86190"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLA PINELIERE",
"city": "BENASSAY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0674",
"latitude": 46.587804,
"longitude": 0.0592,
"manager_name": "Sylvain CHAMORET",
"mobile_number": null,
"name": "LA PINELIERE",
"opening_hours": [],
"owner": null,
"phone_number": "05 49 57 52 42",
"timezone": null,
"zip_code": "86470"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DU CHILLOU",
"city": "BENASSAY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0675",
"latitude": 46.516027,
"longitude": 0.049589,
"manager_name": "Maxime ROLLAND",
"mobile_number": null,
"name": "LE CHILLOU",
"opening_hours": [],
"owner": null,
"phone_number": "05 49 53 09 09",
"timezone": null,
"zip_code": "86470"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n13 RUE ST NICOLAS",
"city": "VITRY LA VILLE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0687",
"latitude": 48.844232,
"longitude": 4.459819,
"manager_name": "Christophe SONGY",
"mobile_number": null,
"name": "VITRY LA VILLE",
"opening_hours": [],
"owner": null,
"phone_number": "03 26 67 38 71",
"timezone": null,
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE FONTAINEBLEAU",
"city": "NANGIS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0689",
"latitude": 48.547623,
"longitude": 2.997446,
"manager_name": "Frédéric BOILEAU",
"mobile_number": null,
"name": "NANGIS",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 08 14 45",
"timezone": null,
"zip_code": "77370"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DU GENERAL DE GAULLE",
"city": "POGNY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0691",
"latitude": 48.863798,
"longitude": 4.474257,
"manager_name": "Baptiste CHAINE",
"mobile_number": null,
"name": "POGNY",
"opening_hours": [],
"owner": null,
"phone_number": "03 26 67 70 04",
"timezone": null,
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE LA LIBERATION",
"city": "MARSON",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0692",
"latitude": 48.908668,
"longitude": 4.521966,
"manager_name": "Jeremie RAULET",
"mobile_number": null,
"name": "MARSON",
"opening_hours": [],
"owner": null,
"phone_number": "03 26 67 90 12",
"timezone": null,
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE MONTSUZON\nFONTAINE COOLE",
"city": "FAUX VESIGNEUL",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0693",
"latitude": 48.796343,
"longitude": 4.385317,
"manager_name": "Vincent DOBIAS",
"mobile_number": null,
"name": "FAUX VESIGNEUL",
"opening_hours": [],
"owner": null,
"phone_number": "03 26 70 60 05",
"timezone": null,
"zip_code": "51320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD 14\nROUTE DE L ORME NOIX",
"city": "HUIRON",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0695",
"latitude": 48.693232,
"longitude": 4.508219,
"manager_name": "julien BOIVIN",
"mobile_number": "06 80 51 82 73",
"name": "HUIRON",
"opening_hours": [],
"owner": null,
"phone_number": "03 26 74 22 24",
"timezone": null,
"zip_code": "51300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nD1\nRUE ST HILAIRE",
"city": "LE FRESNE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0696",
"latitude": 48.911379,
"longitude": 4.650908,
"manager_name": "Antoine JACQUIER",
"mobile_number": null,
"name": "LE FRESNE",
"opening_hours": [],
"owner": null,
"phone_number": "03 26 67 90 57",
"timezone": null,
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DE BASSU",
"city": "VANAULT LE CHATEL",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0697",
"latitude": 48.85871,
"longitude": 4.721777,
"manager_name": "Raphael BOURGOIN",
"mobile_number": null,
"name": "VANAULT LE CHATEL",
"opening_hours": [],
"owner": null,
"phone_number": "03 26 73 33 74",
"timezone": null,
"zip_code": "51330"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE D AULNAY\nD60 LES CHAMPS DORMAT",
"city": "LA CHAUSSEE S MARNE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0699",
"latitude": 48.830123,
"longitude": 4.541977,
"manager_name": "Alain BECK",
"mobile_number": null,
"name": "LA CHAUSSEE S MARNE",
"opening_hours": [],
"owner": null,
"phone_number": "03 26 72 96 03",
"timezone": null,
"zip_code": "51240"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES CHAMPS DES DAURONS",
"city": "ST PALAIS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0708",
"latitude": 47.256921,
"longitude": 2.393924,
"manager_name": "Quentin ARCHAMBAULT",
"mobile_number": "06 79 54 93 28",
"name": "ST PALAIS",
"opening_hours": [],
"owner": null,
"phone_number": "02 48 23 28 84",
"timezone": null,
"zip_code": "18110"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nHAMEAU DE NEZE",
"city": "MEZIERES EN VEXIN",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0736",
"latitude": 49.184502,
"longitude": 1.501324,
"manager_name": "Frederic MARC",
"mobile_number": "06 16 23 49 13",
"name": "MEZIERES EN VEXIN",
"opening_hours": [],
"owner": null,
"phone_number": "02 32 52 35 45",
"timezone": null,
"zip_code": "27510"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 LE SILO\nLA GRANDE GORCE",
"city": "LE CHAY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0738",
"latitude": 45.642416,
"longitude": -0.905971,
"manager_name": "Yohan PAPIN",
"mobile_number": null,
"name": "LE CHAY",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 02 84 94",
"timezone": null,
"zip_code": "17600"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLE BOURG",
"city": "BALANZAC",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0739",
"latitude": 45.730856,
"longitude": -0.840172,
"manager_name": "Philippe MURAT",
"mobile_number": null,
"name": "BALANZAC",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 94 41 90",
"timezone": null,
"zip_code": "17600"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nRUE DU GENERAL PATTON",
"city": "CHALONS EN CHAMPAGNE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0747",
"latitude": 50.716025,
"longitude": 3.053512,
"manager_name": "Alain BECK",
"mobile_number": null,
"name": "CHALONS EN CHAMPAGNE",
"opening_hours": [],
"owner": null,
"phone_number": "03 26 65 43 45",
"timezone": null,
"zip_code": "51000"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZA LES OUCHES\nROUTE DE HONVILLE",
"city": "BOISVILLE LA ST PERE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0750",
"latitude": 48.332928,
"longitude": 1.692566,
"manager_name": "Reynald HUET",
"mobile_number": null,
"name": "BOISVILLE LA ST PERE",
"opening_hours": [],
"owner": null,
"phone_number": "02 37 99 31 08",
"timezone": null,
"zip_code": "28150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE SEPMES LA BROSSE\nBP 17",
"city": "STE MAURE DE TOURAINE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0753",
"latitude": 47.099675,
"longitude": 0.62138,
"manager_name": "Philippe GARROT",
"mobile_number": null,
"name": "STE MAURE DE TOURAINE",
"opening_hours": [],
"owner": null,
"phone_number": "02 47 72 30 00",
"timezone": null,
"zip_code": "37800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n12 RUE DES MINIMES\nBELLEVUE",
"city": "ST JEAN DE LIVERSAY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0756",
"latitude": 46.271196,
"longitude": -0.882011,
"manager_name": "Philippe PRUGNAUD",
"mobile_number": null,
"name": "ST JEAN DE LIVERSAY",
"opening_hours": [],
"owner": null,
"phone_number": "05 46 01 99 19",
"timezone": null,
"zip_code": "17170"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLA JUSTICE",
"city": "NOYANT DE TOURAINE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0768",
"latitude": 47.112202,
"longitude": 0.576305,
"manager_name": "Laurent MERLE",
"mobile_number": null,
"name": "NOYANT DE TOURAINE",
"opening_hours": [],
"owner": null,
"phone_number": "02 47 73 50 24",
"timezone": null,
"zip_code": "37800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nCHEMIN DU PUY GAUTHIER",
"city": "STE HERMINE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0773",
"latitude": 46.548415,
"longitude": -1.063793,
"manager_name": "Nicolas FERRET",
"mobile_number": null,
"name": "STE HERMINE",
"opening_hours": [],
"owner": null,
"phone_number": "02 51 27 36 02",
"timezone": null,
"zip_code": "85210"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nCHEMIN DES DOCKS",
"city": "CREPY EN VALOIS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0789",
"latitude": 49.229971,
"longitude": 2.887541,
"manager_name": "Laurent DUFAY",
"mobile_number": "06 75 62 08 42",
"name": "CREPY EN VALOIS MA",
"opening_hours": [],
"owner": null,
"phone_number": "03 44 39 39 00",
"timezone": null,
"zip_code": "60800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "PLATEFORME SOUFFLET\nLA CASTINIERE\nRD 1 ENTRE GARCHY ET CHAMPCELLEE",
"city": "SUILLY LA TOUR",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0794",
"latitude": 47.311227,
"longitude": 3.081717,
"manager_name": "Mathieu BITAULT",
"mobile_number": "06 40 27 20 71",
"name": "SUILLY LA TOUR",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 24 46 17",
"timezone": null,
"zip_code": "58150"
},
{
"activities_names": "Plateforme stockage céréales",
"address": "PLATEFORME SOUFFLET\nROUTE DE BILLANCELLE",
"city": "COURVILLE S EURE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0796",
"latitude": 48.459529,
"longitude": 1.229495,
"manager_name": "Brice DARMIGNY",
"mobile_number": "06 89 36 21 72",
"name": "COURVILLE S EURE",
"opening_hours": [],
"owner": null,
"phone_number": null,
"timezone": null,
"zip_code": "28190"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLA BILLETTE",
"city": "ST EPAIN",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0803",
"latitude": 47.158832,
"longitude": 0.580518,
"manager_name": "Thomas MAUCLERC",
"mobile_number": null,
"name": "ST EPAIN",
"opening_hours": [],
"owner": null,
"phone_number": "02 47 65 81 11",
"timezone": null,
"zip_code": "37800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n2 CHEMIN ANCIENNE GARE\nZI",
"city": "SAUSSAY LA CAMPAGNE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0809",
"latitude": 49.314063,
"longitude": 1.504643,
"manager_name": "Thierry ARNAL",
"mobile_number": "06 16 23 49 15",
"name": "SAUSSAY LA CAMPAGNE",
"opening_hours": [],
"owner": null,
"phone_number": "02 32 55 82 31",
"timezone": null,
"zip_code": "27150"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLA CROIX",
"city": "MANTHELAN",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0813",
"latitude": 47.12916,
"longitude": 0.777623,
"manager_name": "Thomas MAUCLERC",
"mobile_number": null,
"name": "MANTHELAN",
"opening_hours": [],
"owner": null,
"phone_number": "02 47 92 80 76",
"timezone": null,
"zip_code": "37240"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLE CORPS DE GARDE",
"city": "LA CELLE ST AVANT",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0819",
"latitude": 47.013531,
"longitude": 0.599488,
"manager_name": "Laurent MERLE",
"mobile_number": "07 82 64 70 48",
"name": "LA CELLE ST AVANT",
"opening_hours": [],
"owner": null,
"phone_number": null,
"timezone": null,
"zip_code": "37160"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI DE ST USTRES",
"city": "INGRANDES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0820",
"latitude": 46.895786,
"longitude": 0.582827,
"manager_name": "Yves VASLET",
"mobile_number": null,
"name": "INGRANDES",
"opening_hours": [],
"owner": null,
"phone_number": "05 49 02 73 77",
"timezone": null,
"zip_code": "86220"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nROUTE DE BOURNAN",
"city": "SEPMES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0821",
"latitude": 47.065559,
"longitude": 0.684517,
"manager_name": "Thomas MAUCLERC",
"mobile_number": null,
"name": "SEPMES",
"opening_hours": [],
"owner": null,
"phone_number": "02 47 65 44 39",
"timezone": null,
"zip_code": "37800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLES PACAGES D ARGENSON\nROUTE DE MAILLE",
"city": "NOUATRE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0823",
"latitude": 47.046659,
"longitude": 0.562711,
"manager_name": "Eric MILCENT",
"mobile_number": null,
"name": "NOUATRE",
"opening_hours": [],
"owner": null,
"phone_number": "02 47 65 30 72",
"timezone": null,
"zip_code": "37800"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "STOCKAGE SOUFFLET\nROUTE CHAPELAINE",
"city": "SOMSOIS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0825",
"latitude": 48.590105,
"longitude": 4.498991,
"manager_name": "Hervé PETIT",
"mobile_number": "06 48 74 02 61",
"name": "SOMSOIS TRANSP VAL DE SOUDE STK",
"opening_hours": [],
"owner": null,
"phone_number": "03 26 74 22 52",
"timezone": null,
"zip_code": "51290"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLE GRIGNON",
"city": "DESCARTES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0826",
"latitude": 47.003538,
"longitude": 0.644056,
"manager_name": "Hubert COURTINE",
"mobile_number": null,
"name": "DESCARTES",
"opening_hours": [],
"owner": null,
"phone_number": "02 47 92 45 27",
"timezone": null,
"zip_code": "37160"
},
{
"activities_names": "Silos stockage céréales",
"address": "SILO SOUFFLET\nLES GIRARDIERES",
"city": "SORIGNY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0827",
"latitude": 47.193257,
"longitude": 0.693894,
"manager_name": "Marion POMMIER",
"mobile_number": null,
"name": "SORIGNY",
"opening_hours": [],
"owner": null,
"phone_number": "02 47 26 96 62",
"timezone": null,
"zip_code": "37250"
},
{
"activities_names": "Silo portuaire fluvial",
"address": "SILO SOUFFLET\nRUE DE LA SUCRERIE",
"city": "BRAY S SEINE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0830",
"latitude": 48.416259,
"longitude": 3.229937,
"manager_name": "Quentin DABKOWSKI",
"mobile_number": null,
"name": "BRAY S SEINE",
"opening_hours": [],
"owner": null,
"phone_number": "01 60 52 64 15",
"timezone": null,
"zip_code": "77480"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nLD LA GARENNE",
"city": "GIVERVILLE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0834",
"latitude": 49.184788,
"longitude": 0.572357,
"manager_name": "Romain REIGNIER",
"mobile_number": "06 28 47 05 52",
"name": "GIVERVILLE",
"opening_hours": [],
"owner": null,
"phone_number": "02 32 45 93 47",
"timezone": null,
"zip_code": "27560"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nPLAINE DE MARTAINVILLE",
"city": "LE CORMIER",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0835",
"latitude": 48.990417,
"longitude": 1.298005,
"manager_name": "Arnaud RENOULT",
"mobile_number": "06 73 18 07 27",
"name": "LE CORMIER",
"opening_hours": [],
"owner": null,
"phone_number": "02 32 30 79 73",
"timezone": null,
"zip_code": "27120"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE ST VINCENT DU BOULAY\nRD 138 DIRECTION THIBERVILLE",
"city": "ST MARTIN DU TILLEUL",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0836",
"latitude": 49.109582,
"longitude": 0.512926,
"manager_name": "Ludovic AUDREN",
"mobile_number": "06 48 74 03 17",
"name": "ST MARTIN DU TILLEUL",
"opening_hours": [],
"owner": null,
"phone_number": "02 32 46 46 52",
"timezone": null,
"zip_code": "27300"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n4 RUE DU DANEMARK",
"city": "CANTELEU",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0837",
"latitude": 49.424363,
"longitude": 1.020228,
"manager_name": "Pascal SOUFFLET",
"mobile_number": null,
"name": "DIEPPEDALLE CROISSET CANTELEU",
"opening_hours": [],
"owner": null,
"phone_number": "02 35 36 30 50",
"timezone": null,
"zip_code": "76380"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI LES BUTZ",
"city": "MARTAINNEVILLE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0848",
"latitude": 50.011739,
"longitude": 1.718883,
"manager_name": "En recrutement",
"mobile_number": "06 27 09 35 83",
"name": "MARTAINNEVILLE",
"opening_hours": [],
"owner": null,
"phone_number": "03 22 24 47 69",
"timezone": null,
"zip_code": "80140"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRTE DE ST JUST",
"city": "FOUQUEROLLES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0849",
"latitude": 49.459018,
"longitude": 2.217107,
"manager_name": "Florian VALTENAIRE",
"mobile_number": null,
"name": "FOUQUEROLLES",
"opening_hours": [],
"owner": null,
"phone_number": "03 44 10 51 00",
"timezone": null,
"zip_code": "60510"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n1 ROUTE DEPARTEMENTALE",
"city": "OROER",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0854",
"latitude": 49.500039,
"longitude": 2.163462,
"manager_name": "Julien LESEUTE",
"mobile_number": null,
"name": "OROER",
"opening_hours": [],
"owner": null,
"phone_number": "03 44 10 51 00",
"timezone": null,
"zip_code": "60510"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nZI RTE NATIONALE",
"city": "QUEVAUVILLERS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0862",
"latitude": 49.819418,
"longitude": 2.077265,
"manager_name": "Mathieu PIGNON",
"mobile_number": "06 27 09 35 92",
"name": "QUEVAUVILLERS",
"opening_hours": [],
"owner": null,
"phone_number": "03 22 89 35 28",
"timezone": null,
"zip_code": "80710"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n7 QUAI DE L APPORT PARIS",
"city": "CORBEIL ESSONNES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0876",
"latitude": 48.615146,
"longitude": 2.479824,
"manager_name": "Eddie LEMERET",
"mobile_number": null,
"name": "CORBEIL ESSONNES",
"opening_hours": [],
"owner": null,
"phone_number": "01 60 90 41 24",
"timezone": null,
"zip_code": "91100"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nRUE DU MOULIN",
"city": "BONNARD",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0885",
"latitude": 47.923015,
"longitude": 3.535764,
"manager_name": "Anthony MICHAUD",
"mobile_number": "06 82 56 55 51",
"name": "BONNARD",
"opening_hours": [],
"owner": null,
"phone_number": "03 86 73 23 95",
"timezone": null,
"zip_code": "89400"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE D ORMESSON",
"city": "CHATENOY",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0911",
"latitude": 48.232348,
"longitude": 2.634404,
"manager_name": "Sebastien DUCASTEL",
"mobile_number": "06 45 69 62 14",
"name": "CHATENOY",
"opening_hours": [],
"owner": null,
"phone_number": "01 64 45 51 50",
"timezone": null,
"zip_code": "77167"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n18 RUE DE LA FORET",
"city": "BINAS",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0919",
"latitude": 47.901638,
"longitude": 1.459371,
"manager_name": "Christophe BLET",
"mobile_number": "06 12 85 36 24",
"name": "BINAS",
"opening_hours": [],
"owner": null,
"phone_number": "02 54 82 41 28",
"timezone": null,
"zip_code": "41240"
},
{
"activities_names": "Magasin appro",
"address": "MAGASIN APPROS SOUFFLET\nRUE DE L ARTISANAT",
"city": "VIBRAYE",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0934",
"latitude": 48.071105,
"longitude": 0.736479,
"manager_name": "Elise CALLU",
"mobile_number": null,
"name": "VIBRAYE MA",
"opening_hours": [],
"owner": null,
"phone_number": null,
"timezone": null,
"zip_code": "72320"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\n127 ROUTE DE LA FERTE\nLE RETARD",
"city": "FEROLLES",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0950",
"latitude": 47.829092,
"longitude": 2.09969,
"manager_name": "Dominique ALLARD",
"mobile_number": null,
"name": "FEROLLES",
"opening_hours": [],
"owner": null,
"phone_number": "02 38 46 80 14",
"timezone": null,
"zip_code": "45150"
},
{
"activities_names": "Site Mixte Céréales Appros",
"address": "SILO SOUFFLET\nROUTE DE LA CROIX CHAILLAT",
"city": "VICQ EXEMPLET",
"country": null,
"email": "nomail.cds@soufflet.com",
"id": "0983",
"latitude": 46.627986,
"longitude": 2.1491,
"manager_name": "Philippe DESSOUBRAIS",
"mobile_number": "06 09 90 68 40",
"name": "VICQ EXEMPLET",
"opening_hours": [],
"owner": null,
"phone_number": "02 54 30 04 80",
"timezone": null,
"zip_code": "36400"
}
]
}
The input JSON schema validates the input JSON instance (JSON Schema Draft 4).
{
"additionalProperties": false,
"properties": {
"customer_number": {
"description": "numClient",
"pattern": "\\d*",
"type": "string"
},
"provider": {
"description": "provider",
"enum": [
"AGR",
"AGR-INT"
],
"type": "string"
},
"zip_code": {
"description": "zipCode",
"pattern": "^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$",
"type": "string"
}
},
"required": [
"customer_number",
"provider",
"zip_code"
],
"title": "Farm - NewFarm",
"type": "object"
}
{
"customer_number": "98005220",
"provider": "AGR",
"zip_code": "93654"
}
The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:
{
"additionalProperties": false,
"properties": {
"customer_number": {
"description": "numClient",
"pattern": "\\d*",
"type": "string"
},
"provider": {
"description": "provider",
"enum": [
"AGR",
"AGR-INT"
],
"type": "string"
},
"zip_code": {
"description": "zipCode",
"pattern": "^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$",
"type": "string"
}
},
"required": [
"customer_number",
"provider",
"zip_code"
],
"title": "Farm - NewFarm",
"type": "object"
}
{
"customer_number": "98005220",
"provider": "AGR",
"zip_code": "923654"
}
The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:
{
"additionalProperties": false,
"properties": {
"customer_number": {
"description": "numClient",
"pattern": "\\d*",
"type": "string"
},
"provider": {
"description": "provider",
"enum": [
"AGR",
"AGR-INT"
],
"type": "string"
},
"zip_code": {
"description": "zipCode",
"pattern": "^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$",
"type": "string"
}
},
"required": [
"customer_number",
"provider",
"zip_code"
],
"title": "Farm - NewFarm",
"type": "object"
}
{
"customer_number": "123654",
"provider": "AGR",
"zip_code": "923654"
}
The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:
{
"additionalProperties": false,
"properties": {
"customer_number": {
"description": "numClient",
"pattern": "\\d*",
"type": "string"
},
"provider": {
"description": "provider",
"enum": [
"AGR",
"AGR-INT"
],
"type": "string"
},
"zip_code": {
"description": "zipCode",
"pattern": "^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$",
"type": "string"
}
},
"required": [
"customer_number",
"provider",
"zip_code"
],
"title": "Farm - NewFarm",
"type": "object"
}
{
"customer_number": "123654",
"provider": "AGR",
"zip_code": "123654"
}
The input JSON schema validates the input JSON instance (JSON Schema Draft 4).
{
"additionalProperties": false,
"properties": {
"customer_number": {
"description": "numClient",
"pattern": "\\d*",
"type": "string"
},
"provider": {
"description": "provider",
"enum": [
"AGR",
"AGR-INT"
],
"type": "string"
},
"zip_code": {
"description": "zipCode",
"pattern": "^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$",
"type": "string"
}
},
"required": [
"customer_number",
"provider",
"zip_code"
],
"title": "Farm - NewFarm",
"type": "object"
}
{
"customer_number": "6398389",
"provider": "AGR-INT",
"zip_code": "92176"
}