{
"cells": [
{
"cell_type": "markdown",
"id": "59d19f73",
"metadata": {},
"source": [
"# Python API Example - Freight Route Data Import and Storage in Dataframe\n",
"\n",
"This guide is designed to provide an example of how to access the Spark API:\n",
"- The path to your client credentials is the only input needed to run this script (just before Section 2)\n",
"- This script has been designed to display the raw outputs of requests from the API, and how to format those outputs to enable easy reading and analysis\n",
"- This script can be copy and pasted by customers for quick use of the API\n",
"- Once comfortable with the process, you can change the variables that are called to produce your own custom analysis products. (Section 2 onwards in this guide).\n",
"\n",
"__N.B. This guide is just for Freight route data. If you're looking for other API data products (such as Price releases or Netbacks), please refer to their according code example files.__ "
]
},
{
"cell_type": "markdown",
"id": "d1d7ca7a",
"metadata": {},
"source": [
"### Have any questions?\n",
"\n",
"If you have any questions regarding our API, or need help accessing specific datasets, please contact us at:\n",
"\n",
"__data@sparkcommodities.com__\n",
"\n",
"or refer to our API website for more information about this endpoint: https://www.sparkcommodities.com/api/request/routes.html"
]
},
{
"cell_type": "markdown",
"id": "9e00ae34",
"metadata": {},
"source": [
"## 1. Importing Data\n",
"\n",
"Here we define the functions that allow us to retrieve the valid credentials to access the Spark API.\n",
"\n",
"This section can remain unchanged for most Spark API users."
]
},
{
"cell_type": "code",
"execution_count": 40,
"id": "4f265f07",
"metadata": {},
"outputs": [],
"source": [
"## Importing libraries for calling the API\n",
"import json\n",
"import os\n",
"import sys\n",
"from base64 import b64encode\n",
"from urllib.parse import urljoin\n",
"import pandas as pd\n",
"\n",
"\n",
"try:\n",
" from urllib import request, parse\n",
" from urllib.error import HTTPError\n",
"except ImportError:\n",
" raise RuntimeError(\"Python 3 required\")"
]
},
{
"cell_type": "code",
"execution_count": 41,
"id": "c32eb493",
"metadata": {},
"outputs": [],
"source": [
"## Defining functions for API request\n",
"\n",
"API_BASE_URL = \"https://api.sparkcommodities.com\"\n",
"\n",
"\n",
"def retrieve_credentials(file_path=None):\n",
" \"\"\"\n",
" Find credentials either by reading the client_credentials file or reading\n",
" environment variables\n",
" \"\"\"\n",
" if file_path is None:\n",
" client_id = os.getenv(\"SPARK_CLIENT_ID\")\n",
" client_secret = os.getenv(\"SPARK_CLIENT_SECRET\")\n",
" if not client_id or not client_secret:\n",
" raise RuntimeError(\n",
" \"SPARK_CLIENT_ID and SPARK_CLIENT_SECRET environment vars required\"\n",
" )\n",
" else:\n",
" # Parse the file\n",
" if not os.path.isfile(file_path):\n",
" raise RuntimeError(\"The file {} doesn't exist\".format(file_path))\n",
"\n",
" with open(file_path) as fp:\n",
" lines = [l.replace(\"\\n\", \"\") for l in fp.readlines()]\n",
"\n",
" if lines[0] in (\"clientId,clientSecret\", \"client_id,client_secret\"):\n",
" client_id, client_secret = lines[1].split(\",\")\n",
" else:\n",
" print(\"First line read: '{}'\".format(lines[0]))\n",
" raise RuntimeError(\n",
" \"The specified file {} doesn't look like to be a Spark API client \"\n",
" \"credentials file\".format(file_path)\n",
" )\n",
"\n",
" print(\">>>> Found credentials!\")\n",
" print(\n",
" \">>>> Client_id={}, client_secret={}****\".format(client_id, client_secret[:5])\n",
" )\n",
"\n",
" return client_id, client_secret\n",
"\n",
"\n",
"def do_api_post_query(uri, body, headers):\n",
" \"\"\"\n",
" OAuth2 authentication requires a POST request with client credentials before accessing the API. \n",
" This POST request will return an Access Token which will be used for the API GET request.\n",
" \"\"\"\n",
" url = urljoin(API_BASE_URL, uri)\n",
"\n",
" data = json.dumps(body).encode(\"utf-8\")\n",
"\n",
" # HTTP POST request\n",
" req = request.Request(url, data=data, headers=headers)\n",
" try:\n",
" response = request.urlopen(req)\n",
" except HTTPError as e:\n",
" print(\"HTTP Error: \", e.code)\n",
" print(e.read())\n",
" sys.exit(1)\n",
"\n",
" resp_content = response.read()\n",
"\n",
" # The server must return HTTP 201. Raise an error if this is not the case\n",
" assert response.status == 201, resp_content\n",
"\n",
" # The server returned a JSON response\n",
" content = json.loads(resp_content)\n",
"\n",
" return content\n",
"\n",
"\n",
"def do_api_get_query(uri, access_token):\n",
" \"\"\"\n",
" After receiving an Access Token, we can request information from the API.\n",
" \"\"\"\n",
" url = urljoin(API_BASE_URL, uri)\n",
"\n",
" headers = {\n",
" \"Authorization\": \"Bearer {}\".format(access_token),\n",
" \"Accept\": \"application/json\",\n",
" }\n",
"\n",
" # HTTP POST request\n",
" req = request.Request(url, headers=headers)\n",
" try:\n",
" response = request.urlopen(req)\n",
" except HTTPError as e:\n",
" print(\"HTTP Error: \", e.code)\n",
" print(e.read())\n",
" sys.exit(1)\n",
"\n",
" resp_content = response.read()\n",
"\n",
" # The server must return HTTP 201. Raise an error if this is not the case\n",
" assert response.status == 200, resp_content\n",
"\n",
" # The server returned a JSON response\n",
" content = json.loads(resp_content)\n",
"\n",
" return content\n",
"\n",
"\n",
"def get_access_token(client_id, client_secret):\n",
" \"\"\"\n",
" Get a new access_token. Access tokens are the thing that applications use to make\n",
" API requests. Access tokens must be kept confidential in storage.\n",
"\n",
" # Procedure:\n",
"\n",
" Do a POST query with `grantType` and `scopes` in the body. A basic authorization\n",
" HTTP header is required. The \"Basic\" HTTP authentication scheme is defined in\n",
" RFC 7617, which transmits credentials as `clientId:clientSecret` pairs, encoded\n",
" using base64.\n",
" \"\"\"\n",
"\n",
" # Note: for the sake of this example, we choose to use the Python urllib from the\n",
" # standard lib. One should consider using https://requests.readthedocs.io/\n",
"\n",
" payload = \"{}:{}\".format(client_id, client_secret).encode()\n",
" headers = {\n",
" \"Authorization\": b64encode(payload).decode(),\n",
" \"Accept\": \"application/json\",\n",
" \"Content-Type\": \"application/json\",\n",
" }\n",
" body = {\n",
" \"grantType\": \"clientCredentials\",\n",
" \"scopes\": \"read:prices,read:routes\",\n",
" }\n",
"\n",
" content = do_api_post_query(uri=\"/oauth/token/\", body=body, headers=headers)\n",
"\n",
" print(\n",
" \">>>> Successfully fetched an access token {}****, valid {} seconds.\".format(\n",
" content[\"accessToken\"][:5], content[\"expiresIn\"]\n",
" )\n",
" )\n",
"\n",
" return content[\"accessToken\"]"
]
},
{
"cell_type": "markdown",
"id": "bec1f77b",
"metadata": {},
"source": [
"## Defining Fetch Request\n",
"\n",
"Here is where we define what type of data we want to fetch from the API.\n",
"\n",
"In my fetch request, I use the URL:\n",
"\n",
"__uri=\"/v1.0/routes/\"__\n",
"\n",
"This is to query shipping route data specifically. Other data products (such as price releases) require different URL's in the fetch request (refer to other Python API examples)."
]
},
{
"cell_type": "code",
"execution_count": 42,
"id": "fb27e003",
"metadata": {},
"outputs": [],
"source": [
"## Define function for listing routes from API\n",
"def list_routes(access_token):\n",
" \"\"\"\n",
" Fetch available routes. Return route ids and Spark price release dates.\n",
"\n",
" The URI used returns a list of all available Spark routes. With these routes, we can find the price breakdown of a specific route.\n",
"\n",
" # Procedure:\n",
"\n",
" Do a GET query to /v1.0/routes/ with a Bearer token authorization HTTP header.\n",
" \"\"\"\n",
" content = do_api_get_query(uri=\"/v1.0/routes/\", access_token=access_token)\n",
"\n",
" print(\">>>> All the routes you can fetch\")\n",
" tickers = []\n",
" for contract in content[\"data\"][\"routes\"]:\n",
" tickers.append(contract[\"uuid\"])\n",
"\n",
" reldates = content[\"data\"][\"sparkReleaseDates\"]\n",
"\n",
" dicto1 = content[\"data\"]\n",
"\n",
" return tickers, reldates, dicto1"
]
},
{
"cell_type": "markdown",
"id": "1e890e9e",
"metadata": {},
"source": [
"## N.B. Credentials\n",
"\n",
"Here we call the above functions, and input the file path to our credentials.\n",
"\n",
"N.B. You must have downloaded your client credentials CSV file before proceeding. Please refer to the API documentation if you have not dowloaded them already. Instructions for downloading your credentials can be found here:\n",
"\n",
"https://api.sparkcommodities.com/redoc#section/Authentication/Create-an-Oauth2-Client\n",
"\n",
"The code then prints:\n",
"- the number of callable routes available\n",
"- the number of Spark freight price dates that are callable"
]
},
{
"cell_type": "code",
"execution_count": 43,
"id": "51b8a89c",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
">>>> Found credentials!\n",
">>>> Client_id=875f483b-19de-421a-8e9b-dceff6703e83, client_secret=6cdf8****\n",
">>>> Successfully fetched an access token eyJhb****, valid 604799 seconds.\n",
">>>> All the routes you can fetch\n"
]
}
],
"source": [
"## Input your file location here\n",
"client_id, client_secret = retrieve_credentials(file_path=\"/tmp/client_credentials.csv\")\n",
"\n",
"\n",
"# Authenticate:\n",
"access_token = get_access_token(client_id, client_secret)\n",
"\n",
"# Fetch all contracts:\n",
"routes, reldates, dicto1 = list_routes(access_token)"
]
},
{
"cell_type": "markdown",
"id": "2345f33a",
"metadata": {},
"source": [
"# 2. Describing available routes\n",
"\n",
"We have now saved all available routes as a dictionary. We can check how this looks, and then filter the routes by several characteristics."
]
},
{
"cell_type": "code",
"execution_count": 44,
"id": "9a127827",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"{'routes': [{'uuid': '003a3297-b4ed-4c49-9ab2-65122c6f6de8', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003b319e-b29e-4853-b4ee-85794d5bacba', 'type': 'import', 'region': 'atlantic', 'name': 'Stade'}, 'via': None}, {'uuid': '003511be-a06d-407b-8d13-22a6ac99f59d', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '0030d930-6574-4049-a739-327a16620429', 'type': 'import', 'region': 'atlantic', 'name': 'Ravenna'}, 'via': 'suez'}, {'uuid': '00376e89-c9a4-4d49-8100-43ec6ad89793', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'cogh'}, {'uuid': '003fb354-6fc4-406c-86d5-89c015d227a7', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '0034630c-1c15-42a0-8236-39a85ad929da', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '003bf8b0-b31e-469e-9aa4-6b3746379c71', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003f52cd-5b96-41b8-bc82-600f6f7499cc', 'type': 'import', 'region': 'atlantic', 'name': 'Colon'}, 'via': None}, {'uuid': '003e75c7-37cd-4342-b3eb-400bc0a16402', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0035ad68-ff62-4899-8bd3-b8c2f04aae7a', 'type': 'import', 'region': 'atlantic', 'name': 'Guanabara Bay'}, 'via': None}, {'uuid': '003958e9-c20f-4b15-8819-623c9e616e78', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003b319e-b29e-4853-b4ee-85794d5bacba', 'type': 'import', 'region': 'atlantic', 'name': 'Stade'}, 'via': None}, {'uuid': '0035e546-6d51-4dac-ae10-429664279586', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '0030d930-6574-4049-a739-327a16620429', 'type': 'import', 'region': 'atlantic', 'name': 'Ravenna'}, 'via': 'cogh'}, {'uuid': '003b843d-c129-4d63-9a95-6bebc54a5509', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0035ad68-ff62-4899-8bd3-b8c2f04aae7a', 'type': 'import', 'region': 'atlantic', 'name': 'Guanabara Bay'}, 'via': None}, {'uuid': '00394f31-4f5f-4999-bf6d-861c629369fc', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003b319e-b29e-4853-b4ee-85794d5bacba', 'type': 'import', 'region': 'atlantic', 'name': 'Stade'}, 'via': None}, {'uuid': '003503db-0301-4e56-b955-d6f81e034e3b', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '0030d930-6574-4049-a739-327a16620429', 'type': 'import', 'region': 'atlantic', 'name': 'Ravenna'}, 'via': 'cogh'}, {'uuid': '0039f511-54f0-4d5d-8a97-d9ba7cf55945', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '003b319e-b29e-4853-b4ee-85794d5bacba', 'type': 'import', 'region': 'atlantic', 'name': 'Stade'}, 'via': None}, {'uuid': '0033c084-f691-430b-8a50-d30aec29b721', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '0030d930-6574-4049-a739-327a16620429', 'type': 'import', 'region': 'atlantic', 'name': 'Ravenna'}, 'via': 'suez'}, {'uuid': '003b6fa0-1126-4c84-85f1-4c06459aa64a', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003b319e-b29e-4853-b4ee-85794d5bacba', 'type': 'import', 'region': 'atlantic', 'name': 'Stade'}, 'via': 'suez'}, {'uuid': '0039c2f6-5383-427b-b532-aaa38d1fd671', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003b319e-b29e-4853-b4ee-85794d5bacba', 'type': 'import', 'region': 'atlantic', 'name': 'Stade'}, 'via': 'cogh'}, {'uuid': '0032b8b7-0b17-41f3-a4bd-f60472fdd47d', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003b319e-b29e-4853-b4ee-85794d5bacba', 'type': 'import', 'region': 'atlantic', 'name': 'Stade'}, 'via': None}, {'uuid': '00399632-1e1f-453e-8787-5956cf953d88', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003b319e-b29e-4853-b4ee-85794d5bacba', 'type': 'import', 'region': 'atlantic', 'name': 'Stade'}, 'via': None}, {'uuid': '0031c1fe-92bb-488b-acc5-dfeb96e8b0f0', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0030d930-6574-4049-a739-327a16620429', 'type': 'import', 'region': 'atlantic', 'name': 'Ravenna'}, 'via': None}, {'uuid': '00317c97-e533-41fc-a593-9a26ba67b993', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '0030d930-6574-4049-a739-327a16620429', 'type': 'import', 'region': 'atlantic', 'name': 'Ravenna'}, 'via': None}, {'uuid': '00361d49-8e9c-4c37-9423-266165a8a24a', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0030d930-6574-4049-a739-327a16620429', 'type': 'import', 'region': 'atlantic', 'name': 'Ravenna'}, 'via': None}, {'uuid': '0039f423-b774-4678-acdd-3d16579c4d96', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '0030d930-6574-4049-a739-327a16620429', 'type': 'import', 'region': 'atlantic', 'name': 'Ravenna'}, 'via': None}, {'uuid': '00322713-376e-403f-892b-4a09192fa634', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '0030d930-6574-4049-a739-327a16620429', 'type': 'import', 'region': 'atlantic', 'name': 'Ravenna'}, 'via': None}, {'uuid': '003b2bb4-4c8a-41ee-93a1-803f0accf226', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '0034d0f0-7d76-47d1-af6b-1f75b83ccc1f', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '003e5067-132d-4660-824c-ef17386f73fb', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'panama'}, {'uuid': '00311e2c-ca59-45f3-976b-2d208471aa76', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'cogh'}, {'uuid': '003e0b43-b84a-4458-97bc-9e1256028e4c', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003509bf-b256-455e-9480-22162a401587', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': None}, {'uuid': '00306036-97bd-4ccb-b12f-019fdd21078b', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0035c0fe-299d-4696-8c94-45f4878c9dda', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': 'cogh'}, {'uuid': '003e47b6-f5ce-46fe-8e96-6f855f668c36', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0035c0fe-299d-4696-8c94-45f4878c9dda', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': 'suez'}, {'uuid': '0031ae7d-4c3f-4972-a95a-02ddf8f62446', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': '003ba153-1f89-477a-b5a1-9fcf90e13c74', 'loadPort': {'uuid': '0030c461-9a63-403d-8f53-9327ea773517', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '003074a3-79db-48f5-8969-5d3664cc357b', 'loadPort': {'uuid': '0030c461-9a63-403d-8f53-9327ea773517', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '003b2421-367d-4a92-b2db-9e0096f5d69f', 'loadPort': {'uuid': '0030c461-9a63-403d-8f53-9327ea773517', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'panama'}, {'uuid': '00363c64-5a34-4978-9888-1d0b329742b2', 'loadPort': {'uuid': '0030c461-9a63-403d-8f53-9327ea773517', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'cogh'}, {'uuid': '0031537c-877e-41b1-aad6-d5a41ce06320', 'loadPort': {'uuid': '0030c461-9a63-403d-8f53-9327ea773517', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '003244da-9b62-4653-9aad-9191d2b4acdc', 'loadPort': {'uuid': '0030c461-9a63-403d-8f53-9327ea773517', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '003509bf-b256-455e-9480-22162a401587', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': None}, {'uuid': '003da992-4dfb-4338-b56d-56aed660b653', 'loadPort': {'uuid': '0030c461-9a63-403d-8f53-9327ea773517', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '0035c0fe-299d-4696-8c94-45f4878c9dda', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': 'cogh'}, {'uuid': '003e8df2-a55f-4188-8de2-6e0da62f56d2', 'loadPort': {'uuid': '0030c461-9a63-403d-8f53-9327ea773517', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '0035c0fe-299d-4696-8c94-45f4878c9dda', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': 'suez'}, {'uuid': '003e9453-a6e0-4a9a-aa14-763a7fd7b128', 'loadPort': {'uuid': '0030c461-9a63-403d-8f53-9327ea773517', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': '0030cd3b-af5b-4dcd-b4ad-38be7a030ff6', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '0039a6ca-54d7-495f-ab5b-d13a2878399a', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '00373f31-8d84-442a-b72b-b4f122bb58f5', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'panama'}, {'uuid': '003a6f84-c0e8-435f-9349-f05219377133', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'cogh'}, {'uuid': '003390fb-49f0-451e-9e75-ca8b0771aaba', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '00367126-c1d5-4510-ae38-2ddedc1675df', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003509bf-b256-455e-9480-22162a401587', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': None}, {'uuid': '00325002-b5fa-4a5d-b07c-19c6b3e546cc', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '0035c0fe-299d-4696-8c94-45f4878c9dda', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': 'cogh'}, {'uuid': '003eea9e-d0ba-41cc-9648-36f68f787f70', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '0035c0fe-299d-4696-8c94-45f4878c9dda', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': 'suez'}, {'uuid': '0031c14e-e554-4842-b879-45cf1f3ef2af', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': '0035da4a-ef4c-46b5-8a9f-7d779dbfce49', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0030d930-6574-4049-a739-327a16620429', 'type': 'import', 'region': 'atlantic', 'name': 'Ravenna'}, 'via': 'suez'}, {'uuid': '003659df-f419-4d67-ad99-9373f17ffc9b', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003509bf-b256-455e-9480-22162a401587', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': None}, {'uuid': '003c9cbf-466b-4e1c-a0f3-32b5939cd01f', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0035c0fe-299d-4696-8c94-45f4878c9dda', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': None}, {'uuid': '003a2198-fdc3-4be4-8069-8e246c056787', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0035c0fe-299d-4696-8c94-45f4878c9dda', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': None}, {'uuid': '0038ea71-08ea-4e70-9043-097134741d74', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': '003672ad-32de-4afd-b050-e25496d13402', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '00374df1-053a-4743-88b2-a1dc47b336d1', 'loadPort': {'uuid': '0030ca71-9252-44d5-9d34-3cee596ad1f6', 'type': 'export', 'region': 'pacific', 'name': 'Bontang'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '00331e79-86e0-4643-b6ea-2506a394aa94', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '0037a93f-2082-4685-a200-3eb8128b2180', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': '003f5071-63ec-461d-a23a-e832c9486f18', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '003e5777-4508-445c-892d-350370f93892', 'loadPort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'suez'}, {'uuid': '003f6c83-f204-47c5-9e22-1a9618c9a08c', 'loadPort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': '00374069-fea1-481c-8518-37de24ff049c', 'loadPort': {'uuid': '00364105-b12c-4f4d-94dc-1cd3069287b8', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'suez'}, {'uuid': '003eef58-d6f6-49cc-968c-83937d7878c8', 'loadPort': {'uuid': '00364105-b12c-4f4d-94dc-1cd3069287b8', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': '0032c8ba-b167-40a0-8bc5-88591e63e2ff', 'loadPort': {'uuid': '00398395-a9d6-4d09-8e17-f731caf760d9', 'type': 'export', 'region': 'pacific', 'name': 'Peru LNG'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': None}, {'uuid': '003cfb41-c439-4a73-b4f4-f38e78c5d3e1', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00382738-2387-431b-8740-155d26a8ef0b', 'type': 'import', 'region': 'pacific', 'name': 'Quintero'}, 'via': 'panama'}, {'uuid': '003943c4-3cf6-49d0-a1c8-e625feba53d5', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': None}, {'uuid': '003d7a1b-1443-4b1a-b0eb-482070f05ded', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '0035c0fe-299d-4696-8c94-45f4878c9dda', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': None}, {'uuid': '0036aae0-e301-4bbd-a5f5-496fda5154dd', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': '00306483-c0f3-4c8b-a557-772eb3d4aa0d', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'cogh'}, {'uuid': '003aaa64-9c7a-419c-8c2c-757990a3993b', 'loadPort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'dischargePort': {'uuid': '00323df6-15b0-4e3f-93e1-afe3a3fe1b58', 'type': 'import', 'region': 'pacific', 'name': 'Rudong'}, 'via': 'suez'}, {'uuid': '003b0ee7-6c32-42b5-a195-6f4339e548f0', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0039ea55-8adc-4448-ba3f-812c44c2d293', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': None}, {'uuid': '003b6765-6dbd-4635-8f90-02470d2a8013', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0039ea55-8adc-4448-ba3f-812c44c2d293', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': None}, {'uuid': '003ba74d-4c37-474d-891e-69a231677bf0', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003304c5-8d7f-48fa-b3d5-b938b0ffb052', 'type': 'import', 'region': 'atlantic', 'name': 'Pecem'}, 'via': None}, {'uuid': '003c5508-3427-4297-a4ef-4c04df83eb50', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': '003c5ddb-f96b-486c-88f3-6172c8395d4e', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003304c5-8d7f-48fa-b3d5-b938b0ffb052', 'type': 'import', 'region': 'atlantic', 'name': 'Pecem'}, 'via': None}, {'uuid': '00357c5a-216f-4d7b-9887-951f217ac26b', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': None}, {'uuid': '0037a4a6-1cca-4dbf-bfdf-cf79efb9df91', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': None}, {'uuid': '0033ef1b-f003-47de-a44b-98a863e59357', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': None}, {'uuid': '0030e39f-8ee0-46b8-a7cd-152c4d764613', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': None}, {'uuid': '003cd238-f4cd-4296-8441-225fca5213e3', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '0034aa21-2462-43bc-b96b-e4f985078bb7', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': None}, {'uuid': '0033ce8c-ddaf-4aef-a645-d92309ed6ccc', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': '0030a902-ca53-4116-847b-76d1e403d303', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '00326c29-10d0-4ad6-af49-cca79940d28e', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '0034aa21-2462-43bc-b96b-e4f985078bb7', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': None}, {'uuid': '0032b1f8-2383-4367-801b-73aebf50de9a', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0034aa21-2462-43bc-b96b-e4f985078bb7', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': None}, {'uuid': '0037a976-890e-4f9b-89ea-b5beb8b1630e', 'loadPort': {'uuid': '00398395-a9d6-4d09-8e17-f731caf760d9', 'type': 'export', 'region': 'pacific', 'name': 'Peru LNG'}, 'dischargePort': {'uuid': '00353980-7951-434c-a45b-9ec5ef1735a0', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': 'panama'}, {'uuid': '0032ecf8-2229-4c42-a41d-dbc3fce628c2', 'loadPort': {'uuid': '00398395-a9d6-4d09-8e17-f731caf760d9', 'type': 'export', 'region': 'pacific', 'name': 'Peru LNG'}, 'dischargePort': {'uuid': '00353980-7951-434c-a45b-9ec5ef1735a0', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': 'magellan-straits'}, {'uuid': '003dfea3-b657-44d1-b495-4db369fbcca0', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0030d930-6574-4049-a739-327a16620429', 'type': 'import', 'region': 'atlantic', 'name': 'Ravenna'}, 'via': 'cogh'}, {'uuid': '0037b1d8-c6ec-46ec-8d16-4f6b7d90c841', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'suez'}, {'uuid': '0032d2e5-5974-4fa2-ae07-08e2d2589d9e', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': '003ac268-ff86-4919-b9c5-6883777249ce', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '0030ac82-c83e-4012-9c2b-e848329d997a', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': None}, {'uuid': '0035c931-5161-4c31-ba7e-bfa7f6969896', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'cogh'}, {'uuid': '003370dd-2123-47ed-8a72-3d3bd7eefe3c', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'suez'}, {'uuid': '0030b97b-b636-405b-bca7-42e38ab15f7a', 'loadPort': {'uuid': '0030c461-9a63-403d-8f53-9327ea773517', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'cogh'}, {'uuid': '0036ac1d-8d00-4566-8648-9286ceea45b4', 'loadPort': {'uuid': '0030c461-9a63-403d-8f53-9327ea773517', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'suez'}, {'uuid': '003a6f30-b4f9-4e70-b9a4-ac0e77892c52', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'cogh'}, {'uuid': '0035d322-588f-4545-a05b-2f73863085fc', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'suez'}, {'uuid': '003fe011-1550-4017-afcc-3f128d0678f5', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': None}, {'uuid': '003b6947-fdde-45eb-b659-f3ee709c1e86', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003da60d-2e4f-450e-9a83-43e1ac3517fc', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': None}, {'uuid': '003800e0-03d4-4e71-8f66-5712a9d8f9ed', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003da60d-2e4f-450e-9a83-43e1ac3517fc', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': None}, {'uuid': '00348d50-7253-4abe-8ce0-7844d88655fd', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003da60d-2e4f-450e-9a83-43e1ac3517fc', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': 'suez'}, {'uuid': '00370728-7b66-4832-ae97-9462b4aed70c', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '003b4e04-66d8-4b20-b82a-da95a14d4560', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': '003428a8-c510-4fc7-8f38-7114b443b9f3', 'loadPort': {'uuid': '00398967-3ee1-4b26-bcdb-805ad19dbcce', 'type': 'export', 'region': 'pacific', 'name': 'Wheatstone'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '003a79c8-7d23-40a8-932b-6c297176ed70', 'loadPort': {'uuid': '00398967-3ee1-4b26-bcdb-805ad19dbcce', 'type': 'export', 'region': 'pacific', 'name': 'Wheatstone'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': '00307fd6-961e-4307-bb50-ebe9b7df93e6', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': '0035e3f7-b559-4252-b1e6-181a1531168b', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003509bf-b256-455e-9480-22162a401587', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': 'suez'}, {'uuid': '0035931d-b0c7-443b-b6b0-eae324882b28', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '003509bf-b256-455e-9480-22162a401587', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': 'suez'}, {'uuid': '00306b05-1d9a-4fa7-bcff-44da305d901b', 'loadPort': {'uuid': '003f9252-e4e3-4957-8462-36f4b61b3370', 'type': 'export', 'region': 'atlantic', 'name': 'Murmansk'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '0037fbc5-e1db-4262-9b41-292ed9529d59', 'loadPort': {'uuid': '003f9252-e4e3-4957-8462-36f4b61b3370', 'type': 'export', 'region': 'atlantic', 'name': 'Murmansk'}, 'dischargePort': {'uuid': '003509bf-b256-455e-9480-22162a401587', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': None}, {'uuid': '003fa93f-44b8-49d8-b804-b69a91130e88', 'loadPort': {'uuid': '003f9252-e4e3-4957-8462-36f4b61b3370', 'type': 'export', 'region': 'atlantic', 'name': 'Murmansk'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '003da2a0-8331-4a5e-a3fe-4054d33164ed', 'loadPort': {'uuid': '003f9252-e4e3-4957-8462-36f4b61b3370', 'type': 'export', 'region': 'atlantic', 'name': 'Murmansk'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': '0030fb9c-60ca-47c5-b77c-7696d5472b41', 'loadPort': {'uuid': '0033d717-1d87-407b-94b0-3f115ecd1887', 'type': 'export', 'region': 'pacific', 'name': 'Kamchatka'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '003ffcfe-8565-48a6-9bb7-73d4c19ea9d7', 'loadPort': {'uuid': '0033d717-1d87-407b-94b0-3f115ecd1887', 'type': 'export', 'region': 'pacific', 'name': 'Kamchatka'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': '003b14cd-4942-49d8-88fa-e328bdbf1744', 'loadPort': {'uuid': '0033d717-1d87-407b-94b0-3f115ecd1887', 'type': 'export', 'region': 'pacific', 'name': 'Kamchatka'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'panama'}, {'uuid': '0037bfc6-cb94-419f-88d5-94f05cb1d8ec', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '003742d3-0245-41d8-93a0-adc7684a60ef', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '0032ac4b-041e-4c52-bf51-db9118d5e8b2', 'loadPort': {'uuid': '003bdb09-9cc9-4998-a849-0e0dce812fa7', 'type': 'export', 'region': 'atlantic', 'name': 'Soyo'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '00384fe5-0f91-435e-9005-eb22bc1e02b3', 'loadPort': {'uuid': '003bdb09-9cc9-4998-a849-0e0dce812fa7', 'type': 'export', 'region': 'atlantic', 'name': 'Soyo'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '003750b6-c919-4a11-832f-061a8b660fa1', 'loadPort': {'uuid': '003bdb09-9cc9-4998-a849-0e0dce812fa7', 'type': 'export', 'region': 'atlantic', 'name': 'Soyo'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': None}, {'uuid': '00327a2e-3c6b-480d-84a5-f9bbfdb0aa06', 'loadPort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '00380c83-aa62-4cca-a203-6be929734389', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'suez'}, {'uuid': '003beb1f-8ca3-4472-9c19-b77f918ce7e8', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0034aa21-2462-43bc-b96b-e4f985078bb7', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': 'suez'}, {'uuid': '0038d644-3154-4685-a98e-fe180d48bc8e', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0034aa21-2462-43bc-b96b-e4f985078bb7', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': None}, {'uuid': '00362480-5548-4834-ac2b-8e2f9a53e713', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'cogh'}, {'uuid': '00346745-5f95-4d29-be30-f2c573b53f88', 'loadPort': {'uuid': '003ef335-be59-48ca-97aa-cf1fd8dea6fb', 'type': 'export', 'region': 'atlantic', 'name': 'Puerto Libertad'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '003640f7-32f8-4686-9e36-5d720cb16ce2', 'loadPort': {'uuid': '003ef335-be59-48ca-97aa-cf1fd8dea6fb', 'type': 'export', 'region': 'atlantic', 'name': 'Puerto Libertad'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'panama'}, {'uuid': '003c7873-7e95-4737-bd97-51ecb2bbe2f7', 'loadPort': {'uuid': '00383491-7e92-4b89-8b26-473fb3dcb9ed', 'type': 'export', 'region': 'atlantic', 'name': 'Rio Grande LNG'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '0039ae18-4c86-42cd-af5a-634029985064', 'loadPort': {'uuid': '00383491-7e92-4b89-8b26-473fb3dcb9ed', 'type': 'export', 'region': 'atlantic', 'name': 'Rio Grande LNG'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '00327d9b-5ac8-4bd0-9722-75b2215fd9c2', 'loadPort': {'uuid': '00383491-7e92-4b89-8b26-473fb3dcb9ed', 'type': 'export', 'region': 'atlantic', 'name': 'Rio Grande LNG'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '0031926d-2188-4c17-9aef-6038a7ce65c1', 'loadPort': {'uuid': '00383491-7e92-4b89-8b26-473fb3dcb9ed', 'type': 'export', 'region': 'atlantic', 'name': 'Rio Grande LNG'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '0031f4ab-2245-47b0-939e-465ad2bc732c', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003f1759-2659-47b7-b5ff-72878a81e5eb', 'type': 'import', 'region': 'pacific', 'name': 'Zhoushan'}, 'via': None}, {'uuid': '003dad8c-398f-482d-bd81-287b0e5b15d7', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003f1759-2659-47b7-b5ff-72878a81e5eb', 'type': 'import', 'region': 'pacific', 'name': 'Zhoushan'}, 'via': None}, {'uuid': '003aaa99-8e9e-4896-b8e8-d02921ed50a3', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '003f1759-2659-47b7-b5ff-72878a81e5eb', 'type': 'import', 'region': 'pacific', 'name': 'Zhoushan'}, 'via': None}, {'uuid': '003b031f-8706-4af9-baa4-04d0c1eb979a', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003f1759-2659-47b7-b5ff-72878a81e5eb', 'type': 'import', 'region': 'pacific', 'name': 'Zhoushan'}, 'via': 'suez'}, {'uuid': '003a32ce-bf56-4a4a-aa22-27d6d43581c0', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003f1759-2659-47b7-b5ff-72878a81e5eb', 'type': 'import', 'region': 'pacific', 'name': 'Zhoushan'}, 'via': 'cogh'}, {'uuid': '003cb715-5f05-4bd7-8963-6b5132df01c6', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003f1759-2659-47b7-b5ff-72878a81e5eb', 'type': 'import', 'region': 'pacific', 'name': 'Zhoushan'}, 'via': 'panama'}, {'uuid': '003cbfbb-b682-4d78-a4ed-6a345f690baf', 'loadPort': {'uuid': '003e005e-9aeb-4e31-b44f-6f1a5d79ea67', 'type': 'export', 'region': 'atlantic', 'name': 'Calcasieu Pass'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': None}, {'uuid': '003e457f-c24c-4079-a75b-4be1fcc88f1f', 'loadPort': {'uuid': '003e005e-9aeb-4e31-b44f-6f1a5d79ea67', 'type': 'export', 'region': 'atlantic', 'name': 'Calcasieu Pass'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '0037107d-5827-43eb-9e29-290ad94601ff', 'loadPort': {'uuid': '003e005e-9aeb-4e31-b44f-6f1a5d79ea67', 'type': 'export', 'region': 'atlantic', 'name': 'Calcasieu Pass'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': '003082db-7720-4bd9-951e-25a145455ffc', 'loadPort': {'uuid': '003e005e-9aeb-4e31-b44f-6f1a5d79ea67', 'type': 'export', 'region': 'atlantic', 'name': 'Calcasieu Pass'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '003f9943-d40a-4c91-9478-29c0822d60d8', 'loadPort': {'uuid': '003e005e-9aeb-4e31-b44f-6f1a5d79ea67', 'type': 'export', 'region': 'atlantic', 'name': 'Calcasieu Pass'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '0033f61f-0949-49bb-99fb-bd4e0202f7b0', 'loadPort': {'uuid': '003e005e-9aeb-4e31-b44f-6f1a5d79ea67', 'type': 'export', 'region': 'atlantic', 'name': 'Calcasieu Pass'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '003d9e23-504c-462f-9901-bf19ccd0d7a2', 'loadPort': {'uuid': '003e005e-9aeb-4e31-b44f-6f1a5d79ea67', 'type': 'export', 'region': 'atlantic', 'name': 'Calcasieu Pass'}, 'dischargePort': {'uuid': '003e3e36-1826-42f8-b789-c8137d7e0f34', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': None}, {'uuid': '003f0cc3-f646-4cd3-92ac-f2227a14b892', 'loadPort': {'uuid': '003e005e-9aeb-4e31-b44f-6f1a5d79ea67', 'type': 'export', 'region': 'atlantic', 'name': 'Calcasieu Pass'}, 'dischargePort': {'uuid': '003e049d-6197-4a0d-b075-517aaffd689a', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': None}, {'uuid': '00315853-e444-447a-880a-2f19a201f5da', 'loadPort': {'uuid': '00369d3c-62db-4833-8c49-ea1a2fbb2b18', 'type': 'export', 'region': 'atlantic', 'name': 'LNG Canada'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '003c2ff3-ef59-4000-aedf-280f8782ffe0', 'loadPort': {'uuid': '00369d3c-62db-4833-8c49-ea1a2fbb2b18', 'type': 'export', 'region': 'atlantic', 'name': 'LNG Canada'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'panama'}, {'uuid': '003cd9a7-0c95-4a07-85b9-b4c34acfb745', 'loadPort': {'uuid': '003fa7a4-b8ff-42e7-a146-983baddc769c', 'type': 'export', 'region': 'atlantic', 'name': 'Delfin FLNG'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '003dad9a-2fec-4d2e-a5d5-c79fdfd47478', 'loadPort': {'uuid': '003fa7a4-b8ff-42e7-a146-983baddc769c', 'type': 'export', 'region': 'atlantic', 'name': 'Delfin FLNG'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '003aea7d-20eb-4baf-9128-30c7940e226f', 'loadPort': {'uuid': '003fa7a4-b8ff-42e7-a146-983baddc769c', 'type': 'export', 'region': 'atlantic', 'name': 'Delfin FLNG'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '003a9261-c5ef-45b3-95ea-3143065aa134', 'loadPort': {'uuid': '00314d16-eada-4f37-bff3-d844708aeb45', 'type': 'export', 'region': 'atlantic', 'name': 'Woodfibre LNG'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'panama'}, {'uuid': '0036d0e4-0322-423b-9b32-426febc0ab05', 'loadPort': {'uuid': '00314d16-eada-4f37-bff3-d844708aeb45', 'type': 'export', 'region': 'atlantic', 'name': 'Woodfibre LNG'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '003c896b-04c7-4220-830d-bfff789a5b12', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '00364105-b12c-4f4d-94dc-1cd3069287b8', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': None}, {'uuid': '0031cf85-f320-4b64-a3b1-3bababa24ede', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '0036bb58-b8b6-4f04-95fe-ddce2a1f16f9', 'type': 'import', 'region': 'pacific', 'name': 'Caofeidian'}, 'via': 'suez'}, {'uuid': '0033fcbe-9085-4715-aa14-b315df7a1f19', 'loadPort': {'uuid': '0039b921-cc5c-47e3-9a31-9dfb0c55d345', 'type': 'export', 'region': 'atlantic', 'name': 'Freeport'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '00311959-66f0-49ea-b3fa-9d5905007e31', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '0030d930-6574-4049-a739-327a16620429', 'type': 'import', 'region': 'atlantic', 'name': 'Ravenna'}, 'via': 'cogh'}, {'uuid': '003de089-9d56-49e1-8a03-9969233fd753', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '00322305-371a-43ef-b2f0-f616fc388015', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': None}, {'uuid': '00315c12-1a44-44ac-aa1f-cfbec2aadf99', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': None}, {'uuid': '00399a97-9f63-49b7-a8e7-0dc3e41586c6', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '0039801a-a7d5-4cfe-b90c-4174e04b46fa', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': '00307f29-b3cd-400d-ba13-c8710a47a3e5', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '0030e1c4-bb33-4ba9-9076-8b000223d0b3', 'loadPort': {'uuid': '0039b921-cc5c-47e3-9a31-9dfb0c55d345', 'type': 'export', 'region': 'atlantic', 'name': 'Freeport'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '00368bc4-4012-42bf-a7ef-87f9d2ed84d6', 'loadPort': {'uuid': '0039b921-cc5c-47e3-9a31-9dfb0c55d345', 'type': 'export', 'region': 'atlantic', 'name': 'Freeport'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '003bd46d-3a04-4368-99f9-96cf76078dd8', 'loadPort': {'uuid': '0039b921-cc5c-47e3-9a31-9dfb0c55d345', 'type': 'export', 'region': 'atlantic', 'name': 'Freeport'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '0034691e-26ea-47aa-b396-a567a780c118', 'loadPort': {'uuid': '003ff22f-77d8-413f-9997-2c6280e7c28c', 'type': 'export', 'region': 'atlantic', 'name': 'Lake Charles'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '00320c8f-6c56-4760-89ce-a3d6bab69a3c', 'loadPort': {'uuid': '003ff22f-77d8-413f-9997-2c6280e7c28c', 'type': 'export', 'region': 'atlantic', 'name': 'Lake Charles'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '00344d1f-fb9c-465b-b2b3-d6d81abe0909', 'loadPort': {'uuid': '003ff22f-77d8-413f-9997-2c6280e7c28c', 'type': 'export', 'region': 'atlantic', 'name': 'Lake Charles'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '00384092-b2f3-4a11-9b5d-ae32760760c5', 'loadPort': {'uuid': '003ff22f-77d8-413f-9997-2c6280e7c28c', 'type': 'export', 'region': 'atlantic', 'name': 'Lake Charles'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '003e93d3-3f40-4428-949e-eb6d9d85a181', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0030fe3d-20b4-4faf-9d8e-3e1c9b049f2e', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': None}, {'uuid': '003e1db6-280e-4fe0-af76-e5c597786634', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0030fe3d-20b4-4faf-9d8e-3e1c9b049f2e', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': None}, {'uuid': '003bf64a-af4c-42a9-895d-8a6284a3fd06', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0030fe3d-20b4-4faf-9d8e-3e1c9b049f2e', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': 'suez'}, {'uuid': '0032c379-819f-4b9b-8207-193461897ec9', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '0030fe3d-20b4-4faf-9d8e-3e1c9b049f2e', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': None}, {'uuid': '0037dfa3-1351-4b3a-8aac-19605b67f083', 'loadPort': {'uuid': '003bdb09-9cc9-4998-a849-0e0dce812fa7', 'type': 'export', 'region': 'atlantic', 'name': 'Soyo'}, 'dischargePort': {'uuid': '0030fe3d-20b4-4faf-9d8e-3e1c9b049f2e', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': None}, {'uuid': '00309b61-dae7-4d2d-9d57-2c35a28b6ec0', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '0030fe3d-20b4-4faf-9d8e-3e1c9b049f2e', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': None}, {'uuid': '0032344f-0102-4b2f-a751-5a55b97312cf', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '0030fe3d-20b4-4faf-9d8e-3e1c9b049f2e', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': 'suez'}, {'uuid': '0039c0d5-536a-485e-b4e6-e5afa5c49914', 'loadPort': {'uuid': '0030c461-9a63-403d-8f53-9327ea773517', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '00359de5-92cd-4abd-ac62-d63bef384c1b', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': None}, {'uuid': '0030ad89-74e6-4d7b-9b58-d8e27f4bb9fd', 'loadPort': {'uuid': '0031b38c-2108-443e-9bea-bc0fccce37f7', 'type': 'export', 'region': 'pacific', 'name': 'Port Moresby'}, 'dischargePort': {'uuid': '0032fed7-dadd-4465-b8f5-0cc4e8915574', 'type': 'import', 'region': 'pacific', 'name': 'Shenzhen'}, 'via': None}, {'uuid': '00372f36-0f0d-4eaa-8795-b14124c82447', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '0037bd36-654f-4a43-9369-da829b6cddf1', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '003db702-6635-4f51-a41a-15c96f1ed03c', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': None}, {'uuid': '00374647-6cd2-4bba-a0cc-dc52c6679665', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': '003d9350-d9e8-470b-9655-7d2ffd4c3dd5', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0032fed7-dadd-4465-b8f5-0cc4e8915574', 'type': 'import', 'region': 'pacific', 'name': 'Shenzhen'}, 'via': None}, {'uuid': '0031201d-c9b9-44ff-b944-643d2a8e8c7f', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'cogh'}, {'uuid': '003c9f65-d794-4682-a00b-a954a3e84ec2', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'suez'}, {'uuid': '0037bee2-f00a-4b34-bda3-afad6c5ca7f5', 'loadPort': {'uuid': '0030c461-9a63-403d-8f53-9327ea773517', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '003606aa-5151-4047-a5c3-ec531c3f5275', 'loadPort': {'uuid': '0030c461-9a63-403d-8f53-9327ea773517', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'suez'}, {'uuid': '003e20da-047c-4235-9499-3f3bd6f345f9', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'suez'}, {'uuid': '003160d2-0ee1-4397-a4d6-76442947129d', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '003e1b67-e8b3-4175-8184-eba321b299fd', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0033b569-7a8b-441b-841c-760e76d9e36e', 'type': 'import', 'region': 'atlantic', 'name': 'Dunkerque'}, 'via': None}, {'uuid': '003075f2-d3cc-4732-9591-cd047c347f78', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': '003987da-f86e-46cd-8d11-a2c01755c9fc', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0030e65a-383d-4769-bc2b-33ae56657062', 'type': 'import', 'region': 'atlantic', 'name': 'Brunsbuttel'}, 'via': None}, {'uuid': '00309323-f31d-4358-b2d1-1181c30d3d30', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00359de5-92cd-4abd-ac62-d63bef384c1b', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': None}, {'uuid': '003caf93-e93d-42f8-9a00-95cfea5d53fa', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003ea9c4-f985-4fe1-b7a3-a833c142882b', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': None}, {'uuid': '003adfbb-f986-4922-b3f3-950a33773d44', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003a2e76-b6e3-4fb3-9c3f-d12b547ec41e', 'type': 'import', 'region': 'atlantic', 'name': 'Port Açu'}, 'via': None}, {'uuid': '0033c595-393b-49d0-8a2e-67d97b0a95b4', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00326ebb-3243-49cb-ae12-21a528c54351', 'type': 'import', 'region': 'atlantic', 'name': 'Sergipe'}, 'via': None}, {'uuid': '00395ae0-36de-4497-b87f-bb547972f601', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'cogh'}, {'uuid': '003ae2e9-16d3-40aa-aef8-83568811acb9', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'panama'}, {'uuid': '003070aa-5ee4-49de-8184-1d7c65a7e381', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'suez'}, {'uuid': '003b69e0-89ba-4ba3-8b72-bb4b4f2dfea6', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0034fc62-feb4-44d6-b201-584a977ef3e9', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': 'cogh'}, {'uuid': '003b448c-9c85-418e-9eca-55fe903ec66b', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0034fc62-feb4-44d6-b201-584a977ef3e9', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': 'suez'}, {'uuid': '0037e7b3-14f9-415a-aa15-80b2fe7f640d', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': None}, {'uuid': '003e2bae-cbaa-4119-8f78-b8e7f04f780e', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'cogh'}, {'uuid': '00341c41-9164-44fe-966b-2f79be70df41', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': None}, {'uuid': '0032fb53-62ca-41d9-a951-dba6a708f0a1', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': None}, {'uuid': '003e1716-1a00-4198-9e20-3cbdcc2eb289', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'cogh'}, {'uuid': '003fb49b-7f14-4c9a-87d1-6b1e5d7e3dda', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'suez'}, {'uuid': '003cec14-ffd8-42b9-8cdb-80a4a314b964', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': None}, {'uuid': '00355f31-5003-485d-809c-928c0cc4c247', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': None}, {'uuid': '003c6876-c06d-489d-b7f4-d5753f80e8e7', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'cogh'}, {'uuid': '003149f4-435d-46e4-b32f-3b69b921c72c', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'suez'}, {'uuid': '003fb6bc-da5e-4382-97f5-8a8ccf4e19e7', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '0030fe3d-20b4-4faf-9d8e-3e1c9b049f2e', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': None}, {'uuid': '003d0d2d-c67f-4d51-9104-f37183ba6a96', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003c0df2-60d1-4aa6-89c1-c5a860c8d56f', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'suez'}, {'uuid': '0039bdcb-1990-41f6-9f86-2fbfbe2ba33a', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003c0df2-60d1-4aa6-89c1-c5a860c8d56f', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'cogh'}, {'uuid': '003f68e1-31e4-4ef0-a669-dc151622fdcd', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003c0df2-60d1-4aa6-89c1-c5a860c8d56f', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': None}, {'uuid': '00343cad-4e48-44e2-89bf-10a0aecc87ea', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003c0df2-60d1-4aa6-89c1-c5a860c8d56f', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': None}, {'uuid': '0033ccfb-c423-4dc3-bd2f-12c35180dcf8', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003c0df2-60d1-4aa6-89c1-c5a860c8d56f', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'suez'}, {'uuid': '003ceff2-6e8f-4ccc-8f44-460eb4d0f1bb', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003c0df2-60d1-4aa6-89c1-c5a860c8d56f', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'cogh'}, {'uuid': '003947af-8da3-49a4-b9b0-ccd642428691', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003c0df2-60d1-4aa6-89c1-c5a860c8d56f', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'suez'}, {'uuid': '00391fcb-6a09-4533-b893-c8b45238100e', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003c0df2-60d1-4aa6-89c1-c5a860c8d56f', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'cogh'}, {'uuid': '0030f5c0-3a62-44d5-a627-b7ca0e75eb25', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'cogh'}, {'uuid': '003a2a54-0b60-41c3-a552-464d7408d15b', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'cogh'}, {'uuid': '00391c0d-74cf-4f20-9c83-a703cf64dc8a', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'suez'}, {'uuid': '003d02f9-e6b9-484e-8619-1f577a860cf6', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'suez'}, {'uuid': '003fe853-49b1-4494-b5c8-62f6a26aa170', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '0034fc62-feb4-44d6-b201-584a977ef3e9', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': None}, {'uuid': '0037e55b-09cf-43b3-8350-960c8d4e6836', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0034fc62-feb4-44d6-b201-584a977ef3e9', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': 'panama'}, {'uuid': '003582d3-88aa-4cc0-bc61-f2ef6eb78fb0', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0034fc62-feb4-44d6-b201-584a977ef3e9', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': 'suez'}, {'uuid': '00305815-1f45-459e-b914-8ce209f9c682', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0034fc62-feb4-44d6-b201-584a977ef3e9', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': 'cogh'}, {'uuid': '0030bad5-2cdd-4d94-9853-1beffc5903af', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0034fc62-feb4-44d6-b201-584a977ef3e9', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': None}, {'uuid': '00307b69-fe03-49f9-9f9e-a3330084a336', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '0034fc62-feb4-44d6-b201-584a977ef3e9', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': None}, {'uuid': '0035df1a-cb26-4155-9719-bb3023a37056', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '0034aa21-2462-43bc-b96b-e4f985078bb7', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': 'cogh'}, {'uuid': '003a4584-006b-4174-86a2-5e9bdc6a7f70', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '0034aa21-2462-43bc-b96b-e4f985078bb7', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': 'suez'}, {'uuid': '00395024-af9c-454a-8087-bcfb75a309fb', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '0034aa21-2462-43bc-b96b-e4f985078bb7', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': 'suez'}, {'uuid': '00301de0-fa7e-43ef-8b9d-27be20615d1c', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '0034aa21-2462-43bc-b96b-e4f985078bb7', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': 'cogh'}, {'uuid': '00335589-46e1-4ce7-bcbf-ba5e17ae4630', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'cogh'}, {'uuid': '0037533b-6c04-48ad-aa5e-f6410b57fe09', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'suez'}, {'uuid': '0031b759-0b86-4c6c-b9d4-42ec25077b2c', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': None}, {'uuid': '003c899e-2b5b-408f-9871-914a52443bca', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': None}, {'uuid': '00336f9f-f48e-40ea-a62e-eab0961ce1c3', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'suez'}, {'uuid': '0039c2f2-0542-4091-9273-5ce98c673aa3', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'cogh'}, {'uuid': '003b749b-4107-444e-a14f-28259228ba03', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'cogh'}, {'uuid': '0035763a-6f8f-4ab2-ad3c-8d53f951d4c6', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'suez'}, {'uuid': '0033678a-2301-4720-acfd-36fa53821470', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'cogh'}, {'uuid': '003e245b-5325-4651-87f4-27b2fca5e073', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'suez'}, {'uuid': '003e5cfb-dc4b-45cb-9ddd-b7d10cab0322', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': None}, {'uuid': '00349e44-fa6c-4d18-812f-ccb6f5fb95b4', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'suez'}, {'uuid': '003589d3-0f89-4de8-8e9d-d0b1ea86ad4a', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'cogh'}, {'uuid': '003b1ba3-a16d-4bfb-a203-4449fed40f8c', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003a212d-0ecb-464a-a679-b90ea65a7a14', 'type': 'import', 'region': 'atlantic', 'name': 'La Spezia'}, 'via': 'cogh'}, {'uuid': '00316d8d-8474-49c6-94af-c7277072bbdc', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003a212d-0ecb-464a-a679-b90ea65a7a14', 'type': 'import', 'region': 'atlantic', 'name': 'La Spezia'}, 'via': 'suez'}, {'uuid': '003a8aff-f118-4609-ac6b-dcd49cc741e5', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003a212d-0ecb-464a-a679-b90ea65a7a14', 'type': 'import', 'region': 'atlantic', 'name': 'La Spezia'}, 'via': None}, {'uuid': '003c1d41-c396-4471-9872-cdafd9f82341', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003a212d-0ecb-464a-a679-b90ea65a7a14', 'type': 'import', 'region': 'atlantic', 'name': 'La Spezia'}, 'via': None}, {'uuid': '003ea568-71dc-487c-bde8-a07e2521605d', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003a212d-0ecb-464a-a679-b90ea65a7a14', 'type': 'import', 'region': 'atlantic', 'name': 'La Spezia'}, 'via': 'suez'}, {'uuid': '0039e668-429b-4bde-84e1-7aaad6906996', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003a212d-0ecb-464a-a679-b90ea65a7a14', 'type': 'import', 'region': 'atlantic', 'name': 'La Spezia'}, 'via': 'cogh'}, {'uuid': '003be198-b85f-44f4-ad1b-ec58c34fa9ea', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003a212d-0ecb-464a-a679-b90ea65a7a14', 'type': 'import', 'region': 'atlantic', 'name': 'La Spezia'}, 'via': 'cogh'}, {'uuid': '0035aee9-cbc8-40ee-8a9b-f8b9b9bdc160', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003a212d-0ecb-464a-a679-b90ea65a7a14', 'type': 'import', 'region': 'atlantic', 'name': 'La Spezia'}, 'via': 'suez'}, {'uuid': '0036f161-cd54-4846-94d4-53f07871b41d', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'suez'}, {'uuid': '0035a741-1d9d-46a4-8770-4a1add9ed9eb', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'cogh'}, {'uuid': '003497bb-f4e8-4df0-a9d1-7546f495bbb2', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': None}, {'uuid': '0034f3a1-a8b8-47f7-9a13-552e3c1d4d7e', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': None}, {'uuid': '00368b38-a6d6-465e-b72c-19d7bf33f06b', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'suez'}, {'uuid': '00382426-d555-4a09-a804-d5743fceb953', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'cogh'}, {'uuid': '0035ecf2-00f3-4348-85d1-25cbd7a2d41c', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'cogh'}, {'uuid': '0031e474-47c8-44fc-a3e1-48c3a9f5fb70', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'suez'}, {'uuid': '0034b690-cf39-42c9-9ba9-26dab6299875', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '00382738-2387-431b-8740-155d26a8ef0b', 'type': 'import', 'region': 'pacific', 'name': 'Quintero'}, 'via': None}, {'uuid': '0037835a-79e1-4c37-9225-d41c756b4e4f', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '00382738-2387-431b-8740-155d26a8ef0b', 'type': 'import', 'region': 'pacific', 'name': 'Quintero'}, 'via': 'panama'}, {'uuid': '003295cd-3015-447a-b1f3-e5d5c15081f2', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00382738-2387-431b-8740-155d26a8ef0b', 'type': 'import', 'region': 'pacific', 'name': 'Quintero'}, 'via': None}, {'uuid': '0033b37f-d7c2-45d4-966d-9f3fd25a5ada', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '00382738-2387-431b-8740-155d26a8ef0b', 'type': 'import', 'region': 'pacific', 'name': 'Quintero'}, 'via': None}, {'uuid': '0034ce53-1cc3-4aed-a076-aeb392e0697a', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '00351043-8269-4fba-919f-5d54d7d48915', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': 'suez'}, {'uuid': '0030ef2e-9fc7-4d82-adcf-733688da108a', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '00351043-8269-4fba-919f-5d54d7d48915', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': 'cogh'}, {'uuid': '003da65a-37cc-407e-ae93-ba9720b047ac', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '00351043-8269-4fba-919f-5d54d7d48915', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': None}, {'uuid': '003a1b8e-4e52-4c1a-a716-e9c4253cdf8f', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00382738-2387-431b-8740-155d26a8ef0b', 'type': 'import', 'region': 'pacific', 'name': 'Quintero'}, 'via': 'cogh'}, {'uuid': '003cadc9-5af7-427d-97f4-95a80e6468e3', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'cogh'}, {'uuid': '003336d6-62a3-44fe-b5a2-f2980b801195', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'suez'}, {'uuid': '0037d289-c564-442e-8b64-b860ce0eb82d', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'cogh'}, {'uuid': '0038be1a-6531-40ea-af1e-82bce8a5e92e', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': None}, {'uuid': '00339b38-aba6-4e40-8ae2-332c1191a381', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'suez'}, {'uuid': '003d4dd0-4a3f-4ad3-a506-ba4fe4023c60', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00351043-8269-4fba-919f-5d54d7d48915', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': None}, {'uuid': '003f66ee-e537-4cd9-89f0-deb4c49030b6', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00351043-8269-4fba-919f-5d54d7d48915', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': 'suez'}, {'uuid': '0030ee1a-c2ba-4fb4-ae04-179f1131cb13', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00351043-8269-4fba-919f-5d54d7d48915', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': 'cogh'}, {'uuid': '003ebeef-58c5-4a29-9ce8-45bda3ba3286', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '00351043-8269-4fba-919f-5d54d7d48915', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': 'cogh'}, {'uuid': '003c9afa-2d28-47bd-9c61-201e71e080d2', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '00351043-8269-4fba-919f-5d54d7d48915', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': 'suez'}, {'uuid': '003729f4-6958-4c66-bee2-11011b68e434', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003e20ed-3306-47c4-94bc-762cf3e896b9', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': None}, {'uuid': '003af1b6-005c-4c2e-bcff-257cc8b5e59b', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003e20ed-3306-47c4-94bc-762cf3e896b9', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': 'cogh'}, {'uuid': '003b1f60-06f5-4291-b02d-eda486605185', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003e20ed-3306-47c4-94bc-762cf3e896b9', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': 'suez'}, {'uuid': '00379f67-a2fc-44c1-bf59-9815a1254401', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003e20ed-3306-47c4-94bc-762cf3e896b9', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': 'cogh'}, {'uuid': '00339ef7-aa0b-46d7-9daf-4c802f0b035a', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003e20ed-3306-47c4-94bc-762cf3e896b9', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': None}, {'uuid': '0039ca63-7880-45c2-826f-0750f0979b6f', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003e20ed-3306-47c4-94bc-762cf3e896b9', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': None}, {'uuid': '0038c82f-796a-4a2b-9e2b-3e9de70b5609', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '00382738-2387-431b-8740-155d26a8ef0b', 'type': 'import', 'region': 'pacific', 'name': 'Quintero'}, 'via': 'magellan-straits'}, {'uuid': '003f61ae-c24d-490d-be27-854b21f5a7ba', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '0035c0fe-299d-4696-8c94-45f4878c9dda', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': None}, {'uuid': '00349f6b-2a50-47e0-b982-b5215aec6ce5', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0035c0fe-299d-4696-8c94-45f4878c9dda', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': 'cogh'}, {'uuid': '003fdf34-75d5-4e18-972a-345ec4bfa401', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0035c0fe-299d-4696-8c94-45f4878c9dda', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': 'suez'}, {'uuid': '0033fc5d-9767-43e5-b05d-48407c3369c2', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '0035c0fe-299d-4696-8c94-45f4878c9dda', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': None}, {'uuid': '003e0e1c-98a3-4863-b666-2bbdf9ce4d92', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '00301fdd-c604-41e4-8d58-48148bde7aa9', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': None}, {'uuid': '003976c0-02cc-4def-bf48-2fceeca913ae', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '00301fdd-c604-41e4-8d58-48148bde7aa9', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': 'cogh'}, {'uuid': '003c95e6-93df-40ae-9cf1-4795a8b53ecc', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '00301fdd-c604-41e4-8d58-48148bde7aa9', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': 'suez'}, {'uuid': '003f0591-10cb-45cf-9caf-94c4cc583b36', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00301fdd-c604-41e4-8d58-48148bde7aa9', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': 'suez'}, {'uuid': '003f1d48-4704-4d95-8b72-a278825b15fd', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00301fdd-c604-41e4-8d58-48148bde7aa9', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': 'panama'}, {'uuid': '003372d3-890c-423b-88ae-5f904bb82bf3', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00301fdd-c604-41e4-8d58-48148bde7aa9', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': 'cogh'}, {'uuid': '003de15e-7aa4-4504-aa0d-595e1e8ccbf3', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00301fdd-c604-41e4-8d58-48148bde7aa9', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': None}, {'uuid': '0037d674-1e63-4c68-9b00-ed5cfc4a7e95', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '00301fdd-c604-41e4-8d58-48148bde7aa9', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': None}, {'uuid': '003274de-4e7d-4b97-9c84-5233b2bacfab', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': None}, {'uuid': '003f2c7e-152f-4c4d-8a20-425ec3de1bb2', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'suez'}, {'uuid': '003c63a5-9012-4e40-99d8-0a1f0d73e56d', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '0030fe3d-20b4-4faf-9d8e-3e1c9b049f2e', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': None}, {'uuid': '0036c912-4cf7-4d47-b7b5-3a68c63169c6', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003e20ed-3306-47c4-94bc-762cf3e896b9', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': None}, {'uuid': '0034a1df-9dab-4a9e-b0e4-bca2f6138480', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': None}, {'uuid': '003d43fc-ebeb-40ac-b512-4563b8ad078e', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003c0df2-60d1-4aa6-89c1-c5a860c8d56f', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'suez'}, {'uuid': '0036b090-3424-4bd1-a9f1-a42ad666a90d', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003c0df2-60d1-4aa6-89c1-c5a860c8d56f', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'cogh'}, {'uuid': '003edbdf-e950-4621-8af3-737636969df8', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'panama'}, {'uuid': '003b5b57-ef04-432f-b58b-10b4117ff7ca', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'suez'}, {'uuid': '00339c0d-0d19-4148-bace-4d4bc3235de8', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'cogh'}, {'uuid': '003968f6-5cd9-431d-9773-ed8b78fdcdf4', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '0034fc62-feb4-44d6-b201-584a977ef3e9', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': None}, {'uuid': '00359b35-85fa-4d3b-9251-20dcb2e408e2', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': None}, {'uuid': '003adc87-bb01-4aa6-bdd2-39158baf5f0c', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'suez'}, {'uuid': '003279a0-6d19-4473-9b07-43e05683476f', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'cogh'}, {'uuid': '00390361-5fda-4f66-a483-f79a7fa7ffa7', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'cogh'}, {'uuid': '00320119-9625-4cd0-bdfc-7a50f57fea77', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'suez'}, {'uuid': '003501f4-fc2d-439d-a935-de810046fc3a', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '00301fdd-c604-41e4-8d58-48148bde7aa9', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': None}, {'uuid': '0036314a-b2df-4a88-82b2-ab25379c84d9', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'panama'}, {'uuid': '0039d4b0-6451-4852-8015-7da492e84897', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '0030fe3d-20b4-4faf-9d8e-3e1c9b049f2e', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': 'cogh'}, {'uuid': '003307c3-8ceb-40db-a68d-8653ae1ad103', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '0030fe3d-20b4-4faf-9d8e-3e1c9b049f2e', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': 'suez'}, {'uuid': '0030f167-7889-4163-ab8b-20d68b2245a4', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'cogh'}, {'uuid': '003ec440-407f-49e2-8c25-8aca6c1ea1e5', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'suez'}, {'uuid': '003b9da7-1169-4bc4-8bf1-ab1ab476da99', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'suez'}, {'uuid': '003a7638-e4d0-475c-b531-a95d3508bc70', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'cogh'}, {'uuid': '0031c56e-995b-4df6-ba0b-e9d1b31ae60d', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'cogh'}, {'uuid': '003e9da2-fd6d-4d6d-a4f1-e253c18ed153', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': None}, {'uuid': '003cc76a-7999-43bc-94fd-30ce179cdfbc', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'suez'}, {'uuid': '00334ad5-3fa2-421c-bb4e-c5af7173360c', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'cogh'}, {'uuid': '0032ac02-c5ab-4611-8e9c-2745c87cfdd8', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003e20ed-3306-47c4-94bc-762cf3e896b9', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': 'cogh'}, {'uuid': '00351fca-420c-4e0f-bb79-527ae9285730', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'cogh'}, {'uuid': '00347d6f-c920-42a1-ae03-4195a1f70a10', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'suez'}, {'uuid': '003b0fc8-c036-439a-8b89-a48fe0de223c', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003c0df2-60d1-4aa6-89c1-c5a860c8d56f', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': None}, {'uuid': '003f26cc-2a94-4ffe-a465-4a71bbb2b994', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': None}, {'uuid': '003b1fe1-f830-4222-8d4b-f664b110ee21', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003e20ed-3306-47c4-94bc-762cf3e896b9', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': 'suez'}, {'uuid': '00350f32-3d6f-4a52-bdd2-f8d27621446d', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '0034fc62-feb4-44d6-b201-584a977ef3e9', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': 'suez'}, {'uuid': '00363e9e-0ac8-4961-aea2-ad0d80011cc9', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'suez'}, {'uuid': '003a2c21-0c35-4018-9338-4dff8b11ef08', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'cogh'}, {'uuid': '00339342-e2f7-48f5-b065-2d63237222c0', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': None}, {'uuid': '003b3c4d-89db-429b-a0d5-6a7c4358bf32', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': None}, {'uuid': '0031df75-7b00-465c-b635-8b656b381278', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00301fdd-c604-41e4-8d58-48148bde7aa9', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': 'cogh'}, {'uuid': '00310925-afa5-4fb8-aa72-97e061158f83', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00301fdd-c604-41e4-8d58-48148bde7aa9', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': 'suez'}, {'uuid': '0037a3e2-93fc-4a5a-85ad-1e063c124042', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': None}, {'uuid': '003b5130-8c52-4b02-b695-aeecb135fcab', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '0034fc62-feb4-44d6-b201-584a977ef3e9', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': 'cogh'}, {'uuid': '00334bd0-12ab-4384-b2cb-70010d30851b', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': None}, {'uuid': '003307f6-3626-4f81-9b50-88f7725a3621', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003e20ed-3306-47c4-94bc-762cf3e896b9', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': None}, {'uuid': '0038d34b-a3a2-487b-af2a-3377484b12d3', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '0034fc62-feb4-44d6-b201-584a977ef3e9', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': None}, {'uuid': '003e40bb-7be3-44a6-a048-251955c14e33', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': None}, {'uuid': '00328d70-a45a-4720-a134-cf7cca6bd2ea', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '00301fdd-c604-41e4-8d58-48148bde7aa9', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': None}, {'uuid': '003d51d9-b627-49de-ae8c-c83b35273f84', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'panama'}, {'uuid': '003ce4cf-1e66-40f8-9b90-cb4f72ca6a37', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003c0df2-60d1-4aa6-89c1-c5a860c8d56f', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'cogh'}, {'uuid': '0031f370-6e90-4981-81c8-caf0b25107a2', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003c0df2-60d1-4aa6-89c1-c5a860c8d56f', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'suez'}, {'uuid': '00353181-3ec4-4fe5-8b11-0aa6a93c6d8f', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'cogh'}, {'uuid': '003f57f5-0a84-4d60-b879-25101d229d28', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'suez'}, {'uuid': '00321bac-7013-4c0a-b87d-77b50f1d447c', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'suez'}, {'uuid': '003d6935-7b4e-4499-9351-3d9b39ea8bf2', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'cogh'}, {'uuid': '003274d2-d3f4-4256-a3d6-c86ce24df223', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'suez'}, {'uuid': '00335873-553f-4df3-be3b-c6e78430b9b7', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'cogh'}, {'uuid': '003846b4-e486-4967-8d6e-e1782693f4cb', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '0039ea55-8adc-4448-ba3f-812c44c2d293', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': None}, {'uuid': '00300e22-09af-4fde-93e3-aa4273e2ae3d', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0039ea55-8adc-4448-ba3f-812c44c2d293', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': None}, {'uuid': '00356dac-40b6-4fcc-8567-e3c1162c6d47', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '0039ea55-8adc-4448-ba3f-812c44c2d293', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': 'magellan-straits'}, {'uuid': '00353b87-cd28-4368-9266-04e138812be7', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '0039ea55-8adc-4448-ba3f-812c44c2d293', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': 'cogh'}, {'uuid': '003772ee-c84e-40cc-8eff-155baf1135ef', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '0039ea55-8adc-4448-ba3f-812c44c2d293', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': None}, {'uuid': '00356e96-de79-4d35-ba12-2378e9b23697', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '0039ea55-8adc-4448-ba3f-812c44c2d293', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': 'cogh'}, {'uuid': '003049c5-58bf-418b-892e-7a4989c2b93c', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '0039ea55-8adc-4448-ba3f-812c44c2d293', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': 'suez'}, {'uuid': '003edf4f-9748-45cc-b94d-855b42e0feb0', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0039ea55-8adc-4448-ba3f-812c44c2d293', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': 'suez'}, {'uuid': '0036beed-a442-4e6e-9d97-e9afc6fcb3d9', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0039ea55-8adc-4448-ba3f-812c44c2d293', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': 'cogh'}, {'uuid': '003dc6e3-bd3b-415c-b895-9ec201ee5a5b', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003e049d-6197-4a0d-b075-517aaffd689a', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': None}, {'uuid': '003ab96a-9ff7-4f3f-b584-d510ec245d03', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003e049d-6197-4a0d-b075-517aaffd689a', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': None}, {'uuid': '0039ac25-0525-4037-8c86-5b7309c7067a', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003e049d-6197-4a0d-b075-517aaffd689a', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': None}, {'uuid': '003baedd-cf78-4c5a-a8f9-66365fa4fa80', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003e049d-6197-4a0d-b075-517aaffd689a', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': None}, {'uuid': '003052a2-7c37-455a-88c3-e00bf86ac210', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'suez'}, {'uuid': '00320953-afaf-48a8-ac07-90d6de4f6ace', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'cogh'}, {'uuid': '003a5541-5e9b-4229-89c0-83c483b7b08f', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'suez'}, {'uuid': '00318a6c-3270-48bc-9240-fe93b66584cb', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'cogh'}, {'uuid': '00321ce5-01dd-46c1-b304-e2dcc745cc68', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'suez'}, {'uuid': '003e6f1d-2e56-4b1a-8425-198e8248d8dc', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'cogh'}, {'uuid': '00385bdd-23e9-4076-9c24-ca11d1e421b7', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'cogh'}, {'uuid': '00386380-89c5-4493-b6f5-15ad64f54528', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'suez'}, {'uuid': '00310f27-35ae-40f3-a8c1-f6d7000452d6', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003e049d-6197-4a0d-b075-517aaffd689a', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': None}, {'uuid': '003be7ba-004e-40d6-815f-a1e8e8b6053c', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003e049d-6197-4a0d-b075-517aaffd689a', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': 'cogh'}, {'uuid': '003ea1e2-58af-432d-8b9c-4a3c978ea116', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003e049d-6197-4a0d-b075-517aaffd689a', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': 'suez'}, {'uuid': '003bf581-41dc-4a8b-a2e4-8f8914bd54a9', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003e049d-6197-4a0d-b075-517aaffd689a', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': 'suez'}, {'uuid': '003dd0e0-2ae6-4beb-88cf-fc836932bbdc', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003e049d-6197-4a0d-b075-517aaffd689a', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': 'cogh'}, {'uuid': '003d3d95-db03-4087-b2bc-7fa801cb1de4', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003e049d-6197-4a0d-b075-517aaffd689a', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': None}, {'uuid': '0035234e-1b49-46f3-8018-0f0f18b3abd4', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003da60d-2e4f-450e-9a83-43e1ac3517fc', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': None}, {'uuid': '003629c9-3293-41fb-8c5c-faf1762a80d5', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003da60d-2e4f-450e-9a83-43e1ac3517fc', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': None}, {'uuid': '0033414f-183e-4ad4-9c52-b3459c881005', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003da60d-2e4f-450e-9a83-43e1ac3517fc', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': 'suez'}, {'uuid': '003ff319-8d38-4a01-aa09-adc2a1728cc8', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003da60d-2e4f-450e-9a83-43e1ac3517fc', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': None}, {'uuid': '0033883d-70e9-4ab3-a5f3-fcd709f9b372', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003da60d-2e4f-450e-9a83-43e1ac3517fc', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': None}, {'uuid': '0039eafb-37c9-4c4f-9ea4-54abe5db36bd', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003da60d-2e4f-450e-9a83-43e1ac3517fc', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': 'cogh'}, {'uuid': '003c824d-9217-4ef0-a1b8-49578e77a1b7', 'loadPort': {'uuid': '003effde-1384-41fd-b604-15cc81167a3c', 'type': 'export', 'region': 'pacific', 'name': 'Coral South FLNG'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'suez'}, {'uuid': '003b953b-60f6-49bf-aacb-f8dd19aef1c5', 'loadPort': {'uuid': '003effde-1384-41fd-b604-15cc81167a3c', 'type': 'export', 'region': 'pacific', 'name': 'Coral South FLNG'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'cogh'}, {'uuid': '00305817-79f6-4f49-88ca-65b74522cc17', 'loadPort': {'uuid': '003effde-1384-41fd-b604-15cc81167a3c', 'type': 'export', 'region': 'pacific', 'name': 'Coral South FLNG'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': None}, {'uuid': '00309fff-e341-4f88-80c1-a4851eef5c9f', 'loadPort': {'uuid': '003effde-1384-41fd-b604-15cc81167a3c', 'type': 'export', 'region': 'pacific', 'name': 'Coral South FLNG'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': '0039291d-09e9-4c2d-bf00-38ed9d80abec', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003cc07a-14ff-4f9e-87e4-7124d809c045', 'type': 'import', 'region': 'pacific', 'name': 'Batangas'}, 'via': None}, {'uuid': '003cc577-ccad-4b34-b919-4033a38720e4', 'loadPort': {'uuid': '003effde-1384-41fd-b604-15cc81167a3c', 'type': 'export', 'region': 'pacific', 'name': 'Coral South FLNG'}, 'dischargePort': {'uuid': '003cc07a-14ff-4f9e-87e4-7124d809c045', 'type': 'import', 'region': 'pacific', 'name': 'Batangas'}, 'via': None}, {'uuid': '003bf1e0-2f67-4490-9f62-5043a1f6e662', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003cc07a-14ff-4f9e-87e4-7124d809c045', 'type': 'import', 'region': 'pacific', 'name': 'Batangas'}, 'via': None}, {'uuid': '003cd9d1-4ace-4467-994a-44bf7487ed61', 'loadPort': {'uuid': '00369d3c-62db-4833-8c49-ea1a2fbb2b18', 'type': 'export', 'region': 'atlantic', 'name': 'LNG Canada'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': '00359014-1b6b-4eac-a2d6-6792df5b96e2', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003cc07a-14ff-4f9e-87e4-7124d809c045', 'type': 'import', 'region': 'pacific', 'name': 'Batangas'}, 'via': None}, {'uuid': '003391a5-39a1-4fc1-8602-f0f18ede5fe0', 'loadPort': {'uuid': '003effde-1384-41fd-b604-15cc81167a3c', 'type': 'export', 'region': 'pacific', 'name': 'Coral South FLNG'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'suez'}, {'uuid': '003e2b39-0717-43ac-af96-3b206176b05c', 'loadPort': {'uuid': '003effde-1384-41fd-b604-15cc81167a3c', 'type': 'export', 'region': 'pacific', 'name': 'Coral South FLNG'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'cogh'}, {'uuid': '003e6e81-ba14-4f2b-b54e-01aa9a9eb0f9', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003ea9c4-f985-4fe1-b7a3-a833c142882b', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': 'cogh'}, {'uuid': '003bff95-56f6-45ef-9ede-4b90014abc32', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003ea9c4-f985-4fe1-b7a3-a833c142882b', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': 'suez'}, {'uuid': '003d57e7-b106-4e76-8fc5-90124f52ec56', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003ea9c4-f985-4fe1-b7a3-a833c142882b', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': None}, {'uuid': '00309c31-d204-4d34-9523-a0c5873d59de', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003ea9c4-f985-4fe1-b7a3-a833c142882b', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': 'panama'}, {'uuid': '00367cbd-f97a-4bf9-a7bf-8f20938fe941', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003ea9c4-f985-4fe1-b7a3-a833c142882b', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': None}, {'uuid': '0036ae2a-d219-419c-a80d-7241700b8aec', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003ea9c4-f985-4fe1-b7a3-a833c142882b', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': 'cogh'}, {'uuid': '00312669-f06e-4f80-a2c4-fc3e07b96dd9', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003ea9c4-f985-4fe1-b7a3-a833c142882b', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': None}, {'uuid': '0036bc51-d5b3-4762-ba7c-c591ad0b42d0', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003ea9c4-f985-4fe1-b7a3-a833c142882b', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': 'suez'}, {'uuid': '003b94ca-3f62-4fab-addb-d7b72ddbef2c', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003ea9c4-f985-4fe1-b7a3-a833c142882b', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': 'cogh'}, {'uuid': '003e6b29-b9b7-49f1-a234-cba4e0b48494', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003ea9c4-f985-4fe1-b7a3-a833c142882b', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': 'cogh'}, {'uuid': '0037485d-65f6-4b67-bef0-7b3d39d37b9e', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003ea9c4-f985-4fe1-b7a3-a833c142882b', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': 'suez'}, {'uuid': '003efe09-01bd-4293-8c74-55fd4f49ebde', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '0035614f-c994-47fd-af7b-d406a5da4be5', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '00333ce8-18d3-4321-b4ee-878ffa5b31eb', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '00381a64-df52-4cc8-8a8b-1bfb07979f2c', 'loadPort': {'uuid': '00387996-f338-4c38-abcf-3fcfd3712339', 'type': 'export', 'region': 'pacific', 'name': 'Tangguh'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': '003f77cb-70b0-4fa9-b816-ffafa68dde7d', 'loadPort': {'uuid': '003adf4e-01b5-4680-9cd7-49613d5d0e3e', 'type': 'export', 'region': 'atlantic', 'name': 'Plaquemines'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '00303355-78fb-4100-a0f5-e692f9ac0a7b', 'loadPort': {'uuid': '003adf4e-01b5-4680-9cd7-49613d5d0e3e', 'type': 'export', 'region': 'atlantic', 'name': 'Plaquemines'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '003f3a47-2882-44e3-83b8-54f29181f5c2', 'loadPort': {'uuid': '003adf4e-01b5-4680-9cd7-49613d5d0e3e', 'type': 'export', 'region': 'atlantic', 'name': 'Plaquemines'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '003d0e81-de97-4d0f-9b75-36f5f913a2ee', 'loadPort': {'uuid': '00387996-f338-4c38-abcf-3fcfd3712339', 'type': 'export', 'region': 'pacific', 'name': 'Tangguh'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'cogh'}, {'uuid': '00345341-986f-4537-b05d-9bb1158287e3', 'loadPort': {'uuid': '00387996-f338-4c38-abcf-3fcfd3712339', 'type': 'export', 'region': 'pacific', 'name': 'Tangguh'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '00310345-86ef-4d4b-92b1-ad506132fddb', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003ea9c4-f985-4fe1-b7a3-a833c142882b', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': None}, {'uuid': '003f2b1b-d2f5-4850-8643-f488a8c4187e', 'loadPort': {'uuid': '003adf4e-01b5-4680-9cd7-49613d5d0e3e', 'type': 'export', 'region': 'atlantic', 'name': 'Plaquemines'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '00351b03-e365-4392-b5af-28d8528cf949', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003c065f-2780-49f0-a070-b1313f782503', 'type': 'import', 'region': 'atlantic', 'name': 'Deutsche Ostsee'}, 'via': None}, {'uuid': '00389be5-54b9-45ab-9cca-0594ce0ab096', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003e3e36-1826-42f8-b789-c8137d7e0f34', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': None}, {'uuid': '0031cac2-e46e-4727-a4cd-6ff21e1e214f', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003f6682-9a02-442e-9762-f75b63530277', 'type': 'import', 'region': 'atlantic', 'name': 'Huelva'}, 'via': None}, {'uuid': '00305f40-43a2-4b7c-b3f6-5846535912b8', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003af9a7-c419-4360-8fad-4a558a1d8730', 'type': 'import', 'region': 'atlantic', 'name': 'Wilhelmshaven'}, 'via': None}, {'uuid': '00350ea8-c1a0-49a7-8580-bf9edf0ea8c8', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003aab65-41c1-4952-a9dd-d6114af8a3b2', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': None}, {'uuid': '0037971e-444b-40ad-b98f-9f913c0711da', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003aab65-41c1-4952-a9dd-d6114af8a3b2', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': 'suez'}, {'uuid': '003df3fc-6c12-4a71-9f61-22ef0afab44a', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003aab65-41c1-4952-a9dd-d6114af8a3b2', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': 'cogh'}, {'uuid': '003dde04-6d44-405e-a064-3f2e642a5984', 'loadPort': {'uuid': '003390dc-0918-485a-ba91-12465d2f1890', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '003aab65-41c1-4952-a9dd-d6114af8a3b2', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': None}, {'uuid': '003621b8-70f7-48a8-8fb0-94a102110c57', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003aab65-41c1-4952-a9dd-d6114af8a3b2', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': 'suez'}, {'uuid': '0032373f-3554-412e-8994-b5c59fdae91f', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003aab65-41c1-4952-a9dd-d6114af8a3b2', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': 'cogh'}, {'uuid': '003dddcc-a0b6-4e4a-a7f7-94e8a0e33fb8', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003aab65-41c1-4952-a9dd-d6114af8a3b2', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': None}, {'uuid': '003a88b1-c81b-429f-be2f-ddacb1e84986', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003aab65-41c1-4952-a9dd-d6114af8a3b2', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': None}, {'uuid': '0031fbcf-e6ec-4e7f-92e4-45c9630b97c9', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003aab65-41c1-4952-a9dd-d6114af8a3b2', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': None}, {'uuid': '003772a7-32f9-4b96-92fa-f42696746dfe', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003aab65-41c1-4952-a9dd-d6114af8a3b2', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': 'suez'}, {'uuid': '003011fd-4cd2-497f-b60e-4700f15a5869', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003aab65-41c1-4952-a9dd-d6114af8a3b2', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': 'cogh'}, {'uuid': '00310d6a-148d-4879-a092-a5413ddab01d', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003801fb-0c33-4da6-9bec-8cefd706fd8c', 'type': 'import', 'region': 'atlantic', 'name': 'Le Havre'}, 'via': None}, {'uuid': '003fee5c-985c-4594-8582-eb2b05c08598', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': None}, {'uuid': '00318efb-d31f-4824-a1a3-769b708fe9a8', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003c0df2-60d1-4aa6-89c1-c5a860c8d56f', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': None}, {'uuid': '0035943f-8109-470b-bfeb-18757a5465f9', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003e049d-6197-4a0d-b075-517aaffd689a', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': None}, {'uuid': '0037ac8c-e4e9-44f2-8523-03508fb80e5e', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003e3e36-1826-42f8-b789-c8137d7e0f34', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': None}, {'uuid': '0036d1df-9e9d-42d7-aa62-6cbef389e26d', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003e20ed-3306-47c4-94bc-762cf3e896b9', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': 'suez'}, {'uuid': '003ca2e9-08b8-429c-9e49-ebe8c45aef3a', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'suez'}, {'uuid': '00370314-2074-402d-835b-bdfaeae10427', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': None}, {'uuid': '0034991c-1616-47f6-8c27-0e5238fd288f', 'loadPort': {'uuid': '003bdb09-9cc9-4998-a849-0e0dce812fa7', 'type': 'export', 'region': 'atlantic', 'name': 'Soyo'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': None}, {'uuid': '003a75c9-30f8-4466-955a-f2e1fec43673', 'loadPort': {'uuid': '0038c659-fc9c-4d7d-a136-b227aba287ba', 'type': 'export', 'region': 'pacific', 'name': 'DSLNG'}, 'dischargePort': {'uuid': '003a81ab-1590-4d5d-9a4c-69857a9f6985', 'type': 'import', 'region': 'pacific', 'name': 'Lampung'}, 'via': None}, {'uuid': '00350bc2-e908-4e37-9c2d-d17180be4a54', 'loadPort': {'uuid': '0038c659-fc9c-4d7d-a136-b227aba287ba', 'type': 'export', 'region': 'pacific', 'name': 'DSLNG'}, 'dischargePort': {'uuid': '0033e22e-c545-469b-95c1-4d16bdbba1ef', 'type': 'import', 'region': 'pacific', 'name': 'Nusantara'}, 'via': None}, {'uuid': '00318db5-0c81-4408-8a41-90ad5332d3cf', 'loadPort': {'uuid': '0038c659-fc9c-4d7d-a136-b227aba287ba', 'type': 'export', 'region': 'pacific', 'name': 'DSLNG'}, 'dischargePort': {'uuid': '00378915-9416-4fce-afae-8e55ea95b26d', 'type': 'import', 'region': 'pacific', 'name': 'Arun'}, 'via': None}, {'uuid': '00327f58-722c-4c06-a612-6391958c9262', 'loadPort': {'uuid': '003bdb09-9cc9-4998-a849-0e0dce812fa7', 'type': 'export', 'region': 'atlantic', 'name': 'Soyo'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'suez'}, {'uuid': '003ecf84-943e-4bc0-9886-ba2338de28ad', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0030e65a-383d-4769-bc2b-33ae56657062', 'type': 'import', 'region': 'atlantic', 'name': 'Brunsbuttel'}, 'via': None}, {'uuid': '0037ceca-f7ba-46b5-9f0b-b3978b6bfeb1', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '00353980-7951-434c-a45b-9ec5ef1735a0', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': None}, {'uuid': '00341a82-cedb-4ddf-b36e-52e38ed843db', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003c065f-2780-49f0-a070-b1313f782503', 'type': 'import', 'region': 'atlantic', 'name': 'Deutsche Ostsee'}, 'via': None}, {'uuid': '0035392d-7074-41f4-a832-0ae0be2ed13d', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0033b569-7a8b-441b-841c-760e76d9e36e', 'type': 'import', 'region': 'atlantic', 'name': 'Dunkerque'}, 'via': None}, {'uuid': '003d98e7-5114-497e-80b4-245a329ea63c', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003e3e36-1826-42f8-b789-c8137d7e0f34', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': None}, {'uuid': '003cfdb7-1f39-4427-b277-46518ff6b06a', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003801fb-0c33-4da6-9bec-8cefd706fd8c', 'type': 'import', 'region': 'atlantic', 'name': 'Le Havre'}, 'via': None}, {'uuid': '003c4aaa-5aa7-4615-9643-52fe7e5bef74', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': '0032ea43-51ff-4d56-8d53-1fca521d9fe3', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003f6682-9a02-442e-9762-f75b63530277', 'type': 'import', 'region': 'atlantic', 'name': 'Huelva'}, 'via': None}, {'uuid': '003f89cb-1011-4168-a760-3193f4d35b89', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003af9a7-c419-4360-8fad-4a558a1d8730', 'type': 'import', 'region': 'atlantic', 'name': 'Wilhelmshaven'}, 'via': None}, {'uuid': '00337a8f-4d41-4ace-9221-942f5a8a4bd1', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '00364105-b12c-4f4d-94dc-1cd3069287b8', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': None}, {'uuid': '00395b41-5103-4461-bc87-be6dc94b5e89', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '00324816-065e-48e9-94fa-98eaf1aee433', 'type': 'import', 'region': 'atlantic', 'name': 'Eemshaven'}, 'via': None}, {'uuid': '003efb5b-4d44-4d5b-b9ef-d6db439975e5', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '00359de5-92cd-4abd-ac62-d63bef384c1b', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': None}, {'uuid': '003ab508-2d36-4e2a-b639-8d9306be4b70', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': None}, {'uuid': '0035cde1-4859-4a2e-bd84-b466fb8973eb', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': None}, {'uuid': '0036afed-6711-45a5-8d77-f2e9de7cca91', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'suez'}, {'uuid': '0034a262-0c28-4e51-86fa-f82d41f32df1', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'cogh'}, {'uuid': '00319444-064b-4c8f-aea2-eab23f9df076', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': None}, {'uuid': '0037673c-716a-40b5-b064-09c9699a8ca2', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'suez'}, {'uuid': '0031123f-c716-4fd3-a57d-ddd6f20c7b76', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'cogh'}, {'uuid': '003a0164-b87d-4208-b20e-5c8859d9705e', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'suez'}, {'uuid': '0034060c-c651-4525-a5f6-309dcf5fe9c7', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '0030e65a-383d-4769-bc2b-33ae56657062', 'type': 'import', 'region': 'atlantic', 'name': 'Brunsbuttel'}, 'via': None}, {'uuid': '0035a509-01d8-4bb1-8873-aae2ce1e5135', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'cogh'}, {'uuid': '0033fa57-8f9b-411c-aa83-70822f9f15cf', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00353980-7951-434c-a45b-9ec5ef1735a0', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': None}, {'uuid': '003aa663-f693-427a-9be4-9ba5200fe5d1', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003c065f-2780-49f0-a070-b1313f782503', 'type': 'import', 'region': 'atlantic', 'name': 'Deutsche Ostsee'}, 'via': None}, {'uuid': '003dcdb8-ff04-4bb4-a69e-975d9de288ef', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '0033b569-7a8b-441b-841c-760e76d9e36e', 'type': 'import', 'region': 'atlantic', 'name': 'Dunkerque'}, 'via': None}, {'uuid': '003a6d69-fbe8-4894-8922-8e30bf6f73ac', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003e3e36-1826-42f8-b789-c8137d7e0f34', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': None}, {'uuid': '003e61fc-61e8-4451-b8b7-888022085019', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003509bf-b256-455e-9480-22162a401587', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': None}, {'uuid': '0038108a-e23e-4cb0-b057-00746b392c3c', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003801fb-0c33-4da6-9bec-8cefd706fd8c', 'type': 'import', 'region': 'atlantic', 'name': 'Le Havre'}, 'via': None}, {'uuid': '0030a1fe-b725-49d5-a426-33fb021ca9f4', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': '003e958c-efba-461a-b133-3bbb5248e5d2', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '0034aa21-2462-43bc-b96b-e4f985078bb7', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': None}, {'uuid': '003562df-7dae-4a19-8246-870fe52b3735', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00351043-8269-4fba-919f-5d54d7d48915', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': None}, {'uuid': '003ff80d-84c7-4a4b-bed9-c987a1e988cd', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003f6682-9a02-442e-9762-f75b63530277', 'type': 'import', 'region': 'atlantic', 'name': 'Huelva'}, 'via': None}, {'uuid': '003f7251-cd7f-4974-ad9c-7596713c4e37', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003af9a7-c419-4360-8fad-4a558a1d8730', 'type': 'import', 'region': 'atlantic', 'name': 'Wilhelmshaven'}, 'via': None}, {'uuid': '0036ef7b-e91f-4b0b-aab1-119833403c2d', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00364105-b12c-4f4d-94dc-1cd3069287b8', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': None}, {'uuid': '0030e108-b137-4065-91f2-97c58deccc4e', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00324816-065e-48e9-94fa-98eaf1aee433', 'type': 'import', 'region': 'atlantic', 'name': 'Eemshaven'}, 'via': None}, {'uuid': '00347000-ce78-4d6e-9ba0-050a00dfe13d', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00359de5-92cd-4abd-ac62-d63bef384c1b', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': None}, {'uuid': '003135b9-656a-441f-b826-9966be09d4b0', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0030e65a-383d-4769-bc2b-33ae56657062', 'type': 'import', 'region': 'atlantic', 'name': 'Brunsbuttel'}, 'via': 'suez'}, {'uuid': '003e5f88-4aa6-4f66-bf0e-b03a92837342', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00353980-7951-434c-a45b-9ec5ef1735a0', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': 'suez'}, {'uuid': '003dbf91-a119-4f08-bbd8-ae99a310892b', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003c065f-2780-49f0-a070-b1313f782503', 'type': 'import', 'region': 'atlantic', 'name': 'Deutsche Ostsee'}, 'via': 'suez'}, {'uuid': '0031b8cc-53c2-49a9-973d-1bc11f112ae0', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0033b569-7a8b-441b-841c-760e76d9e36e', 'type': 'import', 'region': 'atlantic', 'name': 'Dunkerque'}, 'via': 'suez'}, {'uuid': '003e4499-4a1d-41ea-a48d-ad1d9a1c6d8b', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003e3e36-1826-42f8-b789-c8137d7e0f34', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': 'suez'}, {'uuid': '00389b90-c1e0-495d-8af4-5bf89b8c6405', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003801fb-0c33-4da6-9bec-8cefd706fd8c', 'type': 'import', 'region': 'atlantic', 'name': 'Le Havre'}, 'via': 'suez'}, {'uuid': '00390700-6e84-4e42-a76d-29546153b1df', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': 'suez'}, {'uuid': '00308197-4f2b-4ee4-8754-8d1a2b0ba8cb', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003f6682-9a02-442e-9762-f75b63530277', 'type': 'import', 'region': 'atlantic', 'name': 'Huelva'}, 'via': 'suez'}, {'uuid': '00359074-4d47-4f61-830e-6abc58f7077a', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003af9a7-c419-4360-8fad-4a558a1d8730', 'type': 'import', 'region': 'atlantic', 'name': 'Wilhelmshaven'}, 'via': 'suez'}, {'uuid': '003a6b61-1244-4960-afc4-92b670509ee4', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00364105-b12c-4f4d-94dc-1cd3069287b8', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': 'suez'}, {'uuid': '003558c1-6bc7-4ee0-bf97-0ac58d86d791', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00324816-065e-48e9-94fa-98eaf1aee433', 'type': 'import', 'region': 'atlantic', 'name': 'Eemshaven'}, 'via': 'suez'}, {'uuid': '003d7704-dc07-45f8-b5cb-af9a496705bf', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00359de5-92cd-4abd-ac62-d63bef384c1b', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': 'suez'}, {'uuid': '0036d895-7cd5-4bcf-a0e1-6d785b873084', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': None}, {'uuid': '003be1bc-5492-4a85-afb2-a1671bb56b7f', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '0030e65a-383d-4769-bc2b-33ae56657062', 'type': 'import', 'region': 'atlantic', 'name': 'Brunsbuttel'}, 'via': None}, {'uuid': '0039a50d-8dfd-42b5-934f-ca5170d70caa', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '00353980-7951-434c-a45b-9ec5ef1735a0', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': None}, {'uuid': '003acc11-a8df-4f07-b871-650a25b82112', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '003c065f-2780-49f0-a070-b1313f782503', 'type': 'import', 'region': 'atlantic', 'name': 'Deutsche Ostsee'}, 'via': None}, {'uuid': '003d21db-e880-41ca-8a51-95a9c5809b8a', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '0033b569-7a8b-441b-841c-760e76d9e36e', 'type': 'import', 'region': 'atlantic', 'name': 'Dunkerque'}, 'via': None}, {'uuid': '0030f523-3068-4ffe-a0b7-02f513246de2', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0033b569-7a8b-441b-841c-760e76d9e36e', 'type': 'import', 'region': 'atlantic', 'name': 'Dunkerque'}, 'via': 'cogh'}, {'uuid': '00353473-a0a0-41f2-b0f1-ee27843aaef5', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003af9a7-c419-4360-8fad-4a558a1d8730', 'type': 'import', 'region': 'atlantic', 'name': 'Wilhelmshaven'}, 'via': 'cogh'}, {'uuid': '003a28fc-70ad-45d6-9a22-4bb14291128e', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': 'cogh'}, {'uuid': '00308de6-e073-4983-bec8-ed5112bb1475', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003801fb-0c33-4da6-9bec-8cefd706fd8c', 'type': 'import', 'region': 'atlantic', 'name': 'Le Havre'}, 'via': 'cogh'}, {'uuid': '0038b459-814d-4078-af83-695c0685431a', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003f6682-9a02-442e-9762-f75b63530277', 'type': 'import', 'region': 'atlantic', 'name': 'Huelva'}, 'via': 'cogh'}, {'uuid': '003e63ea-18cc-4a4d-84e4-a010abb25eff', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00359de5-92cd-4abd-ac62-d63bef384c1b', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': 'cogh'}, {'uuid': '00317da8-a47b-4fe6-917c-65c77e823fd8', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00364105-b12c-4f4d-94dc-1cd3069287b8', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': 'cogh'}, {'uuid': '003de1e0-f04c-48b5-9c44-80c989810c25', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003e3e36-1826-42f8-b789-c8137d7e0f34', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': 'cogh'}, {'uuid': '003ae8de-02b2-44e0-b5a1-73097fe676ea', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003c065f-2780-49f0-a070-b1313f782503', 'type': 'import', 'region': 'atlantic', 'name': 'Deutsche Ostsee'}, 'via': 'cogh'}, {'uuid': '00396dd7-bd6b-4566-92c7-15058a9985fe', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00353980-7951-434c-a45b-9ec5ef1735a0', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': 'cogh'}, {'uuid': '003df8ce-4631-4c1f-915c-9bfb2c3045ae', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0030e65a-383d-4769-bc2b-33ae56657062', 'type': 'import', 'region': 'atlantic', 'name': 'Brunsbuttel'}, 'via': 'cogh'}, {'uuid': '003d78ea-a012-4cb0-9fba-c60cf7e1dfb1', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00324816-065e-48e9-94fa-98eaf1aee433', 'type': 'import', 'region': 'atlantic', 'name': 'Eemshaven'}, 'via': 'cogh'}, {'uuid': '0031d88c-1c31-40b8-9bc2-5be27b62c94e', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003509bf-b256-455e-9480-22162a401587', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': 'cogh'}, {'uuid': '003b1589-ddf7-43c6-b08a-3690a5dd1e92', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '003e3e36-1826-42f8-b789-c8137d7e0f34', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': None}, {'uuid': '003de44c-26e7-4177-97c1-cc81e9c26113', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': None}, {'uuid': '00307551-fdb9-47c1-a95c-832e4495dd01', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '003509bf-b256-455e-9480-22162a401587', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': None}, {'uuid': '003dcac6-2e04-425a-9f79-2a250d277bef', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '003bfc7e-1fad-4ec9-9fe9-d5b0889bef02', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': None}, {'uuid': '00336813-876b-4a5a-83d1-7d310051d03c', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '003cf9e2-deeb-46cc-bd69-78103a444623', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': None}, {'uuid': '003f076c-04ee-45da-a5dc-2373a2d5fb42', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '003801fb-0c33-4da6-9bec-8cefd706fd8c', 'type': 'import', 'region': 'atlantic', 'name': 'Le Havre'}, 'via': None}, {'uuid': '0038e306-6bc7-4319-aa6c-80d0803dffc9', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': '0031f450-a154-45c7-9723-3a7ab2764ff5', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '0034aa21-2462-43bc-b96b-e4f985078bb7', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': None}, {'uuid': '003aedcd-e797-4f8b-8577-9758b2eb9f90', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '00351043-8269-4fba-919f-5d54d7d48915', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': None}, {'uuid': '00344efd-de6d-4abd-ba3d-b1ee5fba780e', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': None}, {'uuid': '0032f7b4-48c2-4add-89ae-64ccba6c55a4', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '003f6682-9a02-442e-9762-f75b63530277', 'type': 'import', 'region': 'atlantic', 'name': 'Huelva'}, 'via': None}, {'uuid': '00369bc2-218b-491e-8999-9519280bdeba', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': None}, {'uuid': '00320651-189f-4899-95a2-73fd7be36189', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '003af9a7-c419-4360-8fad-4a558a1d8730', 'type': 'import', 'region': 'atlantic', 'name': 'Wilhelmshaven'}, 'via': None}, {'uuid': '00388041-b3ac-443c-9041-bb0f8614b161', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '00364105-b12c-4f4d-94dc-1cd3069287b8', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': None}, {'uuid': '003dcd0d-cefc-4a31-8caa-65ae1627925b', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '00324816-065e-48e9-94fa-98eaf1aee433', 'type': 'import', 'region': 'atlantic', 'name': 'Eemshaven'}, 'via': None}, {'uuid': '0035def0-e194-4387-954b-ae0f216a6ea3', 'loadPort': {'uuid': '003e50dc-2dca-44e5-b519-c4d704c6762d', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '00359de5-92cd-4abd-ac62-d63bef384c1b', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': None}, {'uuid': '00326187-2722-4cc6-9a39-83e2faf0645f', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': None}, {'uuid': '003ac3b8-65d5-4048-8016-dd0f19a0dcad', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '0030e65a-383d-4769-bc2b-33ae56657062', 'type': 'import', 'region': 'atlantic', 'name': 'Brunsbuttel'}, 'via': None}, {'uuid': '00337ee3-544c-4093-beb4-c96c9ebe029e', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '00353980-7951-434c-a45b-9ec5ef1735a0', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': None}, {'uuid': '003a7c20-8e68-4363-8c0b-fbd7b96c378d', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003c065f-2780-49f0-a070-b1313f782503', 'type': 'import', 'region': 'atlantic', 'name': 'Deutsche Ostsee'}, 'via': None}, {'uuid': '0030b531-ac6a-4ee0-94f1-48f947562c8b', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '0033b569-7a8b-441b-841c-760e76d9e36e', 'type': 'import', 'region': 'atlantic', 'name': 'Dunkerque'}, 'via': None}, {'uuid': '003f9aba-cedf-4ab8-916a-dd3f87abc2be', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003e3e36-1826-42f8-b789-c8137d7e0f34', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': None}, {'uuid': '003a1d43-567a-43f3-8768-7f9c9da64271', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': None}, {'uuid': '0038ebc7-6078-4e56-b769-9b70f7318c74', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003801fb-0c33-4da6-9bec-8cefd706fd8c', 'type': 'import', 'region': 'atlantic', 'name': 'Le Havre'}, 'via': None}, {'uuid': '0037fe9b-e8ef-4539-8126-6778a5d51606', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': '00398935-9dae-470a-b300-3c5c06169767', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '00351043-8269-4fba-919f-5d54d7d48915', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': None}, {'uuid': '00377c91-1806-4e80-8a7c-9b9b677984b0', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': None}, {'uuid': '0038eba9-e72b-40c6-93d7-a04bac91408f', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003f6682-9a02-442e-9762-f75b63530277', 'type': 'import', 'region': 'atlantic', 'name': 'Huelva'}, 'via': None}, {'uuid': '003a1703-c1f3-4eb8-82c7-1c458d5ce567', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '00306490-345a-4528-a42c-d87c61e2c35b', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': None}, {'uuid': '003070fe-864d-4e44-9208-a284e9a92ed7', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '003af9a7-c419-4360-8fad-4a558a1d8730', 'type': 'import', 'region': 'atlantic', 'name': 'Wilhelmshaven'}, 'via': None}, {'uuid': '00353de6-9b31-45ac-9a38-a825ce395258', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '00364105-b12c-4f4d-94dc-1cd3069287b8', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': None}, {'uuid': '003c52d4-d24f-476a-b411-f0a4b7d9f55a', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '00324816-065e-48e9-94fa-98eaf1aee433', 'type': 'import', 'region': 'atlantic', 'name': 'Eemshaven'}, 'via': None}, {'uuid': '003e7e13-fc36-466d-b10e-9eb92a6a8ad5', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '00359de5-92cd-4abd-ac62-d63bef384c1b', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': None}, {'uuid': '0031fc55-4ee7-440a-a064-a89a6133066a', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '0036cd2f-ff65-471e-8e6e-9c7cbae674b6', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': None}, {'uuid': '003fd1f0-6810-45f0-aa90-da1346738d9f', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '0030e65a-383d-4769-bc2b-33ae56657062', 'type': 'import', 'region': 'atlantic', 'name': 'Brunsbuttel'}, 'via': None}, {'uuid': '003dabd1-30fa-44f9-a270-e676e084124b', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '00353980-7951-434c-a45b-9ec5ef1735a0', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': None}, {'uuid': '003e9665-de48-435b-ba8c-b5b4293799c5', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003c065f-2780-49f0-a070-b1313f782503', 'type': 'import', 'region': 'atlantic', 'name': 'Deutsche Ostsee'}, 'via': None}, {'uuid': '00314ebb-c172-467e-aa57-604c21fd706d', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '0033b569-7a8b-441b-841c-760e76d9e36e', 'type': 'import', 'region': 'atlantic', 'name': 'Dunkerque'}, 'via': None}, {'uuid': '0036958b-991e-4970-8283-b8a876266934', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003a9231-acd5-40a0-b1dd-8c7d65612eec', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': None}, {'uuid': '0035cb6c-cf05-48a2-b579-d4e0fa400a2d', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003509bf-b256-455e-9480-22162a401587', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': None}, {'uuid': '0034fc0c-7059-4c29-966c-461ff8054ad8', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003801fb-0c33-4da6-9bec-8cefd706fd8c', 'type': 'import', 'region': 'atlantic', 'name': 'Le Havre'}, 'via': None}, {'uuid': '003139c9-6cc0-4714-a27f-5aab8af7d1f3', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': '0035f0b2-26e0-4553-8a1f-d443bb2ca091', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '00351043-8269-4fba-919f-5d54d7d48915', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': None}, {'uuid': '00370a1e-b694-4138-9fd2-2b1a384ceca8', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003f6682-9a02-442e-9762-f75b63530277', 'type': 'import', 'region': 'atlantic', 'name': 'Huelva'}, 'via': None}, {'uuid': '003843cd-4c50-4305-8cd9-5845f275459d', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003af9a7-c419-4360-8fad-4a558a1d8730', 'type': 'import', 'region': 'atlantic', 'name': 'Wilhelmshaven'}, 'via': None}, {'uuid': '00321d81-efa9-48a3-b70e-566515f06772', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '00364105-b12c-4f4d-94dc-1cd3069287b8', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': None}, {'uuid': '0030e5c6-2221-44a5-9801-e27b3261a969', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '00324816-065e-48e9-94fa-98eaf1aee433', 'type': 'import', 'region': 'atlantic', 'name': 'Eemshaven'}, 'via': None}, {'uuid': '0030d74a-7ee6-4807-b7e5-c40fa43c8db6', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '00359de5-92cd-4abd-ac62-d63bef384c1b', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': None}, {'uuid': '003d79bd-c8fd-4349-8135-5a13c98c8817', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': '0039c44a-2f92-4367-88d2-b8054fe86cb6', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'suez'}, {'uuid': '0037dbe0-627d-4c6d-9541-1ee862c1ca01', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'panama'}, {'uuid': '003084fe-734b-4241-ab7d-1f8a11c7ae0a', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'cogh'}, {'uuid': '00338a7c-b078-4366-b703-bf71688c0e93', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': '0035daac-c658-4b94-9904-d7a72a89b817', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'suez'}, {'uuid': '003d7f7b-31d6-4683-a193-6e93bb8fa5d9', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'panama'}, {'uuid': '0039f645-5335-45f4-909a-b1b4887e1f4a', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': '00341bc5-2371-41f6-8296-c14b4f4baad0', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': None}, {'uuid': '00347793-6e08-476f-a1bd-a95b408d5def', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00364105-b12c-4f4d-94dc-1cd3069287b8', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': None}, {'uuid': '00384693-1a49-47e2-af54-266719a3b758', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': None}, {'uuid': '003c0893-ce6c-41a9-a4a9-e0bb7514fb32', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': None}, {'uuid': '003c5510-d9b6-41f2-9695-44761461be2f', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': 'cogh'}, {'uuid': '003cec93-8edb-4a5c-b1d0-ea0fdaafa449', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': 'suez'}, {'uuid': '003f6b63-e9d5-4bbe-9f2d-dc22e219b4cd', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': None}, {'uuid': '003dc12a-8a4f-4484-a215-79fabbf8aa30', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': None}, {'uuid': '0036d8ce-7799-46e6-b5b0-4d6603763e13', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': None}, {'uuid': '00372e1d-a06a-4a79-b0e4-fdd44ca80f25', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': 'suez'}, {'uuid': '0032f63d-cdfd-4c2c-b292-7d1567e9071f', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': 'cogh'}, {'uuid': '00381c07-036f-42c8-8b09-d5ab6b6e0611', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'suez'}, {'uuid': '003c88f2-c773-4e8c-a580-23cd551392fe', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'suez'}, {'uuid': '003600d9-5060-497f-9566-d98e55410b35', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '0034aa21-2462-43bc-b96b-e4f985078bb7', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': 'suez'}, {'uuid': '0031ab4c-a081-4229-9ee2-e87b4d97bd1a', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': 'suez'}, {'uuid': '00371b17-acf0-4cb7-9072-99d1d2194bfa', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'cogh'}, {'uuid': '003191bd-c140-4123-a18c-a87d1bcff669', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'cogh'}, {'uuid': '00365da4-2afc-414d-95c6-7e4ee5b6f48b', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': 'cogh'}, {'uuid': '0035dadf-2289-4ad4-b935-7af2fe227d8e', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '0034aa21-2462-43bc-b96b-e4f985078bb7', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': 'cogh'}, {'uuid': '00337cd7-4e34-46df-ab8a-82423abb525d', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'cogh'}, {'uuid': '00339129-aabb-4814-a4c5-b6f27a91f850', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': '0037bc65-242e-40d0-8a62-82c295d23378', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'cogh'}, {'uuid': '003ebe9c-aa29-4a9d-ba76-0c200fc0de40', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': '0037e888-400f-4f09-9262-62c726e4ba0a', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': '00327d9b-bf36-48f3-9586-13e19ebc662c', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'suez'}, {'uuid': '0039728c-6300-4cdb-9603-ef1eb7e4d6d0', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'panama'}, {'uuid': '00303384-0706-496d-8277-11550a91b56f', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'cogh'}, {'uuid': '003dba14-ca18-48c6-817c-d54930e4609a', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'suez'}, {'uuid': '00380a0c-c3ba-455a-9029-7fdf2f2b72b3', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'cogh'}, {'uuid': '0036860b-8d7b-4ccc-b83d-de5c8a3e4041', 'loadPort': {'uuid': '003f92ce-86d5-4d03-9761-311036c47812', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': None}, {'uuid': '00321652-d7b5-4035-b781-dd5b8f9a88ae', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': None}, {'uuid': '0034694c-cfa3-4cc5-97c6-392189876f11', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'suez'}, {'uuid': '0031e01d-b38a-4e75-b498-93aca50e03c2', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'cogh'}, {'uuid': '003b6535-5860-41a6-aa36-b74f2fd8db79', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'suez'}, {'uuid': '0036ce73-74cd-499e-b9fe-9b01478f4a97', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': '003208fb-4539-422c-981e-1db1dcfa6b59', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'panama'}, {'uuid': '00387115-c8e8-463a-9ef2-855b2282e6f0', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'suez'}, {'uuid': '003c6ab9-a48b-41db-ba67-ca1318c2d57f', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': '003c1206-8040-447c-b65a-8b9679da743a', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'panama'}, {'uuid': '0037ee43-82e2-473d-8196-2b3364d0a2db', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'suez'}, {'uuid': '003e7912-2892-4e88-be8d-72204356a31e', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'cogh'}, {'uuid': '0035f26e-2b80-4d21-b289-18dc352f9c53', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': None}, {'uuid': '0035d906-77cf-4dba-ba7e-a5b22e852a55', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'panama'}, {'uuid': '003795f9-7e28-401f-bbd7-a64188d3aa0b', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'suez'}, {'uuid': '003bf610-d26f-46f2-ab89-c5a1091e0d06', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': '0038aa16-972e-420e-a125-ef11d48219a1', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'panama'}, {'uuid': '003818fe-c527-4ecd-ac74-2f58d6ec1e37', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'suez'}, {'uuid': '003f656f-4cea-4964-9268-eb7f39b15b65', 'loadPort': {'uuid': '003e8539-3a98-48fa-b35d-0ba061beea4e', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'cogh'}, {'uuid': '003cdaaf-668e-47a7-9f1a-3d353f918365', 'loadPort': {'uuid': '00302863-23af-41a6-a8ec-82c703860811', 'type': 'export', 'region': 'atlantic', 'name': 'Altamira'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '003a5bce-8798-4175-a9b4-c0cc875705f0', 'loadPort': {'uuid': '00302863-23af-41a6-a8ec-82c703860811', 'type': 'export', 'region': 'atlantic', 'name': 'Altamira'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '00359761-40b1-4de0-8f05-37d04e68fe00', 'loadPort': {'uuid': '00302863-23af-41a6-a8ec-82c703860811', 'type': 'export', 'region': 'atlantic', 'name': 'Altamira'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '003971f7-2983-4a8e-8fc4-041d91215b0c', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'cogh'}, {'uuid': '0038c09c-7c0f-4121-bb8e-83c893ac479a', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'cogh'}, {'uuid': '003ade5d-1a9e-4c19-832e-809ed1e08c00', 'loadPort': {'uuid': '00302863-23af-41a6-a8ec-82c703860811', 'type': 'export', 'region': 'atlantic', 'name': 'Altamira'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '003d1042-f281-49a8-9d2b-fd634446093d', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'suez'}, {'uuid': '00357c24-6dd2-482e-a2b1-07bbfba9e9c3', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'panama'}, {'uuid': '003ddf68-6a7a-4fc8-9908-396654377c4b', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '0031893f-c37c-443d-9328-b5f364b2324d', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '0037a5e1-1a8c-4369-a872-e9e3659fd4ba', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'panama'}, {'uuid': '0034a282-f653-4494-b0dd-fdc71f7716ac', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'suez'}, {'uuid': '003dd854-2f88-4900-beb7-2a2b4739f82f', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': '0034b6c6-dc4e-4ec7-b8d6-65f79f61b712', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'cogh'}, {'uuid': '0037274d-d5b8-4425-97a2-fcfeedc789d7', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'panama'}, {'uuid': '00353d91-a97d-456b-aa18-1788541f480e', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'suez'}, {'uuid': '003523fd-df40-43bd-9f4c-cd5afef9e7f6', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '003d3a18-7463-4aef-8c32-22054d6815af', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': None}, {'uuid': '0036c2a0-307f-4cba-9e7b-6c7a9b33ed7b', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '0034aa21-2462-43bc-b96b-e4f985078bb7', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': None}, {'uuid': '00352645-f2eb-4b16-b21d-d56feadd1515', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': None}, {'uuid': '003614ad-5383-4aa3-8611-a2a149bf8021', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': '0034d7c0-374e-4d4d-8d2c-b6d402962126', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'suez'}, {'uuid': '00377a01-80fc-47f1-94bb-71adf061bb85', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'cogh'}, {'uuid': '0037dabc-4ce0-414d-baf4-db7c3f9ae66e', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003ad466-2aba-4f40-b016-f8af4762034f', 'type': 'import', 'region': 'atlantic', 'name': 'Cartagena (COL)'}, 'via': None}, {'uuid': '003a492d-ca27-4e5e-842b-58eb8417454d', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003ad466-2aba-4f40-b016-f8af4762034f', 'type': 'import', 'region': 'atlantic', 'name': 'Cartagena (COL)'}, 'via': None}, {'uuid': '003505e8-8e1a-41f8-8b86-28feb71314aa', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003ad466-2aba-4f40-b016-f8af4762034f', 'type': 'import', 'region': 'atlantic', 'name': 'Cartagena (COL)'}, 'via': None}, {'uuid': '0030fde2-3b82-44bd-a674-27cf6a9d5a96', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003ad466-2aba-4f40-b016-f8af4762034f', 'type': 'import', 'region': 'atlantic', 'name': 'Cartagena (COL)'}, 'via': 'suez'}, {'uuid': '0031f0e1-bf48-43f4-bfd1-1acb8979a981', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003ad466-2aba-4f40-b016-f8af4762034f', 'type': 'import', 'region': 'atlantic', 'name': 'Cartagena (COL)'}, 'via': 'cogh'}, {'uuid': '00357de9-7070-4c59-a8ab-b974fe38d125', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '003ad466-2aba-4f40-b016-f8af4762034f', 'type': 'import', 'region': 'atlantic', 'name': 'Cartagena (COL)'}, 'via': None}, {'uuid': '003493e4-a671-43fc-be05-f7dc13f75b65', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003ad466-2aba-4f40-b016-f8af4762034f', 'type': 'import', 'region': 'atlantic', 'name': 'Cartagena (COL)'}, 'via': 'panama'}, {'uuid': '00376230-bfed-49a3-9d80-30412ba73868', 'loadPort': {'uuid': '00398395-a9d6-4d09-8e17-f731caf760d9', 'type': 'export', 'region': 'pacific', 'name': 'Peru LNG'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '00303ace-a001-4ea6-a7ac-96b4951d71cc', 'loadPort': {'uuid': '00398395-a9d6-4d09-8e17-f731caf760d9', 'type': 'export', 'region': 'pacific', 'name': 'Peru LNG'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'panama'}, {'uuid': '003f644b-c5d2-423b-9bee-863959506895', 'loadPort': {'uuid': '00398395-a9d6-4d09-8e17-f731caf760d9', 'type': 'export', 'region': 'pacific', 'name': 'Peru LNG'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '0030f5e9-8d8f-43fd-8615-5c88d2183d8e', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0034aa21-2462-43bc-b96b-e4f985078bb7', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': 'cogh'}, {'uuid': '0033292e-e41f-42fb-b0e1-a7ef773736b5', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'cogh'}, {'uuid': '0037c387-b81f-421a-9077-a86701b89954', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': '00306cf2-919b-4841-9871-6a1385eff404', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': '0037f7a4-9915-44a8-92a9-4d338c532ef2', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '0034aa21-2462-43bc-b96b-e4f985078bb7', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': None}, {'uuid': '003a5067-e96f-4387-b65f-1d7e2236ce44', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '0031c9b7-2130-4f2b-9e33-00ebc2c99d51', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': None}, {'uuid': '003bebd1-c453-4032-879e-18115b438286', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'suez'}, {'uuid': '0039a5ed-6394-4ae4-ba3b-b7723dcfad5d', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'cogh'}, {'uuid': '00394d6d-b055-4301-84f6-b71344ac5df4', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'suez'}, {'uuid': '003371ae-2c4c-4c14-9482-18dd058c2d14', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': '0031cac3-efbd-40a2-b62e-b731087e9ac4', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '00381f3c-92a2-4734-bca4-5f32034e651d', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '0037b92f-b883-4283-834b-0f0ed25303bb', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'suez'}, {'uuid': '0032ca55-9566-425e-867f-51682dabbdae', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'cogh'}, {'uuid': '0030315b-0ebc-4b6d-a6fa-6c30160b1717', 'loadPort': {'uuid': '00356046-86ab-4a76-a689-99af1b3027ad', 'type': 'export', 'region': 'atlantic', 'name': 'Cameron (Liqu.)'}, 'dischargePort': {'uuid': '0037c692-6771-4cf2-8099-4e695e69935a', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': 'suez'}, {'uuid': '00379560-52f8-4f27-b6c1-e632e8ee6f83', 'loadPort': {'uuid': '00356046-86ab-4a76-a689-99af1b3027ad', 'type': 'export', 'region': 'atlantic', 'name': 'Cameron (Liqu.)'}, 'dischargePort': {'uuid': '0037c692-6771-4cf2-8099-4e695e69935a', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': 'cogh'}, {'uuid': '0035c7b6-245e-47ff-80e1-0c08af19903c', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0037c692-6771-4cf2-8099-4e695e69935a', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': 'cogh'}, {'uuid': '003a17ab-e5d3-4b96-85ec-bf8cde1d1c88', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0037c692-6771-4cf2-8099-4e695e69935a', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': 'suez'}, {'uuid': '0036cc40-79a1-45ee-abd0-52c074156e67', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0037c692-6771-4cf2-8099-4e695e69935a', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': None}, {'uuid': '003eebad-1b3f-418e-8357-679e8071c743', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '0037c692-6771-4cf2-8099-4e695e69935a', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': None}, {'uuid': '00300871-e3a2-4541-a315-43f41a8596d1', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '0037c692-6771-4cf2-8099-4e695e69935a', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': None}, {'uuid': '0036a977-016f-4197-82f2-4d282dd81ccb', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0037c692-6771-4cf2-8099-4e695e69935a', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': None}, {'uuid': '003b50d5-ef85-4764-980b-4c78b925144c', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '0037c692-6771-4cf2-8099-4e695e69935a', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': None}, {'uuid': '003bae58-0d6e-42ef-91ed-9e8be801dae1', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'cogh'}, {'uuid': '0035f0fb-3f60-44a4-9722-91ca2b6231ea', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'cogh'}, {'uuid': '003221a8-9f19-4f88-88e2-886bcbe5114a', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': None}, {'uuid': '003ebf7b-09ea-481a-bbb7-e0ec0518be87', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': None}, {'uuid': '003016a6-4f96-4377-946f-6e3c21265a06', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': 'cogh'}, {'uuid': '0031a8fe-5d7e-4b7d-91d0-55bae7668c46', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': 'suez'}, {'uuid': '00371f4b-d210-4198-a926-dfc94d4d7e32', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': 'suez'}, {'uuid': '0031edcf-6489-45c2-8254-c9d8f3e1acff', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': 'cogh'}, {'uuid': '0037f88e-4cb1-42a0-a8a2-34c3e8967045', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00378915-9416-4fce-afae-8e55ea95b26d', 'type': 'import', 'region': 'pacific', 'name': 'Arun'}, 'via': 'suez'}, {'uuid': '0035a1f4-d71d-445a-a639-1c10fba3afe6', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00378915-9416-4fce-afae-8e55ea95b26d', 'type': 'import', 'region': 'pacific', 'name': 'Arun'}, 'via': 'cogh'}, {'uuid': '003f022a-3838-49e2-9cd7-37068dc09d22', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '00319332-b16d-479e-9098-0d19c578a931', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'suez'}, {'uuid': '00330ce7-98a7-4994-ba7d-0a4bc81111cd', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003a90f9-9cde-436f-9bec-4f9e786c2ea7', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': '00303e97-43c2-4ae0-90ef-2e1e69a14a28', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '00325694-638e-4478-b01a-fc34f345b713', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': None}, {'uuid': '0033ad73-a8e5-4e01-a2c5-1dc4f0a80843', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '00386200-185c-449a-a86f-7eb68ce6bfc7', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': None}, {'uuid': '003d5fa5-285f-44fe-abe1-653af40ea764', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': 'suez'}, {'uuid': '0037b47c-1a33-48d1-a1ed-c19cdffc0a62', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '00350607-0903-4828-8ea5-bdeb8649a31e', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': 'cogh'}, {'uuid': '0037155e-48f9-421e-b535-6b22671dfdcc', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': 'suez'}, {'uuid': '00346e3d-f2c9-4c25-b2a1-13928d0fcc37', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003a9911-55ce-40e1-8606-e81dc19ae490', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': 'cogh'}, {'uuid': '00304dcf-664c-4fc7-9254-b3945223c1e5', 'loadPort': {'uuid': '00312574-769c-4edf-9a55-362f3da20312', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': None}, {'uuid': '003522b3-2740-48f8-b9cc-6c7eed8bd73f', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'suez'}, {'uuid': '0032b479-b17e-4a32-b052-4774a54fe633', 'loadPort': {'uuid': '003afd77-2b63-41e4-8b7a-6d6294236d78', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'cogh'}, {'uuid': '003f9b0a-4f11-40d3-aece-701e8a919df0', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'cogh'}, {'uuid': '0031c87e-ba21-4263-9c51-4f8879ad92ad', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'suez'}, {'uuid': '00311b77-4ee5-4be1-9f8d-0250517b7061', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'panama'}, {'uuid': '00303ec4-d3bf-4894-8204-6bfcc2450d3b', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'suez'}, {'uuid': '003168cd-cdd7-4332-bf3e-7c94cde07832', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '00324816-065e-48e9-94fa-98eaf1aee433', 'type': 'import', 'region': 'atlantic', 'name': 'Eemshaven'}, 'via': None}, {'uuid': '0034539e-e075-4078-b8d7-32be4bb56103', 'loadPort': {'uuid': '003a8724-b074-42e2-9e2f-ac3cc3e67ea4', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '0036961e-e634-4929-874d-45f53265ed7c', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'cogh'}, {'uuid': '003a45d8-0ae6-4d27-a9d4-285904190bba', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003553b5-b442-4ec4-b1f7-d95cef95f4bd', 'type': 'import', 'region': 'pacific', 'name': 'Bahrain'}, 'via': 'suez'}, {'uuid': '0037f175-6b5a-4f3b-8e98-8fad78e4931d', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '003553b5-b442-4ec4-b1f7-d95cef95f4bd', 'type': 'import', 'region': 'pacific', 'name': 'Bahrain'}, 'via': None}, {'uuid': '0032abf5-a5d7-468d-b877-c26513155735', 'loadPort': {'uuid': '003342b7-ba5b-4f0e-b6df-4d95837a5691', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '003553b5-b442-4ec4-b1f7-d95cef95f4bd', 'type': 'import', 'region': 'pacific', 'name': 'Bahrain'}, 'via': None}, {'uuid': '00379b1c-ffa2-4076-89d5-0c225f355cb0', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003553b5-b442-4ec4-b1f7-d95cef95f4bd', 'type': 'import', 'region': 'pacific', 'name': 'Bahrain'}, 'via': None}, {'uuid': '00303054-c012-468d-b40b-71eec817cbd5', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003553b5-b442-4ec4-b1f7-d95cef95f4bd', 'type': 'import', 'region': 'pacific', 'name': 'Bahrain'}, 'via': 'cogh'}, {'uuid': '00365ee0-079e-4289-a89a-893858ce979c', 'loadPort': {'uuid': '00381c87-4180-4430-80f1-bf828099124f', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '003553b5-b442-4ec4-b1f7-d95cef95f4bd', 'type': 'import', 'region': 'pacific', 'name': 'Bahrain'}, 'via': None}, {'uuid': '00322043-8592-4ba2-a615-306a0ebf91ca', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003553b5-b442-4ec4-b1f7-d95cef95f4bd', 'type': 'import', 'region': 'pacific', 'name': 'Bahrain'}, 'via': None}, {'uuid': '0030369a-a268-4313-9c2b-27f260967866', 'loadPort': {'uuid': '003fa7a4-b8ff-42e7-a146-983baddc769c', 'type': 'export', 'region': 'atlantic', 'name': 'Delfin FLNG'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '0038c3bf-0ab9-4860-9df3-a01897973c7f', 'loadPort': {'uuid': '003b48e3-aedd-417c-8ea3-2d1dd434d8a9', 'type': 'export', 'region': 'pacific', 'name': 'Das Island'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '00389587-0111-495f-980e-e2ebc3535de0', 'loadPort': {'uuid': '003b48e3-aedd-417c-8ea3-2d1dd434d8a9', 'type': 'export', 'region': 'pacific', 'name': 'Das Island'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'cogh'}, {'uuid': '00323cc9-270d-419a-9be0-eccfc4e86212', 'loadPort': {'uuid': '003b48e3-aedd-417c-8ea3-2d1dd434d8a9', 'type': 'export', 'region': 'pacific', 'name': 'Das Island'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': '003ca013-7f0a-44b7-b399-667199ca8bcb', 'loadPort': {'uuid': '003b48e3-aedd-417c-8ea3-2d1dd434d8a9', 'type': 'export', 'region': 'pacific', 'name': 'Das Island'}, 'dischargePort': {'uuid': '003aab65-41c1-4952-a9dd-d6114af8a3b2', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': None}, {'uuid': '003e4f55-9346-4881-9e67-116e99047225', 'loadPort': {'uuid': '00356046-86ab-4a76-a689-99af1b3027ad', 'type': 'export', 'region': 'atlantic', 'name': 'Cameron (Liqu.)'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '0031e50c-d047-45cb-92aa-59b0c04a2d89', 'loadPort': {'uuid': '00352a22-e959-4233-b93d-d23a0da3dfed', 'type': 'export', 'region': 'atlantic', 'name': 'Elba Island'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '003805e7-2949-481a-b7d4-2b727d3234f3', 'loadPort': {'uuid': '00352a22-e959-4233-b93d-d23a0da3dfed', 'type': 'export', 'region': 'atlantic', 'name': 'Elba Island'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '00320cf2-a429-4c16-893e-84da1d3cc0f2', 'loadPort': {'uuid': '00356046-86ab-4a76-a689-99af1b3027ad', 'type': 'export', 'region': 'atlantic', 'name': 'Cameron (Liqu.)'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '0031486f-c0a1-4895-b143-3e30e09c9685', 'loadPort': {'uuid': '00352a22-e959-4233-b93d-d23a0da3dfed', 'type': 'export', 'region': 'atlantic', 'name': 'Elba Island'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '00318857-4891-4902-9b5b-52f579e15c72', 'loadPort': {'uuid': '00352a22-e959-4233-b93d-d23a0da3dfed', 'type': 'export', 'region': 'atlantic', 'name': 'Elba Island'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '003daf15-0e9c-4682-ac99-ec0a5d119b41', 'loadPort': {'uuid': '00356046-86ab-4a76-a689-99af1b3027ad', 'type': 'export', 'region': 'atlantic', 'name': 'Cameron (Liqu.)'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '0033ed3c-2e02-4d6e-be10-0a38a6f3a27e', 'loadPort': {'uuid': '00356046-86ab-4a76-a689-99af1b3027ad', 'type': 'export', 'region': 'atlantic', 'name': 'Cameron (Liqu.)'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '0030f069-e217-4735-9f09-87b316762514', 'loadPort': {'uuid': '00339787-d27c-4605-8409-e1c544820cec', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '003ea9c4-f985-4fe1-b7a3-a833c142882b', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': None}, {'uuid': '0033a0b9-77f6-4b10-b73a-6a7916502e2d', 'loadPort': {'uuid': '003627f4-c752-4ce4-9ae7-7ad0fa6e53ce', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '0030d930-6574-4049-a739-327a16620429', 'type': 'import', 'region': 'atlantic', 'name': 'Ravenna'}, 'via': 'suez'}, {'uuid': '003faede-01cc-4c70-a25d-3762a361b6fe', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '0039f5d6-e073-435b-a7f9-dcec3afb86cb', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '00348162-8284-447d-b641-1f06b9078fdd', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': '003d01c4-c32d-479e-b67a-b501399f3e1a', 'loadPort': {'uuid': '003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '0038ef4e-d83b-4d47-95b1-3b5c73d38da5', 'loadPort': {'uuid': '0034fc9c-bb57-42b6-a91b-6f08c3795a25', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '003e842c-9ff2-472f-8678-7a4771d5c95b', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '0036c5e9-f3c8-4a67-95c8-3afaefa39ff3', 'loadPort': {'uuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '003c2da6-6a74-4e29-aef6-a789a747ac65', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}], 'sparkReleaseDates': ['2025-01-14', '2025-01-13', '2025-01-10', '2025-01-09', '2025-01-08', '2025-01-07', '2025-01-06', '2025-01-03', '2025-01-02', '2024-12-31', '2024-12-30', '2024-12-27', '2024-12-24', '2024-12-23', '2024-12-20', '2024-12-19', '2024-12-18', '2024-12-17', '2024-12-16', '2024-12-13', '2024-12-12', '2024-12-11', '2024-12-10', '2024-12-09', '2024-12-06', '2024-12-05', '2024-12-04', '2024-12-03', '2024-12-02', '2024-11-29', '2024-11-28', '2024-11-27', '2024-11-26', '2024-11-25', '2024-11-22', '2024-11-21', '2024-11-20', '2024-11-19', '2024-11-18', '2024-11-15', '2024-11-14', '2024-11-13', '2024-11-12', '2024-11-11', '2024-11-08', '2024-11-07', '2024-11-06', '2024-11-05', '2024-11-04', '2024-11-01', '2024-10-31', '2024-10-30', '2024-10-29', '2024-10-28', '2024-10-25', '2024-10-24', '2024-10-23', '2024-10-22', '2024-10-21', '2024-10-18', '2024-10-17', '2024-10-16', '2024-10-15', '2024-10-14', '2024-10-11', '2024-10-10', '2024-10-09', '2024-10-08', '2024-10-07', '2024-10-04', '2024-10-03', '2024-10-02', '2024-10-01', '2024-09-30', '2024-09-27', '2024-09-26', '2024-09-25', '2024-09-24', '2024-09-23', '2024-09-20', '2024-09-19', '2024-09-18', '2024-09-17', '2024-09-16', '2024-09-13', '2024-09-12', '2024-09-11', '2024-09-10', '2024-09-09', '2024-09-06', '2024-09-05', '2024-09-04', '2024-09-03', '2024-09-02', '2024-08-30', '2024-08-29', '2024-08-28', '2024-08-27', '2024-08-23', '2024-08-22', '2024-08-21', '2024-08-20', '2024-08-19', '2024-08-16', '2024-08-15', '2024-08-14', '2024-08-13', '2024-08-12', '2024-08-09', '2024-08-08', '2024-08-07', '2024-08-06', '2024-08-05', '2024-08-02', '2024-08-01', '2024-07-31', '2024-07-30', '2024-07-29', '2024-07-26', '2024-07-25', '2024-07-24', '2024-07-23', '2024-07-22', '2024-07-19', '2024-07-18', '2024-07-17', '2024-07-16', '2024-07-15', '2024-07-12', '2024-07-11', '2024-07-10', '2024-07-09', '2024-07-08', '2024-07-05', '2024-07-04', '2024-07-03', '2024-07-02', '2024-07-01', '2024-06-28', '2024-06-27', '2024-06-26', '2024-06-25', '2024-06-24', '2024-06-21', '2024-06-20', '2024-06-19', '2024-06-18', '2024-06-17', '2024-06-14', '2024-06-13', '2024-06-12', '2024-06-11', '2024-06-10', '2024-06-07', '2024-06-06', '2024-06-05', '2024-06-04', '2024-06-03', '2024-05-31', '2024-05-30', '2024-05-29', '2024-05-28', '2024-05-24', '2024-05-23', '2024-05-22', '2024-05-21', '2024-05-20', '2024-05-17', '2024-05-16', '2024-05-15', '2024-05-14', '2024-05-13', '2024-05-10', '2024-05-09', '2024-05-08', '2024-05-07', '2024-05-03', '2024-05-02', '2024-05-01', '2024-04-30', '2024-04-29', '2024-04-26', '2024-04-25', '2024-04-24', '2024-04-23', '2024-04-22', '2024-04-19', '2024-04-18', '2024-04-17', '2024-04-16', '2024-04-15', '2024-04-12', '2024-04-11', '2024-04-10', '2024-04-09', '2024-04-08', '2024-04-05', '2024-04-04', '2024-04-03', '2024-04-02', '2024-03-28', '2024-03-27', '2024-03-26', '2024-03-25', '2024-03-22', '2024-03-21', '2024-03-20', '2024-03-19', '2024-03-18', '2024-03-15', '2024-03-14', '2024-03-13', '2024-03-12', '2024-03-11', '2024-03-08', '2024-03-07', '2024-03-06', '2024-03-05', '2024-03-04', '2024-03-01', '2024-02-29', '2024-02-28', '2024-02-27', '2024-02-26', '2024-02-23', '2024-02-22', '2024-02-21', '2024-02-20', '2024-02-19', '2024-02-16', '2024-02-15', '2024-02-14', '2024-02-13', '2024-02-12', '2024-02-09', '2024-02-08', '2024-02-07', '2024-02-06', '2024-02-05', '2024-02-02', '2024-02-01', '2024-01-31', '2024-01-30', '2024-01-29', '2024-01-26', '2024-01-25', '2024-01-24', '2024-01-23', '2024-01-22', '2024-01-19', '2024-01-18', '2024-01-17', '2024-01-16', '2024-01-15', '2024-01-12', '2024-01-11', '2024-01-10', '2024-01-09', '2024-01-08', '2024-01-05', '2024-01-04', '2024-01-03', '2024-01-02', '2023-12-29', '2023-12-28', '2023-12-27', '2023-12-22', '2023-12-21', '2023-12-20', '2023-12-19', '2023-12-18', '2023-12-15', '2023-12-14', '2023-12-13', '2023-12-12', '2023-12-11', '2023-12-08', '2023-12-07', '2023-12-06', '2023-12-05', '2023-12-04', '2023-12-01', '2023-11-30', '2023-11-29', '2023-11-28', '2023-11-27', '2023-11-24', '2023-11-23', '2023-11-22', '2023-11-21', '2023-11-20', '2023-11-17', '2023-11-16', '2023-11-15', '2023-11-14', '2023-11-13', '2023-11-10', '2023-11-09', '2023-11-08', '2023-11-07', '2023-11-06', '2023-11-03', '2023-11-02', '2023-11-01', '2023-10-31', '2023-10-30', '2023-10-27', '2023-10-26', '2023-10-25', '2023-10-24', '2023-10-23', '2023-10-20', '2023-10-19', '2023-10-18', '2023-10-17', '2023-10-16', '2023-10-13', '2023-10-12', '2023-10-11', '2023-10-10', '2023-10-09', '2023-10-06', '2023-10-05', '2023-10-04', '2023-10-03', '2023-10-02', '2023-09-29', '2023-09-28', '2023-09-27', '2023-09-26', '2023-09-25', '2023-09-22', '2023-09-21', '2023-09-20', '2023-09-19', '2023-09-18', '2023-09-15', '2023-09-14', '2023-09-13', '2023-09-12', '2023-09-11', '2023-09-08', '2023-09-07', '2023-09-06', '2023-09-05', '2023-09-04', '2023-09-01', '2023-08-31', '2023-08-30', '2023-08-29', '2023-08-25', '2023-08-24', '2023-08-23', '2023-08-22', '2023-08-21', '2023-08-18', '2023-08-17', '2023-08-16', '2023-08-15', '2023-08-14', '2023-08-11', '2023-08-10', '2023-08-09', '2023-08-08', '2023-08-07', '2023-08-04', '2023-08-03', '2023-08-02', '2023-08-01', '2023-07-31', '2023-07-28', '2023-07-27', '2023-07-26', '2023-07-25', '2023-07-24', '2023-07-21', '2023-07-20', '2023-07-19', '2023-07-18', '2023-07-17', '2023-07-14', '2023-07-13', '2023-07-12', '2023-07-11', '2023-07-10', '2023-07-07', '2023-07-06', '2023-07-05', '2023-07-04', '2023-07-03', '2023-06-30', '2023-06-29', '2023-06-28', '2023-06-27', '2023-06-26', '2023-06-23', '2023-06-22', '2023-06-21', '2023-06-20', '2023-06-19', '2023-06-16', '2023-06-15', '2023-06-14', '2023-06-13', '2023-06-12', '2023-06-09', '2023-06-08', '2023-06-07', '2023-06-06', '2023-06-05', '2023-06-02', '2023-06-01', '2023-05-31', '2023-05-30', '2023-05-26', '2023-05-25', '2023-05-24', '2023-05-23', '2023-05-22', '2023-05-19', '2023-05-18', '2023-05-17', '2023-05-16', '2023-05-15', '2023-05-12', '2023-05-11', '2023-05-10', '2023-05-09', '2023-05-05', '2023-05-04', '2023-05-03', '2023-05-02', '2023-04-28', '2023-04-27', '2023-04-26', '2023-04-25', '2023-04-24', '2023-04-21', '2023-04-20', '2023-04-19', '2023-04-18', '2023-04-17', '2023-04-14', '2023-04-13', '2023-04-12', '2023-04-11', '2023-04-06', '2023-04-05', '2023-04-04', '2023-04-03', '2023-03-31', '2023-03-30', '2023-03-29', '2023-03-28', '2023-03-27', '2023-03-24', '2023-03-23', '2023-03-22', '2023-03-21', '2023-03-20', '2023-03-17', '2023-03-16', '2023-03-15', '2023-03-14', '2023-03-13', '2023-03-10', '2023-03-09', '2023-03-08', '2023-03-07', '2023-03-06', '2023-03-03', '2023-03-02', '2023-03-01', '2023-02-28', '2023-02-27', '2023-02-24', '2023-02-23', '2023-02-22', '2023-02-21', '2023-02-20', '2023-02-17', '2023-02-16', '2023-02-15', '2023-02-14', '2023-02-13', '2023-02-10', '2023-02-09', '2023-02-08', '2023-02-07', '2023-02-06', '2023-02-03', '2023-02-02', '2023-02-01', '2023-01-31', '2023-01-30', '2023-01-27', '2023-01-26', '2023-01-25', '2023-01-24', '2023-01-23', '2023-01-20', '2023-01-19', '2023-01-18', '2023-01-17', '2023-01-16', '2023-01-13', '2023-01-12', '2023-01-11', '2023-01-10', '2023-01-09', '2023-01-06', '2023-01-05', '2023-01-04', '2023-01-03', '2022-12-30', '2022-12-29', '2022-12-28', '2022-12-23', '2022-12-22', '2022-12-21', '2022-12-20', '2022-12-19', '2022-12-16', '2022-12-15', '2022-12-14', '2022-12-13', '2022-12-12', '2022-12-09', '2022-12-08', '2022-12-07', '2022-12-06', '2022-12-05', '2022-12-02', '2022-12-01', '2022-11-30', '2022-11-29', '2022-11-28', '2022-11-25', '2022-11-24', '2022-11-23', '2022-11-22', '2022-11-21', '2022-11-18', '2022-11-17', '2022-11-16', '2022-11-15', '2022-11-14', '2022-11-11', '2022-11-10', '2022-11-09', '2022-11-08', '2022-11-07', '2022-11-04', '2022-11-03', '2022-11-02', '2022-11-01', '2022-10-31', '2022-10-28', '2022-10-27', '2022-10-26', '2022-10-25', '2022-10-24', '2022-10-21', '2022-10-20', '2022-10-19', '2022-10-18', '2022-10-17', '2022-10-14', '2022-10-13', '2022-10-12', '2022-10-11', '2022-10-10', '2022-10-07', '2022-10-06', '2022-10-05', '2022-10-04', '2022-10-03', '2022-09-30', '2022-09-29', '2022-09-28', '2022-09-27', '2022-09-26', '2022-09-23', '2022-09-22', '2022-09-21', '2022-09-20', '2022-09-16', '2022-09-15', '2022-09-14', '2022-09-13', '2022-09-12', '2022-09-09', '2022-09-08', '2022-09-07', '2022-09-06', '2022-09-05', '2022-09-02', '2022-09-01', '2022-08-31', '2022-08-30', '2022-08-26', '2022-08-25', '2022-08-24', '2022-08-23', '2022-08-22', '2022-08-19', '2022-08-18', '2022-08-17', '2022-08-16', '2022-08-15', '2022-08-12', '2022-08-11', '2022-08-10', '2022-08-09', '2022-08-08', '2022-08-05', '2022-08-04', '2022-08-03', '2022-08-02', '2022-08-01', '2022-07-29', '2022-07-28', '2022-07-27', '2022-07-26', '2022-07-25', '2022-07-22', '2022-07-21', '2022-07-20', '2022-07-19', '2022-07-18', '2022-07-15', '2022-07-14', '2022-07-13', '2022-07-12', '2022-07-11', '2022-07-08', '2022-07-07', '2022-07-06', '2022-07-05', '2022-07-04', '2022-07-01', '2022-06-30', '2022-06-29', '2022-06-28', '2022-06-27', '2022-06-24', '2022-06-23', '2022-06-22', '2022-06-21', '2022-06-20', '2022-06-17', '2022-06-16', '2022-06-15', '2022-06-14', '2022-06-13', '2022-06-10', '2022-06-09', '2022-06-08', '2022-06-07', '2022-06-06', '2022-06-01', '2022-05-31', '2022-05-30', '2022-05-27', '2022-05-26', '2022-05-25', '2022-05-24', '2022-05-23', '2022-05-20', '2022-05-19', '2022-05-18', '2022-05-17', '2022-05-16', '2022-05-13', '2022-05-12', '2022-05-11', '2022-05-10', '2022-05-09', '2022-05-06', '2022-05-05', '2022-05-04', '2022-05-03', '2022-04-29', '2022-04-28', '2022-04-27', '2022-04-26', '2022-04-25', '2022-04-22', '2022-04-21', '2022-04-20', '2022-04-19', '2022-04-14', '2022-04-13', '2022-04-12', '2022-04-11', '2022-04-08', '2022-04-07', '2022-04-06', '2022-04-05', '2022-04-04', '2022-04-01', '2022-03-31', '2022-03-30', '2022-03-29', '2022-03-28', '2022-03-25', '2022-03-24', '2022-03-23', '2022-03-22', '2022-03-21', '2022-03-18', '2022-03-17', '2022-03-16', '2022-03-15', '2022-03-14', '2022-03-11', '2022-03-10', '2022-03-09', '2022-03-08', '2022-03-07', '2022-03-04', '2022-03-03', '2022-03-02', '2022-03-01', '2022-02-28', '2022-02-25', '2022-02-24', '2022-02-23', '2022-02-22', '2022-02-21', '2022-02-18', '2022-02-17', '2022-02-16', '2022-02-15', '2022-02-14', '2022-02-11', '2022-02-10', '2022-02-09', '2022-02-08', '2022-02-07', '2022-02-04', '2022-02-03', '2022-02-02', '2022-02-01', '2022-01-31', '2022-01-28', '2022-01-27', '2022-01-26', '2022-01-25', '2022-01-24', '2022-01-21', '2022-01-20', '2022-01-19', '2022-01-18', '2022-01-17', '2022-01-14', '2022-01-13', '2022-01-12', '2022-01-11', '2022-01-10', '2022-01-07', '2022-01-06', '2022-01-05', '2022-01-04', '2021-12-30', '2021-12-29', '2021-12-23', '2021-12-22', '2021-12-21', '2021-12-20', '2021-12-17', '2021-12-16', '2021-12-15', '2021-12-14', '2021-12-13', '2021-12-10', '2021-12-09', '2021-12-08', '2021-12-07', '2021-12-06', '2021-12-03', '2021-12-02', '2021-12-01', '2021-11-30', '2021-11-29', '2021-11-26', '2021-11-25', '2021-11-24', '2021-11-23', '2021-11-22', '2021-11-19', '2021-11-18', '2021-11-17', '2021-11-16', '2021-11-15', '2021-11-12', '2021-11-11', '2021-11-10', '2021-11-09', '2021-11-08', '2021-11-05', '2021-11-04', '2021-11-03', '2021-11-02', '2021-11-01', '2021-10-29', '2021-10-28', '2021-10-27', '2021-10-26', '2021-10-25', '2021-10-22', '2021-10-21', '2021-10-20', '2021-10-19', '2021-10-18', '2021-10-15', '2021-10-14', '2021-10-13', '2021-10-12', '2021-10-11', '2021-10-08', '2021-10-07', '2021-10-06', '2021-10-05', '2021-10-04', '2021-10-01', '2021-09-30', '2021-09-29', '2021-09-28', '2021-09-27', '2021-09-24', '2021-09-23', '2021-09-22', '2021-09-21', '2021-09-20', '2021-09-17', '2021-09-16', '2021-09-15', '2021-09-14', '2021-09-13', '2021-09-10', '2021-09-09', '2021-09-08', '2021-09-07', '2021-09-06', '2021-09-03', '2021-09-02', '2021-09-01'], 'congestionDays': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], 'ladenBallastDays': [[0, 0], [1, 1], [4, 4], [7, 7], [10, 10], [15, 15], [20, 20]]}\n"
]
}
],
"source": [
"## Raw dictionary\n",
"\n",
"print(dicto1)"
]
},
{
"cell_type": "code",
"execution_count": 45,
"id": "e75c2b64",
"metadata": {},
"outputs": [],
"source": [
"## Store route characteristics as a DataFrame\n",
"\n",
"def check_and_store_characteristics(dict1):\n",
" \"\"\"\n",
" # Store some of the route characteristics in lists, and check these lists are the same length\n",
" # N.B. these are not all the characteristics available!\n",
" # Check the Output of the raw dictionary (above) to see all available characteristics.\n",
" \"\"\"\n",
"\n",
" routes_info = {\n",
" \"UUID\": [],\n",
" \"Load Location\": [],\n",
" \"Discharge Location\": [],\n",
" \"Via\": [],\n",
" \"Load Region\": [],\n",
" \"Discharge Region\": [],\n",
" \"Load UUID\": [],\n",
" \"Discharge UUID\": []\n",
" }\n",
" for route in dict1[\"routes\"]:\n",
" \n",
" routes_info['UUID'].append(route[\"uuid\"])\n",
" routes_info['Via'].append(route[\"via\"])\n",
"\n",
" routes_info['Load UUID'].append(route[\"loadPort\"][\"uuid\"])\n",
" routes_info['Load Location'].append(route[\"loadPort\"][\"name\"])\n",
" routes_info['Load Region'].append(route[\"loadPort\"][\"region\"])\n",
"\n",
" routes_info['Discharge UUID'].append(route[\"dischargePort\"][\"uuid\"])\n",
" routes_info['Discharge Location'].append(route[\"dischargePort\"][\"name\"])\n",
" routes_info['Discharge Region'].append(route[\"dischargePort\"][\"region\"])\n",
" \n",
" \n",
" route_df = pd.DataFrame(routes_info)\n",
"\n",
" return route_df\n"
]
},
{
"cell_type": "markdown",
"id": "b53ee7af",
"metadata": {},
"source": [
"### Exploring the data\n"
]
},
{
"cell_type": "code",
"execution_count": 46,
"id": "6db5808e",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"
\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" UUID | \n",
" Load Location | \n",
" Discharge Location | \n",
" Via | \n",
" Load Region | \n",
" Discharge Region | \n",
" Load UUID | \n",
" Discharge UUID | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" 003a3297-b4ed-4c49-9ab2-65122c6f6de8 | \n",
" Sabine Pass | \n",
" Stade | \n",
" None | \n",
" atlantic | \n",
" atlantic | \n",
" 003dec0a-ce8f-41db-8c24-4d7ef6addf70 | \n",
" 003b319e-b29e-4853-b4ee-85794d5bacba | \n",
"
\n",
" \n",
" 1 | \n",
" 003511be-a06d-407b-8d13-22a6ac99f59d | \n",
" NWS | \n",
" Ravenna | \n",
" suez | \n",
" pacific | \n",
" atlantic | \n",
" 00381c87-4180-4430-80f1-bf828099124f | \n",
" 0030d930-6574-4049-a739-327a16620429 | \n",
"
\n",
" \n",
" 2 | \n",
" 00376e89-c9a4-4d49-8100-43ec6ad89793 | \n",
" Ras Laffan | \n",
" Gate | \n",
" cogh | \n",
" pacific | \n",
" pacific | \n",
" 003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df | \n",
" 00348162-8284-447d-b641-1f06b9078fdd | \n",
"
\n",
" \n",
" 3 | \n",
" 003fb354-6fc4-406c-86d5-89c015d227a7 | \n",
" Hammerfest | \n",
" Gate | \n",
" None | \n",
" atlantic | \n",
" pacific | \n",
" 003f92ce-86d5-4d03-9761-311036c47812 | \n",
" 00348162-8284-447d-b641-1f06b9078fdd | \n",
"
\n",
" \n",
" 4 | \n",
" 0034630c-1c15-42a0-8236-39a85ad929da | \n",
" Hammerfest | \n",
" Futtsu | \n",
" panama | \n",
" atlantic | \n",
" pacific | \n",
" 003f92ce-86d5-4d03-9761-311036c47812 | \n",
" 003c2da6-6a74-4e29-aef6-a789a747ac65 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" UUID Load Location Discharge Location \\\n",
"0 003a3297-b4ed-4c49-9ab2-65122c6f6de8 Sabine Pass Stade \n",
"1 003511be-a06d-407b-8d13-22a6ac99f59d NWS Ravenna \n",
"2 00376e89-c9a4-4d49-8100-43ec6ad89793 Ras Laffan Gate \n",
"3 003fb354-6fc4-406c-86d5-89c015d227a7 Hammerfest Gate \n",
"4 0034630c-1c15-42a0-8236-39a85ad929da Hammerfest Futtsu \n",
"\n",
" Via Load Region Discharge Region Load UUID \\\n",
"0 None atlantic atlantic 003dec0a-ce8f-41db-8c24-4d7ef6addf70 \n",
"1 suez pacific atlantic 00381c87-4180-4430-80f1-bf828099124f \n",
"2 cogh pacific pacific 003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df \n",
"3 None atlantic pacific 003f92ce-86d5-4d03-9761-311036c47812 \n",
"4 panama atlantic pacific 003f92ce-86d5-4d03-9761-311036c47812 \n",
"\n",
" Discharge UUID \n",
"0 003b319e-b29e-4853-b4ee-85794d5bacba \n",
"1 0030d930-6574-4049-a739-327a16620429 \n",
"2 00348162-8284-447d-b641-1f06b9078fdd \n",
"3 00348162-8284-447d-b641-1f06b9078fdd \n",
"4 003c2da6-6a74-4e29-aef6-a789a747ac65 "
]
},
"execution_count": 46,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"## We use the stored route characteristics to create the dataframe\n",
"route_df = check_and_store_characteristics(dicto1)\n",
"\n",
"route_df.head()"
]
},
{
"cell_type": "markdown",
"id": "2854904d",
"metadata": {},
"source": [
"# 3. Analysing a Specific Route\n",
"\n",
"\n",
"Here we define the function that allows us to pull data for a specific route and release date.\n",
"\n",
"We then define a given route ID ('my_route') and release date ('my_release') below the function, and these values are printed out for the user to check the parameters.\n",
"\n",
"\n",
"__NOTE:__ The 'congestion_laden' and 'congestion_ballast' options are limited to the following combinations: (0,0), (1,1), (4,4), (7,7), (10,10), (15,15), (20,20). Both parameters must have the same value."
]
},
{
"cell_type": "code",
"execution_count": 47,
"id": "c7502772",
"metadata": {},
"outputs": [],
"source": [
"## Defining the function\n",
"\n",
"def fetch_route_data(access_token, ticker, release, congestion_laden= None, congestion_ballast= None):\n",
" \"\"\"\n",
" For a route, fetch then display the route details\n",
"\n",
" # Procedure:\n",
"\n",
" Do GET queries to https://api.sparkcommodities.com/v1.0/routes/{route_uuid}/\n",
" with a Bearer token authorization HTTP header.\n",
" \"\"\"\n",
"\n",
" query_params = \"?release-date={}\".format(release)\n",
" if congestion_laden is not None:\n",
" query_params += \"&congestion-laden-days={}\".format(congestion_laden)\n",
" if congestion_ballast is not None:\n",
" query_params += \"&congestion-ballast-days={}\".format(congestion_ballast)\n",
"\n",
" uri = \"/v1.0/routes/{}/{}\".format(ticker, query_params)\n",
" print(uri)\n",
"\n",
" content = do_api_get_query(\n",
" uri=\"/v1.0/routes/{}/{}\".format(ticker, query_params),\n",
" access_token=access_token,\n",
" )\n",
"\n",
" my_dict = content[\"data\"]\n",
"\n",
" print(\">>>> Get route information for {}\".format(ticker))\n",
"\n",
" return my_dict"
]
},
{
"cell_type": "markdown",
"id": "78ca4bb9",
"metadata": {},
"source": [
"### N.B. Plan Limits\n",
"\n",
"__Premium__ Users can choose any release date, as they have full access to the dataset.\n",
"\n",
"__Trial__ Users must choose a release date within the last 2 weeks."
]
},
{
"cell_type": "code",
"execution_count": 48,
"id": "8d57eaef",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"/v1.0/routes/003b2bb4-4c8a-41ee-93a1-803f0accf226/?release-date=2024-09-25\n",
">>>> Get route information for 003b2bb4-4c8a-41ee-93a1-803f0accf226\n"
]
}
],
"source": [
"## Calling that function and storing the output\n",
"\n",
"# Here we store the entire dataset called from the API\n",
"\n",
"load = 'Sabine Pass'\n",
"discharge = 'Futtsu'\n",
"via = 'cogh'\n",
"\n",
"my_route = route_df[(route_df[\"Load Location\"] == load) & \\\n",
" (route_df[\"Discharge Location\"] == discharge) & \\\n",
" (route_df['Via'] == via)]['UUID'].values[0]\n",
"\n",
"my_release = '2024-09-25'\n",
"\n",
"my_dict = fetch_route_data(access_token, my_route, release=my_release)"
]
},
{
"cell_type": "code",
"execution_count": 26,
"id": "f70e1b63",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'uuid': '003b2bb4-4c8a-41ee-93a1-803f0accf226',\n",
" 'name': 'Sabine Pass to Futtsu (via COGH)',\n",
" 'loadPortUuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70',\n",
" 'dischargePortUuid': '003c2da6-6a74-4e29-aef6-a789a747ac65',\n",
" 'via': 'cogh',\n",
" 'congestionDays': 0,\n",
" 'congestionLadenDays': 0,\n",
" 'congestionBallastDays': 0,\n",
" 'assumptions': [{'type': 'load-port', 'value': 'Sabine Pass', 'unit': None},\n",
" {'type': 'discharge-port', 'value': 'Futtsu', 'unit': None},\n",
" {'type': 'distance', 'value': '15,855', 'unit': 'NM'},\n",
" {'type': 'round-trip-duration', 'value': '83', 'unit': 'days'},\n",
" {'type': 'flex-days', 'value': '3', 'unit': 'days'},\n",
" {'type': 'port-days', 'value': '2', 'unit': 'days'},\n",
" {'type': 'congestion-days', 'value': '0', 'unit': 'days'},\n",
" {'type': 'canal-days', 'value': '0', 'unit': 'days'},\n",
" {'type': 'discharge-volume', 'value': '3,300,941', 'unit': 'MMBtu'},\n",
" {'type': 'discharge-volume-174', 'value': '3,640,864', 'unit': 'MMBtu'},\n",
" {'type': 'lng-freight-rate-source', 'value': 'Spark25FFA', 'unit': None},\n",
" {'type': 'canal-cost-discount-percentage', 'value': '0', 'unit': None},\n",
" {'type': 'canal-cost-discount-percentage-174', 'value': '0', 'unit': None},\n",
" {'type': 'port-and-canal-cost-source', 'value': 'GAC', 'unit': None},\n",
" {'type': 'vessel-size', 'value': '160,000', 'unit': 'm3'},\n",
" {'type': 'vessel-size-174', 'value': '174,000', 'unit': 'm3'},\n",
" {'type': 'vessel-speed', 'value': '17', 'unit': 'knots'},\n",
" {'type': 'vessel-technology', 'value': 'TFDE', 'unit': None},\n",
" {'type': 'vessel-technology-174', 'value': '2 stroke', 'unit': None},\n",
" {'type': 'fuel', 'value': 'LNG boil-off', 'unit': None},\n",
" {'type': 'boil-off-rate', 'value': '0.10%', 'unit': None},\n",
" {'type': 'boil-off-rate-174', 'value': '0.085%', 'unit': None},\n",
" {'type': 'lng-price-source', 'value': 'ICE TFU', 'unit': None},\n",
" {'type': 'lng-conversion', 'value': '23', 'unit': None}],\n",
" 'dataPoints': [{'deliveryPeriod': {'type': 'spot',\n",
" 'startAt': '2024-10-10',\n",
" 'endAt': '2024-11-09',\n",
" 'name': 'Spot (Physical)'},\n",
" 'costInUsdPerDay': {'total': '9745145',\n",
" 'fuel': '3246887',\n",
" 'hire': '6204250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '9745145',\n",
" 'fuel': '3246887',\n",
" 'hire': '6204250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '2.677',\n",
" 'fuel': '0.892',\n",
" 'hire': '1.704',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'month',\n",
" 'startAt': '2024-10-01',\n",
" 'endAt': '2024-10-31',\n",
" 'name': 'M+1'},\n",
" 'costInUsdPerDay': {'total': '10830479',\n",
" 'fuel': '3294721',\n",
" 'hire': '7241750',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '10830479',\n",
" 'fuel': '3294721',\n",
" 'hire': '7241750',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '2.975',\n",
" 'fuel': '0.905',\n",
" 'hire': '1.989',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'month',\n",
" 'startAt': '2024-11-01',\n",
" 'endAt': '2024-11-30',\n",
" 'name': 'M+2'},\n",
" 'costInUsdPerDay': {'total': '11035800',\n",
" 'fuel': '3354792',\n",
" 'hire': '7387000',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '11035800',\n",
" 'fuel': '3354792',\n",
" 'hire': '7387000',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '3.031',\n",
" 'fuel': '0.921',\n",
" 'hire': '2.029',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'month',\n",
" 'startAt': '2024-12-01',\n",
" 'endAt': '2024-12-31',\n",
" 'name': 'M+3'},\n",
" 'costInUsdPerDay': {'total': '9809541',\n",
" 'fuel': '3394283',\n",
" 'hire': '6121250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '9809541',\n",
" 'fuel': '3394283',\n",
" 'hire': '6121250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '2.694',\n",
" 'fuel': '0.932',\n",
" 'hire': '1.681',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'month',\n",
" 'startAt': '2025-01-01',\n",
" 'endAt': '2025-01-31',\n",
" 'name': 'M+4'},\n",
" 'costInUsdPerDay': {'total': '8330837',\n",
" 'fuel': '3409579',\n",
" 'hire': '4627250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '8330837',\n",
" 'fuel': '3409579',\n",
" 'hire': '4627250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '2.288',\n",
" 'fuel': '0.936',\n",
" 'hire': '1.271',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'month',\n",
" 'startAt': '2025-02-01',\n",
" 'endAt': '2025-02-28',\n",
" 'name': 'M+5'},\n",
" 'costInUsdPerDay': {'total': '7368164',\n",
" 'fuel': '3380656',\n",
" 'hire': '3693500',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '7368164',\n",
" 'fuel': '3380656',\n",
" 'hire': '3693500',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '2.024',\n",
" 'fuel': '0.929',\n",
" 'hire': '1.014',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'month',\n",
" 'startAt': '2025-03-01',\n",
" 'endAt': '2025-03-31',\n",
" 'name': 'M+6'},\n",
" 'costInUsdPerDay': {'total': '6829066',\n",
" 'fuel': '3298058',\n",
" 'hire': '3237000',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '6829066',\n",
" 'fuel': '3298058',\n",
" 'hire': '3237000',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '1.876',\n",
" 'fuel': '0.906',\n",
" 'hire': '0.889',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'month',\n",
" 'startAt': '2025-04-01',\n",
" 'endAt': '2025-04-30',\n",
" 'name': 'M+7'},\n",
" 'costInUsdPerDay': {'total': '6688606',\n",
" 'fuel': '3261348',\n",
" 'hire': '3133250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '6688606',\n",
" 'fuel': '3261348',\n",
" 'hire': '3133250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '1.838',\n",
" 'fuel': '0.896',\n",
" 'hire': '0.861',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'month',\n",
" 'startAt': '2025-05-01',\n",
" 'endAt': '2025-05-31',\n",
" 'name': 'M+8'},\n",
" 'costInUsdPerDay': {'total': '6842648',\n",
" 'fuel': '3249390',\n",
" 'hire': '3299250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '6842648',\n",
" 'fuel': '3249390',\n",
" 'hire': '3299250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '1.879',\n",
" 'fuel': '0.892',\n",
" 'hire': '0.906',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'month',\n",
" 'startAt': '2025-06-01',\n",
" 'endAt': '2025-06-30',\n",
" 'name': 'M+9'},\n",
" 'costInUsdPerDay': {'total': '7620132',\n",
" 'fuel': '3259124',\n",
" 'hire': '4067000',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '7620132',\n",
" 'fuel': '3259124',\n",
" 'hire': '4067000',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '2.093',\n",
" 'fuel': '0.895',\n",
" 'hire': '1.117',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'month',\n",
" 'startAt': '2025-07-01',\n",
" 'endAt': '2025-07-31',\n",
" 'name': 'M+10'},\n",
" 'costInUsdPerDay': {'total': '8760269',\n",
" 'fuel': '3258011',\n",
" 'hire': '5208250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '8760269',\n",
" 'fuel': '3258011',\n",
" 'hire': '5208250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '2.407',\n",
" 'fuel': '0.895',\n",
" 'hire': '1.431',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'month',\n",
" 'startAt': '2025-08-01',\n",
" 'endAt': '2025-08-31',\n",
" 'name': 'M+11'},\n",
" 'costInUsdPerDay': {'total': '10314402',\n",
" 'fuel': '3276644',\n",
" 'hire': '6743750',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '10314402',\n",
" 'fuel': '3276644',\n",
" 'hire': '6743750',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '2.833',\n",
" 'fuel': '0.9',\n",
" 'hire': '1.852',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'month',\n",
" 'startAt': '2025-09-01',\n",
" 'endAt': '2025-09-30',\n",
" 'name': 'M+12'},\n",
" 'costInUsdPerDay': {'total': '12016010',\n",
" 'fuel': '3297502',\n",
" 'hire': '8424500',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '12016010',\n",
" 'fuel': '3297502',\n",
" 'hire': '8424500',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '3.301',\n",
" 'fuel': '0.906',\n",
" 'hire': '2.314',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'month',\n",
" 'startAt': '2025-10-01',\n",
" 'endAt': '2025-10-31',\n",
" 'name': 'M+13'},\n",
" 'costInUsdPerDay': {'total': '13576029',\n",
" 'fuel': '3384271',\n",
" 'hire': '9897750',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '13576029',\n",
" 'fuel': '3384271',\n",
" 'hire': '9897750',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '3.730',\n",
" 'fuel': '0.93',\n",
" 'hire': '2.719',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'month',\n",
" 'startAt': '2025-11-01',\n",
" 'endAt': '2025-11-30',\n",
" 'name': 'M+14'},\n",
" 'costInUsdPerDay': {'total': '13083807',\n",
" 'fuel': '3431549',\n",
" 'hire': '9358250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '13083807',\n",
" 'fuel': '3431549',\n",
" 'hire': '9358250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '3.594',\n",
" 'fuel': '0.943',\n",
" 'hire': '2.57',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'month',\n",
" 'startAt': '2025-12-01',\n",
" 'endAt': '2025-12-31',\n",
" 'name': 'M+15'},\n",
" 'costInUsdPerDay': {'total': '10941659',\n",
" 'fuel': '3447401',\n",
" 'hire': '7200250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '10941659',\n",
" 'fuel': '3447401',\n",
" 'hire': '7200250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '3.006',\n",
" 'fuel': '0.947',\n",
" 'hire': '1.978',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'year',\n",
" 'startAt': '2025-01-01',\n",
" 'endAt': '2025-12-31',\n",
" 'name': 'Cal+1'},\n",
" 'costInUsdPerDay': {'total': '9364219',\n",
" 'fuel': '3329461',\n",
" 'hire': '5740750',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '9364219',\n",
" 'fuel': '3329461',\n",
" 'hire': '5740750',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '2.572',\n",
" 'fuel': '0.914',\n",
" 'hire': '1.577',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}},\n",
" {'deliveryPeriod': {'type': 'year',\n",
" 'startAt': '2026-01-01',\n",
" 'endAt': '2026-12-31',\n",
" 'name': 'Cal+2'},\n",
" 'costInUsdPerDay': {'total': '8936423',\n",
" 'fuel': '3019165',\n",
" 'hire': '5623250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsd': {'total': '8936423',\n",
" 'fuel': '3019165',\n",
" 'hire': '5623250',\n",
" 'port': '294008',\n",
" 'canal': '0',\n",
" 'carbon': None},\n",
" 'costsInUsdPerMmbtu': {'total': '2.454',\n",
" 'fuel': '0.829',\n",
" 'hire': '1.544',\n",
" 'port': '0.081',\n",
" 'canal': '0.0',\n",
" 'carbon': None}}]}"
]
},
"execution_count": 26,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"## Calling that dictionary to see how it is structured\n",
"\n",
"my_dict"
]
},
{
"cell_type": "code",
"execution_count": 27,
"id": "287ed2ca",
"metadata": {},
"outputs": [],
"source": [
"## Define a variable storing the route start-end\n",
"route_name = my_dict[\"name\"]"
]
},
{
"cell_type": "markdown",
"id": "5b025e65",
"metadata": {},
"source": [
"### Storing Data as a DataFrame\n",
"\n",
"We extract some relevant data for the chosen route, including the spot price and forward prices. These are stored in a Pandas Dataframe for readability and ease of use."
]
},
{
"cell_type": "code",
"execution_count": 49,
"id": "74ef56d3",
"metadata": {},
"outputs": [],
"source": [
"## Defining the function to store as dataframe\n",
"def organise_dataframe(my_dict):\n",
" my_route = {\n",
" \"Period\": [],\n",
" \"Start Date\": [],\n",
" \"End Date\": [],\n",
" \"Cost in USD\": [],\n",
" \"Cost in USDperMMBtu\": [],\n",
" \"Hire Cost in USD\": [],\n",
" }\n",
"\n",
" for data in my_dict[\"dataPoints\"]:\n",
" my_route['Start Date'].append(data[\"deliveryPeriod\"][\"startAt\"])\n",
" my_route['End Date'].append(data[\"deliveryPeriod\"][\"endAt\"])\n",
" my_route['Period'].append(data[\"deliveryPeriod\"][\"name\"])\n",
"\n",
" my_route['Cost in USD'].append(data[\"costsInUsd\"][\"total\"])\n",
" my_route['Cost in USDperMMBtu'].append(data[\"costsInUsdPerMmbtu\"][\"total\"])\n",
"\n",
" my_route['Hire Cost in USD'].append(data[\"costsInUsd\"][\"hire\"])\n",
"\n",
"\n",
" my_route_df = pd.DataFrame(my_route)\n",
"\n",
"\n",
" ## Changing the data type of these columns from 'string' to numbers.\n",
" ## This allows us to easily plot a forward curve, as well as perform statistical analysis on the prices.\n",
" my_route_df[\"Cost in USD\"] = pd.to_numeric(my_route_df[\"Cost in USD\"])\n",
" my_route_df[\"Hire Cost in USD\"] = pd.to_numeric(my_route_df[\"Hire Cost in USD\"])\n",
" my_route_df[\"Cost in USDperMMBtu\"] = pd.to_numeric(my_route_df[\"Cost in USDperMMBtu\"])\n",
" \n",
" return my_route_df"
]
},
{
"cell_type": "code",
"execution_count": 50,
"id": "6272154a",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" Period | \n",
" Start Date | \n",
" End Date | \n",
" Cost in USD | \n",
" Cost in USDperMMBtu | \n",
" Hire Cost in USD | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" Spot (Physical) | \n",
" 2024-10-10 | \n",
" 2024-11-09 | \n",
" 9745145 | \n",
" 2.677 | \n",
" 6204250 | \n",
"
\n",
" \n",
" 1 | \n",
" M+1 | \n",
" 2024-10-01 | \n",
" 2024-10-31 | \n",
" 10830479 | \n",
" 2.975 | \n",
" 7241750 | \n",
"
\n",
" \n",
" 2 | \n",
" M+2 | \n",
" 2024-11-01 | \n",
" 2024-11-30 | \n",
" 11035800 | \n",
" 3.031 | \n",
" 7387000 | \n",
"
\n",
" \n",
" 3 | \n",
" M+3 | \n",
" 2024-12-01 | \n",
" 2024-12-31 | \n",
" 9809541 | \n",
" 2.694 | \n",
" 6121250 | \n",
"
\n",
" \n",
" 4 | \n",
" M+4 | \n",
" 2025-01-01 | \n",
" 2025-01-31 | \n",
" 8330837 | \n",
" 2.288 | \n",
" 4627250 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" Period Start Date End Date Cost in USD Cost in USDperMMBtu \\\n",
"0 Spot (Physical) 2024-10-10 2024-11-09 9745145 2.677 \n",
"1 M+1 2024-10-01 2024-10-31 10830479 2.975 \n",
"2 M+2 2024-11-01 2024-11-30 11035800 3.031 \n",
"3 M+3 2024-12-01 2024-12-31 9809541 2.694 \n",
"4 M+4 2025-01-01 2025-01-31 8330837 2.288 \n",
"\n",
" Hire Cost in USD \n",
"0 6204250 \n",
"1 7241750 \n",
"2 7387000 \n",
"3 6121250 \n",
"4 4627250 "
]
},
"execution_count": 50,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"my_route_df = organise_dataframe(my_dict)\n",
"my_route_df.head()"
]
},
{
"cell_type": "markdown",
"id": "265dda49",
"metadata": {},
"source": [
"# Panama Canal Congestion\n",
"\n",
"The Spark API allows you to account for congestion delays for any route passing through the Panama canal. This is done via an optional query parameter in the __'fetch_route_data'__ function - 'congestion'.\n",
"\n",
"- Set the congestion parameter to the amount of delay days needed\n",
" - This should be given as an integer: e.g. congestion = 5\n",
"- If the congestion parameter is not specified, like in the examples above, the congestion value is set to the default value of 0.\n",
"- If the congestion parameter is called for a route that does not go through the Panama canal, then a 404 error will be triggered\n",
"\n",
"Below is an example of using this congestion parameter."
]
},
{
"cell_type": "code",
"execution_count": 51,
"id": "f451dec0",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" UUID | \n",
" Load Location | \n",
" Discharge Location | \n",
" Via | \n",
" Load Region | \n",
" Discharge Region | \n",
" Load UUID | \n",
" Discharge UUID | \n",
"
\n",
" \n",
" \n",
" \n",
" 4 | \n",
" 0034630c-1c15-42a0-8236-39a85ad929da | \n",
" Hammerfest | \n",
" Futtsu | \n",
" panama | \n",
" atlantic | \n",
" pacific | \n",
" 003f92ce-86d5-4d03-9761-311036c47812 | \n",
" 003c2da6-6a74-4e29-aef6-a789a747ac65 | \n",
"
\n",
" \n",
" 25 | \n",
" 003e5067-132d-4660-824c-ef17386f73fb | \n",
" Sabine Pass | \n",
" Tianjin | \n",
" panama | \n",
" atlantic | \n",
" pacific | \n",
" 003dec0a-ce8f-41db-8c24-4d7ef6addf70 | \n",
" 003a90f9-9cde-436f-9bec-4f9e786c2ea7 | \n",
"
\n",
" \n",
" 31 | \n",
" 003ba153-1f89-477a-b5a1-9fcf90e13c74 | \n",
" Corpus Christi | \n",
" Futtsu | \n",
" panama | \n",
" atlantic | \n",
" pacific | \n",
" 0030c461-9a63-403d-8f53-9327ea773517 | \n",
" 003c2da6-6a74-4e29-aef6-a789a747ac65 | \n",
"
\n",
" \n",
" 33 | \n",
" 003b2421-367d-4a92-b2db-9e0096f5d69f | \n",
" Corpus Christi | \n",
" Tianjin | \n",
" panama | \n",
" atlantic | \n",
" pacific | \n",
" 0030c461-9a63-403d-8f53-9327ea773517 | \n",
" 003a90f9-9cde-436f-9bec-4f9e786c2ea7 | \n",
"
\n",
" \n",
" 40 | \n",
" 0030cd3b-af5b-4dcd-b4ad-38be7a030ff6 | \n",
" Cove Point | \n",
" Futtsu | \n",
" panama | \n",
" atlantic | \n",
" pacific | \n",
" 003e8539-3a98-48fa-b35d-0ba061beea4e | \n",
" 003c2da6-6a74-4e29-aef6-a789a747ac65 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" UUID Load Location Discharge Location \\\n",
"4 0034630c-1c15-42a0-8236-39a85ad929da Hammerfest Futtsu \n",
"25 003e5067-132d-4660-824c-ef17386f73fb Sabine Pass Tianjin \n",
"31 003ba153-1f89-477a-b5a1-9fcf90e13c74 Corpus Christi Futtsu \n",
"33 003b2421-367d-4a92-b2db-9e0096f5d69f Corpus Christi Tianjin \n",
"40 0030cd3b-af5b-4dcd-b4ad-38be7a030ff6 Cove Point Futtsu \n",
"\n",
" Via Load Region Discharge Region Load UUID \\\n",
"4 panama atlantic pacific 003f92ce-86d5-4d03-9761-311036c47812 \n",
"25 panama atlantic pacific 003dec0a-ce8f-41db-8c24-4d7ef6addf70 \n",
"31 panama atlantic pacific 0030c461-9a63-403d-8f53-9327ea773517 \n",
"33 panama atlantic pacific 0030c461-9a63-403d-8f53-9327ea773517 \n",
"40 panama atlantic pacific 003e8539-3a98-48fa-b35d-0ba061beea4e \n",
"\n",
" Discharge UUID \n",
"4 003c2da6-6a74-4e29-aef6-a789a747ac65 \n",
"25 003a90f9-9cde-436f-9bec-4f9e786c2ea7 \n",
"31 003c2da6-6a74-4e29-aef6-a789a747ac65 \n",
"33 003a90f9-9cde-436f-9bec-4f9e786c2ea7 \n",
"40 003c2da6-6a74-4e29-aef6-a789a747ac65 "
]
},
"execution_count": 51,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"## First, check which routes go via the Panama canal\n",
"\n",
"route_df[route_df[\"Via\"] == \"panama\"].head()"
]
},
{
"cell_type": "markdown",
"id": "bff07798",
"metadata": {},
"source": [
"### N.B. Congestion Days Options\n",
"\n",
"The 'congestion_laden' and 'congestion_ballast' option are limited to the following combinations: (0,0), (1,1), (4,4), (7,7), (10,10), (15,15), (20,20). Both parameters must have the same value.\n",
"\n",
"### N.B. Plan Limits\n",
"\n",
"__Premium__ Users can choose any release date, as they have full access to the dataset.\n",
"\n",
"__Trial__ Users must choose a release date within the last 2 weeks, ie. 'reldates[13]' is the earliest date possible."
]
},
{
"cell_type": "code",
"execution_count": 53,
"id": "5fd0df54",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"/v1.0/routes/0036c5e9-f3c8-4a67-95c8-3afaefa39ff3/?release-date=2025-01-02&congestion-laden-days=4&congestion-ballast-days=4\n",
">>>> Get route information for 0036c5e9-f3c8-4a67-95c8-3afaefa39ff3\n"
]
}
],
"source": [
"# Specify which route we want to use ('cong_route'): we can find specific routes by filtering the dataframe.\n",
"# as well as release date ('cong_release')\n",
"# and amount of congestion days (cong_days)\n",
"\n",
"cong_route = route_df[(route_df['Via']=='panama') & \\\n",
" (route_df['Load Location'] == 'Sabine Pass') & \\\n",
" (route_df['Discharge Location'] == 'Futtsu')]['UUID'].tolist()[0]\n",
"cong_release = reldates[8]\n",
"cong_days_laden = 4\n",
"cong_days_ballast = 4\n",
"\n",
"# Fetch the route data with these specifications\n",
"cong_dict = fetch_route_data(\n",
" access_token, cong_route, release=cong_release, congestion_laden=cong_days_laden, congestion_ballast=cong_days_ballast\n",
")"
]
},
{
"cell_type": "code",
"execution_count": 54,
"id": "87380280",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"/v1.0/routes/0036c5e9-f3c8-4a67-95c8-3afaefa39ff3/?release-date=2025-01-02\n",
">>>> Get route information for 0036c5e9-f3c8-4a67-95c8-3afaefa39ff3\n"
]
}
],
"source": [
"# Fetching data for the same route but without congestion delays ('nocong_dict'), for comparison\n",
"nocong_dict = fetch_route_data(access_token, cong_route, release=cong_release)\n",
"\n",
"# Save the name of the route\n",
"congroute_name = nocong_dict[\"name\"]"
]
},
{
"cell_type": "code",
"execution_count": 55,
"id": "af51ebe7",
"metadata": {},
"outputs": [],
"source": [
"# Call the 'organise_dataframe' function to organise the dictionary into a readable dataframe.\n",
"# Applying function to dictionaries\n",
"cong_df = organise_dataframe(cong_dict)\n",
"nocong_df = organise_dataframe(nocong_dict)"
]
},
{
"cell_type": "code",
"execution_count": 56,
"id": "732aca68",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" Period | \n",
" Start Date | \n",
" End Date | \n",
" Cost in USD | \n",
" Cost in USDperMMBtu | \n",
" Hire Cost in USD | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" Spot (Physical) | \n",
" 2025-01-17 | \n",
" 2025-02-16 | \n",
" 6201723 | \n",
" 1.681 | \n",
" 1228500 | \n",
"
\n",
" \n",
" 1 | \n",
" M+1 | \n",
" 2025-02-01 | \n",
" 2025-02-28 | \n",
" 6091642 | \n",
" 1.652 | \n",
" 1120500 | \n",
"
\n",
" \n",
" 2 | \n",
" M+2 | \n",
" 2025-03-01 | \n",
" 2025-03-31 | \n",
" 5970677 | \n",
" 1.619 | \n",
" 1026000 | \n",
"
\n",
" \n",
" 3 | \n",
" M+3 | \n",
" 2025-04-01 | \n",
" 2025-04-30 | \n",
" 5961121 | \n",
" 1.616 | \n",
" 1026000 | \n",
"
\n",
" \n",
" 4 | \n",
" M+4 | \n",
" 2025-05-01 | \n",
" 2025-05-31 | \n",
" 6067751 | \n",
" 1.645 | \n",
" 1120500 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" Period Start Date End Date Cost in USD Cost in USDperMMBtu \\\n",
"0 Spot (Physical) 2025-01-17 2025-02-16 6201723 1.681 \n",
"1 M+1 2025-02-01 2025-02-28 6091642 1.652 \n",
"2 M+2 2025-03-01 2025-03-31 5970677 1.619 \n",
"3 M+3 2025-04-01 2025-04-30 5961121 1.616 \n",
"4 M+4 2025-05-01 2025-05-31 6067751 1.645 \n",
"\n",
" Hire Cost in USD \n",
"0 1228500 \n",
"1 1120500 \n",
"2 1026000 \n",
"3 1026000 \n",
"4 1120500 "
]
},
"execution_count": 56,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"cong_df.head()"
]
},
{
"cell_type": "code",
"execution_count": 57,
"id": "b3bd0178",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" Period | \n",
" Start Date | \n",
" End Date | \n",
" Cost in USD | \n",
" Cost in USDperMMBtu | \n",
" Hire Cost in USD | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" Spot (Physical) | \n",
" 2025-01-17 | \n",
" 2025-02-16 | \n",
" 5622011 | \n",
" 1.504 | \n",
" 1228500 | \n",
"
\n",
" \n",
" 1 | \n",
" M+1 | \n",
" 2025-02-01 | \n",
" 2025-02-28 | \n",
" 5526134 | \n",
" 1.478 | \n",
" 1120500 | \n",
"
\n",
" \n",
" 2 | \n",
" M+2 | \n",
" 2025-03-01 | \n",
" 2025-03-31 | \n",
" 5420778 | \n",
" 1.450 | \n",
" 1026000 | \n",
"
\n",
" \n",
" 3 | \n",
" M+3 | \n",
" 2025-04-01 | \n",
" 2025-04-30 | \n",
" 5412455 | \n",
" 1.447 | \n",
" 1026000 | \n",
"
\n",
" \n",
" 4 | \n",
" M+4 | \n",
" 2025-05-01 | \n",
" 2025-05-31 | \n",
" 5505326 | \n",
" 1.473 | \n",
" 1120500 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" Period Start Date End Date Cost in USD Cost in USDperMMBtu \\\n",
"0 Spot (Physical) 2025-01-17 2025-02-16 5622011 1.504 \n",
"1 M+1 2025-02-01 2025-02-28 5526134 1.478 \n",
"2 M+2 2025-03-01 2025-03-31 5420778 1.450 \n",
"3 M+3 2025-04-01 2025-04-30 5412455 1.447 \n",
"4 M+4 2025-05-01 2025-05-31 5505326 1.473 \n",
"\n",
" Hire Cost in USD \n",
"0 1228500 \n",
"1 1120500 \n",
"2 1026000 \n",
"3 1026000 \n",
"4 1120500 "
]
},
"execution_count": 57,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"nocong_df.head()"
]
},
{
"cell_type": "markdown",
"id": "a51a571c",
"metadata": {},
"source": [
"# Analytics Gallery\n",
"\n",
"Want to gain market insights using our data?\n",
"\n",
"Take a look at our [Analytics Gallery](https://www.sparkcommodities.com/api/code-examples/analytics-examples.html) on the Spark API website, which includes:\n",
"\n",
"- __Routes Contract Month Evolution & Seasonality__ - For a month of interest, track how that month has priced in historically (e.g. Dec22 vs Dec23 vs Dec24), providing insight into how the current year's contract (e.g. Dec25) might price in over the coming months for a Route of your choice.\n",
"\n",
"Want to create meaningful charts using our data?\n",
"\n",
"View our Route Seasonality Chart [here](https://www.sparkcommodities.com/api/code-examples/analytics-examples.html). \n",
"\n"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.6"
}
},
"nbformat": 4,
"nbformat_minor": 5
}