Validations history

Validation #577

Failure

The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:

  • The property '#/account/settlement_company_code' value "00018" did not match one of the following values: 00009, 00034 in schema 0218301d-4e7a-5ccb-a970-ac45067d1104
  • The property '#/account' did not contain a required property of 'entries' in schema 0218301d-4e7a-5ccb-a970-ac45067d1104

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultEntry_540": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "amount": {
          "minimum": 0,
          "type": "number"
        },
        "date": {
          "format": "date",
          "type": "string"
        },
        "id": {
          "pattern": "\\d*",
          "type": "string"
        },
        "label": {
          "type": "string"
        },
        "maturity_date": {
          "format": "date",
          "type": "string"
        },
        "settled": {
          "type": "boolean"
        }
      },
      "required": [
        "amount",
        "date",
        "id",
        "label",
        "maturity_date",
        "settled"
      ],
      "title": "Entry - DefaultEntry",
      "type": "object"
    }
  },
  "properties": {
    "account": {
      "additionalProperties": false,
      "properties": {
        "entries": {
          "items": {
            "$ref": "#/definitions/DefaultEntry_540",
            "type": "object"
          },
          "type": "array"
        },
        "settlement_company_code": {
          "enum": [
            "00009",
            "00034"
          ],
          "type": "string"
        },
        "type": {
          "enum": [
            "current",
            "collections",
            "supplies",
            "deposits"
          ],
          "type": "string"
        }
      },
      "required": [
        "entries",
        "settlement_company_code",
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "account"
  ],
  "title": "Account - AgroAccount",
  "type": "object"
}

JSON instance

{
  "account": {
    "settlement_company_code": "00018",
    "type": "supplies"
  }
}

Validation #576

Failure

The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:

  • The property '#/' contains additional properties ["response"] outside of the schema when none are allowed in schema dba3f4c9-9904-58f1-b20f-a52ad66b5d28
  • The property '#/' did not contain a required property of 'collection_offers' in schema dba3f4c9-9904-58f1-b20f-a52ad66b5d28

JSON Schema

{
  "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"
}

JSON instance

{
  "response": {
    "codeReturn": "1",
    "numProcess": "35630554",
    "offers": [
      {
        "baseLabel": "FLAT",
        "deliveryTypes": [
          {
            "deliveryModes": [
              {
                "code": "0739",
                "type": "SAT",
                "value": "BALANZAC"
              },
              {
                "code": "0216",
                "type": "SAT",
                "value": "CORME ROYAL"
              },
              {
                "code": "0861",
                "type": "SAT",
                "value": "ESSARDS PINIER STK"
              },
              {
                "code": "0921",
                "type": "SAT",
                "value": "LA PLANCHE GEAY STK"
              },
              {
                "code": "0475",
                "type": "SAT",
                "value": "LOURADOUR GEAY STK"
              },
              {
                "code": "0248",
                "type": "SAT",
                "value": "PUY DU LAC L AUBREE PILET STK"
              },
              {
                "code": "0970",
                "type": "SAT",
                "value": "ST GEORGES DES COTEAUX SEGUIN STK"
              }
            ],
            "mainType": "RDU1",
            "offersDeliveryModeId": "16"
          },
          {
            "deliveryModes": [
              {
                "code": "0739",
                "type": "SAT",
                "value": "BALANZAC"
              },
              {
                "code": "0216",
                "type": "SAT",
                "value": "CORME ROYAL"
              },
              {
                "code": "0861",
                "type": "SAT",
                "value": "ESSARDS PINIER STK"
              },
              {
                "code": "0921",
                "type": "SAT",
                "value": "LA PLANCHE GEAY STK"
              },
              {
                "code": "0475",
                "type": "SAT",
                "value": "LOURADOUR GEAY STK"
              },
              {
                "code": "0248",
                "type": "SAT",
                "value": "PUY DU LAC L AUBREE PILET STK"
              },
              {
                "code": "0970",
                "type": "SAT",
                "value": "ST GEORGES DES COTEAUX SEGUIN STK"
              }
            ],
            "mainType": "RDU2",
            "offersDeliveryModeId": "17"
          },
          {
            "mainType": "DEP2",
            "offersDeliveryModeId": "18"
          }
        ],
        "harvest": "2018",
        "offerId": "6",
        "offerPictureUrl": "https://static-cf.farmi.com/collect/colza.jpg",
        "offerType": "APF",
        "offerTypeLabel": "Offre prix ferme",
        "priceZoneId": "52",
        "productLabel": "COLZA D HIVER",
        "qualityLabel": "STANDARD",
        "quantityMaxPerCustomer": "0.0000",
        "referenceMarket": "67",
        "referenceMarketLabel": "RDU Bassens",
        "remainingQty": "0.0000",
        "title": "COLZA - PRIX FERME"
      },
      {
        "baseLabel": "FLAT",
        "deliveryTypes": [
          {
            "deliveryModes": [
              {
                "code": "0739",
                "type": "SAT",
                "value": "BALANZAC"
              },
              {
                "code": "0216",
                "type": "SAT",
                "value": "CORME ROYAL"
              },
              {
                "code": "0861",
                "type": "SAT",
                "value": "ESSARDS PINIER STK"
              },
              {
                "code": "0921",
                "type": "SAT",
                "value": "LA PLANCHE GEAY STK"
              },
              {
                "code": "0475",
                "type": "SAT",
                "value": "LOURADOUR GEAY STK"
              },
              {
                "code": "0248",
                "type": "SAT",
                "value": "PUY DU LAC L AUBREE PILET STK"
              },
              {
                "code": "0970",
                "type": "SAT",
                "value": "ST GEORGES DES COTEAUX SEGUIN STK"
              }
            ],
            "deliveryPeriods": [
              {
                "cropPriceCentralPlace": "350.4650",
                "cropPriceDirectFarm": "352.4650",
                "cropPriceRollOn": "342.4650",
                "cropPriceSatellitePlace": "350.4650",
                "harvestType": "Moisson",
                "increase": "0.0000",
                "lastPriceUpdate": "2019-02-18 10:10:15",
                "offersDeliveryPeriodId": "73",
                "periodCode": "MOISSON",
                "periodName": "MOISSON"
              },
              {
                "cropPriceCentralPlace": "352.4650",
                "cropPriceDirectFarm": "354.4650",
                "cropPriceRollOn": "344.4650",
                "cropPriceSatellitePlace": "352.4650",
                "harvestType": "Hors-moisson",
                "increase": "0.0000",
                "lastPriceUpdate": "2019-02-18 10:10:15",
                "offersDeliveryPeriodId": "74",
                "periodCode": "septembre",
                "periodName": "SEPT / NOV"
              }
            ],
            "mainType": "RDU1",
            "offersDeliveryModeId": "145"
          },
          {
            "deliveryModes": [
              {
                "code": "0739",
                "type": "SAT",
                "value": "BALANZAC"
              },
              {
                "code": "0216",
                "type": "SAT",
                "value": "CORME ROYAL"
              },
              {
                "code": "0861",
                "type": "SAT",
                "value": "ESSARDS PINIER STK"
              },
              {
                "code": "0921",
                "type": "SAT",
                "value": "LA PLANCHE GEAY STK"
              },
              {
                "code": "0475",
                "type": "SAT",
                "value": "LOURADOUR GEAY STK"
              },
              {
                "code": "0248",
                "type": "SAT",
                "value": "PUY DU LAC L AUBREE PILET STK"
              },
              {
                "code": "0970",
                "type": "SAT",
                "value": "ST GEORGES DES COTEAUX SEGUIN STK"
              }
            ],
            "deliveryPeriods": [
              {
                "cropPriceCentralPlace": "350.4650",
                "cropPriceDirectFarm": "352.4650",
                "cropPriceRollOn": "342.4650",
                "cropPriceSatellitePlace": "350.4650",
                "harvestType": "Moisson",
                "increase": "0.0000",
                "lastPriceUpdate": "2019-02-18 10:10:15",
                "offersDeliveryPeriodId": "73",
                "periodCode": "MOISSON",
                "periodName": "MOISSON"
              },
              {
                "cropPriceCentralPlace": "352.4650",
                "cropPriceDirectFarm": "354.4650",
                "cropPriceRollOn": "344.4650",
                "cropPriceSatellitePlace": "352.4650",
                "harvestType": "Hors-moisson",
                "increase": "0.0000",
                "lastPriceUpdate": "2019-02-18 10:10:15",
                "offersDeliveryPeriodId": "74",
                "periodCode": "septembre",
                "periodName": "SEPT / NOV"
              }
            ],
            "mainType": "RDU2",
            "offersDeliveryModeId": "146"
          }
        ],
        "harvest": "2019",
        "offerId": "80",
        "offerPictureUrl": "https://static-cf.farmi.com/collect/colza.jpg",
        "offerType": "APF",
        "offerTypeLabel": "Offre prix ferme",
        "priceZoneId": "52",
        "productLabel": "COLZA D HIVER",
        "qualityLabel": "STANDARD",
        "quantityMaxPerCustomer": "0.0000",
        "referenceMarket": "67",
        "referenceMarketLabel": "RDU Bassens",
        "remainingQty": "0.0000",
        "title": "COLZA D'HIVER"
      }
    ]
  }
}

Validation #575

Success

The input JSON schema validates the input JSON instance (JSON Schema Draft 4).

JSON Schema

{
  "additionalProperties": false,
  "properties": {
    "meta": {
      "properties": {
        "current_page": {
          "type": "integer"
        },
        "total_pages": {
          "type": "integer"
        }
      },
      "type": "object"
    },
    "resources": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "added_at": {
            "description": "When the current user added the resource",
            "format": "datetime",
            "type": "string"
          },
          "archived": {
            "description": "Indicates if the resource was archived by the user.",
            "type": "boolean"
          },
          "author": {
            "anyOf": [
              {
                "description": "Who was identified as the author of the resource",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "duration_in_minutes": {
            "description": "Reading time",
            "type": "integer"
          },
          "id": {
            "type": "string"
          },
          "kind": {
            "description": "Type of resource\r\nweb: web article, PDF file or Word file.",
            "enum": [
              "web",
              "pdf",
              "word"
            ],
            "type": "string"
          },
          "raw_link": {
            "description": "Link of the resource if it's a web article or a PDF/Word file.",
            "type": "string"
          },
          "source": {
            "anyOf": [
              {
                "description": "Website where the resource comes from (web articles only for now)",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "title": {
            "description": "Title of the article/document or default title for the resource",
            "type": "string"
          }
        },
        "required": [
          "added_at",
          "archived",
          "author",
          "duration_in_minutes",
          "id",
          "kind",
          "raw_link",
          "source",
          "title"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "resources"
  ],
  "title": "Resource - AddedResource",
  "type": "object"
}

JSON instance

{
  "resources": [
    {
      "added_at": "1992-07-09T08:08:42.451Z",
      "archived": false,
      "author": null,
      "duration_in_minutes": -977073,
      "id": "sit et",
      "kind": "web",
      "raw_link": "dolore voluptate et proident",
      "source": null,
      "title": "sed exercitation consectetur pariatur voluptate"
    },
    {
      "added_at": "2003-05-28T20:39:42.085Z",
      "archived": false,
      "author": null,
      "duration_in_minutes": -43801446,
      "id": "officia adipisicing anim qui",
      "kind": "word",
      "raw_link": "adipisicing",
      "source": "veniam elit aute",
      "title": "qui minim"
    }
  ]
}

Validation #574

Success

The input JSON schema validates the input JSON instance (JSON Schema Draft 4).

JSON Schema

{
  "additionalProperties": false,
  "properties": {
    "meta": {
      "properties": {
        "current_page": {
          "type": "integer"
        },
        "total_pages": {
          "type": "integer"
        }
      },
      "type": "object"
    },
    "resources": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "added_at": {
            "description": "When the current user added the resource",
            "format": "datetime",
            "type": "string"
          },
          "archived": {
            "description": "Indicates if the resource was archived by the user.",
            "type": "boolean"
          },
          "author": {
            "anyOf": [
              {
                "description": "Who was identified as the author of the resource",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "duration_in_minutes": {
            "description": "Reading time",
            "type": "integer"
          },
          "id": {
            "type": "string"
          },
          "kind": {
            "description": "Type of resource\r\nweb: web article, PDF file or Word file.",
            "enum": [
              "web",
              "pdf",
              "word"
            ],
            "type": "string"
          },
          "raw_link": {
            "description": "Link of the resource if it's a web article or a PDF/Word file.",
            "type": "string"
          },
          "source": {
            "anyOf": [
              {
                "description": "Website where the resource comes from (web articles only for now)",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "title": {
            "description": "Title of the article/document or default title for the resource",
            "type": "string"
          }
        },
        "required": [
          "added_at",
          "archived",
          "author",
          "duration_in_minutes",
          "id",
          "kind",
          "raw_link",
          "source",
          "title"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "resources"
  ],
  "title": "Resource - AddedResource",
  "type": "object"
}

JSON instance

{
  "resources": [
    {
      "added_at": "1992-07-09T08:08:42.451Z",
      "archived": false,
      "author": null,
      "duration_in_minutes": -977073,
      "id": "sit et",
      "kind": "web",
      "raw_link": "dolore voluptate et proident",
      "source": null,
      "title": "sed exercitation consectetur pariatur voluptate"
    },
    {
      "added_at": "2003-05-28T20:39:42.085Z",
      "archived": false,
      "author": null,
      "duration_in_minutes": -43801446,
      "id": "officia adipisicing anim qui",
      "kind": "word",
      "raw_link": "adipisicing",
      "source": "veniam elit aute",
      "title": "qui minim"
    }
  ]
}

Validation #541

Success

The input JSON schema validates the input JSON instance (JSON Schema Draft 4).

JSON Schema

{
  "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"
}

JSON instance

{
  "country_code": "FR",
  "email": "pierre.ferrand@fabernovel.com",
  "eula_version": "3.0.0",
  "first_name": "Pierre",
  "last_name": "Ferrand",
  "password": "123456",
  "phone_number": "0645785611",
  "zip_code": "92500"
}

Validation #540

Success

The input JSON schema validates the input JSON instance (JSON Schema Draft 4).

JSON Schema

{
  "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\r\n8=Ouvert 24h/24h",
          "maximum": 8,
          "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": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "mobile_number": {
            "anyOf": [
              {
                "description": "J'ai supprimé le scheme phone number, car nous pouvions avoir des 00 00 00 00 00 qui ne matchent pas le scheme",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "name": {
            "type": "string"
          },
          "opening_hours": {
            "items": {
              "$ref": "#/definitions/DefaultOpeningHour_562",
              "type": "object"
            },
            "maxItems": 8,
            "minItems": 0,
            "type": "array"
          },
          "owner": {
            "type": "string"
          },
          "phone_number": {
            "anyOf": [
              {
                "description": "J'ai supprimé le scheme phone number, car nous pouvions avoir des numéros étranges qui ne matchent pas le scheme",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "region": {
            "type": "string"
          },
          "timezone": {
            "type": "string"
          },
          "zip_code": {
            "description": "j'ai supprimé le scheme zipcode car on avait des zipcode à 6 chiffres ou 4 chiffres parfois",
            "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"
}

JSON instance

{
  "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": [
        {
          "afternoon_end": "2019-02-15T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-15",
          "morning_end": null,
          "morning_start": "2019-02-15T06:32:00+00:00",
          "opening_periods": [
            "2019-02-15T05:32:00+00:00/2019-02-15T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-16T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-16",
          "morning_end": null,
          "morning_start": "2019-02-16T06:32:00+00:00",
          "opening_periods": [
            "2019-02-16T05:32:00+00:00/2019-02-16T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-17T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-17",
          "morning_end": null,
          "morning_start": "2019-02-17T06:32:00+00:00",
          "opening_periods": [
            "2019-02-17T05:32:00+00:00/2019-02-17T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-18T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-18",
          "morning_end": null,
          "morning_start": "2019-02-18T06:32:00+00:00",
          "opening_periods": [
            "2019-02-18T05:32:00+00:00/2019-02-18T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-19T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-19",
          "morning_end": null,
          "morning_start": "2019-02-19T06:32:00+00:00",
          "opening_periods": [
            "2019-02-19T05:32:00+00:00/2019-02-19T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-20T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-20",
          "morning_end": null,
          "morning_start": "2019-02-20T06:32:00+00:00",
          "opening_periods": [
            "2019-02-20T05:32:00+00:00/2019-02-20T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-21T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-21",
          "morning_end": null,
          "morning_start": "2019-02-21T06:32:00+00:00",
          "opening_periods": [
            "2019-02-21T05:32:00+00:00/2019-02-21T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-22T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-22",
          "morning_end": null,
          "morning_start": "2019-02-22T06:32:00+00:00",
          "opening_periods": [
            "2019-02-22T05:32:00+00:00/2019-02-22T13:30:00+00:00"
          ],
          "status": 5
        }
      ],
      "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": [
        {
          "afternoon_end": null,
          "afternoon_start": null,
          "date": "2019-02-15",
          "morning_end": null,
          "morning_start": null,
          "opening_periods": [],
          "status": 8
        },
        {
          "afternoon_end": null,
          "afternoon_start": null,
          "date": "2019-02-16",
          "morning_end": null,
          "morning_start": null,
          "opening_periods": [],
          "status": 8
        },
        {
          "afternoon_end": null,
          "afternoon_start": null,
          "date": "2019-02-17",
          "morning_end": null,
          "morning_start": null,
          "opening_periods": [],
          "status": 8
        }
      ],
      "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": "Input",
      "address": "Zlechovská 1699",
      "city": "Staré Mesto",
      "country": "CZ",
      "email": "vhrubos@soufflet.com",
      "id": "338",
      "latitude": 49.069808,
      "longitude": 17.4127,
      "manager_name": "Vlastimil HRUBOS",
      "mobile_number": null,
      "name": "Stare Mesto",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Morava",
      "timezone": "Europe/Prague",
      "zip_code": "686 02"
    },
    {
      "activities_names": "Input",
      "address": "Krenovská 1375",
      "city": "Kojetín",
      "country": "CZ",
      "email": "fkulisek@soufflet.com",
      "id": "341",
      "latitude": 49.339092,
      "longitude": 17.294278,
      "manager_name": "Frantisek KULISEK",
      "mobile_number": null,
      "name": "Kojetin",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Morava",
      "timezone": "Europe/Prague",
      "zip_code": "752 01"
    },
    {
      "activities_names": "Input",
      "address": "Skalice nad Svitavou 157",
      "city": "Skalice nad Svitavou",
      "country": "CZ",
      "email": "jfiala@soufflet.com",
      "id": "343",
      "latitude": 49.481986,
      "longitude": 16.59905,
      "manager_name": "Jiri FIALA",
      "mobile_number": null,
      "name": "Skalice",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Morava",
      "timezone": "Europe/Prague",
      "zip_code": "679 01"
    },
    {
      "activities_names": "Input",
      "address": "Litovická 672",
      "city": "Hostivice u Prahy",
      "country": "CZ",
      "email": "onovotny@soufflet.com",
      "id": "340",
      "latitude": 50.074381,
      "longitude": 14.222619,
      "manager_name": "Oldrich NOVOTNY",
      "mobile_number": null,
      "name": "Litovice",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Čechy",
      "timezone": "Europe/Prague",
      "zip_code": "253 01"
    },
    {
      "activities_names": "Input",
      "address": "U Výkupního strediska 218 (EN)",
      "city": "Praha 5 - Reporyje (EN)",
      "country": "CZ",
      "email": "lsmejkalova@soufflet.com",
      "id": "342",
      "latitude": 50.033483,
      "longitude": 14.306597,
      "manager_name": "Lenka SMEJKALOVA (EN)",
      "mobile_number": null,
      "name": "Reporyje (EN)",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Čechy",
      "timezone": "Europe/Prague",
      "zip_code": "155 00"
    },
    {
      "activities_names": "Input",
      "address": "Ulica Margoninska 8",
      "city": "Golancz",
      "country": "PL",
      "email": "mzielonacki@soufflet.com",
      "id": "336",
      "latitude": 52.944511,
      "longitude": 17.287761,
      "manager_name": "Marcin ZIELONACKI",
      "mobile_number": null,
      "name": "Golancz",
      "opening_hours": [],
      "owner": "Soufflet Agro Polska",
      "phone_number": null,
      "region": "Velkopolské vojvodství",
      "timezone": "Europe/Warsaw",
      "zip_code": "62-130"
    },
    {
      "activities_names": "Input",
      "address": "ul. Gostynska 59",
      "city": "Koscian",
      "country": "PL",
      "email": "lnowaczyk@soufflet.com",
      "id": "339",
      "latitude": 52.079953,
      "longitude": 16.663553,
      "manager_name": "Lukasz NOWACZYK",
      "mobile_number": null,
      "name": "Koscian",
      "opening_hours": [],
      "owner": "Soufflet Agro Polska",
      "phone_number": null,
      "region": "Velkopolské vojvodství",
      "timezone": "Europe/Warsaw",
      "zip_code": "64-000"
    },
    {
      "activities_names": "Input",
      "address": "ul. Zabkowicka 80",
      "city": "Strzelin",
      "country": "PL",
      "email": "mcierpucha@soufflet.com",
      "id": "337",
      "latitude": 50.759956,
      "longitude": 17.0426,
      "manager_name": "Marek Cierpucha",
      "mobile_number": null,
      "name": "Stzrelin",
      "opening_hours": [],
      "owner": "Soufflet Agro Polska",
      "phone_number": null,
      "region": "Dolnoslezské vojvodství",
      "timezone": "Europe/Warsaw",
      "zip_code": "57-100"
    },
    {
      "activities_names": "Input",
      "address": "st Baldovinesti 9 Braila",
      "city": "Braila",
      "country": "RO",
      "email": "gheil@soufflet.com",
      "id": "344",
      "latitude": 45.305306,
      "longitude": 27.934342,
      "manager_name": "Gheorghe HEIL",
      "mobile_number": null,
      "name": "Braila",
      "opening_hours": [],
      "owner": "Soufflet Agro Romania",
      "phone_number": null,
      "region": "Brăila",
      "timezone": "Europe/Bucharest",
      "zip_code": "810167"
    },
    {
      "activities_names": "Input",
      "address": "Strada Garii 88",
      "city": "Tandarei",
      "country": "RO",
      "email": "istan@soufflet.com",
      "id": "345",
      "latitude": 44.654439,
      "longitude": 27.645542,
      "manager_name": "Ion STAN",
      "mobile_number": null,
      "name": "Tandarei",
      "opening_hours": [],
      "owner": "Soufflet Agro Romania",
      "phone_number": null,
      "region": "Ialomița",
      "timezone": "Europe/Bucharest",
      "zip_code": "925200"
    },
    {
      "activities_names": "Input",
      "address": "Vokzalna street 1",
      "city": "Zhashkiv",
      "country": "UA",
      "email": "npalyonko@soufflet.com",
      "id": "332",
      "latitude": 49.244408,
      "longitude": 30.095464,
      "manager_name": "Nina PALYONKO",
      "mobile_number": null,
      "name": "Zhaskiv",
      "opening_hours": [],
      "owner": "Soufflet Agro Ukraine",
      "phone_number": null,
      "region": "Cherkassy",
      "timezone": "Europe/Kiev",
      "zip_code": "19200"
    },
    {
      "activities_names": "Input",
      "address": "Pryvokzalna str 7",
      "city": "Carolina",
      "country": "UA",
      "email": "vtraydakalo@soufflet.com",
      "id": "333",
      "latitude": 48.927228,
      "longitude": 28.959914,
      "manager_name": "Victor TRAYDAKALO",
      "mobile_number": null,
      "name": "Karolina",
      "opening_hours": [],
      "owner": "Soufflet Agro Ukraine",
      "phone_number": null,
      "region": "Nemyriv district",
      "timezone": "Europe/Kiev",
      "zip_code": "22850"
    },
    {
      "activities_names": "Input",
      "address": "Zelena street 1",
      "city": "Gorodok",
      "country": "UA",
      "email": "olipinskyi@soufflet.com",
      "id": "334",
      "latitude": 49.167969,
      "longitude": 26.597175,
      "manager_name": "Oleksandr LIPINSKYI",
      "mobile_number": null,
      "name": "Gorodok",
      "opening_hours": [],
      "owner": "Soufflet Agro Ukraine",
      "phone_number": null,
      "region": "Khmelnytskyi region",
      "timezone": "Europe/Kiev",
      "zip_code": "32000"
    },
    {
      "activities_names": "Input",
      "address": "Ulitsa Khlebozavodskaya 1",
      "city": "Gryazi",
      "country": "RU",
      "email": "achertov@soufflet.com",
      "id": "335",
      "latitude": 52.485006,
      "longitude": 39.940372,
      "manager_name": "Aleksey CHERTOV",
      "mobile_number": null,
      "name": "Griazi",
      "opening_hours": [],
      "owner": "Soufflet Agro Russia",
      "phone_number": null,
      "region": "Lipetskaya oblast'",
      "timezone": "Europe/Moscow",
      "zip_code": "399059"
    }
  ]
}

Validation #539

Failure

The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:

  • The property '#/silos/68/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/68/phone_number' value "1111" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/68/phone_number' of type string did not match the following type: null
  • The property '#/silos/73/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/73/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/73/phone_number' of type string did not match the following type: null
  • The property '#/silos/79/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/79/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/79/phone_number' of type string did not match the following type: null
  • The property '#/silos/94/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/94/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/94/phone_number' of type string did not match the following type: null
  • The property '#/silos/97/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/97/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/97/phone_number' of type string did not match the following type: null
  • The property '#/silos/128/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/128/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/128/phone_number' of type string did not match the following type: null
  • The property '#/silos/129/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/129/phone_number' value "1111" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/129/phone_number' of type string did not match the following type: null
  • The property '#/silos/153/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/153/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/153/phone_number' of type string did not match the following type: null
  • The property '#/silos/159/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/159/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/159/phone_number' of type string did not match the following type: null
  • The property '#/silos/175/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/175/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/175/phone_number' of type string did not match the following type: null
  • The property '#/silos/177/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/177/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/177/phone_number' of type string did not match the following type: null
  • The property '#/silos/178/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/178/phone_number' value "1111" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/178/phone_number' of type string did not match the following type: null
  • The property '#/silos/181/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/181/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/181/phone_number' of type string did not match the following type: null
  • The property '#/silos/182/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/182/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/182/phone_number' of type string did not match the following type: null
  • The property '#/silos/213/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/213/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/213/phone_number' of type string did not match the following type: null
  • The property '#/silos/217/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/217/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/217/phone_number' of type string did not match the following type: null
  • The property '#/silos/229/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/229/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/229/phone_number' of type string did not match the following type: null
  • The property '#/silos/242/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/242/phone_number' value "1111" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/242/phone_number' of type string did not match the following type: null

JSON Schema

{
  "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\r\n8=Ouvert 24h/24h",
          "maximum": 8,
          "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": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "mobile_number": {
            "anyOf": [
              {
                "description": "J'ai supprimé le scheme phone number, car nous pouvions avoir des 00 00 00 00 00 qui ne matchent pas le scheme",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "name": {
            "type": "string"
          },
          "opening_hours": {
            "items": {
              "$ref": "#/definitions/DefaultOpeningHour_562",
              "type": "object"
            },
            "maxItems": 8,
            "minItems": 0,
            "type": "array"
          },
          "owner": {
            "type": "string"
          },
          "phone_number": {
            "anyOf": [
              {
                "pattern": "^(?:(?:\\+|00)[1-9]{0,3}|0)\\s*[1-9](?:[\\s.-]*\\d{2}){4}",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "region": {
            "type": "string"
          },
          "timezone": {
            "type": "string"
          },
          "zip_code": {
            "description": "j'ai supprimé le scheme zipcode car on avait des zipcode à 6 chiffres ou 4 chiffres parfois",
            "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"
}

JSON instance

{
  "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": [
        {
          "afternoon_end": "2019-02-15T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-15",
          "morning_end": null,
          "morning_start": "2019-02-15T06:32:00+00:00",
          "opening_periods": [
            "2019-02-15T05:32:00+00:00/2019-02-15T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-16T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-16",
          "morning_end": null,
          "morning_start": "2019-02-16T06:32:00+00:00",
          "opening_periods": [
            "2019-02-16T05:32:00+00:00/2019-02-16T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-17T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-17",
          "morning_end": null,
          "morning_start": "2019-02-17T06:32:00+00:00",
          "opening_periods": [
            "2019-02-17T05:32:00+00:00/2019-02-17T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-18T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-18",
          "morning_end": null,
          "morning_start": "2019-02-18T06:32:00+00:00",
          "opening_periods": [
            "2019-02-18T05:32:00+00:00/2019-02-18T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-19T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-19",
          "morning_end": null,
          "morning_start": "2019-02-19T06:32:00+00:00",
          "opening_periods": [
            "2019-02-19T05:32:00+00:00/2019-02-19T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-20T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-20",
          "morning_end": null,
          "morning_start": "2019-02-20T06:32:00+00:00",
          "opening_periods": [
            "2019-02-20T05:32:00+00:00/2019-02-20T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-21T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-21",
          "morning_end": null,
          "morning_start": "2019-02-21T06:32:00+00:00",
          "opening_periods": [
            "2019-02-21T05:32:00+00:00/2019-02-21T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-22T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-22",
          "morning_end": null,
          "morning_start": "2019-02-22T06:32:00+00:00",
          "opening_periods": [
            "2019-02-22T05:32:00+00:00/2019-02-22T13:30:00+00:00"
          ],
          "status": 5
        }
      ],
      "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": [
        {
          "afternoon_end": null,
          "afternoon_start": null,
          "date": "2019-02-15",
          "morning_end": null,
          "morning_start": null,
          "opening_periods": [],
          "status": 8
        },
        {
          "afternoon_end": null,
          "afternoon_start": null,
          "date": "2019-02-16",
          "morning_end": null,
          "morning_start": null,
          "opening_periods": [],
          "status": 8
        },
        {
          "afternoon_end": null,
          "afternoon_start": null,
          "date": "2019-02-17",
          "morning_end": null,
          "morning_start": null,
          "opening_periods": [],
          "status": 8
        }
      ],
      "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": "Input",
      "address": "Zlechovská 1699",
      "city": "Staré Mesto",
      "country": "CZ",
      "email": "vhrubos@soufflet.com",
      "id": "338",
      "latitude": 49.069808,
      "longitude": 17.4127,
      "manager_name": "Vlastimil HRUBOS",
      "mobile_number": null,
      "name": "Stare Mesto",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Morava",
      "timezone": "Europe/Prague",
      "zip_code": "686 02"
    },
    {
      "activities_names": "Input",
      "address": "Krenovská 1375",
      "city": "Kojetín",
      "country": "CZ",
      "email": "fkulisek@soufflet.com",
      "id": "341",
      "latitude": 49.339092,
      "longitude": 17.294278,
      "manager_name": "Frantisek KULISEK",
      "mobile_number": null,
      "name": "Kojetin",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Morava",
      "timezone": "Europe/Prague",
      "zip_code": "752 01"
    },
    {
      "activities_names": "Input",
      "address": "Skalice nad Svitavou 157",
      "city": "Skalice nad Svitavou",
      "country": "CZ",
      "email": "jfiala@soufflet.com",
      "id": "343",
      "latitude": 49.481986,
      "longitude": 16.59905,
      "manager_name": "Jiri FIALA",
      "mobile_number": null,
      "name": "Skalice",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Morava",
      "timezone": "Europe/Prague",
      "zip_code": "679 01"
    },
    {
      "activities_names": "Input",
      "address": "Litovická 672",
      "city": "Hostivice u Prahy",
      "country": "CZ",
      "email": "onovotny@soufflet.com",
      "id": "340",
      "latitude": 50.074381,
      "longitude": 14.222619,
      "manager_name": "Oldrich NOVOTNY",
      "mobile_number": null,
      "name": "Litovice",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Čechy",
      "timezone": "Europe/Prague",
      "zip_code": "253 01"
    },
    {
      "activities_names": "Input",
      "address": "U Výkupního strediska 218 (EN)",
      "city": "Praha 5 - Reporyje (EN)",
      "country": "CZ",
      "email": "lsmejkalova@soufflet.com",
      "id": "342",
      "latitude": 50.033483,
      "longitude": 14.306597,
      "manager_name": "Lenka SMEJKALOVA (EN)",
      "mobile_number": null,
      "name": "Reporyje (EN)",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Čechy",
      "timezone": "Europe/Prague",
      "zip_code": "155 00"
    },
    {
      "activities_names": "Input",
      "address": "Ulica Margoninska 8",
      "city": "Golancz",
      "country": "PL",
      "email": "mzielonacki@soufflet.com",
      "id": "336",
      "latitude": 52.944511,
      "longitude": 17.287761,
      "manager_name": "Marcin ZIELONACKI",
      "mobile_number": null,
      "name": "Golancz",
      "opening_hours": [],
      "owner": "Soufflet Agro Polska",
      "phone_number": null,
      "region": "Velkopolské vojvodství",
      "timezone": "Europe/Warsaw",
      "zip_code": "62-130"
    },
    {
      "activities_names": "Input",
      "address": "ul. Gostynska 59",
      "city": "Koscian",
      "country": "PL",
      "email": "lnowaczyk@soufflet.com",
      "id": "339",
      "latitude": 52.079953,
      "longitude": 16.663553,
      "manager_name": "Lukasz NOWACZYK",
      "mobile_number": null,
      "name": "Koscian",
      "opening_hours": [],
      "owner": "Soufflet Agro Polska",
      "phone_number": null,
      "region": "Velkopolské vojvodství",
      "timezone": "Europe/Warsaw",
      "zip_code": "64-000"
    },
    {
      "activities_names": "Input",
      "address": "ul. Zabkowicka 80",
      "city": "Strzelin",
      "country": "PL",
      "email": "mcierpucha@soufflet.com",
      "id": "337",
      "latitude": 50.759956,
      "longitude": 17.0426,
      "manager_name": "Marek Cierpucha",
      "mobile_number": null,
      "name": "Stzrelin",
      "opening_hours": [],
      "owner": "Soufflet Agro Polska",
      "phone_number": null,
      "region": "Dolnoslezské vojvodství",
      "timezone": "Europe/Warsaw",
      "zip_code": "57-100"
    },
    {
      "activities_names": "Input",
      "address": "st Baldovinesti 9 Braila",
      "city": "Braila",
      "country": "RO",
      "email": "gheil@soufflet.com",
      "id": "344",
      "latitude": 45.305306,
      "longitude": 27.934342,
      "manager_name": "Gheorghe HEIL",
      "mobile_number": null,
      "name": "Braila",
      "opening_hours": [],
      "owner": "Soufflet Agro Romania",
      "phone_number": null,
      "region": "Brăila",
      "timezone": "Europe/Bucharest",
      "zip_code": "810167"
    },
    {
      "activities_names": "Input",
      "address": "Strada Garii 88",
      "city": "Tandarei",
      "country": "RO",
      "email": "istan@soufflet.com",
      "id": "345",
      "latitude": 44.654439,
      "longitude": 27.645542,
      "manager_name": "Ion STAN",
      "mobile_number": null,
      "name": "Tandarei",
      "opening_hours": [],
      "owner": "Soufflet Agro Romania",
      "phone_number": null,
      "region": "Ialomița",
      "timezone": "Europe/Bucharest",
      "zip_code": "925200"
    },
    {
      "activities_names": "Input",
      "address": "Vokzalna street 1",
      "city": "Zhashkiv",
      "country": "UA",
      "email": "npalyonko@soufflet.com",
      "id": "332",
      "latitude": 49.244408,
      "longitude": 30.095464,
      "manager_name": "Nina PALYONKO",
      "mobile_number": null,
      "name": "Zhaskiv",
      "opening_hours": [],
      "owner": "Soufflet Agro Ukraine",
      "phone_number": null,
      "region": "Cherkassy",
      "timezone": "Europe/Kiev",
      "zip_code": "19200"
    },
    {
      "activities_names": "Input",
      "address": "Pryvokzalna str 7",
      "city": "Carolina",
      "country": "UA",
      "email": "vtraydakalo@soufflet.com",
      "id": "333",
      "latitude": 48.927228,
      "longitude": 28.959914,
      "manager_name": "Victor TRAYDAKALO",
      "mobile_number": null,
      "name": "Karolina",
      "opening_hours": [],
      "owner": "Soufflet Agro Ukraine",
      "phone_number": null,
      "region": "Nemyriv district",
      "timezone": "Europe/Kiev",
      "zip_code": "22850"
    },
    {
      "activities_names": "Input",
      "address": "Zelena street 1",
      "city": "Gorodok",
      "country": "UA",
      "email": "olipinskyi@soufflet.com",
      "id": "334",
      "latitude": 49.167969,
      "longitude": 26.597175,
      "manager_name": "Oleksandr LIPINSKYI",
      "mobile_number": null,
      "name": "Gorodok",
      "opening_hours": [],
      "owner": "Soufflet Agro Ukraine",
      "phone_number": null,
      "region": "Khmelnytskyi region",
      "timezone": "Europe/Kiev",
      "zip_code": "32000"
    },
    {
      "activities_names": "Input",
      "address": "Ulitsa Khlebozavodskaya 1",
      "city": "Gryazi",
      "country": "RU",
      "email": "achertov@soufflet.com",
      "id": "335",
      "latitude": 52.485006,
      "longitude": 39.940372,
      "manager_name": "Aleksey CHERTOV",
      "mobile_number": null,
      "name": "Griazi",
      "opening_hours": [],
      "owner": "Soufflet Agro Russia",
      "phone_number": null,
      "region": "Lipetskaya oblast'",
      "timezone": "Europe/Moscow",
      "zip_code": "399059"
    }
  ]
}

Validation #538

Failure

The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:

  • The property '#/silos/27/zip_code' value "2330" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b4d6570b-9e5f-5790-aa7a-c4f0f9964242
  • The property '#/silos/68/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/68/phone_number' value "1111" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/68/phone_number' of type string did not match the following type: null
  • The property '#/silos/73/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/73/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/73/phone_number' of type string did not match the following type: null
  • The property '#/silos/79/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/79/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/79/phone_number' of type string did not match the following type: null
  • The property '#/silos/94/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/94/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/94/phone_number' of type string did not match the following type: null
  • The property '#/silos/97/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/97/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/97/phone_number' of type string did not match the following type: null
  • The property '#/silos/128/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/128/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/128/phone_number' of type string did not match the following type: null
  • The property '#/silos/129/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/129/phone_number' value "1111" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/129/phone_number' of type string did not match the following type: null
  • The property '#/silos/153/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/153/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/153/phone_number' of type string did not match the following type: null
  • The property '#/silos/159/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/159/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/159/phone_number' of type string did not match the following type: null
  • The property '#/silos/175/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/175/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/175/phone_number' of type string did not match the following type: null
  • The property '#/silos/177/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/177/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/177/phone_number' of type string did not match the following type: null
  • The property '#/silos/178/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/178/phone_number' value "1111" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/178/phone_number' of type string did not match the following type: null
  • The property '#/silos/181/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/181/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/181/phone_number' of type string did not match the following type: null
  • The property '#/silos/182/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/182/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/182/phone_number' of type string did not match the following type: null
  • The property '#/silos/213/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/213/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/213/phone_number' of type string did not match the following type: null
  • The property '#/silos/217/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/217/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/217/phone_number' of type string did not match the following type: null
  • The property '#/silos/229/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/229/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/229/phone_number' of type string did not match the following type: null
  • The property '#/silos/242/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/242/phone_number' value "1111" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/242/phone_number' of type string did not match the following type: null
  • The property '#/silos/243/zip_code' value "686 02" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b4d6570b-9e5f-5790-aa7a-c4f0f9964242
  • The property '#/silos/244/zip_code' value "752 01" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b4d6570b-9e5f-5790-aa7a-c4f0f9964242
  • The property '#/silos/245/zip_code' value "679 01" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b4d6570b-9e5f-5790-aa7a-c4f0f9964242
  • The property '#/silos/246/zip_code' value "253 01" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b4d6570b-9e5f-5790-aa7a-c4f0f9964242
  • The property '#/silos/247/zip_code' value "155 00" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b4d6570b-9e5f-5790-aa7a-c4f0f9964242
  • The property '#/silos/248/zip_code' value "62-130" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b4d6570b-9e5f-5790-aa7a-c4f0f9964242
  • The property '#/silos/249/zip_code' value "64-000" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b4d6570b-9e5f-5790-aa7a-c4f0f9964242
  • The property '#/silos/250/zip_code' value "57-100" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b4d6570b-9e5f-5790-aa7a-c4f0f9964242
  • The property '#/silos/251/zip_code' value "810167" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b4d6570b-9e5f-5790-aa7a-c4f0f9964242
  • The property '#/silos/252/zip_code' value "925200" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b4d6570b-9e5f-5790-aa7a-c4f0f9964242
  • The property '#/silos/256/zip_code' value "399059" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b4d6570b-9e5f-5790-aa7a-c4f0f9964242

JSON Schema

{
  "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\r\n8=Ouvert 24h/24h",
          "maximum": 8,
          "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": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "mobile_number": {
            "anyOf": [
              {
                "description": "J'ai supprimé le scheme phone number, car nous pouvions avoir des 00 00 00 00 00 qui ne matchent pas le scheme",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "name": {
            "type": "string"
          },
          "opening_hours": {
            "items": {
              "$ref": "#/definitions/DefaultOpeningHour_562",
              "type": "object"
            },
            "maxItems": 8,
            "minItems": 0,
            "type": "array"
          },
          "owner": {
            "type": "string"
          },
          "phone_number": {
            "anyOf": [
              {
                "pattern": "^(?:(?:\\+|00)[1-9]{0,3}|0)\\s*[1-9](?:[\\s.-]*\\d{2}){4}",
                "type": "string"
              },
              {
                "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"
}

JSON instance

{
  "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": [
        {
          "afternoon_end": "2019-02-15T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-15",
          "morning_end": null,
          "morning_start": "2019-02-15T06:32:00+00:00",
          "opening_periods": [
            "2019-02-15T05:32:00+00:00/2019-02-15T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-16T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-16",
          "morning_end": null,
          "morning_start": "2019-02-16T06:32:00+00:00",
          "opening_periods": [
            "2019-02-16T05:32:00+00:00/2019-02-16T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-17T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-17",
          "morning_end": null,
          "morning_start": "2019-02-17T06:32:00+00:00",
          "opening_periods": [
            "2019-02-17T05:32:00+00:00/2019-02-17T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-18T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-18",
          "morning_end": null,
          "morning_start": "2019-02-18T06:32:00+00:00",
          "opening_periods": [
            "2019-02-18T05:32:00+00:00/2019-02-18T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-19T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-19",
          "morning_end": null,
          "morning_start": "2019-02-19T06:32:00+00:00",
          "opening_periods": [
            "2019-02-19T05:32:00+00:00/2019-02-19T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-20T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-20",
          "morning_end": null,
          "morning_start": "2019-02-20T06:32:00+00:00",
          "opening_periods": [
            "2019-02-20T05:32:00+00:00/2019-02-20T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-21T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-21",
          "morning_end": null,
          "morning_start": "2019-02-21T06:32:00+00:00",
          "opening_periods": [
            "2019-02-21T05:32:00+00:00/2019-02-21T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-22T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-22",
          "morning_end": null,
          "morning_start": "2019-02-22T06:32:00+00:00",
          "opening_periods": [
            "2019-02-22T05:32:00+00:00/2019-02-22T13:30:00+00:00"
          ],
          "status": 5
        }
      ],
      "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": [
        {
          "afternoon_end": null,
          "afternoon_start": null,
          "date": "2019-02-15",
          "morning_end": null,
          "morning_start": null,
          "opening_periods": [],
          "status": 8
        },
        {
          "afternoon_end": null,
          "afternoon_start": null,
          "date": "2019-02-16",
          "morning_end": null,
          "morning_start": null,
          "opening_periods": [],
          "status": 8
        },
        {
          "afternoon_end": null,
          "afternoon_start": null,
          "date": "2019-02-17",
          "morning_end": null,
          "morning_start": null,
          "opening_periods": [],
          "status": 8
        }
      ],
      "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": "Input",
      "address": "Zlechovská 1699",
      "city": "Staré Mesto",
      "country": "CZ",
      "email": "vhrubos@soufflet.com",
      "id": "338",
      "latitude": 49.069808,
      "longitude": 17.4127,
      "manager_name": "Vlastimil HRUBOS",
      "mobile_number": null,
      "name": "Stare Mesto",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Morava",
      "timezone": "Europe/Prague",
      "zip_code": "686 02"
    },
    {
      "activities_names": "Input",
      "address": "Krenovská 1375",
      "city": "Kojetín",
      "country": "CZ",
      "email": "fkulisek@soufflet.com",
      "id": "341",
      "latitude": 49.339092,
      "longitude": 17.294278,
      "manager_name": "Frantisek KULISEK",
      "mobile_number": null,
      "name": "Kojetin",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Morava",
      "timezone": "Europe/Prague",
      "zip_code": "752 01"
    },
    {
      "activities_names": "Input",
      "address": "Skalice nad Svitavou 157",
      "city": "Skalice nad Svitavou",
      "country": "CZ",
      "email": "jfiala@soufflet.com",
      "id": "343",
      "latitude": 49.481986,
      "longitude": 16.59905,
      "manager_name": "Jiri FIALA",
      "mobile_number": null,
      "name": "Skalice",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Morava",
      "timezone": "Europe/Prague",
      "zip_code": "679 01"
    },
    {
      "activities_names": "Input",
      "address": "Litovická 672",
      "city": "Hostivice u Prahy",
      "country": "CZ",
      "email": "onovotny@soufflet.com",
      "id": "340",
      "latitude": 50.074381,
      "longitude": 14.222619,
      "manager_name": "Oldrich NOVOTNY",
      "mobile_number": null,
      "name": "Litovice",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Čechy",
      "timezone": "Europe/Prague",
      "zip_code": "253 01"
    },
    {
      "activities_names": "Input",
      "address": "U Výkupního strediska 218 (EN)",
      "city": "Praha 5 - Reporyje (EN)",
      "country": "CZ",
      "email": "lsmejkalova@soufflet.com",
      "id": "342",
      "latitude": 50.033483,
      "longitude": 14.306597,
      "manager_name": "Lenka SMEJKALOVA (EN)",
      "mobile_number": null,
      "name": "Reporyje (EN)",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Čechy",
      "timezone": "Europe/Prague",
      "zip_code": "155 00"
    },
    {
      "activities_names": "Input",
      "address": "Ulica Margoninska 8",
      "city": "Golancz",
      "country": "PL",
      "email": "mzielonacki@soufflet.com",
      "id": "336",
      "latitude": 52.944511,
      "longitude": 17.287761,
      "manager_name": "Marcin ZIELONACKI",
      "mobile_number": null,
      "name": "Golancz",
      "opening_hours": [],
      "owner": "Soufflet Agro Polska",
      "phone_number": null,
      "region": "Velkopolské vojvodství",
      "timezone": "Europe/Warsaw",
      "zip_code": "62-130"
    },
    {
      "activities_names": "Input",
      "address": "ul. Gostynska 59",
      "city": "Koscian",
      "country": "PL",
      "email": "lnowaczyk@soufflet.com",
      "id": "339",
      "latitude": 52.079953,
      "longitude": 16.663553,
      "manager_name": "Lukasz NOWACZYK",
      "mobile_number": null,
      "name": "Koscian",
      "opening_hours": [],
      "owner": "Soufflet Agro Polska",
      "phone_number": null,
      "region": "Velkopolské vojvodství",
      "timezone": "Europe/Warsaw",
      "zip_code": "64-000"
    },
    {
      "activities_names": "Input",
      "address": "ul. Zabkowicka 80",
      "city": "Strzelin",
      "country": "PL",
      "email": "mcierpucha@soufflet.com",
      "id": "337",
      "latitude": 50.759956,
      "longitude": 17.0426,
      "manager_name": "Marek Cierpucha",
      "mobile_number": null,
      "name": "Stzrelin",
      "opening_hours": [],
      "owner": "Soufflet Agro Polska",
      "phone_number": null,
      "region": "Dolnoslezské vojvodství",
      "timezone": "Europe/Warsaw",
      "zip_code": "57-100"
    },
    {
      "activities_names": "Input",
      "address": "st Baldovinesti 9 Braila",
      "city": "Braila",
      "country": "RO",
      "email": "gheil@soufflet.com",
      "id": "344",
      "latitude": 45.305306,
      "longitude": 27.934342,
      "manager_name": "Gheorghe HEIL",
      "mobile_number": null,
      "name": "Braila",
      "opening_hours": [],
      "owner": "Soufflet Agro Romania",
      "phone_number": null,
      "region": "Brăila",
      "timezone": "Europe/Bucharest",
      "zip_code": "810167"
    },
    {
      "activities_names": "Input",
      "address": "Strada Garii 88",
      "city": "Tandarei",
      "country": "RO",
      "email": "istan@soufflet.com",
      "id": "345",
      "latitude": 44.654439,
      "longitude": 27.645542,
      "manager_name": "Ion STAN",
      "mobile_number": null,
      "name": "Tandarei",
      "opening_hours": [],
      "owner": "Soufflet Agro Romania",
      "phone_number": null,
      "region": "Ialomița",
      "timezone": "Europe/Bucharest",
      "zip_code": "925200"
    },
    {
      "activities_names": "Input",
      "address": "Vokzalna street 1",
      "city": "Zhashkiv",
      "country": "UA",
      "email": "npalyonko@soufflet.com",
      "id": "332",
      "latitude": 49.244408,
      "longitude": 30.095464,
      "manager_name": "Nina PALYONKO",
      "mobile_number": null,
      "name": "Zhaskiv",
      "opening_hours": [],
      "owner": "Soufflet Agro Ukraine",
      "phone_number": null,
      "region": "Cherkassy",
      "timezone": "Europe/Kiev",
      "zip_code": "19200"
    },
    {
      "activities_names": "Input",
      "address": "Pryvokzalna str 7",
      "city": "Carolina",
      "country": "UA",
      "email": "vtraydakalo@soufflet.com",
      "id": "333",
      "latitude": 48.927228,
      "longitude": 28.959914,
      "manager_name": "Victor TRAYDAKALO",
      "mobile_number": null,
      "name": "Karolina",
      "opening_hours": [],
      "owner": "Soufflet Agro Ukraine",
      "phone_number": null,
      "region": "Nemyriv district",
      "timezone": "Europe/Kiev",
      "zip_code": "22850"
    },
    {
      "activities_names": "Input",
      "address": "Zelena street 1",
      "city": "Gorodok",
      "country": "UA",
      "email": "olipinskyi@soufflet.com",
      "id": "334",
      "latitude": 49.167969,
      "longitude": 26.597175,
      "manager_name": "Oleksandr LIPINSKYI",
      "mobile_number": null,
      "name": "Gorodok",
      "opening_hours": [],
      "owner": "Soufflet Agro Ukraine",
      "phone_number": null,
      "region": "Khmelnytskyi region",
      "timezone": "Europe/Kiev",
      "zip_code": "32000"
    },
    {
      "activities_names": "Input",
      "address": "Ulitsa Khlebozavodskaya 1",
      "city": "Gryazi",
      "country": "RU",
      "email": "achertov@soufflet.com",
      "id": "335",
      "latitude": 52.485006,
      "longitude": 39.940372,
      "manager_name": "Aleksey CHERTOV",
      "mobile_number": null,
      "name": "Griazi",
      "opening_hours": [],
      "owner": "Soufflet Agro Russia",
      "phone_number": null,
      "region": "Lipetskaya oblast'",
      "timezone": "Europe/Moscow",
      "zip_code": "399059"
    }
  ]
}

Validation #537

Failure

The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:

  • The property '#/silos/3/opening_hours' had more items than the allowed 7 in schema b089efc8-64ce-5039-828b-5087fdfd0c22
  • The property '#/silos/27/zip_code' value "2330" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b089efc8-64ce-5039-828b-5087fdfd0c22
  • The property '#/silos/68/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/68/phone_number' value "1111" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/68/phone_number' of type string did not match the following type: null
  • The property '#/silos/73/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/73/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/73/phone_number' of type string did not match the following type: null
  • The property '#/silos/79/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/79/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/79/phone_number' of type string did not match the following type: null
  • The property '#/silos/94/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/94/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/94/phone_number' of type string did not match the following type: null
  • The property '#/silos/97/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/97/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/97/phone_number' of type string did not match the following type: null
  • The property '#/silos/128/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/128/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/128/phone_number' of type string did not match the following type: null
  • The property '#/silos/129/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/129/phone_number' value "1111" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/129/phone_number' of type string did not match the following type: null
  • The property '#/silos/153/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/153/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/153/phone_number' of type string did not match the following type: null
  • The property '#/silos/159/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/159/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/159/phone_number' of type string did not match the following type: null
  • The property '#/silos/175/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/175/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/175/phone_number' of type string did not match the following type: null
  • The property '#/silos/177/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/177/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/177/phone_number' of type string did not match the following type: null
  • The property '#/silos/178/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/178/phone_number' value "1111" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/178/phone_number' of type string did not match the following type: null
  • The property '#/silos/181/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/181/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/181/phone_number' of type string did not match the following type: null
  • The property '#/silos/182/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/182/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/182/phone_number' of type string did not match the following type: null
  • The property '#/silos/213/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/213/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/213/phone_number' of type string did not match the following type: null
  • The property '#/silos/217/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/217/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/217/phone_number' of type string did not match the following type: null
  • The property '#/silos/229/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/229/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/229/phone_number' of type string did not match the following type: null
  • The property '#/silos/242/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/242/phone_number' value "1111" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/242/phone_number' of type string did not match the following type: null
  • The property '#/silos/243/zip_code' value "686 02" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b089efc8-64ce-5039-828b-5087fdfd0c22
  • The property '#/silos/244/zip_code' value "752 01" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b089efc8-64ce-5039-828b-5087fdfd0c22
  • The property '#/silos/245/zip_code' value "679 01" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b089efc8-64ce-5039-828b-5087fdfd0c22
  • The property '#/silos/246/zip_code' value "253 01" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b089efc8-64ce-5039-828b-5087fdfd0c22
  • The property '#/silos/247/zip_code' value "155 00" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b089efc8-64ce-5039-828b-5087fdfd0c22
  • The property '#/silos/248/zip_code' value "62-130" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b089efc8-64ce-5039-828b-5087fdfd0c22
  • The property '#/silos/249/zip_code' value "64-000" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b089efc8-64ce-5039-828b-5087fdfd0c22
  • The property '#/silos/250/zip_code' value "57-100" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b089efc8-64ce-5039-828b-5087fdfd0c22
  • The property '#/silos/251/zip_code' value "810167" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b089efc8-64ce-5039-828b-5087fdfd0c22
  • The property '#/silos/252/zip_code' value "925200" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b089efc8-64ce-5039-828b-5087fdfd0c22
  • The property '#/silos/256/zip_code' value "399059" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema b089efc8-64ce-5039-828b-5087fdfd0c22

JSON Schema

{
  "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\r\n8=Ouvert 24h/24h",
          "maximum": 8,
          "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": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "mobile_number": {
            "anyOf": [
              {
                "description": "J'ai supprimé le scheme phone number, car nous pouvions avoir des 00 00 00 00 00 qui ne matchent pas le scheme",
                "type": "string"
              },
              {
                "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": {
            "anyOf": [
              {
                "pattern": "^(?:(?:\\+|00)[1-9]{0,3}|0)\\s*[1-9](?:[\\s.-]*\\d{2}){4}",
                "type": "string"
              },
              {
                "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"
}

JSON instance

{
  "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": [
        {
          "afternoon_end": "2019-02-15T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-15",
          "morning_end": null,
          "morning_start": "2019-02-15T06:32:00+00:00",
          "opening_periods": [
            "2019-02-15T05:32:00+00:00/2019-02-15T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-16T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-16",
          "morning_end": null,
          "morning_start": "2019-02-16T06:32:00+00:00",
          "opening_periods": [
            "2019-02-16T05:32:00+00:00/2019-02-16T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-17T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-17",
          "morning_end": null,
          "morning_start": "2019-02-17T06:32:00+00:00",
          "opening_periods": [
            "2019-02-17T05:32:00+00:00/2019-02-17T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-18T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-18",
          "morning_end": null,
          "morning_start": "2019-02-18T06:32:00+00:00",
          "opening_periods": [
            "2019-02-18T05:32:00+00:00/2019-02-18T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-19T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-19",
          "morning_end": null,
          "morning_start": "2019-02-19T06:32:00+00:00",
          "opening_periods": [
            "2019-02-19T05:32:00+00:00/2019-02-19T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-20T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-20",
          "morning_end": null,
          "morning_start": "2019-02-20T06:32:00+00:00",
          "opening_periods": [
            "2019-02-20T05:32:00+00:00/2019-02-20T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-21T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-21",
          "morning_end": null,
          "morning_start": "2019-02-21T06:32:00+00:00",
          "opening_periods": [
            "2019-02-21T05:32:00+00:00/2019-02-21T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-22T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-22",
          "morning_end": null,
          "morning_start": "2019-02-22T06:32:00+00:00",
          "opening_periods": [
            "2019-02-22T05:32:00+00:00/2019-02-22T13:30:00+00:00"
          ],
          "status": 5
        }
      ],
      "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": [
        {
          "afternoon_end": null,
          "afternoon_start": null,
          "date": "2019-02-15",
          "morning_end": null,
          "morning_start": null,
          "opening_periods": [],
          "status": 8
        },
        {
          "afternoon_end": null,
          "afternoon_start": null,
          "date": "2019-02-16",
          "morning_end": null,
          "morning_start": null,
          "opening_periods": [],
          "status": 8
        },
        {
          "afternoon_end": null,
          "afternoon_start": null,
          "date": "2019-02-17",
          "morning_end": null,
          "morning_start": null,
          "opening_periods": [],
          "status": 8
        }
      ],
      "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": "Input",
      "address": "Zlechovská 1699",
      "city": "Staré Mesto",
      "country": "CZ",
      "email": "vhrubos@soufflet.com",
      "id": "338",
      "latitude": 49.069808,
      "longitude": 17.4127,
      "manager_name": "Vlastimil HRUBOS",
      "mobile_number": null,
      "name": "Stare Mesto",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Morava",
      "timezone": "Europe/Prague",
      "zip_code": "686 02"
    },
    {
      "activities_names": "Input",
      "address": "Krenovská 1375",
      "city": "Kojetín",
      "country": "CZ",
      "email": "fkulisek@soufflet.com",
      "id": "341",
      "latitude": 49.339092,
      "longitude": 17.294278,
      "manager_name": "Frantisek KULISEK",
      "mobile_number": null,
      "name": "Kojetin",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Morava",
      "timezone": "Europe/Prague",
      "zip_code": "752 01"
    },
    {
      "activities_names": "Input",
      "address": "Skalice nad Svitavou 157",
      "city": "Skalice nad Svitavou",
      "country": "CZ",
      "email": "jfiala@soufflet.com",
      "id": "343",
      "latitude": 49.481986,
      "longitude": 16.59905,
      "manager_name": "Jiri FIALA",
      "mobile_number": null,
      "name": "Skalice",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Morava",
      "timezone": "Europe/Prague",
      "zip_code": "679 01"
    },
    {
      "activities_names": "Input",
      "address": "Litovická 672",
      "city": "Hostivice u Prahy",
      "country": "CZ",
      "email": "onovotny@soufflet.com",
      "id": "340",
      "latitude": 50.074381,
      "longitude": 14.222619,
      "manager_name": "Oldrich NOVOTNY",
      "mobile_number": null,
      "name": "Litovice",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Čechy",
      "timezone": "Europe/Prague",
      "zip_code": "253 01"
    },
    {
      "activities_names": "Input",
      "address": "U Výkupního strediska 218 (EN)",
      "city": "Praha 5 - Reporyje (EN)",
      "country": "CZ",
      "email": "lsmejkalova@soufflet.com",
      "id": "342",
      "latitude": 50.033483,
      "longitude": 14.306597,
      "manager_name": "Lenka SMEJKALOVA (EN)",
      "mobile_number": null,
      "name": "Reporyje (EN)",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Čechy",
      "timezone": "Europe/Prague",
      "zip_code": "155 00"
    },
    {
      "activities_names": "Input",
      "address": "Ulica Margoninska 8",
      "city": "Golancz",
      "country": "PL",
      "email": "mzielonacki@soufflet.com",
      "id": "336",
      "latitude": 52.944511,
      "longitude": 17.287761,
      "manager_name": "Marcin ZIELONACKI",
      "mobile_number": null,
      "name": "Golancz",
      "opening_hours": [],
      "owner": "Soufflet Agro Polska",
      "phone_number": null,
      "region": "Velkopolské vojvodství",
      "timezone": "Europe/Warsaw",
      "zip_code": "62-130"
    },
    {
      "activities_names": "Input",
      "address": "ul. Gostynska 59",
      "city": "Koscian",
      "country": "PL",
      "email": "lnowaczyk@soufflet.com",
      "id": "339",
      "latitude": 52.079953,
      "longitude": 16.663553,
      "manager_name": "Lukasz NOWACZYK",
      "mobile_number": null,
      "name": "Koscian",
      "opening_hours": [],
      "owner": "Soufflet Agro Polska",
      "phone_number": null,
      "region": "Velkopolské vojvodství",
      "timezone": "Europe/Warsaw",
      "zip_code": "64-000"
    },
    {
      "activities_names": "Input",
      "address": "ul. Zabkowicka 80",
      "city": "Strzelin",
      "country": "PL",
      "email": "mcierpucha@soufflet.com",
      "id": "337",
      "latitude": 50.759956,
      "longitude": 17.0426,
      "manager_name": "Marek Cierpucha",
      "mobile_number": null,
      "name": "Stzrelin",
      "opening_hours": [],
      "owner": "Soufflet Agro Polska",
      "phone_number": null,
      "region": "Dolnoslezské vojvodství",
      "timezone": "Europe/Warsaw",
      "zip_code": "57-100"
    },
    {
      "activities_names": "Input",
      "address": "st Baldovinesti 9 Braila",
      "city": "Braila",
      "country": "RO",
      "email": "gheil@soufflet.com",
      "id": "344",
      "latitude": 45.305306,
      "longitude": 27.934342,
      "manager_name": "Gheorghe HEIL",
      "mobile_number": null,
      "name": "Braila",
      "opening_hours": [],
      "owner": "Soufflet Agro Romania",
      "phone_number": null,
      "region": "Brăila",
      "timezone": "Europe/Bucharest",
      "zip_code": "810167"
    },
    {
      "activities_names": "Input",
      "address": "Strada Garii 88",
      "city": "Tandarei",
      "country": "RO",
      "email": "istan@soufflet.com",
      "id": "345",
      "latitude": 44.654439,
      "longitude": 27.645542,
      "manager_name": "Ion STAN",
      "mobile_number": null,
      "name": "Tandarei",
      "opening_hours": [],
      "owner": "Soufflet Agro Romania",
      "phone_number": null,
      "region": "Ialomița",
      "timezone": "Europe/Bucharest",
      "zip_code": "925200"
    },
    {
      "activities_names": "Input",
      "address": "Vokzalna street 1",
      "city": "Zhashkiv",
      "country": "UA",
      "email": "npalyonko@soufflet.com",
      "id": "332",
      "latitude": 49.244408,
      "longitude": 30.095464,
      "manager_name": "Nina PALYONKO",
      "mobile_number": null,
      "name": "Zhaskiv",
      "opening_hours": [],
      "owner": "Soufflet Agro Ukraine",
      "phone_number": null,
      "region": "Cherkassy",
      "timezone": "Europe/Kiev",
      "zip_code": "19200"
    },
    {
      "activities_names": "Input",
      "address": "Pryvokzalna str 7",
      "city": "Carolina",
      "country": "UA",
      "email": "vtraydakalo@soufflet.com",
      "id": "333",
      "latitude": 48.927228,
      "longitude": 28.959914,
      "manager_name": "Victor TRAYDAKALO",
      "mobile_number": null,
      "name": "Karolina",
      "opening_hours": [],
      "owner": "Soufflet Agro Ukraine",
      "phone_number": null,
      "region": "Nemyriv district",
      "timezone": "Europe/Kiev",
      "zip_code": "22850"
    },
    {
      "activities_names": "Input",
      "address": "Zelena street 1",
      "city": "Gorodok",
      "country": "UA",
      "email": "olipinskyi@soufflet.com",
      "id": "334",
      "latitude": 49.167969,
      "longitude": 26.597175,
      "manager_name": "Oleksandr LIPINSKYI",
      "mobile_number": null,
      "name": "Gorodok",
      "opening_hours": [],
      "owner": "Soufflet Agro Ukraine",
      "phone_number": null,
      "region": "Khmelnytskyi region",
      "timezone": "Europe/Kiev",
      "zip_code": "32000"
    },
    {
      "activities_names": "Input",
      "address": "Ulitsa Khlebozavodskaya 1",
      "city": "Gryazi",
      "country": "RU",
      "email": "achertov@soufflet.com",
      "id": "335",
      "latitude": 52.485006,
      "longitude": 39.940372,
      "manager_name": "Aleksey CHERTOV",
      "mobile_number": null,
      "name": "Griazi",
      "opening_hours": [],
      "owner": "Soufflet Agro Russia",
      "phone_number": null,
      "region": "Lipetskaya oblast'",
      "timezone": "Europe/Moscow",
      "zip_code": "399059"
    }
  ]
}

Validation #536

Failure

The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:

  • The property '#/silos/3/opening_hours/0/status' did not have a maximum value of 4, inclusively in schema f657c17a-539a-580f-99c9-67cf73ecc68a#
  • The property '#/silos/3/opening_hours/1/status' did not have a maximum value of 4, inclusively in schema f657c17a-539a-580f-99c9-67cf73ecc68a#
  • The property '#/silos/3/opening_hours/2/status' did not have a maximum value of 4, inclusively in schema f657c17a-539a-580f-99c9-67cf73ecc68a#
  • The property '#/silos/3/opening_hours/3/status' did not have a maximum value of 4, inclusively in schema f657c17a-539a-580f-99c9-67cf73ecc68a#
  • The property '#/silos/3/opening_hours/4/status' did not have a maximum value of 4, inclusively in schema f657c17a-539a-580f-99c9-67cf73ecc68a#
  • The property '#/silos/3/opening_hours/5/status' did not have a maximum value of 4, inclusively in schema f657c17a-539a-580f-99c9-67cf73ecc68a#
  • The property '#/silos/3/opening_hours/6/status' did not have a maximum value of 4, inclusively in schema f657c17a-539a-580f-99c9-67cf73ecc68a#
  • The property '#/silos/3/opening_hours/7/status' did not have a maximum value of 4, inclusively in schema f657c17a-539a-580f-99c9-67cf73ecc68a#
  • The property '#/silos/3/opening_hours' had more items than the allowed 7 in schema f657c17a-539a-580f-99c9-67cf73ecc68a
  • The property '#/silos/27/zip_code' value "2330" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema f657c17a-539a-580f-99c9-67cf73ecc68a
  • The property '#/silos/68/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/68/phone_number' value "1111" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/68/phone_number' of type string did not match the following type: null
  • The property '#/silos/73/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/73/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/73/phone_number' of type string did not match the following type: null
  • The property '#/silos/79/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/79/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/79/phone_number' of type string did not match the following type: null
  • The property '#/silos/94/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/94/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/94/phone_number' of type string did not match the following type: null
  • The property '#/silos/97/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/97/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/97/phone_number' of type string did not match the following type: null
  • The property '#/silos/128/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/128/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/128/phone_number' of type string did not match the following type: null
  • The property '#/silos/129/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/129/phone_number' value "1111" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/129/phone_number' of type string did not match the following type: null
  • The property '#/silos/153/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/153/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/153/phone_number' of type string did not match the following type: null
  • The property '#/silos/159/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/159/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/159/phone_number' of type string did not match the following type: null
  • The property '#/silos/175/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/175/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/175/phone_number' of type string did not match the following type: null
  • The property '#/silos/177/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/177/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/177/phone_number' of type string did not match the following type: null
  • The property '#/silos/178/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/178/phone_number' value "1111" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/178/phone_number' of type string did not match the following type: null
  • The property '#/silos/181/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/181/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/181/phone_number' of type string did not match the following type: null
  • The property '#/silos/182/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/182/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/182/phone_number' of type string did not match the following type: null
  • The property '#/silos/203/opening_hours/0/status' did not have a maximum value of 4, inclusively in schema f657c17a-539a-580f-99c9-67cf73ecc68a#
  • The property '#/silos/203/opening_hours/1/status' did not have a maximum value of 4, inclusively in schema f657c17a-539a-580f-99c9-67cf73ecc68a#
  • The property '#/silos/203/opening_hours/2/status' did not have a maximum value of 4, inclusively in schema f657c17a-539a-580f-99c9-67cf73ecc68a#
  • The property '#/silos/213/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/213/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/213/phone_number' of type string did not match the following type: null
  • The property '#/silos/217/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/217/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/217/phone_number' of type string did not match the following type: null
  • The property '#/silos/229/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/229/phone_number' value "2222" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/229/phone_number' of type string did not match the following type: null
  • The property '#/silos/242/phone_number' of type string did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/silos/242/phone_number' value "1111" did not match the regex '^(?:(?:\+|00)[1-9]{0,3}|0)\s*[1-9](?:[\s.-]*\d{2}){4}' - anyOf #1: - The property '#/silos/242/phone_number' of type string did not match the following type: null
  • The property '#/silos/243/zip_code' value "686 02" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema f657c17a-539a-580f-99c9-67cf73ecc68a
  • The property '#/silos/244/zip_code' value "752 01" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema f657c17a-539a-580f-99c9-67cf73ecc68a
  • The property '#/silos/245/zip_code' value "679 01" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema f657c17a-539a-580f-99c9-67cf73ecc68a
  • The property '#/silos/246/zip_code' value "253 01" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema f657c17a-539a-580f-99c9-67cf73ecc68a
  • The property '#/silos/247/zip_code' value "155 00" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema f657c17a-539a-580f-99c9-67cf73ecc68a
  • The property '#/silos/248/zip_code' value "62-130" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema f657c17a-539a-580f-99c9-67cf73ecc68a
  • The property '#/silos/249/zip_code' value "64-000" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema f657c17a-539a-580f-99c9-67cf73ecc68a
  • The property '#/silos/250/zip_code' value "57-100" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema f657c17a-539a-580f-99c9-67cf73ecc68a
  • The property '#/silos/251/zip_code' value "810167" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema f657c17a-539a-580f-99c9-67cf73ecc68a
  • The property '#/silos/252/zip_code' value "925200" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema f657c17a-539a-580f-99c9-67cf73ecc68a
  • The property '#/silos/256/zip_code' value "399059" did not match the regex '^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$' in schema f657c17a-539a-580f-99c9-67cf73ecc68a

JSON Schema

{
  "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": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "mobile_number": {
            "anyOf": [
              {
                "description": "J'ai supprimé le scheme phone number, car nous pouvions avoir des 00 00 00 00 00 qui ne matchent pas le scheme",
                "type": "string"
              },
              {
                "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": {
            "anyOf": [
              {
                "pattern": "^(?:(?:\\+|00)[1-9]{0,3}|0)\\s*[1-9](?:[\\s.-]*\\d{2}){4}",
                "type": "string"
              },
              {
                "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"
}

JSON instance

{
  "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": [
        {
          "afternoon_end": "2019-02-15T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-15",
          "morning_end": null,
          "morning_start": "2019-02-15T06:32:00+00:00",
          "opening_periods": [
            "2019-02-15T05:32:00+00:00/2019-02-15T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-16T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-16",
          "morning_end": null,
          "morning_start": "2019-02-16T06:32:00+00:00",
          "opening_periods": [
            "2019-02-16T05:32:00+00:00/2019-02-16T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-17T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-17",
          "morning_end": null,
          "morning_start": "2019-02-17T06:32:00+00:00",
          "opening_periods": [
            "2019-02-17T05:32:00+00:00/2019-02-17T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-18T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-18",
          "morning_end": null,
          "morning_start": "2019-02-18T06:32:00+00:00",
          "opening_periods": [
            "2019-02-18T05:32:00+00:00/2019-02-18T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-19T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-19",
          "morning_end": null,
          "morning_start": "2019-02-19T06:32:00+00:00",
          "opening_periods": [
            "2019-02-19T05:32:00+00:00/2019-02-19T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-20T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-20",
          "morning_end": null,
          "morning_start": "2019-02-20T06:32:00+00:00",
          "opening_periods": [
            "2019-02-20T05:32:00+00:00/2019-02-20T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-21T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-21",
          "morning_end": null,
          "morning_start": "2019-02-21T06:32:00+00:00",
          "opening_periods": [
            "2019-02-21T05:32:00+00:00/2019-02-21T13:30:00+00:00"
          ],
          "status": 5
        },
        {
          "afternoon_end": "2019-02-22T14:30:00+00:00",
          "afternoon_start": null,
          "date": "2019-02-22",
          "morning_end": null,
          "morning_start": "2019-02-22T06:32:00+00:00",
          "opening_periods": [
            "2019-02-22T05:32:00+00:00/2019-02-22T13:30:00+00:00"
          ],
          "status": 5
        }
      ],
      "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": [
        {
          "afternoon_end": null,
          "afternoon_start": null,
          "date": "2019-02-15",
          "morning_end": null,
          "morning_start": null,
          "opening_periods": [],
          "status": 8
        },
        {
          "afternoon_end": null,
          "afternoon_start": null,
          "date": "2019-02-16",
          "morning_end": null,
          "morning_start": null,
          "opening_periods": [],
          "status": 8
        },
        {
          "afternoon_end": null,
          "afternoon_start": null,
          "date": "2019-02-17",
          "morning_end": null,
          "morning_start": null,
          "opening_periods": [],
          "status": 8
        }
      ],
      "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": "Input",
      "address": "Zlechovská 1699",
      "city": "Staré Mesto",
      "country": "CZ",
      "email": "vhrubos@soufflet.com",
      "id": "338",
      "latitude": 49.069808,
      "longitude": 17.4127,
      "manager_name": "Vlastimil HRUBOS",
      "mobile_number": null,
      "name": "Stare Mesto",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Morava",
      "timezone": "Europe/Prague",
      "zip_code": "686 02"
    },
    {
      "activities_names": "Input",
      "address": "Krenovská 1375",
      "city": "Kojetín",
      "country": "CZ",
      "email": "fkulisek@soufflet.com",
      "id": "341",
      "latitude": 49.339092,
      "longitude": 17.294278,
      "manager_name": "Frantisek KULISEK",
      "mobile_number": null,
      "name": "Kojetin",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Morava",
      "timezone": "Europe/Prague",
      "zip_code": "752 01"
    },
    {
      "activities_names": "Input",
      "address": "Skalice nad Svitavou 157",
      "city": "Skalice nad Svitavou",
      "country": "CZ",
      "email": "jfiala@soufflet.com",
      "id": "343",
      "latitude": 49.481986,
      "longitude": 16.59905,
      "manager_name": "Jiri FIALA",
      "mobile_number": null,
      "name": "Skalice",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Morava",
      "timezone": "Europe/Prague",
      "zip_code": "679 01"
    },
    {
      "activities_names": "Input",
      "address": "Litovická 672",
      "city": "Hostivice u Prahy",
      "country": "CZ",
      "email": "onovotny@soufflet.com",
      "id": "340",
      "latitude": 50.074381,
      "longitude": 14.222619,
      "manager_name": "Oldrich NOVOTNY",
      "mobile_number": null,
      "name": "Litovice",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Čechy",
      "timezone": "Europe/Prague",
      "zip_code": "253 01"
    },
    {
      "activities_names": "Input",
      "address": "U Výkupního strediska 218 (EN)",
      "city": "Praha 5 - Reporyje (EN)",
      "country": "CZ",
      "email": "lsmejkalova@soufflet.com",
      "id": "342",
      "latitude": 50.033483,
      "longitude": 14.306597,
      "manager_name": "Lenka SMEJKALOVA (EN)",
      "mobile_number": null,
      "name": "Reporyje (EN)",
      "opening_hours": [],
      "owner": "Soufflet Agro",
      "phone_number": null,
      "region": "Čechy",
      "timezone": "Europe/Prague",
      "zip_code": "155 00"
    },
    {
      "activities_names": "Input",
      "address": "Ulica Margoninska 8",
      "city": "Golancz",
      "country": "PL",
      "email": "mzielonacki@soufflet.com",
      "id": "336",
      "latitude": 52.944511,
      "longitude": 17.287761,
      "manager_name": "Marcin ZIELONACKI",
      "mobile_number": null,
      "name": "Golancz",
      "opening_hours": [],
      "owner": "Soufflet Agro Polska",
      "phone_number": null,
      "region": "Velkopolské vojvodství",
      "timezone": "Europe/Warsaw",
      "zip_code": "62-130"
    },
    {
      "activities_names": "Input",
      "address": "ul. Gostynska 59",
      "city": "Koscian",
      "country": "PL",
      "email": "lnowaczyk@soufflet.com",
      "id": "339",
      "latitude": 52.079953,
      "longitude": 16.663553,
      "manager_name": "Lukasz NOWACZYK",
      "mobile_number": null,
      "name": "Koscian",
      "opening_hours": [],
      "owner": "Soufflet Agro Polska",
      "phone_number": null,
      "region": "Velkopolské vojvodství",
      "timezone": "Europe/Warsaw",
      "zip_code": "64-000"
    },
    {
      "activities_names": "Input",
      "address": "ul. Zabkowicka 80",
      "city": "Strzelin",
      "country": "PL",
      "email": "mcierpucha@soufflet.com",
      "id": "337",
      "latitude": 50.759956,
      "longitude": 17.0426,
      "manager_name": "Marek Cierpucha",
      "mobile_number": null,
      "name": "Stzrelin",
      "opening_hours": [],
      "owner": "Soufflet Agro Polska",
      "phone_number": null,
      "region": "Dolnoslezské vojvodství",
      "timezone": "Europe/Warsaw",
      "zip_code": "57-100"
    },
    {
      "activities_names": "Input",
      "address": "st Baldovinesti 9 Braila",
      "city": "Braila",
      "country": "RO",
      "email": "gheil@soufflet.com",
      "id": "344",
      "latitude": 45.305306,
      "longitude": 27.934342,
      "manager_name": "Gheorghe HEIL",
      "mobile_number": null,
      "name": "Braila",
      "opening_hours": [],
      "owner": "Soufflet Agro Romania",
      "phone_number": null,
      "region": "Brăila",
      "timezone": "Europe/Bucharest",
      "zip_code": "810167"
    },
    {
      "activities_names": "Input",
      "address": "Strada Garii 88",
      "city": "Tandarei",
      "country": "RO",
      "email": "istan@soufflet.com",
      "id": "345",
      "latitude": 44.654439,
      "longitude": 27.645542,
      "manager_name": "Ion STAN",
      "mobile_number": null,
      "name": "Tandarei",
      "opening_hours": [],
      "owner": "Soufflet Agro Romania",
      "phone_number": null,
      "region": "Ialomița",
      "timezone": "Europe/Bucharest",
      "zip_code": "925200"
    },
    {
      "activities_names": "Input",
      "address": "Vokzalna street 1",
      "city": "Zhashkiv",
      "country": "UA",
      "email": "npalyonko@soufflet.com",
      "id": "332",
      "latitude": 49.244408,
      "longitude": 30.095464,
      "manager_name": "Nina PALYONKO",
      "mobile_number": null,
      "name": "Zhaskiv",
      "opening_hours": [],
      "owner": "Soufflet Agro Ukraine",
      "phone_number": null,
      "region": "Cherkassy",
      "timezone": "Europe/Kiev",
      "zip_code": "19200"
    },
    {
      "activities_names": "Input",
      "address": "Pryvokzalna str 7",
      "city": "Carolina",
      "country": "UA",
      "email": "vtraydakalo@soufflet.com",
      "id": "333",
      "latitude": 48.927228,
      "longitude": 28.959914,
      "manager_name": "Victor TRAYDAKALO",
      "mobile_number": null,
      "name": "Karolina",
      "opening_hours": [],
      "owner": "Soufflet Agro Ukraine",
      "phone_number": null,
      "region": "Nemyriv district",
      "timezone": "Europe/Kiev",
      "zip_code": "22850"
    },
    {
      "activities_names": "Input",
      "address": "Zelena street 1",
      "city": "Gorodok",
      "country": "UA",
      "email": "olipinskyi@soufflet.com",
      "id": "334",
      "latitude": 49.167969,
      "longitude": 26.597175,
      "manager_name": "Oleksandr LIPINSKYI",
      "mobile_number": null,
      "name": "Gorodok",
      "opening_hours": [],
      "owner": "Soufflet Agro Ukraine",
      "phone_number": null,
      "region": "Khmelnytskyi region",
      "timezone": "Europe/Kiev",
      "zip_code": "32000"
    },
    {
      "activities_names": "Input",
      "address": "Ulitsa Khlebozavodskaya 1",
      "city": "Gryazi",
      "country": "RU",
      "email": "achertov@soufflet.com",
      "id": "335",
      "latitude": 52.485006,
      "longitude": 39.940372,
      "manager_name": "Aleksey CHERTOV",
      "mobile_number": null,
      "name": "Griazi",
      "opening_hours": [],
      "owner": "Soufflet Agro Russia",
      "phone_number": null,
      "region": "Lipetskaya oblast'",
      "timezone": "Europe/Moscow",
      "zip_code": "399059"
    }
  ]
}